From 5485a440999e0ee082c1b5a430030c8f68337373 Mon Sep 17 00:00:00 2001 From: yugangw-msft Date: Fri, 13 Sep 2019 07:24:30 +0800 Subject: [PATCH 01/51] appservice: surface commands under the profile of 2019-03-01-hybrid --- .../azure/cli/core/profiles/_shared.py | 11 +++++--- src/azure-cli/HISTORY.rst | 25 +++---------------- 2 files changed, 12 insertions(+), 24 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 0bf13ee736a..a44b9da8ff1 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -50,6 +50,7 @@ class ResourceType(Enum): # pylint: disable=too-few-public-methods MGMT_MONITOR = ('azure.mgmt.monitor', 'MonitorManagementClient') DATA_KEYVAULT = ('azure.keyvault', 'KeyVaultClient') MGMT_EVENTHUB = ('azure.mgmt.eventhub', 'EventHubManagementClient') + MGMT_APPSERVICE = ('azure.mgmt.web', 'WebSiteManagementClient') # the "None" below will stay till a command module fills in the type so "get_mgmt_service_client" # can be provided with "ResourceType.XXX" to initialize the client object. This usually happens # when related commands start to support Multi-API @@ -90,7 +91,6 @@ class ResourceType(Enum): # pylint: disable=too-few-public-methods MGMT_SQLVM = ('azure.mgmt.sqlvirtualmachine', None) MGMT_MANAGEDSERVICES = ('azure.mgmt.managedservices', None) MGMT_NETAPPFILES = ('azure.mgmt.netappfiles', None) - MGMT_APPSERVICE = ('azure.mgmt.web', None) def __init__(self, import_prefix, client_name): """Constructor. @@ -174,7 +174,8 @@ def default_api_version(self): 'service_diagnostic_settings': '2016-09-01', 'tenant_activity_logs': '2015-04-01', 'vm_insights': '2018-11-27-preview' - }) + }), + ResourceType.MGMT_APPSERVICE: '2018-02-01' }, '2019-03-01-hybrid': { ResourceType.MGMT_STORAGE: '2017-10-01', @@ -198,7 +199,11 @@ def default_api_version(self): }), ResourceType.DATA_KEYVAULT: '2016-10-01', ResourceType.DATA_STORAGE: '2017-11-09', - ResourceType.DATA_COSMOS_TABLE: '2017-04-17' + ResourceType.DATA_COSMOS_TABLE: '2017-04-17', + # Full MultiAPI support is not done in AppService, the line below is merely + # to have commands show up in the hybrid profile which happens to have the latest + # API versions + ResourceType.MGMT_APPSERVICE: '2018-02-01' }, '2018-03-01-hybrid': { ResourceType.MGMT_STORAGE: '2016-01-01', diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 1b688a4b66c..8b7d45a4c82 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +**AppService** + +* Azure Stack: surface commands under the profile of 2019-03-01-hybrid + **Stoarge** * Upgrade azure-mgmt-storage version to 7.1.0 @@ -340,7 +344,6 @@ Release History * Add --runtime-version property to `az functionapp create` * az appservice vnet-integration add: Fixed so that subnet delegation is case insensitive and delegating subnets does not overwrite previous data. - **ARM** * deployment/group deployment validate: Add --handle-extended-json-format parameter to support multiline and comments in json template when deployment. @@ -450,26 +453,6 @@ Release History job start: - Changed the command from `job start` to `job create`. -**AppConfig** - -* Using & in authorization header -* Adding api-version to all requests -* Upgrading SDK Version to 1.0.0 - -**AppService** - -* Added "webapp config access-restriction show | set | add | remove" -* az webapp up updated for better error-handling -* az appservice plan update support Isolated SKU - -**ARM** - -* az deployment create: Add --handle-extended-json-format parameter to support multiline and comments in json template. - -**Backup** - -* Enhanced error detail for vault delete in force mode. - **Compute** * vm create: Add --enable-agent configuration. From adbc45d1c9fa2454b58b67ba5c28a7c6db0b498a Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Wed, 30 Oct 2019 13:23:31 +0800 Subject: [PATCH 02/51] upgrade azure-mgmt-web to support multiapi --- src/azure-cli/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index d04709e6019..fbf37859caf 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -124,7 +124,7 @@ 'azure-mgmt-sqlvirtualmachine~=0.5.0', 'azure-mgmt-storage~=7.1.0', 'azure-mgmt-trafficmanager~=0.51.0', - 'azure-mgmt-web~=0.42.0', + 'azure-mgmt-web~=0.43.1', 'azure-multiapi-storage~=0.2.4', 'azure-loganalytics~=0.1.0', 'azure-storage-blob>=1.3.1,<2.0.0', From e5f83e53b47eb1bfdcfbbb07e3facfefd5a1c383 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 13:34:49 +0800 Subject: [PATCH 03/51] upgrade azure-mgmt-web in requirements --- src/azure-cli/requirements.py2.Darwin.txt | 2 +- src/azure-cli/requirements.py2.Linux.txt | 2 +- src/azure-cli/requirements.py2.windows.txt | 2 +- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/requirements.py2.Darwin.txt b/src/azure-cli/requirements.py2.Darwin.txt index 66e854beb48..c2367dbe8b2 100644 --- a/src/azure-cli/requirements.py2.Darwin.txt +++ b/src/azure-cli/requirements.py2.Darwin.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.42.0 +azure-mgmt-web==0.43.1 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py2.Linux.txt b/src/azure-cli/requirements.py2.Linux.txt index 66e854beb48..c2367dbe8b2 100644 --- a/src/azure-cli/requirements.py2.Linux.txt +++ b/src/azure-cli/requirements.py2.Linux.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.42.0 +azure-mgmt-web==0.43.1 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py2.windows.txt b/src/azure-cli/requirements.py2.windows.txt index 76e76726bdd..e3117fd9996 100644 --- a/src/azure-cli/requirements.py2.windows.txt +++ b/src/azure-cli/requirements.py2.windows.txt @@ -76,7 +76,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.42.0 +azure-mgmt-web==0.43.1 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 7b178e4b1a0..6a7fba0dd3b 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.42.0 +azure-mgmt-web==0.43.1 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 7b178e4b1a0..6a7fba0dd3b 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.42.0 +azure-mgmt-web==0.43.1 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index af8ea7a31a3..cfdf373335a 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -76,7 +76,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.42.0 +azure-mgmt-web==0.43.1 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 From d4c4188730b0b0717139cbb7150441bfad413f7a Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 13:38:35 +0800 Subject: [PATCH 04/51] update release note --- src/azure-cli/HISTORY.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 8b7d45a4c82..fe38fa3c6c4 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -279,6 +279,11 @@ Release History * Rewrite the az wrapper in Python * Support Python 3.8 * Use Python 3 for RPM package +======= +**AppService** + +* * Azure Stack: surface commands under the profile of 2019-03-01-hybrid +>>>>>>> update release note **Profile** @@ -342,7 +347,10 @@ Release History * Added "--build remote" flag for "az functionapp deployment source config-zip" to support remote build action during function app deployment. * Change default node version on function apps to ~10 for Windows * Add --runtime-version property to `az functionapp create` +<<<<<<< HEAD * az appservice vnet-integration add: Fixed so that subnet delegation is case insensitive and delegating subnets does not overwrite previous data. +======= +>>>>>>> update release note **ARM** From 3557fd3508bacd8265be54fb10259f09388a9984 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 13:49:14 +0800 Subject: [PATCH 05/51] Update history in azure cli 2.0.75 --- src/azure-cli/HISTORY.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index fe38fa3c6c4..ecf21cf16c6 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -461,6 +461,26 @@ Release History job start: - Changed the command from `job start` to `job create`. +**AppConfig** + +* Using & in authorization header +* Adding api-version to all requests +* Upgrading SDK Version to 1.0.0 + +**AppService** + +* Added "webapp config access-restriction show | set | add | remove" +* az webapp up updated for better error-handling +* az appservice plan update support Isolated SKU + +**ARM** + +* az deployment create: Add --handle-extended-json-format parameter to support multiline and comments in json template. + +**Backup** + +* Enhanced error detail for vault delete in force mode. + **Compute** * vm create: Add --enable-agent configuration. From 14e914efc583770db8c7872fbe215d89ffe736f4 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 13:50:17 +0800 Subject: [PATCH 06/51] delete spaces --- src/azure-cli/HISTORY.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index ecf21cf16c6..edcfedb14b3 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -461,23 +461,23 @@ Release History job start: - Changed the command from `job start` to `job create`. -**AppConfig** +**AppConfig** -* Using & in authorization header -* Adding api-version to all requests -* Upgrading SDK Version to 1.0.0 +* Using & in authorization header +* Adding api-version to all requests +* Upgrading SDK Version to 1.0.0 -**AppService** +**AppService** -* Added "webapp config access-restriction show | set | add | remove" -* az webapp up updated for better error-handling -* az appservice plan update support Isolated SKU +* Added "webapp config access-restriction show | set | add | remove" +* az webapp up updated for better error-handling +* az appservice plan update support Isolated SKU -**ARM** +**ARM** -* az deployment create: Add --handle-extended-json-format parameter to support multiline and comments in json template. +* az deployment create: Add --handle-extended-json-format parameter to support multiline and comments in json template. -**Backup** +**Backup** * Enhanced error detail for vault delete in force mode. From 4719e4c5bc5f4c0f66795f27310d9bae8384495b Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Fri, 1 Nov 2019 14:01:04 +0800 Subject: [PATCH 07/51] fix typo --- src/azure-cli/HISTORY.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index edcfedb14b3..962ecca71b2 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -282,8 +282,12 @@ Release History ======= **AppService** +<<<<<<< HEAD * * Azure Stack: surface commands under the profile of 2019-03-01-hybrid >>>>>>> update release note +======= +* Azure Stack: surface commands under the profile of 2019-03-01-hybrid +>>>>>>> fix typo **Profile** From 0444eb820bf398b6113f5a9179188bef8fa1733d Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 12 Nov 2019 10:41:26 +0800 Subject: [PATCH 08/51] use new package and make client multiapi --- .../azure/cli/command_modules/appservice/_client_factory.py | 5 +++-- src/azure-cli/setup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py b/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py index 90172b4718a..a1fd3bfd6f1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py @@ -30,9 +30,10 @@ def _polish_bad_errors(ex): def web_client_factory(cli_ctx, **_): - from azure.mgmt.web import WebSiteManagementClient + #from azure.mgmt.web import WebSiteManagementClient + from azure.cli.core.profiles import ResourceType from azure.cli.core.commands.client_factory import get_mgmt_service_client - return get_mgmt_service_client(cli_ctx, WebSiteManagementClient) + return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_APPSERVICE) def cf_plans(cli_ctx, _): diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index fbf37859caf..18449095f96 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -124,7 +124,7 @@ 'azure-mgmt-sqlvirtualmachine~=0.5.0', 'azure-mgmt-storage~=7.1.0', 'azure-mgmt-trafficmanager~=0.51.0', - 'azure-mgmt-web~=0.43.1', + 'azure-mgmt-web~=0.44.0', 'azure-multiapi-storage~=0.2.4', 'azure-loganalytics~=0.1.0', 'azure-storage-blob>=1.3.1,<2.0.0', From abe06e2fe1dc63c4375596d2aa287bac6758a694 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 14 Nov 2019 09:49:03 +0800 Subject: [PATCH 09/51] Re-record test for app service --- .../test_acr_deployment_function_app.yaml | 552 ++- .../recordings/test_acr_integration.yaml | 986 +----- .../test_acr_integration_function_app.yaml | 165 +- .../test_appservice_error_polish.yaml | 135 +- .../recordings/test_auto_delete_plan.yaml | 168 +- .../test_create_in_different_group.yaml | 85 +- .../latest/recordings/test_deploy_zip.yaml | 199 +- .../recordings/test_download_win_web_log.yaml | 951 +++--- ...st_functionapp_access_restriction_add.yaml | 151 +- ...unctionapp_access_restriction_add_scm.yaml | 265 +- ...cess_restriction_add_service_endpoint.yaml | 793 ++++- ...functionapp_access_restriction_remove.yaml | 288 +- ...tionapp_access_restriction_remove_scm.yaml | 278 +- ...ionapp_access_restriction_set_complex.yaml | 376 ++- ...tionapp_access_restriction_set_simple.yaml | 268 +- ...t_functionapp_access_restriction_show.yaml | 232 +- ...t_functionapp_access_restriction_slot.yaml | 314 +- .../test_functionapp_consumption_e2e.yaml | 248 +- .../test_functionapp_consumption_linux.yaml | 170 +- ...tionapp_consumption_ragrs_storage_e2e.yaml | 150 +- .../recordings/test_functionapp_cors.yaml | 244 +- .../recordings/test_functionapp_e2e.yaml | 348 +- .../test_functionapp_elastic_plan.yaml | 185 +- .../recordings/test_functionapp_on_linux.yaml | 213 +- .../test_functionapp_on_linux_version.yaml | 173 +- ...ctionapp_on_linux_version_consumption.yaml | 126 +- .../test_functionapp_reserved_instance.yaml | 194 +- ...st_functionapp_slot_appsetting_update.yaml | 272 +- .../test_functionapp_slot_creation.yaml | 240 +- .../test_functionapp_slot_swap.yaml | 332 +- .../test_functionapp_windows_runtime.yaml | 158 +- ...t_functionapp_windows_runtime_version.yaml | 158 +- ...t_functionapp_windows_without_runtime.yaml | 150 +- ...est_functionapp_with_app_insights_key.yaml | 108 +- ...functionapp_with_default_app_insights.yaml | 148 +- ...ctionapp_with_no_default_app_insights.yaml | 92 +- .../latest/recordings/test_linux_webapp.yaml | 508 ++- ...st_linux_webapp_multicontainer_create.yaml | 148 +- ...test_linux_webapp_multicontainer_slot.yaml | 300 +- .../test_linux_webapp_quick_create.yaml | 190 +- .../test_linux_webapp_quick_create_cd.yaml | 156 +- .../test_linux_webapp_remote_debug.yaml | 296 +- .../test_linux_webapp_remote_ssh.yaml | 252 +- .../recordings/test_linux_webapp_ssh.yaml | 778 +---- .../recordings/test_move_plan_to_elastic.yaml | 267 +- .../latest/recordings/test_retain_plan.yaml | 105 +- .../recordings/test_traffic_routing.yaml | 236 +- ...test_update_webapp_settings_thru_json.yaml | 179 +- .../test_webapp_access_restriction_add.yaml | 181 +- ...est_webapp_access_restriction_add_scm.yaml | 185 +- ...cess_restriction_add_service_endpoint.yaml | 365 +- ...test_webapp_access_restriction_remove.yaml | 173 +- ..._webapp_access_restriction_remove_scm.yaml | 181 +- ...webapp_access_restriction_set_complex.yaml | 228 +- ..._webapp_access_restriction_set_simple.yaml | 180 +- .../test_webapp_access_restriction_show.yaml | 136 +- .../test_webapp_access_restriction_slot.yaml | 195 +- .../test_webapp_assign_system_identity.yaml | 403 +-- .../test_webapp_authentication.yaml | 111 +- .../latest/recordings/test_webapp_config.yaml | 2262 +------------ .../test_webapp_continuousWebjob_e2e.yaml | 385 --- .../latest/recordings/test_webapp_cors.yaml | 331 +- .../test_webapp_create_linux_free.yaml | 693 +--- .../test_webapp_create_noAlwaysOn.yaml | 94 +- .../recordings/test_webapp_deleted_list.yaml | 2991 ++++++++++++----- .../latest/recordings/test_webapp_e2e.yaml | 175 +- .../latest/recordings/test_webapp_git.yaml | 214 +- .../test_webapp_hybridconnectionE2E.yaml | 469 ++- .../recordings/test_webapp_hyperv_e2e.yaml | 1100 +----- .../latest/recordings/test_webapp_slot.yaml | 662 ++-- .../recordings/test_webapp_slot_swap.yaml | 275 +- .../latest/recordings/test_webapp_ssl.yaml | 808 ++++- .../test_webapp_triggeredWebjob_list.yaml | 162 - .../latest/recordings/test_webapp_update.yaml | 167 +- .../recordings/test_webapp_vnetE2E.yaml | 880 ++++- .../test_win_webapp_quick_create.yaml | 127 +- .../test_win_webapp_quick_create_cd.yaml | 136 +- .../test_win_webapp_quick_create_runtime.yaml | 149 +- 78 files changed, 16391 insertions(+), 11357 deletions(-) delete mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml delete mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml index de77095ae77..c213e424a16 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT +======= + - Wed, 13 Nov 2019 10:58:49 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,23 +72,35 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '756' + - '755' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:37 GMT +======= + - Wed, 13 Nov 2019 10:58:55 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -96,7 +116,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1194' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -122,7 +146,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -131,7 +159,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:37 GMT +======= + - Wed, 13 Nov 2019 10:58:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -166,7 +198,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -182,7 +218,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:39 GMT +======= + - Wed, 13 Nov 2019 10:58:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -228,7 +268,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -237,7 +281,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:39 GMT +======= + - Wed, 13 Nov 2019 10:58:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -272,7 +320,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -280,8 +332,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD West","properties":{"serverFarmId":6103,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6103","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + West","properties":{"serverFarmId":5693,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -290,7 +347,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:57 GMT +======= + - Wed, 13 Nov 2019 10:59:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -308,7 +369,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1191' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -329,7 +394,11 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -337,8 +406,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD West","properties":{"serverFarmId":6103,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6103","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + West","properties":{"serverFarmId":5693,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -347,7 +421,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:58 GMT +======= + - Wed, 13 Nov 2019 10:59:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -384,23 +462,39 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:08.9073819Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:08.9073819Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:08.8449217Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:58:29.1287372Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:58:29.1287372Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:58:29.0662559Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:00 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:59:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -435,7 +529,11 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -451,7 +549,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:00 GMT +======= + - Wed, 13 Nov 2019 10:59:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -467,7 +569,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1198' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -477,7 +583,11 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625"}, +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162"}, +>>>>>>> Re-record test for app service {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -500,19 +610,28 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan +<<<<<<< HEAD West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:03.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"42B7FD8BF61C4F79C2BC5AF4683E3EFFCC12166AE6037E75F8A5D3667B78AF5A","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:23.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1CC3647730C5C4B3EE84D8282522811D7DF60D907471479C691E2D31E6625619","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3725' content-type: - application/json @@ -520,6 +639,15 @@ interactions: - Fri, 27 Dec 2019 13:58:22 GMT etag: - '"1D5BCBDA89D8275"' +======= + - '3720' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:59:40 GMT + etag: + - '"1D59A11688B9F80"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -537,7 +665,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '498' +======= + - '494' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -582,7 +714,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:23 GMT +======= + - Wed, 13 Nov 2019 10:59:41 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -611,23 +747,35 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '756' + - '755' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:23 GMT +======= + - Wed, 13 Nov 2019 10:59:43 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -662,14 +810,22 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"},{"name":"password2","value":"DJBcLN3V8M9j8+sHX7KNqF8niZ7OOBIq"}]}' +======= + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"},{"name":"password2","value":"FXNkxThSgyMQ96enK1N+PmrOD82izihs"}]}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -678,7 +834,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:24 GMT +======= + - Wed, 13 Nov 2019 10:59:43 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -720,17 +880,29 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq/providers/Microsoft.ContainerRegistry/registries/functionappacrtestjj5sex","name":"functionappacrtestjj5sex","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtaxukv52qe62framiki27mbioow56xau3bvxuiyxigul6yogk4ib5eqpgwasfb7ei/providers/Microsoft.ContainerRegistry/registries/functionappacrtest2deqyn","name":"functionappacrtest2deqyn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' +======= + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.ContainerRegistry/registries/yugangw2acr","name":"yugangw2acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}}]}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1879' content-type: - application/json; charset=utf-8 date: - Fri, 27 Dec 2019 13:58:25 GMT +======= + - '679' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 10:59:45 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -759,23 +931,35 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '756' + - '755' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT +======= + - Wed, 13 Nov 2019 10:59:45 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -810,14 +994,22 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"},{"name":"password2","value":"DJBcLN3V8M9j8+sHX7KNqF8niZ7OOBIq"}]}' +======= + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"},{"name":"password2","value":"FXNkxThSgyMQ96enK1N+PmrOD82izihs"}]}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -826,7 +1018,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT +======= + - Wed, 13 Nov 2019 10:59:46 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -842,7 +1038,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1194' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -861,19 +1061,28 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan +<<<<<<< HEAD West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:04.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"42B7FD8BF61C4F79C2BC5AF4683E3EFFCC12166AE6037E75F8A5D3667B78AF5A","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:23.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1CC3647730C5C4B3EE84D8282522811D7DF60D907471479C691E2D31E6625619","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3723' content-type: - application/json @@ -881,6 +1090,15 @@ interactions: - Fri, 27 Dec 2019 13:58:27 GMT etag: - '"1D5BCBDA89D8275"' +======= + - '3718' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:59:46 GMT + etag: + - '"1D59A11688B9F80"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -917,26 +1135,42 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3305' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:27 GMT +======= + - '3107' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:59:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -975,15 +1209,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -992,7 +1234,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:28 GMT +======= + - Wed, 13 Nov 2019 10:59:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1018,7 +1264,11 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", +>>>>>>> Re-record test for app service "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' @@ -1039,15 +1289,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1056,9 +1314,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:29 GMT etag: - '"1D5BCBDB7CF7BCB"' +======= + - Wed, 13 Nov 2019 10:59:50 GMT + etag: + - '"1D59A117882F1AB"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1076,7 +1340,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1188' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1095,13 +1363,9 @@ interactions: "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1112,28 +1376,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1554' + - '1271' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan +<<<<<<< HEAD West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3285' content-type: - application/json @@ -1141,6 +1414,15 @@ interactions: - Fri, 27 Dec 2019 13:58:31 GMT etag: - '"1D5BCBDB7CF7BCB"' +======= + - '3087' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:59:51 GMT + etag: + - '"1D59A117882F1AB"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1158,7 +1440,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' +======= + - '1193' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1181,15 +1467,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1198,7 +1492,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:31 GMT +======= + - Wed, 13 Nov 2019 10:59:52 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1216,7 +1514,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11998' +======= + - '11999' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1224,12 +1526,20 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", +>>>>>>> Re-record test for app service "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": +<<<<<<< HEAD "Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}''' +======= + "T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -1247,15 +1557,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1264,9 +1582,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:33 GMT etag: - '"1D5BCBDB9FDF48B"' +======= + - Wed, 13 Nov 2019 10:59:54 GMT + etag: + - '"1D59A117AAA4B80"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1284,7 +1608,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1307,15 +1635,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1324,7 +1660,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:33 GMT +======= + - Wed, 13 Nov 2019 10:59:54 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1363,11 +1703,15 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -1380,7 +1724,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:34 GMT +======= + - Wed, 13 Nov 2019 10:59:55 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1417,26 +1765,42 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3303' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:35 GMT +======= + - '3105' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:59:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1475,15 +1839,23 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1492,7 +1864,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT +======= + - Wed, 13 Nov 2019 10:59:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1518,12 +1894,20 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", +>>>>>>> Re-record test for app service "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": +<<<<<<< HEAD "Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5", "DOCKER_ENABLE_CI": "true"}}''' +======= + "T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU", "DOCKER_ENABLE_CI": "true"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -1541,15 +1925,23 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1558,9 +1950,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT etag: - '"1D5BCBDBC4350AB"' +======= + - Wed, 13 Nov 2019 10:59:58 GMT + etag: + - '"1D59A117CF12E40"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1578,7 +1976,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1601,15 +2003,23 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1618,7 +2028,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:37 GMT +======= + - Wed, 13 Nov 2019 10:59:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1636,7 +2050,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11998' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1657,11 +2075,15 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -1674,7 +2096,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:37 GMT +======= + - Wed, 13 Nov 2019 10:59:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1713,15 +2139,23 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/publishingcredentials/$functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan +<<<<<<< HEAD West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg@functionappacrtest000004.scm.azurewebsites.net"}}' +======= + West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR@functionappacrtest000004.scm.azurewebsites.net"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1730,7 +2164,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:38 GMT +======= + - Wed, 13 Nov 2019 10:59:59 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1771,15 +2209,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1788,7 +2234,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:39 GMT +======= + - Wed, 13 Nov 2019 11:00:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1806,7 +2256,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11996' +======= + - '11998' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1827,11 +2281,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -1844,7 +2302,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:39 GMT +======= + - Wed, 13 Nov 2019 11:00:02 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1883,15 +2345,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/publishingcredentials/$functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan +<<<<<<< HEAD West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg@functionappacrtest000004.scm.azurewebsites.net"}}' +======= + West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR@functionappacrtest000004.scm.azurewebsites.net"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1900,7 +2370,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:40 GMT +======= + - Wed, 13 Nov 2019 11:00:03 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1918,7 +2392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11998' x-powered-by: - ASP.NET status: @@ -1941,11 +2415,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 response: body: string: '' @@ -1955,9 +2433,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:47 GMT etag: - '"1D5BCBDBC4350AB"' +======= + - Wed, 13 Nov 2019 11:00:09 GMT + etag: + - '"1D59A117CF12E40"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1971,7 +2455,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14999' +======= + - '14996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml index 7f075df1bce..88d54a12475 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:43 GMT + - Thu, 14 Nov 2019 01:40:51 GMT expires: - '-1' pragma: @@ -64,23 +64,23 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc6 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-10-21T10:50:46.5702681Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-10-21T10:50:49.525742+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-14T01:40:54.1923416Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-14T01:40:57.2047445+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache content-length: - - '755' + - '756' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:49 GMT + - Thu, 14 Nov 2019 01:40:57 GMT expires: - '-1' pragma: @@ -96,7 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1192' status: code: 200 message: OK @@ -122,7 +122,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:50 GMT + - Thu, 14 Nov 2019 01:40:58 GMT expires: - '-1' pragma: @@ -166,7 +166,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -182,7 +182,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:52 GMT + - Thu, 14 Nov 2019 01:40:59 GMT expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:53 GMT + - Thu, 14 Nov 2019 01:41:00 GMT expires: - '-1' pragma: @@ -272,7 +272,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -280,8 +280,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5511,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5511","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5706,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5706","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -290,7 +290,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:10 GMT + - Thu, 14 Nov 2019 01:41:16 GMT expires: - '-1' pragma: @@ -308,7 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1198' x-powered-by: - ASP.NET status: @@ -329,7 +329,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -337,8 +337,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5511,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5511","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5706,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5706","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -347,7 +347,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:11 GMT + - Thu, 14 Nov 2019 01:41:18 GMT expires: - '-1' pragma: @@ -389,7 +389,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -405,7 +405,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:12 GMT + - Thu, 14 Nov 2019 01:41:19 GMT expires: - '-1' pragma: @@ -423,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' x-powered-by: - ASP.NET status: @@ -444,7 +444,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -452,8 +452,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5511,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5511","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5706,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5706","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -462,7 +462,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:13 GMT + - Thu, 14 Nov 2019 01:41:19 GMT expires: - '-1' pragma: @@ -499,37 +499,37 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}}],"nextLink":null,"id":null}' + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16743' + - '16883' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:15 GMT + - Thu, 14 Nov 2019 01:41:20 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "alwaysOn": true, "localMySqlEnabled": + "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: @@ -566,33 +566,33 @@ interactions: Connection: - keep-alive Content-Length: - - '513' + - '495' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:20.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:24.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"05581BD2FAC64392233CFEFF2A4341838DAE4B8268084E11622135A9BAB07A89","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3534' + - '3624' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:37 GMT + - Thu, 14 Nov 2019 01:41:42 GMT etag: - - '"1D587FD7944EC15"' + - '"1D59A8CA042DDD5"' expires: - '-1' pragma: @@ -610,7 +610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '494' + - '498' x-powered-by: - ASP.NET status: @@ -635,28 +635,22 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/publishxml?api-version=2018-02-01 response: body: string: @@ -664,11 +658,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:51:38 GMT + - Thu, 14 Nov 2019 01:41:42 GMT expires: - '-1' pragma: @@ -682,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11999' x-powered-by: - ASP.NET status: @@ -703,887 +697,35 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d/providers/Microsoft.ContainerRegistry/registries/functionappacrtestr24kun","name":"functionappacrtestr24kun","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.ContainerRegistry/registries/feng8","name":"feng8","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwacrmon","name":"yugangwacrmon","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwana","name":"yugangwana","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwaudit","name":"yugangwaudit","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1925' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Oct 2019 10:51:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc6 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-10-21T10:50:46.5702681Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-10-21T10:50:49.525742+00:00","status":"disabled"}}}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Oct 2019 10:51:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - 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: - - acr credential show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc6 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-05-01 - response: - body: - string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"wESkmOtSDaMch1WxP/umNTK8si7xh6pN"},{"name":"password2","value":"hDDNyiMOjhEOtUfIZ6BtX5AYDkejn/W0"}]}' - headers: - cache-control: - - no-cache - content-length: - - '180' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Oct 2019 10:51:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d/providers/Microsoft.ContainerRegistry/registries/functionappacrtestr24kun","name":"functionappacrtestr24kun","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.ContainerRegistry/registries/feng8","name":"feng8","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwacrmon","name":"yugangwacrmon","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwana","name":"yugangwana","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwaudit","name":"yugangwaudit","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1925' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Oct 2019 10:51:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - webapp config container set - Connection: - - keep-alive - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc6 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-10-21T10:50:46.5702681Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-10-21T10:50:49.525742+00:00","status":"disabled"}}}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Oct 2019 10:51:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - 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: - - webapp config container set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc6 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 response: body: - string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"wESkmOtSDaMch1WxP/umNTK8si7xh6pN"},{"name":"password2","value":"hDDNyiMOjhEOtUfIZ6BtX5AYDkejn/W0"}]}' + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''westus'' could not be found."}}' headers: cache-control: - no-cache content-length: - - '180' + - '98' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:51:43 GMT + - Thu, 14 Nov 2019 01:41:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:20.8333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3532' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:44 GMT - etag: - - '"1D587FD7944EC15"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' - headers: - cache-control: - - no-cache - content-length: - - '3051' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '322' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"WEBSITES_ENABLE_APP_SERVICE_STORAGE": - "false"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - Content-Length: - - '89' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}' - headers: - cache-control: - - no-cache - content-length: - - '367' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:48 GMT - etag: - - '"1D587FD89890BB5"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1186' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", - "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", - "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": - "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "DOCKER|webappacrtest000003.azurecr.io/image-name:latest", - "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": - false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": - "$webappacrtest000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": - false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - Content-Length: - - '1410' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' - headers: - cache-control: - - no-cache - content-length: - - '3089' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:49 GMT - etag: - - '"1D587FD89890BB5"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1158' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}' - headers: - cache-control: - - no-cache - content-length: - - '367' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11993' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"WEBSITES_ENABLE_APP_SERVICE_STORAGE": - "false", "DOCKER_REGISTRY_SERVER_URL": "https://webappacrtest000003.azurecr.io", - "DOCKER_REGISTRY_SERVER_USERNAME": "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": - "wESkmOtSDaMch1WxP/umNTK8si7xh6pN"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - Content-Length: - - '300' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"wESkmOtSDaMch1WxP/umNTK8si7xh6pN"}}' - headers: - cache-control: - - no-cache - content-length: - - '572' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:51 GMT - etag: - - '"1D587FD8BCDE5A0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"wESkmOtSDaMch1WxP/umNTK8si7xh6pN"}}' - headers: - cache-control: - - no-cache - content-length: - - '572' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webappacrtest000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '196' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config container set - Connection: - - keep-alive - ParameterSetName: - - -g -n --docker-custom-image-name --docker-registry-server-url - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' - headers: - cache-control: - - no-cache - content-length: - - '3107' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:51:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK + code: 404 + message: Not Found version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml index 1a2c989f4ab..e6980591080 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT +======= + - Thu, 14 Nov 2019 01:41:34 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,14 +72,22 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.3685388Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:37.3684618+00:00","status":"disabled"}}}}' +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-14T01:41:35.7749709Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-14T01:41:38.3164876+00:00","status":"disabled"}}}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -80,7 +96,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:37 GMT +======= + - Thu, 14 Nov 2019 01:41:37 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -96,7 +116,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1188' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -122,7 +146,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -131,7 +159,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:38 GMT +======= + - Thu, 14 Nov 2019 01:41:38 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -166,7 +198,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -182,7 +218,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:38 GMT +======= + - Thu, 14 Nov 2019 01:41:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -228,7 +268,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -237,7 +281,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:39 GMT +======= + - Thu, 14 Nov 2019 01:41:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -272,7 +320,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -280,8 +332,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD West","properties":{"serverFarmId":6104,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + West","properties":{"serverFarmId":5707,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5707","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -290,7 +347,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:58 GMT +======= + - Thu, 14 Nov 2019 01:41:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -308,7 +369,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1189' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -329,7 +394,11 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -337,8 +406,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD West","properties":{"serverFarmId":6104,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + West","properties":{"serverFarmId":5707,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5707","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -347,7 +421,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:59 GMT +======= + - Thu, 14 Nov 2019 01:41:57 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -384,23 +462,39 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4073947Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4073947Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:09.3605103Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:13.4461171Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:13.4461171Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:41:13.3679949Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:00 GMT +======= + - '1168' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:41:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -435,7 +529,11 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -451,7 +549,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:00 GMT +======= + - Thu, 14 Nov 2019 01:41:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -467,7 +569,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -477,7 +583,11 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486"}, +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "A91352A5354BD958A1E81E787625A08C3639170743C01D3E32F951ADF186FEAE"}, +>>>>>>> Re-record test for app service {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -500,19 +610,28 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan +<<<<<<< HEAD West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:05.0166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1E9AF8C2BF2D32587B39C953004B0BF4D44438B44C39DE257CEBE96E9C6DF7EB","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:03.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"455B1DCB19A4AB97719FEF98EDBE62C82D3ED9138CF26F34601F3A63B4435C86","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3725' content-type: - application/json @@ -520,6 +639,15 @@ interactions: - Fri, 27 Dec 2019 13:58:23 GMT etag: - '"1D5BCBDA974A895"' +======= + - '3720' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:42:20 GMT + etag: + - '"1D59A8CB74D67E0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -582,7 +710,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:24 GMT +======= + - Thu, 14 Nov 2019 01:42:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -611,6 +743,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -2177,20 +2310,24 @@ interactions: User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: - string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''westus'' could not be found."}}' headers: cache-control: - no-cache content-length: - - '196' + - '98' content-type: +<<<<<<< HEAD - application/json date: - Fri, 27 Dec 2019 13:58:45 GMT @@ -2427,23 +2564,29 @@ interactions: - Fri, 27 Dec 2019 13:58:53 GMT etag: - '"1D5BCBDC1AE56CB"' +======= + - application/json; charset=utf-8 + date: + - Thu, 14 Nov 2019 01:42:22 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff +<<<<<<< HEAD x-ms-ratelimit-remaining-subscription-deletes: - '14998' x-powered-by: - ASP.NET +======= + x-ms-failure-cause: + - gateway +>>>>>>> Re-record test for app service status: - code: 200 - message: OK + code: 404 + message: Not Found version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml index 774b658bda2..7d8e6b42876 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:56 GMT + - Wed, 13 Nov 2019 10:59:52 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' status: code: 200 message: OK @@ -74,7 +74,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:56 GMT + - Wed, 13 Nov 2019 10:59:54 GMT expires: - '-1' pragma: @@ -117,7 +117,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -133,7 +133,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:57 GMT + - Wed, 13 Nov 2019 10:59:55 GMT expires: - '-1' pragma: @@ -151,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -179,7 +179,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -188,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:57 GMT + - Wed, 13 Nov 2019 10:59:55 GMT expires: - '-1' pragma: @@ -222,7 +222,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -230,8 +230,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20572,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_20572","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":22825,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -240,7 +240,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:05 GMT + - Wed, 13 Nov 2019 11:00:01 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1187' x-powered-by: - ASP.NET status: @@ -279,7 +279,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -287,8 +287,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20572,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_20572","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":22825,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:06 GMT + - Wed, 13 Nov 2019 11:00:03 GMT expires: - '-1' pragma: @@ -339,7 +339,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -355,7 +355,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:07 GMT + - Wed, 13 Nov 2019 11:00:03 GMT expires: - '-1' pragma: @@ -373,7 +373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' x-powered-by: - ASP.NET status: @@ -394,7 +394,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -402,8 +402,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20572,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_20572","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":22825,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -412,7 +412,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:09 GMT + - Wed, 13 Nov 2019 11:00:06 GMT expires: - '-1' pragma: @@ -456,26 +456,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004","name":"web-error000004","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-error000004","state":"Running","hostNames":["web-error000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-error000004","repositorySiteName":"web-error000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-error000004.azurewebsites.net","web-error000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-error000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-error000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:14.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-error000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BE5B70684C14FA4371E2FDA3F81E4B915B0499E9CA0163AE7DDEC382C7DC9663","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-error000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-error000004","state":"Running","hostNames":["web-error000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-error000004","repositorySiteName":"web-error000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-error000004.azurewebsites.net","web-error000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-error000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-error000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:09.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-error000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"36ECA35F630EECC43790A3BEAF1E7A59EE7EEEC881EB5956514C83CA9FB6AD46","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-error000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3534' + - '3537' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:30 GMT + - Wed, 13 Nov 2019 11:00:25 GMT etag: - - '"1D587FCC2AFB0E0"' + - '"1D59A1183FC42CB"' expires: - '-1' pragma: @@ -493,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '499' x-powered-by: - ASP.NET status: @@ -518,26 +518,21 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004/publishxml?api-version=2018-02-01 response: body: string: @@ -545,11 +540,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:46:31 GMT + - Wed, 13 Nov 2019 11:00:25 GMT expires: - '-1' pragma: @@ -563,7 +558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -600,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:32 GMT + - Wed, 13 Nov 2019 11:00:27 GMT expires: - '-1' pragma: @@ -634,7 +629,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -650,7 +645,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:33 GMT + - Wed, 13 Nov 2019 11:00:27 GMT expires: - '-1' pragma: @@ -668,7 +663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -705,7 +700,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:33 GMT + - Wed, 13 Nov 2019 11:00:28 GMT expires: - '-1' pragma: @@ -739,7 +734,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -747,8 +742,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20573,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_20573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":33286,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33286","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -757,7 +752,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:41 GMT + - Wed, 13 Nov 2019 11:00:36 GMT expires: - '-1' pragma: @@ -775,7 +770,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1186' x-powered-by: - ASP.NET status: @@ -796,7 +791,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -804,8 +799,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20573,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_20573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":33286,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33286","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -814,7 +809,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:45 GMT + - Wed, 13 Nov 2019 11:00:37 GMT expires: - '-1' pragma: @@ -856,7 +851,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -872,7 +867,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:45 GMT + - Wed, 13 Nov 2019 11:00:37 GMT expires: - '-1' pragma: @@ -890,7 +885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' x-powered-by: - ASP.NET status: @@ -911,7 +906,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -919,8 +914,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20573,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_20573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":33286,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33286","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -929,7 +924,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:46 GMT + - Wed, 13 Nov 2019 11:00:38 GMT expires: - '-1' pragma: @@ -973,11 +968,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/web-error000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/web-error000004?api-version=2018-02-01 response: body: string: '{"Code":"Conflict","Message":"Website with given name web-error000004 @@ -993,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:48 GMT + - Wed, 13 Nov 2019 11:00:40 GMT expires: - '-1' pragma: @@ -1007,7 +1002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml index 8c27f0056d6..98046b22826 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml @@ -18,8 +18,8 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -35,7 +35,7 @@ interactions: content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:38 GMT + - Wed, 13 Nov 2019 10:58:04 GMT expires: - '-1' pragma: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -78,8 +78,8 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -87,17 +87,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":2236,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-133_2236","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1522' + - '1524' content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:44 GMT + - Wed, 13 Nov 2019 10:58:13 GMT expires: - '-1' pragma: @@ -115,7 +115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' x-powered-by: - ASP.NET status: @@ -135,8 +135,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -144,17 +144,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":2236,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-133_2236","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1522' + - '1524' content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:46 GMT + - Wed, 13 Nov 2019 10:58:15 GMT expires: - '-1' pragma: @@ -190,8 +190,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -199,17 +199,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":2236,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-133_2236","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1522' + - '1524' content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:46 GMT + - Wed, 13 Nov 2019 10:58:15 GMT expires: - '-1' pragma: @@ -253,8 +253,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -262,17 +262,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":2236,"name":"web-del-plan000003","sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-133_2236","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1}}' + US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1569' + - '1571' content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:49 GMT + - Wed, 13 Nov 2019 10:58:18 GMT expires: - '-1' pragma: @@ -290,7 +290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -310,8 +310,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -319,17 +319,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":2236,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-133_2236","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1528' content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:49 GMT + - Wed, 13 Nov 2019 10:58:19 GMT expires: - '-1' pragma: @@ -370,8 +370,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -387,7 +387,7 @@ interactions: content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:50 GMT + - Wed, 13 Nov 2019 10:58:19 GMT expires: - '-1' pragma: @@ -405,7 +405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -425,8 +425,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -434,17 +434,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":2236,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-133_2236","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1528' content-type: - application/json date: - - Wed, 18 Sep 2019 20:13:50 GMT + - Wed, 13 Nov 2019 10:58:20 GMT expires: - '-1' pragma: @@ -470,8 +470,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -482,33 +481,33 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '520' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002","name":"web-del-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-09-18T20:13:53.3166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null}}' + US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:24.873","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"81C9D4C70A47141D27B5A056078D7EA866353DBA0AB663517802E7C5A78B6124","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3496' + - '3541' content-type: - application/json date: - - Wed, 18 Sep 2019 20:14:10 GMT + - Wed, 13 Nov 2019 10:58:41 GMT etag: - - '"1D56E5D97E4D02B"' + - '"1D59A1145C18690"' expires: - '-1' pragma: @@ -526,7 +525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -550,27 +549,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002/publishxml?api-version=2018-02-01 response: body: string: @@ -578,11 +572,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Wed, 18 Sep 2019 20:14:11 GMT + - Wed, 13 Nov 2019 10:58:43 GMT expires: - '-1' pragma: @@ -596,7 +590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -616,27 +610,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002","name":"web-del-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-09-18T20:13:53.6666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' + US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:25.273","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"81C9D4C70A47141D27B5A056078D7EA866353DBA0AB663517802E7C5A78B6124","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3494' + - '3539' content-type: - application/json date: - - Wed, 18 Sep 2019 20:14:12 GMT + - Wed, 13 Nov 2019 10:58:44 GMT etag: - - '"1D56E5D97E4D02B"' + - '"1D59A1145C18690"' expires: - '-1' pragma: @@ -674,12 +668,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-02-01 response: body: string: '' @@ -689,9 +683,9 @@ interactions: content-length: - '0' date: - - Wed, 18 Sep 2019 20:14:15 GMT + - Wed, 13 Nov 2019 10:58:49 GMT etag: - - '"1D56E5D97E4D02B"' + - '"1D59A1145C18690"' expires: - '-1' pragma: @@ -705,7 +699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -725,8 +719,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -742,7 +736,7 @@ interactions: content-type: - application/json date: - - Wed, 18 Sep 2019 20:14:16 GMT + - Wed, 13 Nov 2019 10:58:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml index 43246f2b8a7..a8d552572df 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:44:53 GMT + - Wed, 13 Nov 2019 10:57:40 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1187' status: code: 200 message: OK @@ -74,7 +74,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:44:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:44:54 GMT + - Wed, 13 Nov 2019 10:57:42 GMT expires: - '-1' pragma: @@ -117,7 +117,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -133,7 +133,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:44:55 GMT + - Wed, 13 Nov 2019 10:57:42 GMT expires: - '-1' pragma: @@ -151,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -179,7 +179,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:44:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -188,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:44:55 GMT + - Wed, 13 Nov 2019 10:57:43 GMT expires: - '-1' pragma: @@ -222,7 +222,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -230,8 +230,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","name":"planInOneRG","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28409,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28409","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":28655,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -240,7 +240,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:06 GMT + - Wed, 13 Nov 2019 10:57:50 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -279,7 +279,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -287,8 +287,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","name":"planInOneRG","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28409,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28409","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":28655,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:06 GMT + - Wed, 13 Nov 2019 10:57:51 GMT expires: - '-1' pragma: @@ -339,7 +339,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -355,7 +355,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:08 GMT + - Wed, 13 Nov 2019 10:57:52 GMT expires: - '-1' pragma: @@ -373,7 +373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -394,7 +394,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -402,8 +402,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","name":"planInOneRG","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28409,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28409","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":28655,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -412,7 +412,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:09 GMT + - Wed, 13 Nov 2019 10:57:53 GMT expires: - '-1' pragma: @@ -456,26 +456,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG","name":"webInOtherRG","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webInOtherRG","state":"Running","hostNames":["webinotherrg.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webInOtherRG","repositorySiteName":"webInOtherRG","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webinotherrg.azurewebsites.net","webinotherrg.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webinotherrg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webinotherrg.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:45:14.707","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webInOtherRG","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A55427C1699CE947FD09366ECD509E2843A5D1B42A2DDC54A2EF3ABF4F625995","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"webinotherrg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webInOtherRG","state":"Running","hostNames":["webinotherrg.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webInOtherRG","repositorySiteName":"webInOtherRG","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webinotherrg.azurewebsites.net","webinotherrg.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webinotherrg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webinotherrg.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:57.227","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webInOtherRG","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A55427C1699CE947FD09366ECD509E2843A5D1B42A2DDC54A2EF3ABF4F625995","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"webinotherrg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3371' + - '3381' content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:31 GMT + - Wed, 13 Nov 2019 10:58:14 GMT etag: - - '"1D587FC9F77BAF0"' + - '"1D59A11355349B0"' expires: - '-1' pragma: @@ -493,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -518,26 +518,21 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG/publishxml?api-version=2018-02-01 response: body: string: @@ -545,11 +540,11 @@ interactions: cache-control: - no-cache content-length: - - '1574' + - '1042' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:45:31 GMT + - Wed, 13 Nov 2019 10:58:14 GMT expires: - '-1' pragma: @@ -563,7 +558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11999' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml index eea56dbc36e..b44ec657b9c 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_zipDeploy000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:56:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:09Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:56:28 GMT + - Wed, 13 Nov 2019 11:09:13 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:29 GMT + - Wed, 13 Nov 2019 11:09:15 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1192' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_zipDeploy000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:56:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:09Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:56:30 GMT + - Wed, 13 Nov 2019 11:09:15 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","name":"webapp-zipDeploy-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31673,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_31673","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21754,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21754","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:37 GMT + - Wed, 13 Nov 2019 11:09:22 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1171' + - '1185' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","name":"webapp-zipDeploy-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31673,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_31673","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21754,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21754","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:39 GMT + - Wed, 13 Nov 2019 11:09:23 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:40 GMT + - Wed, 13 Nov 2019 11:09:25 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1192' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","name":"webapp-zipDeploy-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31673,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_31673","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21754,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21754","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:41 GMT + - Wed, 13 Nov 2019 11:09:26 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '554' + - '536' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002","name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net","webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:56:46.137","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EE0AEA641589E1DD422F44E2351489B73893CCE294F6CDE82691D1B8E2523693","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:30.29","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7CA1457E4A6406921BFB0568E45DCCF4E739BCE9AFC75DC2204BAD0C0DDE9670","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3731' + - '3740' content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:02 GMT + - Wed, 13 Nov 2019 11:09:46 GMT etag: - - '"1D587FE3B979350"' + - '"1D59A12D289CF35"' expires: - '-1' pragma: @@ -466,29 +465,23 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2018-02-01 response: body: string: @@ -496,11 +489,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:57:03 GMT + - Wed, 13 Nov 2019 11:09:47 GMT expires: - '-1' pragma: @@ -514,7 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11994' x-powered-by: - ASP.NET status: @@ -537,15 +530,15 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/publishingcredentials/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishingcredentials/$webapp-zipDeploy-test000002","name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-zipDeploy-test000002","publishingPassword":"rQvswsdw4bzugGgSxfpjYfHymQRrledug1pF8SBS1cSi7EPzcnEcGwpz4vab","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-zipDeploy-test000002:rQvswsdw4bzugGgSxfpjYfHymQRrledug1pF8SBS1cSi7EPzcnEcGwpz4vab@webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$webapp-zipDeploy-test000002","publishingPassword":"wxQwfoJpdnJFYN24Lvx2C7qqfKLz7W7JHbg6sWeoliqGeryLSvf4kc5ijmuH","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-zipDeploy-test000002:wxQwfoJpdnJFYN24Lvx2C7qqfKLz7W7JHbg6sWeoliqGeryLSvf4kc5ijmuH@webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -554,7 +547,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:05 GMT + - Wed, 13 Nov 2019 11:09:49 GMT expires: - '-1' pragma: @@ -572,7 +565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11997' x-powered-by: - ASP.NET status: @@ -593,26 +586,26 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002","name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net","webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:56:46.853","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EE0AEA641589E1DD422F44E2351489B73893CCE294F6CDE82691D1B8E2523693","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-testttkt54akhdrpfroxkd6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:30.9633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7CA1457E4A6406921BFB0568E45DCCF4E739BCE9AFC75DC2204BAD0C0DDE9670","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3729' + - '3743' content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:06 GMT + - Wed, 13 Nov 2019 11:09:51 GMT etag: - - '"1D587FE3B979350"' + - '"1D59A12D289CF35"' expires: - '-1' pragma: @@ -653,29 +646,23 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2018-02-01 response: body: string: @@ -683,11 +670,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:57:07 GMT + - Wed, 13 Nov 2019 11:09:52 GMT expires: - '-1' pragma: @@ -701,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11993' x-powered-by: - ASP.NET status: @@ -724,11 +711,11 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -741,7 +728,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:08 GMT + - Wed, 13 Nov 2019 11:09:53 GMT expires: - '-1' pragma: @@ -759,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11995' x-powered-by: - ASP.NET status: @@ -780,11 +767,11 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites","location":"West @@ -797,7 +784,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:09 GMT + - Wed, 13 Nov 2019 11:09:54 GMT expires: - '-1' pragma: @@ -836,11 +823,11 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -853,7 +840,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:10 GMT + - Wed, 13 Nov 2019 11:09:56 GMT expires: - '-1' pragma: @@ -871,7 +858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11990' + - '11996' x-powered-by: - ASP.NET status: @@ -897,11 +884,11 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -914,9 +901,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:12 GMT + - Wed, 13 Nov 2019 11:09:58 GMT etag: - - '"1D587FE4AFC0150"' + - '"1D59A12E29D1AD5"' expires: - '-1' pragma: @@ -934,7 +921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1175' + - '1184' x-powered-by: - ASP.NET status: @@ -960,7 +947,7 @@ interactions: content-type: - application/octet-stream method: POST - uri: https://webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net/api/zipdeploy?isAsync=true + uri: https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/zipdeploy?isAsync=true response: body: string: '' @@ -970,17 +957,17 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:57:27 GMT + - Wed, 13 Nov 2019 11:10:13 GMT expires: - '-1' location: - - https://webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-10-21_10-57-26Z + - https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-11-13_11-10-14Z pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=5d68bbbd058c9080d516a5ea1695523ef7e69df61ace8b5fc32b755890d87b80;Path=/;HttpOnly;Domain=webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net + - ARRAffinity=8d19353e31508408a606729f6c5bf28df0a8240d674128eb1edb9f017011bcb8;Path=/;HttpOnly;Domain=webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -1002,31 +989,31 @@ interactions: content-type: - application/octet-stream method: GET - uri: https://webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net/api/deployments/mock-deployment + uri: https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"a4a782642ace45f8ae80fd33d5a23596","status":1,"status_text":"Building - and Deploying ''a4a782642ace45f8ae80fd33d5a23596''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-10-21T10:57:27.3859416Z","start_time":"2019-10-21T10:57:27.6984744Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"webapp-zipDeploy-test000002","provisioningState":null}' + string: '{"id":"cd028ba608e14fe9949d3e57ce9f76e2","status":1,"status_text":"Building + and Deploying ''cd028ba608e14fe9949d3e57ce9f76e2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running post deployment command(s)...","received_time":"2019-11-13T11:10:14.2921618Z","start_time":"2019-11-13T11:10:14.4015126Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"webapp-zipDeploy-test000002","provisioningState":null}' headers: cache-control: - no-cache content-length: - - '584' + - '592' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:57:32 GMT + - Wed, 13 Nov 2019 11:10:17 GMT expires: - '-1' location: - - https://webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net/api/deployments/latest + - https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=5d68bbbd058c9080d516a5ea1695523ef7e69df61ace8b5fc32b755890d87b80;Path=/;HttpOnly;Domain=webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net + - ARRAffinity=8d19353e31508408a606729f6c5bf28df0a8240d674128eb1edb9f017011bcb8;Path=/;HttpOnly;Domain=webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -1048,11 +1035,11 @@ interactions: content-type: - application/octet-stream method: GET - uri: https://webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net/api/deployments/mock-deployment + uri: https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"a4a782642ace45f8ae80fd33d5a23596","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"","received_time":"2019-10-21T10:57:27.3859416Z","start_time":"2019-10-21T10:57:27.6984744Z","end_time":"2019-10-21T10:57:33.1049793Z","last_success_end_time":"2019-10-21T10:57:33.1049793Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net/api/deployments/latest","log_url":"https://webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net/api/deployments/latest/log","site_name":"webapp-zipDeploy-test000002","provisioningState":null}' + string: '{"id":"cd028ba608e14fe9949d3e57ce9f76e2","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2019-11-13T11:10:14.2921618Z","start_time":"2019-11-13T11:10:14.4015126Z","end_time":"2019-11-13T11:10:18.6209808Z","last_success_end_time":"2019-11-13T11:10:18.6209808Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest","log_url":"https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest/log","site_name":"webapp-zipDeploy-test000002","provisioningState":null}' headers: cache-control: - no-cache @@ -1061,7 +1048,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:57:37 GMT + - Wed, 13 Nov 2019 11:10:23 GMT expires: - '-1' pragma: @@ -1069,7 +1056,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=5d68bbbd058c9080d516a5ea1695523ef7e69df61ace8b5fc32b755890d87b80;Path=/;HttpOnly;Domain=webapp-zipdeploy-testttkt54akhdrpfroxkd6.scm.azurewebsites.net + - ARRAffinity=8d19353e31508408a606729f6c5bf28df0a8240d674128eb1edb9f017011bcb8;Path=/;HttpOnly;Domain=webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml index 9c017c58d34..7b82899f5f1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:59 GMT + - Wed, 13 Nov 2019 11:01:09 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:01 GMT + - Wed, 13 Nov 2019 11:01:09 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1191' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:01 GMT + - Wed, 13 Nov 2019 11:01:09 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28410,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28410","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":23993,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23993","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:10 GMT + - Wed, 13 Nov 2019 11:01:15 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1191' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28410,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28410","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":23993,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23993","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:11 GMT + - Wed, 13 Nov 2019 11:01:18 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:13 GMT + - Wed, 13 Nov 2019 11:01:20 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28410,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28410","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":23993,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23993","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:13 GMT + - Wed, 13 Nov 2019 11:01:20 GMT expires: - '-1' pragma: @@ -396,15 +396,15 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 + string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 (Oracle)","runtimeVersion":"1.7.0_51","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_71 (Oracle)","runtimeVersion":"1.7.0_71","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_80 (Oracle)","runtimeVersion":"1.7.0_80","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_191 @@ -425,17 +425,17 @@ interactions: (Azul)","runtimeVersion":"1.8.0_202_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.8.0_212 (Azul)","runtimeVersion":"1.8.0_212_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"11","runtimeVersion":"11","isDefault":false,"minorVersions":[{"displayVersion":"11.0.2 (Azul)","runtimeVersion":"11.0.2_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"11.0.3 - (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null},{"name":"java","display":"Java - SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null}]}}],"nextLink":null,"id":null}' + (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java + SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17083' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:16 GMT + - Wed, 13 Nov 2019 11:01:21 GMT expires: - '-1' pragma: @@ -479,26 +479,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:19.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EFFBF12BE550D8D7CC1969C87ECEC52D87BCC1B40A350267E85CA9F2B393BBFC","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:25.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A0B7790F45B5146C33EE576CCBA85B98B8F0B5F1AC2DB47E0DB31A001A67C0DE","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3527' + - '3525' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:36 GMT + - Wed, 13 Nov 2019 11:01:42 GMT etag: - - '"1D587FCC63B2190"' + - '"1D59A11B16E1200"' expires: - '-1' pragma: @@ -516,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -537,26 +537,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:20.457","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EFFBF12BE550D8D7CC1969C87ECEC52D87BCC1B40A350267E85CA9F2B393BBFC","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:25.92","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A0B7790F45B5146C33EE576CCBA85B98B8F0B5F1AC2DB47E0DB31A001A67C0DE","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3526' + - '3523' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:37 GMT + - Wed, 13 Nov 2019 11:01:43 GMT etag: - - '"1D587FCC63B2190"' + - '"1D59A11B16E1200"' expires: - '-1' pragma: @@ -598,11 +598,11 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -615,9 +615,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:53 GMT + - Wed, 13 Nov 2019 11:01:56 GMT etag: - - '"1D587FCD9BF5100"' + - '"1D59A11C4425260"' expires: - '-1' pragma: @@ -631,7 +631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1183' x-powered-by: - ASP.NET status: @@ -652,69 +652,14 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:47:12.9648909 - https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-47-09Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '707' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:47:25 GMT - etag: - - '"1D587FCD9BF5100"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan --deployment-source-url -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:47:52.2236964 - https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-47-09Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T11:02:28.5995689 + https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_11-02-05Z"}}' headers: cache-control: - no-cache @@ -723,9 +668,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:56 GMT + - Wed, 13 Nov 2019 11:02:28 GMT etag: - - '"1D587FCD9BF5100"' + - '"1D59A11C4425260"' expires: - '-1' pragma: @@ -762,9 +707,9 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -777,9 +722,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:27 GMT + - Wed, 13 Nov 2019 11:02:58 GMT etag: - - '"1D587FCD9BF5100"' + - '"1D59A11C4425260"' expires: - '-1' pragma: @@ -820,28 +765,22 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2018-02-01 response: body: string: @@ -849,11 +788,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:48:30 GMT + - Wed, 13 Nov 2019 11:03:00 GMT expires: - '-1' pragma: @@ -867,7 +806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -888,26 +827,26 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:53.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EFFBF12BE550D8D7CC1969C87ECEC52D87BCC1B40A350267E85CA9F2B393BBFC","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:57.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A0B7790F45B5146C33EE576CCBA85B98B8F0B5F1AC2DB47E0DB31A001A67C0DE","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3524' + - '3523' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:00 GMT + - Wed, 13 Nov 2019 11:03:31 GMT etag: - - '"1D587FCD9BF5100"' + - '"1D59A11C4425260"' expires: - '-1' pragma: @@ -948,28 +887,22 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2018-02-01 response: body: string: @@ -977,11 +910,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:49:03 GMT + - Wed, 13 Nov 2019 11:03:32 GMT expires: - '-1' pragma: @@ -995,7 +928,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' x-powered-by: - ASP.NET status: @@ -1018,15 +951,15 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/config/publishingcredentials/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishingcredentials/$webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"Bhhb6qllkxGELDmRajDoxn3kSbJEpwrr18rTDc2M9XcXmYZxHiNYrMFCmf1P","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:Bhhb6qllkxGELDmRajDoxn3kSbJEpwrr18rTDc2M9XcXmYZxHiNYrMFCmf1P@webapp-win-log000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"84LdXWLSzEeWKKE79T4yQ6KQnwrAP6BZPglfDsdgRejFuswbNaNlaZnjvgpg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:84LdXWLSzEeWKKE79T4yQ6KQnwrAP6BZPglfDsdgRejFuswbNaNlaZnjvgpg@webapp-win-log000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1035,7 +968,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:03 GMT + - Wed, 13 Nov 2019 11:03:33 GMT expires: - '-1' pragma: @@ -1053,7 +986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11994' x-powered-by: - ASP.NET status: @@ -1067,410 +1000,328 @@ interactions: response: body: string: !!binary | - UEsDBBQACAAIAAdWVU8AAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw - l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACAAH - VlVPAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj - MDFlYzc5MjQyZmZiMDcvbG9nLmxvZ61Y3Y7cthW+boG+g+CL7gYYsqRIieL2ZoPYbYG2RmAnCLBY - INAPNaNGI04ljTeTqzyEL/sqRd8lL9BX6EfNrETt7igeo/YC9lnqfOc7Pzw8ZMi4JpyRkH/D2Y1U - NzymOmIsifjd6ttdkfZVsw66fba1xb42HV1xLnNVMk2kKEoiyygjiWElSaOs0ILHoSrkiv3ut+Ez - ZEXjkGsdyrvV163Zpa2DLsyutoetafqgtG2Q2+226oOqCK7yPJEl/ujwiq4yXUQ8LXIi0gymkzwl - WSE4YcrwJI+jKGLRy1YTygRP4ii+W/3ZNKY9euSZ7fK22vV0FYYFZ6HMSFjGCZGFESSLdU4koEsh - lIg5cyZ+89yzhAqp8OsIMeucV/3GwJ26tg9Ock6lTRH0NlgfKRjf7yOBm+Aq/WnfmqCren/5uBqQ - Q0BIY0lhe+KRJ23w6vXN/cZuzb1TvEdgLf5j28OrgNgni5Nid99bW3f4BqCFwT9O++u03zxR8fCQ - hpf9DxUNGVNKwf+lGA8ZduboP7rgO5MF72FzwHwWUkAqqWIRirvVu33TPCmVU0QppSspskyqjJE4 - zQyRLIxIqnJFTBYWIs5KEWXiLO3RxlfHFN088f5ZwO6Pv6H5tnh1JhqCUyGSUCpQ/wvSXjvuj15P - gOeCKYTzXEYhu1t91Zpjuaa73fe2LAFl6KbfnrMMVaWEUvpu9dd9sX9/aHL69s03QdnaLerrTKFc - oTCfrj48PLTW9lefYOm1qc3QJcqqNsDZ2M6JXZ+2vSNbL4FoocNIwVO7O7g4nTDouuqrdWNb8xnK - uzT/IV27IrPN56i3Njdd92vqCUu45M+pd6b9YFpoL5jWLEJloz7G2H1igiPKOBdMQ/Vv1v4wRAxd - E9ow+IfRdLBvCtMeO4lL49laiyljTCYxWvKxcQ1ZI/tdcGo7I+S5QgACvFFxOG59UwQPJqO5bcpq - vWT5Ue/tqSMgbF1lmy5IP6RVnWa1CWwztNJdnfY4HbZB2qLCGI3Rb34/9IA/Qkpo6Atc+1IYzyQ1 - k5JJ4oxGM4nPF0M+Ww3lXPSsACl8ousxwqqYQwmPPVal5xkP6VzyPw2p8DiEdKQgKZvUJOVzYYSQ - NKQjEyfMVkZstzI6K6nw0YSvA7OPfCSFWV/wuEk65kBS1PP0GUrJFzyAZGIAjemzCM6Nn0U+twgM - RrTItxOherwVNRc8NAwOj3Qiqic7UJ9WYj+8KMspILFPJ/YZxD6DmHoMMHv50DOj2ofWU0Cczli5 - oDMnh2p7dAJrXrQGacz4IPkoM0dQhiMK2E4Ule89hgB/xSsU5SdD+aHASOjreKHA+T/5CDtzq2xK - B9I0QSQgNBYrqsZf8Wot8YOeoIGMmXbCWAOJnw4njFFwgmfHZwd9L8xuZUKH5PkLiXv7xIkRYni+ - 03IW8VCgV7/HkZv3aLSPY8WpdQbDjqLBt50J/FNwOFbd+JlvrMVaGhRVWZrWTd0n1cvM7raPegGa - CLYh/wTW43WiqrqB+GFbB2kfzMaS0+Bx731zBjoKMSglWmpM9g0Iffflu7dzrw/7ddqsHwiOI4Ij - 8hadkLLgrcXwfTzecNqsVvylkd6Bx1xLgXPtQvBpYkbYTV0gsmdNKNyYFGaIC028e/Pl67+/CXA7 - S///4HWVmwZFskA+ueEYNWNceWJMIubHXYuB6Ra1jI061OT3p+vi/WntxRQeUXDTVBwov3z81y8f - f8YPDvk2PZASZ35vGiQNfy/SR3LTnSFu9BxSLha0daI4x6Q9WcfcArM96Q87M6jLi9S3pt/Yohto - h+c1Ex4nuJb6hk2TYxDat0fSF+r26Rom0XsWTIZaMT0zmbsZ0txi6KBsQVEqHrOZIi7v3YmqoAvx - TZ6rttiShgwALSijfVxk+UgZt9V1k/a4Lg8pihcgYqZj1zOfZ7iouuGujC6AEGB8WEBRsX5Spfu+ - qjuyNe36yGHJDR1rpnE5njh8SNvDr9WIZioRERrQpDaYw/3/2L5s6+oMx8Z54jpMQvz4GDtc8klv - SWvW2J3wnFO1ACA0HoNm3Lu0NCTbuwPk1k1gC6WK690zbXc/Irhn9FXuIoCucZH1Er1mM+RryW4k - VRTNStZZ3HfGRQyTwILJF1RNv2ttb11LsOWQtiXOignJcAWf0oZbfzGoLVF+rvbP7nYYDxfIPley - DSmrpuo2prjF3IYD79oY/Krt+iPzLxbgkkjrBC9/E3VgpfXGPWMg264Xh8H1vtlVp+bILkNDGH88 - kLQoWnDDnguuca17SNsCZF0hjgNptXMf4VILm5iJL7NSmGy/hgGMxsH1thtMnYdA78PLXaJmp0Bn - moGRO9Cusd/61rr9ik75OE4PuAjIKFdb1wi8+W7T9zti2va4TRUVZ714kUKa52bXuwDgrA2uG7O2 - fZXiZQ+Rwk3DtzscVs5PRFBeZsXVNKmcFdwBEoTLFFU64Dk73hC/hX+fYefjf//zb/y4cz2zxWFq - /BxpDa6zQ48tKUB8HMHb9IG4T+GON78/Debof4UD+wOp8ZIIvrisfpL/fzrtELxsI8pdV+7r+nAc - gZ88RWJIAYtYcu5exB+fInFu9P4T7uk98rr7wj1JJqHWheGKJDIVRKoC/wsjRpJM6gjvkVGq4xce - qwdTXAkZuy34enoYn0jSVRwrrWXBCM81sNNEAjsUJAqjXMo4MrzMHfb/AFBLBwjUy6pM4AcAANkX - AABQSwMEFAAIAAgA8FVVTwAAAAAAAAAAAAAAAD0AAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0 - MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L21hbmlmZXN000vPLMlMz8svSuXlKkhMzk5MT9XL - Ks7PA/KK8pNTi4uhvOLUorLUIiCHl0sPqIWXCwBQSwcITTyJtTIAAAA5AAAAUEsDBBQACAAIAAdW - VU8AAAAAAAAAAAAAAAA/AAAAZGVwbG95bWVudHMvY2M4NGZmZmY5MmE5NDA0Y2VlNTk1ZWU4OGMw - MWVjNzkyNDJmZmIwNy9zdGF0dXMueG1sjZK9bsMgFIX3Sn0HK3tscBz/RIR0Sdu9nrpUBF+7SMZY - gNPk2Tr0kfoKpSS2XClDmbj3nO9wEXx/fpHdSbbBEbQRqtsucIgWAXRcVaJrtovB1st8saP3d6SC - vlVnCZ11VRAQUVHO86R2q4hZkaCEA6yLNUCec4SBZ0WcxHV9QBmJnNlDbLDvStPz0LCu+VhKU1sS - XZvecDkFNH0S9nk4kGhqzPi9ZKIdQx6k4FoZVduQKzmmXSyekWAMa4CyqgrMcKiUozu363ulrbtY - NBq8u9eq0Y6gJJq2XjCW2cHQl4FzJ5PoWs+0Ek7WYRfBF15smbFXat9VpZBAY4SLJUbLGJcYbZJ8 - g5MQ5wUqVvkriW4APkgDB3GEmxHZBqdhmqEUrxIX8cc6jqjtrcMdmYXpKkvjInOkm/7q8xj8a+LR - 5RH3Cn0LFmipByDRVHpRmDcLsqePrDVOHMtR08Aq1bXnmT61fp9q9gl/AFBLBwgfP1D9aQEAALwC - AABQSwMEFAAAAAAA5FVVTwAAAAAAAAAAAAAAABMAAABkZXBsb3ltZW50cy9wZW5kaW5nUEsDBBQA - CAAIANpVVU8AAAAAAAAAAAAAAAAYAAAAZGVwbG95bWVudHMvc2V0dGluZ3MueG1se797v419RW6O - QllqUXFmfp6tkqGegZJCal5yfkpmXrqtUmlJmq6Fkr0dL5dNcWpJCVCsGMhWULBJSS3Iya/MTc0r - AfOBIokpKQrZqZW2SklFiXnJGUoKZYk5pam2SrmJxSWpRUoK+hCN+ig6bfThxgIAUEsHCAwFZiRy - AAAAjAAAAFBLAwQUAAgACADtVVVPAAAAAAAAAAAAAAAAHAAAAGRlcGxveW1lbnRzL3Rvb2xzL2Rl - cGxveS5jbWTFVt9v4kYQfkfifxiQLN1VwUmurSqRUh0iyx09MBQ7uZyEZDn2Ar6YXddeh9CH/u2d - 2bX5EUju+nQ8gPHszH47+30z8z6eQ9NyeyPfm3Z7zB+yWza0muCwv6D5SxPe83ApQc7n9Vq91m5D - 6+RHmz7dXN/ANU8TuVlxocANszhV2nTLszyWog2X9oV9+durkbRxkvGM/13Eeax4fry8BINh4/kG - hIy4/TWHWOQqSBIe1WvrJfprA7z7QxQJ0Fe9NuiDxabT8dQcU5/yAt7UawD6nKM4z2Ox2EbkTzws - VHCf8DNIEx7kvNqkWnIGmMAgyXgQbSobj2AVPHDIC8QQKwgDAfcccE24RNs8kysIiyyjJHHxGGdS - UMJsgrGQSgLPMpnVa2/LY7pcFekuCfQ25yqRYZCgP6GLeBJs8PspDQQlmpa4zIPu1Bv0uz3P7Vj/ - RumFZduzIFPxPAgVZlXnwxl7cM36A4dd4+9kOP4yYo7nu+ObaY+Z1FCkI1MVsYSJmX0hktedfsAA - OsnPIhlTx9rCtGbr9TqTElmjD/8sqsPuPH/UdQZ95nr+pOt93IU9th3EXQUinvMcA1OWn8WdTNnt - YHzjnooNQKBPr3hhBwAEfwo/KcR3vzg9vze6NtBRUgNDW3googLyjQi3dCwtxMhPZHRLI158AiJd - VYTTruQJrQUqNI8TpFN5zsaO742S7/sco1WIYUhkSjbwtcgVZIUQtGeTENGeTVjLIomQ57nEx+yB - vCgtBwfqWEGaRoEKrBlim1XOdrhCQWI69La7+kA3gTvfqDiJ1Qb6hQgVUveE2qnk6NUuT3ioHJR7 - WVBKDlf8NXDYkPU83xlfM/+WTd3B2DlIt7fkMJdJItd0xgAlGknBQQo8vhTwORaRXOfQ/YfU+5nf - 6xK0r1M6vL4B67X9LCyrR6LBwnrw1gjg6C0bTazm998fspndDVzvWWyKMvN9qo5lumy1SpuGd+b+ - zlNULeaJ3bHO74fIXvAmVFo/3+CV1gBAeYjX4KWr19BNRv6frpb6SwAP/f8XvhLdfuGq0rGfpepd - h1JJPlrbJoMOAkQxd5qNalUD77hBr0vcDbzJt8CG7l41rbxQJxSPpFS5l5voLbRi2mzcN1pp/+CP - 1uu+gA/mAY1x36o76sdARMl+S422AwL2Ox3x0tbVzRQ35PL5AIk8cPzJkAaSnYaqqeSypLDWYJvp - Fs17qwi9DuoRrm89wq8X0KIRZxen7G1kVoeGrRxbAg3HHYVcUrSc7gZkjaFpL2J1ZS8XV/buqFfm - kUrhd+pa3z/m950NpuqZYebRDFL1mjn8yYKIXj/b265CbSINwodgQYPUC6VCt2hrVq7DWUqKMslp - kS8ps3vpq7JEzD26A818FERj25tarTSTUaGLeym4b9aOVKamZxBBfvSn7FxcICRN2JJyEMoVjhUR - ZLJQMbYQtQwUrGPszWZoLvDfkotqnNuj6m6A009AJcTvWD+V92rp/1a9pofzXQNHhum5/KJpdugH - 2Okj4E+x6mFp6uzPtmcVvM42Gq2D8/uDEVgfqZw38YR6qKzXNP5uiRyWQQ4y1BNrBFGRkZzX/B6o - M8KO5KhnQwfaB2dWRlPskD9yHLx3hj5Ov1WvN7O5gXDsU8G93C7Y963X3hiN6Ht5Br0fizinWTsv - wpDn+bzA4Qbx/QdQSwcIeiEzSekEAADuDAAAUEsDBBQACAAIAO1VVU8AAAAAAAAAAAAAAAAkAAAA - ZGVwbG95bWVudHMvdG9vbHMvZGVwbG95bWVudENhY2hlS2V5szDRMzSwNDLRMzE0MNEz4OXSrVTQ - 1c3L103JL9FNSS3Iya/MTc0rUdAtUlBysYrJyM9NjSnOLEmNKUotyAcy8osqlRR089EkERqLY0ry - 83OKgWqAhqakAimQ7oDEkgw0LUjm8XIBAFBLBwgaitgoZwAAAJYAAABQSwMEFAAIAAgA3VVVTwAA - AAAAAAAAAAAAABUAAABMb2dGaWxlcy9ldmVudGxvZy54bWxtUF1rwjAUfR/sPwTfJemHqy3XQNfa - WeZc0T5NZAR7h2X9Io0OYfjbl7VW9rCX3JNzk3PPuTA/YaVaDl3lsDm3CksOiaxPeYaSrESJs9FC - qSYphPqoZbkQVVagHNHrpzjkJmMMaCehb7DEExbcBtoDSEX7yfWDrsIznr9qmbV8AEAHxCHNSwwk - CoUZ6b38MrORyQx3bLCxaaQG8+wHb+K+3Rysca8F9WTLch3LtC3naubWgOAgqkqb8pumyPdC5XUF - dCAhqMvmqFDydaiTWFHk244Race3Bmxwf5S5OuvUdFhSFzgUSnDoTj9JlnHgp/Hr6v3FX/lP87Xn - Xf5hyTdRh7ydscmjY7JoSrZpHJKpY9s7sk00NEw23QHttfvF/sXaQze75fd3P1BLBwjpx8tyKAEA - AMIBAABQSwMEFAAAAAAAI1ZVTwAAAAAAAAAAAAAAABkAAABMb2dGaWxlcy9rdWR1L2RlcGxveW1l - bnQvUEsDBBQACAAIANlVVU8AAAAAAAAAAAAAAABTAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5 - LTEwLTIxVDEwLTQ2LTUxX2MzNzA5OV8wMDFfU3RhcnR1cF9QT1NUX2FwaS1zZXR0aW5nc18wcy54 - bWx9jkFLw0AQhe+C/2Gcc9fsxjZNQlIo9RKMbXGDeAtLsuhCslmzk4P/3q1QEA9e53vzvld40g7I - 0KBLlKRmWhy86M9Fe0LoFYVzzEXGBGexaATP10m+EffJdoNgrCdluxDpHrY8yxCWeSgxUs5EXhMZ - ++4RRk0fU1/i+SQbBPpyIT9fDc4EImKeruJVgiAPz618qs6tlHX7uq+rx31TnY4l8sC6sfl5Pk5W - I+xubwCK3/MPg1Y2zH8bB6ini/qf/WmwRbvijjHol1mRmWwOIh09MBaqi+jS/Jev4yv/BlBLBwjN - DupF3QAAADgBAABQSwMEFAAIAAgA2lVVTwAAAAAAAAAAAAAAAE8AAABMb2dGaWxlcy9rdWR1L3Ry - YWNlLzIwMTktMTAtMjFUMTAtNDYtNTFfYzM3MDk5XzAwMl9QT1NUX2FwaS1zZXR0aW5nc18yMDRf - MXMueG1snVPLbtswELwX6D+wPGdp6uFYDqwAquM0Rv2CJdfpUaE3tgJbVEnKSfP1XSlNWzQwUPQ6 - O9zlzswOrMOKucLtMebjUulDUW7ZEr/VaB1nm9wR7kuvD54E38s8eRGeX3Q90Qv7nBWldXmpiKKC - nuwTUpt9zDt5VXQsOke9LGcHdDu9iflinmacue8V8c3rhKqgiufL6Mw/O+dsqMsSlSt0GfPPiBUk - ++KILe6wdDDBcut29KUXbotlbce8qvaFypunnQerS86Smuaa4rnFYv4xt0IIzkZPFU2goVKC0iV9 - sqYBN9oS9oh31AceixL2ehu4UOXBg8p3wqqDyJ9rg8SwhUMrSiR9VhYNJFv6WcyTpgxrvEubOtAm - zuj9Hk0n6gopeiLocfYEBws/l4dm9ainVID3HpB+9xAG3Rzuwr4HKu+FvvQDXyrJ2S2sk3UKqxLJ - og1uYLWcvNF5OBmPZhmMFzEPpYgC4UW+8CXZFUR+2DRJlkuYzD/B+OrfB6fjbARXo8Vk/nXatqe3 - p2TibJ2kRL5OVpMMbsjvWTIdneafkvUWrrV5zE2z6cJop2O+c66iLNEOVZWiORYK35SmKQznk6s0 - S5YZ+cvZ5ft3jA3+jPi8dlvdRNygrXRpyflTGfdF1It+5/WVTol3tR2SC81hkKwvQIZPlIGZbhLc - pJKz5pdoYj4tlNFW3zsYj9OOJwX5+Z8xGOZqh6/JinlliiMdaKuKrWbo4Asa295OSIkLZODRSXYu - Bx8A2KY27SFcMHmwDIC0GXQaaf4ue173F+MHUEsHCLdo9gRPAgAAHwQAAFBLAwQUAAgACADaVVVP - AAAAAAAAAAAAAAAAVgAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00Ni01M19j - MzcwOTlfMDAzX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMueG1snZNfT9swFMXfJ+07 - eH7mOs4f2pQ1SFkpEFEoatKVPQb3tg1q48x2gPHpd1NWaUKqNO3V5/j63uPfHVqHDXOV22LCs1rp - XVWv2Qx/tmgdZ8vS0Xkg/QH4EgK/8OVZ1Ds7DUUYR5xVtXVlrciiwr4cDDhrzTbhXtlUnkXnqJb1 - crUrfjXI2Q7dRi8TfjUuOHN0lHBzeKipSPADGZ8EJz3ORrquUblK1wm/QWwg3VbPVCJtqYSp3sp3 - 6VtphRCcXWvrEv6Cj2XTwEtVw1avQxepMnxS5UZYtRPlW2uQHLZyaEWNNNzcooF0jTXdTTsZFviY - dzrQ+87o7RaNF58KKfoi7HP2CjsLf1qGruG4r1SIKx9o+BVE4WkJj9HAB1X2o0AGYSCV5OwBFuki - h3mNlO8SlzCfTY6GNJpk47sCsvuER1LEofDjQASyyzwOKPIHSGczmEyvILv49wbyrBjDxfh+Mv1x - uy9Pd4/Fxdkizcl8mc4nBVxP8+IuvR0f9x+L9wEutXkpTTfxvdFOJ3zjXGP3MzRNjua5UvhBOv/8 - ibHh31BOW7fWHZQGbaNrSxQcpzKKCJ4DWgc7MepaO6LoO5TpQ94PCnylj5/ecNa1gibht5Uy2uqV - gyzLPV8K8v7nn49KtcEDRglvTPVMq7Qf3TZ36OA7GrvHOyK8Qhn6tDwddUQjdOuScGJ5W6k96d6T - 1fVXpjalobVKWreCmDPvfPgFgC1bszedMbmzDIAiHHpdgh/lXnDQfwNQSwcIE5h9eDYCAAD2AwAA - UEsDBBQACAAIANxVVU8AAAAAAAAAAAAAAABWAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEw - LTIxVDEwLTQ2LTU2X2MzNzA5OV8wMDRfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54 - bWydk91u2zAMhe8H7B00XZe2/NPE6eICXpquRtOmiJ2lu1QVJnGRWJ4kt12ffnS6AEOBDMNueSiK - PPw4tA4b5iq3xZTntdK7ql6zGf5o0TrOltJRPBTBAAIBYVAG4izunZ32vLgXcFbV1slaUYqK+mIw - 4Kw125T7sql8i85RLesXalf+bJCzHbqNXqb867jkzFEo5ebwUVOREIQiOQlPepyNdF2jcpWuU36N - 2EC2rZ6oRNZSCVO9yjfpi7Se53F2pa1L+TM+yKaB56qGrV5HLlYyelRy41m18+Rra5AybOXQejXS - cHOLBrI11vQ262RY4EPR6UD/O6O3WzR+cuoJr+9Ffc5eYGfhd8vQNZz0lYpwFQANv4I4OpXwEA8C - ULIfhyKMQqEEZ/ewyBYFzGskf5e4hPlsctSk0SQf35aQ36U8Fl4SeUESeqEgz6MkjLti2WwGk+lX - yC/+vYEiL8dwMb6bTL/f7MvT22N2cbbICkq+zOaTEq6mRXmb3YyP5x+z9x4utXmWppv4zminU75x - rrH7GZqmQPNUKXwnnX/8wNjwTyinrVvrDkqDttG1JQr+QmWf1nRA65BOjLrWjsj6DmVayFugxBda - /PSas64VNCm/qZTRVq8c5HnhB8Kj3P/c+UiqDR4wSnljqic6pf3otrlFB9/Q2D3eMeEViSig4+mo - IxqhO5eUE8vbSu1J9x+trj8ztZGGzipt3QoSzvzz4ScAtmzNPumMiZ1lAGTh0O8cfC8HvYP+C1BL - Bwilq1kzNgIAAPYDAABQSwMEFAAIAAgA3VVVTwAAAAAAAAAAAAAAAEIAAABMb2dGaWxlcy9rdWR1 - L3RyYWNlLzIwMTktMTAtMjFUMTAtNDYtNTlfYzM3MDk5XzAwNV9TaHV0ZG93bl8wcy54bWxVikEO - gyAQRfdNeocpa7EwUhGinqFJewGiJCVRtDKk1y9dNvmb99/rE/kdKNDiB3Y/tsmnBI9Xpnn7RAaz - o/KjkIZLwVE+pbCqtTdTIyoGISZycSrJ1GhhDIM9zAOTKLoKq4J5p7AWLYT9TddtI1E1xSwu0eHf - 2Sf6S7DWumtU1zG4jv2Fc5jz4Shs0QLKNQHn4/n0BVBLBwiW0rQplQAAALcAAABQSwMEFAAIAAgA - 41VVTwAAAAAAAAAAAAAAAFoAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTAtMjFUMTAtNDct - MDZfYzM3MDk5XzAwMV9TdGFydHVwX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8wcy54bWx9j8tq - wzAQRfeF/sN01lEtPxpjYwVCGoKp+6AypTsjbJEKbNm1xtD+fVVCIHTR7T3DvXMKR3oCMtRrgZLU - TMsEr/pz0Y4QOkU+jniYsZCzKKxDnidpzte3aRwjGOtI2daftHHKswxhmXuBgZpM4DSRsUcXyHao - vyeNMGj6GDuBh32NQD4SOJ+HJuPB+o4nq2iVIsjdYyMfypdGyqp521bl/bYun58Ecs9OfQL3X6Rn - q/qD8Z9urq8AikuZXa+V9TLvQw/VeHT/2iTeJtgUN4xBt8yKzGhziMPBAWO+ugh+m//yJDrzH1BL - Bwju5Vob5gAAAEYBAABQSwMEFAAIAAgA41VVTwAAAAAAAAAAAAAAAFYAAABMb2dGaWxlcy9rdWR1 - L3RyYWNlLzIwMTktMTAtMjFUMTAtNDctMDZfYzM3MDk5XzAwMl9HRVRfYXBpLXNldHRpbmdzLVNj - bVR5cGVfMjAwXzFzLnhtbJ2T227aQBCG7yv1HbZ7nVmvDwRDcSSXkASFhAibkl46ywCOwOvurnN6 - +o5JUatWSFVvZ/6dnfnnm4F1WDNXui0mfFwpvSurNZvh9wat42xZOIoH0u+BLyHwc1/2o25fnoo4 - CDkrK+uKSpFEhV3Z63HWmG3CvaIuPYvOUS3rZWqXv9bI2Q7dRi8TfjnKOXMUSrg5fFSXlDjtyOgk - OOlyNtRVhcqVukr4NWIN6bZ8ohJpQyVM+Va8p74UVgjB2ZW2LuHP+FDUNTyXFWz1OnSRKsJHVWyE - VTtRvDUGSWFLh1ZUSMPNLRpI11jR27RNwwIfsjYP9L8zertF48UdIUVXhNTVC+ws/GwZ2objrlIh - rnyg4VcQhZ0CHqKeD6roRoEMwkAqydk9LNJFBvMKyd8lLmE+mxw1aTgZj25zGN8lPJIiDoUfByKQ - p/1OGAdRWyydzWAyvYTx+b83kI3zEZyP7ibTbzf78vT2mF2cLdKMxBfpfJLD1TTLb9Ob0XH9MXvv - 4UKb58K0E98Z7XTCN87Vdj9DXWdonkqFf6TOPn5gbPA7lNPGrXULpUFb68oSBceo7IpYxr/QOsiJ - UdfYIVnfokwLeQ/k+EKLn15z1raCJuE3pTLa6pWD8TjzfClI+587HxZqgweMEl6b8olOaT+6rW/R - wVc0do93RHiFMvTpeFrqiEZozyXhxPK2VHvSvUerq89MbQpDZ5U0bgU0p3c2+ATAlo3Zi/rMj3aW - AZCHA6+18K+89DsHxQ9QSwcIpxYOYjgCAAD5AwAAUEsDBBQACAAIAOVVVU8AAAAAAAAAAAAAAABJ - AAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ3LTA4X2MzNzA5OV8wMDNfUE9T - VF9kZXBsb3lfMjAyXzJzLnhtbJVUy3ITMRC8U8U/CB04oV3tw17bZKGW4BAXzqNihwAXSpYntmAt - CUmbB1/PrB0XqRCn4Cq1RjM93b3nA1gSVKihpCMtzUrpBTmDnw34QMlcBDxPedJnCWdpMk34IC8G - vBdlvEuJ0j4ILREis4L3+5Q0ri5pPAdbm9u3Xq6mtxbK4U0Ap0X9QYWXYmVfK1/5Wy3L4BqgZAVh - aeYlPT2ZTCkJ7QPqtg1YhTfdDs9fpa/ww32jNcigjC7pRwDLqlpdYQ08D6ADG4NehGVJ+wklVYN1 - nfolNvB3wkdRRMnwxmKFkiacM4nPlG6bODQez65hJqxl10qz2iyykEuRfZdiGeEkkfjVOECEVwF8 - pAHpOffgWLXAn0tatdfsAmaT9p61HTlT1+DiXifiURFlBSU3bOXZ3XCsHa1XSJnBZcKQvkuWZx3B - Znk/YVIUecrTLOWSU/KZXVQXE3auATc0hzk7Pxv/L83749HweMpGpyXNedTLoqSXRinvDjpZL83b - P6qzMzY++cBG7/+9r8loOmTvh6fjky9H6/L4dheLlFxUEwQfVOfjKTvEdR9XR8Pd+F2sf2YHxl0L - 1xJx6kwwJV2GYP16Bmsn4K6UhAdXb54/I2TvvtoPIMjlodBz3NFTSu/2UHjr5w8KTIJwgWy0vkIN - oB1IWAKZCflj4Uyj50+V7bVl4zd7Lxgj88atVTognaJYecLYpt247fchpOin9yD3JzppwsK0/nXg - rdEedb3LwP2oU6BHtm7bwtHOofH7qLHW9Sklm4Mp3LQKlxJsAJyqpRhcSY+UdMaby8BGo0mc8Ai1 - OjbyznHrpQzieJceHt9vLKy6C5CWVB/XmEE+vN3wjL9iihw2s3WQBLWC8k86fcOMygvG+18xEYRc - wtaFJbVOXWGdtUS8PYbAPoHz6xzJ0Z0ZzxJMr7/WkXWSLdd7jy4jKbLuFvEbUEsHCCkkIHfGAgAA - TAUAAFBLAwQUAAgACAAHVlVPAAAAAAAAAAAAAAAAUQAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAx - OS0xMC0yMVQxMC00Ny0wOF9jMzcwOTlfMDA0X0JhY2tncm91bmRfUE9TVF9kZXBsb3lfNjZzLnht - bNVWTY/jNgy9F+h/UH0odg/2WP52OlmgOzPbBYq2ATJFLwYKRWYSI7bkSvJg8u9LJTP5cGyjaE/1 - JYFA8ZGPj6TutYGWmMrUMHc+M77bKNmJ8lkxDg4pmcHjwKe5S303oM/Un0XpzM+83PcdUgltmOBo - wsPUz3OHdKqeO3cltLXcO6QBs5Xl3Fn8tnx2yKdvvyHk/hLvQQEzldgQA00rFVN7crzagDDj6Lnn - J4h+9+n+O9clZafQiRQzEmZ5o4nr3gItQK2laizUGgzfkhXTUP5DsCgJ3oLvhf94SNPG+gsTbAPK - O558qMoZ51m0xi8PWB75EQeI8xggy7hPgad5EAXr9cpPP46mSRMvCdITcg/7QdY18AN5fMvEBjQY - rIfN8sDGpNsQK3XDXh6cySP4XVXq9xalYOnT3aqRZVeDnkJIQ6TsBiEIkwmIRzBgS2RRziogq66q - S1DjaKmXxOEFTb3IPx/vk0qTX2UJy8rA29GUyzRB5m8SoLQX/51Vc1+GNIh7Zleal+3eprhcfiU7 - 2E/QmHoZpUNRhBPuD7mh/6nksiAe5+snEGAb6roKmquqHW9Jmnl+iLEeOs+Kx35XAnp6Bd4dvMIr - 1lmwmrRKctATBGReaPvc7FucMCfrlpnt3MHBo9CPx5vSIUxtOtuGeu58/1cnzQ+Ps2Kh5Eaxhnyp - UKvkw2uWfCxs8Z8QXmicF7r4uSu7Ios86mM7ehH1o2JViUKgTP58E3nh2ZMdGh4ZsHhHCOLucdQI - 6ZbSuBd6dRU5xbCVDRQaQQsFrcQ/Uu3fb8shs7MfXRgpa/1ujUAlIJ51tkAChi73MQakk+W0p82b - Qi3ZC05GzvgWf15AWaqIXBOzhcu2PNJBcN4QLpuGifL/QMjIPgtSL8iHJhaNrlsNRT3Y8nmQ3vD6 - X+WPQaUpNuq/k/9ZejeaKo4nZykPCAV3XtTbB72GXu6qlqw7gTsIBWJUtcEFSKwOarmpOGtboveC - kxVw1mk4m+IgFtIQEGxVQ+mNDKpsRrEx6dCa969rMlyROImCi9fAWOHiNImu/F1V7aEGdthHHT6R - 8IlC1naYTEUcDO6NcYQ/YPVVyp1+f0AsulVd6e3TC06zHy1/M7KQ2jyeXhqT4NmQhtPszNcwV0mU - h6cQR0zi2D/5+RtQSwcI5QB6EGEDAAA0CgAAUEsDBBQACAAIAOZVVU8AAAAAAAAAAAAAAABYAAAA - TG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ3LTEwX2MzNzA5OV8wMDVfR0VUX2Fw - aS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzJzLnhtbK1UTW/bOBC9L7D/geVhT6VEibJlu1EX2sRJ - jHU+YDtNt5eCoSc2C0lUSSpp++t3pHw4aKq2KHolh/MeZ957e85DTbz2BWR0VilT6mpDFvCxAecp - WUuP5zGPxiziLI5WEZ8k6STiwSCNKdGV87JSWKJEysdjShpbZDSUtQ7XUBfmcwmVd2GBbZz/++4I - bHak/XFz9Zcs61del5DtAN4jTJIyPn5HSQl+a9YZPZquKPGfa4SxD8RqjRfDAU9exi9TSvZNVYHy - 2lQZ/RegZnmhb4CSvMEWVn+Rd1f/SBcEASXHxvmM3sKVrGt2qytWmI3wiZLig5LbwKkykF8aC1jh - NFIPKsBhXDiwLN/gjzKat9fsEq6W7T1DfG9NUYANR4OAB2kgkNUnVjp2T5m1hEepUgKuI4bDumaJ - GEh2lYwjpmSaxDwWMVeckrfsMr9csosKcB9rWLOLxfy3DXV/PpuertjsPKMJD0YiiEZxEPPhZCBG - cdKC54sFm58dsdnBzxNezlZTdjA9n5/9d9K1x7d946XkMl9i8WF+MV+x47Pl6jQ/mfbX963jLTs0 - 9lbadkLn1niT0a33tev+UNdLsDdawVdXr//8g5C9p6I/eNTp/YvgCPwCXFN8V/9DgcPquv1Mv3ln - gB3U95w1HKCz7jv39j6RldyA3XHFb/ebdTgcUBK+3nvBGFk3tnPDhERpHJeOMPYjMOKhrJmAoeBc - CaIdOYdqjUHRjxkHCUcpP8PkTwH3wnYRz2kl6a6qr2YUPal5us+zxm9MG2IWXG0qhynQNxgkmY52 - 0fJQjpnmG7eP1mujD5dxd7CCT63xlYLaw5qSVi6YZfREK2ucufZsNluGGI347190/r5UW3gIk4zW - Vt+gcDpBu/oUPHsD1nUhl2DICC4ijNy5Uffx1sl/EoZ9zvu2k35TWrcRiNHIVl1QY7AW+o5X+MGZ - 6hVRW2kd+Kzx1wyH/kwZ4nGhPSsfi0dZ/A9QSwcImOfh9OACAAC2BgAAUEsDBBQACAAIAOxVVU8A - AAAAAAAAAAAAAABYAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ3LTI0X2Mz - NzA5OV8wMDZfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBzLnhtbK1VTXPaSBC9b9X+ - h8kc9uSRRh8giVjZUjCxqQWbArz27mVrGBpQSl+ZGdlJfv22ABuMDdnaik4qdevN655+r8+1gYqY - 1GQQ034hyzwtlmQMX2rQhpK5MPjd5U7EHM5cZ+rwjh90XN8KuUNJWmgjCokp0gt4FFFSqyymtqhS - ew5VVn7LoTDazhBGm983n0DFl6m5qme/ibx6b9Ic4t0B/+AxfsB49DclOZhVOY/pZW9KiflW4THq - iViVYqDd4v6Ze+Ygk25ZFCBNWhYx/QOgYkmWPgAlSY0YKv0uNqGPQluWRclVqU1MH2Emqoo9pgXL - yqVnfCm8z1KsLC1zS3yvFWCGTpG7VQB241aDYskSS4pp0oTZHcwmTZzh+UaVWQbKDlsWtwLLCyj5 - ynLNtpxZwzgMpPRg4TDs1oL5XkuwmR85TIrAd7nruVxySu7ZXXI3YbcF4IXMYc5ux4Of1tXuoN+7 - nrL+KKY+t0LPckLXcnm70/JC128OT8ZjNri5ZP2L/0540p/22EVvNLj5a7iGx3+PtZeSu2SCyZ+S - 28GUXd1MptfJsHc8/9h13LNPpXoUqunQSJWmjOnKmEqva6iqCaiHVMJB6MOvvxByvj/13QxEUVfk - Ps/IoFzi7z+YevvD+TvGyLxW66nqENfJNWHsNfTFswa2ZKxLMGPQdXZaW83srNEOqL6JN1iLaxc6 - yX8P+Sj2UBRiCWrH9XRL/PCZLMHnRW9HtVoC2ei+sQKCYslPwkUOCmBbewN3ADiGvHwAgigV86Dt - nZERFHP0rDOiQAJqfk6EIQ63XcdubAVfG8fiEUmGxzuDkuVtSl7dLN9d7JaM3YzO4QBE7Zd5529m - OYF7kLY/hrsLJFKG/gKfyBWRz30J0IpaAGEouQMyiFzfXSxmPCCpJh/rNGvqP1mbiz19VZvzgvQR - ylG4o/x2iuvsp+xXdFObZdmsEwW6KguNdnxMWdj/Vmtn8k/puF1Mrbvogc0ScinZfJjC18aBpYTK - wJySRly4VegwlarU5cKwfn9iO9zCsv+nBXeFXMGTq8e0UukDymztLLq6BsP+BKXX28ZHt/e45+Dy - G5Ryu2fWPtSx7WMW+Lal/aS92ewi1Bqbrlcmbrgs3fCyP+uyeE/kSigNJq7NgqF2Xw/Gs50dufH2 - 8+T8C1BLBwiTsHt9ZgMAAD8IAABQSwMEFAAIAAgA7FVVTwAAAAAAAAAAAAAAAFUAAABMb2dGaWxl - cy9rdWR1L3RyYWNlLzIwMTktMTAtMjFUMTAtNDctMjVfYzM3MDk5XzAwN19HRVRfYXBpLXNldHRp - bmdzLWJyYW5jaF8yMDBfMHMueG1snZNfb9owFMXfJ+07eH7uTZw/lMBIpYzSNiotFQmjewyOC65C - nNkO7frpd5MOaaqENO3V59xr3+PfnRgrGmKlrURM05qrvay3ZCl+tsJYSsrC4rnPvBF4DHwv99g4 - HI79gcNGESWyNraoOVp4MGSjESWtrmLqFo10jbAWexl3o9Gyo2Qv7E6VMb2e5ZTYXw1W6eM9jUTh - fMDCM//M8yiZqroW3EpVx/RWiAaSSh4EJUmLPbR8K96lb4VxHIeSG2VsTF/EpmgaeJE1VGob2JAX - wTMvdo7he6d4a7VAh5FWGKcWONzKCA3JVtRYm3QyrMUm63TA+61WVSW0G+GsztAJhpS8wt7AnzdD - 9+JoGD1FUTCCQch8CEvOYMOiEPiIh2VZsrAoGSWPsE7WGaxqgfmWooTVcn4qpOk8nd3nkD7ENGRO - FDhe5Ds+Ox8PgsgfdL2S5RLmi2tIL//9/izNZ3A5e5gvftz17bH2VFqUrJMMzVfJap7DzSLL75O7 - 2Wn/qXQf4Urpl0J3Az9oZVVMd9Y2pp+haTKhD5KLD9LF50+ETP5mctHareqY1MI0qjYIwWkoPQ8j - OqJ1tCOitjVTTL4jGf/j/SAXr/jvi1tKuqcIHdM7ybUy6slCmmauxxz0/ueXTwu+E0eKYtpoecBN - 6kc3zb2w8F1o09MdIl0BCzzcnQ46hBHyfjcQ5UryHnT32aj6K+G7QuNWxa19Alw+92LyBYCUre5N - Y+KFe0MAMMOJ20X4UQ+HR/03UEsHCNPBsHA3AgAA9gMAAFBLAwQUAAgACAD0VVVPAAAAAAAAAAAA - AAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00Ny00MF9jMzcwOTlfMDA4 - X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8xcy54bWytVU1z2zYQvXem/wHFoaeABD9k - koqZDiMrtqbyx0hy7fbSgaCVhAxFsABoJ/n1XdJW5DqSJtMJj9jF7sPbfY+n1kFNnHIl5HRUSb1R - 1YpM4J8GrKNkIRyehzzIWMBZGMwC3o+Tfsy9IA4oUZV1opKYIqOEZxkljSlz6ota+QuoS/15A5Wz - follrPvt6QhMfq7cRTP/VWzqt05tIN81+BvbxAnj2V+UbMCt9SKn58MZJe5zjW3MFlitMHDS4/Gb - 8E2ASAa6qkA6pauc/g5Qs6JUD0BJ0WANo76Ip9B7YT3Po+RCW5fTR5iLumaPqmKlXkUuliL6KMXa - s3LjiS+NAcywCrF7FSAbtxYMK1b4pJwWbZjdwXzaxhn2d0aXJRg/7XncS7wooeQT21j2jJm1iNNE - ygiWAUO2liyOeoLN4yxgUiRxyMMo5JJTcs/uirspu60AB7KABbudjH8Yq4PxaHg1Y6ObnOIY08gL - 0tAL+Um/F6Vh3DYvJhM2vj5no7PvBzwdzYbsbHgzvv7zsiuPdw/RS8ldMcXkD8XteMYurqezq+Jy - eDj/0Dju2QdtHoVpGbox2umcrp2rbfeGup6CeVASXoXe/fwTIacvt35QgqiamtxvSjLWK7x+ZOt7 - ISX+u9NfGCOLxnRb1SdBtrGEsW9Ln33VwDMY7xzcBGxTHtUWyoGSrtorqHvrjTtx7ULH8L+sfLD2 - pajECswO61FKupLfUIKnO04Ifv+hfAeWSJnGS/yyUGQxjyVAL+sBpKnkAcgkC+NwuZzzhChL3jeq - XKA/HXthzPdNKIrTl3BO/XYBXo/xJE12Sd+T8nKLrhu30q13GrC1rix6z+E1ylqQW0fbpqOVusYO - UPCt42LC08EMPrV2IyXUDhaUtJuEFkovlTTa6qVjo9HUD7iHxvE//WYg5Bq2FpbT2qgH3KlORra+ - Asf+AGM7a43R2iIeBej0Yy2fTbUTXd/3D+l9v35/0E+iNV40ZDbr/g9o56V6wuV/tLp6S+RaGAsu - b9ySpXu0y7cj3z/w5OTrHv8LUEsHCHqJIIgKAwAAKwcAAFBLAwQUAAgACAD5VVVPAAAAAAAAAAAA - AAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00Ny01MF9jMzcwOTlfMDA5 - X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8xcy54bWytVU1z2zYQvXcm/wHFoacABPgh - koqZDiMrtqbyx0hy7eTSgaCVhAxFMgBoJ/n1BWnLcm3J08mER+xi9+G93ccjY6FGVtkCMjwqZbVR - 5QpN4GsDxmK0ENad+4ynhDPi8xln/TDuR4ymQYCRKo0VpXQpMohZmmLU6CLDnqiVt4C6qL5voLTG - K1wZY/+8PwKdnSh72sz/EJv6nVUbyHYN/nFtwpiw9DNGG7DrapHhk+EMI/u9dm30FlitXKAXsfCt - /5ZzjAZVWYK0qioz/BdATfJC3QJGeeNqaPVD3Ic+CEMpxei0MjbDdzAXdU3uVEmKahXYUIrgixRr - auSGih+NBpdhlMNOS3BsXBnQJF+5J2U4b8PkGubTNk5cf6urogDtJRFlNKZBjNE3sjHkATNpESex - lAEsOXFsLUkYRILMw5QTKeLQZ37gM8kwuiHX+fWUXJXgBFnAglxNxr+M1cF4NDyfkdFlhkNGk4Dy - xKc+6/WjIPHDtnk+mZDxxQkZHf9/wNPRbEiOh5fji09nXXl39xC9GF3nU5f8Mb8az8jpxXR2np8N - D+cfkuOGfKz0ndAtQ5e6slWG19bWpntDXU9B3yoJz0Lv3/yG0NHTqR8UIMqmRjebAo2rlbv+ytRH - bta890e/E4IWje6mqo94uDGIkJeljx934AEMPQE7AdMUr+9W4nToqj2DurfeuFuuXehV/GnvsfLB - 2meiFCvQO6yvUMIp4w7sC0qi4AknyH3/oXwHFkmZhEv3pb5IQxZKgCiNAJJEMg4yTv3QXy7nLEbK - oA+NKhbOnw6/kNMoci70Ag6Pdgo5LF6r/3MVo7S3S9qf0vP5k5SnQ3TR2FXVWqcGU1elcdZzaIo4 - 7flOha2hbdOdk9rGDNy+t4brY3R/MINvrdtICbWFBUbtIDkHxWdK6spUS0tGo6nHGXW+8ZN2MxBy - DVsHy3Ct1a0bqW6LTH0OlvwN2nTOGjpnC1jAHcXjSj54ardzfc87tO771/cX/SNa33V+TGbd78G5 - eaHucXlfTFW+Q3IttAGbNXZJkn2D8SjofsVjFmwV/xdQSwcIqxmSPxgDAAArBwAAUEsDBBQACAAI - APxVVU8AAAAAAAAAAAAAAABVAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ3 - LTU2X2MzNzA5OV8wMTBfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hfMjAwXzBzLnhtbJ2TXW/aMBSG - 7yftP3i+7skHDhAYqZRR2kalpSJhdJfBOYCrEGe203b99XPSoU2VmKbd+n19Pl4/nmiDNTHClBjR - pOLyIKodWeL3BrWhpMiNPe95/gh8D3p+5nvjYDjuD5xRyCgRlTZ5xa2Fs6E3GlHSqDKibl4LV6Mx - tpZ2N8pa9pQc0OxlEdGrWUaJ+VHbW+rYpxZWGPS94Kx35vuUTGVVITdCVhG9QawhLsUTUhI3toYS - r/mb9CXXjuNQci21iegzbvK6hmdRQSl3zAQ8Z4883zuaH5z8tVFoHVoY1E6FdrmVRgXxDit7N25l - WOMmbXWw/Y2SZYnKDfuO5wwdNqTkBQ4afs0M7cRFP/SCotjCpih8CPzNBsItZzBkOfe53w/Yxmby - AOt4ncKqQptvgQWslvNTIU3nyewug+Q+ooHnhMzxw57T8wZj1mNh0NaKl0uYL64gufj3/mmSzeBi - dj9ffLvtytu7p9KiZB2n1nwZr+YZXC/S7C6+nZ32n0r3AS6les5Vu/C9kkZGdG9Mrbsd6jpF9SQ4 - vpPOP34gZPInk4vG7GTLpEJdy0pbCP4C5Sj8jdbRbhE1jZ7a5FuSPUreDjJ8se++uKGkHQVVRG8F - V1LLrYEkSV3fc6z3P598mvM9HimKaK3Ek/1J3eq6vkMDX1Hpju7A0sU85ltOWugsjJB1f8OiXAre - ge4+all9JnyfK/urosZswe7pnk8+AZCiUZ1pTLyDJgA2wonbJvheZuyo/wRQSwcIz08dCTUCAAD1 - AwAAUEsDBBQACAAIAAFWVU8AAAAAAAAAAAAAAABYAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5 - LTEwLTIxVDEwLTQ4LTAyX2MzNzA5OV8wMTFfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAy - XzFzLnhtbK1V23LbNhB970z+AcVDnwISvMgkFTMdRVZsTeTLSHLt9qUDQSsJGZJgANBO8vVZ0lbk - 2JbbyQSP2MXZs7eDQ+ugJk65AnI6rqQuVbUmU/jUgHWULIXD+5AHGQs4C4N5wPtx2uehF6YpJaqy - TlQSXWSU8CyjpDFFTn1RK38JdaG/lFA56xcIY92fd1dg8mPlTprFH6Ks3zhVQr4L8C+GiRPGs38o - KcFt9DKnx6M5Je5LjWHMllit0HDQ4/Hr8HUQUDLUVQXSKV3l9ANAzQaFugFKBg1iGPVV3JneCet5 - HiUn2rqc3sJC1DW7VRUr9DpysRTRRyk2npWlJ742BtDDKuTuVYDVuLRg2GCNKeV00JrZFSxmrZ1h - fGd0UYDx057HvcSLEko+s9Kye86sZZwmUkawChhWa8XiqCfYIs4CJkUShzyMQi45JdfsanA1Y5cV - YEOWsGSX08kvq+pwMh6dzdn4Iqcx99LIC1LsJj/o96I0jNvgg+mUTc6P2fjo/xOejecjdjS6mJz/ - fdrB49t95aXkajBD5/eDy8mcnZzP5meD09F+/33tuGbvtbkVpq3QhdFO53TjXG27HOp6BuZGSXhk - evvqN0IOH079sABRNTW5Lgsy0Wt8/h9T7789/J0xsmxMN1V9EsSlJYw9hT76vgP3ZLxjcFOwTfHi - buEYUNKhPaL6LN6kW66d6SX+URR9R96LfSoqsQaz4/piSTrIJyUJ03BXE4Lnh5LvyBIp03iFJwtF - FvNYAvSyHkCaSh6ATLIwDlerBU+IsuRdo4ol6tNLGR4chJQ8oZOkD9kc+m3/H3cxjh447XFJ+A7n - h4zOG7fWrXQasLWuLErP/inKYuzCVtC27qikrrFD3PdWcDGJu4s5fG7VRkqoHSwpaQcJFZSeKmm0 - 1SvHxuOZH3APR+Yn5WYo5Aa2CpbT2qgbHKlui2x9Bo79BcZ2yhqjskU8ClDoJ1rea2q3c33f37fu - z6/vL/ojWt1FPWbz7ntANS/UHS//o9XVGyI3wlhweeNWDD+sJ4MRBduGPt/xJEi2Dt8AUEsHCDkj - 6owRAwAAKwcAAFBLAwQUAAgACAAGVlVPAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJh - Y2UvMjAxOS0xMC0yMVQxMC00OC0xM19jMzcwOTlfMDEyX0dFVF9hcGktZGVwbG95bWVudHMtbGF0 - ZXN0XzIwMl8wcy54bWytVU1z2zYQvXcm/wHFoaeABD9kkoqZDiMrtibyx0hy7fbSgaCVhAxFMABo - J/n1WdJ25Mamp5MJj9jF7sPbfY+H1kFNnHIl5HRSSb1T1YbM4FMD1lGyEg7PQx5kLOAsDBYBH8bp - MIi88CChRFXWiUpiiowSnmWUNKbMqS9q5a+gLvWXHVTO+iWWse7PuyMw+bFyJ83yD7Gr3zi1g3zf - 4F9sEyeMZ/9QsgO31aucHo8XlLgvNbYxD8BqhYGDAY9fh6+DmJKRriqQTukqpx8AalaU6gYoKRqs - YdRXcRd6J6zneZScaOtyegtLUdfsVlWs1JvIxVJEH6XYelbuPPG1MYAZViF2rwJk49KCYcUGn5TT - og2zK1jO2zjD/s7osgTjpwOPe4kXIT+f2c6ye8ysRZwmUkawDhiytWZxNBBsGWcBkyKJQx5GIZec - kmt2VVzN2WUFOJAVrNjlbPrLWB1NJ+OzBZtc5DTmXhp5QRp6IT8YDqI0RCavWTGbsen5MZsc/X/A - 88lizI7GF9Pzv0+78ni3j15Kroo5Jr8vLqcLdnI+X5wVp+P+/L5xXLP32twK0zJ0YbTTOd06V9vu - DXU9B3OjJPwQevvqN0IOH2/9qARRNTW53pVkqjd4/YWtTweU+G8Pf2eMrBrTbdWQBNHOEsaelj76 - roF7MN4xuBnYpsRt6u8SBSklXbUfoD5bb9qJax96sXKIGr2v3Fv7VFRiA2aP9UVKorbkE0qSdE8J - we8/jO+xEinTeI1fFoos5rEEGGQDgDSVPACZZGEcrtdLnhBlybtGlSu0p5ceGIcouydo+GMwh347 - /Scz5Nk+qSclDB6lPF6h88ZtdGucBmytK4vG0z/deIAQH+zsIR191DV2hGpv7Tak5O5gAZ9br5ES - agcrSto1Qv+kp0oabfXasclk7gfcQ9f4SbMZCbmFB//KaW3UDS5UpyFbn4Fjf4Gxna/G6GsRjwKc - 91TLe0ftFDf0/T6xPy/eX/SHaF0X3Zgtup8Denmp7nD5H62u3hC5FcaCyxu3Ziip/r14fuAh/y7s - b1BLBwgbuT8hEQMAACgHAABQSwMEFAAIAAgADVZVTwAAAAAAAAAAAAAAAFUAAABMb2dGaWxlcy9r - dWR1L3RyYWNlLzIwMTktMTAtMjFUMTAtNDgtMjdfYzM3MDk5XzAxNF9HRVRfYXBpLXNldHRpbmdz - LWJyYW5jaF8yMDBfMHMueG1snZNdb9owFIbvJ+0/eL7uSZwPIGGkUkZpG5WWioTRXYZwAq5CnNlO - 2/XXz0mHNlVimnbr9/X5eP14ojQ2RHNdYUSTuhAHXu/IEr+3qDQl21ybc5c5ITgMXCdz2NgPxu7I - Cj2XEl4rndeFsRTeiIUhJa2sImrnDbcVam1qKXsjjWVPyQH1XmwjejXLKNE/GnNLHvs03AjDAfPP - 3DNTZSrqGgvNRR3RG8QG4oo/ISVxa0pI/pq/SV9yZVkWJddC6Yg+4yZvGnjmNVRi52m/yL3HIt9b - qjhY+Wsr0TgU16isGs1uK4US4h3W5m7cybDGTdrpYPprKaoKpR0MLGaNLG9EyQscFPwaGbqBB1uG - njsaQFm6G/CDcgjhgI0gKJg/CMNhOSwLSh5gHa9TWNVo4t3iFlbL+amMpvNkdpdBch9Rn1mBZzmB - a7lsOPZcL/C7WvFyCfPFFSQX/94/TbIZXMzu54tvt315c/dUWpSs49SYL+PVPIPrRZrdxbez0/5T - 6T7ApZDPuewWvpdCi4jutW5Uv0PTpCifeIHvpPOPHwiZ/InkotU70SEpUTWiVgaCvzDpB7/JOtoN - obpVU5N8BzKj5O0gwxfz7osbSrpRUEb0lhdSKFFqSJLUdphlvP/55NO82OORoog2kj+Zj9Svrpo7 - 1PAVperp9g1dHvOcN+i1gRGy/msYlCte9KDbj0rUn0mxz6X5VFGrSzB72ueTTwBk28reNCbsoAiA - iXBidwm+l53hUf8JUEsHCJsq50M0AgAA9AMAAFBLAwQUAAgACAAiVlVPAAAAAAAAAAAAAAAARwAA - AExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00OS0wNV9jMzcwOTlfMDE1X0dFVF9k - dW1wX3BlbmRpbmcueG1shVLLbtswELwX6D+wPGcZSZYfMqwAqqMkQpXYsGTY7Y2i1jYLiWIlKkby - 9aVdNAhauD3wsjuzO8OdWWdQEyNNhSFNlGhqqfZkhT967AwlJTe27jluAK4Dnpu7ztQPps6QTSYe - JVJ1hithIWIwdoKAkr6tQnpd9rWmpEZzaMqQ3sc5JeZFW1j7e7CWtjEaOv6Vd+X6lMwbpVAY2aiQ - fkHUEFXyGSmJhEBtILbKSqsspLJEZeW+2FZvx7fylf9ifeYdY4ySh6YzIT1iwbWGo1RQNfuB8QUf - fBf8wDpRM/7at2gRnTTYMYXW6BY20SaDtcLTJixhvUrfjMzTJH7KIVmG1B2Nmec5zBsOmesOp/b5 - 9iO2EK1WkC7uIbkN6Y4PduPRroASiwn46HgQTEYlCGcsCmfHC1GMT5wsyWO4jZfp4uvjeYHlXhJO - ySbKLPguWqc5PCyy/Cl6jC/jLxu9a9ojb08el21jmpAejNHd2YPWGbbPUuAfrZuPHwiZvY/KvEKu - ek22dUXSZm/p/4nK9c3sEwAp+/Z8rylxR3VHAP4e/U3qzLTIa5sJY4/NFsqW/rUg8CaU/ARQSwcI - 4gEm2bUBAADKAgAAUEsDBBQACAAIANlVVU8AAAAAAAAAAAAAAABLAAAATG9nRmlsZXMva3VkdS90 - cmFjZS9SRDAwMDNGRkE0NzFGMC0zYmMxZDY4Yi1kOTY2LTQwMTUtYmQzNy04MzdkYWYxZDM4Nzku - dHh0NcsxCsIwFADQXfAO/wApTYIW/VvRJVjbYoJrKBo0YNuY/Aze3iI4P57kYl8IXkhhBMdNhVsB - oGmIlANc3Du7RAxyfCGUQ/BlckR+eiQGo6PnfEfoO20Y0Cc4hPgPwS8iJN8xySoG+nC2+qR6q3Vj - r3WjjrVRXYvAF7uN5pfbeXLr1RdQSwcIuhsrh4MAAACRAAAAUEsBAhQAFAAIAAgAB1ZVT1X9O3cn - AAAAKAAAABIAAAAAAAAAAAAAAAAAAAAAAGRlcGxveW1lbnRzL2FjdGl2ZVBLAQIUABQACAAIAAdW - VU/Uy6pM4AcAANkXAAA8AAAAAAAAAAAAAAAAAGcAAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0 - MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L2xvZy5sb2dQSwECFAAUAAgACADwVVVPTTyJtTIA - AAA5AAAAPQAAAAAAAAAAAAAAAACxCAAAZGVwbG95bWVudHMvY2M4NGZmZmY5MmE5NDA0Y2VlNTk1 - ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdFBLAQIUABQACAAIAAdWVU8fP1D9aQEAALwCAAA/ - AAAAAAAAAAAAAAAAAE4JAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAx - ZWM3OTI0MmZmYjA3L3N0YXR1cy54bWxQSwECFAAUAAAAAADkVVVPAAAAAAAAAAAAAAAAEwAAAAAA - AAAAAAAAAAAkCwAAZGVwbG95bWVudHMvcGVuZGluZ1BLAQIUABQACAAIANpVVU8MBWYkcgAAAIwA - AAAYAAAAAAAAAAAAAAAAAFULAABkZXBsb3ltZW50cy9zZXR0aW5ncy54bWxQSwECFAAUAAgACADt - VVVPeiEzSekEAADuDAAAHAAAAAAAAAAAAAAAAAANDAAAZGVwbG95bWVudHMvdG9vbHMvZGVwbG95 - LmNtZFBLAQIUABQACAAIAO1VVU8aitgoZwAAAJYAAAAkAAAAAAAAAAAAAAAAAEARAABkZXBsb3lt - ZW50cy90b29scy9kZXBsb3ltZW50Q2FjaGVLZXlQSwECFAAUAAgACADdVVVP6cfLcigBAADCAQAA - FQAAAAAAAAAAAAAAAAD5EQAATG9nRmlsZXMvZXZlbnRsb2cueG1sUEsBAhQAFAAAAAAAI1ZVTwAA - AAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAZBMAAExvZ0ZpbGVzL2t1ZHUvZGVwbG95bWVudC9QSwEC - FAAUAAgACADZVVVPzQ7qRd0AAAA4AQAAUwAAAAAAAAAAAAAAAACbEwAATG9nRmlsZXMva3VkdS90 - cmFjZS8yMDE5LTEwLTIxVDEwLTQ2LTUxX2MzNzA5OV8wMDFfU3RhcnR1cF9QT1NUX2FwaS1zZXR0 - aW5nc18wcy54bWxQSwECFAAUAAgACADaVVVPt2j2BE8CAAAfBAAATwAAAAAAAAAAAAAAAAD5FAAA - TG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ2LTUxX2MzNzA5OV8wMDJfUE9TVF9h - cGktc2V0dGluZ3NfMjA0XzFzLnhtbFBLAQIUABQACAAIANpVVU8TmH14NgIAAPYDAABWAAAAAAAA - AAAAAAAAAMUXAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTAtMjFUMTAtNDYtNTNfYzM3MDk5 - XzAwM19HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnhtbFBLAQIUABQACAAIANxVVU+l - q1kzNgIAAPYDAABWAAAAAAAAAAAAAAAAAH8aAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTAt - MjFUMTAtNDYtNTZfYzM3MDk5XzAwNF9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnht - bFBLAQIUABQACAAIAN1VVU+W0rQplQAAALcAAABCAAAAAAAAAAAAAAAAADkdAABMb2dGaWxlcy9r - dWR1L3RyYWNlLzIwMTktMTAtMjFUMTAtNDYtNTlfYzM3MDk5XzAwNV9TaHV0ZG93bl8wcy54bWxQ - SwECFAAUAAgACADjVVVP7uVaG+YAAABGAQAAWgAAAAAAAAAAAAAAAAA+HgAATG9nRmlsZXMva3Vk - dS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ3LTA2X2MzNzA5OV8wMDFfU3RhcnR1cF9HRVRfYXBpLXNl - dHRpbmdzLVNjbVR5cGVfMHMueG1sUEsBAhQAFAAIAAgA41VVT6cWDmI4AgAA+QMAAFYAAAAAAAAA - AAAAAAAArB8AAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00Ny0wNl9jMzcwOTlf - MDAyX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMXMueG1sUEsBAhQAFAAIAAgA5VVVTykk - IHfGAgAATAUAAEkAAAAAAAAAAAAAAAAAaCIAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMC0y - MVQxMC00Ny0wOF9jMzcwOTlfMDAzX1BPU1RfZGVwbG95XzIwMl8ycy54bWxQSwECFAAUAAgACAAH - VlVP5QB6EGEDAAA0CgAAUQAAAAAAAAAAAAAAAAClJQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5 - LTEwLTIxVDEwLTQ3LTA4X2MzNzA5OV8wMDRfQmFja2dyb3VuZF9QT1NUX2RlcGxveV82NnMueG1s - UEsBAhQAFAAIAAgA5lVVT5jn4fTgAgAAtgYAAFgAAAAAAAAAAAAAAAAAhSkAAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00Ny0xMF9jMzcwOTlfMDA1X0dFVF9hcGktZGVwbG95bWVu - dHMtbGF0ZXN0XzIwMl8ycy54bWxQSwECFAAUAAgACADsVVVPk7B7fWYDAAA/CAAAWAAAAAAAAAAA - AAAAAADrLAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ3LTI0X2MzNzA5OV8w - MDZfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAIAOxVVU/T - wbBwNwIAAPYDAABVAAAAAAAAAAAAAAAAANcwAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTAt - MjFUMTAtNDctMjVfYzM3MDk5XzAwN19HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1s - UEsBAhQAFAAIAAgA9FVVT3qJIIgKAwAAKwcAAFgAAAAAAAAAAAAAAAAAkTMAAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00Ny00MF9jMzcwOTlfMDA4X0dFVF9hcGktZGVwbG95bWVu - dHMtbGF0ZXN0XzIwMl8xcy54bWxQSwECFAAUAAgACAD5VVVPqxmSPxgDAAArBwAAWAAAAAAAAAAA - AAAAAAAhNwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ3LTUwX2MzNzA5OV8w - MDlfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzFzLnhtbFBLAQIUABQACAAIAPxVVU/P - Tx0JNQIAAPUDAABVAAAAAAAAAAAAAAAAAL86AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTAt - MjFUMTAtNDctNTZfYzM3MDk5XzAxMF9HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1s - UEsBAhQAFAAIAAgAAVZVTzkj6owRAwAAKwcAAFgAAAAAAAAAAAAAAAAAdz0AAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00OC0wMl9jMzcwOTlfMDExX0dFVF9hcGktZGVwbG95bWVu - dHMtbGF0ZXN0XzIwMl8xcy54bWxQSwECFAAUAAgACAAGVlVPG7k/IREDAAAoBwAAWAAAAAAAAAAA - AAAAAAAOQQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEwLTIxVDEwLTQ4LTEzX2MzNzA5OV8w - MTJfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBzLnhtbFBLAQIUABQACAAIAA1WVU+b - KudDNAIAAPQDAABVAAAAAAAAAAAAAAAAAKVEAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTAt - MjFUMTAtNDgtMjdfYzM3MDk5XzAxNF9HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1s - UEsBAhQAFAAIAAgAIlZVT+IBJtm1AQAAygIAAEcAAAAAAAAAAAAAAAAAXEcAAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvMjAxOS0xMC0yMVQxMC00OS0wNV9jMzcwOTlfMDE1X0dFVF9kdW1wX3BlbmRpbmcu - eG1sUEsBAhQAFAAIAAgA2VVVT7obK4eDAAAAkQAAAEsAAAAAAAAAAAAAAAAAhkkAAExvZ0ZpbGVz - L2t1ZHUvdHJhY2UvUkQwMDAzRkZBNDcxRjAtM2JjMWQ2OGItZDk2Ni00MDE1LWJkMzctODM3ZGFm - MWQzODc5LnR4dFBLBQYAAAAAHgAeAEINAACCSgAAAAA= + UEsDBBQACAAIAFJYbU8AAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw + l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACABR + WG1PAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj + MDFlYzc5MjQyZmZiMDcvbG9nLmxvZ51YXY7byBF+ToDcgfBDZgyoO+xm/5CTl1msnQ2QrLGwvVhg + MMCiSTYlZiVSIamZVZ72EH7MVYLcZS+QK+RrSiKboxHXY1uAXWpVfV9VV1dXFw9ZQhgjLPrI2E3I + b0JNlRDuc7f4fpubrqyWQbtLN3W+W9uWLkQWFqkRkqhUhkQIk5A4kooUOheSG62yvFiEf/g9f8ay + DjWTCpa/a+zWNM50brfrer+xVRcUdRNk9WZTdkGZB1dZFosCfxJ+RRc5L0TKdEY4sxERNsxJmiQJ + kZyFQghb2Ci9hJpwGSdRcrf4xla2OXjkwbZZU247ulB5moY8TIhlsSKCZ5KkPBdEJUYym2hRSOUg + fnfuWUxDpTQcRsxa51W3snBnva4fneScMlUedHWwPFCwvt8HAjfBlfnXrrFBW3b+8mE1IPuAkKom + ed0Rjzxpgldvbu5X9cbeO8V7BLbGf+pm/yog9ZPFUbG97+p63eI3MJpb/OO0vzPd6omKZw/bcMH/ + hLKECxnJ+Rj3O+zg6D/a4AebBh+A2ds8D2lCI6F1zGHy/a6qnqTKMaKU0kWRh1LzIiI2NAUReS5J + nJicsNRYi5RUmuuLtCMVCcHju8XXhy26eeL9WcDuD9/QbJO/uhANxmgE3mGo7xZ/xbavHfeT16PB + S8GEeuxYSXj+dWMP6Wq22x/rooApS1fd5jJyrBOcCOTh33b57sO+yui7tx+Doqk3yK8LiXKFxHy6 + +vj42NR1d/UZSG/s2vZVoijXFnZWdevEtjNN58iu54wkQuF4uvhv9y5ORxt0WXblsqobO6OcMJZI + Ls6Utyb7ySxdktXVnHqcKCafUW/qzLbtl6q3tnmwDbQvQnMahgmPOPJjiN1nbjCnXIpQK6j+va5/ + 6iOGqgltAP5pgA52VW6bQyVx23gx1zhVLBJxHJ0KV79rZLcNjmVnMHkpETwLx/Jq8+DRpjSrq6Jc + ziHzhCEQd4t3x4qAsLVlXbWBeTDl2qRrG9RVX0q3a9PhdtgEpkGGhVRRHv6xrwF/hhRT7gss8SWu + JpKeSPEosZDKicSmi5xNVrmYih4KLPEnuh4jrEZTU5HHHqvC84whVTwc7P5EiibSQEHQcFQTlE2F + wYSgnA5MnDBZGWy7lcFZQSPfWuTrAPbER1DA+oLHTdBhDwSVvo6aCp6BeGQAjfFnEs4NP5M+NwkG + Ax3p40hkj7eip4JnDZf6yQVJccOdBKiPK8oPL9JyDIjy6SifgfIZKOoxUMAZQJ3ggSa+6WQMiPvZ + kLmgMyWHbBt542rxDEIadhx6bGJl4gjScLACtiNF7Xuv4f1AXvvea38ztB8KNJu+jhcKjbgMaQec + KWo4OoJtGk3EIDRoIWv8FS/XYj/oMQrIwNsJQ4xifzucMETBCR6Ozw76XpjdymgdkucvJOadEyfK + cUuc6HJopvCeCugH3MBZh7p76jKOlTToDxgNvm9t4F+K/S3rutFsVddYM0FeFoVtXBN+VH0Z7HZz + 0gtQU3Aq2QxrITRjofe6KMu2J77frAPTBZMu5diH3Hu/uWQ6plEiw1jgRqlA6Iev3r+ber3fLU21 + fCS4nQhuzFsURhoG72r04ofbDpfPYsGe6/AZcgltFee4KF9ofGygEXa7zhHZixA8iXWMbuiFEO/f + fvXm27cBHmtmxrhgifqC4KzLzFZIklnyEYovYs8TBN/+vG3QP90itXFu+5z88fh6vD+uXdhC38qv + n/7966df8AmwOWZriesk+y2LZrRVrFiIdn7UNk1j9qRAA9HZCvr4+yL9XVeuW7KxzdL26HPaMdNx + hNZsRLdVhuZm1xyY8xnkBG8dja0fdXtMvPUOuVk37W/iP2ejW9W500Sxv4wumGYqnKBnrr20eBUu + K9PhWdqDqxeZwAu/Pfoe0ZldwwNMyRiN+Og7mkdsV0e6/faALGaQz9UfTLP/TZ+FYkJOdqtBebCk + p91AHaVsBvVc3XZmCTVcAC9S2+LRTbqaNHaJ43GLsk/1jAGZ4N2DEcoYrNYUlqQ7V8FvXUc0t9Fa + S0xpfO1TqPOy7ScHKILggPM8wyERPBGTdOnfCQSvh67MXORx+F+kf0g3AOPKfpFia7ttU3e1y5S6 + 6Dd9BlmGOsRwy/ffcd611p0RdAiXsSWPMONBfRsDX6DOrfpgzYRcStx3ySTPMATIe6YvU6srUpRV + 2a5sfouODHfXtbX4qmm7g9+vZ9ifs4Ats165AQXypi8QwfWu2pbHExfOWdNciWml+2d727eyMxTO + lbBzP++JyfMGDiHpgmu88h5Nk8NDdw6G/rTcuh/hjQuiaJFfRi236W4JAHTKwfWm7aFmTaCH6DuU + cadbW/WM3IV2MIGAnRprlOiuqV3BQfqevtyUG1e5vHZv1XVbYpvmUMnRIM95cU7BJTgpXQDQrMdg + YfPS9AWyQay8Z5lD7r93niKGcgZHhRxDlElymiyz287hRFQH15Vd1l1pMFAECh44vn9fgPLpf//9 + Dz7uXk/rfD8WW4ZtDa7TfYeTGIH20JE35pG4n8IZr51/GsyBV4l69kDWGCyCL96u4nO8/8vxWGHQ + De/bttit1/tDC3w2mUSTooQWzM1MTpNJFM7On+gex5PX7Ws3ocyESrMUw0keFpyI0HCSmlQTJWSh + dapzo/rB8nNQmkvFI3a3+NiUy6XtR+aNzfYZhiPX6LMeSvsYoLvCxLhs3cgkf00XMQagKTMpUblN + iDChIWnOciIxVdS6kHkahc8Oy+FbHEoM5FDb34yD+TEqdIExLxcKtsMi1hi3Rrh6hLYkNuBZFCpl + Rexs/x9QSwcIMCsOciwIAABZGAAAUEsDBBQACAAIAEVYbU8AAAAAAAAAAAAAAAA9AAAAZGVwbG95 + bWVudHMvY2M4NGZmZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdNNL + zyzJTM/LL0rl5SpITM5OTE/VyyrOzwPyivKTU4uLobzi1KKy1CIgh5dLD6iFlwsAUEsHCE08ibUy + AAAAOQAAAFBLAwQUAAgACABRWG1PAAAAAAAAAAAAAAAAPwAAAGRlcGxveW1lbnRzL2NjODRmZmZm + OTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbI2SzU6EMBSF9ya+A2HP + TxkIMOl03Iy6l5Ub0ykXbEIpacvoPJsLH8lXsHaAYDImdtV7z/lOb9N+fXzi/bvovBMozWW/81EY + +x70TNa8b3f+aJqg8Pfk9gbXMHTyLKA3tvI8zGvCWJE2dpUJLdM4ZQBZmQEUBYsRsLxM0qRpjnGO + I2t2EB3Nq1TkPLa0b98CoRuDo6npDJdTQJEHbh7HI46Wxoo/CMq7OeROcKaklo0JmRRz2sXiGAFa + 0xYIrWtPj8daWrq3u2GQytiLRbPBuQclW2UJgqNl6wRtqBk1eRoZszKOpnqlVfBuLHYRXOHEjmoz + UYe+rrgAksSoDBAK0KZCaBsn200WFqhMivIZR1f8LkcBA36CPxLiPMzK3K6NjfhlnSdU5vrZlsyT + JC/yzJJ2+MnnMPjPwLPJEfYNhg4MkEqNgKOldCLXLwbEQO5pp604l7OmgNay784rfWn9PNTqC34D + UEsHCPPWbu1kAQAAugIAAFBLAwQUAAAAAABCWG1PAAAAAAAAAAAAAAAAEwAAAGRlcGxveW1lbnRz + L3BlbmRpbmdQSwMEFAAIAAgAPFhtTwAAAAAAAAAAAAAAABgAAABkZXBsb3ltZW50cy9zZXR0aW5n + cy54bWx7v3u/jX1Fbo5CWWpRcWZ+nq2SoZ6BkkJqXnJ+SmZeuq1SaUmaroWSvR0vl01xakkJUKwY + yFZQsElJLcjJr8xNzSsB84EiiSkpCtmplbZKSUWJeckZSgpliTmlqbZKuYnFJalFSgr6EI36KDpt + 9OHGAgBQSwcIDAVmJHIAAACMAAAAUEsDBBQACAAIAERYbU8AAAAAAAAAAAAAAAAcAAAAZGVwbG95 + bWVudHMvdG9vbHMvZGVwbG95LmNtZMVW32/iRhB+R+J/GJAs3VXBSa6tKpFSHSLLHT0wFDu5nIRk + OfYCvphd116H0If+7Z3ZtfkRSO76dDyA8ezMfjv7fTPzPp5D03J7I9+bdnvMH7JbNrSa4LC/oPlL + E97zcClBzuf1Wr3WbkPr5EebPt1c38A1TxO5WXGhwA2zOFXadMuzPJaiDZf2hX3526uRtHGS8Yz/ + XcR5rHh+vLwEg2Hj+QaEjLj9NYdY5CpIEh7Va+sl+msDvPtDFAnQV7026IPFptPx1BxTn/IC3tRr + APqcozjPY7HYRuRPPCxUcJ/wM0gTHuS82qRacgaYwCDJeBBtKhuPYBU8cMgLxBArCAMB9xxwTbhE + 2zyTKwiLLKMkcfEYZ1JQwmyCsZBKAs8ymdVrb8tjulwV6S4J9DbnKpFhkKA/oYt4Emzw+ykNBCWa + lrjMg+7UG/S7Pc/tWP9G6YVl27MgU/E8CBVmVefDGXtwzfoDh13j72Q4/jJijue745tpj5nUUKQj + UxWxhImZfSGS151+wAA6yc8iGVPH2sK0Zuv1OpMSWaMP/yyqw+48f9R1Bn3mev6k633chT22HcRd + BSKe8xwDU5afxZ1M2e1gfOOeig1AoE+veGEHAAR/Cj8pxHe/OD2/N7o20FFSA0NbeCiiAvKNCLd0 + LC3EyE9kdEsjXnwCIl1VhNOu5AmtBSo0jxOkU3nOxo7vjZLv+xyjVYhhSGRKNvC1yBVkhRC0Z5MQ + 0Z5NWMsiiZDnucTH7IG8KC0HB+pYQZpGgQqsGWKbVc52uEJBYjr0trv6QDeBO9+oOInVBvqFCBVS + 94TaqeTo1S5PeKgclHtZUEoOV/w1cNiQ9TzfGV8z/5ZN3cHYOUi3t+Qwl0ki13TGACUaScFBCjy+ + FPA5FpFc59D9h9T7md/rErSvUzq8vgHrtf0sLKtHosHCevDWCODoLRtNrOb33x+ymd0NXO9ZbIoy + 832qjmW6bLVKm4Z35v7OU1Qt5ondsc7vh8he8CZUWj/f4JXWAEB5iNfgpavX0E1G/p+ulvpLAA/9 + /xe+Et1+4arSsZ+l6l2HUkk+Wtsmgw4CRDF3mo1qVQPvuEGvS9wNvMm3wIbuXjWtvFAnFI+kVLmX + m+gttGLabNw3Wmn/4I/W676AD+YBjXHfqjvqx0BEyX5LjbYDAvY7HfHS1tXNFDfk8vkAiTxw/MmQ + BpKdhqqp5LKksNZgm+kWzXurCL0O6hGubz3CrxfQohFnF6fsbWRWh4atHFsCDccdhVxStJzuBmSN + oWkvYnVlLxdX9u6oV+aRSuF36lrfP+b3nQ2m6plh5tEMUvWaOfzJgoheP9vbrkJtIg3Ch2BBg9QL + pUK3aGtWrsNZSooyyWmRLymze+mrskTMPboDzXwURGPbm1qtNJNRoYt7Kbhv1o5UpqZnEEF+9Kfs + XFwgJE3YknIQyhWOFRFkslAxthC1DBSsY+zNZmgu8N+Si2qc26PqboDTT0AlxO9YP5X3aun/Vr2m + h/NdA0eG6bn8oml26AfY6SPgT7HqYWnq7M+2ZxW8zjYarYPz+4MRWB+pnDfxhHqorNc0/m6JHJZB + DjLUE2sEUZGRnNf8Hqgzwo7kqGdDB9oHZ1ZGU+yQP3IcvHeGPk6/Va83s7mBcOxTwb3cLtj3rdfe + GI3oe3kGvR+LOKdZOy/CkOf5vMDhBvH9B1BLBwh6ITNJ6QQAAO4MAABQSwMEFAAIAAgARFhtTwAA + AAAAAAAAAAAAACQAAABkZXBsb3ltZW50cy90b29scy9kZXBsb3ltZW50Q2FjaGVLZXmzMNUzNDQw + MtEzMTQ10TPg5dKtVNDVzcvXTckv0U1JLcjJr8xNzStR0C1SUHKxisnIz02NKc4sSY0pSi3IBzLy + iyqVFHTz0SQRGotjSvLzc4qBaoCGpqQCKZDugMSSDDQtSObxcgEAUEsHCHHT5L5nAAAAlgAAAFBL + AwQUAAgACABAWG1PAAAAAAAAAAAAAAAAFQAAAExvZ0ZpbGVzL2V2ZW50bG9nLnhtbG1QTWvDMAy9 + D/YfTO8ltpuUJCiGLClrWNeFNqeVMkyj0bB84bgdhbHfPi9pyg67WM9P0tOTYHHGWncC+ihge+k0 + VgJS1ZyLHBVZywqDyVLrNi2lfm9UtZR1XqKaWNemJBacUgpWL2F+sMIzlsIGawCQye5DmII+whNe + PhuVd2IEYI1IQFZUGCmUGnMyePllggmnzJsyNmWzjDGfcp/S15uDDR6MoJnMPD53qWPPr2ZuCYiO + sq6NqbBty+IgddHUYI0kRE3VnjQqsYkpZY4TO9R2H7ipGBOwxcNJFfpitrbGI/ULx1JLAf0bpukq + icIseVm/PYfr8HGx8f3vf1jyRfSx6ALqRJx5jkt2WRITA/me7FIDZ55r78EatIfD/sXGQz+7E/d3 + P1BLBwjUhSCSJgEAAMIBAABQSwMEFAAAAAAAcVhtTwAAAAAAAAAAAAAAABkAAABMb2dGaWxlcy9r + dWR1L2RlcGxveW1lbnQvUEsDBBQACAAIADtYbU8AAAAAAAAAAAAAAABTAAAATG9nRmlsZXMva3Vk + dS90cmFjZS8yMDE5LTExLTEzVDExLTAxLTU1X2Q4MjZmNV8wMDFfU3RhcnR1cF9QT1NUX2FwaS1z + ZXR0aW5nc18wcy54bWx1jstqwzAQRfeF/sN01lFt+dHExg6EdGPqJqEyITsjYrUV2LJqjRf9+yqF + QAl0O+fOvadwpCyQpl6VKEhONFt4U1+zcoTQSfLnKOQZ45zxuOE8D3mepo9xFiNo40ias490q+jp + PUWYp77EQFodOEWkzYdDGBR9jl2Jh71oEOjb+vx0XbDakzhbJYtosUQQ29dWvFSHVoi6PW7q6nnT + VPtdiaFn56H5fd6NRiGs7+8Air/6215J4/VPQw/1eJn+3z+JEoRgXTwwBt08SdKjySEcHDDmm4vg + UnyLk+WV/wBQSwcIJQAMvN4AAAA3AQAAUEsDBBQACAAIADxYbU8AAAAAAAAAAAAAAABPAAAATG9n + RmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEzVDExLTAxLTU1X2Q4MjZmNV8wMDJfUE9TVF9hcGkt + c2V0dGluZ3NfMjA0XzJzLnhtbJ1T227aQBB9r9R/2O5zZrExvoBwJJeQBpWbsCnpozET2Aq87u4a + knx9x7QolSKkqq9nztzOnOkbixWz0u4x5qOyUAdZbtkCf9ZoLGeb3BLedtwuuC64Xua6Pcft+b7o + +D5nsjQ2LwuibKJ28ERIrfcxb+WVbBm0lmoZzg5od2oT8/kszTizLxXx9aVDJSnidaPOTfsm5Gyg + yhILK1UZ86+IFSR7ecQzbrG0MMZya3c0UvCGZeeKeVXtZZE3qa0fRpWcJTX11fL1jMX8c26EEJwN + nyvqEHPXcaBQJQ1ZU4MHZQg74ZrqwEmWsFfb41GGEsMXhcIUB5G/1hqJYaRFI0okfZYGNSRbmizm + SROGFa7TJg60idVqv0fdinzhiFB4pM8zHAz8WR6a1fPcjYJNVIAXRT50wrUD3W5QQOg5UdAOA8d1 + 1pw9wipZpbAskU60wQ0sF+N3Og/Go+E0g9GcdvNE1xNtzxWh32s7gdNtaiSLBYxnX2B09+9901E2 + hLvhfDz7PjlXp9xrKnG2SlIi3yfLcQYPdO5pMhle519T9RHulT7lull0rpVVMd9ZW5GVaIeqSlEf + ZYHvQpMUBrPxXZoli4wk4Oz24wfG+n87fFbbrWocrtFUqjR0+GsWD0XbJ5Nd7Hqhk+FtbQZ0hOYv + Opz9BjJ8JgtMVWPgxqicNVOijvlEFloZ9WRhNEpbriOc/3bBIC92eDFWzCstj/SfZ1VMNUUL31Cb + 8+t0yHCe47l09tZt/xMA29T6/Ac95gYHwwBInH6r0eZdPHpj/AJQSwcIsz2l300CAAAfBAAAUEsD + BBQACAAIADxYbU8AAAAAAAAAAAAAAABWAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEz + VDExLTAxLTU3X2Q4MjZmNV8wMDNfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWyd + k8tu2zAQRfcF+g8s1xk9bT1cK4DqOIkQJw4suU6XsjSxWcgiS1LO4+tLOTVaBHBRdDv3csi5czhW + GgXRTDeY0Kyt+I61G7LAHx0qTUldalP3HDcG1wXXL1x35LijYWgFgUcJa5Uu28pY6sgLHoeUdLJJ + qF0KZivU2vRSdl7tiheBlOxQb3md0KtpQYk2pYTK40WCGcGPo8GZdxZSMuFti5VmvE3oDaKAtGF7 + 0yLtTAvJXss36UupLMui5JorndAnXJdCwBNroeGb/Z6FDMMXjpaqdlb52kk0DsU0KqtFM9xSoYR0 + g605m/YyrHCd9zqY+7XkTYPSjoaWY4WWb4Z7hp2CX0+G/sFl6UZBHVXgR9EQBuHagTgOKgh9Jwq8 + MHBcZ03JA6zSVQ7LFk2+NdawXMxOhjSZZdO7ArL7hLq+FfuW57tWOBx5TuDEfa90sYDZ/Aqyi3+/ + P8+KKVxM72fzb7eH7ubsqbQoWaW5MV+my1kB1/O8uEtvp6f9p9J9gEsun0rZD3wvueYJ3Wot1GEG + IXKUe1bhO+n84wdCxn8yOe/0hvdMSlSCt8pA8BcoY/83WUe7QVR3amKS70l2KHkrFPhs9j6/oaR/ + CsqE3rJKcsUfNWRZbruOZbz/ufJJWW3xSFFChWR785MOoytxhxq+olQHugeGLt/xXbPbHjoDI/S/ + xexWiIZVB9Dt74q3n0m1LaX5VUmnHyGixD4ffwIgdScPphFxdooAmAjHdp/ge3kQHvWfUEsHCMzx + iRo1AgAA9QMAAFBLAwQUAAgACABAWG1PAAAAAAAAAAAAAAAAQgAAAExvZ0ZpbGVzL2t1ZHUvdHJh + Y2UvMjAxOS0xMS0xM1QxMS0wMi0wMF9kODI2ZjVfMDA0X1NodXRkb3duXzBzLnhtbFXLSw7CIBSF + 4bmJe7gyLpWXhZK2azDRDZCCkaSltVzi9mXq9PzfGTKGHTDiEkZyP7Y55AyPd0G/fRMB77DugvGe + ck65fHJumbCMtUwqAjFldGmuxBvRvW4E9uhHInujGtFoAmXHuNbMWP1YptrOaK1vFS4u4xE+JWT8 + I6KVRihtKrlOw4VS8OVwGLdkgfM1A6XT+fQDUEsHCJHYtf2VAAAAtwAAAFBLAwQUAAgACABCWG1P + AAAAAAAAAAAAAAAAWgAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0wNF9k + ODI2ZjVfMDAxX1N0YXJ0dXBfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzBzLnhtbH2PXUvDMBSG + 7wX/w/FcL7bpYulKMxhzjGL9wJThXQlrnIE2rc0p6L83IgPxwtv3OTzveQtPZgSy1BmJivRE8wjP + 5n02nhBaTSFOYr5inDO+rDnP4ySPxXW6FAjWedLuGE7aLElfbxDmqZMY6dFG3hBZd/KROvb152gQ + ekNvQytxv6sRKEQSp3PRaAMQPBOLZJEiqO19o+7Kp0apqjlsqvJ2U5ePDxLjwH58EncfZCanu70N + n64vLwCK32O2ndEujHnpO6iGk/93jQil0bq4YgzaedJkB5dD3HtgLJiL6Fv8FyfZmX8BUEsHCMJ3 + zPzmAAAARQEAAFBLAwQUAAgACABCWG1PAAAAAAAAAAAAAAAAVgAAAExvZ0ZpbGVzL2t1ZHUvdHJh + Y2UvMjAxOS0xMS0xM1QxMS0wMi0wNF9kODI2ZjVfMDAyX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlw + ZV8yMDBfMHMueG1snZPbbtpAEIbvK/Udtnud8RFsQ3Ekl5AEhYQIm5JeGjOBrcC73V1DkqfvmBSp + ioRU9Xbm3zn88+3AWFTMCrvFlI/rSu5EvWYz/NWgsZytSkvxwPN74Pvgh4Xv972g73WcqNfhTNTG + lnVFklUSRM9dzhq9TblbKuEatJZqGTevdsWrQs52aDdylfKbUcGZpVDK9amREpTo+EnnIriIOBvK + usbKClmn/A5RQbYVeyqRNVRCi7fyPfWtNI7jcHYrjU35AZelUnAQNWzler8XscD4VaJjqp1TvjUa + SWGERePUSMvNDWrI1ljT26xNwwKXeZsH6m+13G5Ru0nX8ZzYCWm5F9gZ+DMytAOXpZ9Eq6SCMEm6 + 0ImXHvR6UQVx6CVREEee7y05e4JFtshhXiP5u8IVzGeTsyYNJ+PRQwHjx5T7odMLnSD0nbjbD7zI + 67W1stkMJtMbGF/9e/98XIzgavQ4mf64P1ant+fc4myR5SS+zuaTAm6nefGQ3Y/O68+5+wTXUh9K + 3S78qKWVKd9Yq8xxB6Vy1HtR4YfU5edPjA3+ZnLa2LVsmdRolKwNQXAOSjpUSOycyDrJCVHbmCE5 + 35LscfYeKPCF7j6946wdBXXK70WlpZHPFsbj3PU9h7T/efJhWW3wRFHKlRZ7+knH1Y16QAvfUZsj + 3R2iK/RCn27bQkcwQvtb6LZKbUV1BN39aWT9lVWbUtOvShv7DAln7uXgCwBbNfoo6jNvZxgAWThw + Wwc/psNuchL8BlBLBwhaP0jrOAIAAPYDAABQSwMEFAAIAAgAQlhtTwAAAAAAAAAAAAAAAEkAAABM + b2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItMDVfZDgyNmY1XzAwM19QT1NUX2Rl + cGxveV8yMDJfMHMueG1slVRLc9s2EL53Jv8BxaGnLAmQelCKmQzryLGm8mMsuU566VDkRsKUAlAA + lO38+i4la+Jxokx6BT4sdr/HnviAlgUVGsz5VFdmo/SK3eC/LfrAWV0GOk+EHIGUINOFlGORjEU/ + ElnKmdI+lLoiSJ0lg899zlrX5Dyu0Tbm8Z2vNotHi/nkIaDTZfNBhd/KjX2jfOEfdZUH1yJnGwxr + U+f8+mq+4Cx0D7g7NGAV3fRk1nudvB5wdmq0xiooo3P+B6KFolFbqkHnAXWAGepVWOd8JDkrWqrr + 1JdyD/+99FEUcTZ5sFQh51IIqOiZ0l0T58bT2T0uS2vhXmlozGq7VUOFw0eDEU0SlV9ah4TwKqCP + NBI9tx4dFCv6OedFdw13uJx399B15EzToIszYisaRinR8wAbD0/DQTdaWcpsUGcVpFnWh95wKWA0 + GlQwTEU2SIYDIcWSs49wV9zN4VYjKVRjDbc3s/9L8+lsOrlcwPSaRk+jURolqYyG/XEiBmLUfVHc + 3MDs6gNM3/98W/PpYgLvJ9ezq08Xu+r09hiJnN0VcwKfFbezBZyT2pfFxeQ4/hjpH+HMuPvSdTxc + OxNMztchWL+bwdo5uq2q8MXV21e/MHby3OxnGKr1ealrkuhHRpeyx9nu+YsC81C6wPZW35AFKA0s + rJEty+qflTOtrn9UNhEZZ/Hbk18BWN26nUnHTGbDjWcA+3bjrt+XkGT0HPJ8oqs2rEwXX4feGu3J + 1sfz20tI9EPYDnBKc2j9KVmsC33C2f5ggQ+dwasKbUCaqqMYXc4vVOWMN58DTKfzWIpIcDYz1VPg + dqKM4/iYH76vb1xa9bQ/OlJ93NAK8uHdnmf6lZbIebvc7ZGgNph/XU5/04oSCYj+X7QQymqNhxDm + 3Dq1pTo7i3h7iQH+ROd3a6RH4UxFKomOb+XoHdQ4+a4WaX90APwHUEsHCHJZX27EAgAASQUAAFBL + AwQUAAgACABSWG1PAAAAAAAAAAAAAAAAUQAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0x + M1QxMS0wMi0wNV9kODI2ZjVfMDA0X0JhY2tncm91bmRfUE9TVF9kZXBsb3lfMzFzLnhtbNVWUW/i + RhB+r9T/MPVDlTzgeI0NNg0n9S65XlXdFYlU92KpWtYDWNi7vt11Ev59ZyEJYIxVnfpShARazc43 + 8803M3trLNZgC1vi1HvPxWalVSPzB80FepBzS8dhwNIBYwM2fGBsEoSTIPbDMPKgkMZyKcgkT8LR + Mvag0eXUu8mxLtXWgwrtWuVTb/bn/MGDdz/+AHB7jPdBI7eFXIHFqlaa6y3sr1YobR/6kCUe3Ly7 + /WkwgLzR5ETJCYyTysBgcI4zQ71UunJIS7RiDQtuMP+XWBFjL7G3or/bZelC/cwlX6H29ydXRT4R + IomW9ElDnkZBJBDjNEZMEhEwFOM0jMLlchGMry9nOfbj0egNuYX9QZUlih13Ys3lCg1aKofLckdG + r9uECnVGXnhEHtDnpFB/1aQER59pFpXKmxJNH8IoTDsQ2OhQnjOEO7ToKuRADhqARVOUOeo+sHFM + StzV3DltBf5+fx8KA19UjvPC4stRn8sk6ow/asV/47TcFiEL0pbZieJVvXUpzuefYIPbXhaTlBI7 + q1PQ432XGrnvzc15vUTXbyjRddNpEYzQRd3Tj2M/jQ490lGF+2cUzc4rPlOZJS+h1kqg6ck/8YMk + 9MBuaxovb9Y1t+upR1NHkx9fVLkHXK8a14Rm6v38rVH2l7tJNtNqpXkFHwtSKlw9J6PrzNX+nuCl + oWFhsj+avMmS2GcsCCM/YnGULQqZSVLJ3y8Sz3x3siHDPQMObw8Bgy0NGqkGubKDI7kONLzFsFYV + ZoZAM421oj9Kb19vqy6zgx+TWaVK82pNQDkSnnM2IwK6LrcxOpTDWNoSz1m7zPkjzUXBxZp+HlE7 + qkAtwa7xuCv3dABNGxCqqrjM/w+EXFpmqR92TsT2vKLR0t3xw7jV8q0h9D3yT/3h98v/IL0zTWX7 + k4OUO4QSjsLwTCkn++BBFytaeG5OaBRbUSJc1RofC3wCah4SS2H4osT82r84i4axPw67NlE/9O8r + qXbAH+fwxGmZo35Z56+RaPzWoLHADemWBj99OYiSG1MI+FrIXD3RSV3/56HNN0UNy0bSXqa2sXuO + wHVHqVaFIEgwWylggYI3Bg+mFKFUFlDuOOuPKx53VKxFWbdOw3E6Do+3xwWzZMjiE7OTBVYi3y3p + hl6N9GqDpRuxfUVOEtoNZ2vstLlOxPUVF5+U2pjXV9WsWZSFWd8/0pD/1RE4gZky9u7t+dWHnrJh + B3p6tMq7WRgGI8ZeWbhkkrA3P/8AUEsHCJ1aMlaqAwAASAsAAFBLAwQUAAgACABDWG1PAAAAAAAA + AAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0wNV9kODI2ZjVf + MDA1X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8xcy54bWytVNty2zYQfe9M/gHFQ5+y + JEiKN8VMh7UVWxP5MpIcp33pUORaRockEACU43x9QNqqPHWYyXTyil3s2cs550gblMRwU2NG520p + Gt5uyRI/dagNJVVh7LvPvBQ8D7xg7XlT5k9Z6ExSnxLealO0pU2pEj+6DSnpVJ1Rt5DcrVDW4qHB + 1mi3tmW0+f3xCVV2ys1Zt/mtaOQbwxvMDgB/WxjmAwv/oqRBcyeqjJ7O1pSYB2lh1L4xyW1g4iWT + 1/7rhJJj0bZYGi7ajL5HlJDXfIeU5J0tofiX4jH0R6Edx6HkTGiT0XvcFFLCPW+hFtvdjscc4weB + ji4bp/jSKbQZmtvWnRbtMq41Ksi3dqKM5n0YbnCz6uNg8Y0SdY3KTUKHObET2GV8hkbDU8vQN1wU + XhJVSQlBkoQwiTcM0jQqIQ5YEvlxxDy2oeQj3OQ3K7hu0d6jwgqul4ufttTjxXx2sYb5VUa9wEkD + xw88Jw6nPotY2mPnyyUsLk9hfvLj/a7m6xmczK4Wl3+eD9Xt37HtUnKTr2zyu/x6sYazy9X6Ij+f + jeePXeMjvBPqvlD9gq6UMCKjd8ZIPcwg5QrVjpf4n9DbV78QcvSc8yf/0vTph3OKZom6q79L/3Bi + 6T9U+5F6i4H/B6jvCSsMD5VHa58XbbFFdejVjj2u1aGk+/boVwBSdWoQw5RMwkmjCcDTFKNYxGAj + wY/jBOMyJVyTK2wraxPjkJHDWETJC0j2HPDI7e/woqsoPSSNpMTPU54f87IzW9EbmEItRautA4xt + xbYYWePY28o+3fqZ6fSxlV1ve/YSjw9r/NyLvixRGqwo6blifYye81IJLW4NzOcr12MO+9+qPy7K + O9wbSUal4jvLmoHNWl6ggQ+o9GBwE2swAQs8K9eFKJ+sbeD+1HXHZPdtGf0kp+7tz9oirAeTtqZa + 88e+3H+0aN+Q8q5QGk3WmVuwS3/BCy/Z3/zbFw/TYJ/wFVBLBwge9xSl3gIAALEGAABQSwMEFAAI + AAgASFhtTwAAAAAAAAAAAAAAAFgAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEt + MDItMTZfZDgyNmY1XzAwNl9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1srVVd + c+I2FH3vTP+DVg99imzJNrZh4+14STZhCgkDpEn70jHyhahjW15JJpv99ZUhLAkLtNNZPXl0r4/O + /Tr3XBuokRGmgAQPKi5LUS3RBD43oA1GeWbsvUdZlzBGmD9jrEe9Hgsd5nUxEpU2WcWtSx574aKD + UaOKBLtZLdwc6kI+l1AZ7RYWRptfN1egkithrpv5L1lZvzeihGT3wF/2GeoR2vkToxLMo8wTfHU5 + w8g81/YZtSVWC2sIWByceWfMw6gvqwq4EbJK8G8ANUkLsQKM0sZiKPE125g+ZtpxHIyupTYJfoJ5 + VtfkSVSkkMvVSkQComcJjualk31tFFgPLSx3pwKbjTsNiqRLG1KC09ZM7mE+be3Evm+ULApQbtxx + qBM5vs3GF1Jq8sKZtIyzjMVhHnPix3GHBNGckm435CTyaRx6UUgZnWP0QO7T+ym5q8AWJIec3E2G + Pyyr/eHg8mZGBuMEM9/p+o7nMyfq9DwaUlvSB5JOJmR4e0UGF/+d73QwuyQXl+Ph7R+jNbr991h2 + MbpPp9b5U3o3nJHr2+nsJh1dHvc/Vo0H8kmqp0y1CRoraWSCH42p9TqGup6CWgkOe6YPP/+E0Pnr + pu8XkFVNjR7KAg3l0v5+oukDW1T3w/k7QlDeqHVT9RAtNSLke+SLbxPwwsW5AjMB3RSnJ6t9ZI22 + x/Qg3nA9WjvTSfoh/YZ8FHuUVdkS1I7r6Yy8gdwDHTdqCWgz9a0QIDsq5Uk4z/NfMUT2vKnVBEq5 + AmRRauJFUXyGxlDlVrHOkAIOduJzlBnEmMt8txUV+9nqFe2gdHQqM178L4VtqVgybts5+/UPvV0D + HPdiwb7b6y7cFRBxHgcLe7pe1g1owAE63Q5AHHPKgEddL/AWizmNkNDoYyOKNv5TsfnU6uOppj0W + 1xvGh0Nn0aug3pTqtjFL2e4SBbqWlbZafHyufBbuFH7rbleLaXTfCmC7gWwMm4sZfGnll3OoDeQY + tbNlVwoeCa6klgtDBoOpy6hje/1/6m8/44+wlfQE10qs7JStdUXXN2DI76D0etUEVup96jMrnEPJ + X5bMWoV6rntMAA8L2g9amu0isqNGZut9addbITa83L+1rN4j/pgpDSZpzILEB/qChdtmPlxxj/pb + h38AUEsHCElDNaJdAwAAPAgAAFBLAwQUAAgACABOWG1PAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVz + L2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0yOF9kODI2ZjVfMDA3X0dFVF9hcGktZGVwbG95 + bWVudHMtbGF0ZXN0XzIwMl8wcy54bWytVV1zmzgUfd+Z/Q+qHvapAokPA27oDnXcxFPnY2xnk+1L + B4trRzuAqCScpr++gnw4TWJPZ6c8ci9HR+feczjQBhpkhCkhxZOay0rUazSDry1og1GRG/veoywh + jBHmLxgbUm/oxY4/SDAStTZ5zW1LEXuDVYhRq8oUu3kj3AKaUt5WUBvtlhZGm7/vXoFKj4Q5bpd/ + 5VXzzogK0u0BX+wx1CM0/IxRBeZaFik+Gi8wMreNPUY9EGuELQQsDt56b5mH0UjWNXAjZJ3iTwAN + yUqxAYyy1mIo8T2/K33IteM4GB1LbVJ8A8u8aciNqEkp15uNiAREtxIczSsn/94qsB1aWO5ODVaN + Cw2KZGt7pRRnXZlcwnLe1Yk93yhZlqDcOHSoEzm+VeMbqTS550w6xnnO4kERc+LHcUiCaElJkgw4 + iXwaD7xoQBldYnRFLrPLObmowQ6kgIJczKa/TdXRdDI+XZDJeYqZ7yS+4/nMicKhRwfUjvSKZLMZ + mZ4dkcnhr/OdTxZjcjg+n579e9Kj2293qYvRZTa3zR+zi+mCHJ/NF6fZyXh3/65pXJGPUt3kqhPo + XEkjU3xtTKP7OzTNHNRGcHhWev/nHwgdPF36UQl53TboqirRVK7t53uWPrIKue8P3hCCilb1SzVE + tNKIkJfIh48OuOfiHIGZgW7L/c5KYox6tGdMX8Wb9tbalvbRDxh7RN6JfZLX+RrUluteRXrIF4ow + 5m01Qfb5SfEtWcR5HKzsk3h5EtCAA4RJCBDHnDLgUeIF3mq1pBESGn1oRVnYdNp3w9Dz9w/IUnG7 + 6T+fIfPCLeMdLX70pOXpCp21Zi273FSgG1lrmzu7dyiM6DbNHtptjJpWj6zZu7S1eXb3YgHfuqjh + HBoDBUbdHtn4xCeCK6nlypDJZO4y6ljI/5k1o5xfw0N8pbhRYmM3qveQbk7BkH9A6T5WAxtrPvWZ + tcBU8vtA7R03dN1dZn/dvL/pB9GFrg1jsuj/DTbKS3HHy/1Py/od4te50mDS1qyI9dSLNX007usD + 95j/MPAfUEsHCHn5R00NAwAAJwcAAFBLAwQUAAgACABOWG1PAAAAAAAAAAAAAAAAVQAAAExvZ0Zp + bGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0yOF9kODI2ZjVfMDA4X0dFVF9hcGktc2V0 + dGluZ3MtYnJhbmNoXzIwMF8wcy54bWydk1tv2kAQhd8r9T9s9znjK8RAcSSXkMQKCRE2JX009gBb + Ga+7uyaXX5+xU6oqElLV1z1nZmfOfjvWBmtmhCkx5HGVy72otmyBvxrUhrMiM3TuOe4QXBdcP3Xd + keONvIHVHw45E5U2WZWTpRh455s+Z40qQ25ntbA1GkO9tL1WZNlxtkezk0XIr6cpZ+alpip1vKcW + JPTcQe/MO3M9ziayqjA3QlYhv0WsISrFATmLGuqhxGv2Ln3LtGVZnN1IbUL+hOusruFJVFDK7eEg + AoHBi0RL53sre20UkkMLg9qqkJZbalQQbbGi2qiVYYXrpNWB7jdKliUqe9C3HCuwfFruGfYafs8M + 7cTDor9eb/IAgszrQY8igCzYeBA46Pe9LB8GwYCzR1hFqwSWFVK+BRawXMxOhTSZxdP7FOKHkLu+ + NfQtz3etoD/ynHOnaxUtFjCbX0N8+e/XJ3E6hcvpw2z+467rTrWnwuJsFSVkvoqWsxRu5kl6H91N + T/tPhfsIV1I9Zard90FJI0O+M6bWbRxRXSeoDiLHD9LF50+Mjf9Gct6YrWyRVKhrWWli4DST5y4x + eSTraCdCTaMnFHwLssPZ+0GKz/Ts81vO2lFQhfxO5EpquTEQx4ntOhZ5//PFJ1m+wyNEIa+VONBH + 6lbX9T0a+I5Kd3D3CC7f8dvBW+aIRUi7r0EklyLvOLd/all9ZfkuU/SpwsZsgFCwL8ZfAFjRqM40 + Ys5eMwCKcGy3CX6U/T/6G1BLBwiwJlDTMwIAAPQDAABQSwMEFAAIAAgAXVhtTwAAAAAAAAAAAAAA + AFUAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItNTlfZDgyNmY1XzAxMF9H + RVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1snZNbc9owEIXfO9P/oOo5a1s2F0NxZlxC + EiYkZMAp6aMwG1DHWK4kk8uv75qUmU46pJ2+as+utEffGViHFXPKFZjwcZnrrSrXbIY/arSOs5V0 + dB4GogdCgIgyIfpB2G/3vKAdcKZK62SZk2QVh52HNme1KRLuy0r5Fp2jWdZfGpJsONui2+hVwi9G + GWfuuaIuc7inUlRoibh1Ep6IkLOhLkvMndJlwq8QK0gLtUPO0ppmGPUiX0tfpPU8j7NLbV3CH3Ep + qwoeVQmFXu92qquw+6zRs/nWky+1QVJY5dB6JdJydxYNpGssqTdtyrDA5bypA93vjC4KNH7c9gKv + 60W03BNsLfx6MzQvlnLZ7S5XbRDtSEArjgKQcSeGMM7zuNWVEkPB2T0s0sUc7kokf1e4grvZ5JhJ + w8l4dJPB+DbhIvJ6kRdGwuu2+2HQCXrNqHQ2g8n0AsZn/379fJyN4Gx0O5l+u95Pp95jZnG2SOck + Pk/vJhlcTufZTXo9Oq4/Zu49nGvzKE2z763RTid841xl9ztU1RzNTuX4pnT68QNjg9+RHBYoy7pi + 99uCTfSa2v+CpH86+ATAVrXZM9JnorO1DODP0dParXVDu0Fb6dISXu/M7tD/H6A9yAl+V9sh/WmT + EcrD60GGT0TU9IqzZks0Cb9WudFWPzgYj+e+CDzS/idMQ5lv8MBnwiujdpTRvau2ukEHX9HYfW5a + xG0URIKwaXAmzCHbp45CUqh8b4//3eryM8s30lBek9o9QMzZOx4O/OZ33nociYPHPwFQSwcITSC6 + p0sCAABQBAAAUEsDBBQACAAIAHFYbU8AAAAAAAAAAAAAAABHAAAATG9nRmlsZXMva3VkdS90cmFj + ZS8yMDE5LTExLTEzVDExLTAzLTM1X2Q4MjZmNV8wMTFfR0VUX2R1bXBfcGVuZGluZy54bWx9Ul1v + 2jAUfZ+0/+D5uXbjkA9ApFJG0xYtLYgEwfbmOBdqKbG9xAHRXz/TadO0ib3e8+FzfO+st2CQlbaB + BC+U0K1UB7SG7wP0FqOaWzf3PTYhjBE2KhmbeqPpKKThOMRIqt5yJRylHvvR3k2GrknwbT20BqMW + 7KuuE/yYlRjZs3G07pexkQ4I2Di48W+Yj9FcKwXCSq0S/AXAkLSRR8AoFQKMJZlLVrtkCZY1KBf3 + 7KDB2Xfyjf9UfeY9pRSjJ93bBJ+g4saQk1Sk0YfjUcYS4rMG2ouW8rehA8fopYWeKnBFd2Sbbguy + UXB5CWqyWee/i8zzRfZSksUqwSyKqe971A9Dylg4DfzYpd+RdL0m+fKRLO4TXAmvhj33iYjcpwWR + 2JPJpBIkqsJJVfE4CCN+0RSLMiP32Spffn1+93faa7kx2qaFIz+km7wkT8uifEmfs+v86z0fdHfi + 3aXiqtNWJ/jVWtO/dzCmgO4oBfwF3X38gNDsz0uZN8DVYNCubVCuD05+/VIiz8Po9m72iRBUD937 + uqbIa3tEyL/O36QpbAe8dRdh3arpUrnRf/2DGKMfUEsHCPPM5dGxAQAAyAIAAFBLAwQUAAgACAA7 + WG1PAAAAAAAAAAAAAAAASwAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvUkQwMDE1NUQ1MDQ4QjItNmY0 + YzdmZTQtODJkOS00MTY5LWJkMGQtN2Y0MTJmN2FkZjkwLnR4dDXLwQqCMBgA4HvQO/wPMHG/JuVu + UpeRqbTRVcRGDVLX9u/Q2ydB548v41gmiAnmGlFwFEUBoGjwFB1czTuaQAyifwlIB2fTYIjs/AgM + JkPP5S6ga5VmQB9nBPh/cHaVvDzsWMb2DNTx0quz7Hql6v5W1fJUadk2Avhq46R/uVlms918AVBL + Bwj9IkbyhAAAAJEAAABQSwECFAAUAAgACABSWG1PVf07dycAAAAoAAAAEgAAAAAAAAAAAAAAAAAA + AAAAZGVwbG95bWVudHMvYWN0aXZlUEsBAhQAFAAIAAgAUVhtTzArDnIsCAAAWRgAADwAAAAAAAAA + AAAAAAAAZwAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQy + ZmZiMDcvbG9nLmxvZ1BLAQIUABQACAAIAEVYbU9NPIm1MgAAADkAAAA9AAAAAAAAAAAAAAAAAP0I + AABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L21h + bmlmZXN0UEsBAhQAFAAIAAgAUVhtT/PWbu1kAQAAugIAAD8AAAAAAAAAAAAAAAAAmgkAAGRlcGxv + eW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnht + bFBLAQIUABQAAAAAAEJYbU8AAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAGsLAABkZXBsb3ltZW50 + cy9wZW5kaW5nUEsBAhQAFAAIAAgAPFhtTwwFZiRyAAAAjAAAABgAAAAAAAAAAAAAAAAAnAsAAGRl + cGxveW1lbnRzL3NldHRpbmdzLnhtbFBLAQIUABQACAAIAERYbU96ITNJ6QQAAO4MAAAcAAAAAAAA + AAAAAAAAAFQMAABkZXBsb3ltZW50cy90b29scy9kZXBsb3kuY21kUEsBAhQAFAAIAAgARFhtT3HT + 5L5nAAAAlgAAACQAAAAAAAAAAAAAAAAAhxEAAGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveW1lbnRD + YWNoZUtleVBLAQIUABQACAAIAEBYbU/UhSCSJgEAAMIBAAAVAAAAAAAAAAAAAAAAAEASAABMb2dG + aWxlcy9ldmVudGxvZy54bWxQSwECFAAUAAAAAABxWG1PAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAA + AACpEwAATG9nRmlsZXMva3VkdS9kZXBsb3ltZW50L1BLAQIUABQACAAIADtYbU8lAAy83gAAADcB + AABTAAAAAAAAAAAAAAAAAOATAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDEt + NTVfZDgyNmY1XzAwMV9TdGFydHVwX1BPU1RfYXBpLXNldHRpbmdzXzBzLnhtbFBLAQIUABQACAAI + ADxYbU+zPaXfTQIAAB8EAABPAAAAAAAAAAAAAAAAAD8VAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIw + MTktMTEtMTNUMTEtMDEtNTVfZDgyNmY1XzAwMl9QT1NUX2FwaS1zZXR0aW5nc18yMDRfMnMueG1s + UEsBAhQAFAAIAAgAPFhtT8zxiRo1AgAA9QMAAFYAAAAAAAAAAAAAAAAACRgAAExvZ0ZpbGVzL2t1 + ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMS01N19kODI2ZjVfMDAzX0dFVF9hcGktc2V0dGluZ3Mt + U2NtVHlwZV8yMDBfMHMueG1sUEsBAhQAFAAIAAgAQFhtT5HYtf2VAAAAtwAAAEIAAAAAAAAAAAAA + AAAAwhoAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0wMF9kODI2ZjVfMDA0 + X1NodXRkb3duXzBzLnhtbFBLAQIUABQACAAIAEJYbU/Cd8z85gAAAEUBAABaAAAAAAAAAAAAAAAA + AMcbAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItMDRfZDgyNmY1XzAwMV9T + dGFydHVwX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8wcy54bWxQSwECFAAUAAgACABCWG1PWj9I + 6zgCAAD2AwAAVgAAAAAAAAAAAAAAAAA1HQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEz + VDExLTAyLTA0X2Q4MjZmNV8wMDJfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWxQ + SwECFAAUAAgACABCWG1PcllfbsQCAABJBQAASQAAAAAAAAAAAAAAAADxHwAATG9nRmlsZXMva3Vk + dS90cmFjZS8yMDE5LTExLTEzVDExLTAyLTA1X2Q4MjZmNV8wMDNfUE9TVF9kZXBsb3lfMjAyXzBz + LnhtbFBLAQIUABQACAAIAFJYbU+dWjJWqgMAAEgLAABRAAAAAAAAAAAAAAAAACwjAABMb2dGaWxl + cy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItMDVfZDgyNmY1XzAwNF9CYWNrZ3JvdW5kX1BP + U1RfZGVwbG95XzMxcy54bWxQSwECFAAUAAgACABDWG1PHvcUpd4CAACxBgAAWAAAAAAAAAAAAAAA + AABVJwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEzVDExLTAyLTA1X2Q4MjZmNV8wMDVf + R0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzFzLnhtbFBLAQIUABQACAAIAEhYbU9JQzWi + XQMAADwIAABYAAAAAAAAAAAAAAAAALkqAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNU + MTEtMDItMTZfZDgyNmY1XzAwNl9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1s + UEsBAhQAFAAIAAgATlhtT3n5R00NAwAAJwcAAFgAAAAAAAAAAAAAAAAAnC4AAExvZ0ZpbGVzL2t1 + ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0yOF9kODI2ZjVfMDA3X0dFVF9hcGktZGVwbG95bWVu + dHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACABOWG1PsCZQ0zMCAAD0AwAAVQAAAAAAAAAA + AAAAAAAvMgAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEzVDExLTAyLTI4X2Q4MjZmNV8w + MDhfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hfMjAwXzBzLnhtbFBLAQIUABQACAAIAF1YbU9NILqn + SwIAAFAEAABVAAAAAAAAAAAAAAAAAOU0AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNU + MTEtMDItNTlfZDgyNmY1XzAxMF9HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1sUEsB + AhQAFAAIAAgAcVhtT/PM5dGxAQAAyAIAAEcAAAAAAAAAAAAAAAAAszcAAExvZ0ZpbGVzL2t1ZHUv + dHJhY2UvMjAxOS0xMS0xM1QxMS0wMy0zNV9kODI2ZjVfMDExX0dFVF9kdW1wX3BlbmRpbmcueG1s + UEsBAhQAFAAIAAgAO1htT/0iRvKEAAAAkQAAAEsAAAAAAAAAAAAAAAAA2TkAAExvZ0ZpbGVzL2t1 + ZHUvdHJhY2UvUkQwMDE1NUQ1MDQ4QjItNmY0YzdmZTQtODJkOS00MTY5LWJkMGQtN2Y0MTJmN2Fk + ZjkwLnR4dFBLBQYAAAAAGQAZAKkKAADWOgAAAAA= headers: cache-control: - no-cache content-disposition: - - attachment; filename=dump-10-21-10-49-05.zip + - attachment; filename=dump-11-13-11-03-35.zip content-type: - application/zip date: - - Mon, 21 Oct 2019 10:49:05 GMT + - Wed, 13 Nov 2019 11:03:35 GMT expires: - '-1' pragma: @@ -1478,7 +1329,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=c370993cfdeee25b5b350afe4a0d1eebaa99d573783c2f719d7103e949f77add;Path=/;HttpOnly;Domain=webapp-win-log3t4ca3jcah.scm.azurewebsites.net + - ARRAffinity=d826f5d20884afb8161133707fcf2d0f116d4ff9b65e9eb4cd29018eae35ce60;Path=/;HttpOnly;Domain=webapp-win-logvvi7ie7yoe.scm.azurewebsites.net transfer-encoding: - chunked x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml index 10084dbb196..9fc81e389df 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml @@ -14,7 +14,11 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +109,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT +======= + - Thu, 14 Nov 2019 01:38:45 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,14 +150,22 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1658203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1658203Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.1189940Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6105062Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6105062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:25.5323440Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +174,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT +======= + - Thu, 14 Nov 2019 01:38:46 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +213,11 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +233,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT +======= + - Thu, 14 Nov 2019 01:38:46 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +253,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1197' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,18 +288,27 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.4766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D84CA1749759018BB1A2B764D13033E6E697EF01DEAFB5E282EAD234AEA402E6","kind":"functionapp","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:05.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"69AFFB94E4A32F8CE2B3EAECF314FAAF0454A38D7B1B2D175E747AFE11AB3CA1","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3606' content-type: - application/json @@ -275,6 +316,15 @@ interactions: - Fri, 27 Dec 2019 13:56:38 GMT etag: - '"1D5BCBD60688100"' +======= + - '3660' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:40 GMT + etag: + - '"1D59A8C4D5FF190"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -318,14 +368,22 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30054e8-0000-0700-0000-5e060d9c0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"88085aae-84f9-4638-9308-8124bccc7763","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"af1c2150-c887-4d9c-8e56-900dd9cb13d2","ConnectionString":"InstrumentationKey=af1c2150-c887-4d9c-8e56-900dd9cb13d2","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:44.2940497+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801dfbe-0000-0700-0000-5dccb0620000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"25b470a3-6702-449b-bfa1-ea48e31c40d6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66b28c54-c2b4-410e-8d10-c6ff3806d3a9","ConnectionString":"InstrumentationKey=66b28c54-c2b4-410e-8d10-c6ff3806d3a9","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:45.9905593+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +394,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT +======= + - Thu, 14 Nov 2019 01:39:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +416,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1196' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -377,11 +443,15 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +464,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT +======= + - Thu, 14 Nov 2019 01:39:50 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +499,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "af1c2150-c887-4d9c-8e56-900dd9cb13d2"}}''' +======= + "66b28c54-c2b4-410e-8d10-c6ff3806d3a9"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -443,15 +521,23 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"af1c2150-c887-4d9c-8e56-900dd9cb13d2"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"66b28c54-c2b4-410e-8d10-c6ff3806d3a9"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +546,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:51 GMT etag: - '"1D5BCBD7C6B1E15"' +======= + - Thu, 14 Nov 2019 01:39:52 GMT + etag: + - '"1D59A8C685382A0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -501,26 +593,32 @@ interactions: - -g -n --rule-name --action --ip-address --priority User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3241' + - '3042' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:51 GMT +======= + - Thu, 14 Nov 2019 01:39:53 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,14 +653,9 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": - "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -573,35 +666,49 @@ interactions: Connection: - keep-alive Content-Length: - - '1608' + - '1216' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3332' + - '3028' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:55 GMT etag: - '"1D5BCBD7C6B1E15"' +======= + - Thu, 14 Nov 2019 01:39:56 GMT + etag: + - '"1D59A8C685382A0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -619,7 +726,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1193' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml index e68d8688d8c..88dd0c934c3 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml @@ -14,7 +14,11 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +109,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Thu, 14 Nov 2019 01:38:45 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -141,15 +153,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5877145Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5877145Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.5095665Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.1955557Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.1955557Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.1173948Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:24.8604564Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:24.8604564Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:24.7823657Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +188,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Thu, 14 Nov 2019 01:38:45 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -192,8 +230,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +257,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:56 GMT +======= + - Thu, 14 Nov 2019 01:38:46 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -255,26 +311,62 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:00.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A80D5FE8B93333EF4670E77F9303194F768EF994FFF068768BD393551AA47EB5","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:04.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D2ABC37B729140CC2384CDEF0356D708F53EE06B83B3F4575D65CF2012D6E9D","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:06.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AEFBD01849D2F4B503CA7E0DAA3D1FAB8AE1E06B53AB93B8D968E950329447AE","kind":"functionapp","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3544' +======= +<<<<<<< HEAD + - '3637' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:56:35 GMT etag: +<<<<<<< HEAD - '"1D5BCBD5F0DABF0"' +======= + - '"1D599EAAB9DB215"' +======= + - '3607' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:42 GMT + etag: + - '"1D59A8C4E5FD560"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -317,26 +409,56 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30040e8-0000-0700-0000-5e060d9b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"330b5c97-d73e-4c59-922e-fa9c25c254ee","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"1902db55-b4ac-49c2-ab2b-fdd54e8d451e","ConnectionString":"InstrumentationKey=1902db55-b4ac-49c2-ab2b-fdd54e8d451e","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:43.325334+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900dd5f-0000-0700-0000-5dcba1340000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c3e9a176-0cb8-4352-90ae-5897aebceaf9","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d72fee1f-6404-41f1-99dc-c7f7729b2e98","ConnectionString":"InstrumentationKey=d72fee1f-6404-41f1-99dc-c7f7729b2e98","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:44.626398+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801e5be-0000-0700-0000-5dccb0620000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cd96a6bf-644a-4843-b6c8-0b074ad5eb7d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"9b5fc5f2-db6b-4318-8360-3a007b7ed005","ConnectionString":"InstrumentationKey=9b5fc5f2-db6b-4318-8360-3a007b7ed005","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:46.5716382+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD - '891' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT +======= + - Wed, 13 Nov 2019 06:22:47 GMT +======= + - '892' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Nov 2019 01:39:49 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -376,12 +498,22 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +526,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:49 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:49 GMT +======= + - Thu, 14 Nov 2019 01:39:51 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +565,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "1902db55-b4ac-49c2-ab2b-fdd54e8d451e"}}''' +======= +<<<<<<< HEAD + "d72fee1f-6404-41f1-99dc-c7f7729b2e98"}}''' +======= + "9b5fc5f2-db6b-4318-8360-3a007b7ed005"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -442,16 +590,34 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"1902db55-b4ac-49c2-ab2b-fdd54e8d451e"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d72fee1f-6404-41f1-99dc-c7f7729b2e98"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"9b5fc5f2-db6b-4318-8360-3a007b7ed005"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +626,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:52 GMT etag: - '"1D5BCBD7D3788D0"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:51 GMT + etag: + - '"1D599EAC66473CB"' +======= + - Thu, 14 Nov 2019 01:39:53 GMT + etag: + - '"1D59A8C68EA9280"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +658,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD + - '1195' +======= +<<<<<<< HEAD + - '1198' +======= - '1195' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -500,27 +686,53 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3241' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:54 GMT +======= + - Wed, 13 Nov 2019 06:22:52 GMT +======= + - '3043' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:54 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,12 +767,7 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": "Allow", "tag": - "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: @@ -573,35 +780,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1608' + - '1216' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3332' content-type: - application/json date: - Fri, 27 Dec 2019 13:56:57 GMT etag: +<<<<<<< HEAD - '"1D5BCBD7D3788D0"' +======= + - '"1D599EAC66473CB"' +======= + - '3029' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:58 GMT + etag: + - '"1D59A8C68EA9280"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml index 4852372feba..b4f5c7b3bf2 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml @@ -21,7 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:21:23Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +79,18 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +106,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -126,7 +160,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:21:23Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +177,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:56 GMT +======= + - Thu, 14 Nov 2019 01:38:48 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +218,18 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +237,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":24704,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24704","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= +<<<<<<< HEAD + US","properties":{"serverFarmId":23980,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":26351,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26351","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +257,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:00 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:02 GMT +======= + - Thu, 14 Nov 2019 01:39:09 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,8 +303,18 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +322,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":24704,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24704","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= +<<<<<<< HEAD + US","properties":{"serverFarmId":23980,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":26351,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26351","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +342,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:01 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:04 GMT +======= + - Thu, 14 Nov 2019 01:39:09 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -280,15 +386,33 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:30.5251927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:30.5251927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:30.4627059Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2267999Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2267999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.1643352Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.8917374Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.8917374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.8136159Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -297,7 +421,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:03 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:05 GMT +======= + - Thu, 14 Nov 2019 01:39:09 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -331,8 +463,18 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -348,7 +490,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:03 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:05 GMT +======= + - Thu, 14 Nov 2019 01:39:10 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -392,27 +542,63 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:06.5466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7B6F36499787FED9892C315A4F8D0BFD81CB19FD24D22EA13BAA8C2857567183","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:10.79","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A4E2584141FC0684C3316E98FEF692ACBB9EC6831ED91D5575558243D201A2A5","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:27.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7736D418667B94B983EFED783F107D28E60D8A220E71DEC779420A4B9B80B75","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3615' +======= +<<<<<<< HEAD + - '3545' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:56:23 GMT etag: +<<<<<<< HEAD - '"1D5BCBD62CF6EE0"' +======= + - '"1D599EAAECF9115"' +======= + - '3531' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:44 GMT + etag: + - '"1D59A8C5A533880"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -463,7 +649,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30064e7-0000-0700-0000-5e060d8e0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"0ef8c039-b78d-4ecf-ac1f-821b06343833","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"10df803f-1965-48d5-9dad-8a9639fd103f","ConnectionString":"InstrumentationKey=10df803f-1965-48d5-9dad-8a9639fd103f","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:30.2294893+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900785f-0000-0700-0000-5dcba12a0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"aa4e09dc-3122-421f-8b54-0dd763200aac","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"a8127f94-7957-4001-a6cf-0ae0361ed378","ConnectionString":"InstrumentationKey=a8127f94-7957-4001-a6cf-0ae0361ed378","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:33.2062852+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801febe-0000-0700-0000-5dccb0650000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"794058f7-43bb-49f7-8401-eddcffa80ca8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c4fb5df7-4617-452d-866d-a832dbe5153d","ConnectionString":"InstrumentationKey=c4fb5df7-4617-452d-866d-a832dbe5153d","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:49.1987606+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -474,7 +668,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:32 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:59 GMT +======= + - Thu, 14 Nov 2019 01:39:51 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -492,7 +694,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1199' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -514,12 +720,22 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -532,7 +748,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:32 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:01 GMT +======= + - Thu, 14 Nov 2019 01:39:53 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -560,7 +784,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "10df803f-1965-48d5-9dad-8a9639fd103f"}}''' +======= +<<<<<<< HEAD + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "a8127f94-7957-4001-a6cf-0ae0361ed378"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "c4fb5df7-4617-452d-866d-a832dbe5153d"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -577,16 +809,34 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"10df803f-1965-48d5-9dad-8a9639fd103f"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"a8127f94-7957-4001-a6cf-0ae0361ed378"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"c4fb5df7-4617-452d-866d-a832dbe5153d"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -595,9 +845,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:34 GMT etag: - '"1D5BCBD738EA4EB"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:02 GMT + etag: + - '"1D599EACDAB8CEB"' +======= + - Thu, 14 Nov 2019 01:39:55 GMT + etag: + - '"1D59A8C6AAEB0B0"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -615,7 +877,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= +<<<<<<< HEAD + - '1199' +======= + - '1195' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -643,7 +913,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:21:23Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -652,7 +930,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:35 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:03 GMT +======= + - Thu, 14 Nov 2019 01:39:56 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -686,8 +972,18 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -695,15 +991,37 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"3a28b566-8c95-414f-83ae-2d3597aa0192\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"resourceGuid\": \"9c6f3d1b-7168-4121-97de-2c1efe86c439\",\r\n \"addressSpace\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"8c18b2be-30e0-4a33-90c1-82a1485c3009\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"fdb609ef-4833-4b3f-9b4f-1a87e92c06c0\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"0bd4c0f4-5d54-40f1-8540-fd567f29e865\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"ad679ee0-62fc-4b4a-8e4b-f8f400bec02c\",\r\n \"addressSpace\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"3a28b566-8c95-414f-83ae-2d3597aa0192\\\"\",\r\n +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"8c18b2be-30e0-4a33-90c1-82a1485c3009\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"0bd4c0f4-5d54-40f1-8540-fd567f29e865\\\"\",\r\n +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -712,7 +1030,15 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b9b3572-6c49-4ae7-832c-741887138ff9?api-version=2019-09-01 +======= +<<<<<<< HEAD + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b4ea130-5d2a-4698-8e83-57e931ac4ead?api-version=2019-09-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78bb6f8b-5314-44d2-835e-50815602241d?api-version=2019-09-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service cache-control: - no-cache content-length: @@ -720,7 +1046,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:40 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:06 GMT +======= + - Thu, 14 Nov 2019 01:39:58 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -733,9 +1067,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - afecf30f-8adb-4f07-a972-2b197e79ce88 x-ms-ratelimit-remaining-subscription-writes: - '1196' +======= +<<<<<<< HEAD + - 1a3d5a65-d050-4e31-bad3-2f3c69e2f999 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' +======= + - 26e82a66-38e9-47b4-b9b2-b53f6615c8bb + x-ms-ratelimit-remaining-subscription-writes: + - '1197' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 201 message: Created @@ -753,10 +1099,24 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b9b3572-6c49-4ae7-832c-741887138ff9?api-version=2019-09-01 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b4ea130-5d2a-4698-8e83-57e931ac4ead?api-version=2019-09-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78bb6f8b-5314-44d2-835e-50815602241d?api-version=2019-09-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -768,7 +1128,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:44 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:10 GMT +======= + - Thu, 14 Nov 2019 01:40:02 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -785,7 +1153,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - d88fd294-76f3-4bf0-bca5-4ef467719754 +======= +<<<<<<< HEAD + - e1464622-9f9d-4779-94f6-59c41b0f2c0d +======= + - f6d1f08e-f8f0-4e3e-b8db-b47e85f6e382 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -803,22 +1179,54 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"resourceGuid\": \"9c6f3d1b-7168-4121-97de-2c1efe86c439\",\r\n \"addressSpace\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"fdb609ef-4833-4b3f-9b4f-1a87e92c06c0\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"ad679ee0-62fc-4b4a-8e4b-f8f400bec02c\",\r\n \"addressSpace\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -833,9 +1241,21 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:45 GMT etag: - W/"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa" +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:10 GMT + etag: + - W/"8cce6404-c526-43ef-94b6-e4b1a14a3855" +======= + - Thu, 14 Nov 2019 01:40:03 GMT + etag: + - W/"4b32d70e-4bc5-4756-94b2-8bb66ee041db" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -852,7 +1272,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 12794c96-f01c-4fc5-8f03-52cb9cc631f0 +======= +<<<<<<< HEAD + - a12c3116-c73a-4b23-9bbc-f0a0f4b2531b +======= + - 80c79fa1-1f2d-4c44-8f69-42573c5b386d +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -870,27 +1298,43 @@ interactions: ParameterSetName: - -g -n --rule-name --action --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3239' + - '3041' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:45 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:11 GMT +======= + - Thu, 14 Nov 2019 01:40:03 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -926,27 +1370,43 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3239' + - '3041' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:47 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:13 GMT +======= + - Thu, 14 Nov 2019 01:40:05 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -982,8 +1442,18 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -991,7 +1461,15 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n \"properties\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n \"properties\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: @@ -1002,9 +1480,21 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT etag: - W/"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa" +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:14 GMT + etag: + - W/"8cce6404-c526-43ef-94b6-e4b1a14a3855" +======= + - Thu, 14 Nov 2019 01:40:06 GMT + etag: + - W/"4b32d70e-4bc5-4756-94b2-8bb66ee041db" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1021,15 +1511,32 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 266a12ad-2d7b-4ae4-90b8-ecbf155856e2 +======= +<<<<<<< HEAD + - 9e326004-3cf2-414a-b0b0-3262c8f54c18 +======= + - e7087e77-d11e-4c10-84bb-54685aca3b6a +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK - request: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": +<<<<<<< HEAD "Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}, "name": +<<<<<<< HEAD "endpoint-subnet", "etag": "W/\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\""}''' +======= + "endpoint-subnet", "etag": "W/\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\""}''' +======= + "Microsoft.Web"}], "delegations": [], "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "endpoint-subnet"}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -1040,14 +1547,28 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD - '479' +======= + - '484' +>>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -1055,7 +1576,15 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"e2a4ff9b-a943-46d7-aba5-93c0dc41a9a3\\\"\",\r\n \"properties\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"b93cc1e9-a231-4034-94b8-6fbbae43f234\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"4c3d21ea-e4a3-4640-a74b-5a09a6a435c6\\\"\",\r\n \"properties\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1063,7 +1592,15 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5269b980-65e6-4fc8-9a5f-ed74adc2f9dd?api-version=2019-02-01 +======= +<<<<<<< HEAD + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6ac2ede-9fd5-40b6-a82b-5f2802cad130?api-version=2019-09-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service cache-control: - no-cache content-length: @@ -1071,7 +1608,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:49 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:14 GMT +======= + - Thu, 14 Nov 2019 01:40:06 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1088,9 +1633,122 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 78c1a59b-23d5-4961-a115-fefef2177fb0 x-ms-ratelimit-remaining-subscription-writes: - '1197' +======= +<<<<<<< HEAD + - fe6217e4-7561-4ab4-abac-7e06b6d79e32 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' +======= + - c42d10aa-0919-4c84-850f-867e2bd52e6e + x-ms-ratelimit-remaining-subscription-writes: + - '1196' +>>>>>>> Re-record test for app service + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config access-restriction add + Connection: + - keep-alive + ParameterSetName: + - -g -n --rule-name --action --vnet-name --subnet --priority + User-Agent: +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 06:23:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2f26d4e0-e156-45ea-8911-568fe0d7153c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config access-restriction add + Connection: + - keep-alive + ParameterSetName: + - -g -n --rule-name --action --vnet-name --subnet --priority + User-Agent: + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 06:23:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d33aecd8-d76c-4aa8-b431-28b62754aa08 +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1111,7 +1769,17 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET +<<<<<<< HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5269b980-65e6-4fc8-9a5f-ed74adc2f9dd?api-version=2019-02-01 +======= + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6ac2ede-9fd5-40b6-a82b-5f2802cad130?api-version=2019-09-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1123,7 +1791,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:53 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:38 GMT +======= + - Thu, 14 Nov 2019 01:40:10 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1140,7 +1816,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - baedfd23-1916-4c1f-9acb-48ab3460298a +======= +<<<<<<< HEAD + - 72f958cd-afb9-4208-9de2-a9ae6ca96f45 +======= + - 28c5949f-9f4a-461c-99a9-97a8d2c77ab9 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1158,14 +1842,32 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet?api-version=2019-02-01 response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"f09b2bfd-f9e2-4c2b-84a3-a6e89fd84043\\\"\",\r\n \"properties\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"aec40d34-1132-4540-87d7-51f7131f7107\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"afe0ddc6-9167-44f2-b2e3-af6d2e5951ae\\\"\",\r\n \"properties\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1179,9 +1881,21 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:54 GMT etag: - W/"f09b2bfd-f9e2-4c2b-84a3-a6e89fd84043" +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:38 GMT + etag: + - W/"aec40d34-1132-4540-87d7-51f7131f7107" +======= + - Thu, 14 Nov 2019 01:40:10 GMT + etag: + - W/"afe0ddc6-9167-44f2-b2e3-af6d2e5951ae" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1198,12 +1912,20 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - b8f1790c-c0cc-4509-b258-454e1cfdf681 +======= +<<<<<<< HEAD + - e7fc840f-8b0d-45f0-b060-79463c297950 +======= + - 74d672a3-aa64-4e85-8bb3-ded367a48529 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK - request: - body: 'b''{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": false, @@ -1211,18 +1933,13 @@ interactions: 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-funcapp-nwr000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\\\wwwroot", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}, {"vnetSubnetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet", - "action": "Allow", "tag": "Default", "priority": 150, "name": "vnet-integration"}], - "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}''' + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1233,35 +1950,61 @@ interactions: Connection: - keep-alive Content-Length: - - '1844' + - '1214' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3568' + - '3027' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:58 GMT etag: - '"1D5BCBD738EA4EB"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:42 GMT + etag: + - '"1D599EACDAB8CEB"' +======= + - Thu, 14 Nov 2019 01:40:13 GMT + etag: + - '"1D59A8C6AAEB0B0"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml index 31bc108ddb1..715ab82afb7 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml @@ -13,8 +13,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +115,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:54 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -141,15 +159,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1502142Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1502142Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.1033203Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2111933Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2111933Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.1330665Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.3760716Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.3760716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.2979755Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +194,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -192,8 +236,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +263,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:53 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:56 GMT +======= + - Thu, 14 Nov 2019 01:38:48 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -255,26 +317,62 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1C685E15FE44F2252C7A9255E05DEA3195B48C45A4370C1EC320FA7D1C7A1F40","kind":"functionapp","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-097.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:14.32","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A6E2D52B8833B3E11FF7AA9EAF6F3B97C946E13477FFAA9F29AB95BD1A66FD32","kind":"functionapp","inboundIpAddress":"13.91.242.166","possibleInboundIpAddresses":"13.91.242.166","outboundIpAddresses":"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85","possibleOutboundIpAddresses":"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85,13.91.242.52,13.91.243.117,13.91.241.117","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-097","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:57.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8F797835B578BE02E82C08EAB05726F3818DB9BE78843EF01DD12AF8A50CE57F","kind":"functionapp","inboundIpAddress":"104.42.53.248","possibleInboundIpAddresses":"104.42.53.248","outboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90","possibleOutboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3547' +======= +<<<<<<< HEAD + - '3605' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:56:37 GMT etag: +<<<<<<< HEAD - '"1D5BCBD6098DFD0"' +======= + - '"1D599EAB399DD60"' +======= + - '3608' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:34 GMT + etag: + - '"1D59A8C48A801CB"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -317,26 +415,56 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30041e8-0000-0700-0000-5e060d9b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b003c07e-8fcd-47e9-8d8f-4b426bb43083","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"41c886d1-02c1-47f9-bbc9-cdcbae852226","ConnectionString":"InstrumentationKey=41c886d1-02c1-47f9-bbc9-cdcbae852226","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:43.5726621+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f9000f60-0000-0700-0000-5dcba13a0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"bac7f29f-1a1c-4349-8aca-42f0b29e9ec1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0806f793-bc6c-4b08-af9a-ab43c5650dcf","ConnectionString":"InstrumentationKey=0806f793-bc6c-4b08-af9a-ab43c5650dcf","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:49.8617681+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801adbe-0000-0700-0000-5dccb05b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c6f908b0-01bb-4cf2-9c0c-1d66a7657bde","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"79efa49f-a0c9-4989-9501-f67b7b285ad7","ConnectionString":"InstrumentationKey=79efa49f-a0c9-4989-9501-f67b7b285ad7","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:39.634062+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD - '892' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:45 GMT +======= + - Wed, 13 Nov 2019 06:22:55 GMT +======= + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 14 Nov 2019 01:39:42 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -376,12 +504,22 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +532,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:46 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:57 GMT +======= + - Thu, 14 Nov 2019 01:39:43 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +571,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "41c886d1-02c1-47f9-bbc9-cdcbae852226"}}''' +======= +<<<<<<< HEAD + "0806f793-bc6c-4b08-af9a-ab43c5650dcf"}}''' +======= + "79efa49f-a0c9-4989-9501-f67b7b285ad7"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -442,16 +596,34 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"41c886d1-02c1-47f9-bbc9-cdcbae852226"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0806f793-bc6c-4b08-af9a-ab43c5650dcf"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"79efa49f-a0c9-4989-9501-f67b7b285ad7"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +632,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:47 GMT etag: - '"1D5BCBD7AECAE70"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:00 GMT + etag: + - '"1D599EACB0CAC20"' +======= + - Thu, 14 Nov 2019 01:39:46 GMT + etag: + - '"1D59A8C649E69E0"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +664,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= +<<<<<<< HEAD + - '1197' +======= + - '1198' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -500,27 +692,53 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3241' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT +======= + - Wed, 13 Nov 2019 06:23:01 GMT +======= + - '3043' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,14 +773,9 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": - "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -573,14 +786,20 @@ interactions: Connection: - keep-alive Content-Length: - - '1608' + - '1216' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH @@ -717,29 +936,60 @@ interactions: ParameterSetName: - -g -n --rule-name User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3227' content-type: - application/json date: - Fri, 27 Dec 2019 13:56:56 GMT etag: +<<<<<<< HEAD - '"1D5BCBD7D150CB0"' +======= + - '"1D599EACE419860"' +======= + - '3029' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:51 GMT + etag: + - '"1D59A8C649E69E0"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -757,7 +1007,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= +<<<<<<< HEAD + - '1198' +======= + - '1199' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml index cbd4a4f4050..1034d403019 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml @@ -13,8 +13,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +115,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:53 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -141,15 +159,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5720903Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5720903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.4939285Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.7268149Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.7268149Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:32.6642979Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6573672Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6573672Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.5792303Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +194,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -192,8 +236,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +263,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Thu, 14 Nov 2019 01:38:48 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -255,26 +317,62 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.0433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"72EB641BF828439A1C1943CA994813DC3F131EC656167DA77AC0A9A115DA5562","kind":"functionapp","inboundIpAddress":"40.80.155.102","possibleInboundIpAddresses":"40.80.155.102","outboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21","possibleOutboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-079","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:04.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9C6D335BA9DB5D5C273F8DE9BE62FDE70C82104406B02581B9E758CA96C2640D","kind":"functionapp","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:55.4966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3D4A34DBD44EAA1B1725A344A788F64753B7003EF09C6BBDDBB1B88CE175E08B","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3593' +======= +<<<<<<< HEAD + - '3600' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:56:41 GMT etag: +<<<<<<< HEAD - '"1D5BCBD6043E200"' +======= + - '"1D599EAAB536FAB"' +======= + - '3537' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:44 GMT + etag: + - '"1D59A8C474FAAC0"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -317,15 +415,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30064e8-0000-0700-0000-5e060d9d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"015977ed-6710-4384-965f-326e2bb3dcd8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7be89f73-9913-470d-9b2d-40ec57532bb0","ConnectionString":"InstrumentationKey=7be89f73-9913-470d-9b2d-40ec57532bb0","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:45.0954588+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900ea5f-0000-0700-0000-5dcba1350000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"611a7287-39c6-46e7-94b6-d789135ba246","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"9a0cfd83-0461-4148-a2b1-9629399b7935","ConnectionString":"InstrumentationKey=9a0cfd83-0461-4148-a2b1-9629399b7935","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:45.6365429+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"080102bf-0000-0700-0000-5dccb0650000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"052eaeff-2a42-4d8f-a74a-e4da1a1fcf47","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"1802ac28-c4ca-4926-9299-1efcb52be180","ConnectionString":"InstrumentationKey=1802ac28-c4ca-4926-9299-1efcb52be180","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:49.3113832+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +452,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:46 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:49 GMT +======= + - Thu, 14 Nov 2019 01:39:55 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +478,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD + - '1197' +======= +<<<<<<< HEAD + - '1198' +======= - '1197' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -376,12 +508,22 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +536,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:47 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:51 GMT +======= + - Thu, 14 Nov 2019 01:39:57 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -412,7 +562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -425,7 +575,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "7be89f73-9913-470d-9b2d-40ec57532bb0"}}''' +======= +<<<<<<< HEAD + "9a0cfd83-0461-4148-a2b1-9629399b7935"}}''' +======= + "1802ac28-c4ca-4926-9299-1efcb52be180"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -442,16 +600,34 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7be89f73-9913-470d-9b2d-40ec57532bb0"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"9a0cfd83-0461-4148-a2b1-9629399b7935"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"1802ac28-c4ca-4926-9299-1efcb52be180"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +636,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:49 GMT etag: - '"1D5BCBD7B927155"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:53 GMT + etag: + - '"1D599EAC7390EE0"' +======= + - Thu, 14 Nov 2019 01:39:58 GMT + etag: + - '"1D59A8C6C632475"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -500,27 +688,53 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3241' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:50 GMT +======= + - Wed, 13 Nov 2019 06:22:54 GMT +======= + - '3043' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:59 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,12 +769,7 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": "Allow", "tag": - "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: @@ -573,35 +782,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1608' + - '1216' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3332' content-type: - application/json date: - Fri, 27 Dec 2019 13:56:54 GMT etag: +<<<<<<< HEAD - '"1D5BCBD7B927155"' +======= + - '"1D599EAC7390EE0"' +======= + - '3029' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:02 GMT + etag: + - '"1D59A8C6C632475"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -619,7 +860,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1198' +<<<<<<< HEAD +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -757,7 +1003,13 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1199' +======= +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml index ab2401a5455..3b63d6bbf66 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml @@ -13,8 +13,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +115,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Wed, 13 Nov 2019 10:55:30 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -141,15 +159,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:29.9314642Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:29.9314642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:29.8845687Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.3986816Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.3986816Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.3205520Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:10.4612231Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:10.4612231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:55:10.3830967Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +194,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:55 GMT +======= + - Wed, 13 Nov 2019 10:55:30 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -192,8 +236,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +263,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:56 GMT +======= + - Wed, 13 Nov 2019 10:55:31 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -255,26 +317,62 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:00.99","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2FFE5A6288EFE99F89E1812365F37B248ACDF759795B4976B1F3ABC98D5C1987","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:03.563","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BD11764E818679036DBBCB89F7225D70FCA123829C0431D9577492F5546B47D","kind":"functionapp","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:55:40.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"48F7F33B940A0E39C31D723787EF4ABB0F4CFC0FF90FB8A3A51D43C5D74CF39D","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3532' +======= +<<<<<<< HEAD + - '3547' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:56:34 GMT etag: +<<<<<<< HEAD - '"1D5BCBD5F8B4060"' +======= + - '"1D599EAAAA896B0"' +======= + - '3602' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:14 GMT + etag: + - '"1D59A10E46A72B5"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -317,26 +415,56 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30006e8-0000-0700-0000-5e060d980000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e1f9a686-3953-45fa-bff1-6b4c864b472a","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cfd60e56-c5b3-4f3f-8c2b-0321650f04fb","ConnectionString":"InstrumentationKey=cfd60e56-c5b3-4f3f-8c2b-0321650f04fb","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:40.5528135+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900ef5f-0000-0700-0000-5dcba1360000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"9a55c922-f82b-4346-9e94-4653ed17eaf0","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"49118095-4b4a-480f-98ec-d3d49122c1dd","ConnectionString":"InstrumentationKey=49118095-4b4a-480f-98ec-d3d49122c1dd","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:46.1692188+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00bead-0000-0700-0000-5dcbe1520000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"6e9d8ef5-b88a-43bd-94f9-7c296c5fcb57","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c275aa6d-2d1e-4dce-a11d-730d7950a6fa","ConnectionString":"InstrumentationKey=c275aa6d-2d1e-4dce-a11d-730d7950a6fa","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T10:56:18.881353+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD - '892' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:43 GMT +======= + - Wed, 13 Nov 2019 06:22:49 GMT +======= + - '891' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 10:56:21 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -376,12 +504,22 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +532,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:43 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:52 GMT +======= + - Wed, 13 Nov 2019 10:56:22 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -412,7 +558,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -425,7 +571,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "cfd60e56-c5b3-4f3f-8c2b-0321650f04fb"}}''' +======= +<<<<<<< HEAD + "49118095-4b4a-480f-98ec-d3d49122c1dd"}}''' +======= + "c275aa6d-2d1e-4dce-a11d-730d7950a6fa"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -442,16 +596,34 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"cfd60e56-c5b3-4f3f-8c2b-0321650f04fb"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"49118095-4b4a-480f-98ec-d3d49122c1dd"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c275aa6d-2d1e-4dce-a11d-730d7950a6fa"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +632,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:46 GMT etag: - '"1D5BCBD79CB38E0"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:54 GMT + etag: + - '"1D599EAC81F7740"' +======= + - Wed, 13 Nov 2019 10:56:25 GMT + etag: + - '"1D59A10FDAA1235"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +664,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= +<<<<<<< HEAD + - '1199' +======= + - '1196' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -500,27 +692,61 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3240' content-type: - application/json date: - Fri, 27 Dec 2019 13:56:48 GMT +======= +<<<<<<< HEAD + - '3241' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 06:22:55 GMT +======= + - '3043' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:27 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,13 +781,9 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + true, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -572,35 +794,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1498' + - '1215' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3225' +======= +<<<<<<< HEAD + - '3226' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:56:50 GMT etag: +<<<<<<< HEAD - '"1D5BCBD79CB38E0"' +======= + - '"1D599EAC81F7740"' +======= + - '3028' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:30 GMT + etag: + - '"1D59A10FDAA1235"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -618,7 +876,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1196' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -638,27 +900,61 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3243' content-type: - application/json date: - Fri, 27 Dec 2019 13:56:52 GMT +======= +<<<<<<< HEAD + - '3244' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 06:23:00 GMT +======= + - '3046' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:31 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -693,13 +989,9 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -710,35 +1002,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1535' + - '1252' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3226' +======= +<<<<<<< HEAD + - '3227' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:56:56 GMT etag: +<<<<<<< HEAD - '"1D5BCBD7C5DF1B0"' +======= + - '"1D599EACA8860F0"' +======= + - '3029' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:34 GMT + etag: + - '"1D59A11004667F5"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml index 3e98fd042f9..7f45f4c7b60 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml @@ -13,8 +13,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +115,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:51 GMT +======= + - Wed, 13 Nov 2019 10:55:29 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -141,15 +159,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:56:36.0527974Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:56:36.0527974Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:56:35.9903373Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:31.4299007Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:31.4299007Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:31.3674229Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:09.1018745Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:09.1018745Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:55:09.0237158Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +194,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:52 GMT +======= + - Wed, 13 Nov 2019 10:55:30 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -192,8 +236,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +263,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:52 GMT +======= + - Wed, 13 Nov 2019 10:55:30 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -255,26 +317,62 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:07.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5C75769DBAC2FA2CA743898B096B8DD4AB004F6C9F47F5B60D87F79B1503AAFD","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:01.3166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2671B3A8C1699B86F9651387864CA32E177BBCA30C0BD93CAF538D0794055E27","kind":"functionapp","inboundIpAddress":"40.112.243.8","possibleInboundIpAddresses":"40.112.243.8","outboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145","possibleOutboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:55:39.54","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CF696388076CA5813D99A910270AB429569CD67F0A3610AB8534B5D9C9BE74A1","kind":"functionapp","inboundIpAddress":"40.112.243.0","possibleInboundIpAddresses":"40.112.243.0","outboundIpAddresses":"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30","possibleOutboundIpAddresses":"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30,40.112.164.63,40.83.181.150,40.112.248.128","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-123","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3546' +======= +<<<<<<< HEAD + - '3633' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:57:41 GMT etag: +<<<<<<< HEAD - '"1D5BCBD870B4040"' +======= + - '"1D599EAA9724695"' +======= + - '3593' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:15 GMT + etag: + - '"1D59A10E3574800"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -317,15 +415,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3008aec-0000-0700-0000-5e060ddd0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"d9c28224-21c0-44fe-95d5-d198dc41b978","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"3ccae148-25a2-4aa2-beac-477fd99471e5","ConnectionString":"InstrumentationKey=3ccae148-25a2-4aa2-beac-477fd99471e5","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:57:49.6797074+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900c35f-0000-0700-0000-5dcba1320000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"04a2b0df-9163-4e6a-b88a-04f14440fa87","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"a371e533-27a6-4554-afcf-9f9d36e49f26","ConnectionString":"InstrumentationKey=a371e533-27a6-4554-afcf-9f9d36e49f26","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:41.7143889+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00baad-0000-0700-0000-5dcbe1520000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e79d36b6-9458-4218-9500-3002b1bc6004","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"61798b5e-7261-492e-82a5-b53bf5e28c8c","ConnectionString":"InstrumentationKey=61798b5e-7261-492e-82a5-b53bf5e28c8c","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T10:56:18.6243186+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +452,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:50 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:46 GMT +======= + - Wed, 13 Nov 2019 10:56:21 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +478,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1199' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -376,12 +504,22 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +532,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:52 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:47 GMT +======= + - Wed, 13 Nov 2019 10:56:21 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +571,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "3ccae148-25a2-4aa2-beac-477fd99471e5"}}''' +======= +<<<<<<< HEAD + "a371e533-27a6-4554-afcf-9f9d36e49f26"}}''' +======= + "61798b5e-7261-492e-82a5-b53bf5e28c8c"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -442,16 +596,34 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"3ccae148-25a2-4aa2-beac-477fd99471e5"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"a371e533-27a6-4554-afcf-9f9d36e49f26"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"61798b5e-7261-492e-82a5-b53bf5e28c8c"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +632,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:53 GMT etag: - '"1D5BCBDA1E751B0"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:50 GMT + etag: + - '"1D599EAC52B2375"' +======= + - Wed, 13 Nov 2019 10:56:24 GMT + etag: + - '"1D59A10FD359880"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -500,27 +684,53 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3241' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:54 GMT +======= + - Wed, 13 Nov 2019 06:22:50 GMT +======= + - '3043' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:26 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,13 +765,9 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + true, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -572,35 +778,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1498' + - '1215' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3226' content-type: - application/json date: - Fri, 27 Dec 2019 13:57:57 GMT etag: +<<<<<<< HEAD - '"1D5BCBDA1E751B0"' +======= + - '"1D599EAC52B2375"' +======= + - '3028' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:56:29 GMT + etag: + - '"1D59A10FD359880"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -618,7 +856,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1193' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml index 8b168ccd783..84d08e0b7fd 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml @@ -13,8 +13,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +115,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:44:57 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:53 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -141,15 +159,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:44:35.9730496Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:44:35.9730496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:44:35.8949256Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.2424398Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.2424398Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:32.1955678Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6417160Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6417160Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:25.5636449Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +194,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:44:58 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:53 GMT +======= + - Thu, 14 Nov 2019 01:38:46 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -192,8 +236,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +263,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:44:58 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:21:54 GMT +======= + - Thu, 14 Nov 2019 01:38:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -255,26 +317,62 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:45:07.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"53886C5AAA16C07E0AEDADC9F72DDE1576804B73E7BD616689D0ECFDE575EE18","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:01.79","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6C0EF41767CD4D84CC089CE99081E756AADA3B6B3471DD21F59EF5502F7C16EF","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:10.503","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6F1879B3EB0C1DEC13B22F519B240349DC208CE769D8CAB6AE0ADE4B95FD9DFC","kind":"functionapp","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3544' +======= +<<<<<<< HEAD + - '3546' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 14:45:43 GMT etag: +<<<<<<< HEAD - '"1D5BCC43BED0A60"' +======= + - '"1D599EAA99F8B20"' +======= + - '3535' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:47 GMT + etag: + - '"1D59A8C50821920"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -317,15 +415,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b400d6b0-0000-0700-0000-5e06191d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b39fe36b-9b63-4c7c-bdef-8eee84e8625d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"52af6706-1d63-4f67-8093-5bda91f7b5ff","ConnectionString":"InstrumentationKey=52af6706-1d63-4f67-8093-5bda91f7b5ff","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T14:45:49.5769569+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900d45f-0000-0700-0000-5dcba1330000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"a80655d5-e99f-4fa8-b68b-7270081488a5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"29aa5884-38ae-4307-b730-75e758b03e07","ConnectionString":"InstrumentationKey=29aa5884-38ae-4307-b730-75e758b03e07","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:42.887832+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"080116bf-0000-0700-0000-5dccb0660000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"a0ec2d96-1cc3-460a-91a7-5be86fa1b466","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"de9d4080-dc24-434a-a31b-f485976a54e5","ConnectionString":"InstrumentationKey=de9d4080-dc24-434a-a31b-f485976a54e5","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:50.696667+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +452,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:45:51 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:47 GMT +======= + - Thu, 14 Nov 2019 01:39:53 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +478,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1176' +======= +<<<<<<< HEAD + - '1197' +======= + - '1198' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -376,12 +508,22 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +536,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:45:52 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:48 GMT +======= + - Thu, 14 Nov 2019 01:39:54 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +575,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "52af6706-1d63-4f67-8093-5bda91f7b5ff"}}''' +======= +<<<<<<< HEAD + "29aa5884-38ae-4307-b730-75e758b03e07"}}''' +======= + "de9d4080-dc24-434a-a31b-f485976a54e5"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -442,16 +600,34 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"52af6706-1d63-4f67-8093-5bda91f7b5ff"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"29aa5884-38ae-4307-b730-75e758b03e07"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"de9d4080-dc24-434a-a31b-f485976a54e5"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +636,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:45:54 GMT etag: - '"1D5BCC4571C9300"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:22:51 GMT + etag: + - '"1D599EAC621D280"' +======= + - Thu, 14 Nov 2019 01:39:58 GMT + etag: + - '"1D59A8C6B3FA610"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +668,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1181' +======= +<<<<<<< HEAD + - '1197' +======= + - '1192' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -500,27 +696,53 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3241' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:45:55 GMT +======= + - Wed, 13 Nov 2019 06:22:52 GMT +======= + - '3043' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:59 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml index 2e5bd8ff9d8..ccec5341b5a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml @@ -13,8 +13,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -105,7 +115,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:32 GMT +======= + - Thu, 14 Nov 2019 01:38:46 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -141,15 +159,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:06.7505219Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:06.7505219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:06.7036615Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= +<<<<<<< HEAD + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:23:11.1533114Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:23:11.1533114Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:23:11.0751482Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6417252Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6417252Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.5636089Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +194,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:32 GMT +======= + - Thu, 14 Nov 2019 01:38:46 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -192,8 +236,18 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +263,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:23:33 GMT +======= + - Thu, 14 Nov 2019 01:38:46 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -255,26 +317,62 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:39.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D65E97F1CF8E31BC2367AC0C61676494447E45CAA36B8ED96DF1FBC37CC1B38B","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:23:40.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BEC680F663CCAFC8B1BFF07F50605B27962686D137F83BAC88B9E9B6D6733D8","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:09.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"384B9434DA2EF7ECA28D819751C33125E16AD2A2676B88E6185D3957ADE6774E","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3589' +======= +<<<<<<< HEAD + - '3642' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:58:14 GMT etag: +<<<<<<< HEAD - '"1D5BCBD9A88E000"' +======= + - '"1D599EAE46BD48B"' +======= + - '3603' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:47 GMT + etag: + - '"1D59A8C4FDBC700"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +390,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '497' +======= + - '498' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -317,15 +419,33 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30031ee-0000-0700-0000-5e060dfa0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"18a34198-ff44-4e38-ba1b-384271538a7d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c7c02324-6c09-4410-b8f2-ff804e34bde9","ConnectionString":"InstrumentationKey=c7c02324-6c09-4410-b8f2-ff804e34bde9","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:58:18.1052474+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900cd63-0000-0700-0000-5dcba1940000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"d910a84a-b320-47e6-ad9f-a7b8c5e74f2c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"a5e4555a-31e1-48f7-b724-8cd83ed31d86","ConnectionString":"InstrumentationKey=a5e4555a-31e1-48f7-b724-8cd83ed31d86","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:24:19.9697128+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"08011bbf-0000-0700-0000-5dccb0660000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"befcf8ee-ddae-49f5-9464-79e86c9bab33","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d009761b-ff64-4325-8ade-aead82b6fb85","ConnectionString":"InstrumentationKey=d009761b-ff64-4325-8ade-aead82b6fb85","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:50.9302344+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +456,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:19 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:24:23 GMT +======= + - Thu, 14 Nov 2019 01:39:54 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -376,12 +504,22 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +532,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:20 GMT +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:24:24 GMT +======= + - Thu, 14 Nov 2019 01:39:54 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +571,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "c7c02324-6c09-4410-b8f2-ff804e34bde9"}}''' +======= +<<<<<<< HEAD + "a5e4555a-31e1-48f7-b724-8cd83ed31d86"}}''' +======= + "d009761b-ff64-4325-8ade-aead82b6fb85"}}''' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -442,16 +596,34 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c7c02324-6c09-4410-b8f2-ff804e34bde9"}}' +======= +<<<<<<< HEAD + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"a5e4555a-31e1-48f7-b724-8cd83ed31d86"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d009761b-ff64-4325-8ade-aead82b6fb85"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +632,21 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:23 GMT etag: - '"1D5BCBDB375978B"' +======= +<<<<<<< HEAD + - Wed, 13 Nov 2019 06:24:27 GMT + etag: + - '"1D599EAFF8DA18B"' +======= + - Thu, 14 Nov 2019 01:39:57 GMT + etag: + - '"1D59A8C6B1E2155"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +664,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD + - '1196' +======= +<<<<<<< HEAD + - '1199' +======= - '1196' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -500,27 +692,63 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:22.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D65E97F1CF8E31BC2367AC0C61676494447E45CAA36B8ED96DF1FBC37CC1B38B","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:24:26.6166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BEC680F663CCAFC8B1BFF07F50605B27962686D137F83BAC88B9E9B6D6733D8","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:56.0533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"384B9434DA2EF7ECA28D819751C33125E16AD2A2676B88E6185D3957ADE6774E","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3588' +======= +<<<<<<< HEAD + - '3641' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:58:25 GMT etag: +<<<<<<< HEAD - '"1D5BCBDB375978B"' +======= + - '"1D599EAFF8DA18B"' +======= + - '3607' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:58 GMT + etag: + - '"1D59A8C6B1E2155"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -562,27 +790,63 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage","name":"cli-funcapp-nwr000003/stage","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:30.4766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__20e2","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"414C25AB03F24EF1CF689DD59C4D54FED7168DA43F0F1B3BA9C1C9CD894D3C50","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:24:35.3333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__fc5e","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D16C1B59562A7ED094AF1844E5F1426575757CEBC28B61F547129F029DB2F6F3","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:04.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__b575","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6D1CD1F5A29B04254DC9862BDE3C629557D10354D6007E8CFE8D23A0FB68FD6C","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3663' +======= +<<<<<<< HEAD + - '3716' +>>>>>>> Re-record test for app service content-type: - application/json date: - Fri, 27 Dec 2019 13:59:03 GMT etag: +<<<<<<< HEAD - '"1D5BCBDB375978B"' +======= + - '"1D599EAFF8DA18B"' +======= + - '3682' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:38 GMT + etag: + - '"1D59A8C6B1E2155"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -620,8 +884,14 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= +<<<<<<< HEAD + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -676,27 +946,56 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --slot User-Agent: +<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +======= +<<<<<<< HEAD + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3284' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:07 GMT +======= + - Wed, 13 Nov 2019 06:25:10 GMT +======= + - '3086' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:38 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -718,6 +1017,7 @@ interactions: status: code: 200 message: OK +<<<<<<< HEAD - request: body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", @@ -802,4 +1102,6 @@ interactions: status: code: 200 message: OK +======= +>>>>>>> Re-record test for app service version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml index 7b5b472747a..a52d24fc86a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 14:00:25 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,6 +158,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -150,15 +167,33 @@ interactions: response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:05.1823347Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:05.1823347Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:05.1042105Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:03:49.1024072Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:03:49.1024072Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:03:49.0242716Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:00:25 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +228,11 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +248,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:25 GMT +======= + - Wed, 13 Nov 2019 11:04:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +268,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1193' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,6 +303,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -264,10 +312,21 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:36.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:33.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3799' content-type: - application/json @@ -275,6 +334,15 @@ interactions: - Fri, 27 Dec 2019 14:01:13 GMT etag: - '"1D5BCBE03F20B20"' +======= + - '3772' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:07 GMT + etag: + - '"1D59A1221BCAE40"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +360,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '499' +======= + - '498' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -318,14 +390,22 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3000cf9-0000-0700-0000-5e060eaf0000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"121ab747-20e2-4689-bb8e-542a1ea7fa52","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"44cad93c-826f-4fcb-81f3-62600968f624","ConnectionString":"InstrumentationKey=44cad93c-826f-4fcb-81f3-62600968f624","Name":"functionappconsumption000003","CreationDate":"2019-12-27T14:01:19.8678157+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00efc7-0000-0700-0000-5dcbe3680000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"45c69c7d-6296-4471-8c30-fe10e7dbae4e","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5a24030b-2c82-4325-8331-6ccc40f57d10","ConnectionString":"InstrumentationKey=5a24030b-2c82-4325-8331-6ccc40f57d10","Name":"functionappconsumption000003","CreationDate":"2019-11-13T11:05:12.6393064+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +416,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:45 GMT +======= + - Wed, 13 Nov 2019 11:05:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +438,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1179' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -377,11 +465,19 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +490,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:46 GMT +======= + - Wed, 13 Nov 2019 11:05:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +525,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappconsumption000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "44cad93c-826f-4fcb-81f3-62600968f624"}}''' +======= + "5a24030b-2c82-4325-8331-6ccc40f57d10"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -443,6 +547,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -452,6 +557,17 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"44cad93c-826f-4fcb-81f3-62600968f624"}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"5a24030b-2c82-4325-8331-6ccc40f57d10"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +576,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT etag: - '"1D5BCBE2E348660"' +======= + - Wed, 13 Nov 2019 11:05:19 GMT + etag: + - '"1D59A123C1307EB"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +602,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1189' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -501,24 +627,40 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3833' content-type: - application/json date: - Fri, 27 Dec 2019 14:01:51 GMT +======= + - '3816' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:20 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,19 +697,28 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3793' content-type: - application/json @@ -575,6 +726,15 @@ interactions: - Fri, 27 Dec 2019 14:01:52 GMT etag: - '"1D5BCBE2E348660"' +======= + - '3776' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:21 GMT + etag: + - '"1D59A123C1307EB"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -615,16 +775,21 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -645,11 +819,15 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:52 GMT +======= + - Wed, 13 Nov 2019 11:05:22 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -663,7 +841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' x-powered-by: - ASP.NET status: @@ -684,19 +862,28 @@ interactions: - -g -n --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3793' content-type: - application/json @@ -704,6 +891,15 @@ interactions: - Fri, 27 Dec 2019 14:01:53 GMT etag: - '"1D5BCBE2E348660"' +======= + - '3776' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:23 GMT + etag: + - '"1D59A123C1307EB"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -751,19 +947,28 @@ interactions: - -g -n --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:55.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:25.8766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3794' content-type: - application/json @@ -771,6 +976,15 @@ interactions: - Fri, 27 Dec 2019 14:01:58 GMT etag: - '"1D5BCBE2E348660"' +======= + - '3777' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:29 GMT + etag: + - '"1D59A123C1307EB"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -788,7 +1002,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '497' +======= + - '498' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -811,11 +1029,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 response: body: string: '' @@ -825,9 +1047,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:04 GMT etag: - '"1D5BCBE32A0BA20"' +======= + - Wed, 13 Nov 2019 11:05:36 GMT + etag: + - '"1D59A1240748D4B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -841,7 +1069,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14998' +======= + - '14996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml index e88147a619b..3d83c9e6700 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 13:59:15 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:33 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,6 +158,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -150,15 +167,33 @@ interactions: response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:55.5180606Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:55.5180606Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:55.4399493Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:13.2084843Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:13.2084843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:13.1459951Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 13:59:17 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:34 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +228,11 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +248,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:17 GMT +======= + - Wed, 13 Nov 2019 11:06:34 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +268,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1189' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -255,6 +302,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -263,10 +311,21 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:25.5466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"76943A5F73F977F3D7BCAF2B398A4F95A2C1FEE9D1C946EDD7B2F07C8A791115","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:41.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C886C49CB1D65A2A0FDDD0A4A0A286BC8E7179291B8A36DF8D8A3E66EC5B37BE","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3816' content-type: - application/json @@ -274,6 +333,15 @@ interactions: - Fri, 27 Dec 2019 13:59:42 GMT etag: - '"1D5BCBDD98AF0E0"' +======= + - '3811' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:59 GMT + etag: + - '"1D59A126E0974E0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -291,7 +359,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '499' +======= + - '498' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -317,14 +389,22 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300f0f2-0000-0700-0000-5e060e550000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"e97001a0-eb94-455a-8925-22d1fcd14494","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"119f8a66-3f7e-4180-8b5f-adc157e5426b","ConnectionString":"InstrumentationKey=119f8a66-3f7e-4180-8b5f-adc157e5426b","Name":"functionapplinuxconsumption000003","CreationDate":"2019-12-27T13:59:49.4589712+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc000acd-0000-0700-0000-5dcbe3d60000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"1ff16a83-bc85-468e-8aee-d6f0e1dcc376","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5d8afb20-087f-442d-b4dc-d59a04c7133a","ConnectionString":"InstrumentationKey=5d8afb20-087f-442d-b4dc-d59a04c7133a","Name":"functionapplinuxconsumption000003","CreationDate":"2019-11-13T11:07:02.9519574+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -335,7 +415,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:51 GMT +======= + - Wed, 13 Nov 2019 11:07:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -353,7 +437,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1190' +======= + - '1187' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -376,11 +464,19 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -393,7 +489,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:52 GMT +======= + - Wed, 13 Nov 2019 11:07:06 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -421,7 +521,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "119f8a66-3f7e-4180-8b5f-adc157e5426b"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "5d8afb20-087f-442d-b4dc-d59a04c7133a"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -439,6 +543,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -448,6 +553,17 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"119f8a66-3f7e-4180-8b5f-adc157e5426b"}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"5d8afb20-087f-442d-b4dc-d59a04c7133a"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -456,9 +572,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:53 GMT etag: - '"1D5BCBDE9B294D5"' +======= + - Wed, 13 Nov 2019 11:07:07 GMT + etag: + - '"1D59A127D49AC0B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -476,7 +598,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1188' +======= + - '1184' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -499,15 +625,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"119f8a66-3f7e-4180-8b5f-adc157e5426b"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"5d8afb20-087f-442d-b4dc-d59a04c7133a"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -516,7 +650,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:54 GMT +======= + - Wed, 13 Nov 2019 11:07:09 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -534,7 +672,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11997' +======= + - '11992' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -555,11 +697,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","location":"West @@ -572,7 +718,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:55 GMT +======= + - Wed, 13 Nov 2019 11:07:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -611,11 +761,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2018-02-01 response: body: string: '' @@ -625,9 +779,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:02 GMT etag: - '"1D5BCBDE9B294D5"' +======= + - Wed, 13 Nov 2019 11:07:26 GMT + etag: + - '"1D59A127D49AC0B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -641,7 +801,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14998' +======= + - '14996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml index 8fa5f1052f8..8b9568977e4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 13:59:25 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:30 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,14 +158,22 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:04.3628763Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:04.3628763Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:04.2847491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' +======= + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:09.4889697Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:09.4889697Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:09.4108312Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +182,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:26 GMT +======= + - Wed, 13 Nov 2019 11:06:31 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +221,11 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +241,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:26 GMT +======= + - Wed, 13 Nov 2019 11:06:32 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +261,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1192' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,18 +296,27 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:36.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5848DA9B79BECC7EBBC646104018E1812016A48F76073D1BC8002F99E91BDC4D","kind":"functionapp","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-127.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:42.4866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D15C91D534DF7AA401F65D61315163E803FB46591F04C2EAF77C125C1C22281E","kind":"functionapp","inboundIpAddress":"40.112.243.3","possibleInboundIpAddresses":"40.112.243.3","outboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230","possibleOutboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230,40.83.164.193,104.42.51.234,104.42.49.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-127","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3783' content-type: - application/json @@ -275,6 +324,15 @@ interactions: - Fri, 27 Dec 2019 14:00:12 GMT etag: - '"1D5BCBDDFF54B95"' +======= + - '3797' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:07:15 GMT + etag: + - '"1D59A126E8CAEA0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -318,14 +376,22 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30037f4-0000-0700-0000-5e060e700000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"8f0d79f1-9de7-454f-887b-23b66c77f447","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"773e3dd9-e20d-4cb8-881d-646c98fcbbf2","ConnectionString":"InstrumentationKey=773e3dd9-e20d-4cb8-881d-646c98fcbbf2","Name":"functionappconsumption000003","CreationDate":"2019-12-27T14:00:16.7056429+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d7cd-0000-0700-0000-5dcbe3e90000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"74d047ff-f46e-46d9-b86d-3f70123eacad","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f12f08a5-8ee4-4bab-bf02-68ac34b92bbe","ConnectionString":"InstrumentationKey=f12f08a5-8ee4-4bab-bf02-68ac34b92bbe","Name":"functionappconsumption000003","CreationDate":"2019-11-13T11:07:21.0378602+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +402,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:18 GMT +======= + - Wed, 13 Nov 2019 11:07:23 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +424,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' +======= + - '1179' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -377,11 +451,15 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +472,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:19 GMT +======= + - Wed, 13 Nov 2019 11:07:25 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -425,7 +507,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappconsumption000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "773e3dd9-e20d-4cb8-881d-646c98fcbbf2"}}''' +======= + "f12f08a5-8ee4-4bab-bf02-68ac34b92bbe"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -443,15 +529,23 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"773e3dd9-e20d-4cb8-881d-646c98fcbbf2"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"f12f08a5-8ee4-4bab-bf02-68ac34b92bbe"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +554,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:21 GMT etag: - '"1D5BCBDF9E77235"' +======= + - Wed, 13 Nov 2019 11:07:27 GMT + etag: + - '"1D59A1288455BB5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -501,19 +601,28 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:20.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5848DA9B79BECC7EBBC646104018E1812016A48F76073D1BC8002F99E91BDC4D","kind":"functionapp","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-127.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:26.3633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D15C91D534DF7AA401F65D61315163E803FB46591F04C2EAF77C125C1C22281E","kind":"functionapp","inboundIpAddress":"40.112.243.3","possibleInboundIpAddresses":"40.112.243.3","outboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230","possibleOutboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230,40.83.164.193,104.42.51.234,104.42.49.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-127","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3787' content-type: - application/json @@ -521,6 +630,15 @@ interactions: - Fri, 27 Dec 2019 14:00:23 GMT etag: - '"1D5BCBDF9E77235"' +======= + - '3796' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:07:30 GMT + etag: + - '"1D59A1288455BB5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -561,16 +679,21 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -591,11 +723,15 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:23 GMT +======= + - Wed, 13 Nov 2019 11:07:30 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -609,7 +745,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11994' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml index f27a7c61aee..16b82a84e32 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:34 GMT +======= + - Wed, 13 Nov 2019 11:02:44 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,7 +72,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +92,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT +======= + - Wed, 13 Nov 2019 11:02:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +114,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1192' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -126,7 +146,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +159,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT +======= + - Wed, 13 Nov 2019 11:02:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -169,7 +197,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +209,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","name":"slot-traffic-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23100,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23100","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":21887,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21887","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +224,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:44 GMT +======= + - Wed, 13 Nov 2019 11:02:54 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +246,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1184' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -233,7 +278,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -242,7 +291,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:45 GMT +======= + - Wed, 13 Nov 2019 11:02:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -275,14 +328,22 @@ interactions: - --name -g --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:14.4978521Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:02:24.5062508Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -291,7 +352,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:48 GMT +======= + - Wed, 13 Nov 2019 11:02:57 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -307,7 +372,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1187' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -326,7 +395,11 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -334,8 +407,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","name":"slot-traffic-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23100,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23100","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":21887,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21887","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -344,7 +422,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:48 GMT +======= + - Wed, 13 Nov 2019 11:02:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -381,14 +463,22 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:14.4978521Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:02:24.5062508Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -397,7 +487,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:49 GMT +======= + - Wed, 13 Nov 2019 11:03:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -432,7 +526,11 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -448,7 +546,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:49 GMT +======= + - Wed, 13 Nov 2019 11:03:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -464,7 +566,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1193' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -493,19 +599,28 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004","name":"slot-traffic-web000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:55.46","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"14DA58C5CDF11E6381D336E23DAF2E2595BE6C6E28B91E77A9E80049F34EEDE1","kind":"functionapp","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:05.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0E4463A697DC0CE5110F34B99679EC404AD6015E98778ED3363D5EB1E947C9CF","kind":"functionapp","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3542' content-type: - application/json @@ -513,6 +628,15 @@ interactions: - Fri, 27 Dec 2019 13:59:12 GMT etag: - '"1D5BCBDC77D8FF5"' +======= + - '3547' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:21 GMT + etag: + - '"1D59A11ECFA9E2B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -530,7 +654,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '496' +======= + - '493' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -563,7 +691,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300c0f0-0000-0700-0000-5e060e350000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"1fd97f62-4f17-4aa6-93b0-f9e6b6e36ea4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6b39def4-5356-4a5d-8d5d-79fdc9853d3a","ConnectionString":"InstrumentationKey=6b39def4-5356-4a5d-8d5d-79fdc9853d3a","Name":"slot-traffic-web000004","CreationDate":"2019-12-27T13:59:17.7009989+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d3c2-0000-0700-0000-5dcbe2fe0000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"24551cc3-d25e-4a92-b0a9-f255449e4a05","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ad36671f-938b-427f-bea2-9336ea0a5b99","ConnectionString":"InstrumentationKey=ad36671f-938b-427f-bea2-9336ea0a5b99","Name":"slot-traffic-web000004","CreationDate":"2019-11-13T11:03:26.4689897+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -574,7 +706,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:19 GMT +======= + - Wed, 13 Nov 2019 11:03:28 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -592,7 +728,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1193' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -615,11 +755,15 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -632,7 +776,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:21 GMT +======= + - Wed, 13 Nov 2019 11:03:29 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -650,7 +798,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11998' +======= + - '11996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -660,7 +812,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "6b39def4-5356-4a5d-8d5d-79fdc9853d3a"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ad36671f-938b-427f-bea2-9336ea0a5b99"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -678,15 +834,23 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"6b39def4-5356-4a5d-8d5d-79fdc9853d3a"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ad36671f-938b-427f-bea2-9336ea0a5b99"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -695,9 +859,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:23 GMT etag: - '"1D5BCBDD7FFBD00"' +======= + - Wed, 13 Nov 2019 11:03:30 GMT + etag: + - '"1D59A11FBEAFAA0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -715,7 +885,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1191' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -736,26 +910,32 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web","name":"slot-traffic-web000004","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3239' + - '3041' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:25 GMT +======= + - Wed, 13 Nov 2019 11:03:32 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -791,12 +971,8 @@ interactions: []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com", "https://msdn.com", "https://msn.com"], "supportCredentials": false}, "localMySqlEnabled": false, - "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -807,35 +983,49 @@ interactions: Connection: - keep-alive Content-Length: - - '1536' + - '1253' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004","name":"slot-traffic-web000004","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3262' + - '3064' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:28 GMT etag: - '"1D5BCBDD7FFBD00"' +======= + - Wed, 13 Nov 2019 11:03:34 GMT + etag: + - '"1D59A11FBEAFAA0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -853,7 +1043,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -874,26 +1068,38 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web","name":"slot-traffic-web000004","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3280' + - '3082' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:29 GMT +======= + - Wed, 13 Nov 2019 11:03:36 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml index 1f511354bbb..e397e82e459 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:46:02Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:41Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:46:10 GMT +======= + - Wed, 13 Nov 2019 11:03:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,7 +72,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +92,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:46:10 GMT +======= + - Wed, 13 Nov 2019 11:03:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -126,7 +142,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:46:02Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:41Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +155,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:46:11 GMT +======= + - Wed, 13 Nov 2019 11:03:49 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -169,7 +193,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +205,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +220,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:46:26 GMT +======= + - Wed, 13 Nov 2019 11:03:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +242,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1183' +======= + - '1188' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -226,7 +267,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +279,13 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +======= + US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +294,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:46:28 GMT +======= + - Wed, 13 Nov 2019 11:03:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,7 +339,11 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -301,11 +359,19 @@ interactions: content-type: - text/plain; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:46:32 GMT expires: - '-1' location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/eafdadae-3f62-45c8-9069-3b927d0869eb?monitor=true&api-version=2019-06-01 +======= + - Wed, 13 Nov 2019 11:04:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/29f967dc-4317-4de2-9a8e-bd5b2b9ba011?monitor=true&api-version=2019-04-01 +>>>>>>> Re-record test for app service pragma: - no-cache server: @@ -315,7 +381,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1180' +======= + - '1187' +>>>>>>> Re-record test for app service status: code: 202 message: Accepted @@ -334,21 +404,38 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/eafdadae-3f62-45c8-9069-3b927d0869eb?monitor=true&api-version=2019-06-01 response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:32.7785433Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/29f967dc-4317-4de2-9a8e-bd5b2b9ba011?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:00.1649787Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1188' content-type: - application/json date: - Fri, 27 Dec 2019 14:46:50 GMT +======= + - '1156' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -385,7 +472,11 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -401,11 +492,19 @@ interactions: content-type: - text/plain; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:46:56 GMT expires: - '-1' location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ab2bffde-a4c2-4f35-b125-7101154e55c0?monitor=true&api-version=2019-06-01 +======= + - Wed, 13 Nov 2019 11:04:33 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fc68fc4e-b51f-4c7d-86cf-9bd359399517?monitor=true&api-version=2019-04-01 +>>>>>>> Re-record test for app service pragma: - no-cache server: @@ -415,7 +514,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1185' +======= + - '1189' +>>>>>>> Re-record test for app service status: code: 202 message: Accepted @@ -434,12 +537,21 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ab2bffde-a4c2-4f35-b125-7101154e55c0?monitor=true&api-version=2019-06-01 response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:56.1536413Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fc68fc4e-b51f-4c7d-86cf-9bd359399517?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:33.5089907Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -448,7 +560,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:14 GMT +======= + - Wed, 13 Nov 2019 11:04:51 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -481,7 +597,11 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -489,8 +609,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -499,7 +624,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:15 GMT +======= + - Wed, 13 Nov 2019 11:04:53 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -536,14 +665,22 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:32.7785433Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:00.1649787Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -552,7 +689,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:16 GMT +======= + - Wed, 13 Nov 2019 11:04:54 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -587,7 +728,11 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -603,7 +748,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:16 GMT +======= + - Wed, 13 Nov 2019 11:04:54 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -619,7 +768,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1194' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -648,19 +801,28 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003","name":"func-e2e000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:47:22.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AB799B4C490667BB75660E308123AB86E3D9FA4CA55CD99080EA7A52BAF97DE0","kind":"functionapp","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:57.413","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"448CCFDEB10D8C4F5B71DCCDC9EFA22156168F1C1F2CA7696D9AA6BCDEBBFE41","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3562' content-type: - application/json @@ -668,6 +830,15 @@ interactions: - Fri, 27 Dec 2019 14:47:40 GMT etag: - '"1D5BCC48C81E7F5"' +======= + - '3558' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:14 GMT + etag: + - '"1D59A122FCAB400"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -685,7 +856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '496' x-powered-by: - ASP.NET status: @@ -718,7 +889,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4007eb9-0000-0700-0000-5e0619920000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"be29cc31-d0ee-4c8c-8824-ab0081d96ae0","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0560a784-28d3-45bd-b704-acaaeab2f779","ConnectionString":"InstrumentationKey=0560a784-28d3-45bd-b704-acaaeab2f779","Name":"func-e2e000003","CreationDate":"2019-12-27T14:47:46.7719572+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc002fc8-0000-0700-0000-5dcbe36e0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"5c04767f-d6fa-490e-9b5f-95478c601250","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"808ca97b-b82e-4e6c-a71e-e8e8270fca53","ConnectionString":"InstrumentationKey=808ca97b-b82e-4e6c-a71e-e8e8270fca53","Name":"func-e2e000003","CreationDate":"2019-11-13T11:05:18.5808514+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -729,7 +904,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:48 GMT +======= + - Wed, 13 Nov 2019 11:05:20 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -747,7 +926,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1188' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -770,11 +953,15 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -787,7 +974,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:49 GMT +======= + - Wed, 13 Nov 2019 11:05:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -805,7 +996,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11992' +======= + - '11997' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -815,7 +1010,11 @@ interactions: body: '{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "0560a784-28d3-45bd-b704-acaaeab2f779"}}' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "808ca97b-b82e-4e6c-a71e-e8e8270fca53"}}' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -833,15 +1032,23 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"0560a784-28d3-45bd-b704-acaaeab2f779"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"808ca97b-b82e-4e6c-a71e-e8e8270fca53"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -850,9 +1057,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:50 GMT etag: - '"1D5BCC49CB9D295"' +======= + - Wed, 13 Nov 2019 11:05:23 GMT + etag: + - '"1D59A123EE5BCF0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -870,7 +1083,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1182' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -891,7 +1108,11 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -899,8 +1120,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -909,7 +1135,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:52 GMT +======= + - Wed, 13 Nov 2019 11:05:23 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -946,14 +1176,22 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:56.1536413Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:33.5089907Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -962,7 +1200,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:54 GMT +======= + - Wed, 13 Nov 2019 11:05:25 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -997,7 +1239,11 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -1013,7 +1259,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:47:54 GMT +======= + - Wed, 13 Nov 2019 11:05:25 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1029,7 +1279,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1193' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1059,19 +1313,28 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004","name":"func-e2e000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:48:00.41","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BCF4D1F3FCE0F5784C42D79720CA823A08CAB3F1BB732D3242127915D99CE8E4","kind":"functionapp","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:28.687","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"36307B8D24C139F9183CE8366850022DA8FFE47F48E18561DD03D25E543B4461","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3557' content-type: - application/json @@ -1079,6 +1342,15 @@ interactions: - Fri, 27 Dec 2019 14:48:17 GMT etag: - '"1D5BCC4A2CDB5E0"' +======= + - '3558' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:46 GMT + etag: + - '"1D59A124276D2F0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1096,7 +1368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -1129,7 +1401,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b40090bc-0000-0700-0000-5e0619b80000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"8a69445b-2c14-456c-9803-b4a405dc5ad3","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f71bd035-02ae-4804-82bd-27e8d99ccb78","ConnectionString":"InstrumentationKey=f71bd035-02ae-4804-82bd-27e8d99ccb78","Name":"func-e2e000004","CreationDate":"2019-12-27T14:48:24.3526348+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc008fc9-0000-0700-0000-5dcbe38d0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"8edf45b5-8ea9-4761-87e8-b7f883a7c742","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7929435d-92d9-4fe4-8966-abbf519efd19","ConnectionString":"InstrumentationKey=7929435d-92d9-4fe4-8966-abbf519efd19","Name":"func-e2e000004","CreationDate":"2019-11-13T11:05:49.5146607+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -1140,7 +1416,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:48:26 GMT +======= + - Wed, 13 Nov 2019 11:05:52 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1158,7 +1438,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1179' +======= + - '1183' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1181,11 +1465,15 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1198,7 +1486,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:48:27 GMT +======= + - Wed, 13 Nov 2019 11:05:52 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1226,7 +1518,11 @@ interactions: body: '{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f71bd035-02ae-4804-82bd-27e8d99ccb78"}}' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "7929435d-92d9-4fe4-8966-abbf519efd19"}}' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -1244,15 +1540,23 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f71bd035-02ae-4804-82bd-27e8d99ccb78"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"7929435d-92d9-4fe4-8966-abbf519efd19"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1261,9 +1565,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:48:28 GMT etag: - '"1D5BCC4B3432BB5"' +======= + - Wed, 13 Nov 2019 11:05:54 GMT + etag: + - '"1D59A125189C590"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1281,7 +1591,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1177' +======= + - '1187' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1304,11 +1618,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2018-02-01 response: body: string: '' @@ -1318,9 +1636,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:48:34 GMT etag: - '"1D5BCC49CB9D295"' +======= + - Wed, 13 Nov 2019 11:05:58 GMT + etag: + - '"1D59A123EE5BCF0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1334,7 +1658,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14993' +======= + - '14996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml index ea1056e7980..e21375c30df 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:42:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:31 GMT + - Thu, 14 Nov 2019 01:43:03 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --sku --min-instances --max-burst User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -73,8 +73,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":26748,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-127_26748","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' + US","properties":{"serverFarmId":33972,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-115_33972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' headers: cache-control: - no-cache @@ -83,7 +83,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:40 GMT + - Thu, 14 Nov 2019 01:43:13 GMT expires: - '-1' pragma: @@ -101,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1193' x-powered-by: - ASP.NET status: @@ -122,7 +122,7 @@ interactions: - -g -n --min-instances --max-burst User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -130,8 +130,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":26748,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-127_26748","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' + US","properties":{"serverFarmId":33972,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-115_33972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' headers: cache-control: - no-cache @@ -140,7 +140,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:42 GMT + - Thu, 14 Nov 2019 01:43:14 GMT expires: - '-1' pragma: @@ -162,167 +162,4 @@ interactions: status: code: 200 message: OK -- request: - body: '{"kind": "elastic", "location": "Central US", "properties": {"perSiteScaling": - false, "maximumElasticWorkerCount": 11, "isSpot": false, "reserved": false, - "isXenon": false, "hyperV": false, "targetWorkerCount": 0, "targetWorkerSizeId": - 0}, "sku": {"name": "EP1", "tier": "ElasticPremium", "size": "EP1", "family": - "EP", "capacity": 5}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp plan update - Connection: - - keep-alive - Content-Length: - - '335' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --min-instances --max-burst - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":26748,"name":"funcappplan000002","sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","capacity":5},"workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":5,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":5,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":11,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-127_26748","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","capacity":5}}' - headers: - cache-control: - - no-cache - content-length: - - '1595' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1161' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp plan show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":26748,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":5,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":5,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":11,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-127_26748","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":5}}' - headers: - cache-control: - - no-cache - content-length: - - '1545' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/funcappplan000002?api-version=2018-11-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - date: - - Mon, 21 Oct 2019 10:50:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14996' - status: - code: 204 - message: No Content version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml index 7feb714985f..67c08c0d8a6 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:07Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:13Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:39 GMT +======= + - Wed, 13 Nov 2019 11:07:43 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -65,7 +73,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -81,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:41 GMT +======= + - Wed, 13 Nov 2019 11:07:44 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -99,7 +115,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -127,7 +147,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:07Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:13Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -136,7 +160,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:41 GMT +======= + - Wed, 13 Nov 2019 11:07:44 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -171,7 +199,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -179,8 +211,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD Central US","properties":{"serverFarmId":43470,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43470","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + Central US","properties":{"serverFarmId":39582,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39582","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -189,7 +226,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:01 GMT +======= + - Wed, 13 Nov 2019 11:07:57 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -207,7 +248,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1184' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -228,7 +273,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -236,8 +285,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD Central US","properties":{"serverFarmId":43470,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43470","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + Central US","properties":{"serverFarmId":39582,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39582","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -246,7 +300,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:02 GMT +======= + - Wed, 13 Nov 2019 11:08:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -283,23 +341,39 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:19.7947321Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:19.7947321Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:19.7322763Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:22.2853891Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:22.2853891Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:22.2228860Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:01:03 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:01 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -334,7 +408,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -350,7 +428,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:04 GMT +======= + - Wed, 13 Nov 2019 11:08:01 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -366,7 +448,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1187' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -376,7 +462,11 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141"}, +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3"}, +>>>>>>> Re-record test for app service {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -399,19 +489,28 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:12.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0471F2A51505A265B74B89D22161576FE40436B6B149F0D8C3A509EFB9DFD458","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:06.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2E789E15DF0E3E9D59C997A6A2A3B92F0BA114529FCE15646571DF24BC078045","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3738' content-type: - application/json @@ -419,6 +518,15 @@ interactions: - Fri, 27 Dec 2019 14:01:30 GMT etag: - '"1D5BCBE192FC46B"' +======= + - '3733' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:22 GMT + etag: + - '"1D59A12A0503EC0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -436,7 +544,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '495' +======= + - '499' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -469,7 +581,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"000081ce-0000-0500-0000-5e060ec50000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"5ba55387-26cc-4230-998e-3292f8b46861","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66a7091e-76d2-4220-b8c3-53b8f3328178","ConnectionString":"InstrumentationKey=66a7091e-76d2-4220-b8c3-53b8f3328178","Name":"functionapp-linux000004","CreationDate":"2019-12-27T14:01:40.9478543+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"7a00a87e-0000-0500-0000-5dcbe42c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"a9ba33e0-3c87-4fab-ae35-247fbf16730e","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66fc13d6-906a-4ba4-a50a-09be042a2a72","ConnectionString":"InstrumentationKey=66fc13d6-906a-4ba4-a50a-09be042a2a72","Name":"functionapp-linux000004","CreationDate":"2019-11-13T11:08:28.6706268+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -480,7 +596,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:44 GMT +======= + - Wed, 13 Nov 2019 11:08:32 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -498,7 +618,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1188' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -521,15 +645,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -538,7 +670,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:46 GMT +======= + - Wed, 13 Nov 2019 11:08:33 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -564,10 +700,17 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "66a7091e-76d2-4220-b8c3-53b8f3328178"}}''' +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3", + "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "66fc13d6-906a-4ba4-a50a-09be042a2a72"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -585,15 +728,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"66a7091e-76d2-4220-b8c3-53b8f3328178"}}' +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"66fc13d6-906a-4ba4-a50a-09be042a2a72"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -602,9 +753,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT etag: - '"1D5BCBE2E85E7B5"' +======= + - Wed, 13 Nov 2019 11:08:36 GMT + etag: + - '"1D59A12B2187355"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -622,7 +779,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1182' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -643,15 +804,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.7633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0471F2A51505A265B74B89D22161576FE40436B6B149F0D8C3A509EFB9DFD458","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:36.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2E789E15DF0E3E9D59C997A6A2A3B92F0BA114529FCE15646571DF24BC078045","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -660,7 +829,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT +======= + - Wed, 13 Nov 2019 11:08:37 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -697,26 +870,42 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3311' content-type: - application/json date: - Fri, 27 Dec 2019 14:01:52 GMT +======= + - '3113' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:39 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -755,11 +944,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-02-01 response: body: string: '' @@ -769,9 +962,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:03 GMT etag: - '"1D5BCBE2E85E7B5"' +======= + - Wed, 13 Nov 2019 11:08:47 GMT + etag: + - '"1D59A12B2187355"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -785,7 +984,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14990' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml index 2183bed0ecb..53c6d52a4bb 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:02:12Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:38Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:43 GMT +======= + - Wed, 13 Nov 2019 11:08:06 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,7 +72,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -72,8 +84,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD Central US","properties":{"serverFarmId":43471,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43471","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + Central US","properties":{"serverFarmId":39583,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39583","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -82,7 +99,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:00 GMT +======= + - Wed, 13 Nov 2019 11:08:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -100,7 +121,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1188' +======= + - '1177' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -121,7 +146,11 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -129,8 +158,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD Central US","properties":{"serverFarmId":43471,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43471","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + Central US","properties":{"serverFarmId":39583,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39583","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -139,7 +173,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:01 GMT +======= + - Wed, 13 Nov 2019 11:08:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -176,23 +214,39 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:22.7732654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:22.7732654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:22.7263869Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:46.0058738Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:46.0058738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:45.9277971Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:03:03 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -227,7 +281,11 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -243,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:03 GMT +======= + - Wed, 13 Nov 2019 11:08:22 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -259,7 +321,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1189' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -269,7 +335,11 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8"}, +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035"}, +>>>>>>> Re-record test for app service {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -292,15 +362,23 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:11.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ED2BBF7217DB1A3BCC830926101F0F672DD1F9B0BDE1B8F5A44FA8C804620DA5","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:27.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F47F73F2B75B91EED28574E1FB1F44BCF00E28E9B736B76CA6FF50DCAEAAA61","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -309,9 +387,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:28 GMT etag: - '"1D5BCBE5FFE3100"' +======= + - Wed, 13 Nov 2019 11:08:44 GMT + etag: + - '"1D59A12ACC14355"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -329,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '497' x-powered-by: - ASP.NET status: @@ -362,7 +446,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"00008dce-0000-0500-0000-5e060f390000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"43083ef5-a758-411a-9a36-80ea07c48969","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"36dd1360-8d1a-4390-b0d3-b1e3b056c4f3","ConnectionString":"InstrumentationKey=36dd1360-8d1a-4390-b0d3-b1e3b056c4f3","Name":"functionapp-linux000004","CreationDate":"2019-12-27T14:03:36.9660319+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"7a00ec7e-0000-0500-0000-5dcbe4410000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"d6beb8e4-40d4-4ed5-9a76-96904ba748ff","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"18a28719-24fc-4cd5-971f-284dd18a8292","ConnectionString":"InstrumentationKey=18a28719-24fc-4cd5-971f-284dd18a8292","Name":"functionapp-linux000004","CreationDate":"2019-11-13T11:08:49.6925887+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -373,7 +461,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:39 GMT +======= + - Wed, 13 Nov 2019 11:08:53 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -414,15 +506,23 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -431,7 +531,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:40 GMT +======= + - Wed, 13 Nov 2019 11:08:55 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -449,7 +553,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11994' +======= + - '11995' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -457,10 +565,17 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "36dd1360-8d1a-4390-b0d3-b1e3b056c4f3"}}''' +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035", + "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "18a28719-24fc-4cd5-971f-284dd18a8292"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -478,15 +593,23 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"36dd1360-8d1a-4390-b0d3-b1e3b056c4f3"}}' +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"18a28719-24fc-4cd5-971f-284dd18a8292"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -495,9 +618,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:41 GMT etag: - '"1D5BCBE71DFD400"' +======= + - Wed, 13 Nov 2019 11:08:56 GMT + etag: + - '"1D59A12BE1A9680"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -515,7 +644,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1188' +======= + - '1183' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -536,15 +669,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:41.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ED2BBF7217DB1A3BCC830926101F0F672DD1F9B0BDE1B8F5A44FA8C804620DA5","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:56.68","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F47F73F2B75B91EED28574E1FB1F44BCF00E28E9B736B76CA6FF50DCAEAAA61","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -553,7 +694,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:43 GMT +======= + - Wed, 13 Nov 2019 11:08:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -590,26 +735,42 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3312' content-type: - application/json date: - Fri, 27 Dec 2019 14:03:44 GMT +======= + - '3114' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:09:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml index 80d48452800..78c037c46e1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 14:04:20 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,14 +158,22 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:59.4704904Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:59.4704904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:03:59.4080180Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:55.3184654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:55.3184654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:55.2403787Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +182,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:21 GMT +======= + - Wed, 13 Nov 2019 11:08:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +221,11 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +241,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:21 GMT +======= + - Wed, 13 Nov 2019 11:08:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +261,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1192' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -255,14 +295,22 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:04:30.5233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D10C701CFEC388A8004E1CB06351B8EB3BE878A355C65970379FD9A7803F719","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:26.2866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AA6AC62E05F9376837EC3FA91A7EA8573685661533AF1DB006F3FA7C5C4C73F4","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -271,9 +319,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:47 GMT etag: - '"1D5BCBE8F71346B"' +======= + - Wed, 13 Nov 2019 11:08:42 GMT + etag: + - '"1D59A12ACE7EB2B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -291,7 +345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -317,14 +371,22 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4005608-0000-0700-0000-5e060f860000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"a93e8bf8-5606-48d8-8f27-f5408daaa827","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ddc17a57-4b9a-475e-826f-0e4ecb8d562d","ConnectionString":"InstrumentationKey=ddc17a57-4b9a-475e-826f-0e4ecb8d562d","Name":"functionapp-linux000003","CreationDate":"2019-12-27T14:04:54.0194606+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00a1d1-0000-0700-0000-5dcbe4400000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"7c2adb82-fe31-4ae1-8bd1-a9f0583b4085","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"81e8601e-62b5-4928-a8a2-661ae6f2ff8b","ConnectionString":"InstrumentationKey=81e8601e-62b5-4928-a8a2-661ae6f2ff8b","Name":"functionapp-linux000003","CreationDate":"2019-11-13T11:08:48.7374985+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -335,7 +397,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:57 GMT +======= + - Wed, 13 Nov 2019 11:08:51 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -353,7 +419,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1174' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -376,11 +446,15 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -393,7 +467,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:59 GMT +======= + - Wed, 13 Nov 2019 11:08:53 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -421,7 +499,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "python", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ddc17a57-4b9a-475e-826f-0e4ecb8d562d"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "81e8601e-62b5-4928-a8a2-661ae6f2ff8b"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -439,15 +521,23 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ddc17a57-4b9a-475e-826f-0e4ecb8d562d"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"81e8601e-62b5-4928-a8a2-661ae6f2ff8b"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -456,9 +546,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:05:01 GMT etag: - '"1D5BCBEA1662B55"' +======= + - Wed, 13 Nov 2019 11:08:56 GMT + etag: + - '"1D59A12BDAFC6C0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -476,7 +572,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1182' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -497,26 +597,42 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/web","name":"functionapp-linux000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3248' content-type: - application/json date: - Fri, 27 Dec 2019 14:05:02 GMT +======= + - '3050' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml index 34e1b4b6198..0dadd896366 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 13:57:29 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:00:41 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,6 +158,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -150,15 +167,33 @@ interactions: response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:07.7979797Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:07.7979797Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:07.7505833Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:00:20.5234919Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:00:20.5234919Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:00:20.4453262Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 13:57:29 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:00:41 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +228,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +248,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT +======= + - Wed, 13 Nov 2019 11:00:41 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +268,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1194' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,6 +303,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -264,10 +312,21 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:36.893","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9DBF919051B98C0AD59100135888C83CB3CA56F58881EB910F49D2DABD37FBBC","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:51.933","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7F6806AD42284EB3A73DE2E36F808F31BBD02623909DEE1663C187A9C26A7D3F","kind":"functionapp","inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3711' content-type: - application/json @@ -275,6 +334,15 @@ interactions: - Fri, 27 Dec 2019 13:58:14 GMT etag: - '"1D5BCBD98D1E130"' +======= + - '3735' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:01:25 GMT + etag: + - '"1D59A119DA42700"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +360,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '499' +======= + - '497' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -318,14 +390,22 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3003aee-0000-0700-0000-5e060dfa0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"71b5d0ac-7681-46c8-a5d5-e57c63ec1176","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"94835eee-d90d-4f07-b1be-daf502bb21b6","ConnectionString":"InstrumentationKey=94835eee-d90d-4f07-b1be-daf502bb21b6","Name":"functionappwithreservedinstance000003","CreationDate":"2019-12-27T13:58:18.6399347+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d7bc-0000-0700-0000-5dcbe28a0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"16d522d5-db6a-4545-95ed-837a298e21e6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6fa02aa7-9e9c-45ba-b401-d5b9ed171147","ConnectionString":"InstrumentationKey=6fa02aa7-9e9c-45ba-b401-d5b9ed171147","Name":"functionappwithreservedinstance000003","CreationDate":"2019-11-13T11:01:30.0115931+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -336,7 +416,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:21 GMT +======= + - Wed, 13 Nov 2019 11:01:32 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +438,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1194' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -377,11 +465,19 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings/list?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings/list?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +490,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:22 GMT +======= + - Wed, 13 Nov 2019 11:01:33 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -412,7 +512,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11997' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -425,7 +529,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwithreservedinstance000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "94835eee-d90d-4f07-b1be-daf502bb21b6"}}''' +======= + "6fa02aa7-9e9c-45ba-b401-d5b9ed171147"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -443,6 +551,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -452,6 +561,17 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"94835eee-d90d-4f07-b1be-daf502bb21b6"}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"6fa02aa7-9e9c-45ba-b401-d5b9ed171147"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +580,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT etag: - '"1D5BCBDB4B06E80"' +======= + - Wed, 13 Nov 2019 11:01:36 GMT + etag: + - '"1D59A11B70976F0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +606,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1192' +======= + - '1185' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -501,26 +631,42 @@ interactions: - -g -n --prewarmed-instance-count User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3289' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:28 GMT +======= + - '3091' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:01:38 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,6 +701,7 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], +<<<<<<< HEAD "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": @@ -562,6 +709,11 @@ interactions: "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 4}}' +======= + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 4}}' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -572,28 +724,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1515' + - '1232' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --prewarmed-instance-count User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":4,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":4,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3275' content-type: - application/json @@ -601,6 +762,15 @@ interactions: - Fri, 27 Dec 2019 13:58:34 GMT etag: - '"1D5BCBDB4B06E80"' +======= + - '3077' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:01:43 GMT + etag: + - '"1D59A11B70976F0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -618,7 +788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1184' x-powered-by: - ASP.NET status: @@ -641,11 +811,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2018-02-01 response: body: string: '' @@ -655,9 +829,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:40 GMT etag: - '"1D5BCBDB95CB880"' +======= + - Wed, 13 Nov 2019 11:01:50 GMT + etag: + - '"1D59A11BB454BE0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -671,7 +851,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14998' +======= + - '14995' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml index 7337f6887ad..536194d19ce 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:19Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:44 GMT +======= + - Wed, 13 Nov 2019 11:08:08 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,7 +72,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -72,8 +84,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":27685,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27685","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":29492,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29492","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -82,7 +99,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:05 GMT +======= + - Wed, 13 Nov 2019 11:08:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -100,7 +121,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1186' +======= + - '1183' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -121,7 +146,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -129,8 +158,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":27685,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27685","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":29492,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29492","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -139,7 +173,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:06 GMT +======= + - Wed, 13 Nov 2019 11:08:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -176,23 +214,39 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:24.2802887Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:24.2802887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:24.2178242Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.5215121Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.5215121Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:48.4433934Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:01:07 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:19 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -227,7 +281,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -243,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:08 GMT +======= + - Wed, 13 Nov 2019 11:08:19 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -259,7 +321,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1193' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -289,19 +355,28 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:15.213","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2DD0CB8FB1FD65615809901040B32307B7E3910BD9ED8CC9E3C3735C3D71D0F5","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:24.243","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"01178ABA9290C36C445DCCEF74CFF1B81ACB9E1187C2183BCB12DD00699E2BE6","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3535' content-type: - application/json @@ -309,6 +384,15 @@ interactions: - Fri, 27 Dec 2019 14:01:33 GMT etag: - '"1D5BCBE1ABB7A80"' +======= + - '3551' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:40 GMT + etag: + - '"1D59A12AB5CC450"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -326,7 +410,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '498' +======= + - '497' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -359,7 +447,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300fefa-0000-0700-0000-5e060ec30000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"1d2cfd84-cc7b-4c9a-9760-9c7f59aabfc4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"101bd586-af29-4dd2-b7e9-545c07428fae","ConnectionString":"InstrumentationKey=101bd586-af29-4dd2-b7e9-545c07428fae","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:01:39.7114528+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0059d1-0000-0700-0000-5dcbe43c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"1a98364b-46ad-4319-a5a4-d6f879ab0ec4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"3482293a-f71e-46da-836f-6cf0add8a388","ConnectionString":"InstrumentationKey=3482293a-f71e-46da-836f-6cf0add8a388","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:08:44.7009863+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -370,7 +462,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:40 GMT +======= + - Wed, 13 Nov 2019 11:08:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -388,7 +484,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' +======= + - '1183' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -411,11 +511,15 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -428,7 +532,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:41 GMT +======= + - Wed, 13 Nov 2019 11:08:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -446,7 +554,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11995' +======= + - '11996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -456,7 +568,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "101bd586-af29-4dd2-b7e9-545c07428fae"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "3482293a-f71e-46da-836f-6cf0add8a388"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -474,15 +590,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -491,9 +615,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:43 GMT etag: - '"1D5BCBE2B160850"' +======= + - Wed, 13 Nov 2019 11:08:50 GMT + etag: + - '"1D59A12BA61FB50"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -511,7 +641,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1189' +======= + - '1174' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -532,19 +666,28 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:42.997","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2DD0CB8FB1FD65615809901040B32307B7E3910BD9ED8CC9E3C3735C3D71D0F5","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:50.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"01178ABA9290C36C445DCCEF74CFF1B81ACB9E1187C2183BCB12DD00699E2BE6","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3533' content-type: - application/json @@ -552,6 +695,15 @@ interactions: - Fri, 27 Dec 2019 14:01:44 GMT etag: - '"1D5BCBE2B160850"' +======= + - '3549' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:51 GMT + etag: + - '"1D59A12BA61FB50"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -594,19 +746,28 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:50.517","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9288","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7D1F603240936AB54F65F112639041BD22089455BCB1E254A186DD0F0933B20B","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:55.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c8e2","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"733D9329B61051A165A5D72D32A4C7DD13576A6DCFA34B16C8A2CC7C2CC15ED1","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3779' content-type: - application/json @@ -614,6 +775,15 @@ interactions: - Fri, 27 Dec 2019 14:02:07 GMT etag: - '"1D5BCBE2B160850"' +======= + - '3794' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:09:12 GMT + etag: + - '"1D59A12BA61FB50"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -631,7 +801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -654,15 +824,23 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -671,7 +849,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:08 GMT +======= + - Wed, 13 Nov 2019 11:09:14 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -699,7 +881,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "101bd586-af29-4dd2-b7e9-545c07428fae", +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "3482293a-f71e-46da-836f-6cf0add8a388", +>>>>>>> Re-record test for app service "FOO": "BAR"}}''' headers: Accept: @@ -718,15 +904,23 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae","FOO":"BAR"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388","FOO":"BAR"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -735,9 +929,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:09 GMT etag: - '"1D5BCBE3B059F50"' +======= + - Wed, 13 Nov 2019 11:09:15 GMT + etag: + - '"1D59A12C959EBE0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -776,11 +976,15 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -793,7 +997,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:09 GMT +======= + - Wed, 13 Nov 2019 11:09:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -834,11 +1042,15 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -851,7 +1063,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:11 GMT +======= + - Wed, 13 Nov 2019 11:09:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -892,15 +1108,23 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae","FOO":"BAR"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388","FOO":"BAR"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -909,7 +1133,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:11 GMT +======= + - Wed, 13 Nov 2019 11:09:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -948,11 +1176,15 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -965,7 +1197,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:13 GMT +======= + - Wed, 13 Nov 2019 11:09:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1004,11 +1240,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '' @@ -1018,9 +1258,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:20 GMT etag: - '"1D5BCBE2B160850"' +======= + - Wed, 13 Nov 2019 11:09:24 GMT + etag: + - '"1D59A12BA61FB50"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml index b4c3de01cd9..fdd7eda4e34 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:55 GMT +======= + - Wed, 13 Nov 2019 11:08:08 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,7 +72,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -72,8 +84,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":30701,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-091_30701","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":24659,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24659","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -82,7 +99,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:04 GMT +======= + - Wed, 13 Nov 2019 11:08:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -100,7 +121,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1185' +======= + - '1182' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -121,7 +146,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -129,8 +158,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":30701,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-091_30701","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":24659,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24659","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -139,7 +173,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:05 GMT +======= + - Wed, 13 Nov 2019 11:08:19 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -176,23 +214,39 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:32.8915294Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:32.8915294Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:32.8134329Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.8496639Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.8496639Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:48.8027664Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:03:07 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:19 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -227,7 +281,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -243,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:07 GMT +======= + - Wed, 13 Nov 2019 11:08:20 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -259,7 +321,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' +======= + - '1185' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -289,19 +355,28 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:13.7233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F804F4910DE78FD31C10AE0EE88A8D172F6B5DD9D84A3057E895D47AF5B78A23","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:23.88","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"89C280AA0333DD4E9C395B6E3C27C9D09481BE4C550FADA0EDAF6385812722FD","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3625' content-type: - application/json @@ -309,6 +384,15 @@ interactions: - Fri, 27 Dec 2019 14:03:30 GMT etag: - '"1D5BCBE615D24C0"' +======= + - '3546' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:39 GMT + etag: + - '"1D59A12AAF15850"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -326,7 +410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '495' x-powered-by: - ASP.NET status: @@ -359,7 +443,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4000e04-0000-0700-0000-5e060f390000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"0dacc424-6d07-416c-a883-e69a7cbf3feb","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ff9ca649-91ec-4857-b3d1-ee7dd1560565","ConnectionString":"InstrumentationKey=ff9ca649-91ec-4857-b3d1-ee7dd1560565","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:03:37.0090435+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0051d1-0000-0700-0000-5dcbe43a0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"a213eb67-7dbd-45ca-bb2e-0433c9452fe5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"baeb9808-086e-4756-b671-71b66c3def1a","ConnectionString":"InstrumentationKey=baeb9808-086e-4756-b671-71b66c3def1a","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:08:42.8765239+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -370,7 +458,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:39 GMT +======= + - Wed, 13 Nov 2019 11:08:45 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -388,7 +480,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1188' +======= + - '1175' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -411,11 +507,15 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -428,7 +528,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:39 GMT +======= + - Wed, 13 Nov 2019 11:08:46 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -446,7 +550,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11993' +======= + - '11996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -456,7 +564,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ff9ca649-91ec-4857-b3d1-ee7dd1560565"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "baeb9808-086e-4756-b671-71b66c3def1a"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -474,15 +586,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ff9ca649-91ec-4857-b3d1-ee7dd1560565"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"baeb9808-086e-4756-b671-71b66c3def1a"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -491,9 +611,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:40 GMT etag: - '"1D5BCBE7172FB6B"' +======= + - Wed, 13 Nov 2019 11:08:48 GMT + etag: + - '"1D59A12B8C56250"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -511,7 +637,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1183' +======= + - '1181' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -532,19 +662,28 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:41.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F804F4910DE78FD31C10AE0EE88A8D172F6B5DD9D84A3057E895D47AF5B78A23","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:47.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"89C280AA0333DD4E9C395B6E3C27C9D09481BE4C550FADA0EDAF6385812722FD","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3623' content-type: - application/json @@ -552,6 +691,15 @@ interactions: - Fri, 27 Dec 2019 14:03:42 GMT etag: - '"1D5BCBE7172FB6B"' +======= + - '3545' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:49 GMT + etag: + - '"1D59A12B8C56250"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -594,19 +742,28 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:47.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c619","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86874C82C143F85CA4729AD5911A19F20F5264D1B5051E9486DE2A02D8D67E07","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:54.297","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9abb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F17F05499F62575B06D6980316D355137D14F9098BA461802067EA49DDA86A9B","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3864' content-type: - application/json @@ -614,6 +771,15 @@ interactions: - Fri, 27 Dec 2019 14:04:05 GMT etag: - '"1D5BCBE7172FB6B"' +======= + - '3791' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:09:10 GMT + etag: + - '"1D59A12B8C56250"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -652,19 +818,28 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:48.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c619","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86874C82C143F85CA4729AD5911A19F20F5264D1B5051E9486DE2A02D8D67E07","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:55.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9abb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F17F05499F62575B06D6980316D355137D14F9098BA461802067EA49DDA86A9B","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3914' content-type: - application/json @@ -672,6 +847,15 @@ interactions: - Fri, 27 Dec 2019 14:04:06 GMT etag: - '"1D5BCBE75C12CE0"' +======= + - '3841' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:09:11 GMT + etag: + - '"1D59A12BD34A350"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -710,11 +894,15 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 response: body: string: '' @@ -724,9 +912,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:12 GMT etag: - '"1D5BCBE75C12CE0"' +======= + - Wed, 13 Nov 2019 11:09:15 GMT + etag: + - '"1D59A12BD34A350"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -740,7 +934,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14995' +======= + - '14996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -761,11 +959,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2018-02-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -777,7 +979,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:14 GMT +======= + - Wed, 13 Nov 2019 11:09:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -816,11 +1022,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '' @@ -830,9 +1040,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:22 GMT etag: - '"1D5BCBE7172FB6B"' +======= + - Wed, 13 Nov 2019 11:09:20 GMT + etag: + - '"1D59A12B8C56250"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -846,7 +1062,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14994' +======= + - '14988' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml index 4aa2fed6424..d7c34746a0c 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:04:28Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:56 GMT +======= + - Wed, 13 Nov 2019 11:09:19 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,7 +72,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -72,8 +84,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":42715,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42715","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":33288,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33288","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -82,7 +99,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:05:04 GMT +======= + - Wed, 13 Nov 2019 11:09:27 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -100,7 +121,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1184' +======= + - '1181' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -121,7 +146,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -129,8 +158,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":42715,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42715","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":33288,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33288","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -139,7 +173,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:05:06 GMT +======= + - Wed, 13 Nov 2019 11:09:27 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -176,23 +214,39 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:04:36.0366625Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:04:36.0366625Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:04:35.9584971Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:08:59.8845842Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:08:59.8845842Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:08:59.8220537Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:05:08 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:09:28 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -227,7 +281,11 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -243,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:05:08 GMT +======= + - Wed, 13 Nov 2019 11:09:28 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -259,7 +321,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1183' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -289,19 +355,28 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:14.893","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:32.273","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3563' content-type: - application/json @@ -309,6 +384,15 @@ interactions: - Fri, 27 Dec 2019 14:05:32 GMT etag: - '"1D5BCBEA9AF1710"' +======= + - '3543' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:09:48 GMT + etag: + - '"1D59A12D3B4D4B0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -359,7 +443,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b400750a-0000-0700-0000-5e060fb20000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"8c2c319d-09fd-424a-bd2a-376171b2fde8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f1d83ede-6062-4133-af7c-f6fef0f6de76","ConnectionString":"InstrumentationKey=f1d83ede-6062-4133-af7c-f6fef0f6de76","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:05:38.1685104+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0085d4-0000-0700-0000-5dcbe47f0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"fd8a8ad3-84f3-417e-addb-ccbbf8e7e795","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"366eaca0-a43a-47c9-9a1d-0951401254f0","ConnectionString":"InstrumentationKey=366eaca0-a43a-47c9-9a1d-0951401254f0","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:09:51.0301605+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -370,7 +458,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:05:40 GMT +======= + - Wed, 13 Nov 2019 11:09:52 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -388,7 +480,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1184' +======= + - '1176' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -411,11 +507,15 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -428,7 +528,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:05:41 GMT +======= + - Wed, 13 Nov 2019 11:09:53 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -446,7 +550,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11996' +======= + - '11992' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -456,7 +564,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f1d83ede-6062-4133-af7c-f6fef0f6de76"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "366eaca0-a43a-47c9-9a1d-0951401254f0"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -474,15 +586,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -491,9 +611,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:05:43 GMT etag: - '"1D5BCBEBA401E30"' +======= + - Wed, 13 Nov 2019 11:09:55 GMT + etag: + - '"1D59A12E10297B0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -532,19 +658,28 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:43.187","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:55.243","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3561' content-type: - application/json @@ -552,6 +687,15 @@ interactions: - Fri, 27 Dec 2019 14:05:43 GMT etag: - '"1D5BCBEBA401E30"' +======= + - '3541' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:09:55 GMT + etag: + - '"1D59A12E10297B0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -594,19 +738,28 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:51.917","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__ce6a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ADC59A6832CF094A276B4C7793233749B2935987B356A71111F461A092167378","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:00.717","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c588","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D33B2809E779679458C723599A13E91FFFEB18C31088C576F94A05D18CE57F6F","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3807' content-type: - application/json @@ -614,6 +767,15 @@ interactions: - Fri, 27 Dec 2019 14:06:09 GMT etag: - '"1D5BCBEBA401E30"' +======= + - '3787' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:10:16 GMT + etag: + - '"1D59A12E10297B0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -654,15 +816,23 @@ interactions: - -g -n --slot --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -671,7 +841,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:06:11 GMT +======= + - Wed, 13 Nov 2019 11:10:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -699,7 +873,11 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f1d83ede-6062-4133-af7c-f6fef0f6de76", +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "366eaca0-a43a-47c9-9a1d-0951401254f0", +>>>>>>> Re-record test for app service "FOO": "BAR"}}''' headers: Accept: @@ -718,15 +896,23 @@ interactions: - -g -n --slot --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76","FOO":"BAR"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0","FOO":"BAR"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -735,9 +921,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:06:12 GMT etag: - '"1D5BCBECBB45960"' +======= + - Wed, 13 Nov 2019 11:10:20 GMT + etag: + - '"1D59A12EFF50A00"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -755,7 +947,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1190' +======= + - '1180' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -780,11 +976,15 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/slotsswap?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/slotsswap?api-version=2018-02-01 response: body: string: '' @@ -794,6 +994,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:06:15 GMT etag: - '"1D5BCBECD9F3970"' @@ -801,6 +1002,15 @@ interactions: - '-1' location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + - Wed, 13 Nov 2019 11:10:23 GMT + etag: + - '"1D59A12F1D7ACB0"' + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 +>>>>>>> Re-record test for app service pragma: - no-cache server: @@ -927,9 +1137,15 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '' @@ -939,11 +1155,19 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:07:05 GMT expires: - '-1' location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + - Wed, 13 Nov 2019 11:10:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 +>>>>>>> Re-record test for app service pragma: - no-cache server: @@ -974,9 +1198,15 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '' @@ -986,11 +1216,19 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:07:21 GMT expires: - '-1' location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + - Wed, 13 Nov 2019 11:10:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 +>>>>>>> Re-record test for app service pragma: - no-cache server: @@ -1021,9 +1259,15 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '' @@ -1033,11 +1277,19 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:07:38 GMT expires: - '-1' location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + - Wed, 13 Nov 2019 11:11:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 +>>>>>>> Re-record test for app service pragma: - no-cache server: @@ -1068,6 +1320,7 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 @@ -1075,10 +1328,20 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:07:41.523","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-27T14:07:41.561Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:25.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:11:25.936Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3917' content-type: - application/json @@ -1086,6 +1349,15 @@ interactions: - Fri, 27 Dec 2019 14:07:55 GMT etag: - '"1D5BCBF00C8C230"' +======= + - '3896' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:11:27 GMT + etag: + - '"1D59A13170D4760"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1124,15 +1396,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76","FOO":"BAR"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0","FOO":"BAR"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1141,7 +1421,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:07:58 GMT +======= + - Wed, 13 Nov 2019 11:11:29 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1159,7 +1443,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11998' +======= + - '11989' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1180,11 +1468,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -1197,7 +1489,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:07:59 GMT +======= + - Wed, 13 Nov 2019 11:11:29 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1236,11 +1532,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 response: body: string: '' @@ -1250,9 +1550,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:08:06 GMT etag: - '"1D5BCBECDC8E180"' +======= + - Wed, 13 Nov 2019 11:11:36 GMT + etag: + - '"1D59A12F212B9E0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1266,7 +1572,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14999' +======= + - '14995' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml index 5952642c22c..aeaf63e1c1e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 13:59:16 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,6 +158,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -150,15 +167,33 @@ interactions: response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:56.4243289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:56.4243289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:56.3461863Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:47.6745244Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:47.6745244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:47.6120088Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 13:59:16 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:12 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +228,11 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +248,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:17 GMT +======= + - Wed, 13 Nov 2019 11:06:12 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +268,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1194' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -257,6 +304,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -265,10 +313,21 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:28.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B46FAF22F57BC30E39DC59729716577489465A9C7F5B0B2338144BE3EE594E47","kind":"functionapp","inboundIpAddress":"104.42.53.248","possibleInboundIpAddresses":"104.42.53.248","outboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90","possibleOutboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:19.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DF3121BB1DB92B04B03853EC84F717DF1390DBB8BA3A921F6B715552BE373291","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3800' content-type: - application/json @@ -276,6 +335,15 @@ interactions: - Fri, 27 Dec 2019 14:00:03 GMT etag: - '"1D5BCBDDB2050EB"' +======= + - '3852' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:54 GMT + etag: + - '"1D59A1261005C00"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -293,7 +361,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '498' +======= + - '496' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -319,14 +391,22 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300bef3-0000-0700-0000-5e060e670000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"5cbc1a4a-9bb1-4158-be91-d360a5c572e9","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"85a4195b-b67a-409f-b3f2-bb2702f6abf1","ConnectionString":"InstrumentationKey=85a4195b-b67a-409f-b3f2-bb2702f6abf1","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-27T14:00:07.1319328+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00cdcc-0000-0700-0000-5dcbe3d30000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"ee01c40d-9438-40d1-ac7a-29f924f8d490","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"399895af-2e86-44f5-9291-13895c0f8534","ConnectionString":"InstrumentationKey=399895af-2e86-44f5-9291-13895c0f8534","Name":"functionappwindowsruntime000003","CreationDate":"2019-11-13T11:06:59.2188761+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -337,7 +417,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:08 GMT +======= + - Wed, 13 Nov 2019 11:07:25 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -355,7 +439,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1188' +======= + - '1176' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -378,11 +466,19 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -395,7 +491,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:09 GMT +======= + - Wed, 13 Nov 2019 11:07:25 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -413,7 +513,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11996' +======= + - '11997' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -426,7 +530,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowsruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}''' +======= + "399895af-2e86-44f5-9291-13895c0f8534"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -444,6 +552,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -453,6 +562,17 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"399895af-2e86-44f5-9291-13895c0f8534"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -461,9 +581,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:12 GMT etag: - '"1D5BCBDF4574AE0"' +======= + - Wed, 13 Nov 2019 11:07:29 GMT + etag: + - '"1D59A12897DA7A0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -481,7 +607,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1188' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -504,15 +634,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"399895af-2e86-44f5-9291-13895c0f8534"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -521,7 +659,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:14 GMT +======= + - Wed, 13 Nov 2019 11:07:30 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -539,7 +681,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11996' +======= + - '11991' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -560,11 +706,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","location":"West @@ -577,7 +727,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:15 GMT +======= + - Wed, 13 Nov 2019 11:07:32 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml index e5d3404815a..d3e78c2f774 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 13:59:14 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:14 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,14 +158,22 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:52.5180554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:52.5180554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:52.4555651Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:53.3340360Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:53.3340360Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:53.2559473Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -158,7 +182,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:13 GMT +======= + - Wed, 13 Nov 2019 11:08:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +221,11 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +241,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:14 GMT +======= + - Wed, 13 Nov 2019 11:08:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +261,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1188' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -257,18 +297,27 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:23.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BE829D5350B4885923673ED0C07A6B93AB4A2B10A8F0460738D674A8D09CA84","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:25.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80F4AD36435109D0053CDB9BEB126291A608F7288F946EF3E7094A5294A263DA","kind":"functionapp","inboundIpAddress":"104.42.152.64","possibleInboundIpAddresses":"104.42.152.64","outboundIpAddresses":"104.42.152.64,40.118.228.30,40.118.235.170,40.118.239.187,40.118.232.194","possibleOutboundIpAddresses":"104.42.152.64,40.118.228.30,40.118.235.170,40.118.239.187,40.118.232.194,40.118.232.202,40.118.239.1,40.112.131.175","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3801' content-type: - application/json @@ -276,6 +325,15 @@ interactions: - Fri, 27 Dec 2019 13:59:59 GMT etag: - '"1D5BCBDD7FBAB55"' +======= + - '3807' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:08:59 GMT + etag: + - '"1D59A12ABC2F32B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -319,14 +377,22 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300b6f3-0000-0700-0000-5e060e660000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"4de72ad9-28ce-43c5-8757-a520e1c8d555","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"71d09d14-6cde-4aab-9e5c-a897b790be88","ConnectionString":"InstrumentationKey=71d09d14-6cde-4aab-9e5c-a897b790be88","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-27T14:00:06.7790797+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0067d2-0000-0700-0000-5dcbe44f0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"3514b387-6f5f-4322-9b63-9213968e8102","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c97231b0-fe86-4743-96ce-9ffecd462cdd","ConnectionString":"InstrumentationKey=c97231b0-fe86-4743-96ce-9ffecd462cdd","Name":"functionappwindowsruntime000003","CreationDate":"2019-11-13T11:09:03.6748503+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -337,7 +403,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:09 GMT +======= + - Wed, 13 Nov 2019 11:09:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -355,7 +425,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1180' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -378,11 +452,15 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -395,7 +473,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:09 GMT +======= + - Wed, 13 Nov 2019 11:09:06 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -413,7 +495,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11996' +======= + - '11997' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -426,7 +512,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~8", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowsruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "71d09d14-6cde-4aab-9e5c-a897b790be88"}}''' +======= + "c97231b0-fe86-4743-96ce-9ffecd462cdd"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -444,15 +534,23 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"71d09d14-6cde-4aab-9e5c-a897b790be88"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c97231b0-fe86-4743-96ce-9ffecd462cdd"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -461,9 +559,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:11 GMT etag: - '"1D5BCBDF430A30B"' +======= + - Wed, 13 Nov 2019 11:09:08 GMT + etag: + - '"1D59A12C4B54300"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -481,7 +585,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1188' +======= + - '1179' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -504,15 +612,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"71d09d14-6cde-4aab-9e5c-a897b790be88"}}' +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c97231b0-fe86-4743-96ce-9ffecd462cdd"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -521,7 +637,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:13 GMT +======= + - Wed, 13 Nov 2019 11:09:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -539,7 +659,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11997' +======= + - '11993' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -560,11 +684,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","location":"West @@ -577,7 +705,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:14 GMT +======= + - Wed, 13 Nov 2019 11:09:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -616,11 +748,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-02-01 response: body: string: '' @@ -630,9 +766,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:20 GMT etag: - '"1D5BCBDF430A30B"' +======= + - Wed, 13 Nov 2019 11:09:15 GMT + etag: + - '"1D59A12C4B54300"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -646,7 +788,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14997' +======= + - '14993' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml index 49d2359f228..3ba617a9be4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 14:00:01 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:20 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,6 +158,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -150,15 +167,33 @@ interactions: response: body: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:40.0191246Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:40.0191246Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:39.9409978Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:00.6511904Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:00.6511904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:00.5887008Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:00:01 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:05:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +228,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +248,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:02 GMT +======= + - Wed, 13 Nov 2019 11:05:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +268,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' +======= + - '1191' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,6 +303,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -264,10 +312,21 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:12.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AC4E499090EECF8D5DAE5AD4BB0A43E3AF39CF40A9AEF11BF29583E4CED65C62","kind":"functionapp","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:27.747","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7C8420B0028AB5A1317D3DE03F6511893744346704E7554845F6AC727440E535","kind":"functionapp","inboundIpAddress":"104.40.63.98","possibleInboundIpAddresses":"104.40.63.98","outboundIpAddresses":"104.40.57.101,104.40.82.23,104.40.81.188,104.40.85.254","possibleOutboundIpAddresses":"104.40.57.101,104.40.82.23,104.40.81.188,104.40.85.254","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3743' content-type: - application/json @@ -275,6 +334,15 @@ interactions: - Fri, 27 Dec 2019 14:00:47 GMT etag: - '"1D5BCBDF5983C55"' +======= + - '3727' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:02 GMT + etag: + - '"1D59A1241E54150"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +360,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '498' +======= + - '497' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -318,25 +390,41 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300a3f8-0000-0700-0000-5e060eac0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"25d797be-8a02-48ca-bf62-9bdb46175498","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d37c4f5d-e47c-42dc-af35-8e364703c763","ConnectionString":"InstrumentationKey=d37c4f5d-e47c-42dc-af35-8e364703c763","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-12-27T14:01:16.7224741+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0075ca-0000-0700-0000-5dcbe3a00000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"e464f7d1-e03a-4503-882b-270b061aca1b","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8a4394a4-c3a5-442c-bd8a-7b56bc8f650d","ConnectionString":"InstrumentationKey=8a4394a4-c3a5-442c-bd8a-7b56bc8f650d","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-11-13T11:06:08.538862+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD - '956' content-type: - application/json; charset=utf-8 date: - Fri, 27 Dec 2019 14:01:40 GMT +======= + - '955' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 11:06:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -354,7 +442,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1190' +======= + - '1187' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -377,11 +469,19 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings/list?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings/list?api-version=2018-02-01 +>>>>>>> Re-record test for app service response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +494,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:41 GMT +======= + - Wed, 13 Nov 2019 11:06:13 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -412,7 +516,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11997' +======= + - '11998' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -425,7 +533,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowswithoutruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "d37c4f5d-e47c-42dc-af35-8e364703c763"}}''' +======= + "8a4394a4-c3a5-442c-bd8a-7b56bc8f650d"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -443,6 +555,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -452,6 +565,17 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d37c4f5d-e47c-42dc-af35-8e364703c763"}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8a4394a4-c3a5-442c-bd8a-7b56bc8f650d"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +584,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:43 GMT etag: - '"1D5BCBE2AAB2B8B"' +======= + - Wed, 13 Nov 2019 11:06:15 GMT + etag: + - '"1D59A125DB8AB10"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +610,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1186' +======= + - '1189' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -503,11 +637,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2018-02-01 response: body: string: '' @@ -517,9 +655,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT etag: - '"1D5BCBE2AAB2B8B"' +======= + - Wed, 13 Nov 2019 11:06:20 GMT + etag: + - '"1D59A125DB8AB10"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -533,7 +677,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14996' +======= + - '14998' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml index 7cea29236ad..9753e3da4a1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 14:00:54 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,23 +158,39 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:34.5687079Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:34.5687079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:34.5218148Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:44.6745134Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:44.6745134Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:44.6119990Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:00:55 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +225,11 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +245,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:56 GMT +======= + - Wed, 13 Nov 2019 11:06:06 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +265,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1190' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -257,18 +301,27 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:17.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"31161615EE631F28ED8FEC49BF56BAB247AC57501091E9F64655937803DF8079","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:13.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"87E29F0ACF8FDF657C68A551AD807EDB9633C0E8D7B436B508DFF4774D563706","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3739' content-type: - application/json @@ -276,6 +329,15 @@ interactions: - Fri, 27 Dec 2019 14:01:54 GMT etag: - '"1D5BCBE1C48AA30"' +======= + - '3729' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:47 GMT + etag: + - '"1D59A125D429DB5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -293,7 +355,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '497' +======= + - '496' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -316,11 +382,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -333,7 +403,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:55 GMT +======= + - Wed, 13 Nov 2019 11:06:49 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -351,7 +425,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11995' +======= + - '11998' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -372,11 +450,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","location":"West @@ -389,7 +471,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:56 GMT +======= + - Wed, 13 Nov 2019 11:06:50 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -428,11 +514,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 response: body: string: '' @@ -442,9 +532,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:01 GMT etag: - '"1D5BCBE1C48AA30"' +======= + - Wed, 13 Nov 2019 11:06:55 GMT + etag: + - '"1D59A125D429DB5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -458,7 +554,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14998' +======= + - '14995' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml index d15afff63ac..72e98bdd42d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 14:02:32 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:36 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,23 +158,39 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:12.2107211Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:12.2107211Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:12.1482214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:16.2756058Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:16.2756058Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:16.2130945Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:02:33 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:37 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +225,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +245,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:02:34 GMT +======= + - Wed, 13 Nov 2019 11:06:37 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +265,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1194' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,18 +300,27 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:02:44.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E59A23A232C6FEB861D7F3E2F12FA890FF1230DDD57DD747AED42969686E6DF","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-111.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:45.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8E23F4A7F839A88ACE875CB6F66F6AC7B01BC6BE998EC757D1822F6909ADF3BE","kind":"functionapp","inboundIpAddress":"104.42.148.55","possibleInboundIpAddresses":"104.42.148.55","outboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103","possibleOutboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103,40.112.173.196,40.112.176.145,40.83.179.99","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-111","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3852' content-type: - application/json @@ -275,6 +328,15 @@ interactions: - Fri, 27 Dec 2019 14:03:17 GMT etag: - '"1D5BCBE4FCF6E20"' +======= + - '3801' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:07:20 GMT + etag: + - '"1D59A1270429C00"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -318,25 +380,41 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4005703-0000-0700-0000-5e060f2c0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"ac480024-2213-4ea5-8b8f-42634ba14ee7","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0e3ee542-d029-4b39-a68c-88a7cc617b36","ConnectionString":"InstrumentationKey=0e3ee542-d029-4b39-a68c-88a7cc617b36","Name":"functionappwithappinsights000003","CreationDate":"2019-12-27T14:03:24.4938661+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0003ce-0000-0700-0000-5dcbe3eb0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"61fd5ffd-3fe4-4719-90b0-6a254307e974","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b7fd7b31-2047-4da1-bd9a-883124c84fea","ConnectionString":"InstrumentationKey=b7fd7b31-2047-4da1-bd9a-883124c84fea","Name":"functionappwithappinsights000003","CreationDate":"2019-11-13T11:07:23.452952+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD - '956' content-type: - application/json; charset=utf-8 date: - Fri, 27 Dec 2019 14:03:26 GMT +======= + - '955' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 11:07:28 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -377,11 +455,15 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -394,7 +476,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:27 GMT +======= + - Wed, 13 Nov 2019 11:07:29 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -412,7 +498,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11995' +======= + - '11997' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -425,7 +515,11 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwithappinsights000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD "0e3ee542-d029-4b39-a68c-88a7cc617b36"}}''' +======= + "b7fd7b31-2047-4da1-bd9a-883124c84fea"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -443,15 +537,23 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0e3ee542-d029-4b39-a68c-88a7cc617b36"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b7fd7b31-2047-4da1-bd9a-883124c84fea"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -460,9 +562,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:30 GMT etag: - '"1D5BCBE6AB3BCF0"' +======= + - Wed, 13 Nov 2019 11:07:32 GMT + etag: + - '"1D59A128B6B05B5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -480,7 +588,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1187' +======= + - '1185' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -503,15 +615,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0e3ee542-d029-4b39-a68c-88a7cc617b36"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b7fd7b31-2047-4da1-bd9a-883124c84fea"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -520,7 +640,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:31 GMT +======= + - Wed, 13 Nov 2019 11:07:34 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -538,7 +662,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11994' +======= + - '11997' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -559,11 +687,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","location":"West @@ -576,7 +708,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:03:33 GMT +======= + - Wed, 13 Nov 2019 11:07:35 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml index 048231a0ab5..3f395b4f89b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml @@ -14,7 +14,11 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -33,7 +37,11 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> Re-record test for app service US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -101,11 +109,19 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD - '12604' content-type: - application/json date: - Fri, 27 Dec 2019 14:04:09 GMT +======= + - '12591' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:51 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -142,23 +158,39 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:47.6882816Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:47.6882816Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:03:47.6258050Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:32.0256761Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:32.0256761Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:31.9788001Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1200' content-type: - application/json date: - Fri, 27 Dec 2019 14:04:10 GMT +======= + - '1168' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:06:52 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -193,7 +225,11 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -209,7 +245,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:10 GMT +======= + - Wed, 13 Nov 2019 11:06:53 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,7 +265,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1190' +======= + - '1189' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,18 +300,27 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:04:26.3866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"91C897AE5EF101FEC95BD9DA8580CD1591453F60E88A50A6B010BB2B28733F40","kind":"functionapp","inboundIpAddress":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-151.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:04.2033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C782659BB3DD08B92BDE84B49CD4B825A6BE78FE8902D08DC64100DC932059D3","kind":"functionapp","inboundIpAddress":"13.89.172.2","possibleInboundIpAddresses":"13.89.172.2","outboundIpAddresses":"13.89.172.2,23.99.133.160,23.101.117.42,23.101.112.78,23.99.229.34","possibleOutboundIpAddresses":"13.89.172.2,23.99.133.160,23.101.117.42,23.101.112.78,23.99.229.34,168.61.189.180,168.61.214.234,23.99.231.53","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-151","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3777' content-type: - application/json @@ -275,6 +328,15 @@ interactions: - Fri, 27 Dec 2019 14:04:56 GMT etag: - '"1D5BCBE8CDE066B"' +======= + - '3808' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:07:34 GMT + etag: + - '"1D59A127B7A5040"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -292,7 +354,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '497' +======= + - '498' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -315,11 +381,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central @@ -332,7 +402,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:57 GMT +======= + - Wed, 13 Nov 2019 11:07:37 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -350,7 +424,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11998' +======= + - '11990' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -371,11 +449,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","location":"Central @@ -388,7 +470,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:04:59 GMT +======= + - Wed, 13 Nov 2019 11:07:38 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml index bc3a8935805..3e26bdc841a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:47:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:47:52 GMT + - Wed, 13 Nov 2019 11:00:55 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:54 GMT + - Wed, 13 Nov 2019 11:00:56 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:47:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:47:53 GMT + - Wed, 13 Nov 2019 11:00:57 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5508,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5508","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5694,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5694","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:09 GMT + - Wed, 13 Nov 2019 11:01:14 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1193' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5508,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5508","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5694,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5694","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:11 GMT + - Wed, 13 Nov 2019 11:01:15 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:12 GMT + - Wed, 13 Nov 2019 11:01:16 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' x-powered-by: - ASP.NET status: @@ -343,7 +343,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -351,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5508,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5508","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5694,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5694","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:12 GMT + - Wed, 13 Nov 2019 11:01:17 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}}],"nextLink":null,"id":null}' + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16743' + - '16883' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:13 GMT + - Wed, 13 Nov 2019 11:01:18 GMT expires: - '-1' pragma: @@ -453,7 +453,7 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "alwaysOn": true, "localMySqlEnabled": + "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: @@ -465,33 +465,33 @@ interactions: Connection: - keep-alive Content-Length: - - '513' + - '495' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:48:18.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:23.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3529' + - '3625' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:36 GMT + - Wed, 13 Nov 2019 11:01:41 GMT etag: - - '"1D587FD0CF29DC0"' + - '"1D59A11B056D5A0"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '497' x-powered-by: - ASP.NET status: @@ -534,26 +534,21 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2018-02-01 response: body: string: @@ -561,11 +556,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:48:37 GMT + - Wed, 13 Nov 2019 11:01:42 GMT expires: - '-1' pragma: @@ -600,26 +595,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3051' + - '2925' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:37 GMT + - Wed, 13 Nov 2019 11:01:43 GMT expires: - '-1' pragma: @@ -656,24 +649,24 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:48:19.1","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:24.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3566' + - '3663' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:09 GMT + - Wed, 13 Nov 2019 11:02:15 GMT expires: - '-1' pragma: @@ -710,26 +703,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:48:19.1","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:24.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3526' + - '3623' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:11 GMT + - Wed, 13 Nov 2019 11:02:16 GMT etag: - - '"1D587FD0CF29DC0"' + - '"1D59A11B056D5A0"' expires: - '-1' pragma: @@ -766,26 +759,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:48:19.1","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:24.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3526' + - '3623' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:12 GMT + - Wed, 13 Nov 2019 11:02:17 GMT etag: - - '"1D587FD0CF29DC0"' + - '"1D59A11B056D5A0"' expires: - '-1' pragma: @@ -826,26 +819,21 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2018-02-01 response: body: string: @@ -853,11 +841,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:49:12 GMT + - Wed, 13 Nov 2019 11:02:19 GMT expires: - '-1' pragma: @@ -871,7 +859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -892,26 +880,24 @@ interactions: - -g -n --startup-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3051' + - '2925' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:13 GMT + - Wed, 13 Nov 2019 11:02:20 GMT expires: - '-1' pragma: @@ -941,16 +927,12 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-linux000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": true, "appCommandLine": "process.json", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "alwaysOn": false, "appCommandLine": "process.json", "managedPipelineMode": + "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -961,35 +943,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1370' + - '1089' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --startup-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3049' + - '2923' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:14 GMT + - Wed, 13 Nov 2019 11:02:23 GMT etag: - - '"1D587FD0CF29DC0"' + - '"1D59A11B056D5A0"' expires: - '-1' pragma: @@ -1007,7 +987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1191' x-powered-by: - ASP.NET status: @@ -1030,11 +1010,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1047,7 +1027,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:16 GMT + - Wed, 13 Nov 2019 11:02:24 GMT expires: - '-1' pragma: @@ -1065,7 +1045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -1090,11 +1070,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1107,9 +1087,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:18 GMT + - Wed, 13 Nov 2019 11:02:24 GMT etag: - - '"1D587FD30795CF5"' + - '"1D59A11D4DE700B"' expires: - '-1' pragma: @@ -1127,7 +1107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1160' + - '1193' x-powered-by: - ASP.NET status: @@ -1150,11 +1130,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1167,7 +1147,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:20 GMT + - Wed, 13 Nov 2019 11:02:26 GMT expires: - '-1' pragma: @@ -1185,7 +1165,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -1206,11 +1186,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -1223,7 +1203,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:19 GMT + - Wed, 13 Nov 2019 11:02:26 GMT expires: - '-1' pragma: @@ -1262,15 +1242,15 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/publishingcredentials/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishingcredentials/$webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-linux000003","publishingPassword":"XtCt6cEuxBL31ZXs4297GqDsGhvRoGY2dwHv8kFuqqJ1mg3brDm8wyDTHy2o","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-linux000003:XtCt6cEuxBL31ZXs4297GqDsGhvRoGY2dwHv8kFuqqJ1mg3brDm8wyDTHy2o@webapp-linux000003.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-linux000003","publishingPassword":"RJwd2Kt92efRjXCtmWZm6azxnurJ7npu58ejmofTxT9ejj5GfyP9mSA5lnsJ","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-linux000003:RJwd2Kt92efRjXCtmWZm6azxnurJ7npu58ejmofTxT9ejj5GfyP9mSA5lnsJ@webapp-linux000003.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1279,7 +1259,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:21 GMT + - Wed, 13 Nov 2019 11:02:28 GMT expires: - '-1' pragma: @@ -1297,7 +1277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -1319,26 +1299,26 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:18.7033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:25.3766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3532' + - '3628' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:21 GMT + - Wed, 13 Nov 2019 11:02:29 GMT etag: - - '"1D587FD30795CF5"' + - '"1D59A11D4DE700B"' expires: - '-1' pragma: @@ -1376,26 +1356,24 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3067' + - '2941' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:22 GMT + - Wed, 13 Nov 2019 11:02:30 GMT expires: - '-1' pragma: @@ -1435,11 +1413,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1452,7 +1430,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:23 GMT + - Wed, 13 Nov 2019 11:02:31 GMT expires: - '-1' pragma: @@ -1470,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' x-powered-by: - ASP.NET status: @@ -1497,11 +1475,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1514,9 +1492,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:24 GMT + - Wed, 13 Nov 2019 11:02:33 GMT etag: - - '"1D587FD344F030B"' + - '"1D59A11D976E3EB"' expires: - '-1' pragma: @@ -1534,7 +1512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1133' + - '1189' x-powered-by: - ASP.NET status: @@ -1548,16 +1526,13 @@ interactions: "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-linux000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "process.json", + true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "process.json", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": - "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true}], "loadBalancing": + "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, - "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": - "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], - "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "vnetName": "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1568,7 +1543,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1414' + - '1133' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -1576,28 +1551,26 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3057' + - '2931' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:26 GMT + - Wed, 13 Nov 2019 11:02:35 GMT etag: - - '"1D587FD344F030B"' + - '"1D59A11D976E3EB"' expires: - '-1' pragma: @@ -1615,7 +1588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1135' + - '1190' x-powered-by: - ASP.NET status: @@ -1639,11 +1612,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1656,7 +1629,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:27 GMT + - Wed, 13 Nov 2019 11:02:35 GMT expires: - '-1' pragma: @@ -1674,7 +1647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -1703,11 +1676,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1720,9 +1693,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:27 GMT + - Wed, 13 Nov 2019 11:02:37 GMT etag: - - '"1D587FD3656D3F5"' + - '"1D59A11DBEE1875"' expires: - '-1' pragma: @@ -1740,7 +1713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1163' + - '1192' x-powered-by: - ASP.NET status: @@ -1764,11 +1737,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1781,7 +1754,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:28 GMT + - Wed, 13 Nov 2019 11:02:38 GMT expires: - '-1' pragma: @@ -1799,7 +1772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11994' x-powered-by: - ASP.NET status: @@ -1821,11 +1794,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -1838,7 +1811,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:29 GMT + - Wed, 13 Nov 2019 11:02:38 GMT expires: - '-1' pragma: @@ -1876,26 +1849,24 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3075' + - '2949' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:30 GMT + - Wed, 13 Nov 2019 11:02:39 GMT expires: - '-1' pragma: @@ -1934,11 +1905,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1951,7 +1922,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:31 GMT + - Wed, 13 Nov 2019 11:02:40 GMT expires: - '-1' pragma: @@ -1990,11 +1961,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -2007,7 +1978,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:33 GMT + - Wed, 13 Nov 2019 11:02:41 GMT expires: - '-1' pragma: @@ -2044,26 +2015,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3075' + - '2949' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:34 GMT + - Wed, 13 Nov 2019 11:02:42 GMT expires: - '-1' pragma: @@ -2100,26 +2069,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3075' + - '2949' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:35 GMT + - Wed, 13 Nov 2019 11:02:43 GMT expires: - '-1' pragma: @@ -2158,11 +2125,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2175,7 +2142,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:35 GMT + - Wed, 13 Nov 2019 11:02:44 GMT expires: - '-1' pragma: @@ -2193,7 +2160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11997' x-powered-by: - ASP.NET status: @@ -2214,11 +2181,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -2231,7 +2198,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:36 GMT + - Wed, 13 Nov 2019 11:02:45 GMT expires: - '-1' pragma: @@ -2274,11 +2241,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2291,9 +2258,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:36 GMT + - Wed, 13 Nov 2019 11:02:46 GMT etag: - - '"1D587FD3BC7F495"' + - '"1D59A11E11062CB"' expires: - '-1' pragma: @@ -2311,7 +2278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1181' x-powered-by: - ASP.NET status: @@ -2325,16 +2292,13 @@ interactions: false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-linux000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "process.json", + true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "process.json", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": - "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true}], "loadBalancing": + "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, - "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": - "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], - "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "vnetName": "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -2345,36 +2309,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1399' + - '1118' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" - ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3042' + - '2916' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:39 GMT + - Wed, 13 Nov 2019 11:02:48 GMT etag: - - '"1D587FD3BC7F495"' + - '"1D59A11E11062CB"' expires: - '-1' pragma: @@ -2392,7 +2354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1159' + - '1191' x-powered-by: - ASP.NET status: @@ -2415,11 +2377,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2432,7 +2394,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:39 GMT + - Wed, 13 Nov 2019 11:02:49 GMT expires: - '-1' pragma: @@ -2450,7 +2412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11993' + - '11998' x-powered-by: - ASP.NET status: @@ -2471,11 +2433,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -2488,7 +2450,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:40 GMT + - Wed, 13 Nov 2019 11:02:49 GMT expires: - '-1' pragma: @@ -2529,11 +2491,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2546,9 +2508,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:42 GMT + - Wed, 13 Nov 2019 11:02:50 GMT etag: - - '"1D587FD3E5485E0"' + - '"1D59A11E4413D60"' expires: - '-1' pragma: @@ -2566,7 +2528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1162' + - '1189' x-powered-by: - ASP.NET status: @@ -2589,11 +2551,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2606,7 +2568,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:42 GMT + - Wed, 13 Nov 2019 11:02:52 GMT expires: - '-1' pragma: @@ -2624,7 +2586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -2645,11 +2607,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -2662,7 +2624,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:44 GMT + - Wed, 13 Nov 2019 11:02:53 GMT expires: - '-1' pragma: @@ -2699,27 +2661,25 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" - ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3060' + - '2934' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:45 GMT + - Wed, 13 Nov 2019 11:02:53 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml index ce97763d3b1..bc4c80b863e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:44:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:17Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:44:32 GMT + - Wed, 13 Nov 2019 10:57:19 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:44:33 GMT + - Wed, 13 Nov 2019 10:57:20 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:44:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:17Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:44:34 GMT + - Wed, 13 Nov 2019 10:57:20 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,17 +179,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":8634,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-129_8634","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":34928,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_34928","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json date: - - Mon, 21 Oct 2019 10:44:45 GMT + - Wed, 13 Nov 2019 10:57:33 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,17 +236,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":8634,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-129_8634","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":34928,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_34928","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json date: - - Mon, 21 Oct 2019 10:44:46 GMT + - Wed, 13 Nov 2019 10:57:34 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:44:49 GMT + - Wed, 13 Nov 2019 10:57:34 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: @@ -343,7 +343,7 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -351,17 +351,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":8634,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-129_8634","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":34928,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_34928","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json date: - - Mon, 21 Oct 2019 10:44:51 GMT + - Wed, 13 Nov 2019 10:57:36 GMT expires: - '-1' pragma: @@ -406,26 +406,26 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"West - US","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:44:55.8266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CF8CA7B488B492C0A0EC2F0042F4A35273F73307D2AF27D441C5DEAD49CB9CA1","kind":"app,linux,container","inboundIpAddress":"40.112.243.2","possibleInboundIpAddresses":"40.112.243.2","outboundIpAddresses":"40.112.243.2,104.209.34.13,23.99.90.66,104.209.43.22,104.209.45.216","possibleOutboundIpAddresses":"40.112.243.2,104.209.34.13,23.99.90.66,104.209.43.22,104.209.45.216,104.209.43.107,104.209.44.43,104.209.43.145,104.209.45.148,104.40.0.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-129","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:39.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FA29828D14C1C3AD28640E66730C2851806D0E5A2AF41B6C5AC542B7EC11EBA4","kind":"app,linux,container","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3852' + - '3809' content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:12 GMT + - Wed, 13 Nov 2019 10:57:58 GMT etag: - - '"1D587FC942B392B"' + - '"1D59A112A9929E0"' expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '495' x-powered-by: - ASP.NET status: @@ -468,29 +468,23 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2018-02-01 response: body: string: @@ -498,11 +492,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:45:13 GMT + - Wed, 13 Nov 2019 10:57:59 GMT expires: - '-1' pragma: @@ -516,7 +510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -546,11 +540,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:08 GMT + - Wed, 13 Nov 2019 10:58:48 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -569,7 +563,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 5 times. + string: 'Hello World! I have been seen 4 times. ' headers: @@ -578,11 +572,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:08 GMT + - Wed, 13 Nov 2019 10:58:50 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -601,7 +595,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 6 times. + string: 'Hello World! I have been seen 5 times. ' headers: @@ -610,11 +604,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:08 GMT + - Wed, 13 Nov 2019 10:58:50 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -633,7 +627,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 7 times. + string: 'Hello World! I have been seen 6 times. ' headers: @@ -642,11 +636,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:09 GMT + - Wed, 13 Nov 2019 10:58:50 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -665,7 +659,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 8 times. + string: 'Hello World! I have been seen 7 times. ' headers: @@ -674,11 +668,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:10 GMT + - Wed, 13 Nov 2019 10:58:51 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -697,7 +691,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 9 times. + string: 'Hello World! I have been seen 8 times. ' headers: @@ -706,11 +700,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:10 GMT + - Wed, 13 Nov 2019 10:58:52 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -729,20 +723,20 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 10 times. + string: 'Hello World! I have been seen 9 times. ' headers: content-length: - - '40' + - '39' content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:11 GMT + - Wed, 13 Nov 2019 10:58:53 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -761,7 +755,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 11 times. + string: 'Hello World! I have been seen 10 times. ' headers: @@ -770,11 +764,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:12 GMT + - Wed, 13 Nov 2019 10:58:53 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -793,7 +787,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 12 times. + string: 'Hello World! I have been seen 11 times. ' headers: @@ -802,11 +796,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:12 GMT + - Wed, 13 Nov 2019 10:58:54 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK @@ -825,7 +819,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 13 times. + string: 'Hello World! I have been seen 12 times. ' headers: @@ -834,11 +828,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:13 GMT + - Wed, 13 Nov 2019 10:58:54 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=ad06ce77332486f1e5e718d5efd5191348c4d4045530c02cb7c0a1669cb7bdc6;Path=/;HttpOnly;Domain=webapp-linux-multihajttz.azurewebsites.net + - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml index 850eb8f01f1..2d47798eaf7 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:47:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:47:17 GMT + - Wed, 13 Nov 2019 11:01:53 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --is-linux --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:17 GMT + - Wed, 13 Nov 2019 11:01:54 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:47:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:47:18 GMT + - Wed, 13 Nov 2019 11:01:55 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --is-linux --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":12025,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-007_12025","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US 2","properties":{"serverFarmId":11713,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-029_11713","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:31 GMT + - Wed, 13 Nov 2019 11:02:06 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1192' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":12025,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-007_12025","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US 2","properties":{"serverFarmId":11713,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-029_11713","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:33 GMT + - Wed, 13 Nov 2019 11:02:08 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:33 GMT + - Wed, 13 Nov 2019 11:02:08 GMT expires: - '-1' pragma: @@ -343,7 +343,7 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -351,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":12025,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-007_12025","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US 2","properties":{"serverFarmId":11713,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-029_11713","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:34 GMT + - Wed, 13 Nov 2019 11:02:09 GMT expires: - '-1' pragma: @@ -387,8 +387,8 @@ interactions: body: 'b''{"location": "West US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo=", - "appSettings": [], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": - true}, "scmSiteAlsoStopped": false}}''' + "appSettings": [], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -399,33 +399,33 @@ interactions: Connection: - keep-alive Content-Length: - - '696' + - '678' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"West - US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:40.6266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"10BB2237769F7CD44E33DF59FE416A4D0DF5F54BE7CD01BD7B5C91619BBA276A","kind":"app,linux,container","inboundIpAddress":"52.175.254.10","possibleInboundIpAddresses":"52.175.254.10","outboundIpAddresses":"52.175.254.10,52.183.85.212,52.183.86.156,52.183.100.42,52.183.85.188","possibleOutboundIpAddresses":"52.175.254.10,52.183.85.212,52.183.86.156,52.183.100.42,52.183.85.188,52.151.29.83,52.151.33.248","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:14.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B54AB0DD7DC1A86E677062CEBAC83567C30AEB8B5966F3CC007554E1014A8877","kind":"app,linux,container","inboundIpAddress":"13.77.182.13","possibleInboundIpAddresses":"13.77.182.13","outboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124","possibleOutboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124,52.183.34.217,13.66.206.87,13.77.172.226,52.183.34.132,13.77.180.8","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3821' + - '3848' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:58 GMT + - Wed, 13 Nov 2019 11:02:31 GMT etag: - - '"1D587FCF65672EB"' + - '"1D59A11CE88EFE0"' expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '494' x-powered-by: - ASP.NET status: @@ -468,29 +468,23 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2018-02-01 response: body: string: @@ -498,11 +492,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:48:00 GMT + - Wed, 13 Nov 2019 11:02:33 GMT expires: - '-1' pragma: @@ -516,7 +510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -537,7 +531,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 4 times. + string: 'Hello World! I have been seen 2 times. ' headers: @@ -546,11 +540,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:32 GMT + - Wed, 13 Nov 2019 11:03:16 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -569,7 +563,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 8 times. + string: 'Hello World! I have been seen 5 times. ' headers: @@ -578,11 +572,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:33 GMT + - Wed, 13 Nov 2019 11:03:17 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -601,7 +595,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 9 times. + string: 'Hello World! I have been seen 6 times. ' headers: @@ -610,11 +604,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:33 GMT + - Wed, 13 Nov 2019 11:03:17 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -633,20 +627,20 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 10 times. + string: 'Hello World! I have been seen 7 times. ' headers: content-length: - - '40' + - '39' content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:34 GMT + - Wed, 13 Nov 2019 11:03:18 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -665,20 +659,20 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 11 times. + string: 'Hello World! I have been seen 8 times. ' headers: content-length: - - '40' + - '39' content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:34 GMT + - Wed, 13 Nov 2019 11:03:18 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -697,20 +691,20 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 12 times. + string: 'Hello World! I have been seen 9 times. ' headers: content-length: - - '40' + - '39' content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:35 GMT + - Wed, 13 Nov 2019 11:03:19 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -729,7 +723,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 13 times. + string: 'Hello World! I have been seen 10 times. ' headers: @@ -738,11 +732,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:35 GMT + - Wed, 13 Nov 2019 11:03:19 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -761,7 +755,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 14 times. + string: 'Hello World! I have been seen 11 times. ' headers: @@ -770,11 +764,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:36 GMT + - Wed, 13 Nov 2019 11:03:20 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -793,7 +787,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 15 times. + string: 'Hello World! I have been seen 12 times. ' headers: @@ -802,11 +796,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:37 GMT + - Wed, 13 Nov 2019 11:03:20 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -825,7 +819,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 16 times. + string: 'Hello World! I have been seen 13 times. ' headers: @@ -834,11 +828,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:37 GMT + - Wed, 13 Nov 2019 11:03:21 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net status: code: 200 message: OK @@ -857,26 +851,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"West - US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:41.1666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"10BB2237769F7CD44E33DF59FE416A4D0DF5F54BE7CD01BD7B5C91619BBA276A","kind":"app,linux,container","inboundIpAddress":"52.175.254.10","possibleInboundIpAddresses":"52.175.254.10","outboundIpAddresses":"52.175.254.10,52.183.85.212,52.183.86.156,52.183.100.42,52.183.85.188","possibleOutboundIpAddresses":"52.175.254.10,52.183.85.212,52.183.86.156,52.183.100.42,52.183.85.188,52.151.29.83,52.151.33.248","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:14.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B54AB0DD7DC1A86E677062CEBAC83567C30AEB8B5966F3CC007554E1014A8877","kind":"app,linux,container","inboundIpAddress":"13.77.182.13","possibleInboundIpAddresses":"13.77.182.13","outboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124","possibleOutboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124,52.183.34.217,13.66.206.87,13.77.172.226,52.183.34.132,13.77.180.8","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3819' + - '3846' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:40 GMT + - Wed, 13 Nov 2019 11:03:23 GMT etag: - - '"1D587FCF65672EB"' + - '"1D59A11CE88EFE0"' expires: - '-1' pragma: @@ -920,26 +914,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage","name":"webapp-linux-multi000002/stage","type":"Microsoft.Web/sites/slots","kind":"app,linux,container","location":"West - US 2","properties":{"name":"webapp-linux-multi000002(stage)","state":"Running","hostNames":["webapp-linux-multi000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002-stage.azurewebsites.net","webapp-linux-multi000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:48:50.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002__1011","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"496C621B5EC8BBDB74A7F0050A384738812D1488777D4497EAA19C004A89025C","kind":"app,linux,container","inboundIpAddress":"52.175.254.10","possibleInboundIpAddresses":"52.175.254.10","outboundIpAddresses":"52.175.254.10,52.183.85.212,52.183.86.156,52.183.100.42,52.183.85.188","possibleOutboundIpAddresses":"52.175.254.10,52.183.85.212,52.183.86.156,52.183.100.42,52.183.85.188,52.151.29.83,52.151.33.248","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US 2","properties":{"name":"webapp-linux-multi000002(stage)","state":"Running","hostNames":["webapp-linux-multi000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002-stage.azurewebsites.net","webapp-linux-multi000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:28.3866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002__eb0c","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BA8D8CCB7044E5A716F9269C96AB90ADF318361070CD6AD00895F2496E0D51B0","kind":"app,linux,container","inboundIpAddress":"13.77.182.13","possibleInboundIpAddresses":"13.77.182.13","outboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124","possibleOutboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124,52.183.34.217,13.66.206.87,13.77.172.226,52.183.34.132,13.77.180.8","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3889' + - '3926' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:07 GMT + - Wed, 13 Nov 2019 11:03:44 GMT etag: - - '"1D587FCF65672EB"' + - '"1D59A11CE88EFE0"' expires: - '-1' pragma: @@ -980,11 +974,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -997,7 +991,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:07 GMT + - Wed, 13 Nov 2019 11:03:45 GMT expires: - '-1' pragma: @@ -1036,11 +1030,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","location":"West @@ -1053,7 +1047,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:09 GMT + - Wed, 13 Nov 2019 11:03:47 GMT expires: - '-1' pragma: @@ -1090,26 +1084,24 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites/config","location":"West - US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo=","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo=","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3325' + - '3127' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:10 GMT + - Wed, 13 Nov 2019 11:03:49 GMT expires: - '-1' pragma: @@ -1148,11 +1140,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1165,7 +1157,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:11 GMT + - Wed, 13 Nov 2019 11:03:50 GMT expires: - '-1' pragma: @@ -1183,7 +1175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1204,11 +1196,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","location":"West @@ -1221,7 +1213,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:13 GMT + - Wed, 13 Nov 2019 11:03:51 GMT expires: - '-1' pragma: @@ -1262,11 +1254,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1279,9 +1271,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:13 GMT + - Wed, 13 Nov 2019 11:03:51 GMT etag: - - '"1D587FD2DD8F58B"' + - '"1D59A1208756DA0"' expires: - '-1' pragma: @@ -1299,7 +1291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1189' x-powered-by: - ASP.NET status: @@ -1317,12 +1309,8 @@ interactions: "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1333,35 +1321,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1563' + - '1280' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage","name":"webapp-linux-multi000002/stage","type":"Microsoft.Web/sites/slots","location":"West - US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3335' + - '3137' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:16 GMT + - Wed, 13 Nov 2019 11:03:53 GMT etag: - - '"1D587FD2001DE4B"' + - '"1D59A11FAB6C060"' expires: - '-1' pragma: @@ -1400,26 +1386,24 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites/config","location":"West - US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3341' + - '3143' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:16 GMT + - Wed, 13 Nov 2019 11:03:55 GMT expires: - '-1' pragma: @@ -1465,11 +1449,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:52 GMT + - Wed, 13 Nov 2019 11:04:26 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1497,11 +1481,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:53 GMT + - Wed, 13 Nov 2019 11:04:27 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1529,11 +1513,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:53 GMT + - Wed, 13 Nov 2019 11:04:27 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1561,11 +1545,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:54 GMT + - Wed, 13 Nov 2019 11:04:28 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1593,11 +1577,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:54 GMT + - Wed, 13 Nov 2019 11:04:28 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1625,11 +1609,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:55 GMT + - Wed, 13 Nov 2019 11:04:30 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1657,11 +1641,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:56 GMT + - Wed, 13 Nov 2019 11:04:30 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1689,11 +1673,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:56 GMT + - Wed, 13 Nov 2019 11:04:31 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1721,11 +1705,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:56 GMT + - Wed, 13 Nov 2019 11:04:31 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK @@ -1753,11 +1737,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:57 GMT + - Wed, 13 Nov 2019 11:04:32 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=abd77e5563e135367413300833059719cdfe9fd3bf1f11834cc13b7f4e899ebb;Path=/;HttpOnly;Domain=webapp-linux-multixrwnjh-stage.azurewebsites.net + - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml index 88ed0be3f20..b6b97fc783f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:43Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:46 GMT + - Thu, 14 Nov 2019 01:39:31 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:47 GMT + - Thu, 14 Nov 2019 01:39:32 GMT expires: - '-1' pragma: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:43Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:48 GMT + - Thu, 14 Nov 2019 01:39:32 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,17 +179,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","name":"plan-quick-linux000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - East","properties":{"serverFarmId":9626,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_9626","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + East","properties":{"serverFarmId":10110,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-14T01:39:36.6133333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10110","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1534' + - '1561' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:00 GMT + - Thu, 14 Nov 2019 01:39:46 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,17 +236,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","name":"plan-quick-linux000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - East","properties":{"serverFarmId":9626,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_9626","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + East","properties":{"serverFarmId":10110,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-14T01:39:36.6133333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10110","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1534' + - '1561' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:02 GMT + - Thu, 14 Nov 2019 01:39:50 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:03 GMT + - Thu, 14 Nov 2019 01:39:50 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' x-powered-by: - ASP.NET status: @@ -343,7 +343,7 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -351,17 +351,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","name":"plan-quick-linux000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - East","properties":{"serverFarmId":9626,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_9626","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + East","properties":{"serverFarmId":10110,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-14T01:39:36.6133333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10110","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1534' + - '1561' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:05 GMT + - Thu, 14 Nov 2019 01:39:54 GMT expires: - '-1' pragma: @@ -406,26 +406,26 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Japan - East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:09.4866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:57.9733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"549FB63F171F71E18445AE06C56C897B9AF910FE81B0B145D9DEDC94FE2B2C62","kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3543' + - '3639' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:27 GMT + - Thu, 14 Nov 2019 01:40:16 GMT etag: - - '"1D587FCC00C3C35"' + - '"1D59A8C6CDC320B"' expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '499' x-powered-by: - ASP.NET status: @@ -468,29 +468,23 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/publishxml?api-version=2018-02-01 response: body: string: @@ -498,11 +492,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:46:29 GMT + - Thu, 14 Nov 2019 01:40:17 GMT expires: - '-1' pragma: @@ -537,26 +531,26 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Japan - East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:10.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:58.9766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"549FB63F171F71E18445AE06C56C897B9AF910FE81B0B145D9DEDC94FE2B2C62","kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3541' + - '3637' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:31 GMT + - Thu, 14 Nov 2019 01:40:18 GMT etag: - - '"1D587FCC00C3C35"' + - '"1D59A8C6CDC320B"' expires: - '-1' pragma: @@ -593,26 +587,24 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites/config","location":"Japan - East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3068' + - '2940' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:32 GMT + - Thu, 14 Nov 2019 01:40:20 GMT expires: - '-1' pragma: @@ -651,11 +643,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -668,7 +660,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:33 GMT + - Thu, 14 Nov 2019 01:40:23 GMT expires: - '-1' pragma: @@ -712,11 +704,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -729,9 +721,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:35 GMT + - Thu, 14 Nov 2019 01:40:24 GMT etag: - - '"1D587FCCEC730CB"' + - '"1D59A8C7C3B6FEB"' expires: - '-1' pragma: @@ -749,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1196' x-powered-by: - ASP.NET status: @@ -767,12 +759,8 @@ interactions: "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -783,35 +771,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1375' + - '1092' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","location":"Japan - East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3054' + - '2926' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:38 GMT + - Thu, 14 Nov 2019 01:40:27 GMT etag: - - '"1D587FCCEC730CB"' + - '"1D59A8C7C3B6FEB"' expires: - '-1' pragma: @@ -829,7 +815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' x-powered-by: - ASP.NET status: @@ -852,11 +838,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -869,7 +855,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:40 GMT + - Thu, 14 Nov 2019 01:40:29 GMT expires: - '-1' pragma: @@ -908,11 +894,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","location":"Japan @@ -925,7 +911,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:41 GMT + - Thu, 14 Nov 2019 01:40:30 GMT expires: - '-1' pragma: @@ -962,26 +948,24 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites/config","location":"Japan - East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3072' + - '2944' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:42 GMT + - Thu, 14 Nov 2019 01:40:30 GMT expires: - '-1' pragma: @@ -1025,9 +1009,9 @@ interactions: content-type: - text/html date: - - Mon, 21 Oct 2019 10:48:55 GMT + - Thu, 14 Nov 2019 01:42:24 GMT set-cookie: - - ARRAffinity=4300f504668eb50daedc35f96cd0392e3a685710075b8621969d65e4f5dc63bf;Path=/;HttpOnly;Domain=webapp-quick-linuxvo5wvx.azurewebsites.net + - ARRAffinity=3cec392df3fcfb68e67228055194266ae3a12171f7ca6e8c3f085e4caee9b12e;Path=/;HttpOnly;Domain=webapp-quick-linuxx5bhk4.azurewebsites.net status: code: 200 message: OK @@ -1048,11 +1032,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1065,7 +1049,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:56 GMT + - Thu, 14 Nov 2019 01:42:26 GMT expires: - '-1' pragma: @@ -1083,7 +1067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1104,11 +1088,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","location":"Japan @@ -1121,7 +1105,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:57 GMT + - Thu, 14 Nov 2019 01:42:28 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml index 6b13393433b..ba3a01e2431 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:46:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:35 GMT + - Wed, 13 Nov 2019 10:57:24 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:36 GMT + - Wed, 13 Nov 2019 10:57:25 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:46:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:36 GMT + - Wed, 13 Nov 2019 10:57:25 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","name":"plan-quick-linux-cd","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5505,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-11-20T10:46:39.4933333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5505","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":5691,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-13T10:57:28.0966667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5691","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:53 GMT + - Wed, 13 Nov 2019 10:57:41 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1194' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","name":"plan-quick-linux-cd","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5505,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-11-20T10:46:39.4933333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5505","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":5691,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-13T10:57:28.0966667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5691","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:54 GMT + - Wed, 13 Nov 2019 10:57:43 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:55 GMT + - Wed, 13 Nov 2019 10:57:44 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' x-powered-by: - ASP.NET status: @@ -343,7 +343,7 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -351,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","name":"plan-quick-linux-cd","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5505,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-11-20T10:46:39.4933333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5505","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":5691,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-13T10:57:28.0966667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5691","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:56 GMT + - Wed, 13 Nov 2019 10:57:45 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}}],"nextLink":null,"id":null}' + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16743' + - '16883' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:58 GMT + - Wed, 13 Nov 2019 10:57:46 GMT expires: - '-1' pragma: @@ -472,26 +472,26 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:03.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:02.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AF9C5CD9BED730A1A00ADE4611B340B23B269112C0F931902D1F206B621BDD0A","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3624' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:21 GMT + - Wed, 13 Nov 2019 10:58:20 GMT etag: - - '"1D587FCE0134A8B"' + - '"1D59A1138E4BAD5"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '495' x-powered-by: - ASP.NET status: @@ -530,26 +530,26 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:03.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:03.6933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AF9C5CD9BED730A1A00ADE4611B340B23B269112C0F931902D1F206B621BDD0A","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3526' + - '3622' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:22 GMT + - Wed, 13 Nov 2019 10:58:21 GMT etag: - - '"1D587FCE0134A8B"' + - '"1D59A1138E4BAD5"' expires: - '-1' pragma: @@ -591,11 +591,11 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan @@ -608,9 +608,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:59 GMT + - Wed, 13 Nov 2019 10:58:59 GMT etag: - - '"1D587FD0131130B"' + - '"1D59A115A798815"' expires: - '-1' pragma: @@ -624,7 +624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1136' + - '1196' x-powered-by: - ASP.NET status: @@ -645,25 +645,25 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan - West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:48:25.1982594 - http://webapp-linux-cd000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-48-24Z"}}' + West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T10:59:23.0964347 + Ensuring ScmType done with True"}}' headers: cache-control: - no-cache content-length: - - '712' + - '622' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:30 GMT + - Wed, 13 Nov 2019 10:59:36 GMT etag: - - '"1D587FD0131130B"' + - '"1D59A115A798815"' expires: - '-1' pragma: @@ -700,14 +700,14 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan - West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:48:57.4285186 - http://webapp-linux-cd000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-48-24Z"}}' + West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T10:59:58.4982809 + http://webapp-linux-cd000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-11-13_10-59-36Z"}}' headers: cache-control: - no-cache @@ -716,9 +716,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:01 GMT + - Wed, 13 Nov 2019 11:00:06 GMT etag: - - '"1D587FD0131130B"' + - '"1D59A115A798815"' expires: - '-1' pragma: @@ -755,9 +755,9 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan @@ -770,9 +770,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:31 GMT + - Wed, 13 Nov 2019 11:00:37 GMT etag: - - '"1D587FD0131130B"' + - '"1D59A115A798815"' expires: - '-1' pragma: @@ -813,28 +813,22 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/publishxml?api-version=2018-02-01 response: body: string: @@ -842,11 +836,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:49:32 GMT + - Wed, 13 Nov 2019 11:00:38 GMT expires: - '-1' pragma: @@ -860,7 +854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11997' x-powered-by: - ASP.NET status: @@ -888,11 +882,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:45 GMT + - Wed, 13 Nov 2019 11:01:46 GMT etag: - W/"21-Y1/wfdei+S14SZIuhOjhxBTBp94" set-cookie: - - ARRAffinity=68eda2333691511c17b2574619a79876611dd86be1c55aa848d58cf2408b7c02;Path=/;HttpOnly;Domain=webapp-linux-cd52vpyrcun.azurewebsites.net + - ARRAffinity=1e3adbfa9a1d8a834f83f2cf75530d5493355d3aa5b5a68a9239081f4e3c0021;Path=/;HttpOnly;Domain=webapp-linux-cdgozrldcx6.azurewebsites.net x-powered-by: - Express status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml index a254835c621..d55ba65fa46 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:46:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:04:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:33 GMT + - Wed, 13 Nov 2019 11:04:17 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:35 GMT + - Wed, 13 Nov 2019 11:04:17 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1190' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:46:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:04:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:35 GMT + - Wed, 13 Nov 2019 11:04:18 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","name":"webapp-remote-debug-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5504,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5504","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5697,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5697","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:51 GMT + - Wed, 13 Nov 2019 11:04:34 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1159' + - '1187' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","name":"webapp-remote-debug-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5504,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5504","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5697,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5697","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:53 GMT + - Wed, 13 Nov 2019 11:04:36 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:55 GMT + - Wed, 13 Nov 2019 11:04:36 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' x-powered-by: - ASP.NET status: @@ -343,7 +343,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -351,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","name":"webapp-remote-debug-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5504,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5504","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5697,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5697","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:56 GMT + - Wed, 13 Nov 2019 11:04:37 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}}],"nextLink":null,"id":null}' + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16743' + - '16883' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:57 GMT + - Wed, 13 Nov 2019 11:04:39 GMT expires: - '-1' pragma: @@ -453,8 +453,8 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "localMySqlEnabled": + false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -465,33 +465,33 @@ interactions: Connection: - keep-alive Content-Length: - - '530' + - '512' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:02.2833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:44.2233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3743' + - '3839' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:20 GMT + - Wed, 13 Nov 2019 11:05:01 GMT etag: - - '"1D587FCDF88F1E0"' + - '"1D59A1227E3E575"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '498' x-powered-by: - ASP.NET status: @@ -534,29 +534,23 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 response: body: string: @@ -564,11 +558,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:47:20 GMT + - Wed, 13 Nov 2019 11:05:02 GMT expires: - '-1' pragma: @@ -582,7 +576,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -603,26 +597,24 @@ interactions: - --remote-debugging-enabled -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3100' + - '2974' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:51 GMT + - Wed, 13 Nov 2019 11:05:33 GMT expires: - '-1' pragma: @@ -652,16 +644,12 @@ interactions: false, "remoteDebuggingEnabled": true, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-remote-debug000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -672,35 +660,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1374' + - '1093' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --remote-debugging-enabled -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3085' + - '2959' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:53 GMT + - Wed, 13 Nov 2019 11:05:36 GMT etag: - - '"1D587FCDF88F1E0"' + - '"1D59A1227E3E575"' expires: - '-1' pragma: @@ -718,7 +704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1164' + - '1185' x-powered-by: - ASP.NET status: @@ -785,13 +771,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Mon, 21 Oct 2019 10:47:54 GMT + - Wed, 13 Nov 2019 11:05:51 GMT etag: - W/"ca5-16d98916728" last-modified: - Fri, 04 Oct 2019 20:58:49 GMT set-cookie: - - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Domain=webapp-remote-debugis5bpe4egdvu7uvuqhxxh.azurewebsites.net + - ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=webapp-remote-debugfpywuaxihhm2uyf2rwcqq.azurewebsites.net x-powered-by: - Express status: @@ -812,26 +798,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:54.0533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:36.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3741' + - '3837' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:27 GMT + - Wed, 13 Nov 2019 11:06:22 GMT etag: - - '"1D587FCFE04CC55"' + - '"1D59A1246AE9635"' expires: - '-1' pragma: @@ -872,29 +858,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 response: body: string: @@ -902,11 +882,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:48:28 GMT + - Wed, 13 Nov 2019 11:06:24 GMT expires: - '-1' pragma: @@ -920,7 +900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11995' x-powered-by: - ASP.NET status: @@ -945,29 +925,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 response: body: string: @@ -975,11 +949,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:48:28 GMT + - Wed, 13 Nov 2019 11:06:24 GMT expires: - '-1' pragma: @@ -1014,26 +988,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:54.0533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:36.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3741' + - '3837' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:30 GMT + - Wed, 13 Nov 2019 11:06:25 GMT etag: - - '"1D587FCFE04CC55"' + - '"1D59A1246AE9635"' expires: - '-1' pragma: @@ -1074,29 +1048,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 response: body: string: @@ -1104,11 +1072,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:48:30 GMT + - Wed, 13 Nov 2019 11:06:26 GMT expires: - '-1' pragma: @@ -1122,7 +1090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11995' x-powered-by: - ASP.NET status: @@ -1145,15 +1113,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/publishingcredentials/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishingcredentials/$webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-remote-debug000003","publishingPassword":"0AQzjjF0fljtabG919xw6gcivXpexDSsoKDyrb7RSWLS1AGvnvbM1MrMmlgy","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-debug000003:0AQzjjF0fljtabG919xw6gcivXpexDSsoKDyrb7RSWLS1AGvnvbM1MrMmlgy@webapp-remote-debug000003.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-remote-debug000003","publishingPassword":"SXaEhvsHKx7cophQ2P8T1qGpQq2Sfs200QEiME9qWhhXNgXLy8wQ9SmcHcr0","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-debug000003:SXaEhvsHKx7cophQ2P8T1qGpQq2Sfs200QEiME9qWhhXNgXLy8wQ9SmcHcr0@webapp-remote-debug000003.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1162,7 +1130,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:31 GMT + - Wed, 13 Nov 2019 11:06:27 GMT expires: - '-1' pragma: @@ -1180,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -1201,26 +1169,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:47:54.0533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:36.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3741' + - '3837' content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:32 GMT + - Wed, 13 Nov 2019 11:06:28 GMT etag: - - '"1D587FCFE04CC55"' + - '"1D59A1246AE9635"' expires: - '-1' pragma: @@ -1261,29 +1229,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 response: body: string: @@ -1291,11 +1253,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:48:33 GMT + - Wed, 13 Nov 2019 11:06:30 GMT expires: - '-1' pragma: @@ -1309,7 +1271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -1330,18 +1292,18 @@ interactions: uri: https://webapp-remote-debug000003.scm.azurewebsites.net/api/settings response: body: - string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_NODE_DEFAULT_VERSION":"8.11","REMOTEDEBUGGINGVERSION":"15.0.28307.222","ScmType":"None","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","WEBSITE_AUTH_ENABLED":"False","WEBSITE_SITE_NAME":"webapp-remote-debug000003"}' + string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_SITE_NAME":"webapp-remote-debug000003","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","WEBSITE_NODE_DEFAULT_VERSION":"8.11","WEBSITE_AUTH_ENABLED":"False","REMOTEDEBUGGINGVERSION":"15.0.28307.222","ScmType":"None"}' headers: content-length: - '370' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:20 GMT + - Wed, 13 Nov 2019 11:06:53 GMT server: - Kestrel set-cookie: - - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Domain=webapp-remote-debugis5bpe4egdvu7uvuqhxxh.scm.azurewebsites.net + - ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=webapp-remote-debugfpywuaxihhm2uyf2rwcqq.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1359,11 +1321,11 @@ interactions: string: SUCCESS:49494 headers: date: - - Mon, 21 Oct 2019 10:49:21 GMT + - Wed, 13 Nov 2019 11:06:55 GMT server: - Kestrel set-cookie: - - ARRAffinity=15d010c8ae71acbcad9f97d98ccbd4cdf55df554710b32fbe55075581e5a7f14;Path=/;HttpOnly;Domain=webapp-remote-debugis5bpe4egdvu7uvuqhxxh.scm.azurewebsites.net + - ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=webapp-remote-debugfpywuaxihhm2uyf2rwcqq.scm.azurewebsites.net transfer-encoding: - chunked status: @@ -1384,26 +1346,24 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3103' + - '2977' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:22 GMT + - Wed, 13 Nov 2019 11:06:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml index fd46c9ecffb..f118e893f09 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:15 GMT + - Wed, 13 Nov 2019 11:00:58 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:16 GMT + - Wed, 13 Nov 2019 11:00:59 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1195' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:17 GMT + - Wed, 13 Nov 2019 11:01:00 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","name":"webapp-remote-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5509,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5509","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5695,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:32 GMT + - Wed, 13 Nov 2019 11:01:18 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1191' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","name":"webapp-remote-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5509,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5509","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5695,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:34 GMT + - Wed, 13 Nov 2019 11:01:19 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:35 GMT + - Wed, 13 Nov 2019 11:01:20 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' x-powered-by: - ASP.NET status: @@ -343,7 +343,7 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -351,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","name":"webapp-remote-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5509,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5509","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5695,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:36 GMT + - Wed, 13 Nov 2019 11:01:21 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}}],"nextLink":null,"id":null}' + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16743' + - '16883' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:38 GMT + - Wed, 13 Nov 2019 11:01:22 GMT expires: - '-1' pragma: @@ -453,8 +453,8 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "localMySqlEnabled": + false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -465,33 +465,33 @@ interactions: Connection: - keep-alive Content-Length: - - '530' + - '512' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:43.2733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:28.6633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3743' + - '3839' content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:00 GMT + - Wed, 13 Nov 2019 11:01:44 GMT etag: - - '"1D587FD3F69B96B"' + - '"1D59A11B3575E6B"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '492' x-powered-by: - ASP.NET status: @@ -534,29 +534,23 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 response: body: string: @@ -564,11 +558,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:50:02 GMT + - Wed, 13 Nov 2019 11:01:45 GMT expires: - '-1' pragma: @@ -582,7 +576,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -649,13 +643,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Mon, 21 Oct 2019 10:50:32 GMT + - Wed, 13 Nov 2019 11:02:35 GMT etag: - W/"ca5-16d98916728" last-modified: - Fri, 04 Oct 2019 20:58:49 GMT set-cookie: - - ARRAffinity=67805356da7fd76f3f23fbfdb764fdb3a0ec1eada561eb233809b1c41da7ac8a;Path=/;HttpOnly;Domain=webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf.azurewebsites.net + - ARRAffinity=e11d3ad1bdae72b861d2157f2f6fc98a762dbb81735c6611fb619e80123b838c;Path=/;HttpOnly;Domain=webapp-remote-sshuutkqgghcbj5wyom57e7y6y.azurewebsites.net x-powered-by: - Express status: @@ -676,26 +670,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:43.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:29.1266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3741' + - '3837' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:04 GMT + - Wed, 13 Nov 2019 11:03:06 GMT etag: - - '"1D587FD3F69B96B"' + - '"1D59A11B3575E6B"' expires: - '-1' pragma: @@ -736,29 +730,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 response: body: string: @@ -766,11 +754,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:51:05 GMT + - Wed, 13 Nov 2019 11:03:07 GMT expires: - '-1' pragma: @@ -784,7 +772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11997' x-powered-by: - ASP.NET status: @@ -809,29 +797,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 response: body: string: @@ -839,11 +821,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:51:06 GMT + - Wed, 13 Nov 2019 11:03:08 GMT expires: - '-1' pragma: @@ -857,7 +839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -878,26 +860,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:43.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:29.1266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3741' + - '3837' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:09 GMT + - Wed, 13 Nov 2019 11:03:08 GMT etag: - - '"1D587FD3F69B96B"' + - '"1D59A11B3575E6B"' expires: - '-1' pragma: @@ -938,29 +920,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 response: body: string: @@ -968,11 +944,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:51:09 GMT + - Wed, 13 Nov 2019 11:03:10 GMT expires: - '-1' pragma: @@ -1009,15 +985,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/publishingcredentials/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishingcredentials/$webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-remote-ssh000003","publishingPassword":"p9EtLgNLNJ6QWPeRqmz0K0E3Tylf7csGkxionf5reZKJLkFbdu1h3uhcrhBd","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-ssh000003:p9EtLgNLNJ6QWPeRqmz0K0E3Tylf7csGkxionf5reZKJLkFbdu1h3uhcrhBd@webapp-remote-ssh000003.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-remote-ssh000003","publishingPassword":"Zq5dy7iRw4rBnWEvfMvqBnoM4g4WY8LnkCrq0Z1zbghls2b5mL86jaPipSXk","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-ssh000003:Zq5dy7iRw4rBnWEvfMvqBnoM4g4WY8LnkCrq0Z1zbghls2b5mL86jaPipSXk@webapp-remote-ssh000003.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1026,7 +1002,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:10 GMT + - Wed, 13 Nov 2019 11:03:10 GMT expires: - '-1' pragma: @@ -1044,7 +1020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11991' + - '11999' x-powered-by: - ASP.NET status: @@ -1065,26 +1041,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:43.7666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:29.1266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3741' + - '3837' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:12 GMT + - Wed, 13 Nov 2019 11:03:11 GMT etag: - - '"1D587FD3F69B96B"' + - '"1D59A11B3575E6B"' expires: - '-1' pragma: @@ -1125,29 +1101,23 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 response: body: string: @@ -1155,11 +1125,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:51:13 GMT + - Wed, 13 Nov 2019 11:03:11 GMT expires: - '-1' pragma: @@ -1173,7 +1143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11997' x-powered-by: - ASP.NET status: @@ -1194,18 +1164,18 @@ interactions: uri: https://webapp-remote-ssh000003.scm.azurewebsites.net/api/settings response: body: - string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_SITE_NAME":"webapp-remote-ssh000003","ScmType":"None","WEBSITE_AUTH_ENABLED":"False","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","WEBSITE_NODE_DEFAULT_VERSION":"8.11"}' + string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","WEBSITE_NODE_DEFAULT_VERSION":"8.11","WEBSITE_AUTH_ENABLED":"False","WEBSITE_SITE_NAME":"webapp-remote-ssh000003","ScmType":"None"}' headers: content-length: - '328' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:51:44 GMT + - Wed, 13 Nov 2019 11:03:34 GMT server: - Kestrel set-cookie: - - ARRAffinity=67805356da7fd76f3f23fbfdb764fdb3a0ec1eada561eb233809b1c41da7ac8a;Path=/;HttpOnly;Domain=webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf.scm.azurewebsites.net + - ARRAffinity=e11d3ad1bdae72b861d2157f2f6fc98a762dbb81735c6611fb619e80123b838c;Path=/;HttpOnly;Domain=webapp-remote-sshuutkqgghcbj5wyom57e7y6y.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1223,11 +1193,11 @@ interactions: string: SUCCESS:2222 headers: date: - - Mon, 21 Oct 2019 10:51:45 GMT + - Wed, 13 Nov 2019 11:03:35 GMT server: - Kestrel set-cookie: - - ARRAffinity=67805356da7fd76f3f23fbfdb764fdb3a0ec1eada561eb233809b1c41da7ac8a;Path=/;HttpOnly;Domain=webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf.scm.azurewebsites.net + - ARRAffinity=e11d3ad1bdae72b861d2157f2f6fc98a762dbb81735c6611fb619e80123b838c;Path=/;HttpOnly;Domain=webapp-remote-sshuutkqgghcbj5wyom57e7y6y.scm.azurewebsites.net transfer-encoding: - chunked status: @@ -1248,26 +1218,24 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/web","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3100' + - '2974' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:45 GMT + - Wed, 13 Nov 2019 11:03:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml index 6796972a99e..c9c9367cd19 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml @@ -13,25 +13,24 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '387' + - '431' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Aug 2019 22:00:01 GMT + - Thu, 14 Nov 2019 01:40:43 GMT expires: - '-1' pragma: @@ -65,9 +64,8 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -83,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:01 GMT + - Thu, 14 Nov 2019 01:40:44 GMT expires: - '-1' pragma: @@ -101,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -121,25 +119,24 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '387' + - '431' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Aug 2019 22:00:02 GMT + - Thu, 14 Nov 2019 01:40:45 GMT expires: - '-1' pragma: @@ -173,9 +170,8 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -183,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5705,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5705","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -193,7 +189,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:19 GMT + - Thu, 14 Nov 2019 01:41:02 GMT expires: - '-1' pragma: @@ -211,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -231,9 +227,8 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -241,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5705,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5705","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -251,7 +246,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:21 GMT + - Thu, 14 Nov 2019 01:41:03 GMT expires: - '-1' pragma: @@ -292,9 +287,8 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -310,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:21 GMT + - Thu, 14 Nov 2019 01:41:03 GMT expires: - '-1' pragma: @@ -328,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -348,9 +342,8 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -358,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5705,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5705","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -368,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:22 GMT + - Thu, 14 Nov 2019 01:41:04 GMT expires: - '-1' pragma: @@ -404,69 +397,38 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"Ruby - 2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby - 2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby - 2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby - 2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node.js","dependency":null,"majorVersions":[{"displayVersion":"Node.js - LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"PHP - 5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6.40-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6.40-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP - 7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.33-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.33-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP - 7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2.15-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2.15-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP - 7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":".NET Core 1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"Python - 3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python - 3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python - 2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '12309' + - '16883' content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:24 GMT + - Thu, 14 Nov 2019 01:41:05 GMT expires: - '-1' pragma: @@ -491,8 +453,8 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "localMySqlEnabled": + false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -503,34 +465,33 @@ interactions: Connection: - keep-alive Content-Length: - - '514' + - '496' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:28.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null}}' + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:10.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BDDA772EE8CD3A22C5AC9F49C1A5EE423465BFD8E3DB88A8F0E1A4557F9AB779","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3484' + - '3631' content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:47 GMT + - Thu, 14 Nov 2019 01:41:27 GMT etag: - - '"1D5586BD8783840"' + - '"1D59A8C97BCDC15"' expires: - '-1' pragma: @@ -548,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -572,28 +533,22 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-02-01 response: body: string: @@ -601,11 +556,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Wed, 21 Aug 2019 22:00:48 GMT + - Thu, 14 Nov 2019 01:41:28 GMT expires: - '-1' pragma: @@ -686,13 +641,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Wed, 21 Aug 2019 22:01:18 GMT + - Thu, 14 Nov 2019 01:42:22 GMT etag: - - W/"ca5-16acc376e90" + - W/"ca5-16d98916728" last-modified: - - Sat, 18 May 2019 18:32:26 GMT + - Fri, 04 Oct 2019 20:58:49 GMT set-cookie: - - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.azurewebsites.net + - ARRAffinity=4708f0803427ee636c9c0713542decccacd689d0f6d69fbd6071b25e331a151f;Path=/;HttpOnly;Domain=webapp-sshhttezeqyklq3op.azurewebsites.net x-powered-by: - Express status: @@ -712,412 +667,25 @@ interactions: ParameterSetName: - -g -n --timeout User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/web","name":"webapp-ssh000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' - headers: - cache-control: - - no-cache - content-length: - - '3052' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:01:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '3482' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:01:53 GMT - etag: - - '"1D5586BD8783840"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-11-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:01:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-11-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:01:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '3482' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:01:56 GMT - etag: - - '"1D5586BD8783840"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-11-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:01:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/publishingcredentials/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishingcredentials/$webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-ssh000003","publishingPassword":"1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-ssh000003:1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH@webapp-ssh000003.scm.azurewebsites.net"}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '774' + - '2926' content-type: - application/json date: - - Wed, 21 Aug 2019 22:01:59 GMT + - Thu, 14 Nov 2019 01:42:54 GMT expires: - '-1' pragma: @@ -1134,193 +702,9 @@ interactions: - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' x-powered-by: - ASP.NET status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '3482' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:02:00 GMT - etag: - - '"1D5586BD8783840"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-11-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:02:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://webapp-ssh000003.scm.azurewebsites.net/api/settings - response: - body: - string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_AUTH_ENABLED":"False","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","ScmType":"None","WEBSITE_SITE_NAME":"webapp-ssh000003","WEBSITE_NODE_DEFAULT_VERSION":"8.11"}' - headers: - content-length: - - '312' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Aug 2019 22:02:21 GMT - server: - - Kestrel - set-cookie: - - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net - transfer-encoding: - - chunked - vary: - - Accept-Encoding - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://webapp-ssh000003.scm.azurewebsites.net/AppServiceTunnel/Tunnel.ashx?GetStatus - response: - body: - string: SUCCESS:2222 - headers: - date: - - Wed, 21 Aug 2019 22:02:22 GMT - server: - - Kestrel - set-cookie: - - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net - transfer-encoding: - - chunked - status: - code: 200 - message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml index 2d6e4ee022d..6414bb95f21 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml @@ -14,14 +14,22 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +38,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:45 GMT +======= + - Thu, 14 Nov 2019 01:41:29 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,7 +76,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -72,8 +88,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +======= + US","properties":{"serverFarmId":27332,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27332","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -82,7 +103,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:56 GMT +======= + - Thu, 14 Nov 2019 01:41:39 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -100,7 +125,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1188' +======= + - '1194' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -121,14 +150,22 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -137,7 +174,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:57 GMT +======= + - Thu, 14 Nov 2019 01:41:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -171,7 +212,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -179,8 +224,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +======= + US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -189,7 +239,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:03 GMT +======= + - Thu, 14 Nov 2019 01:41:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -207,7 +261,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1187' +======= + - '1189' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -228,14 +286,22 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +310,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:05 GMT +======= + - Thu, 14 Nov 2019 01:41:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -278,7 +348,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -286,8 +360,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006","name":"ab1planname000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central +<<<<<<< HEAD US","properties":{"serverFarmId":29949,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29949","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":27334,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27334","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -296,7 +375,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:15 GMT +======= + - Thu, 14 Nov 2019 01:41:57 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -314,7 +397,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1190' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -335,7 +422,11 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -343,8 +434,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +======= + US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -353,7 +449,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:17 GMT +======= + - Thu, 14 Nov 2019 01:41:59 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -390,14 +490,22 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:25.8675463Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:25.8675463Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:25.7894141Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:08.5394426Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:08.5394426Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:41:08.4613740Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -406,7 +514,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:18 GMT +======= + - Thu, 14 Nov 2019 01:42:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -441,7 +553,11 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -457,7 +573,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:00:19 GMT +======= + - Thu, 14 Nov 2019 01:42:01 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -473,7 +593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -483,10 +603,15 @@ interactions: {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~2"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, +<<<<<<< HEAD {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}, {"name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "WEBSITE_CONTENTSHARE", "value": "functionappelastic000003"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' +======= + {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}], "alwaysOn": true, + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -497,26 +622,39 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD - '1282' +======= + - '947' +>>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central +<<<<<<< HEAD US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:28.4066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:05.7433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FBA6A0D1534E32FCB009ED629DD25AFEFB89630EA905ABC816672D588E0D7581","kind":"functionapp","inboundIpAddress":"104.43.246.71","possibleInboundIpAddresses":"104.43.246.71","outboundIpAddresses":"52.173.29.78,52.173.26.186,52.173.26.166","possibleOutboundIpAddresses":"104.43.246.71,52.173.24.19,52.173.26.122,52.173.26.85,13.89.219.71,52.173.29.78,52.173.26.186,52.173.26.166","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3829' content-type: - application/json @@ -524,6 +662,15 @@ interactions: - Fri, 27 Dec 2019 14:01:04 GMT etag: - '"1D5BCBDFEE8AD00"' +======= + - '3819' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:42:21 GMT + etag: + - '"1D59A8CB8D30375"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -541,7 +688,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '498' +======= + - '497' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -567,14 +718,22 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"af01bf73-0000-0300-0000-5e060ead0000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"15cbbc53-eeb7-473f-82a3-daadfe21f52c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5698bd2a-9c0f-4266-8ab6-4567258f3b95","ConnectionString":"InstrumentationKey=5698bd2a-9c0f-4266-8ab6-4567258f3b95","Name":"functionappelastic000003","CreationDate":"2019-12-27T14:01:17.3350763+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"8d008bd5-0000-0300-0000-5dccb1040000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"e3d0ee80-0c87-4b49-809b-69120b643fb4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cbf5f06c-cd4f-4221-9554-52034c6523d9","ConnectionString":"InstrumentationKey=cbf5f06c-cd4f-4221-9554-52034c6523d9","Name":"functionappelastic000003","CreationDate":"2019-11-14T01:42:27.8097125+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> Re-record test for app service headers: access-control-expose-headers: - Request-Context @@ -585,7 +744,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:18 GMT +======= + - Thu, 14 Nov 2019 01:43:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -603,7 +766,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1190' +======= + - '1195' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -626,24 +793,40 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1170' content-type: - application/json date: - Fri, 27 Dec 2019 14:01:20 GMT +======= + - '859' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:43:07 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -671,10 +854,14 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappelastic000003", "APPINSIGHTS_INSTRUMENTATIONKEY": "5698bd2a-9c0f-4266-8ab6-4567258f3b95"}}''' +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "cbf5f06c-cd4f-4221-9554-52034c6523d9"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -685,26 +872,39 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD - '960' +======= + - '645' +>>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003","APPINSIGHTS_INSTRUMENTATIONKEY":"5698bd2a-9c0f-4266-8ab6-4567258f3b95"}}' +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"cbf5f06c-cd4f-4221-9554-52034c6523d9"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1242' content-type: - application/json @@ -712,6 +912,15 @@ interactions: - Fri, 27 Dec 2019 14:01:22 GMT etag: - '"1D5BCBE1E77B22B"' +======= + - '931' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:43:08 GMT + etag: + - '"1D59A8CDDE2EDB5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -729,7 +938,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1190' +======= + - '1195' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -750,19 +963,28 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central +<<<<<<< HEAD US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:21.8266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:43:08.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FBA6A0D1534E32FCB009ED629DD25AFEFB89630EA905ABC816672D588E0D7581","kind":"functionapp","inboundIpAddress":"104.43.246.71","possibleInboundIpAddresses":"104.43.246.71","outboundIpAddresses":"52.173.29.78,52.173.26.186,52.173.26.166","possibleOutboundIpAddresses":"104.43.246.71,52.173.24.19,52.173.26.122,52.173.26.85,13.89.219.71,52.173.29.78,52.173.26.186,52.173.26.166","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3827' content-type: - application/json @@ -770,6 +992,15 @@ interactions: - Fri, 27 Dec 2019 14:01:23 GMT etag: - '"1D5BCBE1E77B22B"' +======= + - '3817' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:43:10 GMT + etag: + - '"1D59A8CDDE2EDB5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -806,7 +1037,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -814,8 +1049,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +======= + US","properties":{"serverFarmId":27332,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27332","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -824,7 +1064,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:24 GMT +======= + - Thu, 14 Nov 2019 01:43:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -861,7 +1105,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -869,6 +1117,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' headers: @@ -1106,6 +1355,10 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +======= + US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1114,7 +1367,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:38 GMT +======= + - Thu, 14 Nov 2019 01:43:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml index ee274c94c05..c8b0b3d433d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:44 GMT + - Wed, 13 Nov 2019 10:58:58 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:45 GMT + - Wed, 13 Nov 2019 10:59:00 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:45 GMT + - Wed, 13 Nov 2019 10:59:01 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22934,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_22934","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:53 GMT + - Wed, 13 Nov 2019 10:59:26 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1191' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22934,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_22934","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:53 GMT + - Wed, 13 Nov 2019 10:59:28 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:55 GMT + - Wed, 13 Nov 2019 10:59:28 GMT expires: - '-1' pragma: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22934,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_22934","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:56 GMT + - Wed, 13 Nov 2019 10:59:30 GMT expires: - '-1' pragma: @@ -403,26 +403,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002","name":"web000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:45:59.9333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2B79621B2810F62B3A91C030F6F03468C8C06CEEFA5F23D73C8C98D6C2EF2AAA","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:38.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8095C28F2324906B2D81BC62B4CABB2E016CB5D9D0905193ECBF0B5DC92F8197","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3530' + - '3537' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:16 GMT + - Wed, 13 Nov 2019 10:59:52 GMT etag: - - '"1D587FCBA431D8B"' + - '"1D59A11737DA535"' expires: - '-1' pragma: @@ -465,26 +465,21 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002/publishxml?api-version=2018-02-01 response: body: string: @@ -492,11 +487,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:46:17 GMT + - Wed, 13 Nov 2019 10:59:54 GMT expires: - '-1' pragma: @@ -510,7 +505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11997' x-powered-by: - ASP.NET status: @@ -531,26 +526,26 @@ interactions: - -g -n --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002","name":"web000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:00.3766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2B79621B2810F62B3A91C030F6F03468C8C06CEEFA5F23D73C8C98D6C2EF2AAA","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:42.0033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8095C28F2324906B2D81BC62B4CABB2E016CB5D9D0905193ECBF0B5DC92F8197","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3540' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:18 GMT + - Wed, 13 Nov 2019 10:59:55 GMT etag: - - '"1D587FCBA431D8B"' + - '"1D59A11737DA535"' expires: - '-1' pragma: @@ -589,11 +584,11 @@ interactions: - -g -n --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2018-02-01 response: body: string: '' @@ -603,9 +598,9 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:46:21 GMT + - Wed, 13 Nov 2019 10:59:58 GMT etag: - - '"1D587FCBA431D8B"' + - '"1D59A11737DA535"' expires: - '-1' pragma: @@ -640,7 +635,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -648,8 +643,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22934,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_22934","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -658,7 +653,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:23 GMT + - Wed, 13 Nov 2019 10:59:59 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml index 419c9086dee..cbc1e1f6b65 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:17 GMT + - Wed, 13 Nov 2019 11:01:00 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:23 GMT + - Wed, 13 Nov 2019 11:01:02 GMT expires: - '-1' pragma: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:24 GMT + - Wed, 13 Nov 2019 11:01:03 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28412,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28412","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23560,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23560","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:33 GMT + - Wed, 13 Nov 2019 11:01:15 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1193' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28412,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28412","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23560,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23560","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:34 GMT + - Wed, 13 Nov 2019 11:01:16 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:35 GMT + - Wed, 13 Nov 2019 11:01:16 GMT expires: - '-1' pragma: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28412,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28412","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23560,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23560","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:36 GMT + - Wed, 13 Nov 2019 11:01:17 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '520' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:50:39.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C6C8EA6E17B18F0238BB7F95A376D826D72D22099CE1E6790BB8C670E05BD6FE","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:20.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3530' + - '3542' content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:55 GMT + - Wed, 13 Nov 2019 11:01:37 GMT etag: - - '"1D587FD612332B0"' + - '"1D59A11AEAA9235"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '498' x-powered-by: - ASP.NET status: @@ -466,28 +465,22 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2018-02-01 response: body: string: @@ -495,11 +488,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:50:57 GMT + - Wed, 13 Nov 2019 11:01:38 GMT expires: - '-1' pragma: @@ -513,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11998' x-powered-by: - ASP.NET status: @@ -534,26 +527,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:50:40.347","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C6C8EA6E17B18F0238BB7F95A376D826D72D22099CE1E6790BB8C670E05BD6FE","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:21.2833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3529' + - '3545' content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:58 GMT + - Wed, 13 Nov 2019 11:01:39 GMT etag: - - '"1D587FD612332B0"' + - '"1D59A11AEAA9235"' expires: - '-1' pragma: @@ -597,26 +590,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/staging?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/staging?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/staging","name":"slot-traffic-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003(staging)","state":"Running","hostNames":["slot-traffic-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-staging.azurewebsites.net","slot-traffic-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:06.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__ea6f","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0125CEDE4618A39EC43F9EDF160B026BCF9A4E3BE9B2F187402662F277CAB5C3","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003(staging)","state":"Running","hostNames":["slot-traffic-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-staging.azurewebsites.net","slot-traffic-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:43.93","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__e8b9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"17FFFB22E34D71B94BD9341D95C0D71ABE21F49A6AB9D8376A76ACBD33BF3703","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3622' + - '3633' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:23 GMT + - Wed, 13 Nov 2019 11:01:59 GMT etag: - - '"1D587FD612332B0"' + - '"1D59A11AEAA9235"' expires: - '-1' pragma: @@ -634,7 +627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -655,26 +648,26 @@ interactions: - -g -n -d User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:50:40.347","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C6C8EA6E17B18F0238BB7F95A376D826D72D22099CE1E6790BB8C670E05BD6FE","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:21.2833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3529' + - '3545' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:24 GMT + - Wed, 13 Nov 2019 11:02:01 GMT etag: - - '"1D587FD612332B0"' + - '"1D59A11AEAA9235"' expires: - '-1' pragma: @@ -711,26 +704,24 @@ interactions: - -g -n -d User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3113' + - '2917' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:25 GMT + - Wed, 13 Nov 2019 11:02:02 GMT expires: - '-1' pragma: @@ -760,16 +751,13 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - [{"actionHostName": "slot-traffic-web000003-staging.azurewebsites.net", "reroutePercentage": - 15.0, "name": "staging"}]}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": [{"actionHostName": "slot-traffic-web000003-staging.azurewebsites.net", + "reroutePercentage": 15.0, "name": "staging"}]}, "autoHealEnabled": false, "vnetName": + "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: @@ -781,35 +769,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1471' + - '1190' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n -d User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3601' + - '3405' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:28 GMT + - Wed, 13 Nov 2019 11:02:05 GMT etag: - - '"1D587FD612332B0"' + - '"1D59A11AEAA9235"' expires: - '-1' pragma: @@ -827,7 +813,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1190' x-powered-by: - ASP.NET status: @@ -848,26 +834,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3619' + - '3423' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:30 GMT + - Wed, 13 Nov 2019 11:02:07 GMT expires: - '-1' pragma: @@ -904,26 +888,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:28.597","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C6C8EA6E17B18F0238BB7F95A376D826D72D22099CE1E6790BB8C670E05BD6FE","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:05.85","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3529' + - '3540' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:30 GMT + - Wed, 13 Nov 2019 11:02:08 GMT etag: - - '"1D587FD7DE59050"' + - '"1D59A11C93AE7A0"' expires: - '-1' pragma: @@ -960,26 +944,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3619' + - '3423' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:32 GMT + - Wed, 13 Nov 2019 11:02:09 GMT expires: - '-1' pragma: @@ -1006,19 +988,15 @@ interactions: "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", + false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": + true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1029,35 +1007,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1389' + - '1108' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3099' + - '2903' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:34 GMT + - Wed, 13 Nov 2019 11:02:10 GMT etag: - - '"1D587FD7DE59050"' + - '"1D59A11C93AE7A0"' expires: - '-1' pragma: @@ -1075,7 +1051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1178' + - '1192' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml index 2d9846703ad..701402309c5 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_json000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:46:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:22 GMT + - Wed, 13 Nov 2019 11:00:10 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:23 GMT + - Wed, 13 Nov 2019 11:00:10 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_json000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:46:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:24 GMT + - Wed, 13 Nov 2019 11:00:10 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27384,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_27384","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26284,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26284","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:31 GMT + - Wed, 13 Nov 2019 11:00:19 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1192' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27384,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_27384","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26284,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26284","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:32 GMT + - Wed, 13 Nov 2019 11:00:20 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:34 GMT + - Wed, 13 Nov 2019 11:00:21 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27384,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_27384","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26284,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26284","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:34 GMT + - Wed, 13 Nov 2019 11:00:23 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '554' + - '536' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_json000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_json000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:39.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"04F5CD622B450EBEA4757808C3D03D0C8843D2D167FA2D6BFA083E751BD0336B","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_json000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_json000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_json000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:27.377","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1BF5399B869D685DBEAE5B6EF1829F5565A2C55DAF7A1F9EFAD588F0D5607D75","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_json000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3748' + - '3723' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:56 GMT + - Wed, 13 Nov 2019 11:00:43 GMT etag: - - '"1D587FCD21E3100"' + - '"1D59A118ED653B0"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '493' x-powered-by: - ASP.NET status: @@ -466,29 +465,23 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-02-01 response: body: string: @@ -496,11 +489,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:46:57 GMT + - Wed, 13 Nov 2019 11:00:44 GMT expires: - '-1' pragma: @@ -514,7 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -537,11 +530,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -554,7 +547,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:58 GMT + - Wed, 13 Nov 2019 11:00:45 GMT expires: - '-1' pragma: @@ -572,7 +565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -598,11 +591,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -615,9 +608,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:59 GMT + - Wed, 13 Nov 2019 11:00:47 GMT etag: - - '"1D587FCDDF00260"' + - '"1D59A119A4607E0"' expires: - '-1' pragma: @@ -635,7 +628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' x-powered-by: - ASP.NET status: @@ -658,11 +651,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -675,7 +668,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:01 GMT + - Wed, 13 Nov 2019 11:00:47 GMT expires: - '-1' pragma: @@ -693,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -719,11 +712,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -736,9 +729,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:02 GMT + - Wed, 13 Nov 2019 11:00:48 GMT etag: - - '"1D587FCDF2F6030"' + - '"1D59A119B8C91A0"' expires: - '-1' pragma: @@ -756,7 +749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1193' x-powered-by: - ASP.NET status: @@ -777,11 +770,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West @@ -794,7 +787,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:02 GMT + - Wed, 13 Nov 2019 11:00:49 GMT expires: - '-1' pragma: @@ -835,11 +828,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West @@ -852,7 +845,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:03 GMT + - Wed, 13 Nov 2019 11:00:49 GMT expires: - '-1' pragma: @@ -870,7 +863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1192' x-powered-by: - ASP.NET status: @@ -891,26 +884,24 @@ interactions: - -g -n --generic-configurations User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3161' + - '2965' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:05 GMT + - Wed, 13 Nov 2019 11:00:51 GMT expires: - '-1' pragma: @@ -942,14 +933,10 @@ interactions: "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -960,35 +947,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1368' + - '1086' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --generic-configurations User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":true,"requestTracingExpirationTime":"9999-12-31T23:59:00Z","remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":true,"requestTracingExpirationTime":"9999-12-31T23:59:00Z","remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3200' + - '3002' content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:06 GMT + - Wed, 13 Nov 2019 11:00:53 GMT etag: - - '"1D587FCDF2F6030"' + - '"1D59A119B8C91A0"' expires: - '-1' pragma: @@ -1006,7 +991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1164' + - '1185' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml index 6165662a98d..1b47ea0f0d8 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T07:11:57Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:03 GMT +======= + - Thu, 14 Nov 2019 01:38:23 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:07 GMT +======= + - Thu, 14 Nov 2019 01:38:25 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1199' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -126,7 +147,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T07:11:57Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +160,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:06 GMT +======= + - Thu, 14 Nov 2019 01:38:24 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +197,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +211,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":26271,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26271","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":21923,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21923","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +226,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:16 GMT +======= + - Thu, 14 Nov 2019 01:38:35 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +248,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1199' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +272,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +286,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":26271,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26271","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":21923,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21923","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:17 GMT +======= + - Thu, 14 Nov 2019 01:38:37 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +346,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +368,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:18 GMT +======= + - Thu, 14 Nov 2019 01:38:38 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -320,7 +390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -340,8 +410,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +424,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":26271,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26271","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":21923,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21923","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +439,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:18 GMT +======= + - Thu, 14 Nov 2019 01:38:39 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,20 +486,30 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T07:12:23.963","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DD566C1A86A0AC0E780AA150DFCFF2228F539373874E01CB3F86828A1D85464E","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:43.6333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B7C1B9E1DD09704424CF5CAFAAB3428E6ADD92B69C8153D95C5E96872F877BF","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3512' content-type: - application/json @@ -423,6 +517,15 @@ interactions: - Wed, 13 Nov 2019 07:12:40 GMT etag: - '"1D599F1B2F70980"' +======= + - '3524' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:39:04 GMT + etag: + - '"1D59A8C403F8020"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -464,16 +567,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +612,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:41 GMT +======= + - Thu, 14 Nov 2019 01:39:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -532,27 +654,34 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:44 GMT +======= + - Thu, 14 Nov 2019 01:39:07 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -586,13 +715,8 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", - "action": "Allow", "tag": "Default", "priority": 200, "name": "developers"}], - "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -603,35 +727,44 @@ interactions: Connection: - keep-alive Content-Length: - - '1464' + - '1072' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3206' + - '2903' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 07:12:46 GMT etag: - '"1D599F1B2F70980"' +======= + - Thu, 14 Nov 2019 01:39:10 GMT + etag: + - '"1D59A8C403F8020"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -649,7 +782,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml index 432d49d44f6..8b02d8be0d0 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:02Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:44 GMT +======= + - Thu, 14 Nov 2019 01:40:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:44 GMT +======= + - Thu, 14 Nov 2019 01:40:09 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -126,7 +143,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:02Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +156,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:45 GMT +======= + - Thu, 14 Nov 2019 01:40:09 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +193,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,17 +207,26 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":34945,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34945","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":145474,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:52 GMT +======= + - Thu, 14 Nov 2019 01:40:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +244,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1195' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +268,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,17 +282,26 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":34945,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34945","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":145474,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:54 GMT +======= + - Thu, 14 Nov 2019 01:40:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +342,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +364,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:54 GMT +======= + - Thu, 14 Nov 2019 01:40:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -340,8 +406,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,17 +420,26 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":34945,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34945","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":145474,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:55 GMT +======= + - Thu, 14 Nov 2019 01:40:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,20 +482,30 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:13:59.48","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"27C6FFEDEA9BB539656EF3603E5BB0A443F2897803A464E5560760B7F1D33E45","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:25.193","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FB651F7CB5F34E8807C806B7B6E0E5EE8E76F936C76F39738D9BE2EAFC338C50","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3653' content-type: - application/json @@ -423,6 +513,15 @@ interactions: - Wed, 13 Nov 2019 06:14:16 GMT etag: - '"1D599E98A0041C0"' +======= + - '3528' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:41 GMT + etag: + - '"1D59A8C7CC1C3F0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -440,7 +539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -464,16 +563,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +608,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:18 GMT +======= + - Thu, 14 Nov 2019 01:40:41 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -532,27 +650,34 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:18 GMT +======= + - Thu, 14 Nov 2019 01:40:43 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -586,13 +711,8 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": - "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -603,35 +723,44 @@ interactions: Connection: - keep-alive Content-Length: - - '1464' + - '1072' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3206' + - '2903' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:21 GMT etag: - '"1D599E98A0041C0"' +======= + - Thu, 14 Nov 2019 01:40:45 GMT + etag: + - '"1D59A8C7CC1C3F0"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -649,7 +778,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1194' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml index e27c1acecee..d7d4376fc0f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:06Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:46 GMT +======= + - Thu, 14 Nov 2019 01:40:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:48 GMT +======= + - Thu, 14 Nov 2019 01:40:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -126,7 +143,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:06Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +156,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:48 GMT +======= + - Thu, 14 Nov 2019 01:40:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +193,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +207,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23549,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":33330,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +222,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:01 GMT +======= + - Thu, 14 Nov 2019 01:40:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +244,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +268,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +282,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23549,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":33330,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +297,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:01 GMT +======= + - Thu, 14 Nov 2019 01:40:19 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +342,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +364,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:03 GMT +======= + - Thu, 14 Nov 2019 01:40:19 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -320,7 +386,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -340,8 +410,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +424,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23549,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":33330,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +439,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:03 GMT +======= + - Thu, 14 Nov 2019 01:40:20 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,20 +486,30 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:07.46","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"08A385EAF036166EDDEFE9D1157A08BC118561902E985E7881F41C376C4C796A","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:23.613","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6B30CA540DDECBDDA1C263434C2BD24DE9B363C5CC2E28E8411F3CD73374B9A2","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3539' content-type: - application/json @@ -423,6 +517,15 @@ interactions: - Wed, 13 Nov 2019 06:14:24 GMT etag: - '"1D599E98EBAC995"' +======= + - '3520' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:40 GMT + etag: + - '"1D59A8C7BD31E30"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -464,16 +567,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +612,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:25 GMT +======= + - Thu, 14 Nov 2019 01:40:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -540,7 +662,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:06Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -549,7 +675,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:25 GMT +======= + - Thu, 14 Nov 2019 01:40:41 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -583,8 +713,13 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -592,15 +727,26 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"e232ad50-f887-4f58-9102-8a68fefe26c5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"resourceGuid\": \"cf728304-8e68-4163-8f9b-498089de666e\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"9f8f7d70-c9aa-4080-ab51-d4ff543a5ee4\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"6f5631f4-2d8c-4adf-bbe8-0b371c8e79c4\",\r\n \"addressSpace\": +>>>>>>> Re-record test for app service {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"e232ad50-f887-4f58-9102-8a68fefe26c5\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"9f8f7d70-c9aa-4080-ab51-d4ff543a5ee4\\\"\",\r\n +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -609,7 +755,11 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fbb18d1e-7f11-46bc-bf19-1f67d5bae269?api-version=2019-09-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7963a6ba-ecd5-430e-a94a-bd83e8969212?api-version=2019-09-01 +>>>>>>> Re-record test for app service cache-control: - no-cache content-length: @@ -617,7 +767,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:29 GMT +======= + - Thu, 14 Nov 2019 01:40:43 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -630,7 +784,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 7f41f737-30fc-4c88-9901-9cca19d04352 +======= + - 34dd120a-962b-43de-8efa-14da8fed245a +>>>>>>> Re-record test for app service x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -650,6 +808,7 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET @@ -704,6 +863,12 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fbb18d1e-7f11-46bc-bf19-1f67d5bae269?api-version=2019-09-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7963a6ba-ecd5-430e-a94a-bd83e8969212?api-version=2019-09-01 +>>>>>>> Re-record test for app service response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -715,7 +880,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:43 GMT +======= + - Thu, 14 Nov 2019 01:40:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -732,7 +901,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 136ff14a-fc2f-4269-9a14-84575c36f98c +======= + - a1d674d5-ba95-414d-85f0-67bdb5efcbb1 +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -750,22 +923,38 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"0b70db94-a938-449b-a14f-b3afb433442f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"resourceGuid\": \"cf728304-8e68-4163-8f9b-498089de666e\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"b5e2150c-18e6-4139-9868-16914deaf4ad\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"6f5631f4-2d8c-4adf-bbe8-0b371c8e79c4\",\r\n \"addressSpace\": +>>>>>>> Re-record test for app service {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"0b70db94-a938-449b-a14f-b3afb433442f\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"b5e2150c-18e6-4139-9868-16914deaf4ad\\\"\",\r\n +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -780,9 +969,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:44 GMT etag: - W/"0b70db94-a938-449b-a14f-b3afb433442f" +======= + - Thu, 14 Nov 2019 01:40:48 GMT + etag: + - W/"b5e2150c-18e6-4139-9868-16914deaf4ad" +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -799,7 +994,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 75dbed34-6f5a-4cd2-812c-d374d78863e3 +======= + - be0ea838-0801-48a0-8f6a-39aaf8e61932 +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -817,27 +1016,34 @@ interactions: ParameterSetName: - -g -n --rule-name --action --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:45 GMT +======= + - Thu, 14 Nov 2019 01:40:49 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -873,27 +1079,34 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:45 GMT +======= + - Thu, 14 Nov 2019 01:40:50 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -929,8 +1142,13 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -938,7 +1156,11 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"0b70db94-a938-449b-a14f-b3afb433442f\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"b5e2150c-18e6-4139-9868-16914deaf4ad\\\"\",\r\n \"properties\": +>>>>>>> Re-record test for app service {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: @@ -949,9 +1171,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:45 GMT etag: - W/"0b70db94-a938-449b-a14f-b3afb433442f" +======= + - Thu, 14 Nov 2019 01:40:49 GMT + etag: + - W/"b5e2150c-18e6-4139-9868-16914deaf4ad" +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -968,15 +1196,24 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - f8074a84-2c25-4359-aec8-b3681b7985b9 +======= + - ec3009e4-b841-4bad-bc6c-64508935b2b9 +>>>>>>> Re-record test for app service status: code: 200 message: OK - request: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": +<<<<<<< HEAD "Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}, "name": "endpoint-subnet", "etag": "W/\\"0b70db94-a938-449b-a14f-b3afb433442f\\""}''' +======= + "Microsoft.Web"}], "delegations": [], "privateEndpointNetworkPolicies": "Enabled", + "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "endpoint-subnet"}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -987,14 +1224,23 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD - '479' +======= + - '484' +>>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -1002,7 +1248,11 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1fdc448d-9d41-4771-9ed8-4358eb217b4a\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"ee8fccb5-1675-41c3-83a2-60f29be31676\\\"\",\r\n \"properties\": +>>>>>>> Re-record test for app service {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1010,7 +1260,11 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb24e96d-5bb7-445f-8816-354347d98de9?api-version=2019-02-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8339bd73-5ea7-4abd-807b-af6dd2365517?api-version=2019-09-01 +>>>>>>> Re-record test for app service cache-control: - no-cache content-length: @@ -1018,7 +1272,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:46 GMT +======= + - Thu, 14 Nov 2019 01:40:50 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1035,9 +1293,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 7b9b300d-967f-461a-afc5-0e5fab6bc96c x-ms-ratelimit-remaining-subscription-writes: - '1199' +======= + - 95902bc6-bc84-4007-9739-9f02eaf806f2 + x-ms-ratelimit-remaining-subscription-writes: + - '1194' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1055,6 +1319,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET @@ -1109,6 +1374,12 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb24e96d-5bb7-445f-8816-354347d98de9?api-version=2019-02-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8339bd73-5ea7-4abd-807b-af6dd2365517?api-version=2019-09-01 +>>>>>>> Re-record test for app service response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1120,7 +1391,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:15:00 GMT +======= + - Thu, 14 Nov 2019 01:40:55 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1137,7 +1412,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - ab74135f-07a1-4ce2-8954-6755d7afe989 +======= + - c20f5fdf-0052-4442-95b9-c21947f589ab +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1155,14 +1434,23 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet?api-version=2019-02-01 response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"dab39763-1529-46b5-848d-df0f25871bfa\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"d54173cb-bd38-443c-84ac-8871436e74a1\\\"\",\r\n \"properties\": +>>>>>>> Re-record test for app service {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1176,9 +1464,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:15:01 GMT etag: - W/"dab39763-1529-46b5-848d-df0f25871bfa" +======= + - Thu, 14 Nov 2019 01:40:55 GMT + etag: + - W/"d54173cb-bd38-443c-84ac-8871436e74a1" +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1195,12 +1489,16 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 59187f8c-38ff-48d4-983f-c2baf9685891 +======= + - ddc849f6-8232-4f23-9a58-90b8e755463f +>>>>>>> Re-record test for app service status: code: 200 message: OK - request: - body: 'b''{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": @@ -1208,17 +1506,11 @@ interactions: 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\\\wwwroot", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}, {"vnetSubnetResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet", - "action": "Allow", "tag": "Default", "priority": 150, "name": "vnet-integration"}], - "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}''' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1229,35 +1521,44 @@ interactions: Connection: - keep-alive Content-Length: - - '1702' + - '1072' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3444' + - '2903' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:15:05 GMT etag: - '"1D599E98EBAC995"' +======= + - Thu, 14 Nov 2019 01:40:57 GMT + etag: + - '"1D59A8C7BD31E30"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1275,7 +1576,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1198' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml index 5f7f006e8e6..647f2061f94 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:17Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:46 GMT +======= + - Thu, 14 Nov 2019 01:40:20 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:48 GMT +======= + - Thu, 14 Nov 2019 01:40:22 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -126,7 +143,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:17Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +156,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:47 GMT +======= + - Thu, 14 Nov 2019 01:40:22 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +193,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +207,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":22809,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22809","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":23611,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23611","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +222,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:57 GMT +======= + - Thu, 14 Nov 2019 01:40:29 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +244,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +268,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +282,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":22809,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22809","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":23611,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23611","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +297,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:58 GMT +======= + - Thu, 14 Nov 2019 01:40:30 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +342,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +364,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:59 GMT +======= + - Thu, 14 Nov 2019 01:40:31 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -320,7 +386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -340,8 +406,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +420,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":22809,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22809","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":23611,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23611","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +435,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:59 GMT +======= + - Thu, 14 Nov 2019 01:40:32 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,20 +482,30 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:04.0333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AA6395449F105BEA12DDEC9C3E2E57FDC6553D0D1A34A3B3DDE9FC482CF0716F","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:37.4433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5B0C1A053459CA0BA8DBACFAE3A8037B91122E753111F39723E4B9E1342FA8C0","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3542' content-type: - application/json @@ -423,6 +513,15 @@ interactions: - Wed, 13 Nov 2019 06:14:20 GMT etag: - '"1D599E98D6C9EB5"' +======= + - '3544' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:52 GMT + etag: + - '"1D59A8C8406C735"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -464,16 +563,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +608,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:22 GMT +======= + - Thu, 14 Nov 2019 01:40:52 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -532,27 +650,34 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:23 GMT +======= + - Thu, 14 Nov 2019 01:40:54 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -586,13 +711,8 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", - "action": "Allow", "tag": "Default", "priority": 200, "name": "developers"}], - "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -603,12 +723,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1464' + - '1072' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 accept-language: @@ -747,27 +868,35 @@ interactions: User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3101' + - '2903' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:30 GMT etag: - '"1D599E9999876F5"' +======= + - Thu, 14 Nov 2019 01:40:56 GMT + etag: + - '"1D59A8C8406C735"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml index a67e5d89aa8..2d8bfaf548e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:57Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:46 GMT +======= + - Thu, 14 Nov 2019 01:40:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:47 GMT +======= + - Thu, 14 Nov 2019 01:40:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1198' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -126,7 +147,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:57Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +160,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:47 GMT +======= + - Thu, 14 Nov 2019 01:40:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +197,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +211,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":22810,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22810","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":24700,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24700","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +226,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:57 GMT +======= + - Thu, 14 Nov 2019 01:40:08 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +248,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1198' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +272,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +286,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":22810,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22810","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":24700,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24700","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:58 GMT +======= + - Thu, 14 Nov 2019 01:40:09 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +346,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +368,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:59 GMT +======= + - Thu, 14 Nov 2019 01:40:09 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -340,8 +410,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +424,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":22810,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22810","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":24700,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24700","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +439,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:00 GMT +======= + - Thu, 14 Nov 2019 01:40:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,20 +486,30 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:06.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"21124B1D3DC6AAFB8BAD11D122A6BD19D782E8C166429030314B9A2512771F81","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:14.043","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1F5C034A8D979EB2737D4AF1AE8A8B2446B9E40CE201BFA6B7972EAF37ECD45B","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3537' content-type: - application/json @@ -423,6 +517,15 @@ interactions: - Wed, 13 Nov 2019 06:14:21 GMT etag: - '"1D599E98DEF5640"' +======= + - '3524' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:32 GMT + etag: + - '"1D59A8C764D3D10"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -464,16 +567,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +612,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:22 GMT +======= + - Thu, 14 Nov 2019 01:40:33 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -512,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -532,27 +654,34 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:23 GMT +======= + - Thu, 14 Nov 2019 01:40:34 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -586,13 +715,8 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": - "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -603,12 +727,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1464' + - '1072' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 accept-language: @@ -747,27 +872,35 @@ interactions: User-Agent: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3101' + - '2903' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:29 GMT etag: - '"1D599E998F83F55"' +======= + - Thu, 14 Nov 2019 01:40:37 GMT + etag: + - '"1D59A8C764D3D10"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -785,7 +918,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1194' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml index ff70fd433d1..a96d56e1cbb 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:35Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:45 GMT +======= + - Wed, 13 Nov 2019 10:56:38 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:45 GMT +======= + - Wed, 13 Nov 2019 10:56:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -126,7 +143,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:35Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +156,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:46 GMT +======= + - Wed, 13 Nov 2019 10:56:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +193,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +207,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23642,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23642","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":50104,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_50104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +222,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:55 GMT +======= + - Wed, 13 Nov 2019 10:56:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +244,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1198' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +268,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +282,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23642,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23642","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":50104,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_50104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +297,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:57 GMT +======= + - Wed, 13 Nov 2019 10:56:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +342,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +364,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:57 GMT +======= + - Wed, 13 Nov 2019 10:56:49 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -320,7 +386,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -340,8 +410,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +424,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23642,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23642","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":50104,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_50104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +439,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:59 GMT +======= + - Wed, 13 Nov 2019 10:56:50 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,27 +486,42 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:05.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CAA165920CC1F7DEB5C4FF3058136D6A163E2BBEBBCFCB365D34DF829562871C","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:56:53.597","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCADAAFC83A98D40EA9C840AB681D24DE3D348F61EA08E0B6719A219015F23F3","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3537' + - '3528' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:22 GMT etag: - '"1D599E98DAAAC20"' +======= + - Wed, 13 Nov 2019 10:57:09 GMT + etag: + - '"1D59A110F669400"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -440,7 +539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -464,16 +563,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +608,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:25 GMT +======= + - Wed, 13 Nov 2019 10:57:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -532,27 +650,34 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:25 GMT +======= + - Wed, 13 Nov 2019 10:57:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -586,12 +711,8 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + false, "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -602,35 +723,50 @@ interactions: Connection: - keep-alive Content-Length: - - '1354' + - '1071' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3100' + - '2902' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:30 GMT etag: - '"1D599E98DAAAC20"' +======= + - Wed, 13 Nov 2019 10:57:13 GMT + etag: + - '"1D59A110F669400"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -648,7 +784,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -668,27 +808,40 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3118' + - '2920' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:31 GMT +======= + - Wed, 13 Nov 2019 10:57:14 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -722,12 +875,8 @@ interactions: "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -738,35 +887,50 @@ interactions: Connection: - keep-alive Content-Length: - - '1391' + - '1108' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '3101' + - '2903' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:38 GMT etag: - '"1D599E99C2919EB"' +======= + - Wed, 13 Nov 2019 10:57:16 GMT + etag: + - '"1D59A111B449A60"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -784,7 +948,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1195' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml index e991dd5d21c..ca721a02859 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:30Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:47 GMT +======= + - Wed, 13 Nov 2019 10:56:34 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:47 GMT +======= + - Wed, 13 Nov 2019 10:56:36 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -126,7 +147,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:30Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +160,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:48 GMT +======= + - Wed, 13 Nov 2019 10:56:36 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +197,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +211,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":145426,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145426","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":33283,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33283","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +226,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:57 GMT +======= + - Wed, 13 Nov 2019 10:56:43 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +248,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +272,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +286,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":145426,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145426","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":33283,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33283","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:58 GMT +======= + - Wed, 13 Nov 2019 10:56:45 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +346,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +368,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:59 GMT +======= + - Wed, 13 Nov 2019 10:56:45 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -320,7 +390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -340,8 +410,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +424,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":145426,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145426","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":33283,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33283","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +439,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:59 GMT +======= + - Wed, 13 Nov 2019 10:56:45 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,20 +486,30 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:05.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BD497F33D097DD288B288ADBE7601C79AFB96AD949F9BF847594926077AFD3F3","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:56:49.427","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7A6D31E754AA072E70F0A6D0F27285583B70B3D50BEB5E3295B9F73669E1B07A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3527' content-type: - application/json @@ -423,6 +517,15 @@ interactions: - Wed, 13 Nov 2019 06:14:21 GMT etag: - '"1D599E98DABBD90"' +======= + - '3520' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 10:57:06 GMT + etag: + - '"1D59A110CE4A410"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -464,16 +567,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +612,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:22 GMT +======= + - Wed, 13 Nov 2019 10:57:07 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -532,27 +654,34 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:23 GMT +======= + - Wed, 13 Nov 2019 10:57:07 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -586,12 +715,8 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": - 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + false, "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -602,35 +727,44 @@ interactions: Connection: - keep-alive Content-Length: - - '1354' + - '1071' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3100' + - '2902' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:25 GMT etag: - '"1D599E98DABBD90"' +======= + - Wed, 13 Nov 2019 10:57:09 GMT + etag: + - '"1D59A110CE4A410"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -648,7 +782,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1191' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml index 0dd7999893b..b60f83c32b3 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:10Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:46 GMT +======= + - Thu, 14 Nov 2019 01:40:14 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:47 GMT +======= + - Thu, 14 Nov 2019 01:40:14 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -126,7 +143,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:10Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +156,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:46 GMT +======= + - Thu, 14 Nov 2019 01:40:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +193,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +207,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23979,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23979","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":24044,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24044","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +222,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:54 GMT +======= + - Thu, 14 Nov 2019 01:40:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +244,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +268,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +282,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23979,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23979","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":24044,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24044","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +297,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:55 GMT +======= + - Thu, 14 Nov 2019 01:40:21 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +342,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +364,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:56 GMT +======= + - Thu, 14 Nov 2019 01:40:22 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -340,8 +406,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +420,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":23979,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23979","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":24044,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24044","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +435,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:13:57 GMT +======= + - Thu, 14 Nov 2019 01:40:23 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -402,16 +482,25 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:02.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1611A51A05298CA20BC74375BF6D4C1544AD2F409A22F468DA591817DD0480CA","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:26.1366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D488C807D15CBD5CF56F7358C6E9B423A2FC3D9A0E303AB6538B0A746AD544E5","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -420,9 +509,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:19 GMT etag: - '"1D599E98C00718B"' +======= + - Thu, 14 Nov 2019 01:40:42 GMT + etag: + - '"1D59A8C7D4D9635"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -464,21 +559,31 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -494,11 +603,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:20 GMT +======= + - Thu, 14 Nov 2019 01:40:43 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -532,27 +645,34 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3115' + - '2917' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:21 GMT +======= + - Thu, 14 Nov 2019 01:40:44 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml index 7bbed7298fa..e0ae00ba3fd 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:14:25Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:03Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:29 GMT +======= + - Thu, 14 Nov 2019 01:40:07 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:30 GMT +======= + - Thu, 14 Nov 2019 01:40:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -126,7 +147,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:14:25Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:03Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +160,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:30 GMT +======= + - Thu, 14 Nov 2019 01:40:09 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +197,13 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +211,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":32309,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_32309","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":33329,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33329","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +226,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:39 GMT +======= + - Thu, 14 Nov 2019 01:40:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +248,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1191' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +272,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +286,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":32309,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_32309","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":33329,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33329","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +301,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:39 GMT +======= + - Thu, 14 Nov 2019 01:40:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +346,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +368,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:41 GMT +======= + - Thu, 14 Nov 2019 01:40:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -340,8 +410,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +424,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":32309,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_32309","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":33329,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33329","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +439,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:14:42 GMT +======= + - Thu, 14 Nov 2019 01:40:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -385,8 +469,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,26 +480,36 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '520' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:46.507","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8CE8CD5EDCC160E2E73DD859174BA01E62DF620E0F112D45FF5011199B0C19AD","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:23.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5E9DB63FB1595CAF86BD1C0BCD6678788820CBD168B88926DEBF4DC3C0F26F1B","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3531' content-type: - application/json @@ -424,6 +517,15 @@ interactions: - Wed, 13 Nov 2019 06:15:03 GMT etag: - '"1D599E9A61C4D40"' +======= + - '3522' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:39 GMT + etag: + - '"1D59A8C7BB5AB20"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -465,16 +567,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -495,11 +612,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:15:04 GMT +======= + - Thu, 14 Nov 2019 01:40:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -533,20 +654,30 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:47.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8CE8CD5EDCC160E2E73DD859174BA01E62DF620E0F112D45FF5011199B0C19AD","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:23.89","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5E9DB63FB1595CAF86BD1C0BCD6678788820CBD168B88926DEBF4DC3C0F26F1B","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3528' content-type: - application/json @@ -554,6 +685,15 @@ interactions: - Wed, 13 Nov 2019 06:15:05 GMT etag: - '"1D599E9A61C4D40"' +======= + - '3520' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:40:42 GMT + etag: + - '"1D59A8C7BB5AB20"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -596,20 +736,30 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage","name":"cli-webapp-nwr000002/stage","type":"Microsoft.Web/sites/slots","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"cli-webapp-nwr000002(stage)","state":"Running","hostNames":["cli-webapp-nwr000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002-stage.azurewebsites.net","cli-webapp-nwr000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:15:11.103","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002__24aa","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"38B0F4D14787492187AB3444DA497F12B15295931548AA2133829415FE3A24AB","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"cli-webapp-nwr000002(stage)","state":"Running","hostNames":["cli-webapp-nwr000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002-stage.azurewebsites.net","cli-webapp-nwr000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:45.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002__1ebf","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"10E3A49F88036344667FFF31456B6D75B5EBF549E3C026E6D3CC83E55BA92523","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3604' content-type: - application/json @@ -617,6 +767,15 @@ interactions: - Wed, 13 Nov 2019 06:15:28 GMT etag: - '"1D599E9A61C4D40"' +======= + - '3595' + content-type: + - application/json + date: + - Thu, 14 Nov 2019 01:41:02 GMT + etag: + - '"1D59A8C7BB5AB20"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -654,27 +813,34 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3134' + - '2936' content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 06:15:29 GMT +======= + - Thu, 14 Nov 2019 01:41:02 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -696,6 +862,7 @@ interactions: status: code: 200 message: OK +<<<<<<< HEAD - request: body: null headers: @@ -833,4 +1000,6 @@ interactions: status: code: 200 message: OK +======= +>>>>>>> Re-record test for app service version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml index 6ba2990816b..b984bd0a71b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:59Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:51:02 GMT + - Wed, 13 Nov 2019 11:09:32 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:03 GMT + - Wed, 13 Nov 2019 11:09:33 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1191' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:59Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:51:04 GMT + - Wed, 13 Nov 2019 11:09:34 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","name":"web-msi-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31296,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_31296","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":34972,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:14 GMT + - Wed, 13 Nov 2019 11:09:40 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1180' + - '1187' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","name":"web-msi-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31296,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_31296","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":34972,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:15 GMT + - Wed, 13 Nov 2019 11:09:42 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:15 GMT + - Wed, 13 Nov 2019 11:09:43 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","name":"web-msi-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31296,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_31296","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":34972,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:18 GMT + - Wed, 13 Nov 2019 11:09:45 GMT expires: - '-1' pragma: @@ -403,26 +403,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:24.17","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:48.313","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3475' + - '3602' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:40 GMT + - Wed, 13 Nov 2019 11:10:04 GMT etag: - - '"1D587FD7B8BC1D0"' + - '"1D59A12DD44F370"' expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '497' x-powered-by: - ASP.NET status: @@ -465,26 +465,21 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003/publishxml?api-version=2018-02-01 response: body: string: @@ -492,11 +487,11 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:51:41 GMT + - Wed, 13 Nov 2019 11:10:05 GMT expires: - '-1' pragma: @@ -510,7 +505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11993' x-powered-by: - ASP.NET status: @@ -531,26 +526,26 @@ interactions: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:24.653","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:48.967","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3474' + - '3600' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:43 GMT + - Wed, 13 Nov 2019 11:10:07 GMT etag: - - '"1D587FD7B8BC1D0"' + - '"1D59A12DD44F370"' expires: - '-1' pragma: @@ -587,26 +582,26 @@ interactions: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:24.653","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:48.967","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3474' + - '3600' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:43 GMT + - Wed, 13 Nov 2019 11:10:08 GMT etag: - - '"1D587FD7B8BC1D0"' + - '"1D59A12DD44F370"' expires: - '-1' pragma: @@ -654,26 +649,26 @@ interactions: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: cache-control: - no-cache content-length: - - '3615' + - '3742' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:52 GMT + - Wed, 13 Nov 2019 11:10:15 GMT etag: - - '"1D587FD7B8BC1D0"' + - '"1D59A12DD44F370"' expires: - '-1' pragma: @@ -691,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '497' x-powered-by: - ASP.NET status: @@ -729,13 +724,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:51:53 GMT + - Wed, 13 Nov 2019 11:10:16 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -751,60 +746,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp identity assign - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --role --scope - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f27a0b7fa5594a31892a329cbbd83e4a - does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Oct 2019 10:51:55 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1185' - status: - code: 400 - message: Bad Request -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: Accept: - application/json @@ -818,8 +760,6 @@ interactions: - '233' Content-Type: - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - -g -n --role --scope User-Agent: @@ -831,7 +771,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f27a0b7fa5594a31892a329cbbd83e4a + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 5ecd2914e53b4344ab84616fe65ea681 does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' headers: cache-control: @@ -841,25 +781,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:01 GMT + - Wed, 13 Nov 2019 11:10:19 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1193' status: code: 400 message: Bad Request - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: Accept: - application/json @@ -886,7 +826,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f27a0b7fa5594a31892a329cbbd83e4a + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 5ecd2914e53b4344ab84616fe65ea681 does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' headers: cache-control: @@ -896,7 +836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:07 GMT + - Wed, 13 Nov 2019 11:10:25 GMT expires: - '-1' pragma: @@ -908,13 +848,13 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1181' status: code: 400 message: Bad Request - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: Accept: - application/json @@ -941,7 +881,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal f27a0b7fa5594a31892a329cbbd83e4a + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 5ecd2914e53b4344ab84616fe65ea681 does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' headers: cache-control: @@ -951,7 +891,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:14 GMT + - Wed, 13 Nov 2019 11:10:32 GMT expires: - '-1' pragma: @@ -963,13 +903,13 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1131' + - '1186' status: code: 400 message: Bad Request - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: Accept: - application/json @@ -996,7 +936,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-10-21T10:52:20.4073874Z","updatedOn":"2019-10-21T10:52:20.4073874Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-11-13T11:10:38.2346686Z","updatedOn":"2019-11-13T11:10:38.2346686Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -1005,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:23 GMT + - Wed, 13 Nov 2019 11:10:42 GMT expires: - '-1' pragma: @@ -1019,7 +959,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1175' x-ms-request-charge: - - '3' + - '5' status: code: 201 message: Created @@ -1038,26 +978,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: cache-control: - no-cache content-length: - - '3613' + - '3740' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:24 GMT + - Wed, 13 Nov 2019 11:10:45 GMT etag: - - '"1D587FD8B524D00"' + - '"1D59A12EC596CB0"' expires: - '-1' pragma: @@ -1094,26 +1034,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: cache-control: - no-cache content-length: - - '3613' + - '3740' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:25 GMT + - Wed, 13 Nov 2019 11:10:45 GMT etag: - - '"1D587FD8B524D00"' + - '"1D59A12EC596CB0"' expires: - '-1' pragma: @@ -1154,7 +1094,7 @@ interactions: accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27f27a0b7f-a559-4a31-892a-329cbbd83e4a%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%275ecd2914-e53b-4344-ab84-616fe65ea681%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -1170,19 +1110,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 21 Oct 2019 10:52:26 GMT + - Wed, 13 Nov 2019 11:10:50 GMT duration: - - '2563419' + - '2743469' expires: - '-1' ocp-aad-diagnostics-server-name: - - vLNnZo5SIn1jGCzfoRQ7cHbnXuGX/1jYjhTWlHkv7EI= + - qbmlHRZ24ikXGPs6iC16BeVhqxmVUI3e/2/YpQxlnao= ocp-aad-session-key: - - oaHsRgmtSvoRRyWMBvjrc0oUNpcvUW4nysHx80Q3WdGI_Gv3-NCeTQLLdBRlOrfQAPmBmKLarK-MX7MbwUzwOMKWvX5Y7nQAwd2RVgiCnaf8uy7YQPQxl9NFZcWzWO8ZvbqNCgu1ExzQ8hT2mxBJtEaZkU2mdcyO_2bePuqO6eU.twXlEu1DXIdloro_Zt-_zW0DnU5HM0RUPDkrXDlXffk + - wGvcInqtQh2qbpg4U01UzgOn3MG8UfWbzwmzwH5PjC5am_SRyN61s_jbPA5HxJKC0p3JtI0S_Y3R1AavzH2VH5GPJheWBFhuV893s6Tqoo8hqsH5cpMprgB-3ExdaVu8.QiUJltgZ9tysJ6EdR1U0AJfBZW6_KDrsvXOmlmHQ6m4 pragma: - no-cache request-id: - - 8bc205cf-7542-4795-a364-8f9a726648b9 + - d71862ee-e37a-452a-be4d-9b8fa8a2f5c2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1195,7 +1135,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["f27a0b7f-a559-4a31-892a-329cbbd83e4a"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["5ecd2914-e53b-4344-ab84-616fe65ea681"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1221,7 +1161,7 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"ec522127-ad60-48f9-830f-9b6c510139c9","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"F3F52C9CE930978C46DA9D30EA432FF13746B530","endDate":"2020-01-19T10:46:00Z","keyId":"07cee891-a9bb-42c7-890b-930d890024fd","startDate":"2019-10-21T10:46:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["ec522127-ad60-48f9-830f-9b6c510139c9","https://identity.azure.net/LlwbjCvF3NXLUlzxuWZeyhNcHGSLivJ1sdGMTfNUoAc="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"5ecd2914-e53b-4344-ab84-616fe65ea681","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"df00b496-4722-4299-8f88-30cc2b713222","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"6EC9660480DD5930B0760E7553F0A2CEB65045B9","endDate":"2020-02-11T11:05:00Z","keyId":"12a9be24-d8f3-4e72-9aa0-b1532e05744c","startDate":"2019-11-13T11:05:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["df00b496-4722-4299-8f88-30cc2b713222","https://identity.azure.net/2eIyKqtOVywRyzdWX0WtLdViF5Q2SQdCp8o81a8SIQI="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1234,19 +1174,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 21 Oct 2019 10:52:27 GMT + - Wed, 13 Nov 2019 11:10:51 GMT duration: - - '4571615' + - '4403497' expires: - '-1' ocp-aad-diagnostics-server-name: - - C8TrCVVTAkLP6c6HL4PGoY9R0WooVdfsYI7c9Lj6EBs= + - nnwm1rHUXNOC2HCdDk0/PkC/19HDnlsfx+Y5YAxupsE= ocp-aad-session-key: - - C9nUd-5zRwTiWMtcw7K6yfsogIgj3XjWAqh-DLwiPpj8xA2MUVs6fZhfu7fepC10lB9wOR1DvrSm-cqHqDmIurftdx2mrW1F-w53t2syo1maxNSWcaw7dXexa3lfppemHChRxW11QodW87TENtaFFvbcizxXcpG6BR4P4j2_fNI.Qo0rLGe9A_UGZU0j1f5olAhh9CgQKyvpT4zfDbpnXZk + - Gp0zQOEkv3eIDH_dKAWaRPH7QwthOk5-XJ2bT9GHwUsWRri9qKB5qXM5A5uuxIIz0vHoeCubB2jcygjYPhcPtnK4b62W1htBNf6_UP1HdSNo-VopntxoGuiUACCcWBAJ.L8U2BjIvOgY-PgyNndX0FyDfls1zevasx0j_RnHhjA0 pragma: - no-cache request-id: - - 38f9f8fe-e8b5-4aeb-a973-54daa359f0fc + - 9619fdc0-07fd-4040-917f-98311273b3f9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1280,22 +1220,22 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2018-09-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-10-21T10:52:22.8688179Z","updatedOn":"2019-10-21T10:52:22.8688179Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"04682e4a-6d00-4431-a67d-27d364f3a0cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T22:54:45.4500699Z","updatedOn":"2018-09-12T22:54:45.4500699Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7d54a622-bff3-4d28-90b1-faa5119abc7a","type":"Microsoft.Authorization/roleAssignments","name":"7d54a622-bff3-4d28-90b1-faa5119abc7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"056cdcb7-07df-4329-a5c1-dd8b53c85a05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:13:40.1246854Z","updatedOn":"2018-09-27T17:13:40.1246854Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c5b2ade-0f33-4d4d-b841-df57ffa2d569","type":"Microsoft.Authorization/roleAssignments","name":"1c5b2ade-0f33-4d4d-b841-df57ffa2d569"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-22T14:58:56.7424484Z","updatedOn":"2019-09-22T14:58:56.7424484Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5d758f5-4ec2-4dd5-ba95-cee5405e367c","type":"Microsoft.Authorization/roleAssignments","name":"a5d758f5-4ec2-4dd5-ba95-cee5405e367c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0a592c45-613e-4f1b-9023-7c4414fd53bf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T01:47:13.5745250Z","updatedOn":"2019-08-08T01:47:13.5745250Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d320644f-c08b-47f4-ae3b-9df595a5c368","type":"Microsoft.Authorization/roleAssignments","name":"d320644f-c08b-47f4-ae3b-9df595a5c368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-26T04:16:43.3784273Z","updatedOn":"2019-07-26T04:16:43.3784273Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a567d42-8a33-4cad-9f7b-5299a16dc269","type":"Microsoft.Authorization/roleAssignments","name":"9a567d42-8a33-4cad-9f7b-5299a16dc269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:48:59.9741186Z","updatedOn":"2018-09-18T23:48:59.9741186Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4a780b4-840e-4552-8713-7ae0c353278b","type":"Microsoft.Authorization/roleAssignments","name":"d4a780b4-840e-4552-8713-7ae0c353278b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"12229a56-a139-4df5-9873-e2d6869d6978","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-15T05:21:34.7033579Z","updatedOn":"2018-08-15T05:21:34.7033579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61bffc28-7921-4fcf-942f-d164943c7274","type":"Microsoft.Authorization/roleAssignments","name":"61bffc28-7921-4fcf-942f-d164943c7274"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"128dbb12-dd4e-4a43-b589-7a5398d8de42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:05:37.8677974Z","updatedOn":"2018-10-05T05:05:37.8677974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5882a08d-d03f-4c3d-90e5-7c74b20e81c8","type":"Microsoft.Authorization/roleAssignments","name":"5882a08d-d03f-4c3d-90e5-7c74b20e81c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"14c2ec86-db00-410f-b94d-c58509ee45c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T20:10:56.8604982Z","updatedOn":"2018-10-29T20:10:56.8604982Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7feac640-4864-4c07-b7c3-f0fec44a5032","type":"Microsoft.Authorization/roleAssignments","name":"7feac640-4864-4c07-b7c3-f0fec44a5032"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"161e0821-5f23-4360-84b5-f6531dfcad35","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:04:54.7328846Z","updatedOn":"2018-10-20T05:04:54.7328846Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/411c470b-03f6-499a-b5bf-32e5c8447641","type":"Microsoft.Authorization/roleAssignments","name":"411c470b-03f6-499a-b5bf-32e5c8447641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"182c8534-f413-487c-91a3-7addc80e35d5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:37:05.6480940Z","updatedOn":"2017-09-06T13:37:05.6480940Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0560ab5-dd8d-4978-8c9b-84768b4a9467","type":"Microsoft.Authorization/roleAssignments","name":"d0560ab5-dd8d-4978-8c9b-84768b4a9467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"18f53146-1f6c-462a-96a5-d50e1293b770","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-24T02:53:04.7484734Z","updatedOn":"2019-05-24T02:53:04.7484734Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553a3d02-d0da-4b7c-a0f1-d1298f556001","type":"Microsoft.Authorization/roleAssignments","name":"553a3d02-d0da-4b7c-a0f1-d1298f556001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-09T20:12:14.4602372Z","updatedOn":"2018-04-09T20:12:14.4602372Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d5397a6-f185-4b65-bcba-6b9f2248093a","type":"Microsoft.Authorization/roleAssignments","name":"8d5397a6-f185-4b65-bcba-6b9f2248093a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1ccb1196-3b40-438f-9be8-fd41c1b34ae1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-16T05:27:16.5640748Z","updatedOn":"2018-08-16T05:27:16.5640748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24c834d4-dba5-4aea-a42d-439588a23b0a","type":"Microsoft.Authorization/roleAssignments","name":"24c834d4-dba5-4aea-a42d-439588a23b0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1e3d4fff-f4da-4a1f-bd9d-659362b7c77f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:04:46.9757932Z","updatedOn":"2018-10-24T05:04:46.9757932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac6cb278-853b-4fa6-a5b8-d92f06e24d34","type":"Microsoft.Authorization/roleAssignments","name":"ac6cb278-853b-4fa6-a5b8-d92f06e24d34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:38:20.6583041Z","updatedOn":"2019-07-10T06:38:20.6583041Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce176826-2e72-450a-8179-fb2b7aefaa86","type":"Microsoft.Authorization/roleAssignments","name":"ce176826-2e72-450a-8179-fb2b7aefaa86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2262dfe7-375f-4597-a47c-2766489ecbe7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T17:54:39.3919633Z","updatedOn":"2019-06-14T17:54:39.3919633Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f58856e-c1e1-4269-9055-f9fbe4cb6506","type":"Microsoft.Authorization/roleAssignments","name":"3f58856e-c1e1-4269-9055-f9fbe4cb6506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"29727caa-21b0-4904-8f6c-565fd2457d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T16:24:04.8955454Z","updatedOn":"2018-10-02T16:24:04.8955454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3297254c-b10b-46df-a887-113a0c7c0b4c","type":"Microsoft.Authorization/roleAssignments","name":"3297254c-b10b-46df-a887-113a0c7c0b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"31e600e0-d7ce-4e98-a927-19bb30042e44","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-17T08:29:55.3047288Z","updatedOn":"2019-09-17T08:29:55.3047288Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3591e24-669e-475f-a315-7d581996b864","type":"Microsoft.Authorization/roleAssignments","name":"e3591e24-669e-475f-a315-7d581996b864"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3284e562-f7b4-469f-8dd3-81f0cd66daf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:47.3915367Z","updatedOn":"2018-10-09T05:05:47.3915367Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b99516e-ea97-4832-9628-5eed31f1d98f","type":"Microsoft.Authorization/roleAssignments","name":"4b99516e-ea97-4832-9628-5eed31f1d98f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32a9067d-11d1-4c29-a12f-4bb485b6b600","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:05:05.8842957Z","updatedOn":"2018-10-25T05:05:05.8842957Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd454990-a77f-4341-8493-a5137ac5f440","type":"Microsoft.Authorization/roleAssignments","name":"cd454990-a77f-4341-8493-a5137ac5f440"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-06T03:03:50.0740099Z","updatedOn":"2019-09-06T03:03:50.0740099Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/01c1fcc9-4df3-4107-832f-42f245309750","type":"Microsoft.Authorization/roleAssignments","name":"01c1fcc9-4df3-4107-832f-42f245309750"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"35945435-5b36-48ce-a0fa-9f6a487b6d43","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T20:28:25.6841347Z","updatedOn":"2018-09-11T20:28:25.6841347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e38d95ce-a050-41c5-967c-92f9a62531e2","type":"Microsoft.Authorization/roleAssignments","name":"e38d95ce-a050-41c5-967c-92f9a62531e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"378df7ee-31fd-4c54-945e-a1ed4f025a28","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-08-10T19:00:33.4173527Z","updatedOn":"2017-08-10T19:00:33.4173527Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8","type":"Microsoft.Authorization/roleAssignments","name":"e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:21:28.6870688Z","updatedOn":"2019-02-25T22:21:28.6870688Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/185a89d4-23f9-4fb8-827c-6d7f8e26c49d","type":"Microsoft.Authorization/roleAssignments","name":"185a89d4-23f9-4fb8-827c-6d7f8e26c49d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:10:39.6892748Z","updatedOn":"2019-02-25T22:10:39.6892748Z","createdBy":"f61d140c-100f-4802-a259-065b338ab67d","updatedBy":"f61d140c-100f-4802-a259-065b338ab67d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ec022f0-b25f-41c1-93d9-4905814a6687","type":"Microsoft.Authorization/roleAssignments","name":"1ec022f0-b25f-41c1-93d9-4905814a6687"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3c2dbb98-feac-4fb1-8472-bd5e4dbaa814","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:05:50.5110946Z","updatedOn":"2018-10-13T05:05:50.5110946Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a57185c-8716-406b-954a-f9a271f84a65","type":"Microsoft.Authorization/roleAssignments","name":"4a57185c-8716-406b-954a-f9a271f84a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"45c545d2-3beb-4122-99e4-1d5a9baf875a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:00:49.4836748Z","updatedOn":"2018-10-12T11:00:49.4836748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2ae6c29-28a7-436c-8100-92d9fbff21ff","type":"Microsoft.Authorization/roleAssignments","name":"f2ae6c29-28a7-436c-8100-92d9fbff21ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"4b12a28b-33df-4b89-87f2-600465f47640","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T17:44:04.4033814Z","updatedOn":"2018-09-12T17:44:04.4033814Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a456f69e-0744-403d-8dca-4fd4cd170cf3","type":"Microsoft.Authorization/roleAssignments","name":"a456f69e-0744-403d-8dca-4fd4cd170cf3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"51b966ff-5680-4e37-a80d-0d79694df747","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-21T05:08:22.9928772Z","updatedOn":"2018-08-21T05:08:22.9928772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13ec9de0-0071-4461-8ae8-33c9b780c3fd","type":"Microsoft.Authorization/roleAssignments","name":"13ec9de0-0071-4461-8ae8-33c9b780c3fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"56b6b563-1341-4632-96cd-06252b81665d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:50:50.2703536Z","updatedOn":"2019-09-05T08:50:50.2703536Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e17d3c8b-26f3-4cdd-bcc1-211c3e490299","type":"Microsoft.Authorization/roleAssignments","name":"e17d3c8b-26f3-4cdd-bcc1-211c3e490299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"579e0702-a6e2-4caf-bdc8-200024269591","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:31:18.5085521Z","updatedOn":"2017-09-06T13:31:18.5085521Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a707eb24-17dd-426b-8d2a-9b3751c754db","type":"Microsoft.Authorization/roleAssignments","name":"a707eb24-17dd-426b-8d2a-9b3751c754db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5804b4e6-f975-4c75-9b1e-f28b311a9cfc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-28T10:36:01.4354692Z","updatedOn":"2018-08-28T10:36:01.4354692Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed4cb227-0f99-40a3-bd00-270f35ca8d72","type":"Microsoft.Authorization/roleAssignments","name":"ed4cb227-0f99-40a3-bd00-270f35ca8d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5accae2a-f109-44ba-8549-8c682acd4ad1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-11-06T23:33:48.6032970Z","updatedOn":"2017-11-06T23:33:48.6032970Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b35dfe77-4bb3-4956-b644-16d58904b1bf","type":"Microsoft.Authorization/roleAssignments","name":"b35dfe77-4bb3-4956-b644-16d58904b1bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5c1fffb7-0203-410b-a0b4-a6538fe530d7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-29T09:28:50.5217613Z","updatedOn":"2019-08-29T09:28:50.5217613Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ac73035-da41-4fbb-97a7-54f9d33ca407","type":"Microsoft.Authorization/roleAssignments","name":"0ac73035-da41-4fbb-97a7-54f9d33ca407"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5e1534ec-1e3f-459f-bf72-739eee5030bd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:06:28.3611111Z","updatedOn":"2018-09-20T06:06:28.3611111Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9989f5d7-d06c-4804-a03a-ac7723776f0e","type":"Microsoft.Authorization/roleAssignments","name":"9989f5d7-d06c-4804-a03a-ac7723776f0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"63b3e92c-3ea7-4c27-b592-ca676a4e83f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-10-02T18:19:26.0915573Z","updatedOn":"2017-10-02T18:19:26.0915573Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef32bbaf-c67a-452a-9f2b-cef46652bc12","type":"Microsoft.Authorization/roleAssignments","name":"ef32bbaf-c67a-452a-9f2b-cef46652bc12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"669ef724-96ef-462e-b760-a398c8d49f12","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T00:01:10.8880293Z","updatedOn":"2018-10-16T00:01:10.8880293Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1fb698ad-cef0-442e-8fa0-c5c4609b12ec","type":"Microsoft.Authorization/roleAssignments","name":"1fb698ad-cef0-442e-8fa0-c5c4609b12ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"69c8d308-8964-4372-9771-e22fa1b1d02e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:08:13.2132002Z","updatedOn":"2018-10-19T05:08:13.2132002Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8","type":"Microsoft.Authorization/roleAssignments","name":"5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6ba8d12f-faf3-4859-918b-80f93e471e38","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T07:42:22.6383489Z","updatedOn":"2019-09-05T07:42:22.6383489Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b0df1c0-baf0-41ed-9560-6495d40dfa06","type":"Microsoft.Authorization/roleAssignments","name":"1b0df1c0-baf0-41ed-9560-6495d40dfa06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c3a43fa-d321-44e9-9fc5-ef8dcf2c1a5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T15:52:57.6857263Z","updatedOn":"2018-09-12T15:52:57.6857263Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bec9dbb-f348-447b-8618-8d4cb0249bdd","type":"Microsoft.Authorization/roleAssignments","name":"2bec9dbb-f348-447b-8618-8d4cb0249bdd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6e95a7c2-c99b-428b-a560-d5227ba9f2e7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-18T05:08:25.6259727Z","updatedOn":"2018-08-18T05:08:25.6259727Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/065b148b-bfa7-4706-9ddd-42c1c7611365","type":"Microsoft.Authorization/roleAssignments","name":"065b148b-bfa7-4706-9ddd-42c1c7611365"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"751b42f1-117c-41f0-bcec-5404a088c251","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T21:52:24.5636226Z","updatedOn":"2018-11-06T21:52:24.5636226Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7479aa59-a551-4027-9b65-5dc5575116c8","type":"Microsoft.Authorization/roleAssignments","name":"7479aa59-a551-4027-9b65-5dc5575116c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-10T06:36:08.0241793Z","updatedOn":"2019-09-10T06:36:08.0241793Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b1e634-f9af-4434-bd13-55eb43a57124","type":"Microsoft.Authorization/roleAssignments","name":"10b1e634-f9af-4434-bd13-55eb43a57124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b29ef09-268a-44a7-b1f8-094beba68028","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-05T17:27:17.7281001Z","updatedOn":"2018-04-05T17:27:17.7281001Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5c8a26b-80ac-421d-a137-2951374bca62","type":"Microsoft.Authorization/roleAssignments","name":"a5c8a26b-80ac-421d-a137-2951374bca62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8a7fb7ba-b9bd-4113-9e9e-402a39e517e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T17:17:13.6083568Z","updatedOn":"2018-09-11T17:17:13.6083568Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea9a91c-b1be-4310-809a-48f423c76ad7","type":"Microsoft.Authorization/roleAssignments","name":"2ea9a91c-b1be-4310-809a-48f423c76ad7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ae38a78-a9b0-481e-b77d-a68dadb46fd3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-30T18:43:04.7284681Z","updatedOn":"2018-08-30T18:43:04.7284681Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77cd24a-5806-46ca-8093-a73055cc5f92","type":"Microsoft.Authorization/roleAssignments","name":"f77cd24a-5806-46ca-8093-a73055cc5f92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8c19637c-da26-4745-9ca5-d9a35a0bfa25","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-20T17:35:36.0710301Z","updatedOn":"2017-12-20T17:35:36.0710301Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec","type":"Microsoft.Authorization/roleAssignments","name":"2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ccf8c17-bef7-43c5-8788-592c7645ce24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-21T00:49:38.5584710Z","updatedOn":"2017-12-21T00:49:38.5584710Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27f8c6c4-442c-42a6-8fb2-e086108e4d14","type":"Microsoft.Authorization/roleAssignments","name":"27f8c6c4-442c-42a6-8fb2-e086108e4d14"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8cecb614-1133-40e4-969a-87586a03bda9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:05:58.6187581Z","updatedOn":"2018-10-06T05:05:58.6187581Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d20cf58b-2e31-4d34-9235-26cd30301a5b","type":"Microsoft.Authorization/roleAssignments","name":"d20cf58b-2e31-4d34-9235-26cd30301a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"906cbae0-394a-4011-b211-faad4800e871","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-24T05:30:47.9362826Z","updatedOn":"2018-08-24T05:30:47.9362826Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aac320ff-138c-4993-984e-49a0d404201d","type":"Microsoft.Authorization/roleAssignments","name":"aac320ff-138c-4993-984e-49a0d404201d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"93a01e49-673a-4e15-8230-51214a737962","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-07-05T21:56:39.5905773Z","updatedOn":"2017-07-05T21:56:39.5905773Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d09787d-0a89-40a8-abf2-a7b60e95d24b","type":"Microsoft.Authorization/roleAssignments","name":"8d09787d-0a89-40a8-abf2-a7b60e95d24b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"94090f94-bf94-4844-9b8d-58a6e40ed46a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:08:58.4289607Z","updatedOn":"2018-10-26T05:08:58.4289607Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b62b648-5069-4ef7-8d02-dc21d3a1207a","type":"Microsoft.Authorization/roleAssignments","name":"5b62b648-5069-4ef7-8d02-dc21d3a1207a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:47:24.5464704Z","updatedOn":"2019-07-10T06:47:24.5464704Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83b44361-6e27-4ed1-923c-b10ce84b3926","type":"Microsoft.Authorization/roleAssignments","name":"83b44361-6e27-4ed1-923c-b10ce84b3926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-21T06:37:44.9936263Z","updatedOn":"2019-10-21T06:37:44.9936263Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e96cad1-9fe5-49d6-b754-cbe33ce49882","type":"Microsoft.Authorization/roleAssignments","name":"7e96cad1-9fe5-49d6-b754-cbe33ce49882"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a08a53ed-ef7e-4ed8-b65c-522fdc1b2374","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:22:17.1891332Z","updatedOn":"2018-09-19T16:22:17.1891332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8dfe2756-45d2-4d09-a662-41c458276604","type":"Microsoft.Authorization/roleAssignments","name":"8dfe2756-45d2-4d09-a662-41c458276604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a35eaf1c-1e5e-4827-bd3c-9568fca01796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:05:37.7879353Z","updatedOn":"2018-10-04T05:05:37.7879353Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bce0209a-399a-452d-9a4b-0802ab28adc5","type":"Microsoft.Authorization/roleAssignments","name":"bce0209a-399a-452d-9a4b-0802ab28adc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a59de285-3f0a-46ae-99f6-ea4ece052936","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T18:28:06.2409628Z","updatedOn":"2018-10-24T18:28:06.2409628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7616165-7871-4b83-969e-d2248d191e46","type":"Microsoft.Authorization/roleAssignments","name":"f7616165-7871-4b83-969e-d2248d191e46"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a6634063-9a62-41b2-a356-d946b267e5d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-23T05:08:09.0286948Z","updatedOn":"2018-08-23T05:08:09.0286948Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96411a82-7e4e-4e8f-a613-e301212c599c","type":"Microsoft.Authorization/roleAssignments","name":"96411a82-7e4e-4e8f-a613-e301212c599c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"aa646ec7-f68f-47b9-a690-dab01146c7ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:04:53.6239739Z","updatedOn":"2018-09-28T05:04:53.6239739Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546e9e9b-36ab-49cc-9bb7-bb1b367ad709","type":"Microsoft.Authorization/roleAssignments","name":"546e9e9b-36ab-49cc-9bb7-bb1b367ad709"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-20T02:31:32.7276952Z","updatedOn":"2019-09-20T02:31:32.7276952Z","createdBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","updatedBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4bf29019-3c72-44c1-97d4-58ef4d1a540f","type":"Microsoft.Authorization/roleAssignments","name":"4bf29019-3c72-44c1-97d4-58ef4d1a540f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"acb349e8-a7d3-4de0-89eb-868e32beda95","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-17T05:08:24.2918591Z","updatedOn":"2018-08-17T05:08:24.2918591Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71e9d1ca-3fbf-4d71-be0a-e1229399307e","type":"Microsoft.Authorization/roleAssignments","name":"71e9d1ca-3fbf-4d71-be0a-e1229399307e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"af1b30dc-fd64-4f5f-903e-47a57eba1a80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:05:31.0681976Z","updatedOn":"2018-10-03T05:05:31.0681976Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c868cde1-62a8-4b80-9542-ec7619ce8ee3","type":"Microsoft.Authorization/roleAssignments","name":"c868cde1-62a8-4b80-9542-ec7619ce8ee3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bd7e15cb-f6ab-4689-8c95-a16eb65d5150","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-22T05:08:15.4020971Z","updatedOn":"2018-08-22T05:08:15.4020971Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b0257fa-35d4-49af-84d8-5ab134225c83","type":"Microsoft.Authorization/roleAssignments","name":"2b0257fa-35d4-49af-84d8-5ab134225c83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c0526f76-a841-4a3a-bdee-59a5db599e34","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:18:19.9314682Z","updatedOn":"2018-12-11T19:18:19.9314682Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9e73a14-4984-4d89-8048-04773fb32344","type":"Microsoft.Authorization/roleAssignments","name":"d9e73a14-4984-4d89-8048-04773fb32344"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c26d5d62-502f-4038-87ba-be7e06fdc48d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-14T23:52:33.4597689Z","updatedOn":"2018-09-14T23:52:33.4597689Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66dda4b3-83ee-475f-abf8-c17018f6b225","type":"Microsoft.Authorization/roleAssignments","name":"66dda4b3-83ee-475f-abf8-c17018f6b225"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c6ff72c7-bf47-4965-8d74-833ded8973e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-02T00:31:04.8992786Z","updatedOn":"2018-09-02T00:31:04.8992786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed223d03-7f9e-41dc-904e-c99e443fec12","type":"Microsoft.Authorization/roleAssignments","name":"ed223d03-7f9e-41dc-904e-c99e443fec12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cc88e548-5268-49a5-a636-3b679af9d7fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:03:14.2856838Z","updatedOn":"2018-09-24T18:03:14.2856838Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9211dfe4-8a51-460f-8e5c-67a3154b4a16","type":"Microsoft.Authorization/roleAssignments","name":"9211dfe4-8a51-460f-8e5c-67a3154b4a16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cdc7828e-c6c1-4822-9b0b-ca54f3d92bcd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-03-15T23:45:46.1042773Z","updatedOn":"2018-03-15T23:45:46.1042773Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d194606-3a10-428a-9ce5-876fec5096c8","type":"Microsoft.Authorization/roleAssignments","name":"8d194606-3a10-428a-9ce5-876fec5096c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ce1d5a28-054d-4c0c-bad7-3788a49bf027","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T06:05:39.3181497Z","updatedOn":"2018-09-12T06:05:39.3181497Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b53a7f81-21e0-4a02-83e0-c4df9dceaa35","type":"Microsoft.Authorization/roleAssignments","name":"b53a7f81-21e0-4a02-83e0-c4df9dceaa35"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d3fb01c3-9c71-40f3-b2ca-c01c6d7a9baf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T06:17:53.9509659Z","updatedOn":"2018-09-17T06:17:53.9509659Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/461bbf31-8922-4888-9e75-abe0a1e5ee7f","type":"Microsoft.Authorization/roleAssignments","name":"461bbf31-8922-4888-9e75-abe0a1e5ee7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d56f8fbf-4fea-469c-9961-360947218f36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-29T15:30:43.9337895Z","updatedOn":"2018-08-29T15:30:43.9337895Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18a1d15a-a9ab-4941-9699-c400381ef454","type":"Microsoft.Authorization/roleAssignments","name":"18a1d15a-a9ab-4941-9699-c400381ef454"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"da372d6e-f966-46ee-b548-bfcf63350393","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:05:14.4655087Z","updatedOn":"2018-10-30T05:05:14.4655087Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/320a4b57-3cf4-478d-a8f2-e59c9a599d40","type":"Microsoft.Authorization/roleAssignments","name":"320a4b57-3cf4-478d-a8f2-e59c9a599d40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"db16b0e9-c67e-4105-90c6-810afbce9084","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T16:58:36.9636386Z","updatedOn":"2018-10-04T16:58:36.9636386Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf1a8a06-71a6-437a-88e6-bb5bb689adad","type":"Microsoft.Authorization/roleAssignments","name":"bf1a8a06-71a6-437a-88e6-bb5bb689adad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e060d9c7-8657-4d9f-9e4b-85d0a360c659","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-25T08:36:39.1785990Z","updatedOn":"2018-08-25T08:36:39.1785990Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f19577a-ca06-4a84-8a96-949b82174f32","type":"Microsoft.Authorization/roleAssignments","name":"5f19577a-ca06-4a84-8a96-949b82174f32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e4a14b69-da4e-4a61-b203-3ff37178eb4f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:06:24.7312535Z","updatedOn":"2018-10-16T05:06:24.7312535Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd3afd64-f181-41e9-bd06-8bebb2e2605c","type":"Microsoft.Authorization/roleAssignments","name":"fd3afd64-f181-41e9-bd06-8bebb2e2605c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e91ebcca-b62e-4bb4-ba0c-9aa32dc5cbfa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T18:09:27.2790772Z","updatedOn":"2018-10-26T18:09:27.2790772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fd31d35-bb00-4c2f-ac5e-9de69969f983","type":"Microsoft.Authorization/roleAssignments","name":"6fd31d35-bb00-4c2f-ac5e-9de69969f983"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed033ff2-c3db-4334-991a-8d3b716cdca2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T17:26:52.4677561Z","updatedOn":"2018-09-13T17:26:52.4677561Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a83e5dc-031f-4e20-8f30-b72bf7324a5e","type":"Microsoft.Authorization/roleAssignments","name":"5a83e5dc-031f-4e20-8f30-b72bf7324a5e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed871f1c-f497-4a85-860b-5314fbe98e27","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-14T05:08:34.9142312Z","updatedOn":"2018-08-14T05:08:34.9142312Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92163bb4-4c29-41dc-b75d-345a79ba7e0c","type":"Microsoft.Authorization/roleAssignments","name":"92163bb4-4c29-41dc-b75d-345a79ba7e0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"edf0e9e6-4721-417b-afdd-435ea1468d45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:06:17.6579190Z","updatedOn":"2018-10-11T05:06:17.6579190Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fc19d9e-95a7-4b59-bba7-c443af619749","type":"Microsoft.Authorization/roleAssignments","name":"3fc19d9e-95a7-4b59-bba7-c443af619749"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f0f844e0-d2fe-4aa3-8e2c-2e429618f305","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T03:28:22.7145389Z","updatedOn":"2019-09-24T03:28:22.7145389Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b3fb1c-befa-4dfd-8fbc-9838444af841","type":"Microsoft.Authorization/roleAssignments","name":"16b3fb1c-befa-4dfd-8fbc-9838444af841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f20c3436-e85f-4bf4-8775-9e46198564fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:05:24.1394548Z","updatedOn":"2018-10-23T05:05:24.1394548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a7783e-8fda-4715-8b08-36e399759834","type":"Microsoft.Authorization/roleAssignments","name":"91a7783e-8fda-4715-8b08-36e399759834"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f39b55e5-bd57-467c-bec9-42106f706d81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-31T21:42:06.9365791Z","updatedOn":"2018-08-31T21:42:06.9365791Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70a98d83-6caf-419a-b878-21d8ffe7a7eb","type":"Microsoft.Authorization/roleAssignments","name":"70a98d83-6caf-419a-b878-21d8ffe7a7eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f43f0615-bc95-4608-9ce9-34c2078e65a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:05:27.4406656Z","updatedOn":"2018-10-27T05:05:27.4406656Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07022e19-7251-4676-9365-3a5776f6db20","type":"Microsoft.Authorization/roleAssignments","name":"07022e19-7251-4676-9365-3a5776f6db20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T22:40:18.7672464Z","updatedOn":"2019-02-22T22:40:18.7672464Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1c96429-92c5-4d05-8003-e40b49483450","type":"Microsoft.Authorization/roleAssignments","name":"c1c96429-92c5-4d05-8003-e40b49483450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ffbb9ca1-43fc-498d-b8db-ca965f1684ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-18T23:20:41.1586895Z","updatedOn":"2017-12-18T23:20:41.1586895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e012250-6450-4432-b6dd-9e148ab64455","type":"Microsoft.Authorization/roleAssignments","name":"7e012250-6450-4432-b6dd-9e148ab64455"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/abec5297-d72c-4fbc-acaf-868482d345c2","principalId":"7a938a30-4226-420e-996f-4d48bca6d537","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-06-14T22:25:43.4944951Z","updatedOn":"2018-06-14T22:25:43.4944951Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3662714-8332-43d4-a2cf-836f9367c53d","type":"Microsoft.Authorization/roleAssignments","name":"a3662714-8332-43d4-a2cf-836f9367c53d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ec2fe215-4683-4df8-a738-83622f70819a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-05-23T20:36:37.8343857Z","updatedOn":"2018-05-23T20:36:37.8343857Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72d7967-c1bc-4510-9b4d-2efc272ad268","type":"Microsoft.Authorization/roleAssignments","name":"e72d7967-c1bc-4510-9b4d-2efc272ad268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00215dd3-8494-4737-8f44-47c950eee2a8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:15:56.7087145Z","updatedOn":"2019-05-14T05:15:56.7087145Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4290ea7b-9cca-414f-9f0d-eeb931cc9e40","type":"Microsoft.Authorization/roleAssignments","name":"4290ea7b-9cca-414f-9f0d-eeb931cc9e40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00b3fb8d-18f2-4cbb-9e33-ba8c247cd4d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T06:59:50.0920118Z","updatedOn":"2019-06-11T06:59:50.0920118Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e577045-4db2-49a7-a1f4-c94cb76d519c","type":"Microsoft.Authorization/roleAssignments","name":"1e577045-4db2-49a7-a1f4-c94cb76d519c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"014d30f5-2583-47dd-8b9a-be54a0b61c5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T03:39:35.1972368Z","updatedOn":"2019-03-08T03:39:35.1972368Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/962ad9d2-a9b8-4bd8-aead-8ad0effc0e19","type":"Microsoft.Authorization/roleAssignments","name":"962ad9d2-a9b8-4bd8-aead-8ad0effc0e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0444ccf8-fddb-43c4-b42b-ea036211229f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T09:31:46.3880250Z","updatedOn":"2019-09-18T09:31:46.3880250Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e0e4be-da1c-4e63-8872-b2486e10fbaf","type":"Microsoft.Authorization/roleAssignments","name":"e7e0e4be-da1c-4e63-8872-b2486e10fbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0519023a-68c7-467d-b06f-0d176fe7bf75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:15:15.6703869Z","updatedOn":"2019-05-03T05:15:15.6703869Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09d2a2b1-20ad-487c-98d0-e8335da536ca","type":"Microsoft.Authorization/roleAssignments","name":"09d2a2b1-20ad-487c-98d0-e8335da536ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0554b26b-97b8-4712-9428-96421f407817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-19T15:36:11.6893582Z","updatedOn":"2018-11-19T15:36:11.6893582Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd54ee13-f8bf-43ad-9ece-aadba49c6b3b","type":"Microsoft.Authorization/roleAssignments","name":"dd54ee13-f8bf-43ad-9ece-aadba49c6b3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T02:20:33.6180302Z","updatedOn":"2019-09-16T02:20:33.6180302Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd290ec1-928e-4be9-bf1a-5444db3c31a9","type":"Microsoft.Authorization/roleAssignments","name":"dd290ec1-928e-4be9-bf1a-5444db3c31a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05ec9ed3-1818-4d82-a393-9d886fe79eaf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:24:35.7005768Z","updatedOn":"2019-06-25T16:24:35.7005768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0438abe-75ec-4450-b99b-792ed9bb8ee0","type":"Microsoft.Authorization/roleAssignments","name":"a0438abe-75ec-4450-b99b-792ed9bb8ee0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"082034cd-624e-4652-99c9-89c02073cb54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T18:09:40.0546999Z","updatedOn":"2018-11-07T18:09:40.0546999Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5d7ff7-5a55-40b7-a547-d12bef073d24","type":"Microsoft.Authorization/roleAssignments","name":"aa5d7ff7-5a55-40b7-a547-d12bef073d24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"083e3bf5-90ee-44f9-a4ed-b43b6618cb68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:15:53.2923661Z","updatedOn":"2019-03-26T06:15:53.2923661Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22","type":"Microsoft.Authorization/roleAssignments","name":"b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"089feb4f-11a7-4088-a245-5d53edc49e2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T06:32:24.0038227Z","updatedOn":"2019-04-23T06:32:24.0038227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa131111-4125-4a5e-a8b6-a3165c319ce3","type":"Microsoft.Authorization/roleAssignments","name":"fa131111-4125-4a5e-a8b6-a3165c319ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0922515c-5011-41d9-85b8-468065dfe845","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T20:44:15.0368153Z","updatedOn":"2018-12-04T20:44:15.0368153Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c85da1d-a166-40d2-9118-4fe1c97f1ee6","type":"Microsoft.Authorization/roleAssignments","name":"8c85da1d-a166-40d2-9118-4fe1c97f1ee6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0936f825-b7a8-4d97-a53d-3b84d28a717e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T06:52:59.0134229Z","updatedOn":"2019-01-26T06:52:59.0134229Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e579b98e-87ba-42a4-9381-bca57eea911a","type":"Microsoft.Authorization/roleAssignments","name":"e579b98e-87ba-42a4-9381-bca57eea911a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"09bd05c8-0213-4c42-8943-172a8a17bb29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-28T06:49:07.4810461Z","updatedOn":"2018-12-28T06:49:07.4810461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1eea0837-88da-41fc-984c-b62f9c3c96d5","type":"Microsoft.Authorization/roleAssignments","name":"1eea0837-88da-41fc-984c-b62f9c3c96d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0907d8-b8f5-49dd-879a-ae1ccf72ee66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:48.6805573Z","updatedOn":"2018-10-09T05:36:48.6805573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/596f6422-88be-4a26-8449-cde19fc7139c","type":"Microsoft.Authorization/roleAssignments","name":"596f6422-88be-4a26-8449-cde19fc7139c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0e41c1-6cce-4da0-b2ef-6679d4b2adbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T23:41:56.1488980Z","updatedOn":"2018-09-25T23:41:56.1488980Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/995d178b-fe6d-4023-beec-7d86273d8258","type":"Microsoft.Authorization/roleAssignments","name":"995d178b-fe6d-4023-beec-7d86273d8258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0afa0fbe-4c34-49c6-94dc-2d25dde67804","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:48.4721330Z","updatedOn":"2019-04-16T06:34:48.4721330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cd81e06-c4a3-4186-92de-ce5dd9b02afc","type":"Microsoft.Authorization/roleAssignments","name":"4cd81e06-c4a3-4186-92de-ce5dd9b02afc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b122118-f5f2-4361-9540-75b2d16a6812","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T09:39:39.0217645Z","updatedOn":"2018-10-25T09:39:39.0217645Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6e564e9-62c4-48fa-94d1-f441bee3a600","type":"Microsoft.Authorization/roleAssignments","name":"f6e564e9-62c4-48fa-94d1-f441bee3a600"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b3f6114-fd2a-4b44-a718-e77c93313257","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T14:44:40.1474788Z","updatedOn":"2018-10-25T14:44:40.1474788Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22","type":"Microsoft.Authorization/roleAssignments","name":"78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b9debbf-74a2-4090-9e79-6f814c15c64f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T23:58:24.6590895Z","updatedOn":"2019-02-13T23:58:24.6590895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84210bda-8759-422b-b6ea-f95ba2a645cc","type":"Microsoft.Authorization/roleAssignments","name":"84210bda-8759-422b-b6ea-f95ba2a645cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0bc92e19-4e38-4150-80a3-c1e35927bdc1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T22:07:33.4526393Z","updatedOn":"2019-01-15T22:07:33.4526393Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5de283f2-6ed5-4e96-ab11-01da6b1030aa","type":"Microsoft.Authorization/roleAssignments","name":"5de283f2-6ed5-4e96-ab11-01da6b1030aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0befbead-6896-4f0f-ba06-727614a1d97e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T07:10:06.6112474Z","updatedOn":"2019-03-08T07:10:06.6112474Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553bec8e-319e-4a9a-91d6-434dfebe29bd","type":"Microsoft.Authorization/roleAssignments","name":"553bec8e-319e-4a9a-91d6-434dfebe29bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c4c5914-127b-43c8-9185-be30ce8e97c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T14:47:52.4435973Z","updatedOn":"2018-09-27T14:47:52.4435973Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71a48867-ce43-4ff6-96f4-aac8c877c9f8","type":"Microsoft.Authorization/roleAssignments","name":"71a48867-ce43-4ff6-96f4-aac8c877c9f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c69d6a8-a1dc-4a34-8478-6aa7882a0f72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-15T06:10:54.7835545Z","updatedOn":"2019-03-15T06:10:54.7835545Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41260fbb-df80-43a1-aee0-f17d06596e19","type":"Microsoft.Authorization/roleAssignments","name":"41260fbb-df80-43a1-aee0-f17d06596e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c86c04d-4ab1-4af4-bc25-26fc5a73ab13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:42:04.8339359Z","updatedOn":"2018-10-19T15:42:04.8339359Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/111e9485-5c6f-40ee-b51b-b077e04b3f43","type":"Microsoft.Authorization/roleAssignments","name":"111e9485-5c6f-40ee-b51b-b077e04b3f43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0e5f94cd-941e-416f-bf5c-febf94928fdf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-17T20:20:24.5305703Z","updatedOn":"2018-12-17T20:20:24.5305703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9508c28-eb00-4a51-a224-34c36b527578","type":"Microsoft.Authorization/roleAssignments","name":"c9508c28-eb00-4a51-a224-34c36b527578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ea19d04-ed36-495e-b2f6-b514e2b68c33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T02:55:23.4287364Z","updatedOn":"2019-09-24T02:55:23.4287364Z","createdBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","updatedBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46308c2b-e860-4520-a289-b939b4a6080a","type":"Microsoft.Authorization/roleAssignments","name":"46308c2b-e860-4520-a289-b939b4a6080a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ef728c4-2201-4dad-932d-eefd44bc73b5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T09:49:11.3765450Z","updatedOn":"2018-10-26T09:49:11.3765450Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd","type":"Microsoft.Authorization/roleAssignments","name":"9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0f35f90d-6817-47cf-be1a-450afde5a251","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:44:57.7197480Z","updatedOn":"2019-06-08T05:44:57.7197480Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3755957-a5fa-4fa3-9866-99fffb77a6c7","type":"Microsoft.Authorization/roleAssignments","name":"a3755957-a5fa-4fa3-9866-99fffb77a6c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0fb0872a-13ac-40dc-92c0-bb65030b9141","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T15:42:18.7189325Z","updatedOn":"2018-11-16T15:42:18.7189325Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1acbce5d-ee4a-4792-9c13-77d2aefa7348","type":"Microsoft.Authorization/roleAssignments","name":"1acbce5d-ee4a-4792-9c13-77d2aefa7348"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ff295c0-7d9f-4b57-9465-f2f1521f616c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:22:36.7477043Z","updatedOn":"2018-10-10T22:22:36.7477043Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8877b05-2800-4d27-a180-d530688c1aaa","type":"Microsoft.Authorization/roleAssignments","name":"b8877b05-2800-4d27-a180-d530688c1aaa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"105237f3-66df-4225-b4f9-1731ba11259c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:48:36.7329197Z","updatedOn":"2018-10-03T21:48:36.7329197Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f73f30ed-04d2-4a53-81c9-47e71e5d0043","type":"Microsoft.Authorization/roleAssignments","name":"f73f30ed-04d2-4a53-81c9-47e71e5d0043"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10964e06-b1ac-4854-9a34-8fa11945d7e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-09T05:44:51.8581373Z","updatedOn":"2019-07-09T05:44:51.8581373Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed","type":"Microsoft.Authorization/roleAssignments","name":"84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10b044e7-d033-433b-8b4c-d8e9594f3c64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T21:30:39.3815031Z","updatedOn":"2019-04-30T21:30:39.3815031Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a50c952f-b47b-4f35-8763-b5aec9bd9ddb","type":"Microsoft.Authorization/roleAssignments","name":"a50c952f-b47b-4f35-8763-b5aec9bd9ddb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10db8d1f-13e4-4187-947d-8a0fc82eff94","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:24:36.7007006Z","updatedOn":"2018-10-10T22:24:36.7007006Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc","type":"Microsoft.Authorization/roleAssignments","name":"a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11952da9-440f-4270-9c72-9d5574be74a5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-19T06:51:54.9706907Z","updatedOn":"2019-01-19T06:51:54.9706907Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72048bb-0fa1-4058-bc2c-284a58e49ced","type":"Microsoft.Authorization/roleAssignments","name":"e72048bb-0fa1-4058-bc2c-284a58e49ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11c04de5-9b6f-4dc1-b382-77bac04d39c8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T06:47:36.2010728Z","updatedOn":"2019-05-29T06:47:36.2010728Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5274cb84-e8c2-4347-9f09-634cd5fb3744","type":"Microsoft.Authorization/roleAssignments","name":"5274cb84-e8c2-4347-9f09-634cd5fb3744"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12365830-cd40-4ae5-af8b-6309b4913a79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-15T07:05:30.8525898Z","updatedOn":"2019-02-15T07:05:30.8525898Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58db4ac3-cdfc-4491-9c08-46c8ee760700","type":"Microsoft.Authorization/roleAssignments","name":"58db4ac3-cdfc-4491-9c08-46c8ee760700"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12fdbdff-fee2-48de-a24d-b61e714438fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T06:51:04.6126539Z","updatedOn":"2018-11-21T06:51:04.6126539Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/202127bd-4575-41ac-b631-cda1cad5957d","type":"Microsoft.Authorization/roleAssignments","name":"202127bd-4575-41ac-b631-cda1cad5957d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"132b2863-4901-46dd-b050-23adf8a91212","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:20:59.4891986Z","updatedOn":"2019-06-28T05:20:59.4891986Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d78d8a0-b367-4b89-a0c9-f00dd91e04c1","type":"Microsoft.Authorization/roleAssignments","name":"9d78d8a0-b367-4b89-a0c9-f00dd91e04c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13733798-367b-41b4-ab70-c009ff810e61","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T06:56:16.0921597Z","updatedOn":"2019-01-31T06:56:16.0921597Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/87a1251f-b871-47ac-8903-992d3d12ab6d","type":"Microsoft.Authorization/roleAssignments","name":"87a1251f-b871-47ac-8903-992d3d12ab6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13dfd152-b3ee-45c7-ac21-a6d4bd9b1efe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-02T12:08:16.4864386Z","updatedOn":"2019-09-02T12:08:16.4864386Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4eacac3-0b1e-4a00-a813-57c1949d9339","type":"Microsoft.Authorization/roleAssignments","name":"d4eacac3-0b1e-4a00-a813-57c1949d9339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1406c023-f820-4b11-929d-240f81640bba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:35:49.8406728Z","updatedOn":"2019-02-22T07:35:49.8406728Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/850d6247-205a-4d7a-b88e-686aeb9e3419","type":"Microsoft.Authorization/roleAssignments","name":"850d6247-205a-4d7a-b88e-686aeb9e3419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1429ff6d-6811-4368-80b2-3d05bacfee79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T20:40:54.4009379Z","updatedOn":"2018-10-01T20:40:54.4009379Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cef91439-7637-4db6-b7b5-4d9dcda73ef7","type":"Microsoft.Authorization/roleAssignments","name":"cef91439-7637-4db6-b7b5-4d9dcda73ef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1496f758-36e1-4306-8f42-07d6f7fea1b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T06:51:44.8128708Z","updatedOn":"2018-11-23T06:51:44.8128708Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e9cddb-50c4-4663-9270-4b51557c66cb","type":"Microsoft.Authorization/roleAssignments","name":"a7e9cddb-50c4-4663-9270-4b51557c66cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"14e01ed5-dbac-4c5e-9136-8f26201570fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T15:44:08.6308346Z","updatedOn":"2018-11-08T15:44:08.6308346Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bd09a95-0f01-4e0d-979b-19a21c975a64","type":"Microsoft.Authorization/roleAssignments","name":"9bd09a95-0f01-4e0d-979b-19a21c975a64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"15e130d0-e547-439f-9ef4-700c15a51573","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:37:00.4858523Z","updatedOn":"2019-05-08T05:37:00.4858523Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ba1d251-96e3-4260-9941-9706f5bb9209","type":"Microsoft.Authorization/roleAssignments","name":"3ba1d251-96e3-4260-9941-9706f5bb9209"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"161342b0-aaa8-4694-924a-7ce80d2edb0d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:39:21.7984582Z","updatedOn":"2018-10-30T05:39:21.7984582Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67438a31-fcf6-441b-a316-4b059172e915","type":"Microsoft.Authorization/roleAssignments","name":"67438a31-fcf6-441b-a316-4b059172e915"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1676df9a-840e-41ae-bc0b-38d2a8028d7f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T06:55:15.7039662Z","updatedOn":"2019-02-02T06:55:15.7039662Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9d8f79-e7c9-4fe3-a114-a018a1fc3981","type":"Microsoft.Authorization/roleAssignments","name":"8d9d8f79-e7c9-4fe3-a114-a018a1fc3981"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a05e539-d61f-41be-859f-cfc5a604dd73","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-24T06:47:05.5194949Z","updatedOn":"2018-11-24T06:47:05.5194949Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2703a80d-0221-439f-b05e-01452ebd9982","type":"Microsoft.Authorization/roleAssignments","name":"2703a80d-0221-439f-b05e-01452ebd9982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a45b438-0323-4014-8929-8a4354cd86a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T00:13:54.9085305Z","updatedOn":"2018-09-20T00:13:54.9085305Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2efee97-c97c-4ed9-8f19-c2abf9bcc43e","type":"Microsoft.Authorization/roleAssignments","name":"e2efee97-c97c-4ed9-8f19-c2abf9bcc43e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1b5b3fa8-044d-475b-b238-ff5d2e19d77d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:59.4405634Z","updatedOn":"2018-10-09T05:36:59.4405634Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa37954d-99ea-435f-8d0e-561e9219beb6","type":"Microsoft.Authorization/roleAssignments","name":"aa37954d-99ea-435f-8d0e-561e9219beb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bc3132e-956b-4c49-adb5-54a388d07f98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T22:14:51.1000243Z","updatedOn":"2018-11-07T22:14:51.1000243Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3cab2d-8962-4a13-b473-fb50f33e47e7","type":"Microsoft.Authorization/roleAssignments","name":"2f3cab2d-8962-4a13-b473-fb50f33e47e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bce50d7-8e1e-41e3-97c9-5f0b5894be30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T09:46:00.8241958Z","updatedOn":"2018-11-02T09:46:00.8241958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70d95d36-d655-4e5d-b7c0-bd415764adbe","type":"Microsoft.Authorization/roleAssignments","name":"70d95d36-d655-4e5d-b7c0-bd415764adbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1c8ad9bd-21f3-4db6-b5e8-5fc1cb245796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T06:50:15.2358847Z","updatedOn":"2019-01-17T06:50:15.2358847Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3edb2abd-0bf8-49bb-9a01-47175035134e","type":"Microsoft.Authorization/roleAssignments","name":"3edb2abd-0bf8-49bb-9a01-47175035134e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1df69032-e361-4aec-9a6a-b11a1b520a0a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T06:47:43.5953324Z","updatedOn":"2019-05-30T06:47:43.5953324Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e40d233-f94a-4647-896e-1173156f8370","type":"Microsoft.Authorization/roleAssignments","name":"8e40d233-f94a-4647-896e-1173156f8370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f0529f4-caec-4e5e-9929-9accf07bc0a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T10:50:33.5684193Z","updatedOn":"2019-02-01T10:50:33.5684193Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e186033-3989-485f-83f3-5643307712d3","type":"Microsoft.Authorization/roleAssignments","name":"4e186033-3989-485f-83f3-5643307712d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f58bd4e-34b0-4b3f-8c6d-5a74d861b553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-27T07:09:51.7579083Z","updatedOn":"2019-09-27T07:09:51.7579083Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f349b785-162e-44b0-9bcc-6f32f4657471","type":"Microsoft.Authorization/roleAssignments","name":"f349b785-162e-44b0-9bcc-6f32f4657471"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f9960dc-ed2d-41c8-bc4c-753fb935c5bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:19:46.7691877Z","updatedOn":"2019-04-14T03:19:46.7691877Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e380dbd1-135b-4e5d-b8fd-1067fc314a53","type":"Microsoft.Authorization/roleAssignments","name":"e380dbd1-135b-4e5d-b8fd-1067fc314a53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fa11459-9edc-4b12-95b7-4af1db729fea","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T14:44:54.8928622Z","updatedOn":"2018-11-01T14:44:54.8928622Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea2feead-bf18-4cd0-9fb3-baa3e89c9147","type":"Microsoft.Authorization/roleAssignments","name":"ea2feead-bf18-4cd0-9fb3-baa3e89c9147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fe73bbc-d3e6-4149-a45b-71a7c64455d3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T09:45:15.4346754Z","updatedOn":"2018-11-01T09:45:15.4346754Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe17d25c-de8b-413b-940a-9b0eabe9fd7a","type":"Microsoft.Authorization/roleAssignments","name":"fe17d25c-de8b-413b-940a-9b0eabe9fd7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20a81344-97e8-4380-9232-ff5e2e2357dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:47.7973245Z","updatedOn":"2019-03-27T06:15:47.7973245Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee311f1d-948d-48c8-945a-daaa6c9c2bb6","type":"Microsoft.Authorization/roleAssignments","name":"ee311f1d-948d-48c8-945a-daaa6c9c2bb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20c3d19c-869b-4df3-a560-27bb3ec27259","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T06:51:17.1809226Z","updatedOn":"2019-06-18T06:51:17.1809226Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ebc369-e5bc-4696-a291-45b0d3c655db","type":"Microsoft.Authorization/roleAssignments","name":"c0ebc369-e5bc-4696-a291-45b0d3c655db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"22bb981f-2225-42a6-a92c-1513b98d1059","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:34:47.1182652Z","updatedOn":"2019-04-18T05:34:47.1182652Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/949f32b9-9a90-44da-9893-a626cbf255fe","type":"Microsoft.Authorization/roleAssignments","name":"949f32b9-9a90-44da-9893-a626cbf255fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2424df05-e09e-4b50-a144-34a5a7356356","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:15:24.8105554Z","updatedOn":"2019-04-26T05:15:24.8105554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96e1c119-4f12-4238-9f77-95a10ddf49ab","type":"Microsoft.Authorization/roleAssignments","name":"96e1c119-4f12-4238-9f77-95a10ddf49ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"24f54edc-4e4f-4a9a-bd65-6e946262fcc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T14:44:06.2164283Z","updatedOn":"2018-10-11T14:44:06.2164283Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/accd1466-cc34-4a91-8129-5504a5c66394","type":"Microsoft.Authorization/roleAssignments","name":"accd1466-cc34-4a91-8129-5504a5c66394"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25ac2b10-acd3-40aa-a872-88f1e9c4013b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T06:51:47.7700347Z","updatedOn":"2019-05-23T06:51:47.7700347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc","type":"Microsoft.Authorization/roleAssignments","name":"0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25c0b9c6-6039-435e-92a1-96f41e1d3b90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-12T14:54:16.0607354Z","updatedOn":"2019-03-12T14:54:16.0607354Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47a17234-3ed6-4788-b98b-ad99b024ad95","type":"Microsoft.Authorization/roleAssignments","name":"47a17234-3ed6-4788-b98b-ad99b024ad95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2652f837-f3c8-4378-b3e0-1407a1791c82","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T03:52:13.2726368Z","updatedOn":"2019-04-16T03:52:13.2726368Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ece4429e-5ad9-448b-89a6-55a6cb913269","type":"Microsoft.Authorization/roleAssignments","name":"ece4429e-5ad9-448b-89a6-55a6cb913269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"266f54be-0172-4b9c-ac7d-379382f47c68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T06:38:37.1824443Z","updatedOn":"2019-04-25T06:38:37.1824443Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ebbed54-2afd-4492-8113-79a5980bf1b7","type":"Microsoft.Authorization/roleAssignments","name":"8ebbed54-2afd-4492-8113-79a5980bf1b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2770540c-e142-49e7-927b-0a183c15b6da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:19:41.8631372Z","updatedOn":"2019-06-15T05:19:41.8631372Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/144279f9-5b67-48fb-a41a-a32f8f8f5db3","type":"Microsoft.Authorization/roleAssignments","name":"144279f9-5b67-48fb-a41a-a32f8f8f5db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"277f496f-1909-47b3-92ac-ec0fa7fb0177","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T06:44:59.1181039Z","updatedOn":"2019-05-28T06:44:59.1181039Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e29e35de-78d0-463d-83fd-5e0cf612ae81","type":"Microsoft.Authorization/roleAssignments","name":"e29e35de-78d0-463d-83fd-5e0cf612ae81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"27918e9c-70d2-41c6-bea4-d45e31bd2355","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:13:46.5798573Z","updatedOn":"2019-05-01T05:13:46.5798573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7c5d200-df84-4d35-a2f8-ccaf2a94a901","type":"Microsoft.Authorization/roleAssignments","name":"f7c5d200-df84-4d35-a2f8-ccaf2a94a901"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"287b9939-6a03-4276-966e-67035119e274","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-24T02:35:38.9762249Z","updatedOn":"2019-01-24T02:35:38.9762249Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83a13d3-1cfa-42b7-8f89-ae22d697ff0c","type":"Microsoft.Authorization/roleAssignments","name":"f83a13d3-1cfa-42b7-8f89-ae22d697ff0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"28bd66fd-85b2-4749-b439-006c9af1eff0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:15.2613209Z","updatedOn":"2018-10-09T05:05:15.2613209Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f398525-2cf3-41a3-a231-21f536d8d5ec","type":"Microsoft.Authorization/roleAssignments","name":"5f398525-2cf3-41a3-a231-21f536d8d5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"291b97eb-bdeb-4766-9cc0-9dbd56c450e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T07:14:13.3960092Z","updatedOn":"2019-02-23T07:14:13.3960092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1fc00bb-0243-4a81-a4a5-e099865ac6c8","type":"Microsoft.Authorization/roleAssignments","name":"a1fc00bb-0243-4a81-a4a5-e099865ac6c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"296501a5-a8b4-48c6-a06a-b6fde003a842","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:25:37.5138128Z","updatedOn":"2018-10-10T00:25:37.5138128Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3","type":"Microsoft.Authorization/roleAssignments","name":"2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2985330b-5538-47fe-867d-ef5c1b595ab5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:25:06.6333933Z","updatedOn":"2018-09-20T17:25:06.6333933Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/316cac7f-8452-41cc-b0e9-45b2c93f773d","type":"Microsoft.Authorization/roleAssignments","name":"316cac7f-8452-41cc-b0e9-45b2c93f773d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"29bd6401-5338-48bb-b82e-e9558cf486a2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:53.1283425Z","updatedOn":"2018-09-18T23:57:53.1283425Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe329617-f460-452b-beb6-3ec18aa08cd2","type":"Microsoft.Authorization/roleAssignments","name":"fe329617-f460-452b-beb6-3ec18aa08cd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2af0eee9-ba06-49d3-97da-6bd84f58c56b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T07:10:43.0213604Z","updatedOn":"2019-03-02T07:10:43.0213604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d40084c9-04e2-4966-9c08-3610f52ccc93","type":"Microsoft.Authorization/roleAssignments","name":"d40084c9-04e2-4966-9c08-3610f52ccc93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2c9a405a-6caf-4f3a-84f4-45dc7278ab53","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T05:12:22.6640626Z","updatedOn":"2019-04-17T05:12:22.6640626Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ccd833f-6576-4f24-8eb3-e36f2beacce2","type":"Microsoft.Authorization/roleAssignments","name":"6ccd833f-6576-4f24-8eb3-e36f2beacce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2cc30feb-0381-495e-a3e2-616ec5a1338d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:05.0223475Z","updatedOn":"2019-01-29T06:54:05.0223475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/243af6a8-ded0-4272-8bc0-8b4cc4e4e316","type":"Microsoft.Authorization/roleAssignments","name":"243af6a8-ded0-4272-8bc0-8b4cc4e4e316"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2ce42326-7862-4ee8-9db9-ce61f53d0509","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:39:38.6430404Z","updatedOn":"2019-05-03T05:39:38.6430404Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23df7e2b-55d2-41c7-8cce-a96c52e0d727","type":"Microsoft.Authorization/roleAssignments","name":"23df7e2b-55d2-41c7-8cce-a96c52e0d727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2dfd7675-8cec-449b-9cf5-8fb60462dcd7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T05:48:13.8023619Z","updatedOn":"2018-11-02T05:48:13.8023619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19730b6-b7db-43b1-acd6-25cd8bddde5a","type":"Microsoft.Authorization/roleAssignments","name":"b19730b6-b7db-43b1-acd6-25cd8bddde5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2e9d1611-5835-4eb2-843c-9957f451add4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T06:54:04.4629279Z","updatedOn":"2019-06-13T06:54:04.4629279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfbffec9-f53c-4234-9d90-4bde2bbd6375","type":"Microsoft.Authorization/roleAssignments","name":"cfbffec9-f53c-4234-9d90-4bde2bbd6375"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2f1fe7a4-cdda-4979-97ee-e1dc465c7487","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:32:12.4728749Z","updatedOn":"2018-10-10T00:32:12.4728749Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc7696b7-44c3-4a32-baa8-d22bf85e925f","type":"Microsoft.Authorization/roleAssignments","name":"bc7696b7-44c3-4a32-baa8-d22bf85e925f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2fdb0e9e-cf35-46d1-a84d-5872a774aeaa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-04T05:42:27.0197067Z","updatedOn":"2019-07-04T05:42:27.0197067Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf219e4-1fd6-414c-8d02-c632cd7e1dd6","type":"Microsoft.Authorization/roleAssignments","name":"fbf219e4-1fd6-414c-8d02-c632cd7e1dd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"302f2c06-6203-4115-9781-0dfb57c3ab33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-03T05:50:02.4338421Z","updatedOn":"2019-07-03T05:50:02.4338421Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0bdf9b6-1518-4a4e-a8d8-ae18995872a9","type":"Microsoft.Authorization/roleAssignments","name":"b0bdf9b6-1518-4a4e-a8d8-ae18995872a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"30672894-e0ff-4e17-9bb5-f990b00b2a75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T20:08:39.3899074Z","updatedOn":"2018-10-11T20:08:39.3899074Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96c44173-1847-41b5-8d19-72206147559e","type":"Microsoft.Authorization/roleAssignments","name":"96c44173-1847-41b5-8d19-72206147559e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3108a44b-0b99-4b88-8863-89d551752b86","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T20:12:47.4692498Z","updatedOn":"2018-11-22T20:12:47.4692498Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/464e210b-cb81-40bb-b304-d467ef32fc63","type":"Microsoft.Authorization/roleAssignments","name":"464e210b-cb81-40bb-b304-d467ef32fc63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31a2474d-ecb4-4369-ada4-1976f49b71b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-16T05:43:06.1659793Z","updatedOn":"2019-07-16T05:43:06.1659793Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/813a81bc-cc15-4c04-873c-e8ce3fc0e86a","type":"Microsoft.Authorization/roleAssignments","name":"813a81bc-cc15-4c04-873c-e8ce3fc0e86a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c083be-605f-4b0f-82c1-5502cfe98b54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:19.4550939Z","updatedOn":"2019-03-22T06:12:19.4550939Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24edaa89-724b-4ad5-9321-b4627ce18f4c","type":"Microsoft.Authorization/roleAssignments","name":"24edaa89-724b-4ad5-9321-b4627ce18f4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c89bb6-f072-4dba-aa7b-9204f8a0e57e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T15:34:05.0200789Z","updatedOn":"2018-12-07T15:34:05.0200789Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/154d396f-73a2-458e-b6ac-790d4c8dd160","type":"Microsoft.Authorization/roleAssignments","name":"154d396f-73a2-458e-b6ac-790d4c8dd160"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31fd3974-2d10-4926-b1e9-046b585409bb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T07:12:01.9875232Z","updatedOn":"2019-03-06T07:12:01.9875232Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0472cec-2839-4cd3-8521-a41fb32c2b88","type":"Microsoft.Authorization/roleAssignments","name":"c0472cec-2839-4cd3-8521-a41fb32c2b88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"338ba9d8-70ea-4d16-8817-c52bcb4195d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T06:42:13.5810238Z","updatedOn":"2019-05-15T06:42:13.5810238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fec1dffa-57a7-48d6-8265-6472486b70f9","type":"Microsoft.Authorization/roleAssignments","name":"fec1dffa-57a7-48d6-8265-6472486b70f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"33962949-fffb-44d6-98a8-d79b2cb70a15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T21:24:04.0700040Z","updatedOn":"2018-12-08T21:24:04.0700040Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd880d6c-3630-49dc-97f7-13930c8b98bb","type":"Microsoft.Authorization/roleAssignments","name":"cd880d6c-3630-49dc-97f7-13930c8b98bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"344b32fc-71cb-476e-9372-44e6da88be09","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:53:02.5831868Z","updatedOn":"2018-10-23T16:53:02.5831868Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d006fc62-cd5c-46ed-889e-517ce18950b6","type":"Microsoft.Authorization/roleAssignments","name":"d006fc62-cd5c-46ed-889e-517ce18950b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34d734a3-5d21-4858-9cf0-5f29418313ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T18:20:53.4971054Z","updatedOn":"2018-11-12T18:20:53.4971054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bd23f3b-eaad-43d6-a63a-210d75c07f36","type":"Microsoft.Authorization/roleAssignments","name":"0bd23f3b-eaad-43d6-a63a-210d75c07f36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34f592d2-e01e-47fd-b101-4f7f6df4d133","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:12:43.2633496Z","updatedOn":"2019-04-18T05:12:43.2633496Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3005cf87-d322-4c04-be7f-43f5e118e06a","type":"Microsoft.Authorization/roleAssignments","name":"3005cf87-d322-4c04-be7f-43f5e118e06a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"355ed94a-dda4-4736-b235-dc475c58ce72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T06:35:31.9062201Z","updatedOn":"2019-05-02T06:35:31.9062201Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b26fa985-092c-4189-9f8a-a94aaa13b726","type":"Microsoft.Authorization/roleAssignments","name":"b26fa985-092c-4189-9f8a-a94aaa13b726"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35cd7d38-80db-4616-ae5d-951a521ab05d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T17:39:58.9546435Z","updatedOn":"2018-10-04T17:39:58.9546435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a97d3db-f15e-43f2-91de-aea95f5b6f81","type":"Microsoft.Authorization/roleAssignments","name":"2a97d3db-f15e-43f2-91de-aea95f5b6f81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35ce1576-d892-4dee-9d8e-fc7686599ebb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:02:18.4864213Z","updatedOn":"2018-10-02T17:02:18.4864213Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1979c483-6ecb-4e16-87e0-4dedf1cdaf03","type":"Microsoft.Authorization/roleAssignments","name":"1979c483-6ecb-4e16-87e0-4dedf1cdaf03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35fc6ba9-80cf-48e2-874a-12a118ab91cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T07:05:40.9081153Z","updatedOn":"2019-03-01T07:05:40.9081153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f45ef5-db08-4120-9fc2-2663f34b2ce9","type":"Microsoft.Authorization/roleAssignments","name":"24f45ef5-db08-4120-9fc2-2663f34b2ce9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3634b51a-c74e-4a68-9e41-bfc2fe2160b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T18:34:53.7786399Z","updatedOn":"2019-04-15T18:34:53.7786399Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1f7f5d2-ed1b-4322-8058-be4ebfc11a42","type":"Microsoft.Authorization/roleAssignments","name":"a1f7f5d2-ed1b-4322-8058-be4ebfc11a42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"367664c8-b9a3-490e-9745-6c54b68388c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:17:16.5111674Z","updatedOn":"2019-05-23T05:17:16.5111674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcea031-4e08-4047-9655-eb42e0528690","type":"Microsoft.Authorization/roleAssignments","name":"8bcea031-4e08-4047-9655-eb42e0528690"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"374ac999-5f34-4404-bf61-041fb33500b2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T06:49:11.5399368Z","updatedOn":"2019-01-04T06:49:11.5399368Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/20daba39-a380-42a9-8e18-c8af08ebeb98","type":"Microsoft.Authorization/roleAssignments","name":"20daba39-a380-42a9-8e18-c8af08ebeb98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T18:58:20.9990189Z","updatedOn":"2019-01-08T18:58:20.9990189Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54925852-e514-4e06-9023-14b82e9060e7","type":"Microsoft.Authorization/roleAssignments","name":"54925852-e514-4e06-9023-14b82e9060e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"383cd9d9-b653-45c7-b664-8cab304bcf19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T06:48:47.0085566Z","updatedOn":"2019-06-04T06:48:47.0085566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5453f43-59b0-4d6e-bf33-16f3535418d8","type":"Microsoft.Authorization/roleAssignments","name":"b5453f43-59b0-4d6e-bf33-16f3535418d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"384e2def-4c41-448a-8c94-7347548db1eb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:48:12.8727674Z","updatedOn":"2019-06-14T05:48:12.8727674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/264fcc95-9b6f-4a6a-81d7-10c0453f1268","type":"Microsoft.Authorization/roleAssignments","name":"264fcc95-9b6f-4a6a-81d7-10c0453f1268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3948fa02-af62-47bf-b039-4acc6e1475ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:37:15.1035155Z","updatedOn":"2019-05-04T05:37:15.1035155Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b734984-c922-440f-a5b1-db59b7878918","type":"Microsoft.Authorization/roleAssignments","name":"6b734984-c922-440f-a5b1-db59b7878918"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"39e6bb0d-be2a-4538-9e72-abdc081216b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T06:32:15.5933238Z","updatedOn":"2019-04-18T06:32:15.5933238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf873e07-b909-4dd9-9e0c-18e64c8edd84","type":"Microsoft.Authorization/roleAssignments","name":"cf873e07-b909-4dd9-9e0c-18e64c8edd84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2bafee-ff4e-4b8b-a6cf-9691ecb3ea62","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-07T07:08:48.4217749Z","updatedOn":"2019-02-07T07:08:48.4217749Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3a19c27-5757-473e-b2b0-8db57e6b0e11","type":"Microsoft.Authorization/roleAssignments","name":"b3a19c27-5757-473e-b2b0-8db57e6b0e11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2f0a23-c535-4f56-989f-8d9e58b859c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:16:10.7403775Z","updatedOn":"2019-03-26T06:16:10.7403775Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/695c75ea-8543-4201-9232-89d155c26b4c","type":"Microsoft.Authorization/roleAssignments","name":"695c75ea-8543-4201-9232-89d155c26b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b5999d5-a1b5-450c-891c-489323d60c11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T05:45:54.9016146Z","updatedOn":"2019-07-10T05:45:54.9016146Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32ce51be-fa71-43ac-97f0-2ffceeb30f55","type":"Microsoft.Authorization/roleAssignments","name":"32ce51be-fa71-43ac-97f0-2ffceeb30f55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1a3e8e-e818-4f05-82de-682364ed92c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:57.8773096Z","updatedOn":"2019-04-05T06:36:57.8773096Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42dd6f44-4f5e-4766-b849-051039f765e0","type":"Microsoft.Authorization/roleAssignments","name":"42dd6f44-4f5e-4766-b849-051039f765e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1cfbb4-75da-4348-840f-5e5de85fc6f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T19:38:20.4035114Z","updatedOn":"2019-01-08T19:38:20.4035114Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff70724f-a33b-48f9-9312-5e04f56d9b43","type":"Microsoft.Authorization/roleAssignments","name":"ff70724f-a33b-48f9-9312-5e04f56d9b43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c83c51b-6dc3-4a52-b9ed-8d48ae2b1574","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T10:22:35.5153932Z","updatedOn":"2018-10-24T10:22:35.5153932Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e35d96ce-56b4-4030-8685-142f0c964419","type":"Microsoft.Authorization/roleAssignments","name":"e35d96ce-56b4-4030-8685-142f0c964419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3cc35563-ac01-4d1b-ab0d-0bc17560532c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:05:30.3277955Z","updatedOn":"2019-04-14T03:05:30.3277955Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f87c098-7837-4311-bebe-401fe51a184f","type":"Microsoft.Authorization/roleAssignments","name":"3f87c098-7837-4311-bebe-401fe51a184f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3d02ec0c-ae17-4bdf-a8db-b0b19c0e03e9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-11T14:43:04.1109719Z","updatedOn":"2019-03-11T14:43:04.1109719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb6cbad-7f4e-4d74-9027-91dc795244ae","type":"Microsoft.Authorization/roleAssignments","name":"9eb6cbad-7f4e-4d74-9027-91dc795244ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3daf8c04-9a2d-413c-a214-3e68b9543da7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-08T02:27:32.1442243Z","updatedOn":"2019-10-08T02:27:32.1442243Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aec41005-d32b-495a-8cb8-638432712cc3","type":"Microsoft.Authorization/roleAssignments","name":"aec41005-d32b-495a-8cb8-638432712cc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3dd8d42d-ed70-47cf-84da-821d1a939c83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T06:33:10.1124799Z","updatedOn":"2019-05-01T06:33:10.1124799Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07acfe61-f00b-47d8-baab-eedce96906f4","type":"Microsoft.Authorization/roleAssignments","name":"07acfe61-f00b-47d8-baab-eedce96906f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e3faccf-8d37-4b6f-88ee-af65c6231ea8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:36:08.1019453Z","updatedOn":"2019-05-02T05:36:08.1019453Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86fb46ae-5482-4ee2-bab9-0915b584594d","type":"Microsoft.Authorization/roleAssignments","name":"86fb46ae-5482-4ee2-bab9-0915b584594d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e8864ee-4bca-489b-bc88-de613bb99a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:47:09.6910104Z","updatedOn":"2018-09-26T19:47:09.6910104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/896bc3e9-96ce-4710-a27d-80d0ebca43a5","type":"Microsoft.Authorization/roleAssignments","name":"896bc3e9-96ce-4710-a27d-80d0ebca43a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f073272-9332-48fc-b068-50c5fdce1f8f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-13T05:44:37.3086687Z","updatedOn":"2019-07-13T05:44:37.3086687Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4825f547-8689-41aa-b9ae-02ab8a272df7","type":"Microsoft.Authorization/roleAssignments","name":"4825f547-8689-41aa-b9ae-02ab8a272df7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f615c1e-f896-4fd9-9cc7-d5681606a42c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:11:37.6304700Z","updatedOn":"2019-04-14T03:11:37.6304700Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2","type":"Microsoft.Authorization/roleAssignments","name":"bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3fff76c9-4537-43e9-9fa7-d6d58cb084e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:23.1321548Z","updatedOn":"2019-04-13T06:36:23.1321548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442992e2-de64-4aab-96dc-459680fd2222","type":"Microsoft.Authorization/roleAssignments","name":"442992e2-de64-4aab-96dc-459680fd2222"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4027db79-e003-4678-a7ee-1ae5e2b5eba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T06:49:01.7491823Z","updatedOn":"2019-01-09T06:49:01.7491823Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a36486c-9b6e-4149-a7a7-4d58d63626a9","type":"Microsoft.Authorization/roleAssignments","name":"1a36486c-9b6e-4149-a7a7-4d58d63626a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40a89fa8-85ce-479b-a6db-26eb17d19701","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T06:52:07.4698060Z","updatedOn":"2019-02-01T06:52:07.4698060Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fddc9248-2712-4624-8048-37c66ce08589","type":"Microsoft.Authorization/roleAssignments","name":"fddc9248-2712-4624-8048-37c66ce08589"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40b86c5e-9309-4905-ae7d-d78e9d11a364","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T22:59:10.0099024Z","updatedOn":"2018-09-25T22:59:10.0099024Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50333f8a-1bf4-4681-b541-fb21930b296e","type":"Microsoft.Authorization/roleAssignments","name":"50333f8a-1bf4-4681-b541-fb21930b296e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41438247-dd5d-4324-a76b-ccf944ac56d7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:41.8766621Z","updatedOn":"2019-04-13T06:36:41.8766621Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a256a5b-7de7-4dae-98ba-8846e4da6173","type":"Microsoft.Authorization/roleAssignments","name":"9a256a5b-7de7-4dae-98ba-8846e4da6173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"417738c9-0901-4c95-81fd-626e4d29c9f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T16:49:16.9620977Z","updatedOn":"2019-01-17T16:49:16.9620977Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da194327-d7ec-4e5d-baa3-bf5584c16304","type":"Microsoft.Authorization/roleAssignments","name":"da194327-d7ec-4e5d-baa3-bf5584c16304"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41928376-c102-419b-b028-b5396ffbfc3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T01:13:44.7610853Z","updatedOn":"2018-11-09T01:13:44.7610853Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dd98515-7927-4a0d-adee-96c8f07807d5","type":"Microsoft.Authorization/roleAssignments","name":"6dd98515-7927-4a0d-adee-96c8f07807d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42155c87-6909-4dda-86a7-fb4f75789b83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T10:59:12.8478371Z","updatedOn":"2018-09-28T10:59:12.8478371Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3222cb2a-916f-45ea-8281-8b16eba9bbaf","type":"Microsoft.Authorization/roleAssignments","name":"3222cb2a-916f-45ea-8281-8b16eba9bbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42f419bc-1783-482b-9faf-e1dc6f71cfe7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T06:54:35.5634168Z","updatedOn":"2019-01-25T06:54:35.5634168Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e93e2b8-cc6f-49db-b66b-7b628ab5466d","type":"Microsoft.Authorization/roleAssignments","name":"3e93e2b8-cc6f-49db-b66b-7b628ab5466d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43193797-910c-4f41-8250-52c9526a19b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:33.7167095Z","updatedOn":"2019-03-21T06:07:33.7167095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd8b57d1-9948-4594-b25c-ff29bf0f8d22","type":"Microsoft.Authorization/roleAssignments","name":"fd8b57d1-9948-4594-b25c-ff29bf0f8d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4359a177-0349-4bbe-8200-597a6b5988c4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T06:43:34.9542020Z","updatedOn":"2019-05-21T06:43:34.9542020Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475feb5a-afb2-4417-845b-91287f4df064","type":"Microsoft.Authorization/roleAssignments","name":"475feb5a-afb2-4417-845b-91287f4df064"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"436315a1-3487-4b5f-9451-9db950947774","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:24:08.0369897Z","updatedOn":"2019-05-29T05:24:08.0369897Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209b5f11-de0d-4481-80a2-daa9ec1332a9","type":"Microsoft.Authorization/roleAssignments","name":"209b5f11-de0d-4481-80a2-daa9ec1332a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43c23ded-3cb5-470e-bc6b-18ace2450f02","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T10:31:43.9680528Z","updatedOn":"2018-10-26T10:31:43.9680528Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a9ef605-c40e-4022-9892-7ff1571d42d1","type":"Microsoft.Authorization/roleAssignments","name":"6a9ef605-c40e-4022-9892-7ff1571d42d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"44612a17-dcf7-45aa-9746-e23b9efbc52e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-19T06:08:01.4727425Z","updatedOn":"2019-03-19T06:08:01.4727425Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4bda3a7-c31f-4785-87b9-7397c66c2a76","type":"Microsoft.Authorization/roleAssignments","name":"a4bda3a7-c31f-4785-87b9-7397c66c2a76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"446a2406-5e3c-426f-a11f-b2ae90d41b12","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T06:47:10.6709040Z","updatedOn":"2019-06-28T06:47:10.6709040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8526e15-cc60-485b-8fb7-2fc75d771680","type":"Microsoft.Authorization/roleAssignments","name":"c8526e15-cc60-485b-8fb7-2fc75d771680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4483f609-8063-445d-8fce-e9a0791d7743","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T06:38:36.9659286Z","updatedOn":"2019-05-04T06:38:36.9659286Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d8a96ba-af52-4ded-a174-fe4f5bd251ec","type":"Microsoft.Authorization/roleAssignments","name":"8d8a96ba-af52-4ded-a174-fe4f5bd251ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"450f70cc-8ddd-44bd-b4c8-6f4337fd615c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T13:40:33.9593357Z","updatedOn":"2019-02-05T13:40:33.9593357Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc6377ff-4ee9-4fe6-a603-aaf51634aed9","type":"Microsoft.Authorization/roleAssignments","name":"fc6377ff-4ee9-4fe6-a603-aaf51634aed9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4547f709-4e50-470c-8060-7812e3b8c3ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:49:48.5677574Z","updatedOn":"2019-06-25T16:49:48.5677574Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81b44c64-fa8b-46fe-b846-d6d828662047","type":"Microsoft.Authorization/roleAssignments","name":"81b44c64-fa8b-46fe-b846-d6d828662047"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4573f187-107b-42b9-a630-65afaed9dedc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:19:21.1503618Z","updatedOn":"2018-10-02T17:19:21.1503618Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b387a328-57de-470d-a725-e1b9851bb313","type":"Microsoft.Authorization/roleAssignments","name":"b387a328-57de-470d-a725-e1b9851bb313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45b3b38d-12b6-4661-a6aa-39ed5db0ec3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:47:31.4973975Z","updatedOn":"2018-10-16T05:47:31.4973975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a8697a7-5b39-467d-9a2f-6b252e8221f6","type":"Microsoft.Authorization/roleAssignments","name":"0a8697a7-5b39-467d-9a2f-6b252e8221f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bb20e3-e8a7-471c-8f35-a9b2a0d53eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:18:31.0524635Z","updatedOn":"2019-06-04T05:18:31.0524635Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05d587fc-47ba-4c32-8299-778af7caa3cb","type":"Microsoft.Authorization/roleAssignments","name":"05d587fc-47ba-4c32-8299-778af7caa3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bed781-9c44-47cd-9e3a-dcac823cb9b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-06T05:39:57.3761475Z","updatedOn":"2019-06-06T05:39:57.3761475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cadc56c7-a92c-48fa-be3a-7cb98623167f","type":"Microsoft.Authorization/roleAssignments","name":"cadc56c7-a92c-48fa-be3a-7cb98623167f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45c56eda-fe0e-4d34-89bf-28572cdac667","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:15:46.6902330Z","updatedOn":"2019-04-27T05:15:46.6902330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2993d37a-5072-45fb-b18e-b4ba8a081837","type":"Microsoft.Authorization/roleAssignments","name":"2993d37a-5072-45fb-b18e-b4ba8a081837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"460b4bac-41c6-4e2e-8bde-3b9db7715926","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T06:44:05.7543726Z","updatedOn":"2019-06-01T06:44:05.7543726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed","type":"Microsoft.Authorization/roleAssignments","name":"89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46544a73-6799-488b-a05f-d610bfb3fddc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-03T06:51:58.2053437Z","updatedOn":"2019-01-03T06:51:58.2053437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958","type":"Microsoft.Authorization/roleAssignments","name":"ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"469c2a14-0980-4a27-a5e6-b64da5278d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T10:22:25.8590170Z","updatedOn":"2018-10-29T10:22:25.8590170Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6304453a-dc6a-4566-aec9-0671e08478d1","type":"Microsoft.Authorization/roleAssignments","name":"6304453a-dc6a-4566-aec9-0671e08478d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46b8124c-0993-44ef-bcdd-59f8f909795a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T06:51:37.6673026Z","updatedOn":"2018-11-09T06:51:37.6673026Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e99aa592-ba65-4041-b875-1dc4fe439eb8","type":"Microsoft.Authorization/roleAssignments","name":"e99aa592-ba65-4041-b875-1dc4fe439eb8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"474cf59d-1867-42b8-afa4-94510b266143","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T17:10:30.5808563Z","updatedOn":"2018-09-19T17:10:30.5808563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de60d5e1-dd54-4d86-8627-19411fab3c55","type":"Microsoft.Authorization/roleAssignments","name":"de60d5e1-dd54-4d86-8627-19411fab3c55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4759ce24-1955-4c57-bc53-357a69cc065f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T05:42:58.0364828Z","updatedOn":"2019-09-11T05:42:58.0364828Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/096db8b9-6da1-41d6-91fc-a44386feca3f","type":"Microsoft.Authorization/roleAssignments","name":"096db8b9-6da1-41d6-91fc-a44386feca3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"47ccb4ae-269f-4792-98ee-55462208ad1d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T10:26:14.6817565Z","updatedOn":"2018-10-30T10:26:14.6817565Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9091773-c7c6-4f4e-ab35-076a5cc4d5db","type":"Microsoft.Authorization/roleAssignments","name":"a9091773-c7c6-4f4e-ab35-076a5cc4d5db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48399d68-6db0-4c01-9dc9-28ca48f676bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:21:52.8692211Z","updatedOn":"2019-06-14T05:21:52.8692211Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503e317f-50ed-435e-b484-035819f25387","type":"Microsoft.Authorization/roleAssignments","name":"503e317f-50ed-435e-b484-035819f25387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4879bdd1-f8b6-4e5c-8742-c93c3d8eb6f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:11:37.0429548Z","updatedOn":"2019-02-22T07:11:37.0429548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1021e7fe-c7ea-4439-8d72-bae5333a00a6","type":"Microsoft.Authorization/roleAssignments","name":"1021e7fe-c7ea-4439-8d72-bae5333a00a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48c186d2-d564-483b-a78d-92746eb34908","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-21T17:13:17.9399323Z","updatedOn":"2018-10-21T17:13:17.9399323Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66bb1b23-5b07-447c-94c0-be5c991edacd","type":"Microsoft.Authorization/roleAssignments","name":"66bb1b23-5b07-447c-94c0-be5c991edacd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4971287f-7b3d-42b8-80df-f7de72239f6c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-21T06:51:31.8471566Z","updatedOn":"2018-12-21T06:51:31.8471566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a82e12c4-d611-415f-8bbd-aa3768178f9a","type":"Microsoft.Authorization/roleAssignments","name":"a82e12c4-d611-415f-8bbd-aa3768178f9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"49fea90c-711d-4fff-8586-9a0bcaf79778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:45:42.3797028Z","updatedOn":"2019-06-12T05:45:42.3797028Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35aaaa16-0910-42ac-a2c7-6575174a8b65","type":"Microsoft.Authorization/roleAssignments","name":"35aaaa16-0910-42ac-a2c7-6575174a8b65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b04df63-6c76-4cec-ae82-c5302b50f57f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:40:01.4067044Z","updatedOn":"2019-04-25T05:40:01.4067044Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf697e75-2154-4ca7-bf7c-6f32131ff63d","type":"Microsoft.Authorization/roleAssignments","name":"cf697e75-2154-4ca7-bf7c-6f32131ff63d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b5f89be-be88-448d-90bd-1148b6c6deb2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-23T02:16:34.2523880Z","updatedOn":"2019-07-23T02:16:34.2523880Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1da14562-3dee-4c97-a071-1b2937796647","type":"Microsoft.Authorization/roleAssignments","name":"1da14562-3dee-4c97-a071-1b2937796647"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b723d4d-39b5-46cf-b192-1b5e4be7d278","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:51:32.3314332Z","updatedOn":"2018-10-04T05:51:32.3314332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeebc9cd-f851-4d9e-8782-b06de99a7616","type":"Microsoft.Authorization/roleAssignments","name":"aeebc9cd-f851-4d9e-8782-b06de99a7616"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b77e5f1-f472-4281-b5ce-96c2039e4872","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.9578107Z","updatedOn":"2019-04-02T06:14:22.9578107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8cf185-da61-4600-97fa-a27d71653544","type":"Microsoft.Authorization/roleAssignments","name":"bd8cf185-da61-4600-97fa-a27d71653544"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c14e60a-74c8-43ef-a370-6a3bb799cdb4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T13:15:28.5283855Z","updatedOn":"2019-02-23T13:15:28.5283855Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc732667-a40b-4490-8800-b77748ad2f8a","type":"Microsoft.Authorization/roleAssignments","name":"bc732667-a40b-4490-8800-b77748ad2f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c4e9e90-6bdc-49a9-ae74-32c96bf3a94c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:44:13.0979261Z","updatedOn":"2018-09-20T06:44:13.0979261Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90c91b21-abb3-48db-ba76-e4a288b056ce","type":"Microsoft.Authorization/roleAssignments","name":"90c91b21-abb3-48db-ba76-e4a288b056ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d430ee7-bf2c-41be-9672-96777cb84779","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T05:11:12.7927693Z","updatedOn":"2019-04-03T05:11:12.7927693Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71de9f73-c4c5-4b06-8229-8c2b73aa268c","type":"Microsoft.Authorization/roleAssignments","name":"71de9f73-c4c5-4b06-8229-8c2b73aa268c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d9bae5e-34ea-40c5-a98f-39c324594d3a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T09:41:30.9298710Z","updatedOn":"2018-10-30T09:41:30.9298710Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1","type":"Microsoft.Authorization/roleAssignments","name":"a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ddddf7e-258e-46ab-b563-26d2add85795","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:56.1452795Z","updatedOn":"2019-03-23T06:12:56.1452795Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45364ae9-1f1f-4a3e-b120-12bab739fa23","type":"Microsoft.Authorization/roleAssignments","name":"45364ae9-1f1f-4a3e-b120-12bab739fa23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ee4448c-0fa1-4493-b654-4c05705d54aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T14:42:25.4875530Z","updatedOn":"2018-10-22T14:42:25.4875530Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9000edfd-747d-4670-8223-aa771430eb6b","type":"Microsoft.Authorization/roleAssignments","name":"9000edfd-747d-4670-8223-aa771430eb6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4fea67d3-9364-4671-b8e2-e01ff6852013","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:37:03.6862425Z","updatedOn":"2018-10-23T16:37:03.6862425Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f93c69-9a92-4bce-a218-ed965f3b1fa7","type":"Microsoft.Authorization/roleAssignments","name":"82f93c69-9a92-4bce-a218-ed965f3b1fa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"500b471d-6dd2-45c7-b50f-192bc099465b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-11T08:59:49.1091322Z","updatedOn":"2019-02-11T08:59:49.1091322Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d","type":"Microsoft.Authorization/roleAssignments","name":"0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"50d1b7ca-6643-4aac-a7b6-aba7bffecb30","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T21:23:34.5623608Z","updatedOn":"2019-05-30T21:23:34.5623608Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff3f8887-b570-4cd2-80d9-31c3c0d780aa","type":"Microsoft.Authorization/roleAssignments","name":"ff3f8887-b570-4cd2-80d9-31c3c0d780aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"511d8bff-40f9-4003-a398-1fabde903a4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:49.4826402Z","updatedOn":"2019-03-30T06:13:49.4826402Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ead5ca8-3ae1-47f7-99d4-e8553fc813d0","type":"Microsoft.Authorization/roleAssignments","name":"3ead5ca8-3ae1-47f7-99d4-e8553fc813d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52129afe-24ab-41b9-a540-887b859baaa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T18:23:27.1190689Z","updatedOn":"2018-11-21T18:23:27.1190689Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d6d4ecf-980e-4860-910b-134eaf2010cb","type":"Microsoft.Authorization/roleAssignments","name":"2d6d4ecf-980e-4860-910b-134eaf2010cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52f6a30a-8d0c-47da-a3a5-b84e88a614b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T09:40:56.6401023Z","updatedOn":"2018-10-23T09:40:56.6401023Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beab38c9-0315-4f4c-b271-3d273132fb1c","type":"Microsoft.Authorization/roleAssignments","name":"beab38c9-0315-4f4c-b271-3d273132fb1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52fe9977-36ab-49b5-92a4-e008c4388a78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:35:03.4984397Z","updatedOn":"2019-05-07T05:35:03.4984397Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f02d236b-9aa2-4b3a-b23f-79421d4a68b2","type":"Microsoft.Authorization/roleAssignments","name":"f02d236b-9aa2-4b3a-b23f-79421d4a68b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"540777ec-189c-4cbf-bac5-6e1f84406a6f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T06:47:47.5895654Z","updatedOn":"2019-05-09T06:47:47.5895654Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e825f950-8897-4264-a635-53ae9feedfb9","type":"Microsoft.Authorization/roleAssignments","name":"e825f950-8897-4264-a635-53ae9feedfb9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5409d5ca-8e03-4557-9e84-8665a083b067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:39:48.5422832Z","updatedOn":"2019-06-01T05:39:48.5422832Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f","type":"Microsoft.Authorization/roleAssignments","name":"bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54832b72-aac4-4083-93d5-846c2b6b45e8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:47:59.4896743Z","updatedOn":"2018-11-28T06:47:59.4896743Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ad3378a-c327-464e-9445-1879a1066af9","type":"Microsoft.Authorization/roleAssignments","name":"3ad3378a-c327-464e-9445-1879a1066af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54ec6555-72ef-4e8d-bf70-17a405718e5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T09:56:47.6916806Z","updatedOn":"2019-03-02T09:56:47.6916806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e843b4c5-043c-44ae-bd28-734e25051ef3","type":"Microsoft.Authorization/roleAssignments","name":"e843b4c5-043c-44ae-bd28-734e25051ef3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5513e966-698b-4802-8499-46d300e37b0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:22.8102306Z","updatedOn":"2019-04-04T06:36:22.8102306Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c","type":"Microsoft.Authorization/roleAssignments","name":"b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"56da69f6-625c-425c-906b-6ea65198ae49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:16:27.2709616Z","updatedOn":"2018-10-10T22:16:27.2709616Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/467f37f4-8892-4989-b43c-50b039603457","type":"Microsoft.Authorization/roleAssignments","name":"467f37f4-8892-4989-b43c-50b039603457"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"586b8b3a-47c2-481b-a253-e44113022fb8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T06:42:26.9020217Z","updatedOn":"2019-05-22T06:42:26.9020217Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e29fabe-5d12-42e5-b131-19e3370f33af","type":"Microsoft.Authorization/roleAssignments","name":"0e29fabe-5d12-42e5-b131-19e3370f33af"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"58c180ad-6259-4c01-a1c5-51198b9c9b9a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:00:17.5947515Z","updatedOn":"2018-10-19T15:00:17.5947515Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b49e2b-047e-42a9-a704-b5c2201303ad","type":"Microsoft.Authorization/roleAssignments","name":"e3b49e2b-047e-42a9-a704-b5c2201303ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"598b7be5-15a3-4908-92d8-06c0adcaaa00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:09.8827093Z","updatedOn":"2019-04-04T06:36:09.8827093Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73323681-1a8f-40aa-9031-5f02a21fe727","type":"Microsoft.Authorization/roleAssignments","name":"73323681-1a8f-40aa-9031-5f02a21fe727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59a9ced4-093d-4e07-8fe0-a4e51ffdea10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T21:25:05.4849641Z","updatedOn":"2018-11-09T21:25:05.4849641Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddd8ce04-ab66-494e-a2b2-5f757a43c4fa","type":"Microsoft.Authorization/roleAssignments","name":"ddd8ce04-ab66-494e-a2b2-5f757a43c4fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59f98a9e-db3e-4f6e-93d5-99623caf9553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T07:05:39.5135657Z","updatedOn":"2019-02-20T07:05:39.5135657Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc7d8a24-3934-451b-9feb-e075d7921420","type":"Microsoft.Authorization/roleAssignments","name":"fc7d8a24-3934-451b-9feb-e075d7921420"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b1c26a1-6561-412b-b4be-b0c17c3318fe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:57:15.5134809Z","updatedOn":"2018-10-05T00:57:15.5134809Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a96ae42-a747-4357-96fa-efd5e47c397c","type":"Microsoft.Authorization/roleAssignments","name":"3a96ae42-a747-4357-96fa-efd5e47c397c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3b4018-76a9-43bf-9f1c-24926c9a6103","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T06:39:33.1893579Z","updatedOn":"2019-05-25T06:39:33.1893579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db08177d-9064-4501-8eeb-4c3a02b254a2","type":"Microsoft.Authorization/roleAssignments","name":"db08177d-9064-4501-8eeb-4c3a02b254a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3bd66c-bd38-4565-aabe-0e6d10354596","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:15:19.7761488Z","updatedOn":"2019-05-28T05:15:19.7761488Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f641ca9-7e29-42c6-89f4-90e26c594902","type":"Microsoft.Authorization/roleAssignments","name":"0f641ca9-7e29-42c6-89f4-90e26c594902"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5c36cac2-e147-4997-a06c-596a42591a24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:15:50.4759690Z","updatedOn":"2019-05-11T05:15:50.4759690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72d79eff-8c00-4cd8-9cf4-e8a694596b3f","type":"Microsoft.Authorization/roleAssignments","name":"72d79eff-8c00-4cd8-9cf4-e8a694596b3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc1a360-1940-44a0-bc5e-29c604002d0b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:46:16.3494387Z","updatedOn":"2018-10-13T05:46:16.3494387Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e992eb54-5e47-4428-acd3-40c0265d2a40","type":"Microsoft.Authorization/roleAssignments","name":"e992eb54-5e47-4428-acd3-40c0265d2a40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc3a7f2-18dc-4c73-9d27-21c262e52c0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T16:19:42.5704417Z","updatedOn":"2019-06-15T16:19:42.5704417Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beb9ec14-f66a-498a-9812-89a9ec47b8e5","type":"Microsoft.Authorization/roleAssignments","name":"beb9ec14-f66a-498a-9812-89a9ec47b8e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"607756a3-c971-467d-bce7-9267d8c01261","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:59:17.0515117Z","updatedOn":"2018-10-01T15:59:17.0515117Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4ca15bb-d013-4bf8-857f-4117c5db175c","type":"Microsoft.Authorization/roleAssignments","name":"d4ca15bb-d013-4bf8-857f-4117c5db175c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"613d5f03-41a8-4080-bdfc-a374e9f19988","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T10:22:26.9025135Z","updatedOn":"2018-10-22T10:22:26.9025135Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14bdb487-ccb9-4efb-bc90-104d135f8b29","type":"Microsoft.Authorization/roleAssignments","name":"14bdb487-ccb9-4efb-bc90-104d135f8b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"62af882c-540c-4f97-9ef6-17017da11708","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T07:04:26.8232762Z","updatedOn":"2019-02-05T07:04:26.8232762Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a54bd44-0912-4d8c-bc4d-c4ca672993d3","type":"Microsoft.Authorization/roleAssignments","name":"5a54bd44-0912-4d8c-bc4d-c4ca672993d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"64322757-c902-4fcb-8580-d53ec6a49733","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T09:58:18.8798266Z","updatedOn":"2019-03-07T09:58:18.8798266Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f","type":"Microsoft.Authorization/roleAssignments","name":"503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6453a293-3f49-42a0-953b-b954ad831b13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T06:36:20.6410975Z","updatedOn":"2019-04-27T06:36:20.6410975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9","type":"Microsoft.Authorization/roleAssignments","name":"3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"649ed1cc-32fd-4902-98ba-4ce661fe1b0e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:46:33.2506768Z","updatedOn":"2018-10-05T05:46:33.2506768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f653f0c1-a5d2-4e52-9cce-d9caa7a12948","type":"Microsoft.Authorization/roleAssignments","name":"f653f0c1-a5d2-4e52-9cce-d9caa7a12948"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66372353-a1d0-4b99-b9e3-b5b1f527d5c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T21:55:10.4318460Z","updatedOn":"2018-11-29T21:55:10.4318460Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4fedbf2e-17fb-46b5-8507-7b888fd819e4","type":"Microsoft.Authorization/roleAssignments","name":"4fedbf2e-17fb-46b5-8507-7b888fd819e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66da01d7-d0cd-4d5d-9daa-a6aac355e899","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.2380357Z","updatedOn":"2019-04-02T06:14:22.2380357Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95800b1b-cdac-4ba5-86a1-379016cd1dc6","type":"Microsoft.Authorization/roleAssignments","name":"95800b1b-cdac-4ba5-86a1-379016cd1dc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67404547-100a-42a8-8f2e-09b490634ea7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T05:09:36.0604037Z","updatedOn":"2019-03-22T05:09:36.0604037Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d","type":"Microsoft.Authorization/roleAssignments","name":"b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"679350fd-70c9-4f2f-b5f0-4d549ff59263","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:01:27.5039088Z","updatedOn":"2019-09-11T09:01:27.5039088Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0369f65-0715-45d4-a650-6f8f6a0175c3","type":"Microsoft.Authorization/roleAssignments","name":"a0369f65-0715-45d4-a650-6f8f6a0175c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67bfe2b8-c880-4fec-9fdf-a4865f955a30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-22T19:41:53.4008313Z","updatedOn":"2018-09-22T19:41:53.4008313Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d8de0a-74c3-40a9-b0cf-0343f2c62234","type":"Microsoft.Authorization/roleAssignments","name":"53d8de0a-74c3-40a9-b0cf-0343f2c62234"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67e33e41-2e5b-4a69-a3ef-6b5f3b167d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T15:44:49.1835703Z","updatedOn":"2018-11-13T15:44:49.1835703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a805b80-6b5c-4b23-ba48-60bc8a8a56ee","type":"Microsoft.Authorization/roleAssignments","name":"7a805b80-6b5c-4b23-ba48-60bc8a8a56ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"688639b0-ff93-4399-a3c3-5bf75676df74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-24T17:56:40.3800464Z","updatedOn":"2019-06-24T17:56:40.3800464Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af81c289-2651-4461-afd3-4b8b30e73b7f","type":"Microsoft.Authorization/roleAssignments","name":"af81c289-2651-4461-afd3-4b8b30e73b7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"692d387a-0a74-4f3c-84a4-ccc1aa564cc4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:23:56.9861355Z","updatedOn":"2019-03-28T06:23:56.9861355Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2dca01f-8b7c-456a-ba40-12c267516fa4","type":"Microsoft.Authorization/roleAssignments","name":"e2dca01f-8b7c-456a-ba40-12c267516fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"69ed4898-0851-4ea4-9813-dfc9864cbaf6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:26:34.1746649Z","updatedOn":"2018-12-11T19:26:34.1746649Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27564201-65a3-4a09-bdaf-70c08ecd1786","type":"Microsoft.Authorization/roleAssignments","name":"27564201-65a3-4a09-bdaf-70c08ecd1786"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6a2bd173-e6f2-4b0c-bd80-c3bc23afdd9b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-08T07:04:42.6974105Z","updatedOn":"2019-02-08T07:04:42.6974105Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/508ce624-c0ed-4246-9ace-6934f7c70f48","type":"Microsoft.Authorization/roleAssignments","name":"508ce624-c0ed-4246-9ace-6934f7c70f48"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ab640b3-0232-4412-b034-e0f6598d60cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:18:08.2083053Z","updatedOn":"2019-06-01T05:18:08.2083053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4190e61-7834-4128-ba57-9d1c881baba9","type":"Microsoft.Authorization/roleAssignments","name":"b4190e61-7834-4128-ba57-9d1c881baba9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6b111a75-d6f5-40f8-a713-2aff55c241bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T02:18:18.8000548Z","updatedOn":"2019-03-06T02:18:18.8000548Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7","type":"Microsoft.Authorization/roleAssignments","name":"33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c33ea0a-4309-494e-bb08-7c65d7732b2e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-02T05:41:29.5534504Z","updatedOn":"2019-07-02T05:41:29.5534504Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8905e9-16c6-40a6-9dbd-046aad713a25","type":"Microsoft.Authorization/roleAssignments","name":"bd8905e9-16c6-40a6-9dbd-046aad713a25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c4fbf1c-a382-44ed-881c-51962f3fd881","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T05:50:00.7096461Z","updatedOn":"2018-11-01T05:50:00.7096461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de49b46f-a02e-4836-80e3-219f97f087d4","type":"Microsoft.Authorization/roleAssignments","name":"de49b46f-a02e-4836-80e3-219f97f087d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c7e6aca-f52b-4eae-88a7-0b5d23020906","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:47:53.8404657Z","updatedOn":"2019-04-14T02:47:53.8404657Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8fc00c0-bf52-48fa-aff7-d7311f11bc19","type":"Microsoft.Authorization/roleAssignments","name":"e8fc00c0-bf52-48fa-aff7-d7311f11bc19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c9946ec-553a-48ce-ab04-aab7628afb1c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T02:10:55.9558958Z","updatedOn":"2018-12-01T02:10:55.9558958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fae0b28-b303-49a4-8054-3fbb15bc8947","type":"Microsoft.Authorization/roleAssignments","name":"9fae0b28-b303-49a4-8054-3fbb15bc8947"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6cb60ca7-ed56-47a6-9d38-4e01e7c9697d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T12:25:53.4854829Z","updatedOn":"2019-01-09T12:25:53.4854829Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396a79d2-fb2a-4bb1-b872-c77b7a4c13c6","type":"Microsoft.Authorization/roleAssignments","name":"396a79d2-fb2a-4bb1-b872-c77b7a4c13c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d36f33f-05a6-45f7-8209-089ee6b93a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:10.7409947Z","updatedOn":"2018-09-18T23:57:10.7409947Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29587e30-6cb4-4896-ac01-7592e243af86","type":"Microsoft.Authorization/roleAssignments","name":"29587e30-6cb4-4896-ac01-7592e243af86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d489fcb-a876-474e-baee-4b2c247066ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:00:59.6415842Z","updatedOn":"2019-04-14T03:00:59.6415842Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c771da9-9d8a-4071-b0d8-1c59d6e7266f","type":"Microsoft.Authorization/roleAssignments","name":"9c771da9-9d8a-4071-b0d8-1c59d6e7266f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d854209-9a54-4c9e-a159-e8d3094658d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:48:24.6364909Z","updatedOn":"2019-04-14T02:48:24.6364909Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edc12553-178b-4765-bf26-98f57a26fc02","type":"Microsoft.Authorization/roleAssignments","name":"edc12553-178b-4765-bf26-98f57a26fc02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6dc88d25-0c7b-42c6-8c91-a562a0b13006","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-13T06:05:50.2210833Z","updatedOn":"2019-03-13T06:05:50.2210833Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/399d0881-1788-435a-855b-3dd5157c360d","type":"Microsoft.Authorization/roleAssignments","name":"399d0881-1788-435a-855b-3dd5157c360d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6e4e17aa-d5b2-4bb4-9fd3-0fc44c929b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:46:47.0487850Z","updatedOn":"2019-05-29T05:46:47.0487850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fdd201e-75f6-4830-8925-b96202c67a56","type":"Microsoft.Authorization/roleAssignments","name":"8fdd201e-75f6-4830-8925-b96202c67a56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ec8f82c-9e32-48cc-85cc-e0e48defae11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T06:50:23.9583339Z","updatedOn":"2018-11-29T06:50:23.9583339Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c02193e-3c95-4479-adc6-9a75cfb573b8","type":"Microsoft.Authorization/roleAssignments","name":"1c02193e-3c95-4479-adc6-9a75cfb573b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ecd84c7-bbaa-48c4-98a6-6087ed3df64a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:14:56.9351550Z","updatedOn":"2019-04-25T05:14:56.9351550Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fa8e3ed-deef-4f08-b893-81ebe9acde0e","type":"Microsoft.Authorization/roleAssignments","name":"5fa8e3ed-deef-4f08-b893-81ebe9acde0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ef96f42-cd57-4e99-89e7-0e89f05cfede","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:38:59.3997604Z","updatedOn":"2019-04-26T05:38:59.3997604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fad55ac3-c806-49b8-97e9-c2b7f1acab16","type":"Microsoft.Authorization/roleAssignments","name":"fad55ac3-c806-49b8-97e9-c2b7f1acab16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"704e2404-42e9-4dd2-a0b2-672150eb02b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:22:13.0814390Z","updatedOn":"2019-06-26T05:22:13.0814390Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63aaafb2-482e-47e2-a1c4-8860726353ec","type":"Microsoft.Authorization/roleAssignments","name":"63aaafb2-482e-47e2-a1c4-8860726353ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"712a3ed3-322d-46bb-83c8-d283bf293f92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T15:48:15.6003613Z","updatedOn":"2018-11-15T15:48:15.6003613Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/211f4c48-7e4a-40b6-93cd-f3457de00cec","type":"Microsoft.Authorization/roleAssignments","name":"211f4c48-7e4a-40b6-93cd-f3457de00cec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"73d4eb83-1fe6-46a2-ad7b-784756ff030b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T10:22:45.7824438Z","updatedOn":"2018-10-31T10:22:45.7824438Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94d225f7-9fa8-410e-8b04-f1fd0d94b71d","type":"Microsoft.Authorization/roleAssignments","name":"94d225f7-9fa8-410e-8b04-f1fd0d94b71d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"74294fda-1d88-4f11-b3ec-828c8f993e15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:20:42.8929893Z","updatedOn":"2019-06-29T05:20:42.8929893Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8","type":"Microsoft.Authorization/roleAssignments","name":"6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7548cbdb-a952-4df9-8444-40e9ce828000","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T06:54:57.2847495Z","updatedOn":"2018-12-01T06:54:57.2847495Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/928582a4-ecf3-4748-b1e0-11701e025432","type":"Microsoft.Authorization/roleAssignments","name":"928582a4-ecf3-4748-b1e0-11701e025432"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7609cd9b-efcb-493a-a026-225b7a9a0365","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:47:30.3923076Z","updatedOn":"2018-10-06T05:47:30.3923076Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4dca0a71-a984-4dda-876b-c4f024c10f8a","type":"Microsoft.Authorization/roleAssignments","name":"4dca0a71-a984-4dda-876b-c4f024c10f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"76776aa5-af1d-4b9e-a56e-1477a17cf070","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T17:38:33.7929610Z","updatedOn":"2019-02-02T17:38:33.7929610Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b712f421-681a-4cc0-b84d-64ab8b65802b","type":"Microsoft.Authorization/roleAssignments","name":"b712f421-681a-4cc0-b84d-64ab8b65802b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7683dc97-8db7-437f-8baf-fcd5df568a8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:15:03.9119281Z","updatedOn":"2019-05-08T05:15:03.9119281Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4083e34a-3fb9-4689-ab26-6287bd9fd9c2","type":"Microsoft.Authorization/roleAssignments","name":"4083e34a-3fb9-4689-ab26-6287bd9fd9c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"774f9cb3-e176-43ee-9b53-ac10e6db0778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T13:30:32.8137217Z","updatedOn":"2019-03-03T13:30:32.8137217Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/495be90f-ab00-4d1d-aecd-e024bec55393","type":"Microsoft.Authorization/roleAssignments","name":"495be90f-ab00-4d1d-aecd-e024bec55393"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77c092ea-ce78-458d-9f38-c17c2681438c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-12T07:07:29.9963220Z","updatedOn":"2019-02-12T07:07:29.9963220Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67304b6e-b8d9-415a-8f92-2562023fd837","type":"Microsoft.Authorization/roleAssignments","name":"67304b6e-b8d9-415a-8f92-2562023fd837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77f74980-f5ce-4484-a15a-20709e5e2547","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T01:08:23.2453424Z","updatedOn":"2019-05-04T01:08:23.2453424Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71538224-b885-4a3e-b178-5d73c4ec869d","type":"Microsoft.Authorization/roleAssignments","name":"71538224-b885-4a3e-b178-5d73c4ec869d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"780847de-4327-4f25-86e2-289447951d2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T06:50:07.1933427Z","updatedOn":"2019-05-17T06:50:07.1933427Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82eb6677-63a7-44f1-9d75-a991c5e669ac","type":"Microsoft.Authorization/roleAssignments","name":"82eb6677-63a7-44f1-9d75-a991c5e669ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"78641149-e93c-4ce4-8adb-7615b8830d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T09:40:18.7637943Z","updatedOn":"2018-10-29T09:40:18.7637943Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d50a36cf-7e26-41a9-b248-b2082b06df86","type":"Microsoft.Authorization/roleAssignments","name":"d50a36cf-7e26-41a9-b248-b2082b06df86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"794df39c-a438-4cba-ba1f-471684649cbd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T06:47:49.5030941Z","updatedOn":"2018-12-08T06:47:49.5030941Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8adc08be-35c7-4082-a97e-58495bf0633e","type":"Microsoft.Authorization/roleAssignments","name":"8adc08be-35c7-4082-a97e-58495bf0633e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"79d28f59-7371-4cc1-aa55-1637711f25c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-26T06:50:12.3943072Z","updatedOn":"2018-12-26T06:50:12.3943072Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f8d5b31-c70e-421e-9cda-f23d6d6514ac","type":"Microsoft.Authorization/roleAssignments","name":"0f8d5b31-c70e-421e-9cda-f23d6d6514ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ada01ed-fe33-41b9-b33c-fff421c40085","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T20:55:00.8548042Z","updatedOn":"2019-05-14T20:55:00.8548042Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5cf6ad-afcd-4a50-98bb-4bb0108775fa","type":"Microsoft.Authorization/roleAssignments","name":"ea5cf6ad-afcd-4a50-98bb-4bb0108775fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b450bc8-eda3-44ee-8469-fc5e877cc504","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-15T00:36:11.7693422Z","updatedOn":"2018-09-15T00:36:11.7693422Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bcb0d890-060d-4fc7-8113-9021bc1dfa56","type":"Microsoft.Authorization/roleAssignments","name":"bcb0d890-060d-4fc7-8113-9021bc1dfa56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b786a3d-6ce9-495d-8716-52ae82f5e2a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:11.0215326Z","updatedOn":"2019-04-03T06:11:11.0215326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b83528d1-e123-4edf-8ee6-ba5bd0bd6f47","type":"Microsoft.Authorization/roleAssignments","name":"b83528d1-e123-4edf-8ee6-ba5bd0bd6f47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bbf0190-840a-4e74-916d-fa4c01be297b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T18:03:45.6908682Z","updatedOn":"2018-10-02T18:03:45.6908682Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dcb8da1-75d1-4598-a61e-28b463c47f01","type":"Microsoft.Authorization/roleAssignments","name":"6dcb8da1-75d1-4598-a61e-28b463c47f01"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bfb0f39-e9bc-4acc-addb-479cb042834b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T14:38:29.7385082Z","updatedOn":"2018-10-30T14:38:29.7385082Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45e0d28f-cdde-4cdb-8edb-168c8f7590d2","type":"Microsoft.Authorization/roleAssignments","name":"45e0d28f-cdde-4cdb-8edb-168c8f7590d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5418b8-53e6-43ed-8e35-75d3d6dfb2e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T18:02:59.3895408Z","updatedOn":"2018-09-13T18:02:59.3895408Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6a0f050-1296-4798-908e-aaf195b4c798","type":"Microsoft.Authorization/roleAssignments","name":"d6a0f050-1296-4798-908e-aaf195b4c798"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5d633a-ec69-498a-92cf-55464c78670b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:16:38.1702958Z","updatedOn":"2019-05-15T05:16:38.1702958Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/741aa019-0fe3-403f-a882-0d05dffdfd2d","type":"Microsoft.Authorization/roleAssignments","name":"741aa019-0fe3-403f-a882-0d05dffdfd2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ca80fb2-737e-4e66-a3cd-b8a323d537cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:39:04.0585092Z","updatedOn":"2019-05-25T05:39:04.0585092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/638f44e3-8179-48c7-90c1-21f64a585aac","type":"Microsoft.Authorization/roleAssignments","name":"638f44e3-8179-48c7-90c1-21f64a585aac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7d4cdb41-c410-4a81-97e6-8caae8993d00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T07:18:44.3763561Z","updatedOn":"2018-12-06T07:18:44.3763561Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3b91d2bf-0026-4f91-95b4-cd0ed0f85173","type":"Microsoft.Authorization/roleAssignments","name":"3b91d2bf-0026-4f91-95b4-cd0ed0f85173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7df99738-7bfc-4895-a68f-50f8ed8f0505","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:42:35.5182437Z","updatedOn":"2018-10-23T05:42:35.5182437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17db1f19-acc1-49ba-a03c-dfbe611262b9","type":"Microsoft.Authorization/roleAssignments","name":"17db1f19-acc1-49ba-a03c-dfbe611262b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e22c332-3d2b-4de8-bf01-d64d23dc1b39","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T15:39:42.5789529Z","updatedOn":"2018-11-09T15:39:42.5789529Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a72e6191-bb9b-4169-b6cf-b31b214a627f","type":"Microsoft.Authorization/roleAssignments","name":"a72e6191-bb9b-4169-b6cf-b31b214a627f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e887460-65fd-40f5-ac81-f73deea466d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-01T05:14:55.7828522Z","updatedOn":"2019-07-01T05:14:55.7828522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cbbe3ce-9d21-477d-b178-b83e6442e99e","type":"Microsoft.Authorization/roleAssignments","name":"5cbbe3ce-9d21-477d-b178-b83e6442e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f100bfc-db5f-4309-bcec-2bb6df12c04a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T01:53:31.6719631Z","updatedOn":"2019-01-31T01:53:31.6719631Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/868dcee8-c116-4502-bc04-263d3ae53fd0","type":"Microsoft.Authorization/roleAssignments","name":"868dcee8-c116-4502-bc04-263d3ae53fd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f74ea17-fa4d-41c0-a543-a539c46210ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:52:07.3188509Z","updatedOn":"2018-09-27T17:52:07.3188509Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3","type":"Microsoft.Authorization/roleAssignments","name":"d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f758d4c-db29-4a18-a057-75efd8e79a74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T05:10:35.2296932Z","updatedOn":"2019-04-06T05:10:35.2296932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9cc64ce-73b9-446d-b99d-645c964fd426","type":"Microsoft.Authorization/roleAssignments","name":"e9cc64ce-73b9-446d-b99d-645c964fd426"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f9eb655-2f05-4a27-9fcd-280b43791ed6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-01T06:41:41.2203329Z","updatedOn":"2019-07-01T06:41:41.2203329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e35b736-0f88-4814-88d8-24e6854c819b","type":"Microsoft.Authorization/roleAssignments","name":"4e35b736-0f88-4814-88d8-24e6854c819b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"803b3279-b14b-4be3-bd41-ae1b259e37a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T22:17:06.9892206Z","updatedOn":"2018-10-23T22:17:06.9892206Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/619d9112-56a2-4801-b56e-e541a92a2da4","type":"Microsoft.Authorization/roleAssignments","name":"619d9112-56a2-4801-b56e-e541a92a2da4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8062a81a-b6f4-4c69-8c8e-9bbd301e41ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:50.2078671Z","updatedOn":"2019-03-30T06:13:50.2078671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d8161d-defe-484b-b0e8-f4c653252f16","type":"Microsoft.Authorization/roleAssignments","name":"a8d8161d-defe-484b-b0e8-f4c653252f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80c1e693-93a1-4115-8610-6b67677e8fc0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-09T07:12:14.9103934Z","updatedOn":"2019-03-09T07:12:14.9103934Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3","type":"Microsoft.Authorization/roleAssignments","name":"c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"810d390f-64ed-40f9-89d6-3cceb7329ff5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T01:23:26.7885228Z","updatedOn":"2018-11-21T01:23:26.7885228Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8091748e-cc72-4082-8cfa-6ea8622b3625","type":"Microsoft.Authorization/roleAssignments","name":"8091748e-cc72-4082-8cfa-6ea8622b3625"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"829571ed-c3d7-4985-818f-b996ff7ef088","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:16:52.4886041Z","updatedOn":"2019-05-17T05:16:52.4886041Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef","type":"Microsoft.Authorization/roleAssignments","name":"d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:15:50.5935627Z","updatedOn":"2019-09-11T09:15:50.5935627Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/253c1f18-9f2b-490d-961d-520ba222a9b3","type":"Microsoft.Authorization/roleAssignments","name":"253c1f18-9f2b-490d-961d-520ba222a9b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8397a3ab-dcd0-4905-9dfc-406e9a5364d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T18:48:16.6057069Z","updatedOn":"2019-03-01T18:48:16.6057069Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/49d9706e-3f83-4afa-954e-1ca959f0ac99","type":"Microsoft.Authorization/roleAssignments","name":"49d9706e-3f83-4afa-954e-1ca959f0ac99"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"83f56332-63d8-4a04-a851-017a0414dbc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T06:49:20.3867553Z","updatedOn":"2018-12-18T06:49:20.3867553Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/735d41dc-d524-4686-acce-015022fb652a","type":"Microsoft.Authorization/roleAssignments","name":"735d41dc-d524-4686-acce-015022fb652a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"84874d5a-4130-4df0-96b1-6491c10e6354","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T11:39:38.8845443Z","updatedOn":"2018-09-28T11:39:38.8845443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/697d3373-5487-41d7-8535-17a047bee7e1","type":"Microsoft.Authorization/roleAssignments","name":"697d3373-5487-41d7-8535-17a047bee7e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"850cdb5c-03f2-45c6-b9d9-0f3a9c594ccf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:47.1967557Z","updatedOn":"2019-03-23T06:12:47.1967557Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5434eca1-b18b-4aaf-8063-ffd71f2ff773","type":"Microsoft.Authorization/roleAssignments","name":"5434eca1-b18b-4aaf-8063-ffd71f2ff773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"85137175-3916-4cb9-b552-9ad76eba2798","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T05:10:41.3063102Z","updatedOn":"2019-03-27T05:10:41.3063102Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cecdd3-d0e4-4a75-9254-f7b9ab550c04","type":"Microsoft.Authorization/roleAssignments","name":"70cecdd3-d0e4-4a75-9254-f7b9ab550c04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"859ad38c-b4ff-480a-9db1-366be15d50bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T06:48:58.5197973Z","updatedOn":"2018-11-10T06:48:58.5197973Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e798d79f-8086-428b-91ce-ad7ea651624f","type":"Microsoft.Authorization/roleAssignments","name":"e798d79f-8086-428b-91ce-ad7ea651624f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"860aaec5-bc98-4ba5-9edf-79e4c9fd8ded","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:45:59.7559326Z","updatedOn":"2019-06-11T05:45:59.7559326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2a43861-47d0-454f-a2e0-3d8f7b2d02e5","type":"Microsoft.Authorization/roleAssignments","name":"d2a43861-47d0-454f-a2e0-3d8f7b2d02e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8681181f-40ca-487a-8bc6-259755150aa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:20.7745983Z","updatedOn":"2019-04-16T06:34:20.7745983Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67e3e91b-1b88-44b0-991d-d3e26974afb5","type":"Microsoft.Authorization/roleAssignments","name":"67e3e91b-1b88-44b0-991d-d3e26974afb5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86bd3fff-bfc8-4e57-98ae-3e5bd84e30c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:40:51.5801241Z","updatedOn":"2019-05-30T05:40:51.5801241Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10e93af6-2d05-4e09-9cd8-d926a21b5f7e","type":"Microsoft.Authorization/roleAssignments","name":"10e93af6-2d05-4e09-9cd8-d926a21b5f7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86fcac07-0a80-4464-ace0-0dd23eb4b528","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T20:51:53.2630989Z","updatedOn":"2018-11-28T20:51:53.2630989Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f598f88f-98f3-4cb2-99b6-bb53cfee4746","type":"Microsoft.Authorization/roleAssignments","name":"f598f88f-98f3-4cb2-99b6-bb53cfee4746"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"87ae5050-5dca-4740-bd43-aadd802d919e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T06:47:48.1709454Z","updatedOn":"2019-01-16T06:47:48.1709454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d85e0d-aaa3-4d7d-a661-5e123e470fc0","type":"Microsoft.Authorization/roleAssignments","name":"53d85e0d-aaa3-4d7d-a661-5e123e470fc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"885ee9c5-df35-4d21-bd29-33d930ef4721","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T07:30:25.7405858Z","updatedOn":"2019-08-08T07:30:25.7405858Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e1de6d0-412e-4425-8e11-897f4aa32d65","type":"Microsoft.Authorization/roleAssignments","name":"9e1de6d0-412e-4425-8e11-897f4aa32d65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"888287be-1758-492b-a9df-f99a65e928a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:39:19.6358987Z","updatedOn":"2019-05-23T05:39:19.6358987Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f6286d7-b327-4bc5-8515-b736e36aba87","type":"Microsoft.Authorization/roleAssignments","name":"3f6286d7-b327-4bc5-8515-b736e36aba87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88c9f7f7-c720-43b2-ac50-d7d5a76e7b9c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T06:48:42.2936439Z","updatedOn":"2018-11-22T06:48:42.2936439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44e14919-123f-4731-bf81-69e94a33fcc7","type":"Microsoft.Authorization/roleAssignments","name":"44e14919-123f-4731-bf81-69e94a33fcc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88cdf2e8-5bc2-4ca0-8e23-74e541c26422","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-12T06:50:17.5434069Z","updatedOn":"2018-12-12T06:50:17.5434069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09f95a7b-cede-4f56-8d5f-04b29960fa0a","type":"Microsoft.Authorization/roleAssignments","name":"09f95a7b-cede-4f56-8d5f-04b29960fa0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"89149cc0-7878-455f-8a31-96d855a63bdd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-14T06:45:38.8092576Z","updatedOn":"2018-11-14T06:45:38.8092576Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea25ecfd-48d0-476c-8f69-aabe91c96e47","type":"Microsoft.Authorization/roleAssignments","name":"ea25ecfd-48d0-476c-8f69-aabe91c96e47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a41c179-d22b-43ae-83f0-1f5515bb245f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:19.2136302Z","updatedOn":"2019-04-09T06:35:19.2136302Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd39d246-f152-4e96-af84-3ac161b5aafa","type":"Microsoft.Authorization/roleAssignments","name":"fd39d246-f152-4e96-af84-3ac161b5aafa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a7045fa-9fee-486e-ba3e-33c1a9c89c2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:24.9082258Z","updatedOn":"2019-01-30T06:54:24.9082258Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacf3561-43a4-47d3-9b6c-fe09ab0e2484","type":"Microsoft.Authorization/roleAssignments","name":"cacf3561-43a4-47d3-9b6c-fe09ab0e2484"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a78addb-7a34-4e2f-8838-b6ec9b8b5628","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:35:55.7825128Z","updatedOn":"2019-09-05T08:35:55.7825128Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df98f1e4-c153-4ad2-b1eb-ae54fd649883","type":"Microsoft.Authorization/roleAssignments","name":"df98f1e4-c153-4ad2-b1eb-ae54fd649883"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b4a28be-63be-4e50-91ca-ab9f88d1e441","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:47:20.3790319Z","updatedOn":"2019-06-18T05:47:20.3790319Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aff8bc7d-a807-4428-aeb0-afc34fb52e93","type":"Microsoft.Authorization/roleAssignments","name":"aff8bc7d-a807-4428-aeb0-afc34fb52e93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b600b42-5019-4514-ad2e-14d3b20ff9df","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:39:34.9112754Z","updatedOn":"2018-10-11T05:39:34.9112754Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29789408-9895-46a1-acb1-664dec3c8872","type":"Microsoft.Authorization/roleAssignments","name":"29789408-9895-46a1-acb1-664dec3c8872"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cce118b-f45a-411d-b076-4f849efb6ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:20:31.2207711Z","updatedOn":"2019-06-27T05:20:31.2207711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c6637af-06cb-46b6-a62f-a9e2a62cad31","type":"Microsoft.Authorization/roleAssignments","name":"1c6637af-06cb-46b6-a62f-a9e2a62cad31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce13a5d-7120-4635-b792-8cc697798e81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-03T05:23:07.9499351Z","updatedOn":"2019-10-03T05:23:07.9499351Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7","type":"Microsoft.Authorization/roleAssignments","name":"ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce997ec-1f2a-4796-8b19-e02bf979ffa5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:39:53.3017512Z","updatedOn":"2019-05-18T05:39:53.3017512Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7059ba-fadd-47d2-a59a-ee611e3d77dd","type":"Microsoft.Authorization/roleAssignments","name":"7f7059ba-fadd-47d2-a59a-ee611e3d77dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cea47c6-3e90-4421-8cb2-d9c649b5c0ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-10T02:29:16.1041985Z","updatedOn":"2019-02-10T02:29:16.1041985Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c7b4a4-ec46-40e8-83cc-1d65e8b5d665","type":"Microsoft.Authorization/roleAssignments","name":"77c7b4a4-ec46-40e8-83cc-1d65e8b5d665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8d283b1c-4ca3-490f-8401-4b05f5b57656","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T07:22:15.2349889Z","updatedOn":"2019-01-04T07:22:15.2349889Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a8632df-430e-40c5-9ba8-531b084eb015","type":"Microsoft.Authorization/roleAssignments","name":"3a8632df-430e-40c5-9ba8-531b084eb015"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8dd7bd0c-715c-45e3-b5fe-a597edc16699","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T10:12:32.4633786Z","updatedOn":"2019-01-25T10:12:32.4633786Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d3a1780-6c4e-4c47-8f6d-edd8173e50ed","type":"Microsoft.Authorization/roleAssignments","name":"0d3a1780-6c4e-4c47-8f6d-edd8173e50ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8df306d5-4e1b-4510-840b-9c56ef056301","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T06:47:54.6022805Z","updatedOn":"2018-11-07T06:47:54.6022805Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfdc3356-78c4-408d-93ab-c2dffd9f4578","type":"Microsoft.Authorization/roleAssignments","name":"bfdc3356-78c4-408d-93ab-c2dffd9f4578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8e18e49b-6e52-4124-ac14-f42e6c82c512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:44:44.2494251Z","updatedOn":"2019-06-28T05:44:44.2494251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c9e2473-0b99-4449-93dd-5e74e5d7e3c1","type":"Microsoft.Authorization/roleAssignments","name":"3c9e2473-0b99-4449-93dd-5e74e5d7e3c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8eb60d07-7fb4-4d38-b600-9c7c398ea28b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:34:29.0093148Z","updatedOn":"2019-04-23T05:34:29.0093148Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff24f92f-f8b2-4d0c-a12d-5d3466a1f107","type":"Microsoft.Authorization/roleAssignments","name":"ff24f92f-f8b2-4d0c-a12d-5d3466a1f107"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8fc68847-fe15-4731-9c9c-1d440ec89270","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-26T07:09:45.8107484Z","updatedOn":"2019-02-26T07:09:45.8107484Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d06ea5ab-8242-445f-8edd-c50382796e81","type":"Microsoft.Authorization/roleAssignments","name":"d06ea5ab-8242-445f-8edd-c50382796e81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"902a11a4-40a1-4c17-9139-0070bb53eca4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:45:40.0344224Z","updatedOn":"2018-10-30T05:45:40.0344224Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7","type":"Microsoft.Authorization/roleAssignments","name":"6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9042fba9-7801-4f46-8c28-af4a76a10433","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:35:32.5787562Z","updatedOn":"2019-05-01T05:35:32.5787562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2947240-7bbf-4ab3-ba2b-457afe1f9083","type":"Microsoft.Authorization/roleAssignments","name":"e2947240-7bbf-4ab3-ba2b-457afe1f9083"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c32522-8d64-4774-85ee-3abd6d9cb372","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T06:48:31.8103069Z","updatedOn":"2018-12-20T06:48:31.8103069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66ab78c8-dc8e-410d-a387-d621e4037311","type":"Microsoft.Authorization/roleAssignments","name":"66ab78c8-dc8e-410d-a387-d621e4037311"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c3d926-9c03-4d90-86f4-12866a6da212","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T20:57:30.6864609Z","updatedOn":"2019-04-02T20:57:30.6864609Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bf3be37-b85e-49f9-ace5-e14c018302b5","type":"Microsoft.Authorization/roleAssignments","name":"6bf3be37-b85e-49f9-ace5-e14c018302b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90e83a65-4688-4dfd-93c3-210e9783e992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T07:08:13.7709623Z","updatedOn":"2019-02-21T07:08:13.7709623Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed92bed5-5125-4ac3-9c0e-5c751266239f","type":"Microsoft.Authorization/roleAssignments","name":"ed92bed5-5125-4ac3-9c0e-5c751266239f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"91350478-d2f8-41ef-9cb7-42545ea342c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T00:36:16.8902719Z","updatedOn":"2018-09-27T00:36:16.8902719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f03fbd61-1898-497e-b5b0-aa2def1286f8","type":"Microsoft.Authorization/roleAssignments","name":"f03fbd61-1898-497e-b5b0-aa2def1286f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92db2019-9cdc-4e7d-9249-9b069ca42081","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T05:11:10.3936053Z","updatedOn":"2019-04-04T05:11:10.3936053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5b439b9-3f5e-441a-ab53-af1d2385f640","type":"Microsoft.Authorization/roleAssignments","name":"a5b439b9-3f5e-441a-ab53-af1d2385f640"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92fd0c36-95b6-4540-9c6d-4cc1dba575ce","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T06:50:06.1336080Z","updatedOn":"2019-06-12T06:50:06.1336080Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09ba6b34-76e4-463c-9eec-e73b793f71e2","type":"Microsoft.Authorization/roleAssignments","name":"09ba6b34-76e4-463c-9eec-e73b793f71e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94b95a0b-b2a4-4641-892c-d78dd996e39e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T08:52:33.3535638Z","updatedOn":"2018-09-17T08:52:33.3535638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f3fafc1-9de7-4719-bd1b-9df30f1c574e","type":"Microsoft.Authorization/roleAssignments","name":"5f3fafc1-9de7-4719-bd1b-9df30f1c574e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94e0c796-2393-4338-86ca-ac74457a7d4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:39:29.3097032Z","updatedOn":"2019-05-16T05:39:29.3097032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f3529d-5eb5-4014-958d-048b3d6a3428","type":"Microsoft.Authorization/roleAssignments","name":"68f3529d-5eb5-4014-958d-048b3d6a3428"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9526235b-a8d3-4db5-94e2-2194761f04ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-29T21:05:48.1770851Z","updatedOn":"2019-04-29T21:05:48.1770851Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a400d86-7ca4-44d1-ab4d-c066fd01258f","type":"Microsoft.Authorization/roleAssignments","name":"2a400d86-7ca4-44d1-ab4d-c066fd01258f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"956a52f7-9996-4c8f-953a-66ecc7b451fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:23:11.9575182Z","updatedOn":"2018-09-20T17:23:11.9575182Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0066587c-01c9-479d-8340-55aafbe67b24","type":"Microsoft.Authorization/roleAssignments","name":"0066587c-01c9-479d-8340-55aafbe67b24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"95a583f2-61d2-4237-a127-c85658478534","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T10:26:39.0170505Z","updatedOn":"2018-11-02T10:26:39.0170505Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ed51071-ce4e-466c-bca6-629e2053b7a8","type":"Microsoft.Authorization/roleAssignments","name":"9ed51071-ce4e-466c-bca6-629e2053b7a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"966839c9-4964-4642-9c76-4eb430fbb0dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T06:35:32.5337994Z","updatedOn":"2019-04-30T06:35:32.5337994Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81eda284-d81f-48d8-84ef-cc4207c6e86d","type":"Microsoft.Authorization/roleAssignments","name":"81eda284-d81f-48d8-84ef-cc4207c6e86d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"96ce046c-a39e-4dcc-a9c7-26d1604294d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:33:20.5140104Z","updatedOn":"2018-10-10T00:33:20.5140104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b54cb9c8-c8e3-4adc-86b5-f6dd436a794e","type":"Microsoft.Authorization/roleAssignments","name":"b54cb9c8-c8e3-4adc-86b5-f6dd436a794e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"973fdd79-4ab9-438e-87c3-954cca1889e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T19:09:54.9071757Z","updatedOn":"2018-09-21T19:09:54.9071757Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4890276-7fa1-47a7-9d82-f0a4ceff9bd6","type":"Microsoft.Authorization/roleAssignments","name":"a4890276-7fa1-47a7-9d82-f0a4ceff9bd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"97a313c7-04c3-4f12-833e-7c3618d39fcf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T02:03:26.0775557Z","updatedOn":"2019-10-16T02:03:26.0775557Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/152b2f63-3360-4ab8-a651-02b6dd4a11cc","type":"Microsoft.Authorization/roleAssignments","name":"152b2f63-3360-4ab8-a651-02b6dd4a11cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99700559-cdad-4091-a4d3-7d3c7c00aa13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T23:46:59.6876593Z","updatedOn":"2018-10-22T23:46:59.6876593Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498ba808-50e6-458a-8424-7f2d7f2a7301","type":"Microsoft.Authorization/roleAssignments","name":"498ba808-50e6-458a-8424-7f2d7f2a7301"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99a420c5-4e79-4f11-8c23-32753b52724a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T05:09:11.0675968Z","updatedOn":"2019-03-23T05:09:11.0675968Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf2e130b-d004-4383-9804-06c2171b0288","type":"Microsoft.Authorization/roleAssignments","name":"bf2e130b-d004-4383-9804-06c2171b0288"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a6dc341-d468-44d6-94be-2d4821992bad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-03T05:43:48.8223435Z","updatedOn":"2018-11-03T05:43:48.8223435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21dcd364-1ea4-48fa-b1ae-0cd08879ce76","type":"Microsoft.Authorization/roleAssignments","name":"21dcd364-1ea4-48fa-b1ae-0cd08879ce76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a9bb0ad-706d-4fac-9148-ac7bafbed792","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:19:55.3235159Z","updatedOn":"2019-06-18T05:19:55.3235159Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b57ee67-74d0-4464-a426-91c542941aeb","type":"Microsoft.Authorization/roleAssignments","name":"7b57ee67-74d0-4464-a426-91c542941aeb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9ab4b53a-f653-4435-96a3-d3aefff7cb58","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T18:12:41.8499729Z","updatedOn":"2019-03-06T18:12:41.8499729Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f74c3436-bfae-4d2b-a166-4d0c02c0c4c6","type":"Microsoft.Authorization/roleAssignments","name":"f74c3436-bfae-4d2b-a166-4d0c02c0c4c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9aba653f-e80e-448b-afcd-1a47869d89f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:42:13.7118153Z","updatedOn":"2019-06-04T05:42:13.7118153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc4a8add-51e0-4d4c-8e77-c47ec8fd7175","type":"Microsoft.Authorization/roleAssignments","name":"cc4a8add-51e0-4d4c-8e77-c47ec8fd7175"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9afc95b9-edfd-448c-bb0b-1b7abf1c6fc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-10T06:48:45.7376251Z","updatedOn":"2019-01-10T06:48:45.7376251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7110ba81-9350-423e-92d4-28acbc736450","type":"Microsoft.Authorization/roleAssignments","name":"7110ba81-9350-423e-92d4-28acbc736450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b2c325b-5fe9-4e47-a282-fa1abcf8776a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T16:29:06.8822482Z","updatedOn":"2019-04-15T16:29:06.8822482Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/977d6039-fe49-4c53-86ac-b161e9dd6c8c","type":"Microsoft.Authorization/roleAssignments","name":"977d6039-fe49-4c53-86ac-b161e9dd6c8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b78ddbe-f951-4b54-8664-a1d1e733b57b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:45:44.9172054Z","updatedOn":"2019-06-13T05:45:44.9172054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee329a91-9efc-4ef8-a257-ea59b003c3c9","type":"Microsoft.Authorization/roleAssignments","name":"ee329a91-9efc-4ef8-a257-ea59b003c3c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9bab0d02-a25b-4b5e-b9be-4f9a49dadba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:18:36.3066640Z","updatedOn":"2018-10-01T15:18:36.3066640Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7d430e5-ff53-4dd4-ace1-379422b85604","type":"Microsoft.Authorization/roleAssignments","name":"c7d430e5-ff53-4dd4-ace1-379422b85604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c42adac-d61f-4d8f-8132-e31693de6e8e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-11T05:45:52.8300069Z","updatedOn":"2019-07-11T05:45:52.8300069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3795c22-f90a-4f8d-ac89-21f706d82187","type":"Microsoft.Authorization/roleAssignments","name":"c3795c22-f90a-4f8d-ac89-21f706d82187"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9da0e757-9f4e-4543-943c-6b16fe5f0f4c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T04:28:01.1738154Z","updatedOn":"2018-10-19T04:28:01.1738154Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ec5ac44-f810-40ad-9487-19d76f80cea6","type":"Microsoft.Authorization/roleAssignments","name":"7ec5ac44-f810-40ad-9487-19d76f80cea6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9dba7961-7957-481c-8051-8071dafadda8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:22:07.3061671Z","updatedOn":"2019-06-13T05:22:07.3061671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ced9f0b-a5bf-477c-af42-f9b39bceae30","type":"Microsoft.Authorization/roleAssignments","name":"9ced9f0b-a5bf-477c-af42-f9b39bceae30"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9f3b7506-275d-42ac-b3f0-6be0759f6b33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:21.5433604Z","updatedOn":"2019-04-06T06:34:21.5433604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cb49b8-5b1f-47c4-80ec-317954d04d9d","type":"Microsoft.Authorization/roleAssignments","name":"28cb49b8-5b1f-47c4-80ec-317954d04d9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fa4707d-784f-40ba-a6eb-42ee9334d0d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T04:45:06.2466603Z","updatedOn":"2019-04-14T04:45:06.2466603Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb46e4a6-a08b-4eca-a141-d72826228a9d","type":"Microsoft.Authorization/roleAssignments","name":"bb46e4a6-a08b-4eca-a141-d72826228a9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fdcac14-69e2-4d18-b9ed-ef5b07406baa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T04:07:17.7698444Z","updatedOn":"2019-02-21T04:07:17.7698444Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f34531c-c5ee-4068-9f91-c70364da9bd3","type":"Microsoft.Authorization/roleAssignments","name":"6f34531c-c5ee-4068-9f91-c70364da9bd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0101678-1509-4141-95fa-906232f58867","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T09:41:29.1946029Z","updatedOn":"2018-10-22T09:41:29.1946029Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/659bf497-76cb-48d2-985b-5eaa381210cf","type":"Microsoft.Authorization/roleAssignments","name":"659bf497-76cb-48d2-985b-5eaa381210cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0626b63-67c7-4a1f-bfa4-7a6aa4ef02af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-12T05:41:53.7995554Z","updatedOn":"2019-07-12T05:41:53.7995554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94316f4a-b82a-46d2-ae7d-c45081e1f975","type":"Microsoft.Authorization/roleAssignments","name":"94316f4a-b82a-46d2-ae7d-c45081e1f975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0a6bb6b-a1a1-44e2-a28e-92734bf9f1dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T00:41:50.9338611Z","updatedOn":"2018-11-10T00:41:50.9338611Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6da3558-59f7-4a94-b6da-b6e00a41f6ff","type":"Microsoft.Authorization/roleAssignments","name":"f6da3558-59f7-4a94-b6da-b6e00a41f6ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2306cdc-0c7d-4856-8c8b-179afa5299a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T01:58:36.8350229Z","updatedOn":"2019-03-06T01:58:36.8350229Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb9abd22-00ae-4e62-9a4a-0afa7174c822","type":"Microsoft.Authorization/roleAssignments","name":"cb9abd22-00ae-4e62-9a4a-0afa7174c822"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a253c971-5961-4bf9-be61-111a0c28e80b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:40:41.4834850Z","updatedOn":"2018-10-12T11:40:41.4834850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3694ba0d-4c2f-4771-a037-7c5834e6b69e","type":"Microsoft.Authorization/roleAssignments","name":"3694ba0d-4c2f-4771-a037-7c5834e6b69e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a29cca37-9663-47fe-b567-0a47abbb526a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T06:40:53.5249439Z","updatedOn":"2019-05-08T06:40:53.5249439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96bbdfbe-163c-4416-99e3-2866d37e0d92","type":"Microsoft.Authorization/roleAssignments","name":"96bbdfbe-163c-4416-99e3-2866d37e0d92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2b121b2-3976-4aed-bba8-f42a287ff6b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:38:49.8441700Z","updatedOn":"2019-05-28T05:38:49.8441700Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d72e9c83-2cdd-4497-b4dc-7509eb31d664","type":"Microsoft.Authorization/roleAssignments","name":"d72e9c83-2cdd-4497-b4dc-7509eb31d664"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2e3d7a4-8bcd-4856-9576-c1054a68b3a1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T19:18:33.4597803Z","updatedOn":"2018-09-20T19:18:33.4597803Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6b3d842-ced5-432a-a22e-7d28edaa051b","type":"Microsoft.Authorization/roleAssignments","name":"b6b3d842-ced5-432a-a22e-7d28edaa051b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f21203-0d2d-4f60-bcbf-57c55014be3f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-14T06:08:24.5622596Z","updatedOn":"2019-03-14T06:08:24.5622596Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92dcf5f9-a801-4159-833c-48fa1c348ae4","type":"Microsoft.Authorization/roleAssignments","name":"92dcf5f9-a801-4159-833c-48fa1c348ae4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f8b5f1-cf81-4433-a02e-2f0b6b7d6b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T07:02:54.6808407Z","updatedOn":"2019-02-14T07:02:54.6808407Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0120b64-5a05-417c-b26f-37be79872dd3","type":"Microsoft.Authorization/roleAssignments","name":"e0120b64-5a05-417c-b26f-37be79872dd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a310e62b-99ed-420b-a7ba-bf30a913d91e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T14:41:08.7511374Z","updatedOn":"2018-10-26T14:41:08.7511374Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9054c42b-63f5-42ba-a381-d367de7e354a","type":"Microsoft.Authorization/roleAssignments","name":"9054c42b-63f5-42ba-a381-d367de7e354a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a382f1b1-29c8-4bcc-a54c-d02129d5fba9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-27T07:12:23.8891004Z","updatedOn":"2019-02-27T07:12:23.8891004Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb860114-3e39-4861-994f-91819fa0d3ca","type":"Microsoft.Authorization/roleAssignments","name":"eb860114-3e39-4861-994f-91819fa0d3ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a3b787f3-27c4-4fd7-ba42-4aa10378ac29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-01T06:47:45.9059562Z","updatedOn":"2019-01-01T06:47:45.9059562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/276ec128-d3f9-4699-82ab-a8ecc970352e","type":"Microsoft.Authorization/roleAssignments","name":"276ec128-d3f9-4699-82ab-a8ecc970352e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a46d0a52-9b2d-46b7-8096-0c6577440bca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-17T05:42:45.0314363Z","updatedOn":"2019-07-17T05:42:45.0314363Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9267a054-276b-4d49-99cd-898cbff82843","type":"Microsoft.Authorization/roleAssignments","name":"9267a054-276b-4d49-99cd-898cbff82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a4e6a3ef-370d-4b96-8484-0f0e7ae097cc","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T04:54:51.7233330Z","updatedOn":"2019-02-23T04:54:51.7233330Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44a09d24-8afc-4e6f-8194-92c41bc03d2c","type":"Microsoft.Authorization/roleAssignments","name":"44a09d24-8afc-4e6f-8194-92c41bc03d2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6135302-1245-4266-884a-c8d9c1022c42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:43:42.5439236Z","updatedOn":"2019-06-27T05:43:42.5439236Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f3c2ef7-2a5a-4527-918a-16ac5f0797c5","type":"Microsoft.Authorization/roleAssignments","name":"1f3c2ef7-2a5a-4527-918a-16ac5f0797c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6f922c4-fa7b-4e31-abd6-3a34d8905883","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:46:22.5737011Z","updatedOn":"2019-06-26T05:46:22.5737011Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6416b44d-2f30-4a3a-949b-2e1a26073698","type":"Microsoft.Authorization/roleAssignments","name":"6416b44d-2f30-4a3a-949b-2e1a26073698"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a903f6a3-0f17-47cb-a8b7-7413cce0ed00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:27.0632135Z","updatedOn":"2019-04-09T06:35:27.0632135Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13162400-f169-4077-8ffb-c55bbbf1f2c3","type":"Microsoft.Authorization/roleAssignments","name":"13162400-f169-4077-8ffb-c55bbbf1f2c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9b020ad-f332-44b8-a562-ba8932680ed0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T20:54:49.0099644Z","updatedOn":"2018-10-04T20:54:49.0099644Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ca46671-c580-41b2-a66a-04a97e0b8a12","type":"Microsoft.Authorization/roleAssignments","name":"4ca46671-c580-41b2-a66a-04a97e0b8a12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9ebdc3d-426a-4819-88be-d689e14e68af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:19:22.3698974Z","updatedOn":"2019-06-08T05:19:22.3698974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99e17d3e-d9f8-4981-af91-1ea73dfd9c19","type":"Microsoft.Authorization/roleAssignments","name":"99e17d3e-d9f8-4981-af91-1ea73dfd9c19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa32b4d6-51fb-47cf-89db-5343a594a408","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T07:05:00.8674238Z","updatedOn":"2019-03-07T07:05:00.8674238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56450ccf-742b-447c-8c94-c9fa0cccd67f","type":"Microsoft.Authorization/roleAssignments","name":"56450ccf-742b-447c-8c94-c9fa0cccd67f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa346cd7-57df-4ef3-84ef-2c6bf1a84147","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T21:02:16.5038162Z","updatedOn":"2019-01-16T21:02:16.5038162Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c447d599-ba07-4a39-97b7-c4f78abea945","type":"Microsoft.Authorization/roleAssignments","name":"c447d599-ba07-4a39-97b7-c4f78abea945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa49020e-081f-4e28-aa0f-ce32cf21192c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T06:53:09.1738065Z","updatedOn":"2019-01-05T06:53:09.1738065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9393c663-8793-462d-b7fc-7be4e5e910ac","type":"Microsoft.Authorization/roleAssignments","name":"9393c663-8793-462d-b7fc-7be4e5e910ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa585469-c348-4329-97ff-6685945d8f9f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T10:27:32.3398145Z","updatedOn":"2018-11-01T10:27:32.3398145Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb","type":"Microsoft.Authorization/roleAssignments","name":"fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa9f2ecf-86e4-4633-858e-4f06b9b2c674","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-12T06:50:19.0980758Z","updatedOn":"2019-01-12T06:50:19.0980758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98c8253a-98e0-43be-8515-01078e1b37a3","type":"Microsoft.Authorization/roleAssignments","name":"98c8253a-98e0-43be-8515-01078e1b37a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aaa8709f-51cc-4e4e-b04e-3eb5e6967aeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T17:13:59.1800159Z","updatedOn":"2018-10-09T17:13:59.1800159Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa399f79-9804-482f-b7b6-96e8bb4bcfe4","type":"Microsoft.Authorization/roleAssignments","name":"aa399f79-9804-482f-b7b6-96e8bb4bcfe4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ac49f0af-daf1-40c5-a7c5-976a80349806","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T19:29:43.0393638Z","updatedOn":"2019-02-25T19:29:43.0393638Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2990befc-9d32-467c-82e6-f6d4b9989731","type":"Microsoft.Authorization/roleAssignments","name":"2990befc-9d32-467c-82e6-f6d4b9989731"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"acb8599a-fee7-4e6b-89f0-755bb9235ca3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:55:35.7163035Z","updatedOn":"2018-11-28T06:55:35.7163035Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6795cd6-9bda-4c50-a653-8bf472745dbe","type":"Microsoft.Authorization/roleAssignments","name":"d6795cd6-9bda-4c50-a653-8bf472745dbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad22f583-cfed-469a-af2c-3a63adc692a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:17:52.1695867Z","updatedOn":"2019-05-30T05:17:52.1695867Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab733cd2-c79e-4ef1-8304-26236dd7b8e9","type":"Microsoft.Authorization/roleAssignments","name":"ab733cd2-c79e-4ef1-8304-26236dd7b8e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad2a4f4e-f5f5-436e-8a66-36782fc0d145","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-04T02:36:49.3740605Z","updatedOn":"2019-03-04T02:36:49.3740605Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2261f8b8-19c4-4ec2-9859-59873467d680","type":"Microsoft.Authorization/roleAssignments","name":"2261f8b8-19c4-4ec2-9859-59873467d680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae422a89-c704-46a4-a5f1-860067cd5639","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T09:39:57.1667198Z","updatedOn":"2018-10-24T09:39:57.1667198Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06","type":"Microsoft.Authorization/roleAssignments","name":"8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae5ed965-de4e-41c6-96ed-b1ac228ac3e0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T07:23:49.1957806Z","updatedOn":"2018-12-18T07:23:49.1957806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b946408-cb9c-48c3-bf88-4f958bd8bd8a","type":"Microsoft.Authorization/roleAssignments","name":"7b946408-cb9c-48c3-bf88-4f958bd8bd8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aeaa17a8-25b1-4bda-bdcf-6e2e71d8b8f3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-23T20:37:26.5606718Z","updatedOn":"2018-09-23T20:37:26.5606718Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48f82201-5bd1-4593-a8b4-39ecdb9a826b","type":"Microsoft.Authorization/roleAssignments","name":"48f82201-5bd1-4593-a8b4-39ecdb9a826b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af2835f4-355e-4f7a-8806-fa234f9602a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T01:01:05.9757195Z","updatedOn":"2019-03-03T01:01:05.9757195Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27300599-bdb3-4549-b0ee-af58cad290d7","type":"Microsoft.Authorization/roleAssignments","name":"27300599-bdb3-4549-b0ee-af58cad290d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af9ee309-627b-44ad-bea5-73549c125a36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T06:50:46.0224585Z","updatedOn":"2018-12-06T06:50:46.0224585Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38a72942-3dbe-41f3-ada7-bd13a2d71969","type":"Microsoft.Authorization/roleAssignments","name":"38a72942-3dbe-41f3-ada7-bd13a2d71969"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"afd97d40-49c6-45c4-b0e4-eb8d482b2254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:14:49.2526346Z","updatedOn":"2019-05-07T05:14:49.2526346Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/524ba7d7-94a1-4193-bd4e-d0a8d94dacca","type":"Microsoft.Authorization/roleAssignments","name":"524ba7d7-94a1-4193-bd4e-d0a8d94dacca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b0f12759-0161-43ef-8e8a-23e651dfc0af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-19T12:58:31.5231479Z","updatedOn":"2018-12-19T12:58:31.5231479Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a312231-26e4-487f-b4a9-ecbd34790339","type":"Microsoft.Authorization/roleAssignments","name":"6a312231-26e4-487f-b4a9-ecbd34790339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b14ede10-7826-45a2-b58c-318e681015b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-22T06:51:17.8639291Z","updatedOn":"2019-01-22T06:51:17.8639291Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f7af73d-d2e8-4551-883e-a1792a6a3a9f","type":"Microsoft.Authorization/roleAssignments","name":"3f7af73d-d2e8-4551-883e-a1792a6a3a9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b15e09ba-9556-4000-82b7-81dea127e876","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:43:50.8559602Z","updatedOn":"2018-09-24T18:43:50.8559602Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0182c1e-da2b-4fa2-91b4-51b44e8b83b8","type":"Microsoft.Authorization/roleAssignments","name":"e0182c1e-da2b-4fa2-91b4-51b44e8b83b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b1cea468-9832-4438-96fe-a593593bc811","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T05:11:57.6195736Z","updatedOn":"2019-04-16T05:11:57.6195736Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b1e04fb-4046-42e1-9b51-9bcfff506586","type":"Microsoft.Authorization/roleAssignments","name":"1b1e04fb-4046-42e1-9b51-9bcfff506586"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b261b198-dfa2-4c79-af2a-d9e337cfe5e2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-05T06:48:52.8231877Z","updatedOn":"2018-12-05T06:48:52.8231877Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22e72f12-e2e0-45eb-9e39-d06a80340c7f","type":"Microsoft.Authorization/roleAssignments","name":"22e72f12-e2e0-45eb-9e39-d06a80340c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b2808f7d-4a88-40f8-afe0-6effec977b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-01T05:37:58.2224362Z","updatedOn":"2019-07-01T05:37:58.2224362Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/175b452d-5cc7-44c4-8dcb-176c44f83e95","type":"Microsoft.Authorization/roleAssignments","name":"175b452d-5cc7-44c4-8dcb-176c44f83e95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b284265d-7d2d-4064-9730-d3fb6d49ffc8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:08:05.4405957Z","updatedOn":"2018-09-26T19:08:05.4405957Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee27c820-20f6-4010-9fe8-beb7dbfdd346","type":"Microsoft.Authorization/roleAssignments","name":"ee27c820-20f6-4010-9fe8-beb7dbfdd346"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3287717-53bc-443a-80c6-d6ce0f67d254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T10:48:29.2424188Z","updatedOn":"2019-02-20T10:48:29.2424188Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/884adc0d-4e9c-47c7-9a8e-6d796cef4b4a","type":"Microsoft.Authorization/roleAssignments","name":"884adc0d-4e9c-47c7-9a8e-6d796cef4b4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b356511a-3b5c-4810-9575-d4d703f34507","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T06:40:22.3394494Z","updatedOn":"2019-05-14T06:40:22.3394494Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1149e65-c253-4666-9bce-684b10a05773","type":"Microsoft.Authorization/roleAssignments","name":"a1149e65-c253-4666-9bce-684b10a05773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3c65970-4a68-4ca0-b390-f95b599302ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-28T07:12:36.6368711Z","updatedOn":"2019-02-28T07:12:36.6368711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa39d789-620c-486f-a0ee-6b865665ff63","type":"Microsoft.Authorization/roleAssignments","name":"fa39d789-620c-486f-a0ee-6b865665ff63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b40cfee1-4c2d-452a-b44f-575ae40a8e45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:44:08.3454638Z","updatedOn":"2018-10-20T05:44:08.3454638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8226950-1330-4e58-820d-72304e1c5646","type":"Microsoft.Authorization/roleAssignments","name":"e8226950-1330-4e58-820d-72304e1c5646"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4542d7d-6a56-4352-8b6c-c6559ced173e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T09:44:26.1478824Z","updatedOn":"2019-02-14T09:44:26.1478824Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23c74aca-09b5-476f-8bfe-53a2f186a2bf","type":"Microsoft.Authorization/roleAssignments","name":"23c74aca-09b5-476f-8bfe-53a2f186a2bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b46a50ce-6f5a-497c-8018-cc0a22b7af49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:16:15.6414516Z","updatedOn":"2019-05-18T05:16:15.6414516Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b0a6c82-8d5e-463b-9a0a-0928f8966048","type":"Microsoft.Authorization/roleAssignments","name":"8b0a6c82-8d5e-463b-9a0a-0928f8966048"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b48168c3-719a-4759-8136-7c968992d4c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:37:22.4586770Z","updatedOn":"2019-04-27T05:37:22.4586770Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a2f7cea1-332c-445c-80ed-5ce645ebbb3b","type":"Microsoft.Authorization/roleAssignments","name":"a2f7cea1-332c-445c-80ed-5ce645ebbb3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4b4e928-9dfb-4d4e-be44-edd40b30e54d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:41:28.2668758Z","updatedOn":"2019-05-17T05:41:28.2668758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e02c4cbe-82f7-46cc-a7a0-4e4fec122637","type":"Microsoft.Authorization/roleAssignments","name":"e02c4cbe-82f7-46cc-a7a0-4e4fec122637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b5a4a66a-cfd4-49d5-8176-3853f76f06b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:49:40.6763834Z","updatedOn":"2018-09-18T23:49:40.6763834Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/011b3c5e-fb1f-4e86-bd96-30484982ba84","type":"Microsoft.Authorization/roleAssignments","name":"011b3c5e-fb1f-4e86-bd96-30484982ba84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b6c26947-20b2-4a64-b80f-44f8290cd1bc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:45:21.9378726Z","updatedOn":"2018-10-27T05:45:21.9378726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80273883-944e-4a02-bf1c-ea766d25fd24","type":"Microsoft.Authorization/roleAssignments","name":"80273883-944e-4a02-bf1c-ea766d25fd24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b781bab2-120a-4856-bb2e-b09c8fea0830","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-24T16:33:25.4669072Z","updatedOn":"2019-02-24T16:33:25.4669072Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00ed8c7c-f210-4034-b75b-8d80362aa1bc","type":"Microsoft.Authorization/roleAssignments","name":"00ed8c7c-f210-4034-b75b-8d80362aa1bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7a5c9dc-d498-401a-9905-ca8aff22b5e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T05:10:34.8900726Z","updatedOn":"2019-03-30T05:10:34.8900726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9f5109-8847-41bd-b0d4-ab5e1d90283f","type":"Microsoft.Authorization/roleAssignments","name":"8d9f5109-8847-41bd-b0d4-ab5e1d90283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7b6c717-3e9b-4238-83be-88859e1af527","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-11T06:48:36.5214424Z","updatedOn":"2019-01-11T06:48:36.5214424Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a15106-be24-4076-8ddc-ff1516a902a8","type":"Microsoft.Authorization/roleAssignments","name":"80a15106-be24-4076-8ddc-ff1516a902a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b87eaab1-09df-43b9-94df-c48de3ca9fd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:13:34.4204279Z","updatedOn":"2019-05-02T05:13:34.4204279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9f44a37-d753-44f3-9558-fe38588b564b","type":"Microsoft.Authorization/roleAssignments","name":"e9f44a37-d753-44f3-9558-fe38588b564b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b93cb31a-c1af-40df-9de5-c323f7adf817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:48:18.5335575Z","updatedOn":"2018-10-19T05:48:18.5335575Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2972b8c-3494-4141-badc-de7508941ddf","type":"Microsoft.Authorization/roleAssignments","name":"d2972b8c-3494-4141-badc-de7508941ddf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"baa56935-952a-43ce-84f4-d3c01b700b5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:43:22.2691800Z","updatedOn":"2018-10-24T05:43:22.2691800Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3960217-4c25-4759-ab03-f8208524e7b4","type":"Microsoft.Authorization/roleAssignments","name":"e3960217-4c25-4759-ab03-f8208524e7b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bad1513e-0d0b-49b2-8a5b-be1d3f48ded5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T06:48:00.1454038Z","updatedOn":"2018-11-13T06:48:00.1454038Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47e10457-1640-4e72-8f8a-03f5981383d7","type":"Microsoft.Authorization/roleAssignments","name":"47e10457-1640-4e72-8f8a-03f5981383d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bb2a5902-4c8c-4af8-91f1-d7a8268e73ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T20:18:17.1387327Z","updatedOn":"2018-11-23T20:18:17.1387327Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eae11fff-74b2-4a75-a923-d4a825bdff7a","type":"Microsoft.Authorization/roleAssignments","name":"eae11fff-74b2-4a75-a923-d4a825bdff7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc7b6508-3587-43db-9af9-2b64c8409b51","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T06:47:46.8169414Z","updatedOn":"2018-12-11T06:47:46.8169414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d58e02e5-5169-469c-bbb1-a2ddb269b310","type":"Microsoft.Authorization/roleAssignments","name":"d58e02e5-5169-469c-bbb1-a2ddb269b310"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc9c773a-fbe4-4d5b-8058-c9689c349039","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T08:09:40.8547368Z","updatedOn":"2019-09-11T08:09:40.8547368Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f39e25c9-b227-48d2-9185-847dd33a9326","type":"Microsoft.Authorization/roleAssignments","name":"f39e25c9-b227-48d2-9185-847dd33a9326"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bf5ee090-115d-45c3-baaf-fb715aab751a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:29.6992040Z","updatedOn":"2019-03-22T06:12:29.6992040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5e3ac77-f857-4a7e-9516-bf5d6978a49c","type":"Microsoft.Authorization/roleAssignments","name":"c5e3ac77-f857-4a7e-9516-bf5d6978a49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c07f6b2d-2fe6-461d-ba0a-29781dabe187","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:55.8846964Z","updatedOn":"2019-04-06T06:34:55.8846964Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ade3299-524c-4863-ba51-99b80d12132b","type":"Microsoft.Authorization/roleAssignments","name":"0ade3299-524c-4863-ba51-99b80d12132b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c0fef8ec-7820-4513-aefb-185ee40ae942","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T06:49:15.9413629Z","updatedOn":"2018-11-06T06:49:15.9413629Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be8c0792-f3a0-4bde-a124-4839576984df","type":"Microsoft.Authorization/roleAssignments","name":"be8c0792-f3a0-4bde-a124-4839576984df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c115ca8d-290f-453d-a030-505970f12fac","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T14:46:51.4676579Z","updatedOn":"2018-10-29T14:46:51.4676579Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb","type":"Microsoft.Authorization/roleAssignments","name":"9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c11b39f7-26c3-4dfc-8d0f-20dde3187845","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T18:31:05.4586182Z","updatedOn":"2018-12-13T18:31:05.4586182Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4901f853-a3c6-47e4-9495-2aeb09fb4491","type":"Microsoft.Authorization/roleAssignments","name":"4901f853-a3c6-47e4-9495-2aeb09fb4491"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c1a5670d-1c96-40dc-a29e-3a89185addeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T06:50:23.4662065Z","updatedOn":"2018-11-15T06:50:23.4662065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4830cf2-e9fd-42a6-b102-c3370fb8bc0b","type":"Microsoft.Authorization/roleAssignments","name":"f4830cf2-e9fd-42a6-b102-c3370fb8bc0b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3764ce3-3e3d-439f-92d7-f9b18bb6ce4e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-22T06:49:36.0998904Z","updatedOn":"2018-12-22T06:49:36.0998904Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/861c254f-b71f-49ee-8cee-374230256f41","type":"Microsoft.Authorization/roleAssignments","name":"861c254f-b71f-49ee-8cee-374230256f41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3c00e31-02de-419f-8409-3725b3856427","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T11:21:51.7243563Z","updatedOn":"2018-11-06T11:21:51.7243563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36af12be-6859-4676-a8e5-c5dfbaa2cd2e","type":"Microsoft.Authorization/roleAssignments","name":"36af12be-6859-4676-a8e5-c5dfbaa2cd2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4189c03-f913-4b8c-a77d-34e1eb436eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:39:12.6811204Z","updatedOn":"2019-05-21T05:39:12.6811204Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d33c51c-1683-4dab-8586-879a8a34eea9","type":"Microsoft.Authorization/roleAssignments","name":"3d33c51c-1683-4dab-8586-879a8a34eea9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c483f600-93f7-4d56-8e3e-a40b50356821","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T10:24:13.6577236Z","updatedOn":"2018-10-25T10:24:13.6577236Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1","type":"Microsoft.Authorization/roleAssignments","name":"e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4fe9d36-16a8-42da-bb6c-2388ec72603c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T23:47:15.8860107Z","updatedOn":"2018-11-12T23:47:15.8860107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7628befb-5807-42c8-b66f-aabebae30fc1","type":"Microsoft.Authorization/roleAssignments","name":"7628befb-5807-42c8-b66f-aabebae30fc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c50540b9-3342-46de-894a-3dff2f639687","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-18T02:29:01.1918326Z","updatedOn":"2019-10-18T02:29:01.1918326Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f93f57-2d31-4a40-be24-bc1bcf23dd91","type":"Microsoft.Authorization/roleAssignments","name":"33f93f57-2d31-4a40-be24-bc1bcf23dd91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c54aad68-3150-44c3-802d-e7da8c47ea5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-06T07:05:12.9555216Z","updatedOn":"2019-02-06T07:05:12.9555216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16021127-cd72-4170-a1ac-2b70be097b9a","type":"Microsoft.Authorization/roleAssignments","name":"16021127-cd72-4170-a1ac-2b70be097b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c55cf64d-29d9-462d-8dbc-c0d2ab4716e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T20:11:57.5033211Z","updatedOn":"2019-02-25T20:11:57.5033211Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebc41276-3624-42d1-b5e8-427fd5a11e2b","type":"Microsoft.Authorization/roleAssignments","name":"ebc41276-3624-42d1-b5e8-427fd5a11e2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c5c34086-aa9d-4c49-a5c6-c29efe356fc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T16:45:58.2054394Z","updatedOn":"2019-10-16T16:45:58.2054394Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b5731b2-3473-4fab-a925-c6297bfd8a78","type":"Microsoft.Authorization/roleAssignments","name":"5b5731b2-3473-4fab-a925-c6297bfd8a78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c70747bf-a786-4775-ad07-573ca03f59f5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-17T16:10:29.3503311Z","updatedOn":"2018-10-17T16:10:29.3503311Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6cce06cd-c998-489e-bfa7-33a4fd344730","type":"Microsoft.Authorization/roleAssignments","name":"6cce06cd-c998-489e-bfa7-33a4fd344730"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c7df6fc6-dea8-49a2-a8d6-904134c67f5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T07:52:11.8559141Z","updatedOn":"2019-09-16T07:52:11.8559141Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d16c3b-9db6-4b40-a1b9-346950c6d9c6","type":"Microsoft.Authorization/roleAssignments","name":"99d16c3b-9db6-4b40-a1b9-346950c6d9c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c956a64b-5110-464a-a294-c8ea39864b5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T17:55:29.6021991Z","updatedOn":"2019-06-25T17:55:29.6021991Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6859b12a-1331-4c52-a51a-8b212a6feb33","type":"Microsoft.Authorization/roleAssignments","name":"6859b12a-1331-4c52-a51a-8b212a6feb33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9b95a3d-e5af-43f9-932f-7136b24dc30b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:17:02.3079210Z","updatedOn":"2019-05-25T05:17:02.3079210Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0b87fc2-39e3-4ba0-aca5-c5783946a35b","type":"Microsoft.Authorization/roleAssignments","name":"b0b87fc2-39e3-4ba0-aca5-c5783946a35b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9e6f60a-7fbf-44f6-8537-5b7904783220","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:49:22.7298911Z","updatedOn":"2019-04-14T03:49:22.7298911Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e70c3b-b156-40a6-9d4d-4382572ab74f","type":"Microsoft.Authorization/roleAssignments","name":"e7e70c3b-b156-40a6-9d4d-4382572ab74f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cb115a45-6550-4919-aae8-fab31a876b1f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T06:32:08.7018686Z","updatedOn":"2019-05-07T06:32:08.7018686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5428a65d-1272-46af-b893-42a3aaaaab3c","type":"Microsoft.Authorization/roleAssignments","name":"5428a65d-1272-46af-b893-42a3aaaaab3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ccfad4dc-6927-4ea8-a15f-19b3f62c8102","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T05:13:49.1299091Z","updatedOn":"2019-03-28T05:13:49.1299091Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21a964bf-3a3f-49c2-b915-9efd03f5d00f","type":"Microsoft.Authorization/roleAssignments","name":"21a964bf-3a3f-49c2-b915-9efd03f5d00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd271855-eae3-4fe2-bf46-a9d8ca0cd083","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T05:11:27.8036785Z","updatedOn":"2019-04-05T05:11:27.8036785Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc06830-88bb-4279-b1a2-ada28b215cbe","type":"Microsoft.Authorization/roleAssignments","name":"1dc06830-88bb-4279-b1a2-ada28b215cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd51dabe-4388-449e-86fc-3fdbd6399392","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:29.4661881Z","updatedOn":"2019-01-29T06:54:29.4661881Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c","type":"Microsoft.Authorization/roleAssignments","name":"c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ce80dfc4-7b3e-4dbd-8c3e-a49427659ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:12:08.2919766Z","updatedOn":"2019-04-23T05:12:08.2919766Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13dae34f-ca2b-4b90-89c6-4aac487b8bbc","type":"Microsoft.Authorization/roleAssignments","name":"13dae34f-ca2b-4b90-89c6-4aac487b8bbc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ceb1d174-81de-49ef-9b29-0ef1abed1597","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T14:39:32.1643609Z","updatedOn":"2018-10-23T14:39:32.1643609Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5be77404-46b2-4a32-aead-8ed887d17b04","type":"Microsoft.Authorization/roleAssignments","name":"5be77404-46b2-4a32-aead-8ed887d17b04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf24ed58-b70c-4c03-9244-498f59b66c71","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T05:11:34.2050879Z","updatedOn":"2019-03-26T05:11:34.2050879Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50121b1c-3060-452a-8932-4cb2f6924601","type":"Microsoft.Authorization/roleAssignments","name":"50121b1c-3060-452a-8932-4cb2f6924601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf97c4f2-3ee9-4b64-b784-6003cba2ac46","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T06:48:49.9299181Z","updatedOn":"2018-12-04T06:48:49.9299181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5f18a5-8c6f-4a9e-8294-413b58703d9a","type":"Microsoft.Authorization/roleAssignments","name":"aa5f18a5-8c6f-4a9e-8294-413b58703d9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfe54dea-a7e8-4a5b-b175-37dc88d8e99e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T05:49:13.7322169Z","updatedOn":"2018-10-31T05:49:13.7322169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a515592c-c6e5-47e4-9642-c9264fcfa9d7","type":"Microsoft.Authorization/roleAssignments","name":"a515592c-c6e5-47e4-9642-c9264fcfa9d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfed68c0-dc27-409e-90c9-db9b72a2d004","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:48:01.2890417Z","updatedOn":"2018-10-26T05:48:01.2890417Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baadff0c-524e-43e5-8fd3-0170420f39b1","type":"Microsoft.Authorization/roleAssignments","name":"baadff0c-524e-43e5-8fd3-0170420f39b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d00aa246-4e4d-4221-af66-822a1e403423","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:55:45.3557173Z","updatedOn":"2018-10-23T16:55:45.3557173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec341a9c-e726-45f9-9f84-7654eda2fdc2","type":"Microsoft.Authorization/roleAssignments","name":"ec341a9c-e726-45f9-9f84-7654eda2fdc2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d0770fbc-c9df-4c0c-aa80-4406d287e609","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:47:07.4610935Z","updatedOn":"2019-06-15T05:47:07.4610935Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac2ba190-6fc7-42c4-b3a9-cf21909118b5","type":"Microsoft.Authorization/roleAssignments","name":"ac2ba190-6fc7-42c4-b3a9-cf21909118b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d135367a-3a97-4582-8a81-d6b8e54df03e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T06:42:28.3289628Z","updatedOn":"2019-05-18T06:42:28.3289628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e456abce-82b7-4937-b118-0139e0022167","type":"Microsoft.Authorization/roleAssignments","name":"e456abce-82b7-4937-b118-0139e0022167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1432718-0865-47b5-924b-f51837471e90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:56:11.2493227Z","updatedOn":"2018-10-03T05:56:11.2493227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88950f0a-d656-4cd3-841d-b532fe88baa5","type":"Microsoft.Authorization/roleAssignments","name":"88950f0a-d656-4cd3-841d-b532fe88baa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1956391-fb64-4c80-baa5-f5b7c0fe4679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T21:42:54.5977945Z","updatedOn":"2018-10-10T21:42:54.5977945Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e762e6fe-78f3-43d4-ab13-e5a3f5316a3c","type":"Microsoft.Authorization/roleAssignments","name":"e762e6fe-78f3-43d4-ab13-e5a3f5316a3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1f87eac-9245-42d9-95b3-6a753661ab24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T10:40:51.7814881Z","updatedOn":"2018-11-07T10:40:51.7814881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2169a638-419f-4d7f-9258-29bfee8a0930","type":"Microsoft.Authorization/roleAssignments","name":"2169a638-419f-4d7f-9258-29bfee8a0930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2144bca-85ed-4c2b-b727-8460fb73417b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:24:15.8315406Z","updatedOn":"2019-03-28T06:24:15.8315406Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38784b28-8cf3-43ae-8dca-d49195e311bd","type":"Microsoft.Authorization/roleAssignments","name":"38784b28-8cf3-43ae-8dca-d49195e311bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d28c917f-58f1-4d8d-a8e7-abb3e204ffd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T06:49:00.8611630Z","updatedOn":"2019-06-15T06:49:00.8611630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80c3c956-9e75-4ce5-9eaa-41b67811e99e","type":"Microsoft.Authorization/roleAssignments","name":"80c3c956-9e75-4ce5-9eaa-41b67811e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2b54a4a-fbf6-4ebf-808a-f98e4bb2924f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T10:25:57.1411675Z","updatedOn":"2018-10-23T10:25:57.1411675Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fe54064-c5f3-407a-a9bf-41af2afe2158","type":"Microsoft.Authorization/roleAssignments","name":"3fe54064-c5f3-407a-a9bf-41af2afe2158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2caf3df-cb83-4cad-af2e-065d92cf15dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:46:12.6813036Z","updatedOn":"2018-10-25T05:46:12.6813036Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12d03ad0-cabe-45f0-89be-21efb56e60f9","type":"Microsoft.Authorization/roleAssignments","name":"12d03ad0-cabe-45f0-89be-21efb56e60f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3120b11-89d6-4a95-b3ad-0ddbd9f04050","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-02T06:46:21.7720780Z","updatedOn":"2019-01-02T06:46:21.7720780Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81aa865f-27f4-4fe4-83ef-c3c332521962","type":"Microsoft.Authorization/roleAssignments","name":"81aa865f-27f4-4fe4-83ef-c3c332521962"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d316bf5b-a379-42bd-b0fd-ac498ff40d5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-14T06:50:35.3194075Z","updatedOn":"2018-12-14T06:50:35.3194075Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9531353-1083-47c0-a4e9-b13ab59cb526","type":"Microsoft.Authorization/roleAssignments","name":"a9531353-1083-47c0-a4e9-b13ab59cb526"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3c21087-ec7b-4675-9408-07d911406146","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:17:17.6788395Z","updatedOn":"2019-06-12T05:17:17.6788395Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bcad36-08a2-4536-a4b3-9380f6c1e339","type":"Microsoft.Authorization/roleAssignments","name":"00bcad36-08a2-4536-a4b3-9380f6c1e339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d4010ae5-c45a-4823-84bc-b3e6d7e6e512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:13:19.4148382Z","updatedOn":"2019-04-20T05:13:19.4148382Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da7f98c9-4c59-452a-a735-eca30f73ede0","type":"Microsoft.Authorization/roleAssignments","name":"da7f98c9-4c59-452a-a735-eca30f73ede0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d6db91cb-0a63-4bdd-8877-a68c53221c5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:53:30.9944559Z","updatedOn":"2018-09-18T23:53:30.9944559Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6199caa4-ff24-46a6-b50a-be42fbe9478e","type":"Microsoft.Authorization/roleAssignments","name":"6199caa4-ff24-46a6-b50a-be42fbe9478e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d70637dc-50b3-4ebc-9bdb-aeaf6f192169","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:35:45.9011532Z","updatedOn":"2019-04-30T05:35:45.9011532Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d63f6e48-9e31-4013-9e53-d0d30190fd3f","type":"Microsoft.Authorization/roleAssignments","name":"d63f6e48-9e31-4013-9e53-d0d30190fd3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d7f4b0f6-5e47-4c68-8e89-c8d397368d6b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:26:03.4031173Z","updatedOn":"2018-10-23T16:26:03.4031173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b23e7be9-30d4-4062-9e62-1d5000a46165","type":"Microsoft.Authorization/roleAssignments","name":"b23e7be9-30d4-4062-9e62-1d5000a46165"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d8f4630b-5ae7-49a5-88d6-adc3ad7c5592","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:01:15.5460293Z","updatedOn":"2018-09-27T10:01:15.5460293Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf71afc3-8e72-46be-a917-f22bd591ff02","type":"Microsoft.Authorization/roleAssignments","name":"cf71afc3-8e72-46be-a917-f22bd591ff02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d9043f54-0a86-47c5-a740-4b39df39e0a0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:14:08.8126640Z","updatedOn":"2019-04-30T05:14:08.8126640Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/237d0f39-ba02-481a-a2b8-6b8c4e747958","type":"Microsoft.Authorization/roleAssignments","name":"237d0f39-ba02-481a-a2b8-6b8c4e747958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d948c009-fdab-48aa-a97c-165c07ec0b89","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:09.2424182Z","updatedOn":"2019-01-30T06:54:09.2424182Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baafb840-781c-4bb5-8d99-d29ac492192b","type":"Microsoft.Authorization/roleAssignments","name":"baafb840-781c-4bb5-8d99-d29ac492192b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d960f42f-fc88-4ad5-9353-885dce085fa7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:46:03.8410291Z","updatedOn":"2018-12-11T19:46:03.8410291Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b61345d-b407-4dfc-9d74-3bef26c4d451","type":"Microsoft.Authorization/roleAssignments","name":"4b61345d-b407-4dfc-9d74-3bef26c4d451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"da664414-ab1e-488f-a1c1-81d037f6a1b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:17:10.0928144Z","updatedOn":"2019-05-22T05:17:10.0928144Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab64211-52a4-44af-b9cd-07462f5763f6","type":"Microsoft.Authorization/roleAssignments","name":"8ab64211-52a4-44af-b9cd-07462f5763f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"daaced77-675f-4356-9f87-e78986ff36a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T10:40:05.5875881Z","updatedOn":"2018-11-05T10:40:05.5875881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3c59aae-ad3b-4ff3-8d83-25aa27c4833d","type":"Microsoft.Authorization/roleAssignments","name":"b3c59aae-ad3b-4ff3-8d83-25aa27c4833d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db394df0-524d-4921-8630-d65d71f2165f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T09:42:50.8070319Z","updatedOn":"2018-10-31T09:42:50.8070319Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b65f540b-666d-40cf-a341-27ccb67c8c28","type":"Microsoft.Authorization/roleAssignments","name":"b65f540b-666d-40cf-a341-27ccb67c8c28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db4004a2-1161-4530-ac2f-3168ac1dbfba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T06:32:38.6934724Z","updatedOn":"2019-04-20T06:32:38.6934724Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e80d19b-ae41-44f6-926c-b902fd0c9158","type":"Microsoft.Authorization/roleAssignments","name":"7e80d19b-ae41-44f6-926c-b902fd0c9158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db65a597-9bd4-4259-9632-ffcbfd208b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T18:43:41.6069289Z","updatedOn":"2019-01-31T18:43:41.6069289Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa2a3117-6ca4-4ddf-83c7-511b370735dd","type":"Microsoft.Authorization/roleAssignments","name":"aa2a3117-6ca4-4ddf-83c7-511b370735dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc15c8e4-4230-4f90-b20d-268e196d1813","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:59:35.9649632Z","updatedOn":"2018-09-19T16:59:35.9649632Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c32e312c-7f12-47df-9cdb-eaf99db0df19","type":"Microsoft.Authorization/roleAssignments","name":"c32e312c-7f12-47df-9cdb-eaf99db0df19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc1a3549-229c-4971-93d1-dd2a12439b19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T02:46:17.6374569Z","updatedOn":"2019-09-18T02:46:17.6374569Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79ee6058-9515-427b-a19d-f9a245e4172b","type":"Microsoft.Authorization/roleAssignments","name":"79ee6058-9515-427b-a19d-f9a245e4172b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc7f9c47-a51a-46ba-80c8-fd054aab72cd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-06T20:51:24.1292868Z","updatedOn":"2019-01-06T20:51:24.1292868Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f518f831-d9ff-474a-b74a-632e7a06cf65","type":"Microsoft.Authorization/roleAssignments","name":"f518f831-d9ff-474a-b74a-632e7a06cf65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dd675716-2751-4705-922d-9837095097da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T05:11:12.7455369Z","updatedOn":"2019-04-09T05:11:12.7455369Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3b7cc13-094a-497d-a4cb-674c0889a93e","type":"Microsoft.Authorization/roleAssignments","name":"d3b7cc13-094a-497d-a4cb-674c0889a93e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dda0a530-d000-41b8-b403-828e589b4dda","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T04:20:44.5436786Z","updatedOn":"2018-10-25T04:20:44.5436786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c85da2-f98e-4e93-bf5f-d17bb106a771","type":"Microsoft.Authorization/roleAssignments","name":"77c85da2-f98e-4e93-bf5f-d17bb106a771"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df70f66e-810a-44ed-a81c-5e7fdb462469","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T16:29:57.6054123Z","updatedOn":"2019-05-14T16:29:57.6054123Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fda1a04-04b2-4bfc-a704-24c2cae69f78","type":"Microsoft.Authorization/roleAssignments","name":"6fda1a04-04b2-4bfc-a704-24c2cae69f78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df902ab3-f241-4bda-8260-b7673766f767","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-27T06:51:35.2235619Z","updatedOn":"2018-12-27T06:51:35.2235619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13272b7-22e4-491e-bb62-f1d3d50790eb","type":"Microsoft.Authorization/roleAssignments","name":"f13272b7-22e4-491e-bb62-f1d3d50790eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfa78316-eb12-44e4-837c-9acb8c5d0cf1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T19:10:43.6867523Z","updatedOn":"2019-01-26T19:10:43.6867523Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca533327-8eb3-4a0d-9c8c-65a19e8c87ef","type":"Microsoft.Authorization/roleAssignments","name":"ca533327-8eb3-4a0d-9c8c-65a19e8c87ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfcc4a66-9e66-4f59-a767-caa8e546fcf9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T06:33:13.7973771Z","updatedOn":"2019-04-17T06:33:13.7973771Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/842e8734-95b6-4039-82fb-39183f00b528","type":"Microsoft.Authorization/roleAssignments","name":"842e8734-95b6-4039-82fb-39183f00b528"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e00b75a6-6fc0-4f48-87b9-e8b639667c16","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-14T12:57:49.9426431Z","updatedOn":"2019-10-14T12:57:49.9426431Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be3fd0fe-438b-4b5e-9e4c-2dc04821da8a","type":"Microsoft.Authorization/roleAssignments","name":"be3fd0fe-438b-4b5e-9e4c-2dc04821da8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e037bfb5-59f7-42ac-9139-9636644cae6d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-05T05:39:11.8514441Z","updatedOn":"2019-07-05T05:39:11.8514441Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4","type":"Microsoft.Authorization/roleAssignments","name":"5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e06b0322-1992-45e2-be95-d10076e55ce4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:20.1895394Z","updatedOn":"2019-04-03T06:11:20.1895394Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec","type":"Microsoft.Authorization/roleAssignments","name":"80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e0e70e34-7c95-424d-8dcf-5a54a721cca7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T05:10:52.0339924Z","updatedOn":"2019-04-02T05:10:52.0339924Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1940e67f-5c1a-4075-9f95-be3dbc151994","type":"Microsoft.Authorization/roleAssignments","name":"1940e67f-5c1a-4075-9f95-be3dbc151994"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e107a9e2-2293-47cf-bfc7-0c68725a289a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T17:51:41.1140658Z","updatedOn":"2018-11-09T17:51:41.1140658Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94dc5859-b168-42bf-9561-a41827a21597","type":"Microsoft.Authorization/roleAssignments","name":"94dc5859-b168-42bf-9561-a41827a21597"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e19387a9-5b14-4049-b93e-1d8ecff6e421","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:18:24.9933280Z","updatedOn":"2019-05-09T05:18:24.9933280Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c62f4e2d-43ce-4c75-8c58-e2115666e53a","type":"Microsoft.Authorization/roleAssignments","name":"c62f4e2d-43ce-4c75-8c58-e2115666e53a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2c52a58-edac-4a9e-908c-070aaee677ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T14:41:40.9383041Z","updatedOn":"2018-10-31T14:41:40.9383041Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe79706d-4431-4c77-ac58-c542ebbb88bd","type":"Microsoft.Authorization/roleAssignments","name":"fe79706d-4431-4c77-ac58-c542ebbb88bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2f76937-0f09-4547-9df8-0af9621d773b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:38:51.0761001Z","updatedOn":"2019-05-14T05:38:51.0761001Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/888b2959-c9fb-406a-850f-9c898d01d2a3","type":"Microsoft.Authorization/roleAssignments","name":"888b2959-c9fb-406a-850f-9c898d01d2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e30dc24c-f495-4e89-8e2c-37415662502e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:41:41.0196120Z","updatedOn":"2018-09-27T10:41:41.0196120Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/574b48d4-e18d-4990-a10f-c11b59679b2c","type":"Microsoft.Authorization/roleAssignments","name":"574b48d4-e18d-4990-a10f-c11b59679b2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e34bede7-eff9-4901-a421-db8ea321021f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T22:28:30.9708597Z","updatedOn":"2018-09-21T22:28:30.9708597Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2661841d-d979-45ee-ac37-5438c3b68ce3","type":"Microsoft.Authorization/roleAssignments","name":"2661841d-d979-45ee-ac37-5438c3b68ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e3696682-bf2d-4945-977e-ef7248f2f841","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T20:11:58.1212576Z","updatedOn":"2018-10-10T20:11:58.1212576Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e95bb61d-eee2-482c-8b26-e63d68d8b7c9","type":"Microsoft.Authorization/roleAssignments","name":"e95bb61d-eee2-482c-8b26-e63d68d8b7c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4640f2b-484b-487c-b2eb-badc4c8b20be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:12:04.1728439Z","updatedOn":"2018-10-03T21:12:04.1728439Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/921f26e2-0616-4bcf-9ce1-367ffbffb91a","type":"Microsoft.Authorization/roleAssignments","name":"921f26e2-0616-4bcf-9ce1-367ffbffb91a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e49b9853-05d6-4483-8a13-09ab92649bf4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-17T06:52:09.8666638Z","updatedOn":"2018-11-17T06:52:09.8666638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f047a8be-5857-4a34-9b54-5162bb957cda","type":"Microsoft.Authorization/roleAssignments","name":"f047a8be-5857-4a34-9b54-5162bb957cda"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4acab8d-85f5-40d7-b435-fedb84e267d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T06:50:11.8734444Z","updatedOn":"2019-01-08T06:50:11.8734444Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c02a7cf-d6ee-41fb-ae36-78584d496fba","type":"Microsoft.Authorization/roleAssignments","name":"9c02a7cf-d6ee-41fb-ae36-78584d496fba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e51c59a1-2fc1-43a2-bb97-f1a8c3cfaa04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:45.3923768Z","updatedOn":"2018-10-09T05:36:45.3923768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b9876f4-77b2-4641-94c6-4841f60e4847","type":"Microsoft.Authorization/roleAssignments","name":"4b9876f4-77b2-4641-94c6-4841f60e4847"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e54b25df-e33e-4fc8-a902-47eb3e003393","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-04T06:40:59.1110452Z","updatedOn":"2019-09-04T06:40:59.1110452Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f29b1a13-bd85-46fb-86a9-7344625aae55","type":"Microsoft.Authorization/roleAssignments","name":"f29b1a13-bd85-46fb-86a9-7344625aae55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e54e05a4-bb09-4e57-883f-f6d293542c5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T14:19:08.0027870Z","updatedOn":"2019-01-05T14:19:08.0027870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/370a1221-368e-422a-aa9f-6fc9e44e6bca","type":"Microsoft.Authorization/roleAssignments","name":"370a1221-368e-422a-aa9f-6fc9e44e6bca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e6026d46-d4a8-4f87-bb3e-3baf9459af8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:16.5748095Z","updatedOn":"2019-01-29T06:54:16.5748095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e26fc3af-b00c-4769-915a-3617f01523bb","type":"Microsoft.Authorization/roleAssignments","name":"e26fc3af-b00c-4769-915a-3617f01523bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e62a5697-a15c-4334-99b8-ee4d71502723","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:38:10.0897377Z","updatedOn":"2019-05-11T05:38:10.0897377Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5da9f69-7824-4de7-8221-805a4abd98aa","type":"Microsoft.Authorization/roleAssignments","name":"a5da9f69-7824-4de7-8221-805a4abd98aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e643033e-2797-4cd1-bea0-6641e5b92e22","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:56:54.3184019Z","updatedOn":"2018-09-28T05:56:54.3184019Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf256161-a290-414b-b882-8124aee1d18f","type":"Microsoft.Authorization/roleAssignments","name":"cf256161-a290-414b-b882-8124aee1d18f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e675fccf-56c0-4ff7-8422-7ec61abb71aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T06:48:56.0895695Z","updatedOn":"2019-06-29T06:48:56.0895695Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/712b7791-9b32-4aea-b1ac-88dd09bcf21f","type":"Microsoft.Authorization/roleAssignments","name":"712b7791-9b32-4aea-b1ac-88dd09bcf21f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7b51e8c-e2bc-4995-9fd6-8fba299a697b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T21:21:29.0456925Z","updatedOn":"2018-10-16T21:21:29.0456925Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a676414b-de5c-4cdc-b12e-be7efd1c9201","type":"Microsoft.Authorization/roleAssignments","name":"a676414b-de5c-4cdc-b12e-be7efd1c9201"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7e8644a-035e-42fc-b884-94399a127f78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-25T06:04:36.9767266Z","updatedOn":"2019-09-25T06:04:36.9767266Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26b4ce18-5649-45f7-964f-36087586eb7c","type":"Microsoft.Authorization/roleAssignments","name":"26b4ce18-5649-45f7-964f-36087586eb7c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e82a88b9-378c-46e2-927c-5c31b169943a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-18T06:51:49.6591216Z","updatedOn":"2019-01-18T06:51:49.6591216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b5df3b6-1025-4123-b6eb-d0ff78511c3c","type":"Microsoft.Authorization/roleAssignments","name":"7b5df3b6-1025-4123-b6eb-d0ff78511c3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e979acbc-d9f3-4bc8-a577-d507f284fd64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T07:05:59.2701340Z","updatedOn":"2019-02-13T07:05:59.2701340Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d4036f4-9da4-4b75-b3cb-bea1e1587637","type":"Microsoft.Authorization/roleAssignments","name":"4d4036f4-9da4-4b75-b3cb-bea1e1587637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e97f382e-06de-4c02-ae49-1b472d457b5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T06:48:52.2100303Z","updatedOn":"2018-12-13T06:48:52.2100303Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e201ee26-fa57-484c-b996-e80d351409fd","type":"Microsoft.Authorization/roleAssignments","name":"e201ee26-fa57-484c-b996-e80d351409fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e9828cac-b36d-49c5-ac90-20be05e4d24d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T05:07:01.3282577Z","updatedOn":"2018-10-10T05:07:01.3282577Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff93b77-1a32-46d2-8560-f71cd70f1ebd","type":"Microsoft.Authorization/roleAssignments","name":"8ff93b77-1a32-46d2-8560-f71cd70f1ebd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ea36e992-4a2f-45a3-a912-a54a2d30fc0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T11:21:21.5808774Z","updatedOn":"2018-11-05T11:21:21.5808774Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc53456a-6608-4c33-9491-4d1a5afdea55","type":"Microsoft.Authorization/roleAssignments","name":"bc53456a-6608-4c33-9491-4d1a5afdea55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaa6ed61-48bf-43a3-9612-b2100b017464","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T06:51:17.2248433Z","updatedOn":"2018-11-16T06:51:17.2248433Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c6e9372-b60f-400a-923e-5bf10461039d","type":"Microsoft.Authorization/roleAssignments","name":"5c6e9372-b60f-400a-923e-5bf10461039d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab7796a-9356-4cc3-9013-b7b05f366e6e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T06:38:38.0393711Z","updatedOn":"2019-05-11T06:38:38.0393711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1bfee263-2d52-452f-8bc4-69506742a6dc","type":"Microsoft.Authorization/roleAssignments","name":"1bfee263-2d52-452f-8bc4-69506742a6dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab79c72-4ae1-418d-959c-3189fcd38f83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T06:47:15.3844106Z","updatedOn":"2019-06-27T06:47:15.3844106Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7570d9e5-b430-4887-beb7-248bb541fc0f","type":"Microsoft.Authorization/roleAssignments","name":"7570d9e5-b430-4887-beb7-248bb541fc0f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eade49e1-acfb-4ea4-ae49-a623f535fb18","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T06:45:44.1143351Z","updatedOn":"2019-05-03T06:45:44.1143351Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39c4676b-567c-4f1c-97d5-c3ed9daa362a","type":"Microsoft.Authorization/roleAssignments","name":"39c4676b-567c-4f1c-97d5-c3ed9daa362a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaeae412-d60d-4d7a-908c-145c6bf3fbf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T05:12:09.4309329Z","updatedOn":"2019-04-13T05:12:09.4309329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/efa03a0f-bc71-4070-bee7-3941291a7551","type":"Microsoft.Authorization/roleAssignments","name":"efa03a0f-bc71-4070-bee7-3941291a7551"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb21d0ed-cf9a-4e1a-91c6-fcbbe79087ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:23.0325690Z","updatedOn":"2019-04-05T06:36:23.0325690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfb5446f-1343-4c99-84ae-7e0d582fffe7","type":"Microsoft.Authorization/roleAssignments","name":"dfb5446f-1343-4c99-84ae-7e0d582fffe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb97db0b-0e80-43c9-bcc3-de7aeaf94664","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:59.8441024Z","updatedOn":"2019-03-27T06:15:59.8441024Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f","type":"Microsoft.Authorization/roleAssignments","name":"ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec57ccc5-2f42-431d-a500-a89f6b520a69","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-29T06:47:51.0639763Z","updatedOn":"2018-12-29T06:47:51.0639763Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3215167-e3e0-49d9-a7bf-9f2a630d3df8","type":"Microsoft.Authorization/roleAssignments","name":"b3215167-e3e0-49d9-a7bf-9f2a630d3df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec7af31f-8df5-41fc-8ce0-3e400f87b2f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T15:42:33.2721176Z","updatedOn":"2018-09-28T15:42:33.2721176Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/933415b4-7989-4967-9573-b3391a105890","type":"Microsoft.Authorization/roleAssignments","name":"933415b4-7989-4967-9573-b3391a105890"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ecd227f4-6172-4cb0-b71e-fc375b24890e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-05T07:09:55.8763875Z","updatedOn":"2019-03-05T07:09:55.8763875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33","type":"Microsoft.Authorization/roleAssignments","name":"6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"edc08fc8-a655-45cb-bc3a-dc7c6eb2276e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T22:49:39.8210549Z","updatedOn":"2018-11-08T22:49:39.8210549Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86afb984-5cee-4133-b945-19308dccc30e","type":"Microsoft.Authorization/roleAssignments","name":"86afb984-5cee-4133-b945-19308dccc30e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee02061f-5d48-4b61-a0ed-f021507f073a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:51:58.0601465Z","updatedOn":"2018-09-18T23:51:58.0601465Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442128eb-c84c-4bfd-aaf3-78461a82d37a","type":"Microsoft.Authorization/roleAssignments","name":"442128eb-c84c-4bfd-aaf3-78461a82d37a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee22eca7-314f-419d-8c4c-afb7dfdb067a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:47:10.4443784Z","updatedOn":"2019-06-29T05:47:10.4443784Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70da3654-07cc-498a-ae86-7b555af271fa","type":"Microsoft.Authorization/roleAssignments","name":"70da3654-07cc-498a-ae86-7b555af271fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ef2f674f-9168-4c63-b381-21b1274d486f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-10T02:45:50.4761292Z","updatedOn":"2018-12-10T02:45:50.4761292Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab1e45ce-6cb8-4f36-b317-a5e69c765de8","type":"Microsoft.Authorization/roleAssignments","name":"ab1e45ce-6cb8-4f36-b317-a5e69c765de8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f0ee7d27-b2cf-4fef-bffb-d053c7e525e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-15T06:50:10.0183556Z","updatedOn":"2018-12-15T06:50:10.0183556Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b05e83dd-0a32-4362-bf41-533eefec78fe","type":"Microsoft.Authorization/roleAssignments","name":"b05e83dd-0a32-4362-bf41-533eefec78fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f12d73d6-38bf-446c-bcf2-06cdf7c751f6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:17:31.1347008Z","updatedOn":"2018-10-05T00:17:31.1347008Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b75eb356-24bd-43ec-9924-8c1fec732b25","type":"Microsoft.Authorization/roleAssignments","name":"b75eb356-24bd-43ec-9924-8c1fec732b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1d2e61d-aff2-479c-8035-71de9c693170","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T06:50:50.2868298Z","updatedOn":"2019-06-26T06:50:50.2868298Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e33e46c8-32a7-4770-94d9-26ed006e5aa7","type":"Microsoft.Authorization/roleAssignments","name":"e33e46c8-32a7-4770-94d9-26ed006e5aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1e96e2a-03c6-48f5-b9b4-efa3f2f7c23a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T11:21:53.3901696Z","updatedOn":"2018-11-07T11:21:53.3901696Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87b0b81-c91b-47ab-ba6a-bc64bef90a96","type":"Microsoft.Authorization/roleAssignments","name":"c87b0b81-c91b-47ab-ba6a-bc64bef90a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2ce8704-eb58-4f53-a001-64706ff5f5cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:16:01.8990158Z","updatedOn":"2019-05-16T05:16:01.8990158Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c3963fb-821b-47ef-a9f3-8b608fcac94f","type":"Microsoft.Authorization/roleAssignments","name":"3c3963fb-821b-47ef-a9f3-8b608fcac94f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2dab8e8-6a37-4c10-8684-b199ed36f6af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:18:29.2774803Z","updatedOn":"2019-06-05T05:18:29.2774803Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eed7a551-3f2f-44ea-8529-f520a2c304bc","type":"Microsoft.Authorization/roleAssignments","name":"eed7a551-3f2f-44ea-8529-f520a2c304bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f34ec5dd-3c0a-41c9-becf-0376cfd68992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T21:29:31.5576007Z","updatedOn":"2019-03-08T21:29:31.5576007Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12b2f6b0-4811-436a-a8bd-5924b2ab21e5","type":"Microsoft.Authorization/roleAssignments","name":"12b2f6b0-4811-436a-a8bd-5924b2ab21e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f3e2492e-9ad2-42a3-847e-c150775639c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-04T01:32:07.5969769Z","updatedOn":"2019-02-04T01:32:07.5969769Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a964fbf-cc11-457c-8ec0-443d4bc1a630","type":"Microsoft.Authorization/roleAssignments","name":"6a964fbf-cc11-457c-8ec0-443d4bc1a630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f40c52bb-3174-418d-bb20-443a38784a98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:14:40.9925500Z","updatedOn":"2019-05-04T05:14:40.9925500Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c1a74f6-2f50-43e4-8041-f306168ecce2","type":"Microsoft.Authorization/roleAssignments","name":"7c1a74f6-2f50-43e4-8041-f306168ecce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f5198c63-8877-46d5-9c35-9c4c490a29ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T06:47:14.5768830Z","updatedOn":"2019-01-15T06:47:14.5768830Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a90e35-892f-42fe-9cc3-95303f8debf8","type":"Microsoft.Authorization/roleAssignments","name":"26a90e35-892f-42fe-9cc3-95303f8debf8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-16T01:33:17.9534350Z","updatedOn":"2019-02-16T01:33:17.9534350Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61ee390f-be86-4b4e-86f3-9e8bafaab2e1","type":"Microsoft.Authorization/roleAssignments","name":"61ee390f-be86-4b4e-86f3-9e8bafaab2e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f685c96d-aa5e-455b-af7d-2e7d94ede7d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-09T07:07:23.8043875Z","updatedOn":"2019-02-09T07:07:23.8043875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0786223d-65f3-40db-81aa-a17f34c9dc28","type":"Microsoft.Authorization/roleAssignments","name":"0786223d-65f3-40db-81aa-a17f34c9dc28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f6c2f6f7-1bbf-4c17-87c6-28c02d7c0637","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T18:01:59.1260407Z","updatedOn":"2018-11-08T18:01:59.1260407Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4b79dcb-c95a-44c2-82cd-e550faad8ac5","type":"Microsoft.Authorization/roleAssignments","name":"c4b79dcb-c95a-44c2-82cd-e550faad8ac5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f730bea3-2472-4fe3-80be-0a1445294eee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T06:35:01.7171966Z","updatedOn":"2019-04-26T06:35:01.7171966Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b6946b2-d0e9-4c65-a6fc-15737bff969d","type":"Microsoft.Authorization/roleAssignments","name":"0b6946b2-d0e9-4c65-a6fc-15737bff969d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f7b9dc01-e8a5-4dd6-a495-e5a60218fa54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T06:56:19.2723414Z","updatedOn":"2018-12-07T06:56:19.2723414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bac40000-696c-48ce-8d64-d164cc7c9584","type":"Microsoft.Authorization/roleAssignments","name":"bac40000-696c-48ce-8d64-d164cc7c9584"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8b44c55-cd62-4be2-9a7b-6f34c02102fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-15T06:39:44.9770992Z","updatedOn":"2019-10-15T06:39:44.9770992Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9f17e1c-8894-4b9f-8961-7e4c9ce0d42e","type":"Microsoft.Authorization/roleAssignments","name":"a9f17e1c-8894-4b9f-8961-7e4c9ce0d42e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8cfccf4-e5f4-4f03-92b0-4a7188d128e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:18:44.2822059Z","updatedOn":"2019-06-11T05:18:44.2822059Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/64f20b4f-a2bc-4e40-aaa6-0e38c6376805","type":"Microsoft.Authorization/roleAssignments","name":"64f20b4f-a2bc-4e40-aaa6-0e38c6376805"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8e79c26-a86d-4735-9eea-870bf9776bd8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T14:43:30.1825870Z","updatedOn":"2018-11-02T14:43:30.1825870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18dd5795-e181-4161-9c6d-9d4254b8cb5b","type":"Microsoft.Authorization/roleAssignments","name":"18dd5795-e181-4161-9c6d-9d4254b8cb5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8f4e1d2-5bfc-456e-b2b3-02be2b489975","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T01:07:10.2845079Z","updatedOn":"2019-04-13T01:07:10.2845079Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7b97d48-40ea-4a62-b945-4ecc788b349b","type":"Microsoft.Authorization/roleAssignments","name":"d7b97d48-40ea-4a62-b945-4ecc788b349b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f931cad8-70e4-4763-8a12-1e4de602ea7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T19:20:46.6973443Z","updatedOn":"2018-12-20T19:20:46.6973443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b5a984b-3400-4961-a40a-91edf9921515","type":"Microsoft.Authorization/roleAssignments","name":"2b5a984b-3400-4961-a40a-91edf9921515"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"facba42c-528c-43d4-a858-0bf72a82282a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:43.5905169Z","updatedOn":"2019-03-21T06:07:43.5905169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b490d9b4-0e66-47b8-84cb-b46c55e3e12a","type":"Microsoft.Authorization/roleAssignments","name":"b490d9b4-0e66-47b8-84cb-b46c55e3e12a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fae345f2-3525-4eee-91ed-aa3e7a0339a7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T19:02:36.1002522Z","updatedOn":"2018-10-26T19:02:36.1002522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98cbb4be-2890-41dd-add1-4ee878c60dd8","type":"Microsoft.Authorization/roleAssignments","name":"98cbb4be-2890-41dd-add1-4ee878c60dd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb081bc8-ed19-41cc-96a0-ea9ccd00ec90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:39:01.0101712Z","updatedOn":"2019-05-15T05:39:01.0101712Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8392ddf-11a2-46aa-9358-fdbe878e960c","type":"Microsoft.Authorization/roleAssignments","name":"c8392ddf-11a2-46aa-9358-fdbe878e960c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb37b8d0-4601-4b1f-b91d-8481ae1a64dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T06:38:25.6840193Z","updatedOn":"2019-06-05T06:38:25.6840193Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/393f99af-bba5-4e10-86e0-a516711c2610","type":"Microsoft.Authorization/roleAssignments","name":"393f99af-bba5-4e10-86e0-a516711c2610"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fbfb0f5c-126b-4ad5-b57a-fcde861f6ef5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:39:36.0023686Z","updatedOn":"2019-05-22T05:39:36.0023686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e387c6d-5025-47b3-9656-b34a4010b543","type":"Microsoft.Authorization/roleAssignments","name":"0e387c6d-5025-47b3-9656-b34a4010b543"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd456099-1753-4268-b008-b3f5efb95450","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T06:42:07.6153979Z","updatedOn":"2019-05-16T06:42:07.6153979Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c385c958-ab8b-4607-9c74-331b2b5c2a50","type":"Microsoft.Authorization/roleAssignments","name":"c385c958-ab8b-4607-9c74-331b2b5c2a50"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd88acad-daca-4266-85ef-2dd1913764b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-23T06:51:03.9457234Z","updatedOn":"2019-01-23T06:51:03.9457234Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae829a74-705b-4601-9244-b9c56a1c8c06","type":"Microsoft.Authorization/roleAssignments","name":"ae829a74-705b-4601-9244-b9c56a1c8c06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdac9577-7542-4784-acee-04438868444e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-25T06:49:39.2426384Z","updatedOn":"2018-12-25T06:49:39.2426384Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d786378a-55c6-422f-bead-e440c334f64e","type":"Microsoft.Authorization/roleAssignments","name":"d786378a-55c6-422f-bead-e440c334f64e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdcdb431-1889-489a-9ad3-78938a34f291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T05:09:58.6316471Z","updatedOn":"2019-03-21T05:09:58.6316471Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c","type":"Microsoft.Authorization/roleAssignments","name":"6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fde0da25-f6a4-4dfd-9668-adfe72c9b3d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T06:48:48.7139215Z","updatedOn":"2018-11-08T06:48:48.7139215Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77d93e9-ffc3-4bbc-9e41-d83ce42904dc","type":"Microsoft.Authorization/roleAssignments","name":"f77d93e9-ffc3-4bbc-9e41-d83ce42904dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe17c43a-7ba9-4c77-9a8a-786cb36b6ac7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T06:53:34.4612275Z","updatedOn":"2019-06-14T06:53:34.4612275Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e07738-648f-42d4-821e-44878849aa6a","type":"Microsoft.Authorization/roleAssignments","name":"90e07738-648f-42d4-821e-44878849aa6a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe19f84e-7f46-454e-89e4-4cbefe1ed4a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:34:36.0206593Z","updatedOn":"2019-04-20T05:34:36.0206593Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5553c590-af3a-49a1-a2f5-3f28018cbcc0","type":"Microsoft.Authorization/roleAssignments","name":"5553c590-af3a-49a1-a2f5-3f28018cbcc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe55b12a-b22b-425d-9823-d07edba98b05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T15:46:35.8826664Z","updatedOn":"2018-11-12T15:46:35.8826664Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a386f3b-f818-467e-b33b-ace3ccbee34c","type":"Microsoft.Authorization/roleAssignments","name":"0a386f3b-f818-467e-b33b-ace3ccbee34c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe6e08d1-3fe9-4fcd-8430-d10701a9d7ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:41:54.8887107Z","updatedOn":"2019-06-05T05:41:54.8887107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a76715-9dbd-4a18-92e5-d67600f59cce","type":"Microsoft.Authorization/roleAssignments","name":"55a76715-9dbd-4a18-92e5-d67600f59cce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fec576d4-426b-410d-9137-67f4a2dd0298","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:16:36.3049181Z","updatedOn":"2019-05-21T05:16:36.3049181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7a5108f-9ec2-4903-93a8-b4fbcb4c292c","type":"Microsoft.Authorization/roleAssignments","name":"b7a5108f-9ec2-4903-93a8-b4fbcb4c292c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff5beb60-1ab4-4725-b12e-20da05833516","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T06:39:43.4665630Z","updatedOn":"2019-06-08T06:39:43.4665630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce551e89-0244-4c14-9e46-4d0715368fd2","type":"Microsoft.Authorization/roleAssignments","name":"ce551e89-0244-4c14-9e46-4d0715368fd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff64b261-1aaa-4d2a-b37e-0c6f71ee5d41","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-19T07:05:24.6386936Z","updatedOn":"2019-02-19T07:05:24.6386936Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08f79e8e-7405-4fe6-b15e-fcf13f8af972","type":"Microsoft.Authorization/roleAssignments","name":"08f79e8e-7405-4fe6-b15e-fcf13f8af972"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ffafc31c-c957-481f-922f-6f38699fbba4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:41:51.9166032Z","updatedOn":"2019-05-09T05:41:51.9166032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c20ee64c-0ac0-4280-820b-1e515aa13c95","type":"Microsoft.Authorization/roleAssignments","name":"c20ee64c-0ac0-4280-820b-1e515aa13c95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:19:13.9288977Z","updatedOn":"2019-09-11T09:19:13.9288977Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b02d8e07-7398-4236-bf13-6293699c6862","type":"Microsoft.Authorization/roleAssignments","name":"b02d8e07-7398-4236-bf13-6293699c6862"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T19:47:09.8058411Z","updatedOn":"2018-10-25T19:47:09.8058411Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abd19ae1-8e0c-4e31-b1ab-25e85d987378","type":"Microsoft.Authorization/roleAssignments","name":"abd19ae1-8e0c-4e31-b1ab-25e85d987378"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:42.0835929Z","updatedOn":"2019-09-04T08:09:42.0835929Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/providers/Microsoft.Authorization/roleAssignments/9d0c9433-a2c8-403f-ba1c-6310772291a5","type":"Microsoft.Authorization/roleAssignments","name":"9d0c9433-a2c8-403f-ba1c-6310772291a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:00.2975238Z","updatedOn":"2019-09-04T08:09:00.2975238Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/providers/Microsoft.Authorization/roleAssignments/1170ebb2-2837-465d-87ea-0c13b2c951b4","type":"Microsoft.Authorization/roleAssignments","name":"1170ebb2-2837-465d-87ea-0c13b2c951b4"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-11-13T11:10:42.4616986Z","updatedOn":"2019-11-13T11:10:42.4616986Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-12T09:15:08.3107297Z","updatedOn":"2019-11-12T09:15:08.3107297Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54647dc6-f6f0-4ba0-af42-9770ddce6c5a","type":"Microsoft.Authorization/roleAssignments","name":"54647dc6-f6f0-4ba0-af42-9770ddce6c5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"04682e4a-6d00-4431-a67d-27d364f3a0cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T22:54:45.4500699Z","updatedOn":"2018-09-12T22:54:45.4500699Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7d54a622-bff3-4d28-90b1-faa5119abc7a","type":"Microsoft.Authorization/roleAssignments","name":"7d54a622-bff3-4d28-90b1-faa5119abc7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"056cdcb7-07df-4329-a5c1-dd8b53c85a05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:13:40.1246854Z","updatedOn":"2018-09-27T17:13:40.1246854Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c5b2ade-0f33-4d4d-b841-df57ffa2d569","type":"Microsoft.Authorization/roleAssignments","name":"1c5b2ade-0f33-4d4d-b841-df57ffa2d569"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-22T14:58:56.7424484Z","updatedOn":"2019-09-22T14:58:56.7424484Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5d758f5-4ec2-4dd5-ba95-cee5405e367c","type":"Microsoft.Authorization/roleAssignments","name":"a5d758f5-4ec2-4dd5-ba95-cee5405e367c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0a592c45-613e-4f1b-9023-7c4414fd53bf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T01:47:13.5745250Z","updatedOn":"2019-08-08T01:47:13.5745250Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d320644f-c08b-47f4-ae3b-9df595a5c368","type":"Microsoft.Authorization/roleAssignments","name":"d320644f-c08b-47f4-ae3b-9df595a5c368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-26T04:16:43.3784273Z","updatedOn":"2019-07-26T04:16:43.3784273Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a567d42-8a33-4cad-9f7b-5299a16dc269","type":"Microsoft.Authorization/roleAssignments","name":"9a567d42-8a33-4cad-9f7b-5299a16dc269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:48:59.9741186Z","updatedOn":"2018-09-18T23:48:59.9741186Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4a780b4-840e-4552-8713-7ae0c353278b","type":"Microsoft.Authorization/roleAssignments","name":"d4a780b4-840e-4552-8713-7ae0c353278b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"12229a56-a139-4df5-9873-e2d6869d6978","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-15T05:21:34.7033579Z","updatedOn":"2018-08-15T05:21:34.7033579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61bffc28-7921-4fcf-942f-d164943c7274","type":"Microsoft.Authorization/roleAssignments","name":"61bffc28-7921-4fcf-942f-d164943c7274"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"128dbb12-dd4e-4a43-b589-7a5398d8de42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:05:37.8677974Z","updatedOn":"2018-10-05T05:05:37.8677974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5882a08d-d03f-4c3d-90e5-7c74b20e81c8","type":"Microsoft.Authorization/roleAssignments","name":"5882a08d-d03f-4c3d-90e5-7c74b20e81c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"14c2ec86-db00-410f-b94d-c58509ee45c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T20:10:56.8604982Z","updatedOn":"2018-10-29T20:10:56.8604982Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7feac640-4864-4c07-b7c3-f0fec44a5032","type":"Microsoft.Authorization/roleAssignments","name":"7feac640-4864-4c07-b7c3-f0fec44a5032"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"161e0821-5f23-4360-84b5-f6531dfcad35","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:04:54.7328846Z","updatedOn":"2018-10-20T05:04:54.7328846Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/411c470b-03f6-499a-b5bf-32e5c8447641","type":"Microsoft.Authorization/roleAssignments","name":"411c470b-03f6-499a-b5bf-32e5c8447641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"182c8534-f413-487c-91a3-7addc80e35d5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:37:05.6480940Z","updatedOn":"2017-09-06T13:37:05.6480940Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0560ab5-dd8d-4978-8c9b-84768b4a9467","type":"Microsoft.Authorization/roleAssignments","name":"d0560ab5-dd8d-4978-8c9b-84768b4a9467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"18f53146-1f6c-462a-96a5-d50e1293b770","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-24T02:53:04.7484734Z","updatedOn":"2019-05-24T02:53:04.7484734Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553a3d02-d0da-4b7c-a0f1-d1298f556001","type":"Microsoft.Authorization/roleAssignments","name":"553a3d02-d0da-4b7c-a0f1-d1298f556001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-09T20:12:14.4602372Z","updatedOn":"2018-04-09T20:12:14.4602372Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d5397a6-f185-4b65-bcba-6b9f2248093a","type":"Microsoft.Authorization/roleAssignments","name":"8d5397a6-f185-4b65-bcba-6b9f2248093a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1ccb1196-3b40-438f-9be8-fd41c1b34ae1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-16T05:27:16.5640748Z","updatedOn":"2018-08-16T05:27:16.5640748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24c834d4-dba5-4aea-a42d-439588a23b0a","type":"Microsoft.Authorization/roleAssignments","name":"24c834d4-dba5-4aea-a42d-439588a23b0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1e3d4fff-f4da-4a1f-bd9d-659362b7c77f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:04:46.9757932Z","updatedOn":"2018-10-24T05:04:46.9757932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac6cb278-853b-4fa6-a5b8-d92f06e24d34","type":"Microsoft.Authorization/roleAssignments","name":"ac6cb278-853b-4fa6-a5b8-d92f06e24d34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:38:20.6583041Z","updatedOn":"2019-07-10T06:38:20.6583041Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce176826-2e72-450a-8179-fb2b7aefaa86","type":"Microsoft.Authorization/roleAssignments","name":"ce176826-2e72-450a-8179-fb2b7aefaa86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2262dfe7-375f-4597-a47c-2766489ecbe7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T17:54:39.3919633Z","updatedOn":"2019-06-14T17:54:39.3919633Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f58856e-c1e1-4269-9055-f9fbe4cb6506","type":"Microsoft.Authorization/roleAssignments","name":"3f58856e-c1e1-4269-9055-f9fbe4cb6506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"29727caa-21b0-4904-8f6c-565fd2457d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T16:24:04.8955454Z","updatedOn":"2018-10-02T16:24:04.8955454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3297254c-b10b-46df-a887-113a0c7c0b4c","type":"Microsoft.Authorization/roleAssignments","name":"3297254c-b10b-46df-a887-113a0c7c0b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"31e600e0-d7ce-4e98-a927-19bb30042e44","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-17T08:29:55.3047288Z","updatedOn":"2019-09-17T08:29:55.3047288Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3591e24-669e-475f-a315-7d581996b864","type":"Microsoft.Authorization/roleAssignments","name":"e3591e24-669e-475f-a315-7d581996b864"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3284e562-f7b4-469f-8dd3-81f0cd66daf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:47.3915367Z","updatedOn":"2018-10-09T05:05:47.3915367Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b99516e-ea97-4832-9628-5eed31f1d98f","type":"Microsoft.Authorization/roleAssignments","name":"4b99516e-ea97-4832-9628-5eed31f1d98f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32a9067d-11d1-4c29-a12f-4bb485b6b600","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:05:05.8842957Z","updatedOn":"2018-10-25T05:05:05.8842957Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd454990-a77f-4341-8493-a5137ac5f440","type":"Microsoft.Authorization/roleAssignments","name":"cd454990-a77f-4341-8493-a5137ac5f440"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-06T03:03:50.0740099Z","updatedOn":"2019-09-06T03:03:50.0740099Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/01c1fcc9-4df3-4107-832f-42f245309750","type":"Microsoft.Authorization/roleAssignments","name":"01c1fcc9-4df3-4107-832f-42f245309750"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"35945435-5b36-48ce-a0fa-9f6a487b6d43","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T20:28:25.6841347Z","updatedOn":"2018-09-11T20:28:25.6841347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e38d95ce-a050-41c5-967c-92f9a62531e2","type":"Microsoft.Authorization/roleAssignments","name":"e38d95ce-a050-41c5-967c-92f9a62531e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"378df7ee-31fd-4c54-945e-a1ed4f025a28","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-08-10T19:00:33.4173527Z","updatedOn":"2017-08-10T19:00:33.4173527Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8","type":"Microsoft.Authorization/roleAssignments","name":"e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:21:28.6870688Z","updatedOn":"2019-02-25T22:21:28.6870688Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/185a89d4-23f9-4fb8-827c-6d7f8e26c49d","type":"Microsoft.Authorization/roleAssignments","name":"185a89d4-23f9-4fb8-827c-6d7f8e26c49d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:10:39.6892748Z","updatedOn":"2019-02-25T22:10:39.6892748Z","createdBy":"f61d140c-100f-4802-a259-065b338ab67d","updatedBy":"f61d140c-100f-4802-a259-065b338ab67d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ec022f0-b25f-41c1-93d9-4905814a6687","type":"Microsoft.Authorization/roleAssignments","name":"1ec022f0-b25f-41c1-93d9-4905814a6687"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3c2dbb98-feac-4fb1-8472-bd5e4dbaa814","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:05:50.5110946Z","updatedOn":"2018-10-13T05:05:50.5110946Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a57185c-8716-406b-954a-f9a271f84a65","type":"Microsoft.Authorization/roleAssignments","name":"4a57185c-8716-406b-954a-f9a271f84a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"45c545d2-3beb-4122-99e4-1d5a9baf875a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:00:49.4836748Z","updatedOn":"2018-10-12T11:00:49.4836748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2ae6c29-28a7-436c-8100-92d9fbff21ff","type":"Microsoft.Authorization/roleAssignments","name":"f2ae6c29-28a7-436c-8100-92d9fbff21ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"4b12a28b-33df-4b89-87f2-600465f47640","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T17:44:04.4033814Z","updatedOn":"2018-09-12T17:44:04.4033814Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a456f69e-0744-403d-8dca-4fd4cd170cf3","type":"Microsoft.Authorization/roleAssignments","name":"a456f69e-0744-403d-8dca-4fd4cd170cf3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"51b966ff-5680-4e37-a80d-0d79694df747","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-21T05:08:22.9928772Z","updatedOn":"2018-08-21T05:08:22.9928772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13ec9de0-0071-4461-8ae8-33c9b780c3fd","type":"Microsoft.Authorization/roleAssignments","name":"13ec9de0-0071-4461-8ae8-33c9b780c3fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"56b6b563-1341-4632-96cd-06252b81665d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:50:50.2703536Z","updatedOn":"2019-09-05T08:50:50.2703536Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e17d3c8b-26f3-4cdd-bcc1-211c3e490299","type":"Microsoft.Authorization/roleAssignments","name":"e17d3c8b-26f3-4cdd-bcc1-211c3e490299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"579e0702-a6e2-4caf-bdc8-200024269591","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:31:18.5085521Z","updatedOn":"2017-09-06T13:31:18.5085521Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a707eb24-17dd-426b-8d2a-9b3751c754db","type":"Microsoft.Authorization/roleAssignments","name":"a707eb24-17dd-426b-8d2a-9b3751c754db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5804b4e6-f975-4c75-9b1e-f28b311a9cfc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-28T10:36:01.4354692Z","updatedOn":"2018-08-28T10:36:01.4354692Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed4cb227-0f99-40a3-bd00-270f35ca8d72","type":"Microsoft.Authorization/roleAssignments","name":"ed4cb227-0f99-40a3-bd00-270f35ca8d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"596c247a-9db0-4c20-8ddb-d944102067ac","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T08:06:17.3145960Z","updatedOn":"2019-10-25T08:06:17.3145960Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5383f6ae-0e25-43d5-a448-2fd0d2699d72","type":"Microsoft.Authorization/roleAssignments","name":"5383f6ae-0e25-43d5-a448-2fd0d2699d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5accae2a-f109-44ba-8549-8c682acd4ad1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-11-06T23:33:48.6032970Z","updatedOn":"2017-11-06T23:33:48.6032970Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b35dfe77-4bb3-4956-b644-16d58904b1bf","type":"Microsoft.Authorization/roleAssignments","name":"b35dfe77-4bb3-4956-b644-16d58904b1bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T07:01:28.9578744Z","updatedOn":"2019-10-25T07:01:28.9578744Z","createdBy":"dca37046-82cf-4fbb-8088-faa399010380","updatedBy":"dca37046-82cf-4fbb-8088-faa399010380"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af2f762c-68cf-468f-9315-c241b4f59550","type":"Microsoft.Authorization/roleAssignments","name":"af2f762c-68cf-468f-9315-c241b4f59550"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5c1fffb7-0203-410b-a0b4-a6538fe530d7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-29T09:28:50.5217613Z","updatedOn":"2019-08-29T09:28:50.5217613Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ac73035-da41-4fbb-97a7-54f9d33ca407","type":"Microsoft.Authorization/roleAssignments","name":"0ac73035-da41-4fbb-97a7-54f9d33ca407"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5e1534ec-1e3f-459f-bf72-739eee5030bd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:06:28.3611111Z","updatedOn":"2018-09-20T06:06:28.3611111Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9989f5d7-d06c-4804-a03a-ac7723776f0e","type":"Microsoft.Authorization/roleAssignments","name":"9989f5d7-d06c-4804-a03a-ac7723776f0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"63b3e92c-3ea7-4c27-b592-ca676a4e83f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-10-02T18:19:26.0915573Z","updatedOn":"2017-10-02T18:19:26.0915573Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef32bbaf-c67a-452a-9f2b-cef46652bc12","type":"Microsoft.Authorization/roleAssignments","name":"ef32bbaf-c67a-452a-9f2b-cef46652bc12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"669ef724-96ef-462e-b760-a398c8d49f12","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T00:01:10.8880293Z","updatedOn":"2018-10-16T00:01:10.8880293Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1fb698ad-cef0-442e-8fa0-c5c4609b12ec","type":"Microsoft.Authorization/roleAssignments","name":"1fb698ad-cef0-442e-8fa0-c5c4609b12ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"69c8d308-8964-4372-9771-e22fa1b1d02e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:08:13.2132002Z","updatedOn":"2018-10-19T05:08:13.2132002Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8","type":"Microsoft.Authorization/roleAssignments","name":"5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6ba8d12f-faf3-4859-918b-80f93e471e38","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T07:42:22.6383489Z","updatedOn":"2019-09-05T07:42:22.6383489Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b0df1c0-baf0-41ed-9560-6495d40dfa06","type":"Microsoft.Authorization/roleAssignments","name":"1b0df1c0-baf0-41ed-9560-6495d40dfa06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c3a43fa-d321-44e9-9fc5-ef8dcf2c1a5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T15:52:57.6857263Z","updatedOn":"2018-09-12T15:52:57.6857263Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bec9dbb-f348-447b-8618-8d4cb0249bdd","type":"Microsoft.Authorization/roleAssignments","name":"2bec9dbb-f348-447b-8618-8d4cb0249bdd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6e95a7c2-c99b-428b-a560-d5227ba9f2e7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-18T05:08:25.6259727Z","updatedOn":"2018-08-18T05:08:25.6259727Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/065b148b-bfa7-4706-9ddd-42c1c7611365","type":"Microsoft.Authorization/roleAssignments","name":"065b148b-bfa7-4706-9ddd-42c1c7611365"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-10T06:36:08.0241793Z","updatedOn":"2019-09-10T06:36:08.0241793Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b1e634-f9af-4434-bd13-55eb43a57124","type":"Microsoft.Authorization/roleAssignments","name":"10b1e634-f9af-4434-bd13-55eb43a57124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b29ef09-268a-44a7-b1f8-094beba68028","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-05T17:27:17.7281001Z","updatedOn":"2018-04-05T17:27:17.7281001Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5c8a26b-80ac-421d-a137-2951374bca62","type":"Microsoft.Authorization/roleAssignments","name":"a5c8a26b-80ac-421d-a137-2951374bca62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-23T08:57:03.4127112Z","updatedOn":"2019-10-23T08:57:03.4127112Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec55b030-cffa-46ab-a296-78f606400df8","type":"Microsoft.Authorization/roleAssignments","name":"ec55b030-cffa-46ab-a296-78f606400df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8a7fb7ba-b9bd-4113-9e9e-402a39e517e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T17:17:13.6083568Z","updatedOn":"2018-09-11T17:17:13.6083568Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea9a91c-b1be-4310-809a-48f423c76ad7","type":"Microsoft.Authorization/roleAssignments","name":"2ea9a91c-b1be-4310-809a-48f423c76ad7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ae38a78-a9b0-481e-b77d-a68dadb46fd3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-30T18:43:04.7284681Z","updatedOn":"2018-08-30T18:43:04.7284681Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77cd24a-5806-46ca-8093-a73055cc5f92","type":"Microsoft.Authorization/roleAssignments","name":"f77cd24a-5806-46ca-8093-a73055cc5f92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8c19637c-da26-4745-9ca5-d9a35a0bfa25","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-20T17:35:36.0710301Z","updatedOn":"2017-12-20T17:35:36.0710301Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec","type":"Microsoft.Authorization/roleAssignments","name":"2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ccf8c17-bef7-43c5-8788-592c7645ce24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-21T00:49:38.5584710Z","updatedOn":"2017-12-21T00:49:38.5584710Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27f8c6c4-442c-42a6-8fb2-e086108e4d14","type":"Microsoft.Authorization/roleAssignments","name":"27f8c6c4-442c-42a6-8fb2-e086108e4d14"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8cecb614-1133-40e4-969a-87586a03bda9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:05:58.6187581Z","updatedOn":"2018-10-06T05:05:58.6187581Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d20cf58b-2e31-4d34-9235-26cd30301a5b","type":"Microsoft.Authorization/roleAssignments","name":"d20cf58b-2e31-4d34-9235-26cd30301a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8d594fee-5764-49c9-ad85-35d3ee728386","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-23T09:22:57.7278029Z","updatedOn":"2019-10-23T09:22:57.7278029Z","createdBy":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d","updatedBy":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66da1b82-8f84-41cc-995f-867498db9ae3","type":"Microsoft.Authorization/roleAssignments","name":"66da1b82-8f84-41cc-995f-867498db9ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"906cbae0-394a-4011-b211-faad4800e871","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-24T05:30:47.9362826Z","updatedOn":"2018-08-24T05:30:47.9362826Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aac320ff-138c-4993-984e-49a0d404201d","type":"Microsoft.Authorization/roleAssignments","name":"aac320ff-138c-4993-984e-49a0d404201d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"93a01e49-673a-4e15-8230-51214a737962","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-07-05T21:56:39.5905773Z","updatedOn":"2017-07-05T21:56:39.5905773Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d09787d-0a89-40a8-abf2-a7b60e95d24b","type":"Microsoft.Authorization/roleAssignments","name":"8d09787d-0a89-40a8-abf2-a7b60e95d24b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"94090f94-bf94-4844-9b8d-58a6e40ed46a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:08:58.4289607Z","updatedOn":"2018-10-26T05:08:58.4289607Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b62b648-5069-4ef7-8d02-dc21d3a1207a","type":"Microsoft.Authorization/roleAssignments","name":"5b62b648-5069-4ef7-8d02-dc21d3a1207a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:47:24.5464704Z","updatedOn":"2019-07-10T06:47:24.5464704Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83b44361-6e27-4ed1-923c-b10ce84b3926","type":"Microsoft.Authorization/roleAssignments","name":"83b44361-6e27-4ed1-923c-b10ce84b3926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-21T06:37:44.9936263Z","updatedOn":"2019-10-21T06:37:44.9936263Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e96cad1-9fe5-49d6-b754-cbe33ce49882","type":"Microsoft.Authorization/roleAssignments","name":"7e96cad1-9fe5-49d6-b754-cbe33ce49882"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a08a53ed-ef7e-4ed8-b65c-522fdc1b2374","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:22:17.1891332Z","updatedOn":"2018-09-19T16:22:17.1891332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8dfe2756-45d2-4d09-a662-41c458276604","type":"Microsoft.Authorization/roleAssignments","name":"8dfe2756-45d2-4d09-a662-41c458276604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a35eaf1c-1e5e-4827-bd3c-9568fca01796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:05:37.7879353Z","updatedOn":"2018-10-04T05:05:37.7879353Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bce0209a-399a-452d-9a4b-0802ab28adc5","type":"Microsoft.Authorization/roleAssignments","name":"bce0209a-399a-452d-9a4b-0802ab28adc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a59de285-3f0a-46ae-99f6-ea4ece052936","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T18:28:06.2409628Z","updatedOn":"2018-10-24T18:28:06.2409628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7616165-7871-4b83-969e-d2248d191e46","type":"Microsoft.Authorization/roleAssignments","name":"f7616165-7871-4b83-969e-d2248d191e46"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a6634063-9a62-41b2-a356-d946b267e5d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-23T05:08:09.0286948Z","updatedOn":"2018-08-23T05:08:09.0286948Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96411a82-7e4e-4e8f-a613-e301212c599c","type":"Microsoft.Authorization/roleAssignments","name":"96411a82-7e4e-4e8f-a613-e301212c599c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"aa646ec7-f68f-47b9-a690-dab01146c7ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:04:53.6239739Z","updatedOn":"2018-09-28T05:04:53.6239739Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546e9e9b-36ab-49cc-9bb7-bb1b367ad709","type":"Microsoft.Authorization/roleAssignments","name":"546e9e9b-36ab-49cc-9bb7-bb1b367ad709"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-20T02:31:32.7276952Z","updatedOn":"2019-09-20T02:31:32.7276952Z","createdBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","updatedBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4bf29019-3c72-44c1-97d4-58ef4d1a540f","type":"Microsoft.Authorization/roleAssignments","name":"4bf29019-3c72-44c1-97d4-58ef4d1a540f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"acb349e8-a7d3-4de0-89eb-868e32beda95","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-17T05:08:24.2918591Z","updatedOn":"2018-08-17T05:08:24.2918591Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71e9d1ca-3fbf-4d71-be0a-e1229399307e","type":"Microsoft.Authorization/roleAssignments","name":"71e9d1ca-3fbf-4d71-be0a-e1229399307e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"af1b30dc-fd64-4f5f-903e-47a57eba1a80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:05:31.0681976Z","updatedOn":"2018-10-03T05:05:31.0681976Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c868cde1-62a8-4b80-9542-ec7619ce8ee3","type":"Microsoft.Authorization/roleAssignments","name":"c868cde1-62a8-4b80-9542-ec7619ce8ee3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bd7e15cb-f6ab-4689-8c95-a16eb65d5150","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-22T05:08:15.4020971Z","updatedOn":"2018-08-22T05:08:15.4020971Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b0257fa-35d4-49af-84d8-5ab134225c83","type":"Microsoft.Authorization/roleAssignments","name":"2b0257fa-35d4-49af-84d8-5ab134225c83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c0526f76-a841-4a3a-bdee-59a5db599e34","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:18:19.9314682Z","updatedOn":"2018-12-11T19:18:19.9314682Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9e73a14-4984-4d89-8048-04773fb32344","type":"Microsoft.Authorization/roleAssignments","name":"d9e73a14-4984-4d89-8048-04773fb32344"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c26d5d62-502f-4038-87ba-be7e06fdc48d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-14T23:52:33.4597689Z","updatedOn":"2018-09-14T23:52:33.4597689Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66dda4b3-83ee-475f-abf8-c17018f6b225","type":"Microsoft.Authorization/roleAssignments","name":"66dda4b3-83ee-475f-abf8-c17018f6b225"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c6ff72c7-bf47-4965-8d74-833ded8973e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-02T00:31:04.8992786Z","updatedOn":"2018-09-02T00:31:04.8992786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed223d03-7f9e-41dc-904e-c99e443fec12","type":"Microsoft.Authorization/roleAssignments","name":"ed223d03-7f9e-41dc-904e-c99e443fec12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cc88e548-5268-49a5-a636-3b679af9d7fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:03:14.2856838Z","updatedOn":"2018-09-24T18:03:14.2856838Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9211dfe4-8a51-460f-8e5c-67a3154b4a16","type":"Microsoft.Authorization/roleAssignments","name":"9211dfe4-8a51-460f-8e5c-67a3154b4a16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cdc7828e-c6c1-4822-9b0b-ca54f3d92bcd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-03-15T23:45:46.1042773Z","updatedOn":"2018-03-15T23:45:46.1042773Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d194606-3a10-428a-9ce5-876fec5096c8","type":"Microsoft.Authorization/roleAssignments","name":"8d194606-3a10-428a-9ce5-876fec5096c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ce1d5a28-054d-4c0c-bad7-3788a49bf027","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T06:05:39.3181497Z","updatedOn":"2018-09-12T06:05:39.3181497Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b53a7f81-21e0-4a02-83e0-c4df9dceaa35","type":"Microsoft.Authorization/roleAssignments","name":"b53a7f81-21e0-4a02-83e0-c4df9dceaa35"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d3fb01c3-9c71-40f3-b2ca-c01c6d7a9baf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T06:17:53.9509659Z","updatedOn":"2018-09-17T06:17:53.9509659Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/461bbf31-8922-4888-9e75-abe0a1e5ee7f","type":"Microsoft.Authorization/roleAssignments","name":"461bbf31-8922-4888-9e75-abe0a1e5ee7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d56f8fbf-4fea-469c-9961-360947218f36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-29T15:30:43.9337895Z","updatedOn":"2018-08-29T15:30:43.9337895Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18a1d15a-a9ab-4941-9699-c400381ef454","type":"Microsoft.Authorization/roleAssignments","name":"18a1d15a-a9ab-4941-9699-c400381ef454"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"da372d6e-f966-46ee-b548-bfcf63350393","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:05:14.4655087Z","updatedOn":"2018-10-30T05:05:14.4655087Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/320a4b57-3cf4-478d-a8f2-e59c9a599d40","type":"Microsoft.Authorization/roleAssignments","name":"320a4b57-3cf4-478d-a8f2-e59c9a599d40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"db16b0e9-c67e-4105-90c6-810afbce9084","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T16:58:36.9636386Z","updatedOn":"2018-10-04T16:58:36.9636386Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf1a8a06-71a6-437a-88e6-bb5bb689adad","type":"Microsoft.Authorization/roleAssignments","name":"bf1a8a06-71a6-437a-88e6-bb5bb689adad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e060d9c7-8657-4d9f-9e4b-85d0a360c659","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-25T08:36:39.1785990Z","updatedOn":"2018-08-25T08:36:39.1785990Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f19577a-ca06-4a84-8a96-949b82174f32","type":"Microsoft.Authorization/roleAssignments","name":"5f19577a-ca06-4a84-8a96-949b82174f32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e4a14b69-da4e-4a61-b203-3ff37178eb4f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:06:24.7312535Z","updatedOn":"2018-10-16T05:06:24.7312535Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd3afd64-f181-41e9-bd06-8bebb2e2605c","type":"Microsoft.Authorization/roleAssignments","name":"fd3afd64-f181-41e9-bd06-8bebb2e2605c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-10T02:54:02.2514605Z","updatedOn":"2019-11-10T02:54:02.2514605Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de186952-0e06-4557-89b5-31257c33093b","type":"Microsoft.Authorization/roleAssignments","name":"de186952-0e06-4557-89b5-31257c33093b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e91ebcca-b62e-4bb4-ba0c-9aa32dc5cbfa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T18:09:27.2790772Z","updatedOn":"2018-10-26T18:09:27.2790772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fd31d35-bb00-4c2f-ac5e-9de69969f983","type":"Microsoft.Authorization/roleAssignments","name":"6fd31d35-bb00-4c2f-ac5e-9de69969f983"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed033ff2-c3db-4334-991a-8d3b716cdca2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T17:26:52.4677561Z","updatedOn":"2018-09-13T17:26:52.4677561Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a83e5dc-031f-4e20-8f30-b72bf7324a5e","type":"Microsoft.Authorization/roleAssignments","name":"5a83e5dc-031f-4e20-8f30-b72bf7324a5e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed871f1c-f497-4a85-860b-5314fbe98e27","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-14T05:08:34.9142312Z","updatedOn":"2018-08-14T05:08:34.9142312Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92163bb4-4c29-41dc-b75d-345a79ba7e0c","type":"Microsoft.Authorization/roleAssignments","name":"92163bb4-4c29-41dc-b75d-345a79ba7e0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"edf0e9e6-4721-417b-afdd-435ea1468d45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:06:17.6579190Z","updatedOn":"2018-10-11T05:06:17.6579190Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fc19d9e-95a7-4b59-bba7-c443af619749","type":"Microsoft.Authorization/roleAssignments","name":"3fc19d9e-95a7-4b59-bba7-c443af619749"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f0f844e0-d2fe-4aa3-8e2c-2e429618f305","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T03:28:22.7145389Z","updatedOn":"2019-09-24T03:28:22.7145389Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b3fb1c-befa-4dfd-8fbc-9838444af841","type":"Microsoft.Authorization/roleAssignments","name":"16b3fb1c-befa-4dfd-8fbc-9838444af841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f20c3436-e85f-4bf4-8775-9e46198564fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:05:24.1394548Z","updatedOn":"2018-10-23T05:05:24.1394548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a7783e-8fda-4715-8b08-36e399759834","type":"Microsoft.Authorization/roleAssignments","name":"91a7783e-8fda-4715-8b08-36e399759834"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f39b55e5-bd57-467c-bec9-42106f706d81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-31T21:42:06.9365791Z","updatedOn":"2018-08-31T21:42:06.9365791Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70a98d83-6caf-419a-b878-21d8ffe7a7eb","type":"Microsoft.Authorization/roleAssignments","name":"70a98d83-6caf-419a-b878-21d8ffe7a7eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f43f0615-bc95-4608-9ce9-34c2078e65a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:05:27.4406656Z","updatedOn":"2018-10-27T05:05:27.4406656Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07022e19-7251-4676-9365-3a5776f6db20","type":"Microsoft.Authorization/roleAssignments","name":"07022e19-7251-4676-9365-3a5776f6db20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T22:40:18.7672464Z","updatedOn":"2019-02-22T22:40:18.7672464Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1c96429-92c5-4d05-8003-e40b49483450","type":"Microsoft.Authorization/roleAssignments","name":"c1c96429-92c5-4d05-8003-e40b49483450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ffbb9ca1-43fc-498d-b8db-ca965f1684ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-18T23:20:41.1586895Z","updatedOn":"2017-12-18T23:20:41.1586895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e012250-6450-4432-b6dd-9e148ab64455","type":"Microsoft.Authorization/roleAssignments","name":"7e012250-6450-4432-b6dd-9e148ab64455"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/abec5297-d72c-4fbc-acaf-868482d345c2","principalId":"7a938a30-4226-420e-996f-4d48bca6d537","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-06-14T22:25:43.4944951Z","updatedOn":"2018-06-14T22:25:43.4944951Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3662714-8332-43d4-a2cf-836f9367c53d","type":"Microsoft.Authorization/roleAssignments","name":"a3662714-8332-43d4-a2cf-836f9367c53d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ec2fe215-4683-4df8-a738-83622f70819a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-05-23T20:36:37.8343857Z","updatedOn":"2018-05-23T20:36:37.8343857Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72d7967-c1bc-4510-9b4d-2efc272ad268","type":"Microsoft.Authorization/roleAssignments","name":"e72d7967-c1bc-4510-9b4d-2efc272ad268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00215dd3-8494-4737-8f44-47c950eee2a8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:15:56.7087145Z","updatedOn":"2019-05-14T05:15:56.7087145Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4290ea7b-9cca-414f-9f0d-eeb931cc9e40","type":"Microsoft.Authorization/roleAssignments","name":"4290ea7b-9cca-414f-9f0d-eeb931cc9e40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00b3fb8d-18f2-4cbb-9e33-ba8c247cd4d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T06:59:50.0920118Z","updatedOn":"2019-06-11T06:59:50.0920118Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e577045-4db2-49a7-a1f4-c94cb76d519c","type":"Microsoft.Authorization/roleAssignments","name":"1e577045-4db2-49a7-a1f4-c94cb76d519c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-28T02:17:47.3517737Z","updatedOn":"2019-10-28T02:17:47.3517737Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa59db41-bdc7-4934-9105-138c49aa3b25","type":"Microsoft.Authorization/roleAssignments","name":"fa59db41-bdc7-4934-9105-138c49aa3b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"014d30f5-2583-47dd-8b9a-be54a0b61c5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T03:39:35.1972368Z","updatedOn":"2019-03-08T03:39:35.1972368Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/962ad9d2-a9b8-4bd8-aead-8ad0effc0e19","type":"Microsoft.Authorization/roleAssignments","name":"962ad9d2-a9b8-4bd8-aead-8ad0effc0e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"025742e3-96b0-462b-92b8-c6f8a2467315","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:30:48.9213321Z","updatedOn":"2019-11-13T02:30:48.9213321Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e56fee5-34b2-4fda-94f5-4d16d0f316c9","type":"Microsoft.Authorization/roleAssignments","name":"8e56fee5-34b2-4fda-94f5-4d16d0f316c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0444ccf8-fddb-43c4-b42b-ea036211229f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T09:31:46.3880250Z","updatedOn":"2019-09-18T09:31:46.3880250Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e0e4be-da1c-4e63-8872-b2486e10fbaf","type":"Microsoft.Authorization/roleAssignments","name":"e7e0e4be-da1c-4e63-8872-b2486e10fbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"048c9bb6-913e-4ce6-99c5-35198246627b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T08:20:44.1467077Z","updatedOn":"2019-11-13T08:20:44.1467077Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee9a0273-478f-49c1-ab8b-c391f00ab24a","type":"Microsoft.Authorization/roleAssignments","name":"ee9a0273-478f-49c1-ab8b-c391f00ab24a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0519023a-68c7-467d-b06f-0d176fe7bf75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:15:15.6703869Z","updatedOn":"2019-05-03T05:15:15.6703869Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09d2a2b1-20ad-487c-98d0-e8335da536ca","type":"Microsoft.Authorization/roleAssignments","name":"09d2a2b1-20ad-487c-98d0-e8335da536ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0554b26b-97b8-4712-9428-96421f407817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-19T15:36:11.6893582Z","updatedOn":"2018-11-19T15:36:11.6893582Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd54ee13-f8bf-43ad-9ece-aadba49c6b3b","type":"Microsoft.Authorization/roleAssignments","name":"dd54ee13-f8bf-43ad-9ece-aadba49c6b3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T02:20:33.6180302Z","updatedOn":"2019-09-16T02:20:33.6180302Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd290ec1-928e-4be9-bf1a-5444db3c31a9","type":"Microsoft.Authorization/roleAssignments","name":"dd290ec1-928e-4be9-bf1a-5444db3c31a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05ec9ed3-1818-4d82-a393-9d886fe79eaf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:24:35.7005768Z","updatedOn":"2019-06-25T16:24:35.7005768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0438abe-75ec-4450-b99b-792ed9bb8ee0","type":"Microsoft.Authorization/roleAssignments","name":"a0438abe-75ec-4450-b99b-792ed9bb8ee0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"082034cd-624e-4652-99c9-89c02073cb54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T18:09:40.0546999Z","updatedOn":"2018-11-07T18:09:40.0546999Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5d7ff7-5a55-40b7-a547-d12bef073d24","type":"Microsoft.Authorization/roleAssignments","name":"aa5d7ff7-5a55-40b7-a547-d12bef073d24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"083e3bf5-90ee-44f9-a4ed-b43b6618cb68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:15:53.2923661Z","updatedOn":"2019-03-26T06:15:53.2923661Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22","type":"Microsoft.Authorization/roleAssignments","name":"b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"089feb4f-11a7-4088-a245-5d53edc49e2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T06:32:24.0038227Z","updatedOn":"2019-04-23T06:32:24.0038227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa131111-4125-4a5e-a8b6-a3165c319ce3","type":"Microsoft.Authorization/roleAssignments","name":"fa131111-4125-4a5e-a8b6-a3165c319ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0922515c-5011-41d9-85b8-468065dfe845","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T20:44:15.0368153Z","updatedOn":"2018-12-04T20:44:15.0368153Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c85da1d-a166-40d2-9118-4fe1c97f1ee6","type":"Microsoft.Authorization/roleAssignments","name":"8c85da1d-a166-40d2-9118-4fe1c97f1ee6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0936f825-b7a8-4d97-a53d-3b84d28a717e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T06:52:59.0134229Z","updatedOn":"2019-01-26T06:52:59.0134229Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e579b98e-87ba-42a4-9381-bca57eea911a","type":"Microsoft.Authorization/roleAssignments","name":"e579b98e-87ba-42a4-9381-bca57eea911a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"09bd05c8-0213-4c42-8943-172a8a17bb29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-28T06:49:07.4810461Z","updatedOn":"2018-12-28T06:49:07.4810461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1eea0837-88da-41fc-984c-b62f9c3c96d5","type":"Microsoft.Authorization/roleAssignments","name":"1eea0837-88da-41fc-984c-b62f9c3c96d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0907d8-b8f5-49dd-879a-ae1ccf72ee66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:48.6805573Z","updatedOn":"2018-10-09T05:36:48.6805573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/596f6422-88be-4a26-8449-cde19fc7139c","type":"Microsoft.Authorization/roleAssignments","name":"596f6422-88be-4a26-8449-cde19fc7139c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0e41c1-6cce-4da0-b2ef-6679d4b2adbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T23:41:56.1488980Z","updatedOn":"2018-09-25T23:41:56.1488980Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/995d178b-fe6d-4023-beec-7d86273d8258","type":"Microsoft.Authorization/roleAssignments","name":"995d178b-fe6d-4023-beec-7d86273d8258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0afa0fbe-4c34-49c6-94dc-2d25dde67804","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:48.4721330Z","updatedOn":"2019-04-16T06:34:48.4721330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cd81e06-c4a3-4186-92de-ce5dd9b02afc","type":"Microsoft.Authorization/roleAssignments","name":"4cd81e06-c4a3-4186-92de-ce5dd9b02afc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b122118-f5f2-4361-9540-75b2d16a6812","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T09:39:39.0217645Z","updatedOn":"2018-10-25T09:39:39.0217645Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6e564e9-62c4-48fa-94d1-f441bee3a600","type":"Microsoft.Authorization/roleAssignments","name":"f6e564e9-62c4-48fa-94d1-f441bee3a600"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b3f6114-fd2a-4b44-a718-e77c93313257","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T14:44:40.1474788Z","updatedOn":"2018-10-25T14:44:40.1474788Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22","type":"Microsoft.Authorization/roleAssignments","name":"78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b9debbf-74a2-4090-9e79-6f814c15c64f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T23:58:24.6590895Z","updatedOn":"2019-02-13T23:58:24.6590895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84210bda-8759-422b-b6ea-f95ba2a645cc","type":"Microsoft.Authorization/roleAssignments","name":"84210bda-8759-422b-b6ea-f95ba2a645cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0bc92e19-4e38-4150-80a3-c1e35927bdc1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T22:07:33.4526393Z","updatedOn":"2019-01-15T22:07:33.4526393Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5de283f2-6ed5-4e96-ab11-01da6b1030aa","type":"Microsoft.Authorization/roleAssignments","name":"5de283f2-6ed5-4e96-ab11-01da6b1030aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0befbead-6896-4f0f-ba06-727614a1d97e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T07:10:06.6112474Z","updatedOn":"2019-03-08T07:10:06.6112474Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553bec8e-319e-4a9a-91d6-434dfebe29bd","type":"Microsoft.Authorization/roleAssignments","name":"553bec8e-319e-4a9a-91d6-434dfebe29bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c1179ed-8b91-4a8f-b33d-30a78d4167b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:12:28.4643523Z","updatedOn":"2019-11-13T02:12:28.4643523Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e812069f-df2d-451a-bdc1-a73986bf8ff1","type":"Microsoft.Authorization/roleAssignments","name":"e812069f-df2d-451a-bdc1-a73986bf8ff1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c4c5914-127b-43c8-9185-be30ce8e97c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T14:47:52.4435973Z","updatedOn":"2018-09-27T14:47:52.4435973Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71a48867-ce43-4ff6-96f4-aac8c877c9f8","type":"Microsoft.Authorization/roleAssignments","name":"71a48867-ce43-4ff6-96f4-aac8c877c9f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c69d6a8-a1dc-4a34-8478-6aa7882a0f72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-15T06:10:54.7835545Z","updatedOn":"2019-03-15T06:10:54.7835545Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41260fbb-df80-43a1-aee0-f17d06596e19","type":"Microsoft.Authorization/roleAssignments","name":"41260fbb-df80-43a1-aee0-f17d06596e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c86c04d-4ab1-4af4-bc25-26fc5a73ab13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:42:04.8339359Z","updatedOn":"2018-10-19T15:42:04.8339359Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/111e9485-5c6f-40ee-b51b-b077e04b3f43","type":"Microsoft.Authorization/roleAssignments","name":"111e9485-5c6f-40ee-b51b-b077e04b3f43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0e5f94cd-941e-416f-bf5c-febf94928fdf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-17T20:20:24.5305703Z","updatedOn":"2018-12-17T20:20:24.5305703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9508c28-eb00-4a51-a224-34c36b527578","type":"Microsoft.Authorization/roleAssignments","name":"c9508c28-eb00-4a51-a224-34c36b527578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ea19d04-ed36-495e-b2f6-b514e2b68c33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T02:55:23.4287364Z","updatedOn":"2019-09-24T02:55:23.4287364Z","createdBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","updatedBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46308c2b-e860-4520-a289-b939b4a6080a","type":"Microsoft.Authorization/roleAssignments","name":"46308c2b-e860-4520-a289-b939b4a6080a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ef728c4-2201-4dad-932d-eefd44bc73b5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T09:49:11.3765450Z","updatedOn":"2018-10-26T09:49:11.3765450Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd","type":"Microsoft.Authorization/roleAssignments","name":"9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0f35f90d-6817-47cf-be1a-450afde5a251","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:44:57.7197480Z","updatedOn":"2019-06-08T05:44:57.7197480Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3755957-a5fa-4fa3-9866-99fffb77a6c7","type":"Microsoft.Authorization/roleAssignments","name":"a3755957-a5fa-4fa3-9866-99fffb77a6c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0fb0872a-13ac-40dc-92c0-bb65030b9141","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T15:42:18.7189325Z","updatedOn":"2018-11-16T15:42:18.7189325Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1acbce5d-ee4a-4792-9c13-77d2aefa7348","type":"Microsoft.Authorization/roleAssignments","name":"1acbce5d-ee4a-4792-9c13-77d2aefa7348"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ff295c0-7d9f-4b57-9465-f2f1521f616c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:22:36.7477043Z","updatedOn":"2018-10-10T22:22:36.7477043Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8877b05-2800-4d27-a180-d530688c1aaa","type":"Microsoft.Authorization/roleAssignments","name":"b8877b05-2800-4d27-a180-d530688c1aaa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"105237f3-66df-4225-b4f9-1731ba11259c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:48:36.7329197Z","updatedOn":"2018-10-03T21:48:36.7329197Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f73f30ed-04d2-4a53-81c9-47e71e5d0043","type":"Microsoft.Authorization/roleAssignments","name":"f73f30ed-04d2-4a53-81c9-47e71e5d0043"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10964e06-b1ac-4854-9a34-8fa11945d7e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-09T05:44:51.8581373Z","updatedOn":"2019-07-09T05:44:51.8581373Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed","type":"Microsoft.Authorization/roleAssignments","name":"84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10b044e7-d033-433b-8b4c-d8e9594f3c64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T21:30:39.3815031Z","updatedOn":"2019-04-30T21:30:39.3815031Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a50c952f-b47b-4f35-8763-b5aec9bd9ddb","type":"Microsoft.Authorization/roleAssignments","name":"a50c952f-b47b-4f35-8763-b5aec9bd9ddb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10db8d1f-13e4-4187-947d-8a0fc82eff94","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:24:36.7007006Z","updatedOn":"2018-10-10T22:24:36.7007006Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc","type":"Microsoft.Authorization/roleAssignments","name":"a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11952da9-440f-4270-9c72-9d5574be74a5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-19T06:51:54.9706907Z","updatedOn":"2019-01-19T06:51:54.9706907Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72048bb-0fa1-4058-bc2c-284a58e49ced","type":"Microsoft.Authorization/roleAssignments","name":"e72048bb-0fa1-4058-bc2c-284a58e49ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11c04de5-9b6f-4dc1-b382-77bac04d39c8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T06:47:36.2010728Z","updatedOn":"2019-05-29T06:47:36.2010728Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5274cb84-e8c2-4347-9f09-634cd5fb3744","type":"Microsoft.Authorization/roleAssignments","name":"5274cb84-e8c2-4347-9f09-634cd5fb3744"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12365830-cd40-4ae5-af8b-6309b4913a79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-15T07:05:30.8525898Z","updatedOn":"2019-02-15T07:05:30.8525898Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58db4ac3-cdfc-4491-9c08-46c8ee760700","type":"Microsoft.Authorization/roleAssignments","name":"58db4ac3-cdfc-4491-9c08-46c8ee760700"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12fdbdff-fee2-48de-a24d-b61e714438fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T06:51:04.6126539Z","updatedOn":"2018-11-21T06:51:04.6126539Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/202127bd-4575-41ac-b631-cda1cad5957d","type":"Microsoft.Authorization/roleAssignments","name":"202127bd-4575-41ac-b631-cda1cad5957d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"132b2863-4901-46dd-b050-23adf8a91212","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:20:59.4891986Z","updatedOn":"2019-06-28T05:20:59.4891986Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d78d8a0-b367-4b89-a0c9-f00dd91e04c1","type":"Microsoft.Authorization/roleAssignments","name":"9d78d8a0-b367-4b89-a0c9-f00dd91e04c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13733798-367b-41b4-ab70-c009ff810e61","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T06:56:16.0921597Z","updatedOn":"2019-01-31T06:56:16.0921597Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/87a1251f-b871-47ac-8903-992d3d12ab6d","type":"Microsoft.Authorization/roleAssignments","name":"87a1251f-b871-47ac-8903-992d3d12ab6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13dfd152-b3ee-45c7-ac21-a6d4bd9b1efe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-02T12:08:16.4864386Z","updatedOn":"2019-09-02T12:08:16.4864386Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4eacac3-0b1e-4a00-a813-57c1949d9339","type":"Microsoft.Authorization/roleAssignments","name":"d4eacac3-0b1e-4a00-a813-57c1949d9339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1406c023-f820-4b11-929d-240f81640bba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:35:49.8406728Z","updatedOn":"2019-02-22T07:35:49.8406728Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/850d6247-205a-4d7a-b88e-686aeb9e3419","type":"Microsoft.Authorization/roleAssignments","name":"850d6247-205a-4d7a-b88e-686aeb9e3419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1429ff6d-6811-4368-80b2-3d05bacfee79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T20:40:54.4009379Z","updatedOn":"2018-10-01T20:40:54.4009379Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cef91439-7637-4db6-b7b5-4d9dcda73ef7","type":"Microsoft.Authorization/roleAssignments","name":"cef91439-7637-4db6-b7b5-4d9dcda73ef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1496f758-36e1-4306-8f42-07d6f7fea1b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T06:51:44.8128708Z","updatedOn":"2018-11-23T06:51:44.8128708Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e9cddb-50c4-4663-9270-4b51557c66cb","type":"Microsoft.Authorization/roleAssignments","name":"a7e9cddb-50c4-4663-9270-4b51557c66cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"14e01ed5-dbac-4c5e-9136-8f26201570fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T15:44:08.6308346Z","updatedOn":"2018-11-08T15:44:08.6308346Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bd09a95-0f01-4e0d-979b-19a21c975a64","type":"Microsoft.Authorization/roleAssignments","name":"9bd09a95-0f01-4e0d-979b-19a21c975a64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"15e130d0-e547-439f-9ef4-700c15a51573","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:37:00.4858523Z","updatedOn":"2019-05-08T05:37:00.4858523Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ba1d251-96e3-4260-9941-9706f5bb9209","type":"Microsoft.Authorization/roleAssignments","name":"3ba1d251-96e3-4260-9941-9706f5bb9209"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"161342b0-aaa8-4694-924a-7ce80d2edb0d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:39:21.7984582Z","updatedOn":"2018-10-30T05:39:21.7984582Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67438a31-fcf6-441b-a316-4b059172e915","type":"Microsoft.Authorization/roleAssignments","name":"67438a31-fcf6-441b-a316-4b059172e915"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"16253a8a-cc24-475a-a5cf-e58491ffd350","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-30T10:22:53.8662664Z","updatedOn":"2019-10-30T10:22:53.8662664Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d7cca1c-37d2-492a-92ed-c9ae8323e2e2","type":"Microsoft.Authorization/roleAssignments","name":"0d7cca1c-37d2-492a-92ed-c9ae8323e2e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1676df9a-840e-41ae-bc0b-38d2a8028d7f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T06:55:15.7039662Z","updatedOn":"2019-02-02T06:55:15.7039662Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9d8f79-e7c9-4fe3-a114-a018a1fc3981","type":"Microsoft.Authorization/roleAssignments","name":"8d9d8f79-e7c9-4fe3-a114-a018a1fc3981"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a05e539-d61f-41be-859f-cfc5a604dd73","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-24T06:47:05.5194949Z","updatedOn":"2018-11-24T06:47:05.5194949Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2703a80d-0221-439f-b05e-01452ebd9982","type":"Microsoft.Authorization/roleAssignments","name":"2703a80d-0221-439f-b05e-01452ebd9982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a45b438-0323-4014-8929-8a4354cd86a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T00:13:54.9085305Z","updatedOn":"2018-09-20T00:13:54.9085305Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2efee97-c97c-4ed9-8f19-c2abf9bcc43e","type":"Microsoft.Authorization/roleAssignments","name":"e2efee97-c97c-4ed9-8f19-c2abf9bcc43e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1b5b3fa8-044d-475b-b238-ff5d2e19d77d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:59.4405634Z","updatedOn":"2018-10-09T05:36:59.4405634Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa37954d-99ea-435f-8d0e-561e9219beb6","type":"Microsoft.Authorization/roleAssignments","name":"aa37954d-99ea-435f-8d0e-561e9219beb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bc3132e-956b-4c49-adb5-54a388d07f98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T22:14:51.1000243Z","updatedOn":"2018-11-07T22:14:51.1000243Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3cab2d-8962-4a13-b473-fb50f33e47e7","type":"Microsoft.Authorization/roleAssignments","name":"2f3cab2d-8962-4a13-b473-fb50f33e47e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bce50d7-8e1e-41e3-97c9-5f0b5894be30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T09:46:00.8241958Z","updatedOn":"2018-11-02T09:46:00.8241958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70d95d36-d655-4e5d-b7c0-bd415764adbe","type":"Microsoft.Authorization/roleAssignments","name":"70d95d36-d655-4e5d-b7c0-bd415764adbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1c8ad9bd-21f3-4db6-b5e8-5fc1cb245796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T06:50:15.2358847Z","updatedOn":"2019-01-17T06:50:15.2358847Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3edb2abd-0bf8-49bb-9a01-47175035134e","type":"Microsoft.Authorization/roleAssignments","name":"3edb2abd-0bf8-49bb-9a01-47175035134e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1df69032-e361-4aec-9a6a-b11a1b520a0a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T06:47:43.5953324Z","updatedOn":"2019-05-30T06:47:43.5953324Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e40d233-f94a-4647-896e-1173156f8370","type":"Microsoft.Authorization/roleAssignments","name":"8e40d233-f94a-4647-896e-1173156f8370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f0529f4-caec-4e5e-9929-9accf07bc0a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T10:50:33.5684193Z","updatedOn":"2019-02-01T10:50:33.5684193Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e186033-3989-485f-83f3-5643307712d3","type":"Microsoft.Authorization/roleAssignments","name":"4e186033-3989-485f-83f3-5643307712d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f58bd4e-34b0-4b3f-8c6d-5a74d861b553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-27T07:09:51.7579083Z","updatedOn":"2019-09-27T07:09:51.7579083Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f349b785-162e-44b0-9bcc-6f32f4657471","type":"Microsoft.Authorization/roleAssignments","name":"f349b785-162e-44b0-9bcc-6f32f4657471"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f9960dc-ed2d-41c8-bc4c-753fb935c5bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:19:46.7691877Z","updatedOn":"2019-04-14T03:19:46.7691877Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e380dbd1-135b-4e5d-b8fd-1067fc314a53","type":"Microsoft.Authorization/roleAssignments","name":"e380dbd1-135b-4e5d-b8fd-1067fc314a53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fa11459-9edc-4b12-95b7-4af1db729fea","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T14:44:54.8928622Z","updatedOn":"2018-11-01T14:44:54.8928622Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea2feead-bf18-4cd0-9fb3-baa3e89c9147","type":"Microsoft.Authorization/roleAssignments","name":"ea2feead-bf18-4cd0-9fb3-baa3e89c9147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fe73bbc-d3e6-4149-a45b-71a7c64455d3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T09:45:15.4346754Z","updatedOn":"2018-11-01T09:45:15.4346754Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe17d25c-de8b-413b-940a-9b0eabe9fd7a","type":"Microsoft.Authorization/roleAssignments","name":"fe17d25c-de8b-413b-940a-9b0eabe9fd7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20a81344-97e8-4380-9232-ff5e2e2357dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:47.7973245Z","updatedOn":"2019-03-27T06:15:47.7973245Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee311f1d-948d-48c8-945a-daaa6c9c2bb6","type":"Microsoft.Authorization/roleAssignments","name":"ee311f1d-948d-48c8-945a-daaa6c9c2bb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20c3d19c-869b-4df3-a560-27bb3ec27259","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T06:51:17.1809226Z","updatedOn":"2019-06-18T06:51:17.1809226Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ebc369-e5bc-4696-a291-45b0d3c655db","type":"Microsoft.Authorization/roleAssignments","name":"c0ebc369-e5bc-4696-a291-45b0d3c655db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"22bb981f-2225-42a6-a92c-1513b98d1059","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:34:47.1182652Z","updatedOn":"2019-04-18T05:34:47.1182652Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/949f32b9-9a90-44da-9893-a626cbf255fe","type":"Microsoft.Authorization/roleAssignments","name":"949f32b9-9a90-44da-9893-a626cbf255fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2424df05-e09e-4b50-a144-34a5a7356356","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:15:24.8105554Z","updatedOn":"2019-04-26T05:15:24.8105554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96e1c119-4f12-4238-9f77-95a10ddf49ab","type":"Microsoft.Authorization/roleAssignments","name":"96e1c119-4f12-4238-9f77-95a10ddf49ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"24f54edc-4e4f-4a9a-bd65-6e946262fcc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T14:44:06.2164283Z","updatedOn":"2018-10-11T14:44:06.2164283Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/accd1466-cc34-4a91-8129-5504a5c66394","type":"Microsoft.Authorization/roleAssignments","name":"accd1466-cc34-4a91-8129-5504a5c66394"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25ac2b10-acd3-40aa-a872-88f1e9c4013b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T06:51:47.7700347Z","updatedOn":"2019-05-23T06:51:47.7700347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc","type":"Microsoft.Authorization/roleAssignments","name":"0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25c0b9c6-6039-435e-92a1-96f41e1d3b90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-12T14:54:16.0607354Z","updatedOn":"2019-03-12T14:54:16.0607354Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47a17234-3ed6-4788-b98b-ad99b024ad95","type":"Microsoft.Authorization/roleAssignments","name":"47a17234-3ed6-4788-b98b-ad99b024ad95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2652f837-f3c8-4378-b3e0-1407a1791c82","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T03:52:13.2726368Z","updatedOn":"2019-04-16T03:52:13.2726368Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ece4429e-5ad9-448b-89a6-55a6cb913269","type":"Microsoft.Authorization/roleAssignments","name":"ece4429e-5ad9-448b-89a6-55a6cb913269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"266f54be-0172-4b9c-ac7d-379382f47c68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T06:38:37.1824443Z","updatedOn":"2019-04-25T06:38:37.1824443Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ebbed54-2afd-4492-8113-79a5980bf1b7","type":"Microsoft.Authorization/roleAssignments","name":"8ebbed54-2afd-4492-8113-79a5980bf1b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2770540c-e142-49e7-927b-0a183c15b6da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:19:41.8631372Z","updatedOn":"2019-06-15T05:19:41.8631372Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/144279f9-5b67-48fb-a41a-a32f8f8f5db3","type":"Microsoft.Authorization/roleAssignments","name":"144279f9-5b67-48fb-a41a-a32f8f8f5db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"277f496f-1909-47b3-92ac-ec0fa7fb0177","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T06:44:59.1181039Z","updatedOn":"2019-05-28T06:44:59.1181039Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e29e35de-78d0-463d-83fd-5e0cf612ae81","type":"Microsoft.Authorization/roleAssignments","name":"e29e35de-78d0-463d-83fd-5e0cf612ae81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"27918e9c-70d2-41c6-bea4-d45e31bd2355","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:13:46.5798573Z","updatedOn":"2019-05-01T05:13:46.5798573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7c5d200-df84-4d35-a2f8-ccaf2a94a901","type":"Microsoft.Authorization/roleAssignments","name":"f7c5d200-df84-4d35-a2f8-ccaf2a94a901"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"287b9939-6a03-4276-966e-67035119e274","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-24T02:35:38.9762249Z","updatedOn":"2019-01-24T02:35:38.9762249Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83a13d3-1cfa-42b7-8f89-ae22d697ff0c","type":"Microsoft.Authorization/roleAssignments","name":"f83a13d3-1cfa-42b7-8f89-ae22d697ff0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"28bd66fd-85b2-4749-b439-006c9af1eff0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:15.2613209Z","updatedOn":"2018-10-09T05:05:15.2613209Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f398525-2cf3-41a3-a231-21f536d8d5ec","type":"Microsoft.Authorization/roleAssignments","name":"5f398525-2cf3-41a3-a231-21f536d8d5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"291b97eb-bdeb-4766-9cc0-9dbd56c450e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T07:14:13.3960092Z","updatedOn":"2019-02-23T07:14:13.3960092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1fc00bb-0243-4a81-a4a5-e099865ac6c8","type":"Microsoft.Authorization/roleAssignments","name":"a1fc00bb-0243-4a81-a4a5-e099865ac6c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"296501a5-a8b4-48c6-a06a-b6fde003a842","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:25:37.5138128Z","updatedOn":"2018-10-10T00:25:37.5138128Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3","type":"Microsoft.Authorization/roleAssignments","name":"2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2985330b-5538-47fe-867d-ef5c1b595ab5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:25:06.6333933Z","updatedOn":"2018-09-20T17:25:06.6333933Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/316cac7f-8452-41cc-b0e9-45b2c93f773d","type":"Microsoft.Authorization/roleAssignments","name":"316cac7f-8452-41cc-b0e9-45b2c93f773d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"29bd6401-5338-48bb-b82e-e9558cf486a2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:53.1283425Z","updatedOn":"2018-09-18T23:57:53.1283425Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe329617-f460-452b-beb6-3ec18aa08cd2","type":"Microsoft.Authorization/roleAssignments","name":"fe329617-f460-452b-beb6-3ec18aa08cd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2af0eee9-ba06-49d3-97da-6bd84f58c56b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T07:10:43.0213604Z","updatedOn":"2019-03-02T07:10:43.0213604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d40084c9-04e2-4966-9c08-3610f52ccc93","type":"Microsoft.Authorization/roleAssignments","name":"d40084c9-04e2-4966-9c08-3610f52ccc93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2c9a405a-6caf-4f3a-84f4-45dc7278ab53","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T05:12:22.6640626Z","updatedOn":"2019-04-17T05:12:22.6640626Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ccd833f-6576-4f24-8eb3-e36f2beacce2","type":"Microsoft.Authorization/roleAssignments","name":"6ccd833f-6576-4f24-8eb3-e36f2beacce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2cc30feb-0381-495e-a3e2-616ec5a1338d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:05.0223475Z","updatedOn":"2019-01-29T06:54:05.0223475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/243af6a8-ded0-4272-8bc0-8b4cc4e4e316","type":"Microsoft.Authorization/roleAssignments","name":"243af6a8-ded0-4272-8bc0-8b4cc4e4e316"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2ce42326-7862-4ee8-9db9-ce61f53d0509","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:39:38.6430404Z","updatedOn":"2019-05-03T05:39:38.6430404Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23df7e2b-55d2-41c7-8cce-a96c52e0d727","type":"Microsoft.Authorization/roleAssignments","name":"23df7e2b-55d2-41c7-8cce-a96c52e0d727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2dfd7675-8cec-449b-9cf5-8fb60462dcd7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T05:48:13.8023619Z","updatedOn":"2018-11-02T05:48:13.8023619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19730b6-b7db-43b1-acd6-25cd8bddde5a","type":"Microsoft.Authorization/roleAssignments","name":"b19730b6-b7db-43b1-acd6-25cd8bddde5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2e9d1611-5835-4eb2-843c-9957f451add4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T06:54:04.4629279Z","updatedOn":"2019-06-13T06:54:04.4629279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfbffec9-f53c-4234-9d90-4bde2bbd6375","type":"Microsoft.Authorization/roleAssignments","name":"cfbffec9-f53c-4234-9d90-4bde2bbd6375"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2f1fe7a4-cdda-4979-97ee-e1dc465c7487","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:32:12.4728749Z","updatedOn":"2018-10-10T00:32:12.4728749Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc7696b7-44c3-4a32-baa8-d22bf85e925f","type":"Microsoft.Authorization/roleAssignments","name":"bc7696b7-44c3-4a32-baa8-d22bf85e925f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2fdb0e9e-cf35-46d1-a84d-5872a774aeaa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-04T05:42:27.0197067Z","updatedOn":"2019-07-04T05:42:27.0197067Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf219e4-1fd6-414c-8d02-c632cd7e1dd6","type":"Microsoft.Authorization/roleAssignments","name":"fbf219e4-1fd6-414c-8d02-c632cd7e1dd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"302f2c06-6203-4115-9781-0dfb57c3ab33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-03T05:50:02.4338421Z","updatedOn":"2019-07-03T05:50:02.4338421Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0bdf9b6-1518-4a4e-a8d8-ae18995872a9","type":"Microsoft.Authorization/roleAssignments","name":"b0bdf9b6-1518-4a4e-a8d8-ae18995872a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"30672894-e0ff-4e17-9bb5-f990b00b2a75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T20:08:39.3899074Z","updatedOn":"2018-10-11T20:08:39.3899074Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96c44173-1847-41b5-8d19-72206147559e","type":"Microsoft.Authorization/roleAssignments","name":"96c44173-1847-41b5-8d19-72206147559e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3108a44b-0b99-4b88-8863-89d551752b86","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T20:12:47.4692498Z","updatedOn":"2018-11-22T20:12:47.4692498Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/464e210b-cb81-40bb-b304-d467ef32fc63","type":"Microsoft.Authorization/roleAssignments","name":"464e210b-cb81-40bb-b304-d467ef32fc63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31a2474d-ecb4-4369-ada4-1976f49b71b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-16T05:43:06.1659793Z","updatedOn":"2019-07-16T05:43:06.1659793Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/813a81bc-cc15-4c04-873c-e8ce3fc0e86a","type":"Microsoft.Authorization/roleAssignments","name":"813a81bc-cc15-4c04-873c-e8ce3fc0e86a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c083be-605f-4b0f-82c1-5502cfe98b54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:19.4550939Z","updatedOn":"2019-03-22T06:12:19.4550939Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24edaa89-724b-4ad5-9321-b4627ce18f4c","type":"Microsoft.Authorization/roleAssignments","name":"24edaa89-724b-4ad5-9321-b4627ce18f4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c89bb6-f072-4dba-aa7b-9204f8a0e57e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T15:34:05.0200789Z","updatedOn":"2018-12-07T15:34:05.0200789Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/154d396f-73a2-458e-b6ac-790d4c8dd160","type":"Microsoft.Authorization/roleAssignments","name":"154d396f-73a2-458e-b6ac-790d4c8dd160"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31fd3974-2d10-4926-b1e9-046b585409bb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T07:12:01.9875232Z","updatedOn":"2019-03-06T07:12:01.9875232Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0472cec-2839-4cd3-8521-a41fb32c2b88","type":"Microsoft.Authorization/roleAssignments","name":"c0472cec-2839-4cd3-8521-a41fb32c2b88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"338ba9d8-70ea-4d16-8817-c52bcb4195d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T06:42:13.5810238Z","updatedOn":"2019-05-15T06:42:13.5810238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fec1dffa-57a7-48d6-8265-6472486b70f9","type":"Microsoft.Authorization/roleAssignments","name":"fec1dffa-57a7-48d6-8265-6472486b70f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"33962949-fffb-44d6-98a8-d79b2cb70a15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T21:24:04.0700040Z","updatedOn":"2018-12-08T21:24:04.0700040Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd880d6c-3630-49dc-97f7-13930c8b98bb","type":"Microsoft.Authorization/roleAssignments","name":"cd880d6c-3630-49dc-97f7-13930c8b98bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"344b32fc-71cb-476e-9372-44e6da88be09","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:53:02.5831868Z","updatedOn":"2018-10-23T16:53:02.5831868Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d006fc62-cd5c-46ed-889e-517ce18950b6","type":"Microsoft.Authorization/roleAssignments","name":"d006fc62-cd5c-46ed-889e-517ce18950b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34d734a3-5d21-4858-9cf0-5f29418313ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T18:20:53.4971054Z","updatedOn":"2018-11-12T18:20:53.4971054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bd23f3b-eaad-43d6-a63a-210d75c07f36","type":"Microsoft.Authorization/roleAssignments","name":"0bd23f3b-eaad-43d6-a63a-210d75c07f36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34f592d2-e01e-47fd-b101-4f7f6df4d133","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:12:43.2633496Z","updatedOn":"2019-04-18T05:12:43.2633496Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3005cf87-d322-4c04-be7f-43f5e118e06a","type":"Microsoft.Authorization/roleAssignments","name":"3005cf87-d322-4c04-be7f-43f5e118e06a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"355ed94a-dda4-4736-b235-dc475c58ce72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T06:35:31.9062201Z","updatedOn":"2019-05-02T06:35:31.9062201Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b26fa985-092c-4189-9f8a-a94aaa13b726","type":"Microsoft.Authorization/roleAssignments","name":"b26fa985-092c-4189-9f8a-a94aaa13b726"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35cd7d38-80db-4616-ae5d-951a521ab05d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T17:39:58.9546435Z","updatedOn":"2018-10-04T17:39:58.9546435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a97d3db-f15e-43f2-91de-aea95f5b6f81","type":"Microsoft.Authorization/roleAssignments","name":"2a97d3db-f15e-43f2-91de-aea95f5b6f81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35ce1576-d892-4dee-9d8e-fc7686599ebb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:02:18.4864213Z","updatedOn":"2018-10-02T17:02:18.4864213Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1979c483-6ecb-4e16-87e0-4dedf1cdaf03","type":"Microsoft.Authorization/roleAssignments","name":"1979c483-6ecb-4e16-87e0-4dedf1cdaf03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35fc6ba9-80cf-48e2-874a-12a118ab91cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T07:05:40.9081153Z","updatedOn":"2019-03-01T07:05:40.9081153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f45ef5-db08-4120-9fc2-2663f34b2ce9","type":"Microsoft.Authorization/roleAssignments","name":"24f45ef5-db08-4120-9fc2-2663f34b2ce9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3634b51a-c74e-4a68-9e41-bfc2fe2160b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T18:34:53.7786399Z","updatedOn":"2019-04-15T18:34:53.7786399Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1f7f5d2-ed1b-4322-8058-be4ebfc11a42","type":"Microsoft.Authorization/roleAssignments","name":"a1f7f5d2-ed1b-4322-8058-be4ebfc11a42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"367664c8-b9a3-490e-9745-6c54b68388c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:17:16.5111674Z","updatedOn":"2019-05-23T05:17:16.5111674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcea031-4e08-4047-9655-eb42e0528690","type":"Microsoft.Authorization/roleAssignments","name":"8bcea031-4e08-4047-9655-eb42e0528690"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"374ac999-5f34-4404-bf61-041fb33500b2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T06:49:11.5399368Z","updatedOn":"2019-01-04T06:49:11.5399368Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/20daba39-a380-42a9-8e18-c8af08ebeb98","type":"Microsoft.Authorization/roleAssignments","name":"20daba39-a380-42a9-8e18-c8af08ebeb98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T18:58:20.9990189Z","updatedOn":"2019-01-08T18:58:20.9990189Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54925852-e514-4e06-9023-14b82e9060e7","type":"Microsoft.Authorization/roleAssignments","name":"54925852-e514-4e06-9023-14b82e9060e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"383cd9d9-b653-45c7-b664-8cab304bcf19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T06:48:47.0085566Z","updatedOn":"2019-06-04T06:48:47.0085566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5453f43-59b0-4d6e-bf33-16f3535418d8","type":"Microsoft.Authorization/roleAssignments","name":"b5453f43-59b0-4d6e-bf33-16f3535418d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"384e2def-4c41-448a-8c94-7347548db1eb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:48:12.8727674Z","updatedOn":"2019-06-14T05:48:12.8727674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/264fcc95-9b6f-4a6a-81d7-10c0453f1268","type":"Microsoft.Authorization/roleAssignments","name":"264fcc95-9b6f-4a6a-81d7-10c0453f1268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3948fa02-af62-47bf-b039-4acc6e1475ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:37:15.1035155Z","updatedOn":"2019-05-04T05:37:15.1035155Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b734984-c922-440f-a5b1-db59b7878918","type":"Microsoft.Authorization/roleAssignments","name":"6b734984-c922-440f-a5b1-db59b7878918"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"39e6bb0d-be2a-4538-9e72-abdc081216b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T06:32:15.5933238Z","updatedOn":"2019-04-18T06:32:15.5933238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf873e07-b909-4dd9-9e0c-18e64c8edd84","type":"Microsoft.Authorization/roleAssignments","name":"cf873e07-b909-4dd9-9e0c-18e64c8edd84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3a7e90aa-0adf-4bc6-9896-bba2c9a92768","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:17:06.8887559Z","updatedOn":"2019-11-13T02:17:06.8887559Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ced98d2-95b9-4034-a179-42f859768199","type":"Microsoft.Authorization/roleAssignments","name":"4ced98d2-95b9-4034-a179-42f859768199"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2bafee-ff4e-4b8b-a6cf-9691ecb3ea62","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-07T07:08:48.4217749Z","updatedOn":"2019-02-07T07:08:48.4217749Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3a19c27-5757-473e-b2b0-8db57e6b0e11","type":"Microsoft.Authorization/roleAssignments","name":"b3a19c27-5757-473e-b2b0-8db57e6b0e11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2f0a23-c535-4f56-989f-8d9e58b859c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:16:10.7403775Z","updatedOn":"2019-03-26T06:16:10.7403775Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/695c75ea-8543-4201-9232-89d155c26b4c","type":"Microsoft.Authorization/roleAssignments","name":"695c75ea-8543-4201-9232-89d155c26b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b5999d5-a1b5-450c-891c-489323d60c11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T05:45:54.9016146Z","updatedOn":"2019-07-10T05:45:54.9016146Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32ce51be-fa71-43ac-97f0-2ffceeb30f55","type":"Microsoft.Authorization/roleAssignments","name":"32ce51be-fa71-43ac-97f0-2ffceeb30f55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3bf88cd6-45dc-4a5c-be62-646c550c8c76","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T01:44:02.0905660Z","updatedOn":"2019-10-25T01:44:02.0905660Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a27b9525-f0f2-4f6a-aeba-9e1f92d4d600","type":"Microsoft.Authorization/roleAssignments","name":"a27b9525-f0f2-4f6a-aeba-9e1f92d4d600"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1a3e8e-e818-4f05-82de-682364ed92c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:57.8773096Z","updatedOn":"2019-04-05T06:36:57.8773096Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42dd6f44-4f5e-4766-b849-051039f765e0","type":"Microsoft.Authorization/roleAssignments","name":"42dd6f44-4f5e-4766-b849-051039f765e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1cfbb4-75da-4348-840f-5e5de85fc6f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T19:38:20.4035114Z","updatedOn":"2019-01-08T19:38:20.4035114Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff70724f-a33b-48f9-9312-5e04f56d9b43","type":"Microsoft.Authorization/roleAssignments","name":"ff70724f-a33b-48f9-9312-5e04f56d9b43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c83c51b-6dc3-4a52-b9ed-8d48ae2b1574","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T10:22:35.5153932Z","updatedOn":"2018-10-24T10:22:35.5153932Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e35d96ce-56b4-4030-8685-142f0c964419","type":"Microsoft.Authorization/roleAssignments","name":"e35d96ce-56b4-4030-8685-142f0c964419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3cc35563-ac01-4d1b-ab0d-0bc17560532c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:05:30.3277955Z","updatedOn":"2019-04-14T03:05:30.3277955Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f87c098-7837-4311-bebe-401fe51a184f","type":"Microsoft.Authorization/roleAssignments","name":"3f87c098-7837-4311-bebe-401fe51a184f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3d02ec0c-ae17-4bdf-a8db-b0b19c0e03e9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-11T14:43:04.1109719Z","updatedOn":"2019-03-11T14:43:04.1109719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb6cbad-7f4e-4d74-9027-91dc795244ae","type":"Microsoft.Authorization/roleAssignments","name":"9eb6cbad-7f4e-4d74-9027-91dc795244ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3daf8c04-9a2d-413c-a214-3e68b9543da7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-08T02:27:32.1442243Z","updatedOn":"2019-10-08T02:27:32.1442243Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aec41005-d32b-495a-8cb8-638432712cc3","type":"Microsoft.Authorization/roleAssignments","name":"aec41005-d32b-495a-8cb8-638432712cc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3dd8d42d-ed70-47cf-84da-821d1a939c83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T06:33:10.1124799Z","updatedOn":"2019-05-01T06:33:10.1124799Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07acfe61-f00b-47d8-baab-eedce96906f4","type":"Microsoft.Authorization/roleAssignments","name":"07acfe61-f00b-47d8-baab-eedce96906f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e3faccf-8d37-4b6f-88ee-af65c6231ea8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:36:08.1019453Z","updatedOn":"2019-05-02T05:36:08.1019453Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86fb46ae-5482-4ee2-bab9-0915b584594d","type":"Microsoft.Authorization/roleAssignments","name":"86fb46ae-5482-4ee2-bab9-0915b584594d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e8864ee-4bca-489b-bc88-de613bb99a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:47:09.6910104Z","updatedOn":"2018-09-26T19:47:09.6910104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/896bc3e9-96ce-4710-a27d-80d0ebca43a5","type":"Microsoft.Authorization/roleAssignments","name":"896bc3e9-96ce-4710-a27d-80d0ebca43a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f073272-9332-48fc-b068-50c5fdce1f8f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-13T05:44:37.3086687Z","updatedOn":"2019-07-13T05:44:37.3086687Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4825f547-8689-41aa-b9ae-02ab8a272df7","type":"Microsoft.Authorization/roleAssignments","name":"4825f547-8689-41aa-b9ae-02ab8a272df7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f615c1e-f896-4fd9-9cc7-d5681606a42c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:11:37.6304700Z","updatedOn":"2019-04-14T03:11:37.6304700Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2","type":"Microsoft.Authorization/roleAssignments","name":"bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3fff76c9-4537-43e9-9fa7-d6d58cb084e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:23.1321548Z","updatedOn":"2019-04-13T06:36:23.1321548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442992e2-de64-4aab-96dc-459680fd2222","type":"Microsoft.Authorization/roleAssignments","name":"442992e2-de64-4aab-96dc-459680fd2222"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4027db79-e003-4678-a7ee-1ae5e2b5eba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T06:49:01.7491823Z","updatedOn":"2019-01-09T06:49:01.7491823Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a36486c-9b6e-4149-a7a7-4d58d63626a9","type":"Microsoft.Authorization/roleAssignments","name":"1a36486c-9b6e-4149-a7a7-4d58d63626a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40a89fa8-85ce-479b-a6db-26eb17d19701","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T06:52:07.4698060Z","updatedOn":"2019-02-01T06:52:07.4698060Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fddc9248-2712-4624-8048-37c66ce08589","type":"Microsoft.Authorization/roleAssignments","name":"fddc9248-2712-4624-8048-37c66ce08589"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40b86c5e-9309-4905-ae7d-d78e9d11a364","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T22:59:10.0099024Z","updatedOn":"2018-09-25T22:59:10.0099024Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50333f8a-1bf4-4681-b541-fb21930b296e","type":"Microsoft.Authorization/roleAssignments","name":"50333f8a-1bf4-4681-b541-fb21930b296e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41438247-dd5d-4324-a76b-ccf944ac56d7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:41.8766621Z","updatedOn":"2019-04-13T06:36:41.8766621Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a256a5b-7de7-4dae-98ba-8846e4da6173","type":"Microsoft.Authorization/roleAssignments","name":"9a256a5b-7de7-4dae-98ba-8846e4da6173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"417738c9-0901-4c95-81fd-626e4d29c9f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T16:49:16.9620977Z","updatedOn":"2019-01-17T16:49:16.9620977Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da194327-d7ec-4e5d-baa3-bf5584c16304","type":"Microsoft.Authorization/roleAssignments","name":"da194327-d7ec-4e5d-baa3-bf5584c16304"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41928376-c102-419b-b028-b5396ffbfc3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T01:13:44.7610853Z","updatedOn":"2018-11-09T01:13:44.7610853Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dd98515-7927-4a0d-adee-96c8f07807d5","type":"Microsoft.Authorization/roleAssignments","name":"6dd98515-7927-4a0d-adee-96c8f07807d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42155c87-6909-4dda-86a7-fb4f75789b83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T10:59:12.8478371Z","updatedOn":"2018-09-28T10:59:12.8478371Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3222cb2a-916f-45ea-8281-8b16eba9bbaf","type":"Microsoft.Authorization/roleAssignments","name":"3222cb2a-916f-45ea-8281-8b16eba9bbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42f419bc-1783-482b-9faf-e1dc6f71cfe7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T06:54:35.5634168Z","updatedOn":"2019-01-25T06:54:35.5634168Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e93e2b8-cc6f-49db-b66b-7b628ab5466d","type":"Microsoft.Authorization/roleAssignments","name":"3e93e2b8-cc6f-49db-b66b-7b628ab5466d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43193797-910c-4f41-8250-52c9526a19b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:33.7167095Z","updatedOn":"2019-03-21T06:07:33.7167095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd8b57d1-9948-4594-b25c-ff29bf0f8d22","type":"Microsoft.Authorization/roleAssignments","name":"fd8b57d1-9948-4594-b25c-ff29bf0f8d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4359a177-0349-4bbe-8200-597a6b5988c4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T06:43:34.9542020Z","updatedOn":"2019-05-21T06:43:34.9542020Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475feb5a-afb2-4417-845b-91287f4df064","type":"Microsoft.Authorization/roleAssignments","name":"475feb5a-afb2-4417-845b-91287f4df064"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"436315a1-3487-4b5f-9451-9db950947774","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:24:08.0369897Z","updatedOn":"2019-05-29T05:24:08.0369897Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209b5f11-de0d-4481-80a2-daa9ec1332a9","type":"Microsoft.Authorization/roleAssignments","name":"209b5f11-de0d-4481-80a2-daa9ec1332a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43c23ded-3cb5-470e-bc6b-18ace2450f02","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T10:31:43.9680528Z","updatedOn":"2018-10-26T10:31:43.9680528Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a9ef605-c40e-4022-9892-7ff1571d42d1","type":"Microsoft.Authorization/roleAssignments","name":"6a9ef605-c40e-4022-9892-7ff1571d42d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"44612a17-dcf7-45aa-9746-e23b9efbc52e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-19T06:08:01.4727425Z","updatedOn":"2019-03-19T06:08:01.4727425Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4bda3a7-c31f-4785-87b9-7397c66c2a76","type":"Microsoft.Authorization/roleAssignments","name":"a4bda3a7-c31f-4785-87b9-7397c66c2a76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"446a2406-5e3c-426f-a11f-b2ae90d41b12","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T06:47:10.6709040Z","updatedOn":"2019-06-28T06:47:10.6709040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8526e15-cc60-485b-8fb7-2fc75d771680","type":"Microsoft.Authorization/roleAssignments","name":"c8526e15-cc60-485b-8fb7-2fc75d771680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4483f609-8063-445d-8fce-e9a0791d7743","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T06:38:36.9659286Z","updatedOn":"2019-05-04T06:38:36.9659286Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d8a96ba-af52-4ded-a174-fe4f5bd251ec","type":"Microsoft.Authorization/roleAssignments","name":"8d8a96ba-af52-4ded-a174-fe4f5bd251ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"450f70cc-8ddd-44bd-b4c8-6f4337fd615c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T13:40:33.9593357Z","updatedOn":"2019-02-05T13:40:33.9593357Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc6377ff-4ee9-4fe6-a603-aaf51634aed9","type":"Microsoft.Authorization/roleAssignments","name":"fc6377ff-4ee9-4fe6-a603-aaf51634aed9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4547f709-4e50-470c-8060-7812e3b8c3ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:49:48.5677574Z","updatedOn":"2019-06-25T16:49:48.5677574Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81b44c64-fa8b-46fe-b846-d6d828662047","type":"Microsoft.Authorization/roleAssignments","name":"81b44c64-fa8b-46fe-b846-d6d828662047"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4573f187-107b-42b9-a630-65afaed9dedc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:19:21.1503618Z","updatedOn":"2018-10-02T17:19:21.1503618Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b387a328-57de-470d-a725-e1b9851bb313","type":"Microsoft.Authorization/roleAssignments","name":"b387a328-57de-470d-a725-e1b9851bb313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45b3b38d-12b6-4661-a6aa-39ed5db0ec3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:47:31.4973975Z","updatedOn":"2018-10-16T05:47:31.4973975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a8697a7-5b39-467d-9a2f-6b252e8221f6","type":"Microsoft.Authorization/roleAssignments","name":"0a8697a7-5b39-467d-9a2f-6b252e8221f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bb20e3-e8a7-471c-8f35-a9b2a0d53eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:18:31.0524635Z","updatedOn":"2019-06-04T05:18:31.0524635Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05d587fc-47ba-4c32-8299-778af7caa3cb","type":"Microsoft.Authorization/roleAssignments","name":"05d587fc-47ba-4c32-8299-778af7caa3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bed781-9c44-47cd-9e3a-dcac823cb9b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-06T05:39:57.3761475Z","updatedOn":"2019-06-06T05:39:57.3761475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cadc56c7-a92c-48fa-be3a-7cb98623167f","type":"Microsoft.Authorization/roleAssignments","name":"cadc56c7-a92c-48fa-be3a-7cb98623167f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45c56eda-fe0e-4d34-89bf-28572cdac667","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:15:46.6902330Z","updatedOn":"2019-04-27T05:15:46.6902330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2993d37a-5072-45fb-b18e-b4ba8a081837","type":"Microsoft.Authorization/roleAssignments","name":"2993d37a-5072-45fb-b18e-b4ba8a081837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"460b4bac-41c6-4e2e-8bde-3b9db7715926","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T06:44:05.7543726Z","updatedOn":"2019-06-01T06:44:05.7543726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed","type":"Microsoft.Authorization/roleAssignments","name":"89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46544a73-6799-488b-a05f-d610bfb3fddc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-03T06:51:58.2053437Z","updatedOn":"2019-01-03T06:51:58.2053437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958","type":"Microsoft.Authorization/roleAssignments","name":"ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"469c2a14-0980-4a27-a5e6-b64da5278d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T10:22:25.8590170Z","updatedOn":"2018-10-29T10:22:25.8590170Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6304453a-dc6a-4566-aec9-0671e08478d1","type":"Microsoft.Authorization/roleAssignments","name":"6304453a-dc6a-4566-aec9-0671e08478d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46b8124c-0993-44ef-bcdd-59f8f909795a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T06:51:37.6673026Z","updatedOn":"2018-11-09T06:51:37.6673026Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e99aa592-ba65-4041-b875-1dc4fe439eb8","type":"Microsoft.Authorization/roleAssignments","name":"e99aa592-ba65-4041-b875-1dc4fe439eb8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"474cf59d-1867-42b8-afa4-94510b266143","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T17:10:30.5808563Z","updatedOn":"2018-09-19T17:10:30.5808563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de60d5e1-dd54-4d86-8627-19411fab3c55","type":"Microsoft.Authorization/roleAssignments","name":"de60d5e1-dd54-4d86-8627-19411fab3c55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4759ce24-1955-4c57-bc53-357a69cc065f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T05:42:58.0364828Z","updatedOn":"2019-09-11T05:42:58.0364828Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/096db8b9-6da1-41d6-91fc-a44386feca3f","type":"Microsoft.Authorization/roleAssignments","name":"096db8b9-6da1-41d6-91fc-a44386feca3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"478ac2b7-8882-45d7-b424-6d8339728ea9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-01T00:51:52.9057101Z","updatedOn":"2019-11-01T00:51:52.9057101Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb79b9d-a384-4d48-83b7-5b31896a4f92","type":"Microsoft.Authorization/roleAssignments","name":"9eb79b9d-a384-4d48-83b7-5b31896a4f92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"47ccb4ae-269f-4792-98ee-55462208ad1d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T10:26:14.6817565Z","updatedOn":"2018-10-30T10:26:14.6817565Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9091773-c7c6-4f4e-ab35-076a5cc4d5db","type":"Microsoft.Authorization/roleAssignments","name":"a9091773-c7c6-4f4e-ab35-076a5cc4d5db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48399d68-6db0-4c01-9dc9-28ca48f676bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:21:52.8692211Z","updatedOn":"2019-06-14T05:21:52.8692211Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503e317f-50ed-435e-b484-035819f25387","type":"Microsoft.Authorization/roleAssignments","name":"503e317f-50ed-435e-b484-035819f25387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4879bdd1-f8b6-4e5c-8742-c93c3d8eb6f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:11:37.0429548Z","updatedOn":"2019-02-22T07:11:37.0429548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1021e7fe-c7ea-4439-8d72-bae5333a00a6","type":"Microsoft.Authorization/roleAssignments","name":"1021e7fe-c7ea-4439-8d72-bae5333a00a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48c186d2-d564-483b-a78d-92746eb34908","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-21T17:13:17.9399323Z","updatedOn":"2018-10-21T17:13:17.9399323Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66bb1b23-5b07-447c-94c0-be5c991edacd","type":"Microsoft.Authorization/roleAssignments","name":"66bb1b23-5b07-447c-94c0-be5c991edacd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4971287f-7b3d-42b8-80df-f7de72239f6c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-21T06:51:31.8471566Z","updatedOn":"2018-12-21T06:51:31.8471566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a82e12c4-d611-415f-8bbd-aa3768178f9a","type":"Microsoft.Authorization/roleAssignments","name":"a82e12c4-d611-415f-8bbd-aa3768178f9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"49fea90c-711d-4fff-8586-9a0bcaf79778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:45:42.3797028Z","updatedOn":"2019-06-12T05:45:42.3797028Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35aaaa16-0910-42ac-a2c7-6575174a8b65","type":"Microsoft.Authorization/roleAssignments","name":"35aaaa16-0910-42ac-a2c7-6575174a8b65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b04df63-6c76-4cec-ae82-c5302b50f57f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:40:01.4067044Z","updatedOn":"2019-04-25T05:40:01.4067044Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf697e75-2154-4ca7-bf7c-6f32131ff63d","type":"Microsoft.Authorization/roleAssignments","name":"cf697e75-2154-4ca7-bf7c-6f32131ff63d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b5f89be-be88-448d-90bd-1148b6c6deb2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-23T02:16:34.2523880Z","updatedOn":"2019-07-23T02:16:34.2523880Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1da14562-3dee-4c97-a071-1b2937796647","type":"Microsoft.Authorization/roleAssignments","name":"1da14562-3dee-4c97-a071-1b2937796647"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b723d4d-39b5-46cf-b192-1b5e4be7d278","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:51:32.3314332Z","updatedOn":"2018-10-04T05:51:32.3314332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeebc9cd-f851-4d9e-8782-b06de99a7616","type":"Microsoft.Authorization/roleAssignments","name":"aeebc9cd-f851-4d9e-8782-b06de99a7616"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b77e5f1-f472-4281-b5ce-96c2039e4872","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.9578107Z","updatedOn":"2019-04-02T06:14:22.9578107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8cf185-da61-4600-97fa-a27d71653544","type":"Microsoft.Authorization/roleAssignments","name":"bd8cf185-da61-4600-97fa-a27d71653544"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c14e60a-74c8-43ef-a370-6a3bb799cdb4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T13:15:28.5283855Z","updatedOn":"2019-02-23T13:15:28.5283855Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc732667-a40b-4490-8800-b77748ad2f8a","type":"Microsoft.Authorization/roleAssignments","name":"bc732667-a40b-4490-8800-b77748ad2f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c4e9e90-6bdc-49a9-ae74-32c96bf3a94c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:44:13.0979261Z","updatedOn":"2018-09-20T06:44:13.0979261Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90c91b21-abb3-48db-ba76-e4a288b056ce","type":"Microsoft.Authorization/roleAssignments","name":"90c91b21-abb3-48db-ba76-e4a288b056ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d430ee7-bf2c-41be-9672-96777cb84779","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T05:11:12.7927693Z","updatedOn":"2019-04-03T05:11:12.7927693Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71de9f73-c4c5-4b06-8229-8c2b73aa268c","type":"Microsoft.Authorization/roleAssignments","name":"71de9f73-c4c5-4b06-8229-8c2b73aa268c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d9bae5e-34ea-40c5-a98f-39c324594d3a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T09:41:30.9298710Z","updatedOn":"2018-10-30T09:41:30.9298710Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1","type":"Microsoft.Authorization/roleAssignments","name":"a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ddddf7e-258e-46ab-b563-26d2add85795","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:56.1452795Z","updatedOn":"2019-03-23T06:12:56.1452795Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45364ae9-1f1f-4a3e-b120-12bab739fa23","type":"Microsoft.Authorization/roleAssignments","name":"45364ae9-1f1f-4a3e-b120-12bab739fa23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ee4448c-0fa1-4493-b654-4c05705d54aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T14:42:25.4875530Z","updatedOn":"2018-10-22T14:42:25.4875530Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9000edfd-747d-4670-8223-aa771430eb6b","type":"Microsoft.Authorization/roleAssignments","name":"9000edfd-747d-4670-8223-aa771430eb6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4fea67d3-9364-4671-b8e2-e01ff6852013","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:37:03.6862425Z","updatedOn":"2018-10-23T16:37:03.6862425Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f93c69-9a92-4bce-a218-ed965f3b1fa7","type":"Microsoft.Authorization/roleAssignments","name":"82f93c69-9a92-4bce-a218-ed965f3b1fa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"500b471d-6dd2-45c7-b50f-192bc099465b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-11T08:59:49.1091322Z","updatedOn":"2019-02-11T08:59:49.1091322Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d","type":"Microsoft.Authorization/roleAssignments","name":"0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"50d1b7ca-6643-4aac-a7b6-aba7bffecb30","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T21:23:34.5623608Z","updatedOn":"2019-05-30T21:23:34.5623608Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff3f8887-b570-4cd2-80d9-31c3c0d780aa","type":"Microsoft.Authorization/roleAssignments","name":"ff3f8887-b570-4cd2-80d9-31c3c0d780aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"511d8bff-40f9-4003-a398-1fabde903a4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:49.4826402Z","updatedOn":"2019-03-30T06:13:49.4826402Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ead5ca8-3ae1-47f7-99d4-e8553fc813d0","type":"Microsoft.Authorization/roleAssignments","name":"3ead5ca8-3ae1-47f7-99d4-e8553fc813d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52129afe-24ab-41b9-a540-887b859baaa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T18:23:27.1190689Z","updatedOn":"2018-11-21T18:23:27.1190689Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d6d4ecf-980e-4860-910b-134eaf2010cb","type":"Microsoft.Authorization/roleAssignments","name":"2d6d4ecf-980e-4860-910b-134eaf2010cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52f6a30a-8d0c-47da-a3a5-b84e88a614b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T09:40:56.6401023Z","updatedOn":"2018-10-23T09:40:56.6401023Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beab38c9-0315-4f4c-b271-3d273132fb1c","type":"Microsoft.Authorization/roleAssignments","name":"beab38c9-0315-4f4c-b271-3d273132fb1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52fe9977-36ab-49b5-92a4-e008c4388a78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:35:03.4984397Z","updatedOn":"2019-05-07T05:35:03.4984397Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f02d236b-9aa2-4b3a-b23f-79421d4a68b2","type":"Microsoft.Authorization/roleAssignments","name":"f02d236b-9aa2-4b3a-b23f-79421d4a68b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"540777ec-189c-4cbf-bac5-6e1f84406a6f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T06:47:47.5895654Z","updatedOn":"2019-05-09T06:47:47.5895654Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e825f950-8897-4264-a635-53ae9feedfb9","type":"Microsoft.Authorization/roleAssignments","name":"e825f950-8897-4264-a635-53ae9feedfb9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5409d5ca-8e03-4557-9e84-8665a083b067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:39:48.5422832Z","updatedOn":"2019-06-01T05:39:48.5422832Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f","type":"Microsoft.Authorization/roleAssignments","name":"bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54832b72-aac4-4083-93d5-846c2b6b45e8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:47:59.4896743Z","updatedOn":"2018-11-28T06:47:59.4896743Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ad3378a-c327-464e-9445-1879a1066af9","type":"Microsoft.Authorization/roleAssignments","name":"3ad3378a-c327-464e-9445-1879a1066af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54ec6555-72ef-4e8d-bf70-17a405718e5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T09:56:47.6916806Z","updatedOn":"2019-03-02T09:56:47.6916806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e843b4c5-043c-44ae-bd28-734e25051ef3","type":"Microsoft.Authorization/roleAssignments","name":"e843b4c5-043c-44ae-bd28-734e25051ef3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5513e966-698b-4802-8499-46d300e37b0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:22.8102306Z","updatedOn":"2019-04-04T06:36:22.8102306Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c","type":"Microsoft.Authorization/roleAssignments","name":"b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"56da69f6-625c-425c-906b-6ea65198ae49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:16:27.2709616Z","updatedOn":"2018-10-10T22:16:27.2709616Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/467f37f4-8892-4989-b43c-50b039603457","type":"Microsoft.Authorization/roleAssignments","name":"467f37f4-8892-4989-b43c-50b039603457"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"586b8b3a-47c2-481b-a253-e44113022fb8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T06:42:26.9020217Z","updatedOn":"2019-05-22T06:42:26.9020217Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e29fabe-5d12-42e5-b131-19e3370f33af","type":"Microsoft.Authorization/roleAssignments","name":"0e29fabe-5d12-42e5-b131-19e3370f33af"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"58c180ad-6259-4c01-a1c5-51198b9c9b9a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:00:17.5947515Z","updatedOn":"2018-10-19T15:00:17.5947515Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b49e2b-047e-42a9-a704-b5c2201303ad","type":"Microsoft.Authorization/roleAssignments","name":"e3b49e2b-047e-42a9-a704-b5c2201303ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"598b7be5-15a3-4908-92d8-06c0adcaaa00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:09.8827093Z","updatedOn":"2019-04-04T06:36:09.8827093Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73323681-1a8f-40aa-9031-5f02a21fe727","type":"Microsoft.Authorization/roleAssignments","name":"73323681-1a8f-40aa-9031-5f02a21fe727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59a9ced4-093d-4e07-8fe0-a4e51ffdea10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T21:25:05.4849641Z","updatedOn":"2018-11-09T21:25:05.4849641Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddd8ce04-ab66-494e-a2b2-5f757a43c4fa","type":"Microsoft.Authorization/roleAssignments","name":"ddd8ce04-ab66-494e-a2b2-5f757a43c4fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59f98a9e-db3e-4f6e-93d5-99623caf9553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T07:05:39.5135657Z","updatedOn":"2019-02-20T07:05:39.5135657Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc7d8a24-3934-451b-9feb-e075d7921420","type":"Microsoft.Authorization/roleAssignments","name":"fc7d8a24-3934-451b-9feb-e075d7921420"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b1c26a1-6561-412b-b4be-b0c17c3318fe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:57:15.5134809Z","updatedOn":"2018-10-05T00:57:15.5134809Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a96ae42-a747-4357-96fa-efd5e47c397c","type":"Microsoft.Authorization/roleAssignments","name":"3a96ae42-a747-4357-96fa-efd5e47c397c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3b4018-76a9-43bf-9f1c-24926c9a6103","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T06:39:33.1893579Z","updatedOn":"2019-05-25T06:39:33.1893579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db08177d-9064-4501-8eeb-4c3a02b254a2","type":"Microsoft.Authorization/roleAssignments","name":"db08177d-9064-4501-8eeb-4c3a02b254a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3bd66c-bd38-4565-aabe-0e6d10354596","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:15:19.7761488Z","updatedOn":"2019-05-28T05:15:19.7761488Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f641ca9-7e29-42c6-89f4-90e26c594902","type":"Microsoft.Authorization/roleAssignments","name":"0f641ca9-7e29-42c6-89f4-90e26c594902"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5c36cac2-e147-4997-a06c-596a42591a24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:15:50.4759690Z","updatedOn":"2019-05-11T05:15:50.4759690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72d79eff-8c00-4cd8-9cf4-e8a694596b3f","type":"Microsoft.Authorization/roleAssignments","name":"72d79eff-8c00-4cd8-9cf4-e8a694596b3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc1a360-1940-44a0-bc5e-29c604002d0b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:46:16.3494387Z","updatedOn":"2018-10-13T05:46:16.3494387Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e992eb54-5e47-4428-acd3-40c0265d2a40","type":"Microsoft.Authorization/roleAssignments","name":"e992eb54-5e47-4428-acd3-40c0265d2a40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc3a7f2-18dc-4c73-9d27-21c262e52c0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T16:19:42.5704417Z","updatedOn":"2019-06-15T16:19:42.5704417Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beb9ec14-f66a-498a-9812-89a9ec47b8e5","type":"Microsoft.Authorization/roleAssignments","name":"beb9ec14-f66a-498a-9812-89a9ec47b8e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5e414a46-57c9-4bad-9417-9cf6c3dc5a63","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:20:18.5626645Z","updatedOn":"2019-11-13T02:20:18.5626645Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96cf19f1-c252-46f6-905d-46bdbeaecc87","type":"Microsoft.Authorization/roleAssignments","name":"96cf19f1-c252-46f6-905d-46bdbeaecc87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5e69ef28-1db9-403c-8856-7d4e3ebbde4a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:02:04.8659613Z","updatedOn":"2019-11-13T09:02:04.8659613Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2261a61e-aa24-4c14-9afa-46297c364380","type":"Microsoft.Authorization/roleAssignments","name":"2261a61e-aa24-4c14-9afa-46297c364380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"607756a3-c971-467d-bce7-9267d8c01261","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:59:17.0515117Z","updatedOn":"2018-10-01T15:59:17.0515117Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4ca15bb-d013-4bf8-857f-4117c5db175c","type":"Microsoft.Authorization/roleAssignments","name":"d4ca15bb-d013-4bf8-857f-4117c5db175c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"613d5f03-41a8-4080-bdfc-a374e9f19988","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T10:22:26.9025135Z","updatedOn":"2018-10-22T10:22:26.9025135Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14bdb487-ccb9-4efb-bc90-104d135f8b29","type":"Microsoft.Authorization/roleAssignments","name":"14bdb487-ccb9-4efb-bc90-104d135f8b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"62af882c-540c-4f97-9ef6-17017da11708","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T07:04:26.8232762Z","updatedOn":"2019-02-05T07:04:26.8232762Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a54bd44-0912-4d8c-bc4d-c4ca672993d3","type":"Microsoft.Authorization/roleAssignments","name":"5a54bd44-0912-4d8c-bc4d-c4ca672993d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"63154abc-1cb7-47c9-98fe-5f0e6a108f59","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-21T13:56:59.6975946Z","updatedOn":"2019-10-21T13:56:59.6975946Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb4fc63b-fae5-4f01-a87c-b1d339da9039","type":"Microsoft.Authorization/roleAssignments","name":"cb4fc63b-fae5-4f01-a87c-b1d339da9039"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"64322757-c902-4fcb-8580-d53ec6a49733","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T09:58:18.8798266Z","updatedOn":"2019-03-07T09:58:18.8798266Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f","type":"Microsoft.Authorization/roleAssignments","name":"503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6453a293-3f49-42a0-953b-b954ad831b13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T06:36:20.6410975Z","updatedOn":"2019-04-27T06:36:20.6410975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9","type":"Microsoft.Authorization/roleAssignments","name":"3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"649ed1cc-32fd-4902-98ba-4ce661fe1b0e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:46:33.2506768Z","updatedOn":"2018-10-05T05:46:33.2506768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f653f0c1-a5d2-4e52-9cce-d9caa7a12948","type":"Microsoft.Authorization/roleAssignments","name":"f653f0c1-a5d2-4e52-9cce-d9caa7a12948"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66372353-a1d0-4b99-b9e3-b5b1f527d5c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T21:55:10.4318460Z","updatedOn":"2018-11-29T21:55:10.4318460Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4fedbf2e-17fb-46b5-8507-7b888fd819e4","type":"Microsoft.Authorization/roleAssignments","name":"4fedbf2e-17fb-46b5-8507-7b888fd819e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66da01d7-d0cd-4d5d-9daa-a6aac355e899","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.2380357Z","updatedOn":"2019-04-02T06:14:22.2380357Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95800b1b-cdac-4ba5-86a1-379016cd1dc6","type":"Microsoft.Authorization/roleAssignments","name":"95800b1b-cdac-4ba5-86a1-379016cd1dc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67404547-100a-42a8-8f2e-09b490634ea7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T05:09:36.0604037Z","updatedOn":"2019-03-22T05:09:36.0604037Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d","type":"Microsoft.Authorization/roleAssignments","name":"b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"679350fd-70c9-4f2f-b5f0-4d549ff59263","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:01:27.5039088Z","updatedOn":"2019-09-11T09:01:27.5039088Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0369f65-0715-45d4-a650-6f8f6a0175c3","type":"Microsoft.Authorization/roleAssignments","name":"a0369f65-0715-45d4-a650-6f8f6a0175c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67bfe2b8-c880-4fec-9fdf-a4865f955a30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-22T19:41:53.4008313Z","updatedOn":"2018-09-22T19:41:53.4008313Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d8de0a-74c3-40a9-b0cf-0343f2c62234","type":"Microsoft.Authorization/roleAssignments","name":"53d8de0a-74c3-40a9-b0cf-0343f2c62234"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67e33e41-2e5b-4a69-a3ef-6b5f3b167d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T15:44:49.1835703Z","updatedOn":"2018-11-13T15:44:49.1835703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a805b80-6b5c-4b23-ba48-60bc8a8a56ee","type":"Microsoft.Authorization/roleAssignments","name":"7a805b80-6b5c-4b23-ba48-60bc8a8a56ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"688639b0-ff93-4399-a3c3-5bf75676df74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-24T17:56:40.3800464Z","updatedOn":"2019-06-24T17:56:40.3800464Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af81c289-2651-4461-afd3-4b8b30e73b7f","type":"Microsoft.Authorization/roleAssignments","name":"af81c289-2651-4461-afd3-4b8b30e73b7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"692d387a-0a74-4f3c-84a4-ccc1aa564cc4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:23:56.9861355Z","updatedOn":"2019-03-28T06:23:56.9861355Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2dca01f-8b7c-456a-ba40-12c267516fa4","type":"Microsoft.Authorization/roleAssignments","name":"e2dca01f-8b7c-456a-ba40-12c267516fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"69ed4898-0851-4ea4-9813-dfc9864cbaf6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:26:34.1746649Z","updatedOn":"2018-12-11T19:26:34.1746649Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27564201-65a3-4a09-bdaf-70c08ecd1786","type":"Microsoft.Authorization/roleAssignments","name":"27564201-65a3-4a09-bdaf-70c08ecd1786"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6a2bd173-e6f2-4b0c-bd80-c3bc23afdd9b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-08T07:04:42.6974105Z","updatedOn":"2019-02-08T07:04:42.6974105Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/508ce624-c0ed-4246-9ace-6934f7c70f48","type":"Microsoft.Authorization/roleAssignments","name":"508ce624-c0ed-4246-9ace-6934f7c70f48"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ab640b3-0232-4412-b034-e0f6598d60cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:18:08.2083053Z","updatedOn":"2019-06-01T05:18:08.2083053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4190e61-7834-4128-ba57-9d1c881baba9","type":"Microsoft.Authorization/roleAssignments","name":"b4190e61-7834-4128-ba57-9d1c881baba9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6b111a75-d6f5-40f8-a713-2aff55c241bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T02:18:18.8000548Z","updatedOn":"2019-03-06T02:18:18.8000548Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7","type":"Microsoft.Authorization/roleAssignments","name":"33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c33ea0a-4309-494e-bb08-7c65d7732b2e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-02T05:41:29.5534504Z","updatedOn":"2019-07-02T05:41:29.5534504Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8905e9-16c6-40a6-9dbd-046aad713a25","type":"Microsoft.Authorization/roleAssignments","name":"bd8905e9-16c6-40a6-9dbd-046aad713a25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c4fbf1c-a382-44ed-881c-51962f3fd881","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T05:50:00.7096461Z","updatedOn":"2018-11-01T05:50:00.7096461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de49b46f-a02e-4836-80e3-219f97f087d4","type":"Microsoft.Authorization/roleAssignments","name":"de49b46f-a02e-4836-80e3-219f97f087d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c7e6aca-f52b-4eae-88a7-0b5d23020906","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:47:53.8404657Z","updatedOn":"2019-04-14T02:47:53.8404657Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8fc00c0-bf52-48fa-aff7-d7311f11bc19","type":"Microsoft.Authorization/roleAssignments","name":"e8fc00c0-bf52-48fa-aff7-d7311f11bc19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c9946ec-553a-48ce-ab04-aab7628afb1c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T02:10:55.9558958Z","updatedOn":"2018-12-01T02:10:55.9558958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fae0b28-b303-49a4-8054-3fbb15bc8947","type":"Microsoft.Authorization/roleAssignments","name":"9fae0b28-b303-49a4-8054-3fbb15bc8947"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6cb60ca7-ed56-47a6-9d38-4e01e7c9697d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T12:25:53.4854829Z","updatedOn":"2019-01-09T12:25:53.4854829Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396a79d2-fb2a-4bb1-b872-c77b7a4c13c6","type":"Microsoft.Authorization/roleAssignments","name":"396a79d2-fb2a-4bb1-b872-c77b7a4c13c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d36f33f-05a6-45f7-8209-089ee6b93a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:10.7409947Z","updatedOn":"2018-09-18T23:57:10.7409947Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29587e30-6cb4-4896-ac01-7592e243af86","type":"Microsoft.Authorization/roleAssignments","name":"29587e30-6cb4-4896-ac01-7592e243af86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d489fcb-a876-474e-baee-4b2c247066ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:00:59.6415842Z","updatedOn":"2019-04-14T03:00:59.6415842Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c771da9-9d8a-4071-b0d8-1c59d6e7266f","type":"Microsoft.Authorization/roleAssignments","name":"9c771da9-9d8a-4071-b0d8-1c59d6e7266f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d854209-9a54-4c9e-a159-e8d3094658d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:48:24.6364909Z","updatedOn":"2019-04-14T02:48:24.6364909Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edc12553-178b-4765-bf26-98f57a26fc02","type":"Microsoft.Authorization/roleAssignments","name":"edc12553-178b-4765-bf26-98f57a26fc02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6dc88d25-0c7b-42c6-8c91-a562a0b13006","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-13T06:05:50.2210833Z","updatedOn":"2019-03-13T06:05:50.2210833Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/399d0881-1788-435a-855b-3dd5157c360d","type":"Microsoft.Authorization/roleAssignments","name":"399d0881-1788-435a-855b-3dd5157c360d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6e4e17aa-d5b2-4bb4-9fd3-0fc44c929b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:46:47.0487850Z","updatedOn":"2019-05-29T05:46:47.0487850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fdd201e-75f6-4830-8925-b96202c67a56","type":"Microsoft.Authorization/roleAssignments","name":"8fdd201e-75f6-4830-8925-b96202c67a56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ec8f82c-9e32-48cc-85cc-e0e48defae11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T06:50:23.9583339Z","updatedOn":"2018-11-29T06:50:23.9583339Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c02193e-3c95-4479-adc6-9a75cfb573b8","type":"Microsoft.Authorization/roleAssignments","name":"1c02193e-3c95-4479-adc6-9a75cfb573b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ecd84c7-bbaa-48c4-98a6-6087ed3df64a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:14:56.9351550Z","updatedOn":"2019-04-25T05:14:56.9351550Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fa8e3ed-deef-4f08-b893-81ebe9acde0e","type":"Microsoft.Authorization/roleAssignments","name":"5fa8e3ed-deef-4f08-b893-81ebe9acde0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ef96f42-cd57-4e99-89e7-0e89f05cfede","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:38:59.3997604Z","updatedOn":"2019-04-26T05:38:59.3997604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fad55ac3-c806-49b8-97e9-c2b7f1acab16","type":"Microsoft.Authorization/roleAssignments","name":"fad55ac3-c806-49b8-97e9-c2b7f1acab16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6fe33150-178c-4a55-8ce7-f2e66551a121","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:00:17.0044164Z","updatedOn":"2019-11-13T09:00:17.0044164Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ef6f-e13b-4d15-9838-5334c3e6b391","type":"Microsoft.Authorization/roleAssignments","name":"d408ef6f-e13b-4d15-9838-5334c3e6b391"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"704e2404-42e9-4dd2-a0b2-672150eb02b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:22:13.0814390Z","updatedOn":"2019-06-26T05:22:13.0814390Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63aaafb2-482e-47e2-a1c4-8860726353ec","type":"Microsoft.Authorization/roleAssignments","name":"63aaafb2-482e-47e2-a1c4-8860726353ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"712a3ed3-322d-46bb-83c8-d283bf293f92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T15:48:15.6003613Z","updatedOn":"2018-11-15T15:48:15.6003613Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/211f4c48-7e4a-40b6-93cd-f3457de00cec","type":"Microsoft.Authorization/roleAssignments","name":"211f4c48-7e4a-40b6-93cd-f3457de00cec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"73b10201-9d86-47ba-a9c0-fb6262496596","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:19:16.0685947Z","updatedOn":"2019-11-13T09:19:16.0685947Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08251a7a-c5a5-4aa2-864a-e7240e2d3803","type":"Microsoft.Authorization/roleAssignments","name":"08251a7a-c5a5-4aa2-864a-e7240e2d3803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"73d4eb83-1fe6-46a2-ad7b-784756ff030b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T10:22:45.7824438Z","updatedOn":"2018-10-31T10:22:45.7824438Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94d225f7-9fa8-410e-8b04-f1fd0d94b71d","type":"Microsoft.Authorization/roleAssignments","name":"94d225f7-9fa8-410e-8b04-f1fd0d94b71d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"74294fda-1d88-4f11-b3ec-828c8f993e15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:20:42.8929893Z","updatedOn":"2019-06-29T05:20:42.8929893Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8","type":"Microsoft.Authorization/roleAssignments","name":"6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7548cbdb-a952-4df9-8444-40e9ce828000","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T06:54:57.2847495Z","updatedOn":"2018-12-01T06:54:57.2847495Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/928582a4-ecf3-4748-b1e0-11701e025432","type":"Microsoft.Authorization/roleAssignments","name":"928582a4-ecf3-4748-b1e0-11701e025432"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7609cd9b-efcb-493a-a026-225b7a9a0365","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:47:30.3923076Z","updatedOn":"2018-10-06T05:47:30.3923076Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4dca0a71-a984-4dda-876b-c4f024c10f8a","type":"Microsoft.Authorization/roleAssignments","name":"4dca0a71-a984-4dda-876b-c4f024c10f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"76776aa5-af1d-4b9e-a56e-1477a17cf070","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T17:38:33.7929610Z","updatedOn":"2019-02-02T17:38:33.7929610Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b712f421-681a-4cc0-b84d-64ab8b65802b","type":"Microsoft.Authorization/roleAssignments","name":"b712f421-681a-4cc0-b84d-64ab8b65802b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7683dc97-8db7-437f-8baf-fcd5df568a8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:15:03.9119281Z","updatedOn":"2019-05-08T05:15:03.9119281Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4083e34a-3fb9-4689-ab26-6287bd9fd9c2","type":"Microsoft.Authorization/roleAssignments","name":"4083e34a-3fb9-4689-ab26-6287bd9fd9c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"774f9cb3-e176-43ee-9b53-ac10e6db0778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T13:30:32.8137217Z","updatedOn":"2019-03-03T13:30:32.8137217Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/495be90f-ab00-4d1d-aecd-e024bec55393","type":"Microsoft.Authorization/roleAssignments","name":"495be90f-ab00-4d1d-aecd-e024bec55393"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77c092ea-ce78-458d-9f38-c17c2681438c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-12T07:07:29.9963220Z","updatedOn":"2019-02-12T07:07:29.9963220Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67304b6e-b8d9-415a-8f92-2562023fd837","type":"Microsoft.Authorization/roleAssignments","name":"67304b6e-b8d9-415a-8f92-2562023fd837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77f74980-f5ce-4484-a15a-20709e5e2547","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T01:08:23.2453424Z","updatedOn":"2019-05-04T01:08:23.2453424Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71538224-b885-4a3e-b178-5d73c4ec869d","type":"Microsoft.Authorization/roleAssignments","name":"71538224-b885-4a3e-b178-5d73c4ec869d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"780847de-4327-4f25-86e2-289447951d2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T06:50:07.1933427Z","updatedOn":"2019-05-17T06:50:07.1933427Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82eb6677-63a7-44f1-9d75-a991c5e669ac","type":"Microsoft.Authorization/roleAssignments","name":"82eb6677-63a7-44f1-9d75-a991c5e669ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"78641149-e93c-4ce4-8adb-7615b8830d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T09:40:18.7637943Z","updatedOn":"2018-10-29T09:40:18.7637943Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d50a36cf-7e26-41a9-b248-b2082b06df86","type":"Microsoft.Authorization/roleAssignments","name":"d50a36cf-7e26-41a9-b248-b2082b06df86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"794df39c-a438-4cba-ba1f-471684649cbd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T06:47:49.5030941Z","updatedOn":"2018-12-08T06:47:49.5030941Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8adc08be-35c7-4082-a97e-58495bf0633e","type":"Microsoft.Authorization/roleAssignments","name":"8adc08be-35c7-4082-a97e-58495bf0633e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"79d28f59-7371-4cc1-aa55-1637711f25c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-26T06:50:12.3943072Z","updatedOn":"2018-12-26T06:50:12.3943072Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f8d5b31-c70e-421e-9cda-f23d6d6514ac","type":"Microsoft.Authorization/roleAssignments","name":"0f8d5b31-c70e-421e-9cda-f23d6d6514ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ada01ed-fe33-41b9-b33c-fff421c40085","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T20:55:00.8548042Z","updatedOn":"2019-05-14T20:55:00.8548042Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5cf6ad-afcd-4a50-98bb-4bb0108775fa","type":"Microsoft.Authorization/roleAssignments","name":"ea5cf6ad-afcd-4a50-98bb-4bb0108775fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b450bc8-eda3-44ee-8469-fc5e877cc504","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-15T00:36:11.7693422Z","updatedOn":"2018-09-15T00:36:11.7693422Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bcb0d890-060d-4fc7-8113-9021bc1dfa56","type":"Microsoft.Authorization/roleAssignments","name":"bcb0d890-060d-4fc7-8113-9021bc1dfa56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b786a3d-6ce9-495d-8716-52ae82f5e2a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:11.0215326Z","updatedOn":"2019-04-03T06:11:11.0215326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b83528d1-e123-4edf-8ee6-ba5bd0bd6f47","type":"Microsoft.Authorization/roleAssignments","name":"b83528d1-e123-4edf-8ee6-ba5bd0bd6f47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bbf0190-840a-4e74-916d-fa4c01be297b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T18:03:45.6908682Z","updatedOn":"2018-10-02T18:03:45.6908682Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dcb8da1-75d1-4598-a61e-28b463c47f01","type":"Microsoft.Authorization/roleAssignments","name":"6dcb8da1-75d1-4598-a61e-28b463c47f01"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bfb0f39-e9bc-4acc-addb-479cb042834b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T14:38:29.7385082Z","updatedOn":"2018-10-30T14:38:29.7385082Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45e0d28f-cdde-4cdb-8edb-168c8f7590d2","type":"Microsoft.Authorization/roleAssignments","name":"45e0d28f-cdde-4cdb-8edb-168c8f7590d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5418b8-53e6-43ed-8e35-75d3d6dfb2e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T18:02:59.3895408Z","updatedOn":"2018-09-13T18:02:59.3895408Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6a0f050-1296-4798-908e-aaf195b4c798","type":"Microsoft.Authorization/roleAssignments","name":"d6a0f050-1296-4798-908e-aaf195b4c798"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5d633a-ec69-498a-92cf-55464c78670b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:16:38.1702958Z","updatedOn":"2019-05-15T05:16:38.1702958Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/741aa019-0fe3-403f-a882-0d05dffdfd2d","type":"Microsoft.Authorization/roleAssignments","name":"741aa019-0fe3-403f-a882-0d05dffdfd2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ca80fb2-737e-4e66-a3cd-b8a323d537cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:39:04.0585092Z","updatedOn":"2019-05-25T05:39:04.0585092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/638f44e3-8179-48c7-90c1-21f64a585aac","type":"Microsoft.Authorization/roleAssignments","name":"638f44e3-8179-48c7-90c1-21f64a585aac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7d4cdb41-c410-4a81-97e6-8caae8993d00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T07:18:44.3763561Z","updatedOn":"2018-12-06T07:18:44.3763561Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3b91d2bf-0026-4f91-95b4-cd0ed0f85173","type":"Microsoft.Authorization/roleAssignments","name":"3b91d2bf-0026-4f91-95b4-cd0ed0f85173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7df99738-7bfc-4895-a68f-50f8ed8f0505","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:42:35.5182437Z","updatedOn":"2018-10-23T05:42:35.5182437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17db1f19-acc1-49ba-a03c-dfbe611262b9","type":"Microsoft.Authorization/roleAssignments","name":"17db1f19-acc1-49ba-a03c-dfbe611262b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e22c332-3d2b-4de8-bf01-d64d23dc1b39","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T15:39:42.5789529Z","updatedOn":"2018-11-09T15:39:42.5789529Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a72e6191-bb9b-4169-b6cf-b31b214a627f","type":"Microsoft.Authorization/roleAssignments","name":"a72e6191-bb9b-4169-b6cf-b31b214a627f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e887460-65fd-40f5-ac81-f73deea466d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T05:14:55.7828522Z","updatedOn":"2019-05-10T05:14:55.7828522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cbbe3ce-9d21-477d-b178-b83e6442e99e","type":"Microsoft.Authorization/roleAssignments","name":"5cbbe3ce-9d21-477d-b178-b83e6442e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f100bfc-db5f-4309-bcec-2bb6df12c04a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T01:53:31.6719631Z","updatedOn":"2019-01-31T01:53:31.6719631Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/868dcee8-c116-4502-bc04-263d3ae53fd0","type":"Microsoft.Authorization/roleAssignments","name":"868dcee8-c116-4502-bc04-263d3ae53fd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f74ea17-fa4d-41c0-a543-a539c46210ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:52:07.3188509Z","updatedOn":"2018-09-27T17:52:07.3188509Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3","type":"Microsoft.Authorization/roleAssignments","name":"d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f758d4c-db29-4a18-a057-75efd8e79a74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T05:10:35.2296932Z","updatedOn":"2019-04-06T05:10:35.2296932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9cc64ce-73b9-446d-b99d-645c964fd426","type":"Microsoft.Authorization/roleAssignments","name":"e9cc64ce-73b9-446d-b99d-645c964fd426"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f9eb655-2f05-4a27-9fcd-280b43791ed6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T06:41:41.2203329Z","updatedOn":"2019-05-10T06:41:41.2203329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e35b736-0f88-4814-88d8-24e6854c819b","type":"Microsoft.Authorization/roleAssignments","name":"4e35b736-0f88-4814-88d8-24e6854c819b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"803b3279-b14b-4be3-bd41-ae1b259e37a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T22:17:06.9892206Z","updatedOn":"2018-10-23T22:17:06.9892206Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/619d9112-56a2-4801-b56e-e541a92a2da4","type":"Microsoft.Authorization/roleAssignments","name":"619d9112-56a2-4801-b56e-e541a92a2da4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8062a81a-b6f4-4c69-8c8e-9bbd301e41ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:50.2078671Z","updatedOn":"2019-03-30T06:13:50.2078671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d8161d-defe-484b-b0e8-f4c653252f16","type":"Microsoft.Authorization/roleAssignments","name":"a8d8161d-defe-484b-b0e8-f4c653252f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80b1b2c3-cdf2-4dae-a38b-a49a2f52eecd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-28T08:01:24.9654792Z","updatedOn":"2019-10-28T08:01:24.9654792Z","createdBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","updatedBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d30cdea5-4849-4685-994d-9f297f8fc2d2","type":"Microsoft.Authorization/roleAssignments","name":"d30cdea5-4849-4685-994d-9f297f8fc2d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80c1e693-93a1-4115-8610-6b67677e8fc0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-09T07:12:14.9103934Z","updatedOn":"2019-03-09T07:12:14.9103934Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3","type":"Microsoft.Authorization/roleAssignments","name":"c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"810d390f-64ed-40f9-89d6-3cceb7329ff5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T01:23:26.7885228Z","updatedOn":"2018-11-21T01:23:26.7885228Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8091748e-cc72-4082-8cfa-6ea8622b3625","type":"Microsoft.Authorization/roleAssignments","name":"8091748e-cc72-4082-8cfa-6ea8622b3625"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"829571ed-c3d7-4985-818f-b996ff7ef088","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:16:52.4886041Z","updatedOn":"2019-05-17T05:16:52.4886041Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef","type":"Microsoft.Authorization/roleAssignments","name":"d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:15:50.5935627Z","updatedOn":"2019-09-11T09:15:50.5935627Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/253c1f18-9f2b-490d-961d-520ba222a9b3","type":"Microsoft.Authorization/roleAssignments","name":"253c1f18-9f2b-490d-961d-520ba222a9b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8397a3ab-dcd0-4905-9dfc-406e9a5364d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T18:48:16.6057069Z","updatedOn":"2019-03-01T18:48:16.6057069Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/49d9706e-3f83-4afa-954e-1ca959f0ac99","type":"Microsoft.Authorization/roleAssignments","name":"49d9706e-3f83-4afa-954e-1ca959f0ac99"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"83f56332-63d8-4a04-a851-017a0414dbc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T06:49:20.3867553Z","updatedOn":"2018-12-18T06:49:20.3867553Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/735d41dc-d524-4686-acce-015022fb652a","type":"Microsoft.Authorization/roleAssignments","name":"735d41dc-d524-4686-acce-015022fb652a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"84874d5a-4130-4df0-96b1-6491c10e6354","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T11:39:38.8845443Z","updatedOn":"2018-09-28T11:39:38.8845443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/697d3373-5487-41d7-8535-17a047bee7e1","type":"Microsoft.Authorization/roleAssignments","name":"697d3373-5487-41d7-8535-17a047bee7e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"850cdb5c-03f2-45c6-b9d9-0f3a9c594ccf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:47.1967557Z","updatedOn":"2019-03-23T06:12:47.1967557Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5434eca1-b18b-4aaf-8063-ffd71f2ff773","type":"Microsoft.Authorization/roleAssignments","name":"5434eca1-b18b-4aaf-8063-ffd71f2ff773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"85137175-3916-4cb9-b552-9ad76eba2798","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T05:10:41.3063102Z","updatedOn":"2019-03-27T05:10:41.3063102Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cecdd3-d0e4-4a75-9254-f7b9ab550c04","type":"Microsoft.Authorization/roleAssignments","name":"70cecdd3-d0e4-4a75-9254-f7b9ab550c04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"859ad38c-b4ff-480a-9db1-366be15d50bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T06:48:58.5197973Z","updatedOn":"2018-11-10T06:48:58.5197973Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e798d79f-8086-428b-91ce-ad7ea651624f","type":"Microsoft.Authorization/roleAssignments","name":"e798d79f-8086-428b-91ce-ad7ea651624f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"860aaec5-bc98-4ba5-9edf-79e4c9fd8ded","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:45:59.7559326Z","updatedOn":"2019-06-11T05:45:59.7559326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2a43861-47d0-454f-a2e0-3d8f7b2d02e5","type":"Microsoft.Authorization/roleAssignments","name":"d2a43861-47d0-454f-a2e0-3d8f7b2d02e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8681181f-40ca-487a-8bc6-259755150aa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:20.7745983Z","updatedOn":"2019-04-16T06:34:20.7745983Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67e3e91b-1b88-44b0-991d-d3e26974afb5","type":"Microsoft.Authorization/roleAssignments","name":"67e3e91b-1b88-44b0-991d-d3e26974afb5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86bd3fff-bfc8-4e57-98ae-3e5bd84e30c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:40:51.5801241Z","updatedOn":"2019-05-30T05:40:51.5801241Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10e93af6-2d05-4e09-9cd8-d926a21b5f7e","type":"Microsoft.Authorization/roleAssignments","name":"10e93af6-2d05-4e09-9cd8-d926a21b5f7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86eddba4-f356-4ed6-ba86-fd1cbfe047bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:13:35.8229209Z","updatedOn":"2019-11-13T09:13:35.8229209Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/807e7f63-c8b6-4a73-ae0f-0a9db3f59da8","type":"Microsoft.Authorization/roleAssignments","name":"807e7f63-c8b6-4a73-ae0f-0a9db3f59da8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86fcac07-0a80-4464-ace0-0dd23eb4b528","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T20:51:53.2630989Z","updatedOn":"2018-11-28T20:51:53.2630989Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f598f88f-98f3-4cb2-99b6-bb53cfee4746","type":"Microsoft.Authorization/roleAssignments","name":"f598f88f-98f3-4cb2-99b6-bb53cfee4746"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"87ae5050-5dca-4740-bd43-aadd802d919e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T06:47:48.1709454Z","updatedOn":"2019-01-16T06:47:48.1709454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d85e0d-aaa3-4d7d-a661-5e123e470fc0","type":"Microsoft.Authorization/roleAssignments","name":"53d85e0d-aaa3-4d7d-a661-5e123e470fc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"885ee9c5-df35-4d21-bd29-33d930ef4721","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T07:30:25.7405858Z","updatedOn":"2019-08-08T07:30:25.7405858Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e1de6d0-412e-4425-8e11-897f4aa32d65","type":"Microsoft.Authorization/roleAssignments","name":"9e1de6d0-412e-4425-8e11-897f4aa32d65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"888287be-1758-492b-a9df-f99a65e928a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:39:19.6358987Z","updatedOn":"2019-05-23T05:39:19.6358987Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f6286d7-b327-4bc5-8515-b736e36aba87","type":"Microsoft.Authorization/roleAssignments","name":"3f6286d7-b327-4bc5-8515-b736e36aba87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88c9f7f7-c720-43b2-ac50-d7d5a76e7b9c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T06:48:42.2936439Z","updatedOn":"2018-11-22T06:48:42.2936439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44e14919-123f-4731-bf81-69e94a33fcc7","type":"Microsoft.Authorization/roleAssignments","name":"44e14919-123f-4731-bf81-69e94a33fcc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88cdf2e8-5bc2-4ca0-8e23-74e541c26422","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-12T06:50:17.5434069Z","updatedOn":"2018-12-12T06:50:17.5434069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09f95a7b-cede-4f56-8d5f-04b29960fa0a","type":"Microsoft.Authorization/roleAssignments","name":"09f95a7b-cede-4f56-8d5f-04b29960fa0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"89149cc0-7878-455f-8a31-96d855a63bdd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-14T06:45:38.8092576Z","updatedOn":"2018-11-14T06:45:38.8092576Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea25ecfd-48d0-476c-8f69-aabe91c96e47","type":"Microsoft.Authorization/roleAssignments","name":"ea25ecfd-48d0-476c-8f69-aabe91c96e47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a372213-3a4f-45a0-92b9-5fcc49fecfb0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-22T05:05:26.4372433Z","updatedOn":"2019-10-22T05:05:26.4372433Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da31c7fc-e844-42e7-aa7d-96332502f393","type":"Microsoft.Authorization/roleAssignments","name":"da31c7fc-e844-42e7-aa7d-96332502f393"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a41c179-d22b-43ae-83f0-1f5515bb245f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:19.2136302Z","updatedOn":"2019-04-09T06:35:19.2136302Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd39d246-f152-4e96-af84-3ac161b5aafa","type":"Microsoft.Authorization/roleAssignments","name":"fd39d246-f152-4e96-af84-3ac161b5aafa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a7045fa-9fee-486e-ba3e-33c1a9c89c2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:24.9082258Z","updatedOn":"2019-01-30T06:54:24.9082258Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacf3561-43a4-47d3-9b6c-fe09ab0e2484","type":"Microsoft.Authorization/roleAssignments","name":"cacf3561-43a4-47d3-9b6c-fe09ab0e2484"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a78addb-7a34-4e2f-8838-b6ec9b8b5628","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:35:55.7825128Z","updatedOn":"2019-09-05T08:35:55.7825128Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df98f1e4-c153-4ad2-b1eb-ae54fd649883","type":"Microsoft.Authorization/roleAssignments","name":"df98f1e4-c153-4ad2-b1eb-ae54fd649883"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b4a28be-63be-4e50-91ca-ab9f88d1e441","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:47:20.3790319Z","updatedOn":"2019-06-18T05:47:20.3790319Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aff8bc7d-a807-4428-aeb0-afc34fb52e93","type":"Microsoft.Authorization/roleAssignments","name":"aff8bc7d-a807-4428-aeb0-afc34fb52e93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b600b42-5019-4514-ad2e-14d3b20ff9df","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:39:34.9112754Z","updatedOn":"2018-10-11T05:39:34.9112754Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29789408-9895-46a1-acb1-664dec3c8872","type":"Microsoft.Authorization/roleAssignments","name":"29789408-9895-46a1-acb1-664dec3c8872"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cce118b-f45a-411d-b076-4f849efb6ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:20:31.2207711Z","updatedOn":"2019-06-27T05:20:31.2207711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c6637af-06cb-46b6-a62f-a9e2a62cad31","type":"Microsoft.Authorization/roleAssignments","name":"1c6637af-06cb-46b6-a62f-a9e2a62cad31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce13a5d-7120-4635-b792-8cc697798e81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-03T05:23:07.9499351Z","updatedOn":"2019-10-03T05:23:07.9499351Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7","type":"Microsoft.Authorization/roleAssignments","name":"ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce997ec-1f2a-4796-8b19-e02bf979ffa5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:39:53.3017512Z","updatedOn":"2019-05-18T05:39:53.3017512Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7059ba-fadd-47d2-a59a-ee611e3d77dd","type":"Microsoft.Authorization/roleAssignments","name":"7f7059ba-fadd-47d2-a59a-ee611e3d77dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cea47c6-3e90-4421-8cb2-d9c649b5c0ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-10T02:29:16.1041985Z","updatedOn":"2019-02-10T02:29:16.1041985Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c7b4a4-ec46-40e8-83cc-1d65e8b5d665","type":"Microsoft.Authorization/roleAssignments","name":"77c7b4a4-ec46-40e8-83cc-1d65e8b5d665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8d283b1c-4ca3-490f-8401-4b05f5b57656","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T07:22:15.2349889Z","updatedOn":"2019-01-04T07:22:15.2349889Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a8632df-430e-40c5-9ba8-531b084eb015","type":"Microsoft.Authorization/roleAssignments","name":"3a8632df-430e-40c5-9ba8-531b084eb015"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8dd7bd0c-715c-45e3-b5fe-a597edc16699","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T10:12:32.4633786Z","updatedOn":"2019-01-25T10:12:32.4633786Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d3a1780-6c4e-4c47-8f6d-edd8173e50ed","type":"Microsoft.Authorization/roleAssignments","name":"0d3a1780-6c4e-4c47-8f6d-edd8173e50ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8df306d5-4e1b-4510-840b-9c56ef056301","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T06:47:54.6022805Z","updatedOn":"2018-11-07T06:47:54.6022805Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfdc3356-78c4-408d-93ab-c2dffd9f4578","type":"Microsoft.Authorization/roleAssignments","name":"bfdc3356-78c4-408d-93ab-c2dffd9f4578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8e18e49b-6e52-4124-ac14-f42e6c82c512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:44:44.2494251Z","updatedOn":"2019-06-28T05:44:44.2494251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c9e2473-0b99-4449-93dd-5e74e5d7e3c1","type":"Microsoft.Authorization/roleAssignments","name":"3c9e2473-0b99-4449-93dd-5e74e5d7e3c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8eb60d07-7fb4-4d38-b600-9c7c398ea28b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:34:29.0093148Z","updatedOn":"2019-04-23T05:34:29.0093148Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff24f92f-f8b2-4d0c-a12d-5d3466a1f107","type":"Microsoft.Authorization/roleAssignments","name":"ff24f92f-f8b2-4d0c-a12d-5d3466a1f107"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8fc68847-fe15-4731-9c9c-1d440ec89270","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-26T07:09:45.8107484Z","updatedOn":"2019-02-26T07:09:45.8107484Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d06ea5ab-8242-445f-8edd-c50382796e81","type":"Microsoft.Authorization/roleAssignments","name":"d06ea5ab-8242-445f-8edd-c50382796e81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"902a11a4-40a1-4c17-9139-0070bb53eca4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:45:40.0344224Z","updatedOn":"2018-10-30T05:45:40.0344224Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7","type":"Microsoft.Authorization/roleAssignments","name":"6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9042fba9-7801-4f46-8c28-af4a76a10433","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:35:32.5787562Z","updatedOn":"2019-05-01T05:35:32.5787562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2947240-7bbf-4ab3-ba2b-457afe1f9083","type":"Microsoft.Authorization/roleAssignments","name":"e2947240-7bbf-4ab3-ba2b-457afe1f9083"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c32522-8d64-4774-85ee-3abd6d9cb372","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T06:48:31.8103069Z","updatedOn":"2018-12-20T06:48:31.8103069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66ab78c8-dc8e-410d-a387-d621e4037311","type":"Microsoft.Authorization/roleAssignments","name":"66ab78c8-dc8e-410d-a387-d621e4037311"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c3d926-9c03-4d90-86f4-12866a6da212","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T20:57:30.6864609Z","updatedOn":"2019-04-02T20:57:30.6864609Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bf3be37-b85e-49f9-ace5-e14c018302b5","type":"Microsoft.Authorization/roleAssignments","name":"6bf3be37-b85e-49f9-ace5-e14c018302b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90e83a65-4688-4dfd-93c3-210e9783e992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T07:08:13.7709623Z","updatedOn":"2019-02-21T07:08:13.7709623Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed92bed5-5125-4ac3-9c0e-5c751266239f","type":"Microsoft.Authorization/roleAssignments","name":"ed92bed5-5125-4ac3-9c0e-5c751266239f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"91350478-d2f8-41ef-9cb7-42545ea342c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T00:36:16.8902719Z","updatedOn":"2018-09-27T00:36:16.8902719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f03fbd61-1898-497e-b5b0-aa2def1286f8","type":"Microsoft.Authorization/roleAssignments","name":"f03fbd61-1898-497e-b5b0-aa2def1286f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92db2019-9cdc-4e7d-9249-9b069ca42081","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T05:11:10.3936053Z","updatedOn":"2019-04-04T05:11:10.3936053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5b439b9-3f5e-441a-ab53-af1d2385f640","type":"Microsoft.Authorization/roleAssignments","name":"a5b439b9-3f5e-441a-ab53-af1d2385f640"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92fd0c36-95b6-4540-9c6d-4cc1dba575ce","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T06:50:06.1336080Z","updatedOn":"2019-06-12T06:50:06.1336080Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09ba6b34-76e4-463c-9eec-e73b793f71e2","type":"Microsoft.Authorization/roleAssignments","name":"09ba6b34-76e4-463c-9eec-e73b793f71e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94b95a0b-b2a4-4641-892c-d78dd996e39e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T08:52:33.3535638Z","updatedOn":"2018-09-17T08:52:33.3535638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f3fafc1-9de7-4719-bd1b-9df30f1c574e","type":"Microsoft.Authorization/roleAssignments","name":"5f3fafc1-9de7-4719-bd1b-9df30f1c574e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94e0c796-2393-4338-86ca-ac74457a7d4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:39:29.3097032Z","updatedOn":"2019-05-16T05:39:29.3097032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f3529d-5eb5-4014-958d-048b3d6a3428","type":"Microsoft.Authorization/roleAssignments","name":"68f3529d-5eb5-4014-958d-048b3d6a3428"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9526235b-a8d3-4db5-94e2-2194761f04ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-29T21:05:48.1770851Z","updatedOn":"2019-04-29T21:05:48.1770851Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a400d86-7ca4-44d1-ab4d-c066fd01258f","type":"Microsoft.Authorization/roleAssignments","name":"2a400d86-7ca4-44d1-ab4d-c066fd01258f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"956a52f7-9996-4c8f-953a-66ecc7b451fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:23:11.9575182Z","updatedOn":"2018-09-20T17:23:11.9575182Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0066587c-01c9-479d-8340-55aafbe67b24","type":"Microsoft.Authorization/roleAssignments","name":"0066587c-01c9-479d-8340-55aafbe67b24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"95a583f2-61d2-4237-a127-c85658478534","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T10:26:39.0170505Z","updatedOn":"2018-11-02T10:26:39.0170505Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ed51071-ce4e-466c-bca6-629e2053b7a8","type":"Microsoft.Authorization/roleAssignments","name":"9ed51071-ce4e-466c-bca6-629e2053b7a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"966839c9-4964-4642-9c76-4eb430fbb0dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T06:35:32.5337994Z","updatedOn":"2019-04-30T06:35:32.5337994Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81eda284-d81f-48d8-84ef-cc4207c6e86d","type":"Microsoft.Authorization/roleAssignments","name":"81eda284-d81f-48d8-84ef-cc4207c6e86d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"96ce046c-a39e-4dcc-a9c7-26d1604294d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:33:20.5140104Z","updatedOn":"2018-10-10T00:33:20.5140104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b54cb9c8-c8e3-4adc-86b5-f6dd436a794e","type":"Microsoft.Authorization/roleAssignments","name":"b54cb9c8-c8e3-4adc-86b5-f6dd436a794e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"973fdd79-4ab9-438e-87c3-954cca1889e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T19:09:54.9071757Z","updatedOn":"2018-09-21T19:09:54.9071757Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4890276-7fa1-47a7-9d82-f0a4ceff9bd6","type":"Microsoft.Authorization/roleAssignments","name":"a4890276-7fa1-47a7-9d82-f0a4ceff9bd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"97a313c7-04c3-4f12-833e-7c3618d39fcf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T02:03:26.0775557Z","updatedOn":"2019-10-16T02:03:26.0775557Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/152b2f63-3360-4ab8-a651-02b6dd4a11cc","type":"Microsoft.Authorization/roleAssignments","name":"152b2f63-3360-4ab8-a651-02b6dd4a11cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99220f34-fe4d-4bb9-a54f-8cef2c114bec","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:24:15.1904918Z","updatedOn":"2019-11-13T02:24:15.1904918Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35b39af0-258c-488a-91d0-a744d937d7d0","type":"Microsoft.Authorization/roleAssignments","name":"35b39af0-258c-488a-91d0-a744d937d7d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99700559-cdad-4091-a4d3-7d3c7c00aa13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T23:46:59.6876593Z","updatedOn":"2018-10-22T23:46:59.6876593Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498ba808-50e6-458a-8424-7f2d7f2a7301","type":"Microsoft.Authorization/roleAssignments","name":"498ba808-50e6-458a-8424-7f2d7f2a7301"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99a420c5-4e79-4f11-8c23-32753b52724a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T05:09:11.0675968Z","updatedOn":"2019-03-23T05:09:11.0675968Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf2e130b-d004-4383-9804-06c2171b0288","type":"Microsoft.Authorization/roleAssignments","name":"bf2e130b-d004-4383-9804-06c2171b0288"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a6dc341-d468-44d6-94be-2d4821992bad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-03T05:43:48.8223435Z","updatedOn":"2018-11-03T05:43:48.8223435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21dcd364-1ea4-48fa-b1ae-0cd08879ce76","type":"Microsoft.Authorization/roleAssignments","name":"21dcd364-1ea4-48fa-b1ae-0cd08879ce76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a9bb0ad-706d-4fac-9148-ac7bafbed792","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:19:55.3235159Z","updatedOn":"2019-06-18T05:19:55.3235159Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b57ee67-74d0-4464-a426-91c542941aeb","type":"Microsoft.Authorization/roleAssignments","name":"7b57ee67-74d0-4464-a426-91c542941aeb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9ab4b53a-f653-4435-96a3-d3aefff7cb58","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T18:12:41.8499729Z","updatedOn":"2019-03-06T18:12:41.8499729Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f74c3436-bfae-4d2b-a166-4d0c02c0c4c6","type":"Microsoft.Authorization/roleAssignments","name":"f74c3436-bfae-4d2b-a166-4d0c02c0c4c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9aba653f-e80e-448b-afcd-1a47869d89f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:42:13.7118153Z","updatedOn":"2019-06-04T05:42:13.7118153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc4a8add-51e0-4d4c-8e77-c47ec8fd7175","type":"Microsoft.Authorization/roleAssignments","name":"cc4a8add-51e0-4d4c-8e77-c47ec8fd7175"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9afc95b9-edfd-448c-bb0b-1b7abf1c6fc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-10T06:48:45.7376251Z","updatedOn":"2019-01-10T06:48:45.7376251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7110ba81-9350-423e-92d4-28acbc736450","type":"Microsoft.Authorization/roleAssignments","name":"7110ba81-9350-423e-92d4-28acbc736450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b2c325b-5fe9-4e47-a282-fa1abcf8776a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T16:29:06.8822482Z","updatedOn":"2019-04-15T16:29:06.8822482Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/977d6039-fe49-4c53-86ac-b161e9dd6c8c","type":"Microsoft.Authorization/roleAssignments","name":"977d6039-fe49-4c53-86ac-b161e9dd6c8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b78ddbe-f951-4b54-8664-a1d1e733b57b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:45:44.9172054Z","updatedOn":"2019-06-13T05:45:44.9172054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee329a91-9efc-4ef8-a257-ea59b003c3c9","type":"Microsoft.Authorization/roleAssignments","name":"ee329a91-9efc-4ef8-a257-ea59b003c3c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9bab0d02-a25b-4b5e-b9be-4f9a49dadba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:18:36.3066640Z","updatedOn":"2018-10-01T15:18:36.3066640Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7d430e5-ff53-4dd4-ace1-379422b85604","type":"Microsoft.Authorization/roleAssignments","name":"c7d430e5-ff53-4dd4-ace1-379422b85604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c42adac-d61f-4d8f-8132-e31693de6e8e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-11T05:45:52.8300069Z","updatedOn":"2019-07-11T05:45:52.8300069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3795c22-f90a-4f8d-ac89-21f706d82187","type":"Microsoft.Authorization/roleAssignments","name":"c3795c22-f90a-4f8d-ac89-21f706d82187"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9da0e757-9f4e-4543-943c-6b16fe5f0f4c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T04:28:01.1738154Z","updatedOn":"2018-10-19T04:28:01.1738154Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ec5ac44-f810-40ad-9487-19d76f80cea6","type":"Microsoft.Authorization/roleAssignments","name":"7ec5ac44-f810-40ad-9487-19d76f80cea6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9dba7961-7957-481c-8051-8071dafadda8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:22:07.3061671Z","updatedOn":"2019-06-13T05:22:07.3061671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ced9f0b-a5bf-477c-af42-f9b39bceae30","type":"Microsoft.Authorization/roleAssignments","name":"9ced9f0b-a5bf-477c-af42-f9b39bceae30"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9f3b7506-275d-42ac-b3f0-6be0759f6b33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:21.5433604Z","updatedOn":"2019-04-06T06:34:21.5433604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cb49b8-5b1f-47c4-80ec-317954d04d9d","type":"Microsoft.Authorization/roleAssignments","name":"28cb49b8-5b1f-47c4-80ec-317954d04d9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fa4707d-784f-40ba-a6eb-42ee9334d0d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T04:45:06.2466603Z","updatedOn":"2019-04-14T04:45:06.2466603Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb46e4a6-a08b-4eca-a141-d72826228a9d","type":"Microsoft.Authorization/roleAssignments","name":"bb46e4a6-a08b-4eca-a141-d72826228a9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fdcac14-69e2-4d18-b9ed-ef5b07406baa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T04:07:17.7698444Z","updatedOn":"2019-02-21T04:07:17.7698444Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f34531c-c5ee-4068-9f91-c70364da9bd3","type":"Microsoft.Authorization/roleAssignments","name":"6f34531c-c5ee-4068-9f91-c70364da9bd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0101678-1509-4141-95fa-906232f58867","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T09:41:29.1946029Z","updatedOn":"2018-10-22T09:41:29.1946029Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/659bf497-76cb-48d2-985b-5eaa381210cf","type":"Microsoft.Authorization/roleAssignments","name":"659bf497-76cb-48d2-985b-5eaa381210cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0626b63-67c7-4a1f-bfa4-7a6aa4ef02af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-12T05:41:53.7995554Z","updatedOn":"2019-07-12T05:41:53.7995554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94316f4a-b82a-46d2-ae7d-c45081e1f975","type":"Microsoft.Authorization/roleAssignments","name":"94316f4a-b82a-46d2-ae7d-c45081e1f975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0a6bb6b-a1a1-44e2-a28e-92734bf9f1dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T00:41:50.9338611Z","updatedOn":"2018-11-10T00:41:50.9338611Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6da3558-59f7-4a94-b6da-b6e00a41f6ff","type":"Microsoft.Authorization/roleAssignments","name":"f6da3558-59f7-4a94-b6da-b6e00a41f6ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a181cdd4-c095-4eeb-b32a-2530da83e0be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-29T04:42:39.0364865Z","updatedOn":"2019-10-29T04:42:39.0364865Z","createdBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","updatedBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/996ff6f9-6439-4ecf-b98c-91e75e12a91e","type":"Microsoft.Authorization/roleAssignments","name":"996ff6f9-6439-4ecf-b98c-91e75e12a91e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2306cdc-0c7d-4856-8c8b-179afa5299a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T01:58:36.8350229Z","updatedOn":"2019-03-06T01:58:36.8350229Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb9abd22-00ae-4e62-9a4a-0afa7174c822","type":"Microsoft.Authorization/roleAssignments","name":"cb9abd22-00ae-4e62-9a4a-0afa7174c822"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a253c971-5961-4bf9-be61-111a0c28e80b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:40:41.4834850Z","updatedOn":"2018-10-12T11:40:41.4834850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3694ba0d-4c2f-4771-a037-7c5834e6b69e","type":"Microsoft.Authorization/roleAssignments","name":"3694ba0d-4c2f-4771-a037-7c5834e6b69e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a29cca37-9663-47fe-b567-0a47abbb526a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T06:40:53.5249439Z","updatedOn":"2019-05-08T06:40:53.5249439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96bbdfbe-163c-4416-99e3-2866d37e0d92","type":"Microsoft.Authorization/roleAssignments","name":"96bbdfbe-163c-4416-99e3-2866d37e0d92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2b121b2-3976-4aed-bba8-f42a287ff6b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:38:49.8441700Z","updatedOn":"2019-05-28T05:38:49.8441700Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d72e9c83-2cdd-4497-b4dc-7509eb31d664","type":"Microsoft.Authorization/roleAssignments","name":"d72e9c83-2cdd-4497-b4dc-7509eb31d664"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2e3d7a4-8bcd-4856-9576-c1054a68b3a1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T19:18:33.4597803Z","updatedOn":"2018-09-20T19:18:33.4597803Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6b3d842-ced5-432a-a22e-7d28edaa051b","type":"Microsoft.Authorization/roleAssignments","name":"b6b3d842-ced5-432a-a22e-7d28edaa051b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f21203-0d2d-4f60-bcbf-57c55014be3f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-14T06:08:24.5622596Z","updatedOn":"2019-03-14T06:08:24.5622596Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92dcf5f9-a801-4159-833c-48fa1c348ae4","type":"Microsoft.Authorization/roleAssignments","name":"92dcf5f9-a801-4159-833c-48fa1c348ae4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f8b5f1-cf81-4433-a02e-2f0b6b7d6b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T07:02:54.6808407Z","updatedOn":"2019-02-14T07:02:54.6808407Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0120b64-5a05-417c-b26f-37be79872dd3","type":"Microsoft.Authorization/roleAssignments","name":"e0120b64-5a05-417c-b26f-37be79872dd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a310e62b-99ed-420b-a7ba-bf30a913d91e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T14:41:08.7511374Z","updatedOn":"2018-10-26T14:41:08.7511374Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9054c42b-63f5-42ba-a381-d367de7e354a","type":"Microsoft.Authorization/roleAssignments","name":"9054c42b-63f5-42ba-a381-d367de7e354a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a382f1b1-29c8-4bcc-a54c-d02129d5fba9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-27T07:12:23.8891004Z","updatedOn":"2019-02-27T07:12:23.8891004Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb860114-3e39-4861-994f-91819fa0d3ca","type":"Microsoft.Authorization/roleAssignments","name":"eb860114-3e39-4861-994f-91819fa0d3ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a3b787f3-27c4-4fd7-ba42-4aa10378ac29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-01T06:47:45.9059562Z","updatedOn":"2019-01-01T06:47:45.9059562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/276ec128-d3f9-4699-82ab-a8ecc970352e","type":"Microsoft.Authorization/roleAssignments","name":"276ec128-d3f9-4699-82ab-a8ecc970352e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a46d0a52-9b2d-46b7-8096-0c6577440bca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-17T05:42:45.0314363Z","updatedOn":"2019-07-17T05:42:45.0314363Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9267a054-276b-4d49-99cd-898cbff82843","type":"Microsoft.Authorization/roleAssignments","name":"9267a054-276b-4d49-99cd-898cbff82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a4e6a3ef-370d-4b96-8484-0f0e7ae097cc","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T04:54:51.7233330Z","updatedOn":"2019-02-23T04:54:51.7233330Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44a09d24-8afc-4e6f-8194-92c41bc03d2c","type":"Microsoft.Authorization/roleAssignments","name":"44a09d24-8afc-4e6f-8194-92c41bc03d2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6135302-1245-4266-884a-c8d9c1022c42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:43:42.5439236Z","updatedOn":"2019-06-27T05:43:42.5439236Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f3c2ef7-2a5a-4527-918a-16ac5f0797c5","type":"Microsoft.Authorization/roleAssignments","name":"1f3c2ef7-2a5a-4527-918a-16ac5f0797c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6f922c4-fa7b-4e31-abd6-3a34d8905883","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:46:22.5737011Z","updatedOn":"2019-06-26T05:46:22.5737011Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6416b44d-2f30-4a3a-949b-2e1a26073698","type":"Microsoft.Authorization/roleAssignments","name":"6416b44d-2f30-4a3a-949b-2e1a26073698"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a903f6a3-0f17-47cb-a8b7-7413cce0ed00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:27.0632135Z","updatedOn":"2019-04-09T06:35:27.0632135Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13162400-f169-4077-8ffb-c55bbbf1f2c3","type":"Microsoft.Authorization/roleAssignments","name":"13162400-f169-4077-8ffb-c55bbbf1f2c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9b020ad-f332-44b8-a562-ba8932680ed0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T20:54:49.0099644Z","updatedOn":"2018-10-04T20:54:49.0099644Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ca46671-c580-41b2-a66a-04a97e0b8a12","type":"Microsoft.Authorization/roleAssignments","name":"4ca46671-c580-41b2-a66a-04a97e0b8a12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9ebdc3d-426a-4819-88be-d689e14e68af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:19:22.3698974Z","updatedOn":"2019-06-08T05:19:22.3698974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99e17d3e-d9f8-4981-af91-1ea73dfd9c19","type":"Microsoft.Authorization/roleAssignments","name":"99e17d3e-d9f8-4981-af91-1ea73dfd9c19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa32b4d6-51fb-47cf-89db-5343a594a408","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T07:05:00.8674238Z","updatedOn":"2019-03-07T07:05:00.8674238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56450ccf-742b-447c-8c94-c9fa0cccd67f","type":"Microsoft.Authorization/roleAssignments","name":"56450ccf-742b-447c-8c94-c9fa0cccd67f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa346cd7-57df-4ef3-84ef-2c6bf1a84147","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T21:02:16.5038162Z","updatedOn":"2019-01-16T21:02:16.5038162Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c447d599-ba07-4a39-97b7-c4f78abea945","type":"Microsoft.Authorization/roleAssignments","name":"c447d599-ba07-4a39-97b7-c4f78abea945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa49020e-081f-4e28-aa0f-ce32cf21192c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T06:53:09.1738065Z","updatedOn":"2019-01-05T06:53:09.1738065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9393c663-8793-462d-b7fc-7be4e5e910ac","type":"Microsoft.Authorization/roleAssignments","name":"9393c663-8793-462d-b7fc-7be4e5e910ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa585469-c348-4329-97ff-6685945d8f9f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T10:27:32.3398145Z","updatedOn":"2018-11-01T10:27:32.3398145Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb","type":"Microsoft.Authorization/roleAssignments","name":"fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa9f2ecf-86e4-4633-858e-4f06b9b2c674","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-12T06:50:19.0980758Z","updatedOn":"2019-01-12T06:50:19.0980758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98c8253a-98e0-43be-8515-01078e1b37a3","type":"Microsoft.Authorization/roleAssignments","name":"98c8253a-98e0-43be-8515-01078e1b37a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aaa8709f-51cc-4e4e-b04e-3eb5e6967aeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T17:13:59.1800159Z","updatedOn":"2018-10-09T17:13:59.1800159Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa399f79-9804-482f-b7b6-96e8bb4bcfe4","type":"Microsoft.Authorization/roleAssignments","name":"aa399f79-9804-482f-b7b6-96e8bb4bcfe4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ac49f0af-daf1-40c5-a7c5-976a80349806","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T19:29:43.0393638Z","updatedOn":"2019-02-25T19:29:43.0393638Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2990befc-9d32-467c-82e6-f6d4b9989731","type":"Microsoft.Authorization/roleAssignments","name":"2990befc-9d32-467c-82e6-f6d4b9989731"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"acb8599a-fee7-4e6b-89f0-755bb9235ca3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:55:35.7163035Z","updatedOn":"2018-11-28T06:55:35.7163035Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6795cd6-9bda-4c50-a653-8bf472745dbe","type":"Microsoft.Authorization/roleAssignments","name":"d6795cd6-9bda-4c50-a653-8bf472745dbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad22f583-cfed-469a-af2c-3a63adc692a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:17:52.1695867Z","updatedOn":"2019-05-30T05:17:52.1695867Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab733cd2-c79e-4ef1-8304-26236dd7b8e9","type":"Microsoft.Authorization/roleAssignments","name":"ab733cd2-c79e-4ef1-8304-26236dd7b8e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad2a4f4e-f5f5-436e-8a66-36782fc0d145","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-04T02:36:49.3740605Z","updatedOn":"2019-03-04T02:36:49.3740605Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2261f8b8-19c4-4ec2-9859-59873467d680","type":"Microsoft.Authorization/roleAssignments","name":"2261f8b8-19c4-4ec2-9859-59873467d680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae422a89-c704-46a4-a5f1-860067cd5639","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T09:39:57.1667198Z","updatedOn":"2018-10-24T09:39:57.1667198Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06","type":"Microsoft.Authorization/roleAssignments","name":"8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae5ed965-de4e-41c6-96ed-b1ac228ac3e0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T07:23:49.1957806Z","updatedOn":"2018-12-18T07:23:49.1957806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b946408-cb9c-48c3-bf88-4f958bd8bd8a","type":"Microsoft.Authorization/roleAssignments","name":"7b946408-cb9c-48c3-bf88-4f958bd8bd8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aeaa17a8-25b1-4bda-bdcf-6e2e71d8b8f3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-23T20:37:26.5606718Z","updatedOn":"2018-09-23T20:37:26.5606718Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48f82201-5bd1-4593-a8b4-39ecdb9a826b","type":"Microsoft.Authorization/roleAssignments","name":"48f82201-5bd1-4593-a8b4-39ecdb9a826b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af2835f4-355e-4f7a-8806-fa234f9602a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T01:01:05.9757195Z","updatedOn":"2019-03-03T01:01:05.9757195Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27300599-bdb3-4549-b0ee-af58cad290d7","type":"Microsoft.Authorization/roleAssignments","name":"27300599-bdb3-4549-b0ee-af58cad290d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af9ee309-627b-44ad-bea5-73549c125a36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T06:50:46.0224585Z","updatedOn":"2018-12-06T06:50:46.0224585Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38a72942-3dbe-41f3-ada7-bd13a2d71969","type":"Microsoft.Authorization/roleAssignments","name":"38a72942-3dbe-41f3-ada7-bd13a2d71969"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"afd97d40-49c6-45c4-b0e4-eb8d482b2254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:14:49.2526346Z","updatedOn":"2019-05-07T05:14:49.2526346Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/524ba7d7-94a1-4193-bd4e-d0a8d94dacca","type":"Microsoft.Authorization/roleAssignments","name":"524ba7d7-94a1-4193-bd4e-d0a8d94dacca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b0f12759-0161-43ef-8e8a-23e651dfc0af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-19T12:58:31.5231479Z","updatedOn":"2018-12-19T12:58:31.5231479Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a312231-26e4-487f-b4a9-ecbd34790339","type":"Microsoft.Authorization/roleAssignments","name":"6a312231-26e4-487f-b4a9-ecbd34790339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b14ede10-7826-45a2-b58c-318e681015b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-22T06:51:17.8639291Z","updatedOn":"2019-01-22T06:51:17.8639291Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f7af73d-d2e8-4551-883e-a1792a6a3a9f","type":"Microsoft.Authorization/roleAssignments","name":"3f7af73d-d2e8-4551-883e-a1792a6a3a9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b15e09ba-9556-4000-82b7-81dea127e876","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:43:50.8559602Z","updatedOn":"2018-09-24T18:43:50.8559602Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0182c1e-da2b-4fa2-91b4-51b44e8b83b8","type":"Microsoft.Authorization/roleAssignments","name":"e0182c1e-da2b-4fa2-91b4-51b44e8b83b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b1cea468-9832-4438-96fe-a593593bc811","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T05:11:57.6195736Z","updatedOn":"2019-04-16T05:11:57.6195736Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b1e04fb-4046-42e1-9b51-9bcfff506586","type":"Microsoft.Authorization/roleAssignments","name":"1b1e04fb-4046-42e1-9b51-9bcfff506586"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b261b198-dfa2-4c79-af2a-d9e337cfe5e2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-05T06:48:52.8231877Z","updatedOn":"2018-12-05T06:48:52.8231877Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22e72f12-e2e0-45eb-9e39-d06a80340c7f","type":"Microsoft.Authorization/roleAssignments","name":"22e72f12-e2e0-45eb-9e39-d06a80340c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b2808f7d-4a88-40f8-afe0-6effec977b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T05:37:58.2224362Z","updatedOn":"2019-05-10T05:37:58.2224362Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/175b452d-5cc7-44c4-8dcb-176c44f83e95","type":"Microsoft.Authorization/roleAssignments","name":"175b452d-5cc7-44c4-8dcb-176c44f83e95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b284265d-7d2d-4064-9730-d3fb6d49ffc8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:08:05.4405957Z","updatedOn":"2018-09-26T19:08:05.4405957Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee27c820-20f6-4010-9fe8-beb7dbfdd346","type":"Microsoft.Authorization/roleAssignments","name":"ee27c820-20f6-4010-9fe8-beb7dbfdd346"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3287717-53bc-443a-80c6-d6ce0f67d254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T10:48:29.2424188Z","updatedOn":"2019-02-20T10:48:29.2424188Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/884adc0d-4e9c-47c7-9a8e-6d796cef4b4a","type":"Microsoft.Authorization/roleAssignments","name":"884adc0d-4e9c-47c7-9a8e-6d796cef4b4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b356511a-3b5c-4810-9575-d4d703f34507","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T06:40:22.3394494Z","updatedOn":"2019-05-14T06:40:22.3394494Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1149e65-c253-4666-9bce-684b10a05773","type":"Microsoft.Authorization/roleAssignments","name":"a1149e65-c253-4666-9bce-684b10a05773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3c65970-4a68-4ca0-b390-f95b599302ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-28T07:12:36.6368711Z","updatedOn":"2019-02-28T07:12:36.6368711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa39d789-620c-486f-a0ee-6b865665ff63","type":"Microsoft.Authorization/roleAssignments","name":"fa39d789-620c-486f-a0ee-6b865665ff63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b40cfee1-4c2d-452a-b44f-575ae40a8e45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:44:08.3454638Z","updatedOn":"2018-10-20T05:44:08.3454638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8226950-1330-4e58-820d-72304e1c5646","type":"Microsoft.Authorization/roleAssignments","name":"e8226950-1330-4e58-820d-72304e1c5646"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4542d7d-6a56-4352-8b6c-c6559ced173e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T09:44:26.1478824Z","updatedOn":"2019-02-14T09:44:26.1478824Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23c74aca-09b5-476f-8bfe-53a2f186a2bf","type":"Microsoft.Authorization/roleAssignments","name":"23c74aca-09b5-476f-8bfe-53a2f186a2bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b46a50ce-6f5a-497c-8018-cc0a22b7af49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:16:15.6414516Z","updatedOn":"2019-05-18T05:16:15.6414516Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b0a6c82-8d5e-463b-9a0a-0928f8966048","type":"Microsoft.Authorization/roleAssignments","name":"8b0a6c82-8d5e-463b-9a0a-0928f8966048"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b48168c3-719a-4759-8136-7c968992d4c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:37:22.4586770Z","updatedOn":"2019-04-27T05:37:22.4586770Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a2f7cea1-332c-445c-80ed-5ce645ebbb3b","type":"Microsoft.Authorization/roleAssignments","name":"a2f7cea1-332c-445c-80ed-5ce645ebbb3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4b4e928-9dfb-4d4e-be44-edd40b30e54d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:41:28.2668758Z","updatedOn":"2019-05-17T05:41:28.2668758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e02c4cbe-82f7-46cc-a7a0-4e4fec122637","type":"Microsoft.Authorization/roleAssignments","name":"e02c4cbe-82f7-46cc-a7a0-4e4fec122637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b5a4a66a-cfd4-49d5-8176-3853f76f06b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:49:40.6763834Z","updatedOn":"2018-09-18T23:49:40.6763834Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/011b3c5e-fb1f-4e86-bd96-30484982ba84","type":"Microsoft.Authorization/roleAssignments","name":"011b3c5e-fb1f-4e86-bd96-30484982ba84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b6c26947-20b2-4a64-b80f-44f8290cd1bc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:45:21.9378726Z","updatedOn":"2018-10-27T05:45:21.9378726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80273883-944e-4a02-bf1c-ea766d25fd24","type":"Microsoft.Authorization/roleAssignments","name":"80273883-944e-4a02-bf1c-ea766d25fd24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b781bab2-120a-4856-bb2e-b09c8fea0830","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-24T16:33:25.4669072Z","updatedOn":"2019-02-24T16:33:25.4669072Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00ed8c7c-f210-4034-b75b-8d80362aa1bc","type":"Microsoft.Authorization/roleAssignments","name":"00ed8c7c-f210-4034-b75b-8d80362aa1bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7a5c9dc-d498-401a-9905-ca8aff22b5e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T05:10:34.8900726Z","updatedOn":"2019-03-30T05:10:34.8900726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9f5109-8847-41bd-b0d4-ab5e1d90283f","type":"Microsoft.Authorization/roleAssignments","name":"8d9f5109-8847-41bd-b0d4-ab5e1d90283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7b6c717-3e9b-4238-83be-88859e1af527","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-11T06:48:36.5214424Z","updatedOn":"2019-01-11T06:48:36.5214424Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a15106-be24-4076-8ddc-ff1516a902a8","type":"Microsoft.Authorization/roleAssignments","name":"80a15106-be24-4076-8ddc-ff1516a902a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b87eaab1-09df-43b9-94df-c48de3ca9fd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:13:34.4204279Z","updatedOn":"2019-05-02T05:13:34.4204279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9f44a37-d753-44f3-9558-fe38588b564b","type":"Microsoft.Authorization/roleAssignments","name":"e9f44a37-d753-44f3-9558-fe38588b564b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b93cb31a-c1af-40df-9de5-c323f7adf817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:48:18.5335575Z","updatedOn":"2018-10-19T05:48:18.5335575Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2972b8c-3494-4141-badc-de7508941ddf","type":"Microsoft.Authorization/roleAssignments","name":"d2972b8c-3494-4141-badc-de7508941ddf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"baa56935-952a-43ce-84f4-d3c01b700b5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:43:22.2691800Z","updatedOn":"2018-10-24T05:43:22.2691800Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3960217-4c25-4759-ab03-f8208524e7b4","type":"Microsoft.Authorization/roleAssignments","name":"e3960217-4c25-4759-ab03-f8208524e7b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bad1513e-0d0b-49b2-8a5b-be1d3f48ded5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T06:48:00.1454038Z","updatedOn":"2018-11-13T06:48:00.1454038Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47e10457-1640-4e72-8f8a-03f5981383d7","type":"Microsoft.Authorization/roleAssignments","name":"47e10457-1640-4e72-8f8a-03f5981383d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bb2a5902-4c8c-4af8-91f1-d7a8268e73ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T20:18:17.1387327Z","updatedOn":"2018-11-23T20:18:17.1387327Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eae11fff-74b2-4a75-a923-d4a825bdff7a","type":"Microsoft.Authorization/roleAssignments","name":"eae11fff-74b2-4a75-a923-d4a825bdff7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc7b6508-3587-43db-9af9-2b64c8409b51","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T06:47:46.8169414Z","updatedOn":"2018-12-11T06:47:46.8169414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d58e02e5-5169-469c-bbb1-a2ddb269b310","type":"Microsoft.Authorization/roleAssignments","name":"d58e02e5-5169-469c-bbb1-a2ddb269b310"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc9c773a-fbe4-4d5b-8058-c9689c349039","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T08:09:40.8547368Z","updatedOn":"2019-09-11T08:09:40.8547368Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f39e25c9-b227-48d2-9185-847dd33a9326","type":"Microsoft.Authorization/roleAssignments","name":"f39e25c9-b227-48d2-9185-847dd33a9326"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bf5ee090-115d-45c3-baaf-fb715aab751a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:29.6992040Z","updatedOn":"2019-03-22T06:12:29.6992040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5e3ac77-f857-4a7e-9516-bf5d6978a49c","type":"Microsoft.Authorization/roleAssignments","name":"c5e3ac77-f857-4a7e-9516-bf5d6978a49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c07f6b2d-2fe6-461d-ba0a-29781dabe187","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:55.8846964Z","updatedOn":"2019-04-06T06:34:55.8846964Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ade3299-524c-4863-ba51-99b80d12132b","type":"Microsoft.Authorization/roleAssignments","name":"0ade3299-524c-4863-ba51-99b80d12132b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c0fef8ec-7820-4513-aefb-185ee40ae942","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T06:49:15.9413629Z","updatedOn":"2018-11-06T06:49:15.9413629Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be8c0792-f3a0-4bde-a124-4839576984df","type":"Microsoft.Authorization/roleAssignments","name":"be8c0792-f3a0-4bde-a124-4839576984df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c115ca8d-290f-453d-a030-505970f12fac","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T14:46:51.4676579Z","updatedOn":"2018-10-29T14:46:51.4676579Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb","type":"Microsoft.Authorization/roleAssignments","name":"9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c11b39f7-26c3-4dfc-8d0f-20dde3187845","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T18:31:05.4586182Z","updatedOn":"2018-12-13T18:31:05.4586182Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4901f853-a3c6-47e4-9495-2aeb09fb4491","type":"Microsoft.Authorization/roleAssignments","name":"4901f853-a3c6-47e4-9495-2aeb09fb4491"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c1a5670d-1c96-40dc-a29e-3a89185addeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T06:50:23.4662065Z","updatedOn":"2018-11-15T06:50:23.4662065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4830cf2-e9fd-42a6-b102-c3370fb8bc0b","type":"Microsoft.Authorization/roleAssignments","name":"f4830cf2-e9fd-42a6-b102-c3370fb8bc0b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3764ce3-3e3d-439f-92d7-f9b18bb6ce4e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-22T06:49:36.0998904Z","updatedOn":"2018-12-22T06:49:36.0998904Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/861c254f-b71f-49ee-8cee-374230256f41","type":"Microsoft.Authorization/roleAssignments","name":"861c254f-b71f-49ee-8cee-374230256f41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3c00e31-02de-419f-8409-3725b3856427","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T11:21:51.7243563Z","updatedOn":"2018-11-06T11:21:51.7243563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36af12be-6859-4676-a8e5-c5dfbaa2cd2e","type":"Microsoft.Authorization/roleAssignments","name":"36af12be-6859-4676-a8e5-c5dfbaa2cd2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4189c03-f913-4b8c-a77d-34e1eb436eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:39:12.6811204Z","updatedOn":"2019-05-21T05:39:12.6811204Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d33c51c-1683-4dab-8586-879a8a34eea9","type":"Microsoft.Authorization/roleAssignments","name":"3d33c51c-1683-4dab-8586-879a8a34eea9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c483f600-93f7-4d56-8e3e-a40b50356821","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T10:24:13.6577236Z","updatedOn":"2018-10-25T10:24:13.6577236Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1","type":"Microsoft.Authorization/roleAssignments","name":"e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4fe9d36-16a8-42da-bb6c-2388ec72603c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T23:47:15.8860107Z","updatedOn":"2018-11-12T23:47:15.8860107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7628befb-5807-42c8-b66f-aabebae30fc1","type":"Microsoft.Authorization/roleAssignments","name":"7628befb-5807-42c8-b66f-aabebae30fc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c50540b9-3342-46de-894a-3dff2f639687","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-18T02:29:01.1918326Z","updatedOn":"2019-10-18T02:29:01.1918326Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f93f57-2d31-4a40-be24-bc1bcf23dd91","type":"Microsoft.Authorization/roleAssignments","name":"33f93f57-2d31-4a40-be24-bc1bcf23dd91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c54aad68-3150-44c3-802d-e7da8c47ea5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-06T07:05:12.9555216Z","updatedOn":"2019-02-06T07:05:12.9555216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16021127-cd72-4170-a1ac-2b70be097b9a","type":"Microsoft.Authorization/roleAssignments","name":"16021127-cd72-4170-a1ac-2b70be097b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c55cf64d-29d9-462d-8dbc-c0d2ab4716e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T20:11:57.5033211Z","updatedOn":"2019-02-25T20:11:57.5033211Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebc41276-3624-42d1-b5e8-427fd5a11e2b","type":"Microsoft.Authorization/roleAssignments","name":"ebc41276-3624-42d1-b5e8-427fd5a11e2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c5c34086-aa9d-4c49-a5c6-c29efe356fc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T16:45:58.2054394Z","updatedOn":"2019-10-16T16:45:58.2054394Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b5731b2-3473-4fab-a925-c6297bfd8a78","type":"Microsoft.Authorization/roleAssignments","name":"5b5731b2-3473-4fab-a925-c6297bfd8a78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c70747bf-a786-4775-ad07-573ca03f59f5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-17T16:10:29.3503311Z","updatedOn":"2018-10-17T16:10:29.3503311Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6cce06cd-c998-489e-bfa7-33a4fd344730","type":"Microsoft.Authorization/roleAssignments","name":"6cce06cd-c998-489e-bfa7-33a4fd344730"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c7df6fc6-dea8-49a2-a8d6-904134c67f5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T07:52:11.8559141Z","updatedOn":"2019-09-16T07:52:11.8559141Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d16c3b-9db6-4b40-a1b9-346950c6d9c6","type":"Microsoft.Authorization/roleAssignments","name":"99d16c3b-9db6-4b40-a1b9-346950c6d9c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c956a64b-5110-464a-a294-c8ea39864b5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T17:55:29.6021991Z","updatedOn":"2019-06-25T17:55:29.6021991Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6859b12a-1331-4c52-a51a-8b212a6feb33","type":"Microsoft.Authorization/roleAssignments","name":"6859b12a-1331-4c52-a51a-8b212a6feb33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9b95a3d-e5af-43f9-932f-7136b24dc30b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:17:02.3079210Z","updatedOn":"2019-05-25T05:17:02.3079210Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0b87fc2-39e3-4ba0-aca5-c5783946a35b","type":"Microsoft.Authorization/roleAssignments","name":"b0b87fc2-39e3-4ba0-aca5-c5783946a35b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9e6f60a-7fbf-44f6-8537-5b7904783220","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:49:22.7298911Z","updatedOn":"2019-04-14T03:49:22.7298911Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e70c3b-b156-40a6-9d4d-4382572ab74f","type":"Microsoft.Authorization/roleAssignments","name":"e7e70c3b-b156-40a6-9d4d-4382572ab74f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cb115a45-6550-4919-aae8-fab31a876b1f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T06:32:08.7018686Z","updatedOn":"2019-05-07T06:32:08.7018686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5428a65d-1272-46af-b893-42a3aaaaab3c","type":"Microsoft.Authorization/roleAssignments","name":"5428a65d-1272-46af-b893-42a3aaaaab3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ccfad4dc-6927-4ea8-a15f-19b3f62c8102","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T05:13:49.1299091Z","updatedOn":"2019-03-28T05:13:49.1299091Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21a964bf-3a3f-49c2-b915-9efd03f5d00f","type":"Microsoft.Authorization/roleAssignments","name":"21a964bf-3a3f-49c2-b915-9efd03f5d00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd271855-eae3-4fe2-bf46-a9d8ca0cd083","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T05:11:27.8036785Z","updatedOn":"2019-04-05T05:11:27.8036785Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc06830-88bb-4279-b1a2-ada28b215cbe","type":"Microsoft.Authorization/roleAssignments","name":"1dc06830-88bb-4279-b1a2-ada28b215cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd51dabe-4388-449e-86fc-3fdbd6399392","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:29.4661881Z","updatedOn":"2019-01-29T06:54:29.4661881Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c","type":"Microsoft.Authorization/roleAssignments","name":"c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ce80dfc4-7b3e-4dbd-8c3e-a49427659ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:12:08.2919766Z","updatedOn":"2019-04-23T05:12:08.2919766Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13dae34f-ca2b-4b90-89c6-4aac487b8bbc","type":"Microsoft.Authorization/roleAssignments","name":"13dae34f-ca2b-4b90-89c6-4aac487b8bbc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ceb1d174-81de-49ef-9b29-0ef1abed1597","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T14:39:32.1643609Z","updatedOn":"2018-10-23T14:39:32.1643609Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5be77404-46b2-4a32-aead-8ed887d17b04","type":"Microsoft.Authorization/roleAssignments","name":"5be77404-46b2-4a32-aead-8ed887d17b04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf24ed58-b70c-4c03-9244-498f59b66c71","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T05:11:34.2050879Z","updatedOn":"2019-03-26T05:11:34.2050879Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50121b1c-3060-452a-8932-4cb2f6924601","type":"Microsoft.Authorization/roleAssignments","name":"50121b1c-3060-452a-8932-4cb2f6924601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf97c4f2-3ee9-4b64-b784-6003cba2ac46","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T06:48:49.9299181Z","updatedOn":"2018-12-04T06:48:49.9299181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5f18a5-8c6f-4a9e-8294-413b58703d9a","type":"Microsoft.Authorization/roleAssignments","name":"aa5f18a5-8c6f-4a9e-8294-413b58703d9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfe54dea-a7e8-4a5b-b175-37dc88d8e99e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T05:49:13.7322169Z","updatedOn":"2018-10-31T05:49:13.7322169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a515592c-c6e5-47e4-9642-c9264fcfa9d7","type":"Microsoft.Authorization/roleAssignments","name":"a515592c-c6e5-47e4-9642-c9264fcfa9d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfed68c0-dc27-409e-90c9-db9b72a2d004","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:48:01.2890417Z","updatedOn":"2018-10-26T05:48:01.2890417Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baadff0c-524e-43e5-8fd3-0170420f39b1","type":"Microsoft.Authorization/roleAssignments","name":"baadff0c-524e-43e5-8fd3-0170420f39b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d00aa246-4e4d-4221-af66-822a1e403423","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:55:45.3557173Z","updatedOn":"2018-10-23T16:55:45.3557173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec341a9c-e726-45f9-9f84-7654eda2fdc2","type":"Microsoft.Authorization/roleAssignments","name":"ec341a9c-e726-45f9-9f84-7654eda2fdc2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d0770fbc-c9df-4c0c-aa80-4406d287e609","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:47:07.4610935Z","updatedOn":"2019-06-15T05:47:07.4610935Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac2ba190-6fc7-42c4-b3a9-cf21909118b5","type":"Microsoft.Authorization/roleAssignments","name":"ac2ba190-6fc7-42c4-b3a9-cf21909118b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d135367a-3a97-4582-8a81-d6b8e54df03e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T06:42:28.3289628Z","updatedOn":"2019-05-18T06:42:28.3289628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e456abce-82b7-4937-b118-0139e0022167","type":"Microsoft.Authorization/roleAssignments","name":"e456abce-82b7-4937-b118-0139e0022167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1432718-0865-47b5-924b-f51837471e90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:56:11.2493227Z","updatedOn":"2018-10-03T05:56:11.2493227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88950f0a-d656-4cd3-841d-b532fe88baa5","type":"Microsoft.Authorization/roleAssignments","name":"88950f0a-d656-4cd3-841d-b532fe88baa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1956391-fb64-4c80-baa5-f5b7c0fe4679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T21:42:54.5977945Z","updatedOn":"2018-10-10T21:42:54.5977945Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e762e6fe-78f3-43d4-ab13-e5a3f5316a3c","type":"Microsoft.Authorization/roleAssignments","name":"e762e6fe-78f3-43d4-ab13-e5a3f5316a3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1f87eac-9245-42d9-95b3-6a753661ab24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T10:40:51.7814881Z","updatedOn":"2018-11-07T10:40:51.7814881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2169a638-419f-4d7f-9258-29bfee8a0930","type":"Microsoft.Authorization/roleAssignments","name":"2169a638-419f-4d7f-9258-29bfee8a0930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2144bca-85ed-4c2b-b727-8460fb73417b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:24:15.8315406Z","updatedOn":"2019-03-28T06:24:15.8315406Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38784b28-8cf3-43ae-8dca-d49195e311bd","type":"Microsoft.Authorization/roleAssignments","name":"38784b28-8cf3-43ae-8dca-d49195e311bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d22a37ff-94a3-46b9-a549-e16b8b71a43c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T04:51:28.2854740Z","updatedOn":"2019-11-13T04:51:28.2854740Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b362e66e-bf5f-4ba5-adaf-88034544377b","type":"Microsoft.Authorization/roleAssignments","name":"b362e66e-bf5f-4ba5-adaf-88034544377b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d28c917f-58f1-4d8d-a8e7-abb3e204ffd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T06:49:00.8611630Z","updatedOn":"2019-06-15T06:49:00.8611630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80c3c956-9e75-4ce5-9eaa-41b67811e99e","type":"Microsoft.Authorization/roleAssignments","name":"80c3c956-9e75-4ce5-9eaa-41b67811e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2b54a4a-fbf6-4ebf-808a-f98e4bb2924f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T10:25:57.1411675Z","updatedOn":"2018-10-23T10:25:57.1411675Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fe54064-c5f3-407a-a9bf-41af2afe2158","type":"Microsoft.Authorization/roleAssignments","name":"3fe54064-c5f3-407a-a9bf-41af2afe2158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2caf3df-cb83-4cad-af2e-065d92cf15dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:46:12.6813036Z","updatedOn":"2018-10-25T05:46:12.6813036Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12d03ad0-cabe-45f0-89be-21efb56e60f9","type":"Microsoft.Authorization/roleAssignments","name":"12d03ad0-cabe-45f0-89be-21efb56e60f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3120b11-89d6-4a95-b3ad-0ddbd9f04050","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-02T06:46:21.7720780Z","updatedOn":"2019-01-02T06:46:21.7720780Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81aa865f-27f4-4fe4-83ef-c3c332521962","type":"Microsoft.Authorization/roleAssignments","name":"81aa865f-27f4-4fe4-83ef-c3c332521962"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d316bf5b-a379-42bd-b0fd-ac498ff40d5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-14T06:50:35.3194075Z","updatedOn":"2018-12-14T06:50:35.3194075Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9531353-1083-47c0-a4e9-b13ab59cb526","type":"Microsoft.Authorization/roleAssignments","name":"a9531353-1083-47c0-a4e9-b13ab59cb526"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3c21087-ec7b-4675-9408-07d911406146","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:17:17.6788395Z","updatedOn":"2019-06-12T05:17:17.6788395Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bcad36-08a2-4536-a4b3-9380f6c1e339","type":"Microsoft.Authorization/roleAssignments","name":"00bcad36-08a2-4536-a4b3-9380f6c1e339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d4010ae5-c45a-4823-84bc-b3e6d7e6e512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:13:19.4148382Z","updatedOn":"2019-04-20T05:13:19.4148382Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da7f98c9-4c59-452a-a735-eca30f73ede0","type":"Microsoft.Authorization/roleAssignments","name":"da7f98c9-4c59-452a-a735-eca30f73ede0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d6db91cb-0a63-4bdd-8877-a68c53221c5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:53:30.9944559Z","updatedOn":"2018-09-18T23:53:30.9944559Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6199caa4-ff24-46a6-b50a-be42fbe9478e","type":"Microsoft.Authorization/roleAssignments","name":"6199caa4-ff24-46a6-b50a-be42fbe9478e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d70637dc-50b3-4ebc-9bdb-aeaf6f192169","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:35:45.9011532Z","updatedOn":"2019-04-30T05:35:45.9011532Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d63f6e48-9e31-4013-9e53-d0d30190fd3f","type":"Microsoft.Authorization/roleAssignments","name":"d63f6e48-9e31-4013-9e53-d0d30190fd3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d7f4b0f6-5e47-4c68-8e89-c8d397368d6b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:26:03.4031173Z","updatedOn":"2018-10-23T16:26:03.4031173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b23e7be9-30d4-4062-9e62-1d5000a46165","type":"Microsoft.Authorization/roleAssignments","name":"b23e7be9-30d4-4062-9e62-1d5000a46165"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d8f4630b-5ae7-49a5-88d6-adc3ad7c5592","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:01:15.5460293Z","updatedOn":"2018-09-27T10:01:15.5460293Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf71afc3-8e72-46be-a917-f22bd591ff02","type":"Microsoft.Authorization/roleAssignments","name":"cf71afc3-8e72-46be-a917-f22bd591ff02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d9043f54-0a86-47c5-a740-4b39df39e0a0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:14:08.8126640Z","updatedOn":"2019-04-30T05:14:08.8126640Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/237d0f39-ba02-481a-a2b8-6b8c4e747958","type":"Microsoft.Authorization/roleAssignments","name":"237d0f39-ba02-481a-a2b8-6b8c4e747958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d948c009-fdab-48aa-a97c-165c07ec0b89","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:09.2424182Z","updatedOn":"2019-01-30T06:54:09.2424182Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baafb840-781c-4bb5-8d99-d29ac492192b","type":"Microsoft.Authorization/roleAssignments","name":"baafb840-781c-4bb5-8d99-d29ac492192b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d960f42f-fc88-4ad5-9353-885dce085fa7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:46:03.8410291Z","updatedOn":"2018-12-11T19:46:03.8410291Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b61345d-b407-4dfc-9d74-3bef26c4d451","type":"Microsoft.Authorization/roleAssignments","name":"4b61345d-b407-4dfc-9d74-3bef26c4d451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"da664414-ab1e-488f-a1c1-81d037f6a1b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:17:10.0928144Z","updatedOn":"2019-05-22T05:17:10.0928144Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab64211-52a4-44af-b9cd-07462f5763f6","type":"Microsoft.Authorization/roleAssignments","name":"8ab64211-52a4-44af-b9cd-07462f5763f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"da74796c-63b3-430c-ae1e-0681cf071fbd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-01T03:31:15.4303795Z","updatedOn":"2019-11-01T03:31:15.4303795Z","createdBy":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863","updatedBy":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea7067c6-7d10-4d6e-9614-f189a87de248","type":"Microsoft.Authorization/roleAssignments","name":"ea7067c6-7d10-4d6e-9614-f189a87de248"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"daaced77-675f-4356-9f87-e78986ff36a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T10:40:05.5875881Z","updatedOn":"2018-11-05T10:40:05.5875881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3c59aae-ad3b-4ff3-8d83-25aa27c4833d","type":"Microsoft.Authorization/roleAssignments","name":"b3c59aae-ad3b-4ff3-8d83-25aa27c4833d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db394df0-524d-4921-8630-d65d71f2165f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T09:42:50.8070319Z","updatedOn":"2018-10-31T09:42:50.8070319Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b65f540b-666d-40cf-a341-27ccb67c8c28","type":"Microsoft.Authorization/roleAssignments","name":"b65f540b-666d-40cf-a341-27ccb67c8c28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db4004a2-1161-4530-ac2f-3168ac1dbfba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T06:32:38.6934724Z","updatedOn":"2019-04-20T06:32:38.6934724Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e80d19b-ae41-44f6-926c-b902fd0c9158","type":"Microsoft.Authorization/roleAssignments","name":"7e80d19b-ae41-44f6-926c-b902fd0c9158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db65a597-9bd4-4259-9632-ffcbfd208b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T18:43:41.6069289Z","updatedOn":"2019-01-31T18:43:41.6069289Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa2a3117-6ca4-4ddf-83c7-511b370735dd","type":"Microsoft.Authorization/roleAssignments","name":"aa2a3117-6ca4-4ddf-83c7-511b370735dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc15c8e4-4230-4f90-b20d-268e196d1813","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:59:35.9649632Z","updatedOn":"2018-09-19T16:59:35.9649632Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c32e312c-7f12-47df-9cdb-eaf99db0df19","type":"Microsoft.Authorization/roleAssignments","name":"c32e312c-7f12-47df-9cdb-eaf99db0df19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc1a3549-229c-4971-93d1-dd2a12439b19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T02:46:17.6374569Z","updatedOn":"2019-09-18T02:46:17.6374569Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79ee6058-9515-427b-a19d-f9a245e4172b","type":"Microsoft.Authorization/roleAssignments","name":"79ee6058-9515-427b-a19d-f9a245e4172b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc7f9c47-a51a-46ba-80c8-fd054aab72cd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-06T20:51:24.1292868Z","updatedOn":"2019-01-06T20:51:24.1292868Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f518f831-d9ff-474a-b74a-632e7a06cf65","type":"Microsoft.Authorization/roleAssignments","name":"f518f831-d9ff-474a-b74a-632e7a06cf65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dd675716-2751-4705-922d-9837095097da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T05:11:12.7455369Z","updatedOn":"2019-04-09T05:11:12.7455369Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3b7cc13-094a-497d-a4cb-674c0889a93e","type":"Microsoft.Authorization/roleAssignments","name":"d3b7cc13-094a-497d-a4cb-674c0889a93e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dda0a530-d000-41b8-b403-828e589b4dda","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T04:20:44.5436786Z","updatedOn":"2018-10-25T04:20:44.5436786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c85da2-f98e-4e93-bf5f-d17bb106a771","type":"Microsoft.Authorization/roleAssignments","name":"77c85da2-f98e-4e93-bf5f-d17bb106a771"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df70f66e-810a-44ed-a81c-5e7fdb462469","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T16:29:57.6054123Z","updatedOn":"2019-05-14T16:29:57.6054123Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fda1a04-04b2-4bfc-a704-24c2cae69f78","type":"Microsoft.Authorization/roleAssignments","name":"6fda1a04-04b2-4bfc-a704-24c2cae69f78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df902ab3-f241-4bda-8260-b7673766f767","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-27T06:51:35.2235619Z","updatedOn":"2018-12-27T06:51:35.2235619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13272b7-22e4-491e-bb62-f1d3d50790eb","type":"Microsoft.Authorization/roleAssignments","name":"f13272b7-22e4-491e-bb62-f1d3d50790eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfa78316-eb12-44e4-837c-9acb8c5d0cf1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T19:10:43.6867523Z","updatedOn":"2019-01-26T19:10:43.6867523Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca533327-8eb3-4a0d-9c8c-65a19e8c87ef","type":"Microsoft.Authorization/roleAssignments","name":"ca533327-8eb3-4a0d-9c8c-65a19e8c87ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfcc4a66-9e66-4f59-a767-caa8e546fcf9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T06:33:13.7973771Z","updatedOn":"2019-04-17T06:33:13.7973771Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/842e8734-95b6-4039-82fb-39183f00b528","type":"Microsoft.Authorization/roleAssignments","name":"842e8734-95b6-4039-82fb-39183f00b528"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e00b75a6-6fc0-4f48-87b9-e8b639667c16","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-14T12:57:49.9426431Z","updatedOn":"2019-10-14T12:57:49.9426431Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be3fd0fe-438b-4b5e-9e4c-2dc04821da8a","type":"Microsoft.Authorization/roleAssignments","name":"be3fd0fe-438b-4b5e-9e4c-2dc04821da8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e037bfb5-59f7-42ac-9139-9636644cae6d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-05T05:39:11.8514441Z","updatedOn":"2019-07-05T05:39:11.8514441Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4","type":"Microsoft.Authorization/roleAssignments","name":"5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e06b0322-1992-45e2-be95-d10076e55ce4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:20.1895394Z","updatedOn":"2019-04-03T06:11:20.1895394Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec","type":"Microsoft.Authorization/roleAssignments","name":"80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e0e70e34-7c95-424d-8dcf-5a54a721cca7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T05:10:52.0339924Z","updatedOn":"2019-04-02T05:10:52.0339924Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1940e67f-5c1a-4075-9f95-be3dbc151994","type":"Microsoft.Authorization/roleAssignments","name":"1940e67f-5c1a-4075-9f95-be3dbc151994"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e107a9e2-2293-47cf-bfc7-0c68725a289a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T17:51:41.1140658Z","updatedOn":"2018-11-09T17:51:41.1140658Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94dc5859-b168-42bf-9561-a41827a21597","type":"Microsoft.Authorization/roleAssignments","name":"94dc5859-b168-42bf-9561-a41827a21597"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e19387a9-5b14-4049-b93e-1d8ecff6e421","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:18:24.9933280Z","updatedOn":"2019-05-09T05:18:24.9933280Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c62f4e2d-43ce-4c75-8c58-e2115666e53a","type":"Microsoft.Authorization/roleAssignments","name":"c62f4e2d-43ce-4c75-8c58-e2115666e53a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2c52a58-edac-4a9e-908c-070aaee677ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T14:41:40.9383041Z","updatedOn":"2018-10-31T14:41:40.9383041Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe79706d-4431-4c77-ac58-c542ebbb88bd","type":"Microsoft.Authorization/roleAssignments","name":"fe79706d-4431-4c77-ac58-c542ebbb88bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2f76937-0f09-4547-9df8-0af9621d773b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:38:51.0761001Z","updatedOn":"2019-05-14T05:38:51.0761001Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/888b2959-c9fb-406a-850f-9c898d01d2a3","type":"Microsoft.Authorization/roleAssignments","name":"888b2959-c9fb-406a-850f-9c898d01d2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e30dc24c-f495-4e89-8e2c-37415662502e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:41:41.0196120Z","updatedOn":"2018-09-27T10:41:41.0196120Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/574b48d4-e18d-4990-a10f-c11b59679b2c","type":"Microsoft.Authorization/roleAssignments","name":"574b48d4-e18d-4990-a10f-c11b59679b2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e34bede7-eff9-4901-a421-db8ea321021f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T22:28:30.9708597Z","updatedOn":"2018-09-21T22:28:30.9708597Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2661841d-d979-45ee-ac37-5438c3b68ce3","type":"Microsoft.Authorization/roleAssignments","name":"2661841d-d979-45ee-ac37-5438c3b68ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e3696682-bf2d-4945-977e-ef7248f2f841","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T20:11:58.1212576Z","updatedOn":"2018-10-10T20:11:58.1212576Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e95bb61d-eee2-482c-8b26-e63d68d8b7c9","type":"Microsoft.Authorization/roleAssignments","name":"e95bb61d-eee2-482c-8b26-e63d68d8b7c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4640f2b-484b-487c-b2eb-badc4c8b20be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:12:04.1728439Z","updatedOn":"2018-10-03T21:12:04.1728439Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/921f26e2-0616-4bcf-9ce1-367ffbffb91a","type":"Microsoft.Authorization/roleAssignments","name":"921f26e2-0616-4bcf-9ce1-367ffbffb91a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e49b9853-05d6-4483-8a13-09ab92649bf4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-17T06:52:09.8666638Z","updatedOn":"2018-11-17T06:52:09.8666638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f047a8be-5857-4a34-9b54-5162bb957cda","type":"Microsoft.Authorization/roleAssignments","name":"f047a8be-5857-4a34-9b54-5162bb957cda"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4acab8d-85f5-40d7-b435-fedb84e267d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T06:50:11.8734444Z","updatedOn":"2019-01-08T06:50:11.8734444Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c02a7cf-d6ee-41fb-ae36-78584d496fba","type":"Microsoft.Authorization/roleAssignments","name":"9c02a7cf-d6ee-41fb-ae36-78584d496fba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e51c59a1-2fc1-43a2-bb97-f1a8c3cfaa04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:45.3923768Z","updatedOn":"2018-10-09T05:36:45.3923768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b9876f4-77b2-4641-94c6-4841f60e4847","type":"Microsoft.Authorization/roleAssignments","name":"4b9876f4-77b2-4641-94c6-4841f60e4847"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e54b25df-e33e-4fc8-a902-47eb3e003393","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-04T06:40:59.1110452Z","updatedOn":"2019-09-04T06:40:59.1110452Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f29b1a13-bd85-46fb-86a9-7344625aae55","type":"Microsoft.Authorization/roleAssignments","name":"f29b1a13-bd85-46fb-86a9-7344625aae55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e54e05a4-bb09-4e57-883f-f6d293542c5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T14:19:08.0027870Z","updatedOn":"2019-01-05T14:19:08.0027870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/370a1221-368e-422a-aa9f-6fc9e44e6bca","type":"Microsoft.Authorization/roleAssignments","name":"370a1221-368e-422a-aa9f-6fc9e44e6bca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e6026d46-d4a8-4f87-bb3e-3baf9459af8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:16.5748095Z","updatedOn":"2019-01-29T06:54:16.5748095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e26fc3af-b00c-4769-915a-3617f01523bb","type":"Microsoft.Authorization/roleAssignments","name":"e26fc3af-b00c-4769-915a-3617f01523bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e62a5697-a15c-4334-99b8-ee4d71502723","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:38:10.0897377Z","updatedOn":"2019-05-11T05:38:10.0897377Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5da9f69-7824-4de7-8221-805a4abd98aa","type":"Microsoft.Authorization/roleAssignments","name":"a5da9f69-7824-4de7-8221-805a4abd98aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e643033e-2797-4cd1-bea0-6641e5b92e22","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:56:54.3184019Z","updatedOn":"2018-09-28T05:56:54.3184019Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf256161-a290-414b-b882-8124aee1d18f","type":"Microsoft.Authorization/roleAssignments","name":"cf256161-a290-414b-b882-8124aee1d18f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e675fccf-56c0-4ff7-8422-7ec61abb71aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T06:48:56.0895695Z","updatedOn":"2019-06-29T06:48:56.0895695Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/712b7791-9b32-4aea-b1ac-88dd09bcf21f","type":"Microsoft.Authorization/roleAssignments","name":"712b7791-9b32-4aea-b1ac-88dd09bcf21f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7b51e8c-e2bc-4995-9fd6-8fba299a697b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T21:21:29.0456925Z","updatedOn":"2018-10-16T21:21:29.0456925Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a676414b-de5c-4cdc-b12e-be7efd1c9201","type":"Microsoft.Authorization/roleAssignments","name":"a676414b-de5c-4cdc-b12e-be7efd1c9201"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7e8644a-035e-42fc-b884-94399a127f78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-25T06:04:36.9767266Z","updatedOn":"2019-09-25T06:04:36.9767266Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26b4ce18-5649-45f7-964f-36087586eb7c","type":"Microsoft.Authorization/roleAssignments","name":"26b4ce18-5649-45f7-964f-36087586eb7c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e82a88b9-378c-46e2-927c-5c31b169943a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-18T06:51:49.6591216Z","updatedOn":"2019-01-18T06:51:49.6591216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b5df3b6-1025-4123-b6eb-d0ff78511c3c","type":"Microsoft.Authorization/roleAssignments","name":"7b5df3b6-1025-4123-b6eb-d0ff78511c3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e979acbc-d9f3-4bc8-a577-d507f284fd64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T07:05:59.2701340Z","updatedOn":"2019-02-13T07:05:59.2701340Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d4036f4-9da4-4b75-b3cb-bea1e1587637","type":"Microsoft.Authorization/roleAssignments","name":"4d4036f4-9da4-4b75-b3cb-bea1e1587637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e97f382e-06de-4c02-ae49-1b472d457b5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T06:48:52.2100303Z","updatedOn":"2018-12-13T06:48:52.2100303Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e201ee26-fa57-484c-b996-e80d351409fd","type":"Microsoft.Authorization/roleAssignments","name":"e201ee26-fa57-484c-b996-e80d351409fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e9828cac-b36d-49c5-ac90-20be05e4d24d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T05:07:01.3282577Z","updatedOn":"2018-10-10T05:07:01.3282577Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff93b77-1a32-46d2-8560-f71cd70f1ebd","type":"Microsoft.Authorization/roleAssignments","name":"8ff93b77-1a32-46d2-8560-f71cd70f1ebd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ea36e992-4a2f-45a3-a912-a54a2d30fc0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T11:21:21.5808774Z","updatedOn":"2018-11-05T11:21:21.5808774Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc53456a-6608-4c33-9491-4d1a5afdea55","type":"Microsoft.Authorization/roleAssignments","name":"bc53456a-6608-4c33-9491-4d1a5afdea55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaa6ed61-48bf-43a3-9612-b2100b017464","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T06:51:17.2248433Z","updatedOn":"2018-11-16T06:51:17.2248433Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c6e9372-b60f-400a-923e-5bf10461039d","type":"Microsoft.Authorization/roleAssignments","name":"5c6e9372-b60f-400a-923e-5bf10461039d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab7796a-9356-4cc3-9013-b7b05f366e6e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T06:38:38.0393711Z","updatedOn":"2019-05-11T06:38:38.0393711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1bfee263-2d52-452f-8bc4-69506742a6dc","type":"Microsoft.Authorization/roleAssignments","name":"1bfee263-2d52-452f-8bc4-69506742a6dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab79c72-4ae1-418d-959c-3189fcd38f83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T06:47:15.3844106Z","updatedOn":"2019-06-27T06:47:15.3844106Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7570d9e5-b430-4887-beb7-248bb541fc0f","type":"Microsoft.Authorization/roleAssignments","name":"7570d9e5-b430-4887-beb7-248bb541fc0f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eade49e1-acfb-4ea4-ae49-a623f535fb18","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T06:45:44.1143351Z","updatedOn":"2019-05-03T06:45:44.1143351Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39c4676b-567c-4f1c-97d5-c3ed9daa362a","type":"Microsoft.Authorization/roleAssignments","name":"39c4676b-567c-4f1c-97d5-c3ed9daa362a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaeae412-d60d-4d7a-908c-145c6bf3fbf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T05:12:09.4309329Z","updatedOn":"2019-04-13T05:12:09.4309329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/efa03a0f-bc71-4070-bee7-3941291a7551","type":"Microsoft.Authorization/roleAssignments","name":"efa03a0f-bc71-4070-bee7-3941291a7551"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb21d0ed-cf9a-4e1a-91c6-fcbbe79087ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:23.0325690Z","updatedOn":"2019-04-05T06:36:23.0325690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfb5446f-1343-4c99-84ae-7e0d582fffe7","type":"Microsoft.Authorization/roleAssignments","name":"dfb5446f-1343-4c99-84ae-7e0d582fffe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb97db0b-0e80-43c9-bcc3-de7aeaf94664","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:59.8441024Z","updatedOn":"2019-03-27T06:15:59.8441024Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f","type":"Microsoft.Authorization/roleAssignments","name":"ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec57ccc5-2f42-431d-a500-a89f6b520a69","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-29T06:47:51.0639763Z","updatedOn":"2018-12-29T06:47:51.0639763Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3215167-e3e0-49d9-a7bf-9f2a630d3df8","type":"Microsoft.Authorization/roleAssignments","name":"b3215167-e3e0-49d9-a7bf-9f2a630d3df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec7af31f-8df5-41fc-8ce0-3e400f87b2f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T15:42:33.2721176Z","updatedOn":"2018-09-28T15:42:33.2721176Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/933415b4-7989-4967-9573-b3391a105890","type":"Microsoft.Authorization/roleAssignments","name":"933415b4-7989-4967-9573-b3391a105890"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ecd227f4-6172-4cb0-b71e-fc375b24890e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-05T07:09:55.8763875Z","updatedOn":"2019-03-05T07:09:55.8763875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33","type":"Microsoft.Authorization/roleAssignments","name":"6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"edc08fc8-a655-45cb-bc3a-dc7c6eb2276e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T22:49:39.8210549Z","updatedOn":"2018-11-08T22:49:39.8210549Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86afb984-5cee-4133-b945-19308dccc30e","type":"Microsoft.Authorization/roleAssignments","name":"86afb984-5cee-4133-b945-19308dccc30e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee02061f-5d48-4b61-a0ed-f021507f073a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:51:58.0601465Z","updatedOn":"2018-09-18T23:51:58.0601465Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442128eb-c84c-4bfd-aaf3-78461a82d37a","type":"Microsoft.Authorization/roleAssignments","name":"442128eb-c84c-4bfd-aaf3-78461a82d37a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee22eca7-314f-419d-8c4c-afb7dfdb067a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:47:10.4443784Z","updatedOn":"2019-06-29T05:47:10.4443784Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70da3654-07cc-498a-ae86-7b555af271fa","type":"Microsoft.Authorization/roleAssignments","name":"70da3654-07cc-498a-ae86-7b555af271fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ef2f674f-9168-4c63-b381-21b1274d486f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-10T02:45:50.4761292Z","updatedOn":"2018-12-10T02:45:50.4761292Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab1e45ce-6cb8-4f36-b317-a5e69c765de8","type":"Microsoft.Authorization/roleAssignments","name":"ab1e45ce-6cb8-4f36-b317-a5e69c765de8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f0ee7d27-b2cf-4fef-bffb-d053c7e525e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-15T06:50:10.0183556Z","updatedOn":"2018-12-15T06:50:10.0183556Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b05e83dd-0a32-4362-bf41-533eefec78fe","type":"Microsoft.Authorization/roleAssignments","name":"b05e83dd-0a32-4362-bf41-533eefec78fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f12d73d6-38bf-446c-bcf2-06cdf7c751f6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:17:31.1347008Z","updatedOn":"2018-10-05T00:17:31.1347008Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b75eb356-24bd-43ec-9924-8c1fec732b25","type":"Microsoft.Authorization/roleAssignments","name":"b75eb356-24bd-43ec-9924-8c1fec732b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1d2e61d-aff2-479c-8035-71de9c693170","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T06:50:50.2868298Z","updatedOn":"2019-06-26T06:50:50.2868298Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e33e46c8-32a7-4770-94d9-26ed006e5aa7","type":"Microsoft.Authorization/roleAssignments","name":"e33e46c8-32a7-4770-94d9-26ed006e5aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1e96e2a-03c6-48f5-b9b4-efa3f2f7c23a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T11:21:53.3901696Z","updatedOn":"2018-11-07T11:21:53.3901696Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87b0b81-c91b-47ab-ba6a-bc64bef90a96","type":"Microsoft.Authorization/roleAssignments","name":"c87b0b81-c91b-47ab-ba6a-bc64bef90a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2ce8704-eb58-4f53-a001-64706ff5f5cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:16:01.8990158Z","updatedOn":"2019-05-16T05:16:01.8990158Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c3963fb-821b-47ef-a9f3-8b608fcac94f","type":"Microsoft.Authorization/roleAssignments","name":"3c3963fb-821b-47ef-a9f3-8b608fcac94f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2dab8e8-6a37-4c10-8684-b199ed36f6af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:18:29.2774803Z","updatedOn":"2019-06-05T05:18:29.2774803Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eed7a551-3f2f-44ea-8529-f520a2c304bc","type":"Microsoft.Authorization/roleAssignments","name":"eed7a551-3f2f-44ea-8529-f520a2c304bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f34ec5dd-3c0a-41c9-becf-0376cfd68992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T21:29:31.5576007Z","updatedOn":"2019-03-08T21:29:31.5576007Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12b2f6b0-4811-436a-a8bd-5924b2ab21e5","type":"Microsoft.Authorization/roleAssignments","name":"12b2f6b0-4811-436a-a8bd-5924b2ab21e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f3e2492e-9ad2-42a3-847e-c150775639c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-04T01:32:07.5969769Z","updatedOn":"2019-02-04T01:32:07.5969769Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a964fbf-cc11-457c-8ec0-443d4bc1a630","type":"Microsoft.Authorization/roleAssignments","name":"6a964fbf-cc11-457c-8ec0-443d4bc1a630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f40c52bb-3174-418d-bb20-443a38784a98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:14:40.9925500Z","updatedOn":"2019-05-04T05:14:40.9925500Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c1a74f6-2f50-43e4-8041-f306168ecce2","type":"Microsoft.Authorization/roleAssignments","name":"7c1a74f6-2f50-43e4-8041-f306168ecce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f5198c63-8877-46d5-9c35-9c4c490a29ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T06:47:14.5768830Z","updatedOn":"2019-01-15T06:47:14.5768830Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a90e35-892f-42fe-9cc3-95303f8debf8","type":"Microsoft.Authorization/roleAssignments","name":"26a90e35-892f-42fe-9cc3-95303f8debf8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-16T01:33:17.9534350Z","updatedOn":"2019-02-16T01:33:17.9534350Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61ee390f-be86-4b4e-86f3-9e8bafaab2e1","type":"Microsoft.Authorization/roleAssignments","name":"61ee390f-be86-4b4e-86f3-9e8bafaab2e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f685c96d-aa5e-455b-af7d-2e7d94ede7d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-09T07:07:23.8043875Z","updatedOn":"2019-02-09T07:07:23.8043875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0786223d-65f3-40db-81aa-a17f34c9dc28","type":"Microsoft.Authorization/roleAssignments","name":"0786223d-65f3-40db-81aa-a17f34c9dc28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f6c2f6f7-1bbf-4c17-87c6-28c02d7c0637","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T18:01:59.1260407Z","updatedOn":"2018-11-08T18:01:59.1260407Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4b79dcb-c95a-44c2-82cd-e550faad8ac5","type":"Microsoft.Authorization/roleAssignments","name":"c4b79dcb-c95a-44c2-82cd-e550faad8ac5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f730bea3-2472-4fe3-80be-0a1445294eee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T06:35:01.7171966Z","updatedOn":"2019-04-26T06:35:01.7171966Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b6946b2-d0e9-4c65-a6fc-15737bff969d","type":"Microsoft.Authorization/roleAssignments","name":"0b6946b2-d0e9-4c65-a6fc-15737bff969d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f7b9dc01-e8a5-4dd6-a495-e5a60218fa54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T06:56:19.2723414Z","updatedOn":"2018-12-07T06:56:19.2723414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bac40000-696c-48ce-8d64-d164cc7c9584","type":"Microsoft.Authorization/roleAssignments","name":"bac40000-696c-48ce-8d64-d164cc7c9584"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8b44c55-cd62-4be2-9a7b-6f34c02102fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-15T06:39:44.9770992Z","updatedOn":"2019-10-15T06:39:44.9770992Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9f17e1c-8894-4b9f-8961-7e4c9ce0d42e","type":"Microsoft.Authorization/roleAssignments","name":"a9f17e1c-8894-4b9f-8961-7e4c9ce0d42e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8cfccf4-e5f4-4f03-92b0-4a7188d128e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:18:44.2822059Z","updatedOn":"2019-06-11T05:18:44.2822059Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/64f20b4f-a2bc-4e40-aaa6-0e38c6376805","type":"Microsoft.Authorization/roleAssignments","name":"64f20b4f-a2bc-4e40-aaa6-0e38c6376805"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8e79c26-a86d-4735-9eea-870bf9776bd8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T14:43:30.1825870Z","updatedOn":"2018-11-02T14:43:30.1825870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18dd5795-e181-4161-9c6d-9d4254b8cb5b","type":"Microsoft.Authorization/roleAssignments","name":"18dd5795-e181-4161-9c6d-9d4254b8cb5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8f4e1d2-5bfc-456e-b2b3-02be2b489975","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T01:07:10.2845079Z","updatedOn":"2019-04-13T01:07:10.2845079Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7b97d48-40ea-4a62-b945-4ecc788b349b","type":"Microsoft.Authorization/roleAssignments","name":"d7b97d48-40ea-4a62-b945-4ecc788b349b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f931cad8-70e4-4763-8a12-1e4de602ea7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T19:20:46.6973443Z","updatedOn":"2018-12-20T19:20:46.6973443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b5a984b-3400-4961-a40a-91edf9921515","type":"Microsoft.Authorization/roleAssignments","name":"2b5a984b-3400-4961-a40a-91edf9921515"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"facba42c-528c-43d4-a858-0bf72a82282a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:43.5905169Z","updatedOn":"2019-03-21T06:07:43.5905169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b490d9b4-0e66-47b8-84cb-b46c55e3e12a","type":"Microsoft.Authorization/roleAssignments","name":"b490d9b4-0e66-47b8-84cb-b46c55e3e12a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fae345f2-3525-4eee-91ed-aa3e7a0339a7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T19:02:36.1002522Z","updatedOn":"2018-10-26T19:02:36.1002522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98cbb4be-2890-41dd-add1-4ee878c60dd8","type":"Microsoft.Authorization/roleAssignments","name":"98cbb4be-2890-41dd-add1-4ee878c60dd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb081bc8-ed19-41cc-96a0-ea9ccd00ec90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:39:01.0101712Z","updatedOn":"2019-05-15T05:39:01.0101712Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8392ddf-11a2-46aa-9358-fdbe878e960c","type":"Microsoft.Authorization/roleAssignments","name":"c8392ddf-11a2-46aa-9358-fdbe878e960c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb37b8d0-4601-4b1f-b91d-8481ae1a64dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T06:38:25.6840193Z","updatedOn":"2019-06-05T06:38:25.6840193Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/393f99af-bba5-4e10-86e0-a516711c2610","type":"Microsoft.Authorization/roleAssignments","name":"393f99af-bba5-4e10-86e0-a516711c2610"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fbfb0f5c-126b-4ad5-b57a-fcde861f6ef5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:39:36.0023686Z","updatedOn":"2019-05-22T05:39:36.0023686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e387c6d-5025-47b3-9656-b34a4010b543","type":"Microsoft.Authorization/roleAssignments","name":"0e387c6d-5025-47b3-9656-b34a4010b543"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd456099-1753-4268-b008-b3f5efb95450","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T06:42:07.6153979Z","updatedOn":"2019-05-16T06:42:07.6153979Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c385c958-ab8b-4607-9c74-331b2b5c2a50","type":"Microsoft.Authorization/roleAssignments","name":"c385c958-ab8b-4607-9c74-331b2b5c2a50"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd88acad-daca-4266-85ef-2dd1913764b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-23T06:51:03.9457234Z","updatedOn":"2019-01-23T06:51:03.9457234Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae829a74-705b-4601-9244-b9c56a1c8c06","type":"Microsoft.Authorization/roleAssignments","name":"ae829a74-705b-4601-9244-b9c56a1c8c06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdac9577-7542-4784-acee-04438868444e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-25T06:49:39.2426384Z","updatedOn":"2018-12-25T06:49:39.2426384Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d786378a-55c6-422f-bead-e440c334f64e","type":"Microsoft.Authorization/roleAssignments","name":"d786378a-55c6-422f-bead-e440c334f64e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdcdb431-1889-489a-9ad3-78938a34f291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T05:09:58.6316471Z","updatedOn":"2019-03-21T05:09:58.6316471Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c","type":"Microsoft.Authorization/roleAssignments","name":"6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fde0da25-f6a4-4dfd-9668-adfe72c9b3d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T06:48:48.7139215Z","updatedOn":"2018-11-08T06:48:48.7139215Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77d93e9-ffc3-4bbc-9e41-d83ce42904dc","type":"Microsoft.Authorization/roleAssignments","name":"f77d93e9-ffc3-4bbc-9e41-d83ce42904dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe17c43a-7ba9-4c77-9a8a-786cb36b6ac7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T06:53:34.4612275Z","updatedOn":"2019-06-14T06:53:34.4612275Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e07738-648f-42d4-821e-44878849aa6a","type":"Microsoft.Authorization/roleAssignments","name":"90e07738-648f-42d4-821e-44878849aa6a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe19f84e-7f46-454e-89e4-4cbefe1ed4a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:34:36.0206593Z","updatedOn":"2019-04-20T05:34:36.0206593Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5553c590-af3a-49a1-a2f5-3f28018cbcc0","type":"Microsoft.Authorization/roleAssignments","name":"5553c590-af3a-49a1-a2f5-3f28018cbcc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe55b12a-b22b-425d-9823-d07edba98b05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T15:46:35.8826664Z","updatedOn":"2018-11-12T15:46:35.8826664Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a386f3b-f818-467e-b33b-ace3ccbee34c","type":"Microsoft.Authorization/roleAssignments","name":"0a386f3b-f818-467e-b33b-ace3ccbee34c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe6e08d1-3fe9-4fcd-8430-d10701a9d7ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:41:54.8887107Z","updatedOn":"2019-06-05T05:41:54.8887107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a76715-9dbd-4a18-92e5-d67600f59cce","type":"Microsoft.Authorization/roleAssignments","name":"55a76715-9dbd-4a18-92e5-d67600f59cce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fec576d4-426b-410d-9137-67f4a2dd0298","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:16:36.3049181Z","updatedOn":"2019-05-21T05:16:36.3049181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7a5108f-9ec2-4903-93a8-b4fbcb4c292c","type":"Microsoft.Authorization/roleAssignments","name":"b7a5108f-9ec2-4903-93a8-b4fbcb4c292c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff5beb60-1ab4-4725-b12e-20da05833516","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T06:39:43.4665630Z","updatedOn":"2019-06-08T06:39:43.4665630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce551e89-0244-4c14-9e46-4d0715368fd2","type":"Microsoft.Authorization/roleAssignments","name":"ce551e89-0244-4c14-9e46-4d0715368fd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff64b261-1aaa-4d2a-b37e-0c6f71ee5d41","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-19T07:05:24.6386936Z","updatedOn":"2019-02-19T07:05:24.6386936Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08f79e8e-7405-4fe6-b15e-fcf13f8af972","type":"Microsoft.Authorization/roleAssignments","name":"08f79e8e-7405-4fe6-b15e-fcf13f8af972"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ffafc31c-c957-481f-922f-6f38699fbba4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:41:51.9166032Z","updatedOn":"2019-05-09T05:41:51.9166032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c20ee64c-0ac0-4280-820b-1e515aa13c95","type":"Microsoft.Authorization/roleAssignments","name":"c20ee64c-0ac0-4280-820b-1e515aa13c95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:19:13.9288977Z","updatedOn":"2019-09-11T09:19:13.9288977Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b02d8e07-7398-4236-bf13-6293699c6862","type":"Microsoft.Authorization/roleAssignments","name":"b02d8e07-7398-4236-bf13-6293699c6862"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T19:47:09.8058411Z","updatedOn":"2018-10-25T19:47:09.8058411Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abd19ae1-8e0c-4e31-b1ab-25e85d987378","type":"Microsoft.Authorization/roleAssignments","name":"abd19ae1-8e0c-4e31-b1ab-25e85d987378"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:42.0835929Z","updatedOn":"2019-09-04T08:09:42.0835929Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/providers/Microsoft.Authorization/roleAssignments/9d0c9433-a2c8-403f-ba1c-6310772291a5","type":"Microsoft.Authorization/roleAssignments","name":"9d0c9433-a2c8-403f-ba1c-6310772291a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:00.2975238Z","updatedOn":"2019-09-04T08:09:00.2975238Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/providers/Microsoft.Authorization/roleAssignments/1170ebb2-2837-465d-87ea-0c13b2c951b4","type":"Microsoft.Authorization/roleAssignments","name":"1170ebb2-2837-465d-87ea-0c13b2c951b4"}]}' headers: cache-control: - no-cache content-length: - - '473655' + - '492519' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:29 GMT + - Wed, 13 Nov 2019 11:10:51 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1348,8 +1288,8 @@ interactions: pull\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/pull/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-22T19:01:56.8227182Z\",\"updatedOn\":\"2018-11-13T23:22:03.2302457Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f951dda-4ed3-4680-a7ca-43fe172d538d\"},{\"properties\":{\"roleName\":\"AcrImageSigner\",\"type\":\"BuiltInRole\",\"description\":\"acr image signer\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/sign/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-15T23:23:08.4038322Z\",\"updatedOn\":\"2018-10-29T19:06:24.9004422Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6cef56e8-d556-48e5-a04f-b8e64114680f\"},{\"properties\":{\"roleName\":\"AcrDelete\",\"type\":\"BuiltInRole\",\"description\":\"acr delete\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/artifacts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-11T20:19:31.6682804Z\",\"updatedOn\":\"2019-03-11T20:24:38.9845104Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"},{\"properties\":{\"roleName\":\"AcrQuarantineReader\",\"type\":\"BuiltInRole\",\"description\":\"acr - quarantine data reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantineRead/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:27:39.9596835Z\",\"updatedOn\":\"2018-10-29T19:16:24.3521233Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cdda3590-29a3-44f6-95f2-9f980659eb04\"},{\"properties\":{\"roleName\":\"AcrQuarantineWriter\",\"type\":\"BuiltInRole\",\"description\":\"acr - quarantine data writer\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantineRead/read\",\"Microsoft.ContainerRegistry/registries/quarantineWrite/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:26:37.5871820Z\",\"updatedOn\":\"2018-10-29T19:22:29.9285629Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"},{\"properties\":{\"roleName\":\"API + quarantine data reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:27:39.9596835Z\",\"updatedOn\":\"2019-10-22T00:12:39.7020930Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cdda3590-29a3-44f6-95f2-9f980659eb04\"},{\"properties\":{\"roleName\":\"AcrQuarantineWriter\",\"type\":\"BuiltInRole\",\"description\":\"acr + quarantine data writer\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\",\"Microsoft.ContainerRegistry/registries/quarantine/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:26:37.5871820Z\",\"updatedOn\":\"2019-10-22T00:10:29.8202164Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"},{\"properties\":{\"roleName\":\"API Management Service Operator Role\",\"type\":\"BuiltInRole\",\"description\":\"Can manage service but not the APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\",\"Microsoft.ApiManagement/service/backup/action\",\"Microsoft.ApiManagement/service/delete\",\"Microsoft.ApiManagement/service/managedeployments/action\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.ApiManagement/service/restore/action\",\"Microsoft.ApiManagement/service/updatecertificate/action\",\"Microsoft.ApiManagement/service/updatehostname/action\",\"Microsoft.ApiManagement/service/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:03:42.1194019Z\",\"updatedOn\":\"2016-11-18T23:56:25.4682649Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"},{\"properties\":{\"roleName\":\"API Management Service Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read-only @@ -1359,7 +1299,7 @@ interactions: Insights Snapshot Debugger\",\"type\":\"BuiltInRole\",\"description\":\"Gives user permission to use Application Insights Snapshot Debugger features\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T21:25:12.3728747Z\",\"updatedOn\":\"2017-04-19T23:34:59.9511581Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"},{\"properties\":{\"roleName\":\"Attestation Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read the attestation - provider properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2019-07-01T17:52:38.9036953Z\",\"createdBy\":null,\"updatedBy\":\"SYSTEM\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"},{\"properties\":{\"roleName\":\"Automation + provider properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2019-05-10T17:52:38.9036953Z\",\"createdBy\":null,\"updatedBy\":\"SYSTEM\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"},{\"properties\":{\"roleName\":\"Automation Job Operator\",\"type\":\"BuiltInRole\",\"description\":\"Create and Manage Jobs using Automation Runbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\"Microsoft.Automation/automationAccounts/jobs/read\",\"Microsoft.Automation/automationAccounts/jobs/resume/action\",\"Microsoft.Automation/automationAccounts/jobs/stop/action\",\"Microsoft.Automation/automationAccounts/jobs/streams/read\",\"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\"Microsoft.Automation/automationAccounts/jobs/write\",\"Microsoft.Automation/automationAccounts/jobs/output/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T20:52:41.0020018Z\",\"updatedOn\":\"2018-08-14T22:08:48.1147327Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4fe576fe-1146-4730-92eb-48519fa6bf9f\"},{\"properties\":{\"roleName\":\"Automation Runbook Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read Runbook @@ -1519,7 +1459,7 @@ interactions: Anchors Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage spatial anchors in your account, but not delete them\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:41.1420864Z\",\"updatedOn\":\"2019-02-13T06:13:39.8686435Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"},{\"properties\":{\"roleName\":\"Site Recovery Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage Site Recovery service except vault creation and role assignment\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:46:17.4592776Z\",\"updatedOn\":\"2017-06-29T05:31:19.7240473Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"},{\"properties\":{\"roleName\":\"Site + manage Site Recovery service except vault creation and role assignment\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:46:17.4592776Z\",\"updatedOn\":\"2019-11-07T06:13:49.0760858Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"},{\"properties\":{\"roleName\":\"Site Recovery Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you failover and failback but not perform other Site Recovery management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:47:50.1341148Z\",\"updatedOn\":\"2019-08-28T12:00:57.4472826Z\",\"createdBy\":null,\"updatedBy\":\"\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"494ae006-db33-4328-bf46-533a6560a3ca\"},{\"properties\":{\"roleName\":\"Spatial Anchors Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you @@ -1583,7 +1523,7 @@ interactions: Event Hubs Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*\"],\"notDataActions\":[]}],\"createdOn\":\"2019-04-16T21:34:29.8656362Z\",\"updatedOn\":\"2019-08-21T22:58:57.7584645Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f526a384-b230-433a-b45c-95f59c4a2dec\"},{\"properties\":{\"roleName\":\"Attestation Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can read write or - delete the attestation provider instance\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\",\"Microsoft.Attestation/attestationProviders/attestation/write\",\"Microsoft.Attestation/attestationProviders/attestation/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-19T00:24:09.3354177Z\",\"updatedOn\":\"2019-07-01T17:59:06.3448436Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"},{\"properties\":{\"roleName\":\"HDInsight + delete the attestation provider instance\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\",\"Microsoft.Attestation/attestationProviders/attestation/write\",\"Microsoft.Attestation/attestationProviders/attestation/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-19T00:24:09.3354177Z\",\"updatedOn\":\"2019-05-10T17:59:06.3448436Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"},{\"properties\":{\"roleName\":\"HDInsight Cluster Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read and modify HDInsight cluster configurations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HDInsight/*/read\",\"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\"Microsoft.HDInsight/clusters/configurations/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-20T00:03:01.7110732Z\",\"updatedOn\":\"2019-04-28T02:34:17.4679314Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"61ed4efc-fab3-44fd-b111-e24485cc132a\"},{\"properties\":{\"roleName\":\"Cosmos DB Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Azure @@ -1595,13 +1535,13 @@ interactions: Server Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Can onboard new Hybrid servers to the Hybrid Resource Provider.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-29T22:36:28.1873756Z\",\"updatedOn\":\"2019-05-06T20:09:17.9364269Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"},{\"properties\":{\"roleName\":\"Azure Event Hubs Data Receiver\",\"type\":\"BuiltInRole\",\"description\":\"Allows - receive access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/consumergroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T06:25:21.1056666Z\",\"updatedOn\":\"2019-08-21T23:00:32.6225396Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"},{\"properties\":{\"roleName\":\"Azure + receive access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/consumergroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:25:21.1056666Z\",\"updatedOn\":\"2019-08-21T23:00:32.6225396Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"},{\"properties\":{\"roleName\":\"Azure Event Hubs Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows - send access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T06:26:12.4673714Z\",\"updatedOn\":\"2019-08-21T23:02:26.6155679Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2b629674-e913-4c01-ae53-ef4638d8f975\"},{\"properties\":{\"roleName\":\"Azure + send access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:26:12.4673714Z\",\"updatedOn\":\"2019-08-21T23:02:26.6155679Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2b629674-e913-4c01-ae53-ef4638d8f975\"},{\"properties\":{\"roleName\":\"Azure Service Bus Data Receiver\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for receive access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T06:43:01.6343849Z\",\"updatedOn\":\"2019-08-21T22:55:24.3423558Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"},{\"properties\":{\"roleName\":\"Azure + for receive access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:43:01.6343849Z\",\"updatedOn\":\"2019-08-21T22:55:24.3423558Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"},{\"properties\":{\"roleName\":\"Azure Service Bus Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for send access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T06:43:46.7046934Z\",\"updatedOn\":\"2019-08-21T22:57:12.2555683Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"},{\"properties\":{\"roleName\":\"Storage + for send access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:43:46.7046934Z\",\"updatedOn\":\"2019-08-21T22:57:12.2555683Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"},{\"properties\":{\"roleName\":\"Storage File Data SMB Share Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for read access to Azure File Share over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T20:19:31.8620471Z\",\"updatedOn\":\"2019-08-07T01:00:41.9223409Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aba4ae5f-2193-4029-9191-0cb91df5e314\"},{\"properties\":{\"roleName\":\"Storage File Data SMB Share Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows @@ -1635,16 +1575,27 @@ interactions: AccessKey Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read SignalR Service Access Keys\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*/read\",\"Microsoft.SignalRService/SignalR/listkeys/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-09-20T09:33:19.6236874Z\",\"updatedOn\":\"2019-09-20T09:33:19.6236874Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"04165923-9d83-45d5-8227-78b77b0a687e\"},{\"properties\":{\"roleName\":\"SignalR Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create, Read, Update, - and Delete SignalR service resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-09-20T09:58:09.0009662Z\",\"updatedOn\":\"2019-09-20T09:58:09.0009662Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"}]}" + and Delete SignalR service resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-09-20T09:58:09.0009662Z\",\"updatedOn\":\"2019-09-20T09:58:09.0009662Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"},{\"properties\":{\"roleName\":\"Azure + Connected Machine Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Can + onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:15:07.1372870Z\",\"updatedOn\":\"2019-11-03T18:26:59.2060282Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"},{\"properties\":{\"roleName\":\"Azure + Connected Machine Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can + read, write, delete and re-onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/reconnect/action\",\"Microsoft.HybridCompute/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:24:59.1474607Z\",\"updatedOn\":\"2019-10-24T18:57:01.0320416Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cd570a14-e51a-42ad-bac8-bafd67325302\"},{\"properties\":{\"roleName\":\"Managed + Services Registration assignment Delete Role\",\"type\":\"BuiltInRole\",\"description\":\"Managed + Services Registration Assignment Delete Role allows the managing tenant users + to delete the registration assignment assigned to their tenant.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedServices/registrationAssignments/read\",\"Microsoft.ManagedServices/registrationAssignments/delete\",\"Microsoft.ManagedServices/operationStatuses/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T22:33:33.1183469Z\",\"updatedOn\":\"2019-10-24T21:49:09.3875276Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"91c1777a-f3dc-4fae-b103-61d183457e46\"},{\"properties\":{\"roleName\":\"App + Configuration Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows + full access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\",\"Microsoft.AppConfiguration/configurationStores/*/write\",\"Microsoft.AppConfiguration/configurationStores/*/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2019-10-25T18:41:40.1185063Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"},{\"properties\":{\"roleName\":\"App + Configuration Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows + read access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:45:33.7975332Z\",\"updatedOn\":\"2019-10-25T18:45:33.7975332Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"516239f1-63e1-4d78-a4de-a74fb236a071\"}]}" headers: cache-control: - no-cache content-length: - - '160453' + - '164476' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:29 GMT + - Wed, 13 Nov 2019 11:10:53 GMT expires: - '-1' pragma: @@ -1665,7 +1616,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["f27a0b7f-a559-4a31-892a-329cbbd83e4a"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["5ecd2914-e53b-4344-ab84-616fe65ea681"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1691,7 +1642,7 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"ec522127-ad60-48f9-830f-9b6c510139c9","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"F3F52C9CE930978C46DA9D30EA432FF13746B530","endDate":"2020-01-19T10:46:00Z","keyId":"07cee891-a9bb-42c7-890b-930d890024fd","startDate":"2019-10-21T10:46:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["ec522127-ad60-48f9-830f-9b6c510139c9","https://identity.azure.net/LlwbjCvF3NXLUlzxuWZeyhNcHGSLivJ1sdGMTfNUoAc="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"5ecd2914-e53b-4344-ab84-616fe65ea681","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"df00b496-4722-4299-8f88-30cc2b713222","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"6EC9660480DD5930B0760E7553F0A2CEB65045B9","endDate":"2020-02-11T11:05:00Z","keyId":"12a9be24-d8f3-4e72-9aa0-b1532e05744c","startDate":"2019-11-13T11:05:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["df00b496-4722-4299-8f88-30cc2b713222","https://identity.azure.net/2eIyKqtOVywRyzdWX0WtLdViF5Q2SQdCp8o81a8SIQI="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1704,19 +1655,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 21 Oct 2019 10:52:31 GMT + - Wed, 13 Nov 2019 11:10:54 GMT duration: - - '4533892' + - '5254345' expires: - '-1' ocp-aad-diagnostics-server-name: - - AscZYHsQ8u0JvtqinizkQA/qY/LnqKUVJTwRL3s3mKc= + - qbmlHRZ24ikXGPs6iC16BeVhqxmVUI3e/2/YpQxlnao= ocp-aad-session-key: - - qynmiDltlgzeldOpkZi3KCUZ1FE1jTnxntrfPTc-WzxucAUAUIXRY--557nLjgphlYJJkGk53Hrhnj67oCzjRn-02e7bHRgp2qeZ-WOgYjwnG8O88VEtcRL2lhGmklv4bm2FtBGv-Rv-uoLqJYV6AENEM7E9h3hKtOOBJx_xhF4.yo1Od3Ov5Tsqv3u2dKTIPS2ODorrqhvxyqZPBbmw_U4 + - ZvGAiSgMU8BUpzGu6Tfxkw0eRaX_GZK2nwIZR5MMLqDaN6hijTnCQ8wPM00AcgO-Hd-JpZcMqgHGtfNSLbhi-wVvz-FUGyquiVOlfRJJ36xNjXwx61v1sV63QGoSTV7T.1fR7PDZD-JC07Neixcd8elcOo7fM45416Mc6u_tBjCk pragma: - no-cache request-id: - - 26a4f971-62f8-4ac7-9b04-8cd49573c2ef + - 202214de-4f82-46a4-8fa8-5885dd64238a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1743,26 +1694,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: cache-control: - no-cache content-length: - - '3613' + - '3740' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:32 GMT + - Wed, 13 Nov 2019 11:10:56 GMT etag: - - '"1D587FD8B524D00"' + - '"1D59A12EC596CB0"' expires: - '-1' pragma: @@ -1799,26 +1750,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: cache-control: - no-cache content-length: - - '3613' + - '3740' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:33 GMT + - Wed, 13 Nov 2019 11:10:56 GMT etag: - - '"1D587FD8B524D00"' + - '"1D59A12EC596CB0"' expires: - '-1' pragma: @@ -1855,26 +1806,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: cache-control: - no-cache content-length: - - '3613' + - '3740' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:35 GMT + - Wed, 13 Nov 2019 11:10:58 GMT etag: - - '"1D587FD8B524D00"' + - '"1D59A12EC596CB0"' expires: - '-1' pragma: @@ -1911,26 +1862,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:51:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"f27a0b7f-a559-4a31-892a-329cbbd83e4a"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' headers: cache-control: - no-cache content-length: - - '3613' + - '3740' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:36 GMT + - Wed, 13 Nov 2019 11:10:59 GMT etag: - - '"1D587FD8B524D00"' + - '"1D59A12EC596CB0"' expires: - '-1' pragma: @@ -1978,26 +1929,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:42.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:04.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3475' + - '3601' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:51 GMT + - Wed, 13 Nov 2019 11:11:05 GMT etag: - - '"1D587FD8B524D00"' + - '"1D59A12EC596CB0"' expires: - '-1' pragma: @@ -2036,26 +1987,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:42.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:04.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3473' + - '3599' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:52 GMT + - Wed, 13 Nov 2019 11:11:07 GMT etag: - - '"1D587FDAA0493C0"' + - '"1D59A130A073BC0"' expires: - '-1' pragma: @@ -2092,26 +2043,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:42.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E5F62F7AA83F9CD4B50342BD0EC8991C60F99E35CF12644C95C3D6B45EB949F","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:04.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3473' + - '3599' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:54 GMT + - Wed, 13 Nov 2019 11:11:08 GMT etag: - - '"1D587FDAA0493C0"' + - '"1D59A130A073BC0"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml index c3ac02e9a9b..2542ed2c8c3 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_authentication000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:54:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:54:24 GMT + - Wed, 13 Nov 2019 11:08:03 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:24 GMT + - Wed, 13 Nov 2019 11:08:05 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1190' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_authentication000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:54:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:54:25 GMT + - Wed, 13 Nov 2019 11:08:06 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","name":"webapp-authentication-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":48553,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_48553","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21753,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21753","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:33 GMT + - Wed, 13 Nov 2019 11:08:14 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1158' + - '1183' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","name":"webapp-authentication-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":48553,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_48553","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21753,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21753","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:34 GMT + - Wed, 13 Nov 2019 11:08:16 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:35 GMT + - Wed, 13 Nov 2019 11:08:17 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1191' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","name":"webapp-authentication-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":48553,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_48553","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21753,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21753","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:37 GMT + - Wed, 13 Nov 2019 11:08:17 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '554' + - '536' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002","name":"webapp-authentication-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-authentication-test000002","state":"Running","hostNames":["webapp-authentication-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_authentication000001-WestUSwebspace/sites/webapp-authentication-test000002","repositorySiteName":"webapp-authentication-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-authentication-test000002.azurewebsites.net","webapp-authentication-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-authentication-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-authentication-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:54:41.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-authentication-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9197FC88D87DC59DD489ADE9EBF273396734A10E7A690EB4A75A35C4DA90E11A","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_authentication000001","defaultHostName":"webapp-authentication-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-authentication-test000002","state":"Running","hostNames":["webapp-authentication-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_authentication000001-WestUSwebspace/sites/webapp-authentication-test000002","repositorySiteName":"webapp-authentication-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-authentication-test000002.azurewebsites.net","webapp-authentication-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-authentication-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-authentication-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:23.1566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-authentication-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1209A364036FA843CE2B3FE733BEEBA6C8AFC91AC424B0F83FBE90D9FB144100","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_authentication000001","defaultHostName":"webapp-authentication-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3738' + - '3745' content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:57 GMT + - Wed, 13 Nov 2019 11:08:37 GMT etag: - - '"1D587FDF0EA72F0"' + - '"1D59A12AA8920A0"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '497' x-powered-by: - ASP.NET status: @@ -466,29 +465,23 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/publishxml?api-version=2018-02-01 response: body: string: @@ -496,11 +489,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:54:58 GMT + - Wed, 13 Nov 2019 11:08:40 GMT expires: - '-1' pragma: @@ -537,11 +530,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings","name":"authsettings","type":"Microsoft.Web/sites/config","location":"West @@ -554,7 +547,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:59 GMT + - Wed, 13 Nov 2019 11:08:43 GMT expires: - '-1' pragma: @@ -572,7 +565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11998' x-powered-by: - ASP.NET status: @@ -597,11 +590,11 @@ interactions: --facebook-app-secret --facebook-oauth-scopes User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings","name":"authsettings","type":"Microsoft.Web/sites/config","location":"West @@ -614,7 +607,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:01 GMT + - Wed, 13 Nov 2019 11:08:44 GMT expires: - '-1' pragma: @@ -632,7 +625,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11996' x-powered-by: - ASP.NET status: @@ -663,11 +656,11 @@ interactions: --facebook-app-secret --facebook-oauth-scopes User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings","name":"authsettings","type":"Microsoft.Web/sites/config","location":"West @@ -680,9 +673,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:02 GMT + - Wed, 13 Nov 2019 11:08:47 GMT etag: - - '"1D587FDFD95DB70"' + - '"1D59A12B83B98E0"' expires: - '-1' pragma: @@ -700,7 +693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1125' + - '1186' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index 5f0bc9dd132..03f407da4be 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:42:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:05 GMT + - Thu, 14 Nov 2019 01:42:35 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:07 GMT + - Thu, 14 Nov 2019 01:42:36 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:42:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:07 GMT + - Thu, 14 Nov 2019 01:42:36 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21924,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21924","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:16 GMT + - Thu, 14 Nov 2019 01:42:45 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1194' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21924,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21924","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:17 GMT + - Thu, 14 Nov 2019 01:42:46 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:18 GMT + - Thu, 14 Nov 2019 01:42:47 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1196' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":21924,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21924","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:19 GMT + - Thu, 14 Nov 2019 01:42:48 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '554' + - '536' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:24.803","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BCD66C08AB0832EF1CDDE7810BEBF6BDCA3414CC63568C1AD09885ABB858DEC3","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:53.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2552D921A9064867E08BAB0E9A63A5D55D8E8ECBB5A0D8F2D744B69A96E2A8F6","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3723' + - '3730' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:41 GMT + - Thu, 14 Nov 2019 01:43:08 GMT etag: - - '"1D587FD348B7CD0"' + - '"1D59A8CD5534200"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '498' x-powered-by: - ASP.NET status: @@ -466,29 +465,23 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-02-01 response: body: string: @@ -496,11 +489,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:49:42 GMT + - Thu, 14 Nov 2019 01:43:09 GMT expires: - '-1' pragma: @@ -514,203 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3161' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config set - Connection: - - keep-alive - ParameterSetName: - - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version - --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled - --min-tls-version --ftps-state - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3161' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", - "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", - "index.php", "hostingstart.html"], "netFrameworkVersion": "v3.5", "phpVersion": - "7.0", "pythonVersion": "3.4", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": - 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-config-test000002", - "scmType": "None", "use32BitWorkerProcess": false, "webSocketsEnabled": true, - "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": true, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.0", "ftpsState": "Disabled", "reservedInstanceCount": - 0}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config set - Connection: - - keep-alive - Content-Length: - - '1369' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version - --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled - --min-tls-version --ftps-state - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3147' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:48 GMT - etag: - - '"1D587FD348B7CD0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '11999' x-powered-by: - ASP.NET status: @@ -731,1993 +528,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3165' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' - headers: - cache-control: - - no-cache - content-length: - - '373' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": - "10.14", "s1": "foo", "s2": "bar", "s3": "bar2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings set - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '407' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:52 GMT - etag: - - '"1D587FD44EC9A50"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1156' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '407' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '407' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": - "10.14", "s3": "bar2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings delete - Connection: - - keep-alive - Content-Length: - - '96' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '385' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:58 GMT - etag: - - '"1D587FD4842A320"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1182' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config hostname list - Connection: - - keep-alive - ParameterSetName: - - -g --webapp-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings?api-version=2018-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings/webapp-config-test000002.azurewebsites.net","name":"webapp-config-test000002/webapp-config-test000002.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West - US","properties":{"siteName":"webapp-config-test000002","domainId":null,"hostNameType":"Verified"}}],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '623' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:59 GMT - etag: - - '"1D587FD4842A320"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --custom-id --storage-type --account-name --share-name --access-key - --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '344' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", - "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": - "/path/to/mount"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account add - Connection: - - keep-alive - Content-Length: - - '171' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --custom-id --storage-type --account-name --share-name --access-key - --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '500' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:02 GMT - etag: - - '"1D587FD4AA1EFE0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1186' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account update - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --custom-id --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", - "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": - "/different/path"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account update - Connection: - - keep-alive - Content-Length: - - '172' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --custom-id --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '501' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:06 GMT - etag: - - '"1D587FD4D351DE0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1191' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '492' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '492' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --custom-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '492' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11992' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --custom-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account delete - Connection: - - keep-alive - Content-Length: - - '43' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --custom-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '353' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:16 GMT - etag: - - '"1D587FD52E54350"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1188' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '347' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"c1": {"value": "conn1", "type": - "MySql"}, "c2": {"value": "conn2", "type": "MySql"}, "c3": {"value": "conn3", - "type": "MySql"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - Content-Length: - - '170' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '460' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:19 GMT - etag: - - '"1D587FD549F4F60"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1181' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"connectionStringNames": ["c3"]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - Content-Length: - - '49' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '207' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1188' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '460' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '207' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '460' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '207' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"connectionStringNames": [], "appSettingNames": [], "azureStorageConfigNames": - []}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - Content-Length: - - '99' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '203' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1186' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"c2": {"value": "conn2", "type": - "MySql"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - Content-Length: - - '84' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:28 GMT - etag: - - '"1D587FD59CBC5E0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '203' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment user show - Connection: - - keep-alive - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"web","type":"Microsoft.Web/publishingUsers/web","properties":{"name":null,"publishingUserName":null,"publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '258' + - '2965' content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:34 GMT + - Thu, 14 Nov 2019 01:43:10 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml deleted file mode 100644 index 6cabff2e0de..00000000000 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml +++ /dev/null @@ -1,385 +0,0 @@ -interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-05-28T19:56:17Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-28T19:56:17Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:19 GMT - expires: - - '-1' - pragma: - - no-cache - 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: - - webapp webjob continuous list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs?api-version=2018-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West - US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '763' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:22 GMT - etag: - - '"d6f53377"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous start - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/start?api-version=2018-11-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 28 May 2019 19:56:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous start - Connection: - - keep-alive - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West - US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '751' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous stop - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/stop?api-version=2018-11-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 28 May 2019 19:56:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous stop - Connection: - - keep-alive - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West - US","properties":{"status":"Disabling","detailed_status":"e7b519 - Disabling\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 28 May 2019 19:56:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdKS1laTkZLUFZUR1c1UVY3M1ZKWFRFRDM3QlpKUE5WMzZTWHw3OUEyRTg3NDg5MUU2OTM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml index d797dc5e8d7..93e88dbb4ea 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:04 GMT + - Wed, 13 Nov 2019 11:02:00 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:05 GMT + - Wed, 13 Nov 2019 11:02:01 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:52:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:05 GMT + - Wed, 13 Nov 2019 11:02:02 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21975,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_21975","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":34969,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34969","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:16 GMT + - Wed, 13 Nov 2019 11:02:11 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1186' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21975,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_21975","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":34969,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34969","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:17 GMT + - Wed, 13 Nov 2019 11:02:13 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:19 GMT + - Wed, 13 Nov 2019 11:02:14 GMT expires: - '-1' pragma: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21975,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_21975","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":34969,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34969","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:21 GMT + - Wed, 13 Nov 2019 11:02:15 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '520' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:26.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F0C780DFF17C5FA66222B789899457FC156E56539326B47C70D38804EACBB83E","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:19.223","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0EDBE9A5245921F49C2C9BEB73333BC85B910BD83201029740089D27489F319F","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3540' + - '3657' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:42 GMT + - Wed, 13 Nov 2019 11:02:35 GMT etag: - - '"1D587FDA08041D5"' + - '"1D59A11D17DC5E0"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '496' x-powered-by: - ASP.NET status: @@ -466,28 +465,22 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2018-02-01 response: body: string: @@ -495,11 +488,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:52:43 GMT + - Wed, 13 Nov 2019 11:02:36 GMT expires: - '-1' pragma: @@ -513,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11997' x-powered-by: - ASP.NET status: @@ -534,26 +527,24 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3113' + - '2917' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:45 GMT + - Wed, 13 Nov 2019 11:02:37 GMT expires: - '-1' pragma: @@ -583,16 +574,13 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://msdn.com", - "https://msn.com"]}, "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": - "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], - "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": + ["https://msdn.com", "https://msn.com"]}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -603,35 +591,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1422' + - '1141' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3179' + - '2983' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:49 GMT + - Wed, 13 Nov 2019 11:02:40 GMT etag: - - '"1D587FDA08041D5"' + - '"1D59A11D17DC5E0"' expires: - '-1' pragma: @@ -649,7 +635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1132' + - '1197' x-powered-by: - ASP.NET status: @@ -670,26 +656,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3197' + - '3001' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:51 GMT + - Wed, 13 Nov 2019 11:02:40 GMT expires: - '-1' pragma: @@ -726,26 +710,24 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3197' + - '3001' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:52 GMT + - Wed, 13 Nov 2019 11:02:41 GMT expires: - '-1' pragma: @@ -772,20 +754,16 @@ interactions: "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", + false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": + true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://msdn.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": + ["https://msdn.com"], "supportCredentials": false}, "localMySqlEnabled": false, + "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -796,35 +774,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1468' + - '1187' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3161' + - '2965' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:54 GMT + - Wed, 13 Nov 2019 11:02:43 GMT etag: - - '"1D587FDADA9E80B"' + - '"1D59A11DD77B8B0"' expires: - '-1' pragma: @@ -842,7 +818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1174' + - '1182' x-powered-by: - ASP.NET status: @@ -863,26 +839,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3179' + - '2983' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:56 GMT + - Wed, 13 Nov 2019 11:02:46 GMT expires: - '-1' pragma: @@ -919,26 +893,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:55.0566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F0C780DFF17C5FA66222B789899457FC156E56539326B47C70D38804EACBB83E","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:43.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0EDBE9A5245921F49C2C9BEB73333BC85B910BD83201029740089D27489F319F","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3543' + - '3654' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:58 GMT + - Wed, 13 Nov 2019 11:02:47 GMT etag: - - '"1D587FDB16E430B"' + - '"1D59A11DFDB2420"' expires: - '-1' pragma: @@ -982,26 +956,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1","name":"slot-traffic-web000003/slot1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003(slot1)","state":"Running","hostNames":["slot-traffic-web000003-slot1.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-slot1.azurewebsites.net","slot-traffic-web000003-slot1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-slot1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-slot1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:53:05.0733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__665a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28B84E3B25A326A538F631ED3132A61084B6B9639C51C8B33C821C8A5DC64B26","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-slot1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003(slot1)","state":"Running","hostNames":["slot-traffic-web000003-slot1.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-slot1.azurewebsites.net","slot-traffic-web000003-slot1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-slot1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-slot1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:52.457","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__30cd","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1E04D4D8557E169E4B9E01796AAEF0F80FF2C0686665E09E5CA696D3515BF998","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-slot1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3618' + - '3730' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:21 GMT + - Wed, 13 Nov 2019 11:03:08 GMT etag: - - '"1D587FDB16E430B"' + - '"1D59A11DFDB2420"' expires: - '-1' pragma: @@ -1040,26 +1014,24 @@ interactions: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3134' + - '2936' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:21 GMT + - Wed, 13 Nov 2019 11:03:10 GMT expires: - '-1' pragma: @@ -1093,13 +1065,9 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": - ["https://foo.com"]}, "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + ["https://foo.com"]}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1110,35 +1078,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1411' + - '1128' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1","name":"slot-traffic-web000003/slot1","type":"Microsoft.Web/sites/slots","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3193' + - '2995' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:25 GMT + - Wed, 13 Nov 2019 11:03:13 GMT etag: - - '"1D587FDB7A7478B"' + - '"1D59A11E55370B0"' expires: - '-1' pragma: @@ -1156,7 +1122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1183' x-powered-by: - ASP.NET status: @@ -1177,26 +1143,24 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3199' + - '3001' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:26 GMT + - Wed, 13 Nov 2019 11:03:14 GMT expires: - '-1' pragma: @@ -1233,26 +1197,24 @@ interactions: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3199' + - '3001' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:28 GMT + - Wed, 13 Nov 2019 11:03:16 GMT expires: - '-1' pragma: @@ -1279,7 +1241,7 @@ interactions: "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", + false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003__slot1", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": false, @@ -1287,12 +1249,9 @@ interactions: [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": [], "supportCredentials": - false}, "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": - "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], - "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1303,35 +1262,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1176' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1","name":"slot-traffic-web000003/slot1","type":"Microsoft.Web/sites/slots","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3176' + - '2978' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:30 GMT + - Wed, 13 Nov 2019 11:03:19 GMT etag: - - '"1D587FDC367CDD5"' + - '"1D59A11F13372E0"' expires: - '-1' pragma: @@ -1349,7 +1306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1149' + - '1186' x-powered-by: - ASP.NET status: @@ -1370,26 +1327,24 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3182' + - '2984' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:33 GMT + - Wed, 13 Nov 2019 11:03:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml index af05c0cf226..10be02c741e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_linux_free000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:53:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:53:47 GMT + - Thu, 14 Nov 2019 01:41:12 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:47 GMT + - Thu, 14 Nov 2019 01:41:14 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_linux_free000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:53:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:53:48 GMT + - Thu, 14 Nov 2019 01:41:13 GMT expires: - '-1' pragma: @@ -170,446 +170,27 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":20087,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-109_20087","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' + string: '{"Code":"BadRequest","Message":"Exceeded the limit of 1 free tier linux + server farm per subscription.","Target":null,"Details":[{"Message":"Exceeded + the limit of 1 free tier linux server farm per subscription."},{"Code":"BadRequest"},{"ErrorEntity":{"ExtendedCode":"11027","MessageTemplate":"Exceeded + the limit of 1 free tier linux server farm per subscription.","Parameters":[],"Code":"BadRequest","Message":"Exceeded + the limit of 1 free tier linux server farm per subscription."}}],"Innererror":null}' headers: cache-control: - no-cache content-length: - - '1526' + - '502' content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:54:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1147' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":20087,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-109_20087","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '1526' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:54:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"name": "webapp-linux-free000002", "type": "Microsoft.Web/sites", "location": - "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '329' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/validate?api-version=2018-02-01 - response: - body: - string: '{"status":"Success","error":null}' - headers: - cache-control: - - no-cache - content-length: - - '33' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:54:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1190' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":20087,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-109_20087","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '1526' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:54:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 - response: - body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}}],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '16743' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:54:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003", - "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [], "localMySqlEnabled": - false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '494' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002","name":"webapp-linux-free000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"West - US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-109.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:54:27.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E5A4EC3C179DA297566A482B318347681B172E8752A0B15D9D2A649F6A22A1F0","kind":"app,linux","inboundIpAddress":"104.42.78.153","possibleInboundIpAddresses":"104.42.78.153","outboundIpAddresses":"104.42.78.153,40.118.225.64,104.42.151.111,104.42.252.192,104.42.254.180","possibleOutboundIpAddresses":"104.42.78.153,40.118.225.64,104.42.151.111,104.42.252.192,104.42.254.180,40.118.227.167,40.118.224.22,40.118.226.153","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-109","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3634' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:54:43 GMT - etag: - - '"1D587FDE89F6455"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002","name":"webapp-linux-free000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"West - US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-109.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:54:27.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E5A4EC3C179DA297566A482B318347681B172E8752A0B15D9D2A649F6A22A1F0","kind":"app,linux","inboundIpAddress":"104.42.78.153","possibleInboundIpAddresses":"104.42.78.153","outboundIpAddresses":"104.42.78.153,40.118.225.64,104.42.151.111,104.42.252.192,104.42.254.180","possibleOutboundIpAddresses":"104.42.78.153,40.118.225.64,104.42.151.111,104.42.252.192,104.42.254.180,40.118.227.167,40.118.224.22,40.118.226.153","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-109","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3632' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:54:45 GMT - etag: - - '"1D587FDE89F6455"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"repoUrl": "https://github.com/yugangw-msft/azure-site-test.git", - "branch": "master", "isManualIntegration": true, "isMercurial": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '153' - Content-Type: - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' - headers: - cache-control: - - no-cache - content-length: - - '535' - content-type: - - application/json date: - - Mon, 21 Oct 2019 10:55:14 GMT - etag: - - '"1D587FE051E1C40"' + - Thu, 14 Nov 2019 01:41:20 GMT expires: - '-1' pragma: @@ -623,248 +204,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1181' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:55:37.5437565 - http://webapp-linux-free000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-55-36Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '709' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:55:46 GMT - etag: - - '"1D587FE051E1C40"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '534' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:56:17 GMT - etag: - - '"1D587FE051E1C40"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan -u -r - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/publishxml?api-version=2018-11-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Mon, 21 Oct 2019 10:56:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11993' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/config/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-free000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"ExternalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3129' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:56:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff + - '1195' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 400 + message: Bad Request version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml index af957d1dfb9..a28c08f5e14 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_alwaysOn000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:56:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:56:41 GMT + - Wed, 13 Nov 2019 11:08:57 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:43 GMT + - Wed, 13 Nov 2019 11:08:58 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1188' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_alwaysOn000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:56:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:56:44 GMT + - Wed, 13 Nov 2019 11:08:59 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","name":"plan-create-alwaysOn-e2e000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28586,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-055_28586","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":29493,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29493","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:52 GMT + - Wed, 13 Nov 2019 11:09:05 GMT expires: - '-1' pragma: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","name":"plan-create-alwaysOn-e2e000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28586,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-055_28586","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":29493,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29493","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:52 GMT + - Wed, 13 Nov 2019 11:09:06 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:54 GMT + - Wed, 13 Nov 2019 11:09:07 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1191' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","name":"plan-create-alwaysOn-e2e000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28586,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-055_28586","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":29493,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29493","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:56 GMT + - Wed, 13 Nov 2019 11:09:09 GMT expires: - '-1' pragma: @@ -403,26 +403,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002","name":"webapp-create-alwaysOn-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-create-alwaysOn-e2e000002","state":"Running","hostNames":["webapp-create-alwayson-e2eddtbjkkhfondicz424.azurewebsites.net"],"webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_alwaysOn000001-WestUSwebspace/sites/webapp-create-alwaysOn-e2e000002","repositorySiteName":"webapp-create-alwaysOn-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-create-alwayson-e2eddtbjkkhfondicz424.azurewebsites.net","webapp-create-alwayson-e2eddtbjkkhfondicz424.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-create-alwayson-e2eddtbjkkhfondicz424.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-create-alwayson-e2eddtbjkkhfondicz424.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:57:01.097","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-create-alwaysOn-e2e000002","trafficManagerHostNames":null,"sku":"Shared","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"067CFEC3FBEBADF44ADA9E7C63D4A31E1DC7C8917CA37CF6762BE591996E7CCD","kind":"app","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_alwaysOn000001","defaultHostName":"webapp-create-alwayson-e2eddtbjkkhfondicz424.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-create-alwaysOn-e2e000002","state":"Running","hostNames":["webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net"],"webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_alwaysOn000001-WestUSwebspace/sites/webapp-create-alwaysOn-e2e000002","repositorySiteName":"webapp-create-alwaysOn-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net","webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:14.697","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-create-alwaysOn-e2e000002","trafficManagerHostNames":null,"sku":"Shared","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"056615558DCED89A874A1E8F09F06032B839D189347EE2112A1B4645FFEBD1C1","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_alwaysOn000001","defaultHostName":"webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3801' + - '3789' content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:16 GMT + - Wed, 13 Nov 2019 11:09:31 GMT etag: - - '"1D587FE444C6D40"' + - '"1D59A12C936D380"' expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -465,29 +465,23 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/publishxml?api-version=2018-02-01 response: body: string: @@ -495,11 +489,11 @@ interactions: cache-control: - no-cache content-length: - - '1990' + - '1330' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:57:18 GMT + - Wed, 13 Nov 2019 11:09:33 GMT expires: - '-1' pragma: @@ -513,7 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11994' x-powered-by: - ASP.NET status: @@ -534,26 +528,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/config/web","name":"webapp-create-alwaysOn-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-create-alwaysOn-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-create-alwaysOn-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3175' + - '2977' content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:19 GMT + - Wed, 13 Nov 2019 11:09:34 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml index e8a1ceb5678..c9c3f6168aa 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:51:37Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:51:41 GMT + - Thu, 14 Nov 2019 01:40:52 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku --tags User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:42 GMT + - Thu, 14 Nov 2019 01:40:53 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:51:37Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:51:43 GMT + - Thu, 14 Nov 2019 01:40:54 GMT expires: - '-1' pragma: @@ -170,7 +170,7 @@ interactions: - -g -n --sku --tags User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -178,17 +178,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","name":"delete-me-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":143931,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_143931","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":24045,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24045","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1562' + - '1560' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:51 GMT + - Thu, 14 Nov 2019 01:41:00 GMT expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1176' + - '1195' x-powered-by: - ASP.NET status: @@ -227,7 +227,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -235,17 +235,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","name":"delete-me-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":143931,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_143931","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":24045,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24045","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1562' + - '1560' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:52 GMT + - Thu, 14 Nov 2019 01:41:00 GMT expires: - '-1' pragma: @@ -287,7 +287,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -303,7 +303,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:54 GMT + - Thu, 14 Nov 2019 01:41:00 GMT expires: - '-1' pragma: @@ -321,7 +321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' x-powered-by: - ASP.NET status: @@ -342,7 +342,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -350,17 +350,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","name":"delete-me-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":143931,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_143931","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":24045,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24045","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1562' + - '1560' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:55 GMT + - Thu, 14 Nov 2019 01:41:02 GMT expires: - '-1' pragma: @@ -404,26 +404,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003","name":"delete-me-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:00.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"62A8AD1555AF603677C560433C9536A4EBE91AA7B85B512F4B3CCD1A0BDBE60F","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:05.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35B42FBB9B1C45E56B06AE1616FA92C5B1CB1650387B665CCF53900959C6312C","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3525' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:16 GMT + - Thu, 14 Nov 2019 01:41:21 GMT etag: - - '"1D587FD910E3240"' + - '"1D59A8C9486EB6B"' expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -466,28 +466,22 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003/publishxml?api-version=2018-02-01 response: body: string: @@ -495,11 +489,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:52:16 GMT + - Thu, 14 Nov 2019 01:41:21 GMT expires: - '-1' pragma: @@ -513,7 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -534,26 +528,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003","name":"delete-me-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:00.74","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"62A8AD1555AF603677C560433C9536A4EBE91AA7B85B512F4B3CCD1A0BDBE60F","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:05.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35B42FBB9B1C45E56B06AE1616FA92C5B1CB1650387B665CCF53900959C6312C","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3525' + - '3528' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:18 GMT + - Thu, 14 Nov 2019 01:41:23 GMT etag: - - '"1D587FD910E3240"' + - '"1D59A8C9486EB6B"' expires: - '-1' pragma: @@ -592,11 +586,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-02-01 response: body: string: '' @@ -606,9 +600,9 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:52:22 GMT + - Thu, 14 Nov 2019 01:41:27 GMT etag: - - '"1D587FD910E3240"' + - '"1D59A8C9486EB6B"' expires: - '-1' pragma: @@ -622,7 +616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14998' x-powered-by: - ASP.NET status: @@ -658,7 +652,7 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"ishostnameavailable","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"ishostnameavailable","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -666,15 +660,15 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"validate","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"validate","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West India","Central India","South India","Canada Central","Canada East","West Central US","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Australia Central","Germany - West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"isusernameavailable","locations":["Central + Central US (Stage)","France Central","South Africa North","Australia Central","East + US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"isusernameavailable","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -682,7 +676,7 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sourceControls","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sourceControls","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -690,7 +684,7 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"availableStacks","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"availableStacks","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -698,7 +692,7 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"listSitesAssignedToHostName","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"listSitesAssignedToHostName","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -706,7 +700,7 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/getNetworkPolicies","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/getNetworkPolicies","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -714,43 +708,39 @@ interactions: South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-02-01","2016-08-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/networkConfig","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/networkConfig","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/hostNameBindings","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/hostNameBindings","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["Central + EUAP"],"apiVersions":["2019-08-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/networkConfig","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/networkConfig","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/hostNameBindings","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/hostNameBindings","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -758,67 +748,62 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"certificates","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"},{"resourceType":"serverFarms","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"certificates","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","East US 2 EUAP","Central + US EUAP","West US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossSubscriptionResourceMove, + SupportsTags, SupportsLocation"},{"resourceType":"serverFarms","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sites","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea + EUAP","West US","Central US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sites","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + EUAP","West US","Central US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"sites/slots","locations":["Central US","North - Europe","West Europe","Southeast Asia","West US","East US","Japan East","East - Asia","East US 2","North Central US","South Central US","Brazil South","Australia - East","Australia Southeast","South India","Canada Central","Canada East","UK - West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT - North Europe","East US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France - Central","South Africa North","Japan West","Central India","Korea Central","West - India","Australia Central","Germany West Central","Korea South","West Central - US","East Asia (Stage)","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"runtimes","locations":[],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"recommendations","locations":[],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"resourceHealthMetadata","locations":[],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"georegions","locations":[],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/premieraddons","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT + SupportsLocation"},{"resourceType":"sites/slots","locations":["North Europe","West + Europe","Southeast Asia","Japan East","East US 2","North Central US","South + Central US","Brazil South","Australia East","Australia Southeast","South India","Canada + Central","Canada East","UK West","UK South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"hostingEnvironments","locations":["West - US","East Asia","North Central US","South Central US","Brazil South","Australia - East","Australia Southeast","South India","Canada Central","Canada East","UK - West","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East - US 2 (Stage)","Central US (Stage)","North Central US (Stage)","South Africa - North","Central US","West US 2","East US 2","East US","UK South","Southeast - Asia","North Europe","Japan East","West Europe","Japan West","Central India","Korea - Central","France Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2019-02-01","2019-01-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"}],"zoneMappings":[{"location":"East + India","Korea Central","West India","Australia Central","Korea South","West + Central US","East Asia (Stage)","East US 2 EUAP","Central US EUAP","West US","Central + US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"runtimes","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"recommendations","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"resourceHealthMetadata","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"georegions","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/premieraddons","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","East US 2 EUAP","Central + US EUAP","West US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"hostingEnvironments","locations":["North + Central US","South Central US","Brazil South","Australia East","Australia + Southeast","South India","Canada Central","Canada East","UK West","MSFT West + US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","South Africa North","East US 2","UK + South","Southeast Asia","North Europe","Japan East","West Europe","Japan West","Central + India","Korea Central","France Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2019-01-01","2018-11-01","2018-08-01","2018-05-01-preview","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"}],"zoneMappings":[{"location":"East US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central US EUAP","zones":[]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast @@ -826,33 +811,30 @@ interactions: Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia East","zones":[]},{"location":"South Africa North","zones":[]},{"location":"South - Central US","zones":[]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostingEnvironments/multiRolePools","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"hostingEnvironments/workerPools","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"deploymentLocations","locations":["Central + Central US","zones":[]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostingEnvironments/multiRolePools","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"hostingEnvironments/workerPools","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"deploymentLocations","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West India","Central India","South India","Canada Central","Canada East","West Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Australia Central","Germany - West Central"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"functions","locations":["Central + Central US (Stage)","France Central","South Africa North","Australia Central"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"functions","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -860,91 +842,97 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"deletedSites","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deletedSites","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Central - US","North Europe","West Europe","Southeast Asia","West US","East US","Japan - East","East Asia","East US 2","North Central US","South Central US","Brazil - South","Australia East","Australia Southeast","South India","Canada Central","Canada - East","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Germany West Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-11-01","2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"connections","locations":["North + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"deletedSites","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deletedSites","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan + West","Central India","Korea Central","West India","Australia Central","Korea + South","West Central US","East Asia (Stage)","East Asia","West US","Central + US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["North + Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central + US","South Central US","Brazil South","Australia East","Australia Southeast","South + India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT + East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","East + Asia","Japan West","Central India","Korea Central","West India","Australia + Central","Korea South","West Central US","East Asia (Stage)","East US 2 EUAP","Central + US EUAP","West US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-11-01","2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"connections","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"CrossResourceGroupResourceMove, + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"customApis","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"CrossResourceGroupResourceMove, + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/listWsdlInterfaces","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/extractApiDefinitionFromWsdl","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/managedApis","locations":["North + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/managedApis","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/runtimes","locations":["North + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/runtimes","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/apiOperations","locations":["North + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"locations/apiOperations","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"connectionGateways","locations":["North + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-07-01-preview","2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"connectionGateways","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"CrossResourceGroupResourceMove, + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectionGatewayInstallations","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central India","West India","West US 2","West Central US","Canada Central","Canada East","UK South","UK West","France Central","France South","Korea Central","Korea - South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["Central + South","South Africa West","South Africa North","Central US EUAP","East US + 2 EUAP"],"apiVersions":["2018-03-01-preview","2016-06-01","2015-08-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-06-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-06-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-03-01-preview"}],"capabilities":"None"},{"resourceType":"checkNameAvailability","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -952,7 +940,7 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"billingMeters","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"billingMeters","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -960,7 +948,7 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"verifyHostingEnvironmentVnet","locations":["Central + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"verifyHostingEnvironmentVnet","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -968,18 +956,18 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","Germany West Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East - US 2 EUAP"],"apiVersions":["2019-01-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2019-01-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["East - US 2 EUAP"],"apiVersions":["2019-01-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2019-01-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East + US 2 EUAP"],"apiVersions":["2019-08-01","2019-01-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2019-01-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["East + US 2 EUAP"],"apiVersions":["2019-08-01","2019-01-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2019-01-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47470' + - '47684' content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:24 GMT + - Thu, 14 Nov 2019 01:41:28 GMT expires: - '-1' pragma: @@ -1008,51 +996,67 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Europe/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/72678","name":"cliwavo6gbvwb6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":72678,"deletedTimestamp":"2019-10-16T04:48:06.4080361","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgu2yghzh37x","webSpace":"clitest.rgu2yghzh37x-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"cliwavo6gbvwb6","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74160","name":"functionappelastic3ndjouw7ytl3zh336bgqob","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74160,"deletedTimestamp":"2019-10-16T14:53:46.1342929","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgskms7ubowpc3k5tzo7xwifakz5rp4ewcgm4pffjawlqcvhsw3z2ragovbuno5dgvd","webSpace":"clitest.rgskms7ubowpc3k5tzo7xwifakz5rp4ewcgm4pffjawlqcvhsw3z2ragovbuno5dgvd-CentralUSwebspace","stamp":"waws-prod-dm1-111","deletedSiteName":"functionappelastic3ndjouw7ytl3zh336bgqob","slot":"Production","kind":"functionapp","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74172","name":"climi2zswoetz3x","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74172,"deletedTimestamp":"2019-10-16T14:59:00.0035012","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjfkok4c7ix","webSpace":"clitest.rgjfkok4c7ix-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"climi2zswoetz3x","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74174","name":"cliaoimachvlyy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74174,"deletedTimestamp":"2019-10-16T15:00:03.3896780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgu3ofajm6lj","webSpace":"clitest.rgu3ofajm6lj-CentralUSwebspace","stamp":"waws-prod-dm1-155","deletedSiteName":"cliaoimachvlyy","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74188","name":"cliglb3vx5kg2ze","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74188,"deletedTimestamp":"2019-10-16T15:05:54.9401115","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnqgvhxdlee","webSpace":"clitest.rgnqgvhxdlee-CentralUSwebspace","stamp":"waws-prod-dm1-039","deletedSiteName":"cliglb3vx5kg2ze","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74301","name":"cliooveaegmlhuw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74301,"deletedTimestamp":"2019-10-16T15:24:49.3938865","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpha6khbpq5","webSpace":"clitest.rgpha6khbpq5-CentralUSwebspace","stamp":"waws-prod-dm1-151","deletedSiteName":"cliooveaegmlhuw","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74304","name":"cligsmufyjjm6ld","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74304,"deletedTimestamp":"2019-10-16T15:25:11.0533718","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3nwqgyaarj","webSpace":"clitest.rg3nwqgyaarj-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"cligsmufyjjm6ld","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74323","name":"clifcv7oi57hmqt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74323,"deletedTimestamp":"2019-10-16T15:29:17.6976493","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgihholjaumj","webSpace":"clitest.rgihholjaumj-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"clifcv7oi57hmqt","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74531","name":"cliztn5vtd7nbnq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74531,"deletedTimestamp":"2019-10-16T16:33:26.6005549","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4rsowhreim","webSpace":"clitest.rg4rsowhreim-CentralUSwebspace","stamp":"waws-prod-dm1-147","deletedSiteName":"cliztn5vtd7nbnq","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74543","name":"cli5s4j3rtfujk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74543,"deletedTimestamp":"2019-10-16T16:37:55.4749775","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6qso2z4pvl","webSpace":"clitest.rg6qso2z4pvl-CentralUSwebspace","stamp":"waws-prod-dm1-125","deletedSiteName":"cli5s4j3rtfujk4","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74583","name":"cliapgg72c5nf3v","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74583,"deletedTimestamp":"2019-10-16T16:50:46.9552050","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdj7pu4v5ti","webSpace":"clitest.rgdj7pu4v5ti-CentralUSwebspace","stamp":"waws-prod-dm1-047","deletedSiteName":"cliapgg72c5nf3v","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74609","name":"cliyyjicwgaq6vq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74609,"deletedTimestamp":"2019-10-16T16:57:36.6927022","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgryxu22pvph","webSpace":"clitest.rgryxu22pvph-CentralUSwebspace","stamp":"waws-prod-dm1-153","deletedSiteName":"cliyyjicwgaq6vq","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/74651","name":"clig5m22p7b4cbj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74651,"deletedTimestamp":"2019-10-16T17:15:57.4354728","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgktomzudqpf","webSpace":"clitest.rgktomzudqpf-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"clig5m22p7b4cbj","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central - US/deletedSites/78222","name":"clicawq2jychcv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":78222,"deletedTimestamp":"2019-10-17T15:52:09.7356971","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghcciycm7cv","webSpace":"clitest.rghcciycm7cv-CentralUSwebspace","stamp":"waws-prod-dm1-137","deletedSiteName":"clicawq2jychcv","slot":"Production","kind":"app","geoRegionName":"Central - US","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '8235' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:25 GMT + - Thu, 14 Nov 2019 01:41:29 GMT expires: - '-1' pragma: @@ -1089,16 +1093,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Europe/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Europe/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1106,16 +1108,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:26 GMT + - Thu, 14 Nov 2019 01:41:29 GMT expires: - '-1' pragma: @@ -1152,16 +1190,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Europe/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast%20Asia/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1169,16 +1205,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:26 GMT + - Thu, 14 Nov 2019 01:41:30 GMT expires: - '-1' pragma: @@ -1215,16 +1287,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast%20Asia/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20East/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1232,16 +1302,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:28 GMT + - Thu, 14 Nov 2019 01:41:31 GMT expires: - '-1' pragma: @@ -1278,221 +1384,67 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3386","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3386,"deletedTimestamp":"2019-09-25T12:16:27.5183483","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_create37ufy23rtu3hee35hu7efxp44jdx74s4gvdy7oigonmdsfvwan2","webSpace":"cli_test_resource_create37ufy23rtu3hee35hu7efxp44jdx74s4gvdy7oigonmdsfvwan2-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3387","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3387,"deletedTimestamp":"2019-09-26T07:10:01.3454277","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createawfa4ssvlmqr2vegoy42mn6myrqrytlbk7irgz5txczostq7de7","webSpace":"cli_test_resource_createawfa4ssvlmqr2vegoy42mn6myrqrytlbk7irgz5txczostq7de7-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3388","name":"swiftwebappn33o7lfe3gbqh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3388,"deletedTimestamp":"2019-10-13T13:35:28.0870100","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbgkcu5nn7dk72dgfjjomzqov4cya774zefd3eria7vn6pz56nl4gbevdylgxck6w7","webSpace":"clitest.rgbgkcu5nn7dk72dgfjjomzqov4cya774zefd3eria7vn6pz56nl4gbevdylgxck6w7-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"swiftwebappn33o7lfe3gbqh","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3389","name":"swiftwebappk3f6xmyq4ng2f","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3389,"deletedTimestamp":"2019-10-14T01:44:07.3458908","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnm3lrjxxmnamxpxjmqkd7zzz63shcmmxnmp3qu3ifjamr7nagkeuirgrsj4yzlqn6","webSpace":"clitest.rgnm3lrjxxmnamxpxjmqkd7zzz63shcmmxnmp3qu3ifjamr7nagkeuirgrsj4yzlqn6-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"swiftwebappk3f6xmyq4ng2f","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3390","name":"swiftwebapp3ka6khopdvbn3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3390,"deletedTimestamp":"2019-10-14T03:40:07.8577621","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh5iw4ahow4zortyjg4zplkjepdnylecayyufg3dvv4g4ciuapec7znbqcek3gd2sz","webSpace":"clitest.rgh5iw4ahow4zortyjg4zplkjepdnylecayyufg3dvv4g4ciuapec7znbqcek3gd2sz-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"swiftwebapp3ka6khopdvbn3","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3391","name":"swiftwebappgvtgsjby2ibwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3391,"deletedTimestamp":"2019-10-14T04:30:22.6496011","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgaiezkx7fzowgsrgozhhcgn73dttke5a7zttx2yrbx6vzgupt7qj3w4yywfqjalssi","webSpace":"clitest.rgaiezkx7fzowgsrgozhhcgn73dttke5a7zttx2yrbx6vzgupt7qj3w4yywfqjalssi-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"swiftwebappgvtgsjby2ibwv","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3392","name":"swiftwebapppp7ewxml52lr6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3392,"deletedTimestamp":"2019-10-15T16:56:44.5813836","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7gfdrqn34w5wgzosttuh4m46efgj4cnle2tavihacshusidsh6exqwqpxpd44patg","webSpace":"clitest.rg7gfdrqn34w5wgzosttuh4m46efgj4cnle2tavihacshusidsh6exqwqpxpd44patg-WestUSwebspace","stamp":"waws-prod-bay-097","deletedSiteName":"swiftwebapppp7ewxml52lr6","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3393","name":"web-msiupzrk2tqou66z","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3393,"deletedTimestamp":"2019-10-15T16:58:20.0148537","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgllmqv42usznqoiyo4rbbz4imssmpvczlxt4x67hg5t7rf2f6dl2vj76vnodxp4wl4","webSpace":"clitest.rgllmqv42usznqoiyo4rbbz4imssmpvczlxt4x67hg5t7rf2f6dl2vj76vnodxp4wl4-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"web-msiupzrk2tqou66z","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3394","name":"appr2xjlbqw4sfp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3394,"deletedTimestamp":"2019-10-15T17:13:03.9419611","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_metric_alert_v22kvu7jid7gldl2a77v4pi5sx32uigfskvawh26j24n24vhfoloz","webSpace":"cli_test_metric_alert_v22kvu7jid7gldl2a77v4pi5sx32uigfskvawh26j24n24vhfoloz-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"appr2xjlbqw4sfp","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3395","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3395,"deletedTimestamp":"2019-10-16T07:40:29.0628138","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createt5rbmiq65ybxgnk74vqborsxqghw7f27onpr45qhjayelize2q7","webSpace":"cli_test_resource_createt5rbmiq65ybxgnk74vqborsxqghw7f27onpr45qhjayelize2q7-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3396","name":"cli-funcapp-nwr7q2mg7idv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3396,"deletedTimestamp":"2019-10-16T14:38:08.4571802","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvkcwmzprdukjvbgsr22zcpu44nvl6qxk6z3d5f4ctmxi24bnpjcw2xuchm63qvyty","webSpace":"clitest.rgvkcwmzprdukjvbgsr22zcpu44nvl6qxk6z3d5f4ctmxi24bnpjcw2xuchm63qvyty-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-funcapp-nwr7q2mg7idv","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3397","name":"cli-webapp-nwrkxfpe2pnea","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3397,"deletedTimestamp":"2019-10-16T14:38:19.2484038","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm4x5d6adqwuiofmvm4u2opc3zmjk2lddm2fcrn7jtv5egzrkzijyv4ecg2eqylzr7","webSpace":"clitest.rgm4x5d6adqwuiofmvm4u2opc3zmjk2lddm2fcrn7jtv5egzrkzijyv4ecg2eqylzr7-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwrkxfpe2pnea","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3398","name":"cli-webapp-nwr2gso3j2fgj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3398,"deletedTimestamp":"2019-10-16T14:38:24.2540435","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwwipm6xplsyjcqwmfckxgkij4nqnajcmuwgiis6yj2kigkamwlhtjiblyherpgakm","webSpace":"clitest.rgwwipm6xplsyjcqwmfckxgkij4nqnajcmuwgiis6yj2kigkamwlhtjiblyherpgakm-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwr2gso3j2fgj","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3399","name":"cli-webapp-nwrag5jpuzoci","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3399,"deletedTimestamp":"2019-10-16T14:38:37.5158573","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqvm3mbe2dwmhhgvfq26ybtrxlsm3mvggqxnxqcl3geg3u2j7jo2lrh6sduaqemadz","webSpace":"clitest.rgqvm3mbe2dwmhhgvfq26ybtrxlsm3mvggqxnxqcl3geg3u2j7jo2lrh6sduaqemadz-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-webapp-nwrag5jpuzoci","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3400","name":"cli-webapp-nwrm2quivohyj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3400,"deletedTimestamp":"2019-10-16T14:38:44.0521720","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvxjenffqglnjc52wnt3nk4pgyutkwia7np226dwjewyrhw2bguv5hwqlrsudzuhix","webSpace":"clitest.rgvxjenffqglnjc52wnt3nk4pgyutkwia7np226dwjewyrhw2bguv5hwqlrsudzuhix-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwrm2quivohyj","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3401","name":"cli-webapp-nwrn2sgodtgvd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3401,"deletedTimestamp":"2019-10-16T14:38:57.0541727","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbjpliawigmazk4t6fmnlj6gnzyyial5a344sn5q2tcoidmiqy7tpzsrfswcapdqgq","webSpace":"clitest.rgbjpliawigmazk4t6fmnlj6gnzyyial5a344sn5q2tcoidmiqy7tpzsrfswcapdqgq-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-webapp-nwrn2sgodtgvd","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3402","name":"cli-webapp-nwrmfncj7tuvb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3402,"deletedTimestamp":"2019-10-16T14:39:00.1070634","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4iphgrgikxytgl35yuvezwreytd4ndw2all7ufpu6wvganfyrbku7d7fw76hpl264","webSpace":"clitest.rg4iphgrgikxytgl35yuvezwreytd4ndw2all7ufpu6wvganfyrbku7d7fw76hpl264-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-webapp-nwrmfncj7tuvb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3403","name":"cli-webapp-nwr67df6xdbkk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3403,"deletedTimestamp":"2019-10-16T14:39:26.0869246","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxcgbtzxhyxt5ip55d7qvj2js67trhegs4u75ctixdi2evcmip3a5yos6szim2icm7","webSpace":"clitest.rgxcgbtzxhyxt5ip55d7qvj2js67trhegs4u75ctixdi2evcmip3a5yos6szim2icm7-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-webapp-nwr67df6xdbkk","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3404","name":"webnppfrnwc7cjjr3fwfahjq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3404,"deletedTimestamp":"2019-10-16T14:39:34.9020841","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6n2ezugwiz52y6chvwqvja7trlbvhllyj7pjdemuawojihf6a62fj22efatytio3t","webSpace":"clitest.rg6n2ezugwiz52y6chvwqvja7trlbvhllyj7pjdemuawojihf6a62fj22efatytio3t-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"webnppfrnwc7cjjr3fwfahjq","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3405","name":"webInOtherRG","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3405,"deletedTimestamp":"2019-10-16T14:39:41.4829469","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3342xpzhvmf7jq226fj7w2b64ewbvgavujbcd3245e5jqsq2k64dsrc6olwskrb5x","webSpace":"clitest.rg3342xpzhvmf7jq226fj7w2b64ewbvgavujbcd3245e5jqsq2k64dsrc6olwskrb5x-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webInOtherRG","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3406","name":"webapp-quickfyyesly7oarm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3406,"deletedTimestamp":"2019-10-16T14:40:10.2347234","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwd2fqhljvh7vr2wxue4qssmgg7bcgibgksmbryeuk3wi6xt5ifpjzxczta6ize2c2","webSpace":"clitest.rgwd2fqhljvh7vr2wxue4qssmgg7bcgibgksmbryeuk3wi6xt5ifpjzxczta6ize2c2-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"webapp-quickfyyesly7oarm","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3407","name":"cli-webapp-nwroyfbth5hkj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3407,"deletedTimestamp":"2019-10-16T14:40:27.9924937","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggctvbzcegoh53hyxt3f2jwjc72f5wlzvbc4cgapeb5wqhwt5vlhonp66yemf74blx","webSpace":"clitest.rggctvbzcegoh53hyxt3f2jwjc72f5wlzvbc4cgapeb5wqhwt5vlhonp66yemf74blx-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-webapp-nwroyfbth5hkj","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3408","name":"webapp-e2efl3i3nwgtqvmp2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3408,"deletedTimestamp":"2019-10-16T14:40:28.6457502","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgesb5ov7u77pnp45io6p6rizw763uim2kgs5brhnxqbgmjjin23lv6zmhgclthoxro","webSpace":"clitest.rgesb5ov7u77pnp45io6p6rizw763uim2kgs5brhnxqbgmjjin23lv6zmhgclthoxro-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-e2efl3i3nwgtqvmp2","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3409","name":"cli-webapp-nwrifbvdprlyh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3409,"deletedTimestamp":"2019-10-16T14:40:32.7792799","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq","webSpace":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-webapp-nwrifbvdprlyh","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3410","name":"cli-webapp-nwrifbvdprlyh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3410,"deletedTimestamp":"2019-10-16T14:40:32.8419234","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq","webSpace":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-webapp-nwrifbvdprlyh","slot":"stage","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3411","name":"web-erroredyxyq6imps5tg5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3411,"deletedTimestamp":"2019-10-16T14:40:55.5519704","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7xbe4ugka3cvj5zxvj6effge5jgr2ybcw76hbtxcqdreil7abgmdqceldne5pwueq","webSpace":"clitest.rg7xbe4ugka3cvj5zxvj6effge5jgr2ybcw76hbtxcqdreil7abgmdqceldne5pwueq-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"web-erroredyxyq6imps5tg5","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3412","name":"webapp-linux-multirgl2mj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3412,"deletedTimestamp":"2019-10-16T14:41:01.6678119","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5s4xdbmbrwgwyn7tlybri44dvujix5ox23owgerkkg3tbdlqwbrnzyocsohkkczwv","webSpace":"clitest.rg5s4xdbmbrwgwyn7tlybri44dvujix5ox23owgerkkg3tbdlqwbrnzyocsohkkczwv-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"webapp-linux-multirgl2mj","slot":"Production","kind":"app,linux,container","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3413","name":"webapp-quickk2idwex6pa7w","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3413,"deletedTimestamp":"2019-10-16T14:41:11.8893841","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkvs6r2vehnimk6zvxm2w3mifxijfjbeu2mrcnifgdj4csndrpra3f24nsfdeu4z45","webSpace":"clitest.rgkvs6r2vehnimk6zvxm2w3mifxijfjbeu2mrcnifgdj4csndrpra3f24nsfdeu4z45-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"webapp-quickk2idwex6pa7w","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3414","name":"webapp-quick-cdtlyd4ssoa","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3414,"deletedTimestamp":"2019-10-16T14:41:50.7580481","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgswnuszu5p2k6pa3qwp4zpjrsb3l4odoiyoe5ti3ositf76jzv3xxiuxctm3tsgjzn","webSpace":"clitest.rgswnuszu5p2k6pa3qwp4zpjrsb3l4odoiyoe5ti3ositf76jzv3xxiuxctm3tsgjzn-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-quick-cdtlyd4ssoa","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3415","name":"webapp-config-test5bhrwfs46b7rxlvq6eigla","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3415,"deletedTimestamp":"2019-10-16T14:41:58.9602234","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_json4rjy5scjbeq4rlfdtq4o7abnaet34y2nnpb4hulq4fhpkzxmsozmsls","webSpace":"cli_test_webapp_json4rjy5scjbeq4rlfdtq4o7abnaet34y2nnpb4hulq4fhpkzxmsozmsls-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"webapp-config-test5bhrwfs46b7rxlvq6eigla","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3416","name":"webapp-win-logssg6s7sjdy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3416,"deletedTimestamp":"2019-10-16T14:42:30.9329787","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgthk7rmfhcvopjfm4ixmpgbxh6krjn7so6ud5vapo6cbtqegx5gd2qt7fqntr7z3mf","webSpace":"clitest.rgthk7rmfhcvopjfm4ixmpgbxh6krjn7so6ud5vapo6cbtqegx5gd2qt7fqntr7z3mf-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-win-logssg6s7sjdy","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3417","name":"web-ssl-testzn3jfo2e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3417,"deletedTimestamp":"2019-10-16T14:42:51.8448319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqdllviohbflyzeuqtgyfiqfisdilneclnn44q7taadejonnmng3kpuj36pgwuwxkm","webSpace":"clitest.rgqdllviohbflyzeuqtgyfiqfisdilneclnn44q7taadejonnmng3kpuj36pgwuwxkm-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"web-ssl-testzn3jfo2e","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3418","name":"functionapp-slottwz46npq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3418,"deletedTimestamp":"2019-10-16T14:44:37.2059748","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz","webSpace":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionapp-slottwz46npq","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3419","name":"functionapp-slottwz46npq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3419,"deletedTimestamp":"2019-10-16T14:44:37.2841034","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz","webSpace":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionapp-slottwz46npq","slot":"slotnamegag64ljay7o2jp2r","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3420","name":"slot-traffic-web7vbertq6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3420,"deletedTimestamp":"2019-10-16T14:44:44.1785174","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh","webSpace":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-web7vbertq6","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3421","name":"slot-traffic-web7vbertq6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3421,"deletedTimestamp":"2019-10-16T14:44:44.2566448","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh","webSpace":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-web7vbertq6","slot":"staging","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3422","name":"slot-traffic-webwwdpjqtj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3422,"deletedTimestamp":"2019-10-16T14:45:01.8931622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq67c6yjlpbcfde2puas6gnncgkbpvvwakuf3ozd7q6lew75k3uofhnktnhnqpfwpi","webSpace":"clitest.rgq67c6yjlpbcfde2puas6gnncgkbpvvwakuf3ozd7q6lew75k3uofhnktnhnqpfwpi-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"slot-traffic-webwwdpjqtj","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3423","name":"delete-me-web7or2x5am6dk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3423,"deletedTimestamp":"2019-10-16T14:45:11.4087894","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrta6xlzky4s2spdlcd4xu7mpkegrvvbgbnzyvrspj34rupbcjgdaj6hxghimbczuy","webSpace":"clitest.rgrta6xlzky4s2spdlcd4xu7mpkegrvvbgbnzyvrspj34rupbcjgdaj6hxghimbczuy-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"delete-me-web7or2x5am6dk","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3424","name":"web-git-test2yfuqdykpuzb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3424,"deletedTimestamp":"2019-10-16T14:45:32.9524294","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgx4kqlm4y4xieqzkgqrhe3jnpagvvrzlndkkcxlokdk7ovyikd54uipxaycpmgmtxt","webSpace":"clitest.rgx4kqlm4y4xieqzkgqrhe3jnpagvvrzlndkkcxlokdk7ovyikd54uipxaycpmgmtxt-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"web-git-test2yfuqdykpuzb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3425","name":"webapp-create-alwaysOn-e2e2jl6dxa2eeusxcfm2b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3425,"deletedTimestamp":"2019-10-16T14:45:58.7821187","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_alwaysOnqvmy3e5kzf764e2ixsucxy5rxu4kgkqbbngx2e7rsmay5klhnpp","webSpace":"cli_test_webapp_alwaysOnqvmy3e5kzf764e2ixsucxy5rxu4kgkqbbngx2e7rsmay5klhnpp-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"webapp-create-alwaysOn-e2e2jl6dxa2eeusxcfm2b","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3426","name":"webapp-config-testflslw2wmycyisradqllfhw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3426,"deletedTimestamp":"2019-10-16T14:46:10.3452702","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configkwfqnbecn2xjedatrozvozsqi6ilozkddidrqmtb6idbsyothqqog","webSpace":"cli_test_webapp_configkwfqnbecn2xjedatrozvozsqi6ilozkddidrqmtb6idbsyothqqog-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"webapp-config-testflslw2wmycyisradqllfhw","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3427","name":"func-e2e5ryxljjeedoif4so","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3427,"deletedTimestamp":"2019-10-16T14:47:05.1550226","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk","webSpace":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"func-e2e5ryxljjeedoif4so","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3428","name":"webapp-zipDeploy-testnsfwz7dnvrn3detmkcd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3428,"deletedTimestamp":"2019-10-16T14:47:05.6791026","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_zipDeployz5wey7vnt34uqtiuhfysdqj5n2jzu6kotkydrwbnibwrq4b3p2","webSpace":"cli_test_webapp_zipDeployz5wey7vnt34uqtiuhfysdqj5n2jzu6kotkydrwbnibwrq4b3p2-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"webapp-zipDeploy-testnsfwz7dnvrn3detmkcd","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3429","name":"webapp-update-testttpjfmeesqm2otcc4mc7vl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3429,"deletedTimestamp":"2019-10-16T14:47:15.8823457","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld","webSpace":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webapp-update-testttpjfmeesqm2otcc4mc7vl","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3430","name":"webapp-update-testttpjfmeesqm2otcc4mc7vl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3430,"deletedTimestamp":"2019-10-16T14:47:15.9604845","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld","webSpace":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webapp-update-testttpjfmeesqm2otcc4mc7vl","slot":"s1","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3431","name":"functionapp-slotkit3upcs","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3431,"deletedTimestamp":"2019-10-16T14:47:29.8119137","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm","webSpace":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotkit3upcs","slot":"slotnameqvhkeco7yaxs3f5j","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3432","name":"functionapp-slotkit3upcs","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3432,"deletedTimestamp":"2019-10-16T14:47:33.8560860","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm","webSpace":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotkit3upcs","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3433","name":"func-e2ellclrusvsbujcppv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3433,"deletedTimestamp":"2019-10-16T14:47:54.4772328","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk","webSpace":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"func-e2ellclrusvsbujcppv","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3434","name":"slot-traffic-webwuaimbxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3434,"deletedTimestamp":"2019-10-16T14:48:20.5707480","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5","webSpace":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-webwuaimbxh","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3435","name":"slot-traffic-webwuaimbxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3435,"deletedTimestamp":"2019-10-16T14:48:20.6488812","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5","webSpace":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-webwuaimbxh","slot":"slot1","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3436","name":"webapp-hyperv-e2ef7p6t5e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3436,"deletedTimestamp":"2019-10-16T14:49:18.7199343","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg43hespzwwpimbruh4opmprwobfedbljybzguwgqvrelq3jitiu2hckmzypyp6xvmx","webSpace":"clitest.rg43hespzwwpimbruh4opmprwobfedbljybzguwgqvrelq3jitiu2hckmzypyp6xvmx-WestUSwebspace","stamp":"waws-prod-bay-099","deletedSiteName":"webapp-hyperv-e2ef7p6t5e","slot":"Production","kind":"app,container,windows","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3437","name":"slot-swap-webkiu6e4ud7fh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3437,"deletedTimestamp":"2019-10-16T14:49:27.0650417","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm","webSpace":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"slot-swap-webkiu6e4ud7fh","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3438","name":"slot-swap-webkiu6e4ud7fh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3438,"deletedTimestamp":"2019-10-16T14:49:27.1900230","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm","webSpace":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"slot-swap-webkiu6e4ud7fh","slot":"staging","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3439","name":"web-msibmgh3h2mykksz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3439,"deletedTimestamp":"2019-10-16T14:49:56.4816230","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4b5pxvi25imvbg5rubyvmg6ctxjaquhvgtv62xfyrfgb5ccndrdydneheytwej4oa","webSpace":"clitest.rg4b5pxvi25imvbg5rubyvmg6ctxjaquhvgtv62xfyrfgb5ccndrdydneheytwej4oa-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"web-msibmgh3h2mykksz","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3440","name":"functionapp-slotylhxnjol","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3440,"deletedTimestamp":"2019-10-16T14:50:19.9669484","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy","webSpace":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"functionapp-slotylhxnjol","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3441","name":"functionapp-slotylhxnjol","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3441,"deletedTimestamp":"2019-10-16T14:50:20.0451008","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy","webSpace":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"functionapp-slotylhxnjol","slot":"slotnamegpoeotikzkxnhsof","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3442","name":"slot-test-webruklkpkcnp6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3442,"deletedTimestamp":"2019-10-16T14:51:04.8958671","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg","webSpace":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"slot-test-webruklkpkcnp6","slot":"staging","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3443","name":"slot-test-webruklkpkcnp6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3443,"deletedTimestamp":"2019-10-16T14:51:10.6455069","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg","webSpace":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"slot-test-webruklkpkcnp6","slot":"dev","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3444","name":"slot-test-webruklkpkcnp6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3444,"deletedTimestamp":"2019-10-16T14:51:45.8533977","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg","webSpace":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"slot-test-webruklkpkcnp6","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3445","name":"hcwebapp5eru4ayiosmow2uo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3445,"deletedTimestamp":"2019-10-16T14:53:05.8240505","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6zjwj63ingzxfwmttdoonl2lue5cxbrcric7ydyfporu3t6rs4mtqpehcij3fpb7e","webSpace":"clitest.rg6zjwj63ingzxfwmttdoonl2lue5cxbrcric7ydyfporu3t6rs4mtqpehcij3fpb7e-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"hcwebapp5eru4ayiosmow2uo","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3446","name":"webapp-authentication-testjjrgixg5ux7qd5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3446,"deletedTimestamp":"2019-10-16T14:54:32.8852767","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_authenticationwegjcxvod4rxtuuixbqj7rx2pcdh7whkhabbkp3tpftko","webSpace":"cli_test_webapp_authenticationwegjcxvod4rxtuuixbqj7rx2pcdh7whkhabbkp3tpftko-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"webapp-authentication-testjjrgixg5ux7qd5","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3447","name":"swiftwebapp266o4acwlz57a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3447,"deletedTimestamp":"2019-10-16T14:56:05.7052371","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgltty6dynwi5sxehfhgszi5z34qjv6najdb3v6xoybpqyzn33c52epvxmrvzmm55em","webSpace":"clitest.rgltty6dynwi5sxehfhgszi5z34qjv6najdb3v6xoybpqyzn33c52epvxmrvzmm55em-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"swiftwebapp266o4acwlz57a","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3448","name":"apppuuvw3y2agbx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3448,"deletedTimestamp":"2019-10-16T16:43:35.2233015","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_metric_alert_v2ng656texwoldyngtpexkkvase2xmxx5l5445kxydrlbvg2vnfa5","webSpace":"cli_test_metric_alert_v2ng656texwoldyngtpexkkvase2xmxx5l5445kxydrlbvg2vnfa5-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"apppuuvw3y2agbx","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3449","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3449,"deletedTimestamp":"2019-10-17T00:58:01.9995694","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createaxkygpph6lidbgbgdxe234fgdm2xyxx4dyrghxxenlqc37uecog","webSpace":"cli_test_resource_createaxkygpph6lidbgbgdxe234fgdm2xyxx4dyrghxxenlqc37uecog-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3450","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3450,"deletedTimestamp":"2019-10-17T06:17:48.5024024","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createi2plmtpe5oms5lrnstwxhazaor7c5xqnbsz5xo2ecgbslcyiiwx","webSpace":"cli_test_resource_createi2plmtpe5oms5lrnstwxhazaor7c5xqnbsz5xo2ecgbslcyiiwx-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3451","name":"swiftwebappoun6pbaddcfre","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3451,"deletedTimestamp":"2019-10-17T11:18:45.2342303","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2eazmdjp3hlriqs6hjk3rkmmrq7ikdy753pkjopjk77ntsadxzh6df2fhpqugxkic","webSpace":"clitest.rg2eazmdjp3hlriqs6hjk3rkmmrq7ikdy753pkjopjk77ntsadxzh6df2fhpqugxkic-WestUSwebspace","stamp":"waws-prod-bay-089","deletedSiteName":"swiftwebappoun6pbaddcfre","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3452","name":"swiftwebappfsercqmcuebyy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3452,"deletedTimestamp":"2019-10-17T11:20:39.0884109","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpcoaoutxr2bjxmb7aqsf7qgp3rkryp23f275q2ihezpnwopujitjkekyrq3zhk5xr","webSpace":"clitest.rgpcoaoutxr2bjxmb7aqsf7qgp3rkryp23f275q2ihezpnwopujitjkekyrq3zhk5xr-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"swiftwebappfsercqmcuebyy","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3453","name":"swiftwebappcmj7bccv7ownq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3453,"deletedTimestamp":"2019-10-17T15:44:51.6724052","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghgcuwdmhdgoh3ovalpotogjffu5kvamzthj4php2kp5mcznzremr2ii5llor3nq4w","webSpace":"clitest.rghgcuwdmhdgoh3ovalpotogjffu5kvamzthj4php2kp5mcznzremr2ii5llor3nq4w-WestUSwebspace","stamp":"waws-prod-bay-137","deletedSiteName":"swiftwebappcmj7bccv7ownq","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/42368","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":42368,"deletedTimestamp":"2019-10-19T14:15:04.4904337","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createumxbhibzy2otwutz3sufywbrcfyvd2h4iohgdyx6sus5srtpnj6","webSpace":"cli_test_resource_createumxbhibzy2otwutz3sufywbrcfyvd2h4iohgdyx6sus5srtpnj6-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/42388","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":42388,"deletedTimestamp":"2019-10-19T15:35:43.9187645","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createnja6t3tmyrgyjyurutfm6ockkxyd6el6boews7pb5i7invuvpyt","webSpace":"cli_test_resource_createnja6t3tmyrgyjyurutfm6ockkxyd6el6boews7pb5i7invuvpyt-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/43929","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":43929,"deletedTimestamp":"2019-10-21T05:14:33.6229622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_create7gkppgiqv32jchvqyn4atdpgkonksjj5yg3qrkutx74bsngwvjf","webSpace":"cli_test_resource_create7gkppgiqv32jchvqyn4atdpgkonksjj5yg3qrkutx74bsngwvjf-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44539","name":"cli-webapp-nwrazd3lcemej","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44539,"deletedTimestamp":"2019-10-21T10:44:29.7156890","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqigf4b7lqbu5xmbvzcxngwqxh3l2xid2nhfkis2ijbcu5skbxmvsxy7zd5nrtvhan","webSpace":"clitest.rgqigf4b7lqbu5xmbvzcxngwqxh3l2xid2nhfkis2ijbcu5skbxmvsxy7zd5nrtvhan-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwrazd3lcemej","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44551","name":"cli-funcapp-nwrtoodiszlv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44551,"deletedTimestamp":"2019-10-21T10:44:48.9988911","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq6g4ehlvcyy6jmtxmuzhwvkm4de4k7hheinje2u4qfozp6cni7dofgtegeft3mxy6","webSpace":"clitest.rgq6g4ehlvcyy6jmtxmuzhwvkm4de4k7hheinje2u4qfozp6cni7dofgtegeft3mxy6-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-funcapp-nwrtoodiszlv","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44554","name":"cli-webapp-nwrnw6yu4r4kl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44554,"deletedTimestamp":"2019-10-21T10:45:12.3056365","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgilo2m3v7tokcxvmyl3pjtwqbnue3b4opphjn5ljfsccjhsko2najuseet3ifzbuyv","webSpace":"clitest.rgilo2m3v7tokcxvmyl3pjtwqbnue3b4opphjn5ljfsccjhsko2najuseet3ifzbuyv-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrnw6yu4r4kl","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44556","name":"cli-webapp-nwrramwtmqw2t","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44556,"deletedTimestamp":"2019-10-21T10:45:26.8794893","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgl6g23wwnk4lj7yjbf4kbk3jfm2xtbjhcik23bfvjs2zk2pbuboghvnlgm4ajstwpz","webSpace":"clitest.rgl6g23wwnk4lj7yjbf4kbk3jfm2xtbjhcik23bfvjs2zk2pbuboghvnlgm4ajstwpz-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-webapp-nwrramwtmqw2t","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44557","name":"cli-webapp-nwrdqjq7dqnwc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44557,"deletedTimestamp":"2019-10-21T10:45:31.7488086","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgracwfmtyk36jbabtxtyqyh7oytt6sn4jlegwdl3zjw4xgaevapptduxaqdj5ajm3t","webSpace":"clitest.rgracwfmtyk36jbabtxtyqyh7oytt6sn4jlegwdl3zjw4xgaevapptduxaqdj5ajm3t-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwrdqjq7dqnwc","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44558","name":"cli-webapp-nwrhn573uer6w","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44558,"deletedTimestamp":"2019-10-21T10:45:42.7006949","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2ia4cqdcbhi7mxhmpunjxp3myauuicfacmhhtsca244gqtkcrwtubjqcfh7mni2du","webSpace":"clitest.rg2ia4cqdcbhi7mxhmpunjxp3myauuicfacmhhtsca244gqtkcrwtubjqcfh7mni2du-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-webapp-nwrhn573uer6w","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44560","name":"cli-webapp-nwr2ct2iznm2b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44560,"deletedTimestamp":"2019-10-21T10:45:57.3472372","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgitxjq3d4tzhkh6f5q3hvasxrtx4cbqgxnbzf7q2zypcc23ps2c4sm2qrcd3zd5v75","webSpace":"clitest.rgitxjq3d4tzhkh6f5q3hvasxrtx4cbqgxnbzf7q2zypcc23ps2c4sm2qrcd3zd5v75-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"cli-webapp-nwr2ct2iznm2b","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44563","name":"cli-webapp-nwr2es23kdesj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44563,"deletedTimestamp":"2019-10-21T10:46:13.8429528","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgubscoxvnwkkoqcp7wvh6ay34cogb6c7oy2bfrndavr2p4kftnelx3ca7aoufchdkw","webSpace":"clitest.rgubscoxvnwkkoqcp7wvh6ay34cogb6c7oy2bfrndavr2p4kftnelx3ca7aoufchdkw-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"cli-webapp-nwr2es23kdesj","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44564","name":"webInOtherRG","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44564,"deletedTimestamp":"2019-10-21T10:46:19.7862315","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglmb7bahd3xmisxhbo26y2uhvha4ftvwb22lyv33fr3zz5evljgkuyc5pz6zo66pr2","webSpace":"clitest.rglmb7bahd3xmisxhbo26y2uhvha4ftvwb22lyv33fr3zz5evljgkuyc5pz6zo66pr2-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webInOtherRG","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44565","name":"webn6dmyhiuutlvhzebhe7nk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44565,"deletedTimestamp":"2019-10-21T10:46:20.5519200","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq244ez2fonymvvhblrcqk6ek7whu3l4a43sxsz3jiiht4ljrfykhq4ym2kew6dh4p","webSpace":"clitest.rgq244ez2fonymvvhblrcqk6ek7whu3l4a43sxsz3jiiht4ljrfykhq4ym2kew6dh4p-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webn6dmyhiuutlvhzebhe7nk","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44567","name":"webapp-e2e4pmgyv3tlbnhzw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44567,"deletedTimestamp":"2019-10-21T10:46:23.6469371","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghrrnup3olmpcgqlqflgbdrlnxx47r3gg3zd2c7haxecrfcr5dgdrzswmuscawvuye","webSpace":"clitest.rghrrnup3olmpcgqlqflgbdrlnxx47r3gg3zd2c7haxecrfcr5dgdrzswmuscawvuye-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-e2e4pmgyv3tlbnhzw","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44568","name":"cli-webapp-nwryzjprpujcp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44568,"deletedTimestamp":"2019-10-21T10:46:27.3377133","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt","webSpace":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwryzjprpujcp","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44569","name":"cli-webapp-nwryzjprpujcp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44569,"deletedTimestamp":"2019-10-21T10:46:27.6502233","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt","webSpace":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwryzjprpujcp","slot":"stage","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44571","name":"webapp-quicktoqictutozj7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44571,"deletedTimestamp":"2019-10-21T10:46:35.5182579","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5os65amvfzwneetnp4yethg7sfj2vnzdkev7ajtmrczsef4omdpzse4ek4glcfjg4","webSpace":"clitest.rg5os65amvfzwneetnp4yethg7sfj2vnzdkev7ajtmrczsef4omdpzse4ek4glcfjg4-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webapp-quicktoqictutozj7","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44572","name":"webapp-linux-multihajttz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44572,"deletedTimestamp":"2019-10-21T10:46:54.5185829","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgprrxi4fthzvrfrezf7sfthagq2hrodykwryaa5ekvlt2fxktkafmndcsoaobyvmkt","webSpace":"clitest.rgprrxi4fthzvrfrezf7sfthagq2hrodykwryaa5ekvlt2fxktkafmndcsoaobyvmkt-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"webapp-linux-multihajttz","slot":"Production","kind":"app,linux,container","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44573","name":"cli-webapp-nwrycxkwtt4dv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44573,"deletedTimestamp":"2019-10-21T10:47:01.9395168","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbqwirhqqoj2dhbbylrgdozi4lmce3m34qn6tlbrbfhqjnxi5tome6lghqwwdqzp62","webSpace":"clitest.rgbqwirhqqoj2dhbbylrgdozi4lmce3m34qn6tlbrbfhqjnxi5tome6lghqwwdqzp62-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"cli-webapp-nwrycxkwtt4dv","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44575","name":"webapp-quicka6xsz67flstp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44575,"deletedTimestamp":"2019-10-21T10:47:16.9225224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglcky23oteiihalm3yhywpwuil56ca4z3ocoiqrdnncg36ktoo6ipw6uf6ajlsbjnb","webSpace":"clitest.rglcky23oteiihalm3yhywpwuil56ca4z3ocoiqrdnncg36ktoo6ipw6uf6ajlsbjnb-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"webapp-quicka6xsz67flstp","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44576","name":"web-errorvkkvjyvwtg5ce6z","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44576,"deletedTimestamp":"2019-10-21T10:47:31.0836682","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyvu6tuqmg2hm5whoyzocq6djk5xcdkmqeagrqyle7sqlmtv4qgwo7f5ht4jx3s6gg","webSpace":"clitest.rgyvu6tuqmg2hm5whoyzocq6djk5xcdkmqeagrqyle7sqlmtv4qgwo7f5ht4jx3s6gg-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"web-errorvkkvjyvwtg5ce6z","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44577","name":"webapp-config-test2onr5kt6awir2v4wkzroz6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44577,"deletedTimestamp":"2019-10-21T10:47:41.1573962","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_json3rl2vwxk3vzxm2jpbxhubei22farktmlvumm4m7vjym2dkkei4o3wqu","webSpace":"cli_test_webapp_json3rl2vwxk3vzxm2jpbxhubei22farktmlvumm4m7vjym2dkkei4o3wqu-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"webapp-config-test2onr5kt6awir2v4wkzroz6","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44579","name":"webapp-quick-cden7sr6ssn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44579,"deletedTimestamp":"2019-10-21T10:48:25.2274314","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwoh4a62ipe6efpskornpdh3avvzga2sd3twhlknvqvgzsn4i3bp7o2pboccm6aee2","webSpace":"clitest.rgwoh4a62ipe6efpskornpdh3avvzga2sd3twhlknvqvgzsn4i3bp7o2pboccm6aee2-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"webapp-quick-cden7sr6ssn","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44585","name":"webapp-win-log3t4ca3jcah","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44585,"deletedTimestamp":"2019-10-21T10:49:41.5232268","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwgskqebn5hlqcn7b4wftkuqj5smbzfozjhesi6s4brqnp6o6djr7haghwsl3z5hp3","webSpace":"clitest.rgwgskqebn5hlqcn7b4wftkuqj5smbzfozjhesi6s4brqnp6o6djr7haghwsl3z5hp3-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webapp-win-log3t4ca3jcah","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44586","name":"web-ssl-testzv7xwgts","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44586,"deletedTimestamp":"2019-10-21T10:50:15.9930493","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4iohq5uyslh77747llc2fbwgnclznoli4hox2uh44ynm3q2y6bvfe6ieknjufe7pj","webSpace":"clitest.rg4iohq5uyslh77747llc2fbwgnclznoli4hox2uh44ynm3q2y6bvfe6ieknjufe7pj-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"web-ssl-testzv7xwgts","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44587","name":"webapp-config-testry6qsr6o4rvvpcdwtqfu24","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44587,"deletedTimestamp":"2019-10-21T10:51:17.4165163","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configzcpedu7dqicxj36nkm62rfydj5t2extrk3pvw6chqeeaav2avlzqq","webSpace":"cli_test_webapp_configzcpedu7dqicxj36nkm62rfydj5t2extrk3pvw6chqeeaav2avlzqq-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"webapp-config-testry6qsr6o4rvvpcdwtqfu24","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44589","name":"web-git-test2fsf3f3wl2la","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44589,"deletedTimestamp":"2019-10-21T10:52:14.5647937","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6iksaxybqvem376w3leew6gv2sukvwynlyjnnp6djn63mwzmjscyovdgjmgpj5kjn","webSpace":"clitest.rg6iksaxybqvem376w3leew6gv2sukvwynlyjnnp6djn63mwzmjscyovdgjmgpj5kjn-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"web-git-test2fsf3f3wl2la","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44590","name":"slot-traffic-webxyqbskxm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44590,"deletedTimestamp":"2019-10-21T10:52:19.2447526","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgodr6bl2vxqoiciyhzvmcxqntg6qngc35fv3eaynv2ycrxrol7zbk3rbgc4khvo5rq","webSpace":"clitest.rgodr6bl2vxqoiciyhzvmcxqntg6qngc35fv3eaynv2ycrxrol7zbk3rbgc4khvo5rq-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"slot-traffic-webxyqbskxm","slot":"Production","kind":"functionapp","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44591","name":"delete-me-web000003","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44591,"deletedTimestamp":"2019-10-21T10:52:21.6047387","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001","webSpace":"clitest.rg000001-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"delete-me-web000003","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44592","name":"slot-traffic-webzhztvcvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44592,"deletedTimestamp":"2019-10-21T10:52:26.3144201","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7","webSpace":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-traffic-webzhztvcvx","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/44593","name":"slot-traffic-webzhztvcvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44593,"deletedTimestamp":"2019-10-21T10:52:26.5957285","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7","webSpace":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-traffic-webzhztvcvx","slot":"staging","kind":"app","geoRegionName":"West - US","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '68690' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:30 GMT + - Thu, 14 Nov 2019 01:41:32 GMT expires: - '-1' pragma: @@ -1529,23 +1481,67 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '38' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:30 GMT + - Thu, 14 Nov 2019 01:41:32 GMT expires: - '-1' pragma: @@ -1582,16 +1578,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20East/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Central%20US/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1599,16 +1593,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:32 GMT + - Thu, 14 Nov 2019 01:41:33 GMT expires: - '-1' pragma: @@ -1645,16 +1675,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Brazil%20South/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1662,16 +1690,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:33 GMT + - Thu, 14 Nov 2019 01:41:34 GMT expires: - '-1' pragma: @@ -1708,16 +1772,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20East/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1725,16 +1787,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:34 GMT + - Thu, 14 Nov 2019 01:41:34 GMT expires: - '-1' pragma: @@ -1771,16 +1869,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Southeast/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1788,16 +1884,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:35 GMT + - Thu, 14 Nov 2019 01:41:35 GMT expires: - '-1' pragma: @@ -1834,16 +1966,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20India/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1851,16 +1981,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:36 GMT + - Thu, 14 Nov 2019 01:41:35 GMT expires: - '-1' pragma: @@ -1897,16 +2063,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Brazil%20South/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20Central/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1914,16 +2078,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:39 GMT + - Thu, 14 Nov 2019 01:41:36 GMT expires: - '-1' pragma: @@ -1960,16 +2160,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20East/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20East/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -1977,16 +2175,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:39 GMT + - Thu, 14 Nov 2019 01:41:37 GMT expires: - '-1' pragma: @@ -2023,16 +2257,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Southeast/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20West/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2040,16 +2272,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:40 GMT + - Thu, 14 Nov 2019 01:41:38 GMT expires: - '-1' pragma: @@ -2086,16 +2354,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20India/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20South/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2103,16 +2369,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:42 GMT + - Thu, 14 Nov 2019 01:41:38 GMT expires: - '-1' pragma: @@ -2149,16 +2451,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20West%20US/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2166,16 +2466,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:43 GMT + - Thu, 14 Nov 2019 01:41:39 GMT expires: - '-1' pragma: @@ -2212,16 +2548,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20East/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20US/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2229,16 +2563,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:45 GMT + - Thu, 14 Nov 2019 01:41:39 GMT expires: - '-1' pragma: @@ -2275,16 +2645,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20West/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20Asia/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2292,16 +2660,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:46 GMT + - Thu, 14 Nov 2019 01:41:40 GMT expires: - '-1' pragma: @@ -2338,16 +2742,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20South/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20North%20Europe/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2355,16 +2757,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:48 GMT + - Thu, 14 Nov 2019 01:41:41 GMT expires: - '-1' pragma: @@ -2401,31 +2839,67 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US%202/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202%20%28Stage%29/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US 2/deletedSites/6954","name":"webapp-linux-multivc7q7k","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":6954,"deletedTimestamp":"2019-10-16T14:43:54.6444040","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5","webSpace":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multivc7q7k","slot":"Production","kind":"app,linux,container","geoRegionName":"West - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US 2/deletedSites/6955","name":"webapp-linux-multivc7q7k","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":6955,"deletedTimestamp":"2019-10-16T14:43:54.7538033","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5","webSpace":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multivc7q7k","slot":"stage","kind":"app,linux,container","geoRegionName":"West - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US 2/deletedSites/13459","name":"webapp-linux-multixrwnjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13459,"deletedTimestamp":"2019-10-21T10:50:48.6719194","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj","webSpace":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj-WestUS2webspace","stamp":"waws-prod-mwh-007","deletedSiteName":"webapp-linux-multixrwnjh","slot":"Production","kind":"app,linux,container","geoRegionName":"West + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US 2/deletedSites/13460","name":"webapp-linux-multixrwnjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13460,"deletedTimestamp":"2019-10-21T10:50:49.1102667","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj","webSpace":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj-WestUS2webspace","stamp":"waws-prod-mwh-007","deletedSiteName":"webapp-linux-multixrwnjh","slot":"stage","kind":"app,linux,container","geoRegionName":"West - US 2","correlationId":null}}],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '2879' - content-type: + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '15136' + content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:50 GMT + - Thu, 14 Nov 2019 01:41:41 GMT expires: - '-1' pragma: @@ -2462,16 +2936,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20West%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US%20%28Stage%29/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2479,16 +2951,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:51 GMT + - Thu, 14 Nov 2019 01:41:42 GMT expires: - '-1' pragma: @@ -2525,16 +3033,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US%20%28Stage%29/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2542,16 +3048,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:52 GMT + - Thu, 14 Nov 2019 01:41:43 GMT expires: - '-1' pragma: @@ -2588,16 +3130,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20Asia/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/France%20Central/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2605,16 +3145,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:53 GMT + - Thu, 14 Nov 2019 01:41:43 GMT expires: - '-1' pragma: @@ -2651,16 +3227,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20North%20Europe/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Africa%20North/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South @@ -2668,16 +3242,52 @@ interactions: East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast + Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast + Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North + Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '15136' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:54 GMT + - Thu, 14 Nov 2019 01:41:44 GMT expires: - '-1' pragma: @@ -2714,33 +3324,115 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20West/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13476","name":"webapp-sshfky2rmu5635fc4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13476,"deletedTimestamp":"2019-10-13T13:36:21.6711495","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o","webSpace":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfky2rmu5635fc4","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13508","name":"webapp-sshiajwp7wwwj3on3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13508,"deletedTimestamp":"2019-10-14T01:44:58.3941665","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl","webSpace":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshiajwp7wwwj3on3","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13773","name":"functionappacrteste7miik","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13773,"deletedTimestamp":"2019-10-15T16:56:57.6587881","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk","webSpace":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrteste7miik","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13774","name":"webapp-ssh6kvkw57g3hxlny","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13774,"deletedTimestamp":"2019-10-15T16:57:08.2048746","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg","webSpace":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh6kvkw57g3hxlny","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13807","name":"webapp-sshnshfjlgtkim5wv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13807,"deletedTimestamp":"2019-10-16T01:46:32.4929084","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4","webSpace":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshnshfjlgtkim5wv","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13878","name":"functionappacrtestdxbtmk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13878,"deletedTimestamp":"2019-10-16T14:42:10.2464912","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo","webSpace":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestdxbtmk","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13879","name":"webapp-ssha34b7ezk76fsfo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13879,"deletedTimestamp":"2019-10-16T14:43:00.7584897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf","webSpace":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssha34b7ezk76fsfo","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13880","name":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13880,"deletedTimestamp":"2019-10-16T14:43:13.3798625","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb","webSpace":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13881","name":"webapp-linuxrzcgts3ymw2s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13881,"deletedTimestamp":"2019-10-16T14:43:25.0216897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd","webSpace":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxrzcgts3ymw2s","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13882","name":"functionappacrtest2rdvti","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13882,"deletedTimestamp":"2019-10-16T14:44:21.4198621","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6","webSpace":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtest2rdvti","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13883","name":"webapp-linux-cdh77kdjwau","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13883,"deletedTimestamp":"2019-10-16T14:44:50.3346601","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7","webSpace":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdh77kdjwau","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13884","name":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13884,"deletedTimestamp":"2019-10-16T14:45:21.4984144","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz","webSpace":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13885","name":"functionappacrtestodfzuo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13885,"deletedTimestamp":"2019-10-16T14:46:23.3000850","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f","webSpace":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestodfzuo","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13886","name":"webappacrtestyr4oo56w2lt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13886,"deletedTimestamp":"2019-10-16T14:46:52.3362228","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc","webSpace":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestyr4oo56w2lt","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13982","name":"webapp-sshfhbgybwfb5cifj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13982,"deletedTimestamp":"2019-10-17T15:45:16.5838004","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv","webSpace":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfhbgybwfb5cifj","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14013","name":"webapp-sshkpyzkf3b63w55g","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14013,"deletedTimestamp":"2019-10-18T01:00:24.5790866","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li","webSpace":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshkpyzkf3b63w55g","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14238","name":"webapp-sshus2lnn7vghnfwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14238,"deletedTimestamp":"2019-10-21T10:49:17.5568001","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq","webSpace":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshus2lnn7vghnfwv","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14239","name":"functionappacrtestz5ug5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14239,"deletedTimestamp":"2019-10-21T10:49:19.8886025","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu","webSpace":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestz5ug5m","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14240","name":"webapp-linuxn5ntn6b5npst","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14240,"deletedTimestamp":"2019-10-21T10:50:31.6241074","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd","webSpace":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxn5ntn6b5npst","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14241","name":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14241,"deletedTimestamp":"2019-10-21T10:50:33.8144602","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m","webSpace":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14242","name":"webapp-linux-cd52vpyrcun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14242,"deletedTimestamp":"2019-10-21T10:51:21.2190451","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat","webSpace":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cd52vpyrcun","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14243","name":"functionappacrtestr24kun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14243,"deletedTimestamp":"2019-10-21T10:51:31.3042873","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d","webSpace":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestr24kun","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14244","name":"webappacrtestnglwtz4yzjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14244,"deletedTimestamp":"2019-10-21T10:52:33.0589224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl","webSpace":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestnglwtz4yzjh","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14245","name":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14245,"deletedTimestamp":"2019-10-21T10:52:56.8455622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr","webSpace":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14246","name":"functionappacrtestmmqghy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14246,"deletedTimestamp":"2019-10-21T10:53:25.5490713","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdwwbxgbwaejajkk7xefch5nohctdd5tpebblufm7h7r7t67p5tm5hb7pc4kf37nzj","webSpace":"clitest.rgdwwbxgbwaejajkk7xefch5nohctdd5tpebblufm7h7r7t67p5tm5hb7pc4kf37nzj-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestmmqghy","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14344","name":"webapp-sshnzbpn2fqofphxm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14344,"deletedTimestamp":"2019-10-23T01:46:12.7213184","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgp66zh5r3lr4cdgkwv6wk4y26ja5s7r57z2lwrd32pu6hzqg4ppl4udxf5bhroz5sr","webSpace":"clitest.rgp66zh5r3lr4cdgkwv6wk4y26ja5s7r57z2lwrd32pu6hzqg4ppl4udxf5bhroz5sr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshnzbpn2fqofphxm","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/15083","name":"functionappacrtestd6x5yi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":15083,"deletedTimestamp":"2019-10-30T02:16:41.5756452","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrig2h2j4smjsenqmec5zwbkmd4mwhrc5z5tj5cco4kmyhjsywld6rs2qca5wjg4m6","webSpace":"clitest.rgrig2h2j4smjsenqmec5zwbkmd4mwhrc5z5tj5cco4kmyhjsywld6rs2qca5wjg4m6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestd6x5yi","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16293","name":"webapp-linuxi7ocazwjyy2e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16293,"deletedTimestamp":"2019-11-11T08:57:43.0698988","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5kjfuhyc3alvuhagkk4rniphw27gehdbicwugjyytnjehmxhrodc4wf2qutp7mcbf","webSpace":"clitest.rg5kjfuhyc3alvuhagkk4rniphw27gehdbicwugjyytnjehmxhrodc4wf2qutp7mcbf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxi7ocazwjyy2e","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16294","name":"webapp-linux-cdysmlg2oei","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16294,"deletedTimestamp":"2019-11-11T08:59:12.0635735","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgokeursyyz5g4uuk47bojdtk5252iu2ck5pl6fycfhodg3ckj3xhgeikpmkf4blv2t","webSpace":"clitest.rgokeursyyz5g4uuk47bojdtk5252iu2ck5pl6fycfhodg3ckj3xhgeikpmkf4blv2t-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdysmlg2oei","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16295","name":"functionappacrtestn2alk2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16295,"deletedTimestamp":"2019-11-11T08:59:37.7313529","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmffiu2iud2du6ucaaspnhyondlciw76y57mtydxfwmuiuo4qipuhmbmrmjg7zi6gr","webSpace":"clitest.rgmffiu2iud2du6ucaaspnhyondlciw76y57mtydxfwmuiuo4qipuhmbmrmjg7zi6gr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestn2alk2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16296","name":"functionappacrtestcaf6lr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16296,"deletedTimestamp":"2019-11-11T08:59:49.2059253","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgo5irhet5dliy2qpgxr3j5lsdkgexn24w25xwo7t4vnglphng2klee44ppvtrukvjc","webSpace":"clitest.rgo5irhet5dliy2qpgxr3j5lsdkgexn24w25xwo7t4vnglphng2klee44ppvtrukvjc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestcaf6lr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16297","name":"webapp-ssh5zvvpszgomlxhk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16297,"deletedTimestamp":"2019-11-11T08:59:53.5897288","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5b6g64qfaehfaxqbmruke6i3castwpxjdnx524xgyqbuztj42jmxwrw2qrh52bopl","webSpace":"clitest.rg5b6g64qfaehfaxqbmruke6i3castwpxjdnx524xgyqbuztj42jmxwrw2qrh52bopl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh5zvvpszgomlxhk","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16298","name":"webapp-remote-sshgmmp67qv6sm565dydoqo6rq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16298,"deletedTimestamp":"2019-11-11T09:00:19.3029674","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtdfzjoj3oxe4rux5y7kkyvnanoe3hzwg5mnmrp7ewdzubi74qixtgimi23uvfiah5","webSpace":"clitest.rgtdfzjoj3oxe4rux5y7kkyvnanoe3hzwg5mnmrp7ewdzubi74qixtgimi23uvfiah5-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshgmmp67qv6sm565dydoqo6rq","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16299","name":"webappacrtesttw6nfqxmljn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16299,"deletedTimestamp":"2019-11-11T09:01:13.6832336","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggcwquib2cj77c3jw7u5pshk7tmvhejfm7hd3fjarewpz2j2czqr7cxenkqmr3ba5j","webSpace":"clitest.rggcwquib2cj77c3jw7u5pshk7tmvhejfm7hd3fjarewpz2j2czqr7cxenkqmr3ba5j-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtesttw6nfqxmljn","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16300","name":"webapp-remote-debugigugbd3u52uawc2frzamw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16300,"deletedTimestamp":"2019-11-11T09:02:56.0066883","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmjnxr2il2fcow2rubxodpsq35vfzchujjzoadsjz4yoplxasvuvzxokfsovpalwdv","webSpace":"clitest.rgmjnxr2il2fcow2rubxodpsq35vfzchujjzoadsjz4yoplxasvuvzxokfsovpalwdv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugigugbd3u52uawc2frzamw","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16581","name":"functionappacrtestyl5rwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16581,"deletedTimestamp":"2019-11-13T11:00:07.1055791","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3ku2m2y2sxqtcwtbllwlxsisjoyp3ybmh5owypl5i7r4fcotnhzb4ju2gkkpqdsm6","webSpace":"clitest.rg3ku2m2y2sxqtcwtbllwlxsisjoyp3ybmh5owypl5i7r4fcotnhzb4ju2gkkpqdsm6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestyl5rwv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16582","name":"webapp-sshae4lztgihz4oh5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16582,"deletedTimestamp":"2019-11-13T11:01:29.3959610","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghzifeul34djrbvghvzqwehdheeuwn5n2ruze2gctl6ckqjjwdkigtiwvf5frq73sz","webSpace":"clitest.rghzifeul34djrbvghvzqwehdheeuwn5n2ruze2gctl6ckqjjwdkigtiwvf5frq73sz-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshae4lztgihz4oh5","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16583","name":"webapp-linux-cdgozrldcx6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16583,"deletedTimestamp":"2019-11-13T11:02:21.1486304","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgppnv7npym7gk5f6utwqoeqcl4voege2osbi2w6am5gj56towxbss37qg77nyxohna","webSpace":"clitest.rgppnv7npym7gk5f6utwqoeqcl4voege2osbi2w6am5gj56towxbss37qg77nyxohna-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdgozrldcx6","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16584","name":"webapp-linuxldbodr744foh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16584,"deletedTimestamp":"2019-11-13T11:03:32.0918588","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk3rt4dxwyow4hmr2hnpefyt4wdwinhtkiix5jpsfsfc22isqul5ijoucpjjdyi7cm","webSpace":"clitest.rgk3rt4dxwyow4hmr2hnpefyt4wdwinhtkiix5jpsfsfc22isqul5ijoucpjjdyi7cm-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxldbodr744foh","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16585","name":"webapp-remote-sshuutkqgghcbj5wyom57e7y6y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16585,"deletedTimestamp":"2019-11-13T11:04:48.9356781","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7pubwgdhzz34n5doiqdonh7evxg4rfyi3axbbh2cqjdk6gcuaz6lmy7xtakzdgshc","webSpace":"clitest.rg7pubwgdhzz34n5doiqdonh7evxg4rfyi3axbbh2cqjdk6gcuaz6lmy7xtakzdgshc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshuutkqgghcbj5wyom57e7y6y","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16586","name":"functionappacrtestay4dem","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16586,"deletedTimestamp":"2019-11-13T11:04:49.8167869","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcvhboedpg6vfdlbmdqsgl54l2ju7e5cdh4me6ssvc2tszutynoa36i3ka4fdqlxax","webSpace":"clitest.rgcvhboedpg6vfdlbmdqsgl54l2ju7e5cdh4me6ssvc2tszutynoa36i3ka4fdqlxax-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestay4dem","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16587","name":"webappacrtesthu3blgsxame","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16587,"deletedTimestamp":"2019-11-13T11:06:09.4784394","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtghiul7zqxwxaau3t4gybhsavbt7gjvljr7yaclbobpwmrkfpv7owofino52n3uil","webSpace":"clitest.rgtghiul7zqxwxaau3t4gybhsavbt7gjvljr7yaclbobpwmrkfpv7owofino52n3uil-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtesthu3blgsxame","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16590","name":"webapp-remote-debugfpywuaxihhm2uyf2rwcqq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16590,"deletedTimestamp":"2019-11-13T11:08:07.9633172","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwbcpvyy3a5fo2woo2u2s3kcyonecm3zi4dy7foi4yd4x2ij3md6gsblzg3s2srmml","webSpace":"clitest.rgwbcpvyy3a5fo2woo2u2s3kcyonecm3zi4dy7foi4yd4x2ij3md6gsblzg3s2srmml-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugfpywuaxihhm2uyf2rwcqq","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16593","name":"webappacrtestjdk4sy6taah","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16593,"deletedTimestamp":"2019-11-13T11:27:25.1444919","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc4uhlubyvuou6gytrjye6nqbtvy5iunkm4hy73fuiragrxkzxqpcop34gbvcftp6y","webSpace":"clitest.rgc4uhlubyvuou6gytrjye6nqbtvy5iunkm4hy73fuiragrxkzxqpcop34gbvcftp6y-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestjdk4sy6taah","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16594","name":"functionappacrtestqzhlcu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16594,"deletedTimestamp":"2019-11-13T11:27:36.6924552","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfebwp2endjabsqdcmgoezb23drv3c4q3t2lcy7rstnynfoybtyf2zbxysk724kwgu","webSpace":"clitest.rgfebwp2endjabsqdcmgoezb23drv3c4q3t2lcy7rstnynfoybtyf2zbxysk724kwgu-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestqzhlcu","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16595","name":"webapp-sshzbkk7hdrlmei2s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16595,"deletedTimestamp":"2019-11-13T11:28:31.9159546","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqt27y34in573fqpyb24g7t2um7cxyxxdtd45cq46olqazpgr7xqdkb4hiid52at6a","webSpace":"clitest.rgqt27y34in573fqpyb24g7t2um7cxyxxdtd45cq46olqazpgr7xqdkb4hiid52at6a-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshzbkk7hdrlmei2s","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '33055' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:55 GMT + - Thu, 14 Nov 2019 01:41:45 GMT expires: - '-1' pragma: @@ -2777,33 +3469,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20India/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '38' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:56 GMT + - Thu, 14 Nov 2019 01:41:45 GMT expires: - '-1' pragma: @@ -2840,33 +3522,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20Central/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '38' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:57 GMT + - Thu, 14 Nov 2019 01:41:46 GMT expires: - '-1' pragma: @@ -2903,33 +3575,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/France%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20India/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '38' content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:59 GMT + - Thu, 14 Nov 2019 01:41:46 GMT expires: - '-1' pragma: @@ -2966,33 +3628,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Africa%20North/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Central/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/26628959","name":"jlweb1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26628959,"deletedTimestamp":"2019-08-02T12:15:47.8309733","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"jlappad","webSpace":"jlappad-SoutheastAsiawebspace","stamp":"waws-prod-sg1-031","deletedSiteName":"jlweb1","slot":"Production","kind":"app","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3506' + - '38' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:00 GMT + - Thu, 14 Nov 2019 01:41:47 GMT expires: - '-1' pragma: @@ -3029,71 +3681,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20West/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20South/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13476","name":"webapp-sshfky2rmu5635fc4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13476,"deletedTimestamp":"2019-10-13T13:36:21.6711495","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o","webSpace":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfky2rmu5635fc4","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13508","name":"webapp-sshiajwp7wwwj3on3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13508,"deletedTimestamp":"2019-10-14T01:44:58.3941665","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl","webSpace":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshiajwp7wwwj3on3","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13773","name":"functionappacrteste7miik","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13773,"deletedTimestamp":"2019-10-15T16:56:57.6587881","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk","webSpace":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrteste7miik","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13774","name":"webapp-ssh6kvkw57g3hxlny","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13774,"deletedTimestamp":"2019-10-15T16:57:08.2048746","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg","webSpace":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh6kvkw57g3hxlny","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13807","name":"webapp-sshnshfjlgtkim5wv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13807,"deletedTimestamp":"2019-10-16T01:46:32.4929084","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4","webSpace":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshnshfjlgtkim5wv","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13878","name":"functionappacrtestdxbtmk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13878,"deletedTimestamp":"2019-10-16T14:42:10.2464912","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo","webSpace":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestdxbtmk","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13879","name":"webapp-ssha34b7ezk76fsfo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13879,"deletedTimestamp":"2019-10-16T14:43:00.7584897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf","webSpace":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssha34b7ezk76fsfo","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13880","name":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13880,"deletedTimestamp":"2019-10-16T14:43:13.3798625","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb","webSpace":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13881","name":"webapp-linuxrzcgts3ymw2s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13881,"deletedTimestamp":"2019-10-16T14:43:25.0216897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd","webSpace":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxrzcgts3ymw2s","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13882","name":"functionappacrtest2rdvti","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13882,"deletedTimestamp":"2019-10-16T14:44:21.4198621","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6","webSpace":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtest2rdvti","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13883","name":"webapp-linux-cdh77kdjwau","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13883,"deletedTimestamp":"2019-10-16T14:44:50.3346601","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7","webSpace":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdh77kdjwau","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13884","name":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13884,"deletedTimestamp":"2019-10-16T14:45:21.4984144","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz","webSpace":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13885","name":"functionappacrtestodfzuo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13885,"deletedTimestamp":"2019-10-16T14:46:23.3000850","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f","webSpace":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestodfzuo","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13886","name":"webappacrtestyr4oo56w2lt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13886,"deletedTimestamp":"2019-10-16T14:46:52.3362228","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc","webSpace":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestyr4oo56w2lt","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13982","name":"webapp-sshfhbgybwfb5cifj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13982,"deletedTimestamp":"2019-10-17T15:45:16.5838004","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv","webSpace":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfhbgybwfb5cifj","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14013","name":"webapp-sshkpyzkf3b63w55g","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14013,"deletedTimestamp":"2019-10-18T01:00:24.5790866","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li","webSpace":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshkpyzkf3b63w55g","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14238","name":"webapp-sshus2lnn7vghnfwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14238,"deletedTimestamp":"2019-10-21T10:49:17.5568001","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq","webSpace":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshus2lnn7vghnfwv","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14239","name":"functionappacrtestz5ug5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14239,"deletedTimestamp":"2019-10-21T10:49:19.8886025","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu","webSpace":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestz5ug5m","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14240","name":"webapp-linuxn5ntn6b5npst","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14240,"deletedTimestamp":"2019-10-21T10:50:31.6241074","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd","webSpace":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxn5ntn6b5npst","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14241","name":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14241,"deletedTimestamp":"2019-10-21T10:50:33.8144602","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m","webSpace":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14242","name":"webapp-linux-cd52vpyrcun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14242,"deletedTimestamp":"2019-10-21T10:51:21.2190451","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat","webSpace":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cd52vpyrcun","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14243","name":"functionappacrtestr24kun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14243,"deletedTimestamp":"2019-10-21T10:51:31.3042873","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d","webSpace":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestr24kun","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14244","name":"webappacrtestnglwtz4yzjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14244,"deletedTimestamp":"2019-10-21T10:52:33.0589224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl","webSpace":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestnglwtz4yzjh","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14245","name":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14245,"deletedTimestamp":"2019-10-21T10:52:56.8455622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr","webSpace":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '17245' + - '38' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:01 GMT + - Thu, 14 Nov 2019 01:41:48 GMT expires: - '-1' pragma: @@ -3130,11 +3734,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20India/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Central%20US/deletedSites?api-version=2018-02-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3146,7 +3750,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:03 GMT + - Thu, 14 Nov 2019 01:41:49 GMT expires: - '-1' pragma: @@ -3183,11 +3787,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia%20%28Stage%29/deletedSites?api-version=2018-02-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3199,7 +3803,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:03 GMT + - Thu, 14 Nov 2019 01:41:49 GMT expires: - '-1' pragma: @@ -3236,23 +3840,25 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20India/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + Asia/deletedSites/5824","name":"webapp3-cb12140741","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":5824,"deletedTimestamp":"2019-10-29T05:08:47.3915453","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-EastAsiawebspace","stamp":"waws-prod-hk1-007","deletedSiteName":"webapp3-cb12140741","slot":"Production","kind":"app","geoRegionName":"East + Asia","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '38' + - '610' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:05 GMT + - Thu, 14 Nov 2019 01:41:49 GMT expires: - '-1' pragma: @@ -3289,76 +3895,691 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '38' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:53:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deleted list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Germany%20West%20Central/deletedSites?api-version=2018-02-01 - response: - body: - string: '{"value":[],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3386","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3386,"deletedTimestamp":"2019-09-25T12:16:27.5183483","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_create37ufy23rtu3hee35hu7efxp44jdx74s4gvdy7oigonmdsfvwan2","webSpace":"cli_test_resource_create37ufy23rtu3hee35hu7efxp44jdx74s4gvdy7oigonmdsfvwan2-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3387","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3387,"deletedTimestamp":"2019-09-26T07:10:01.3454277","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createawfa4ssvlmqr2vegoy42mn6myrqrytlbk7irgz5txczostq7de7","webSpace":"cli_test_resource_createawfa4ssvlmqr2vegoy42mn6myrqrytlbk7irgz5txczostq7de7-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3388","name":"swiftwebappn33o7lfe3gbqh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3388,"deletedTimestamp":"2019-10-13T13:35:28.0870100","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbgkcu5nn7dk72dgfjjomzqov4cya774zefd3eria7vn6pz56nl4gbevdylgxck6w7","webSpace":"clitest.rgbgkcu5nn7dk72dgfjjomzqov4cya774zefd3eria7vn6pz56nl4gbevdylgxck6w7-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"swiftwebappn33o7lfe3gbqh","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3389","name":"swiftwebappk3f6xmyq4ng2f","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3389,"deletedTimestamp":"2019-10-14T01:44:07.3458908","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnm3lrjxxmnamxpxjmqkd7zzz63shcmmxnmp3qu3ifjamr7nagkeuirgrsj4yzlqn6","webSpace":"clitest.rgnm3lrjxxmnamxpxjmqkd7zzz63shcmmxnmp3qu3ifjamr7nagkeuirgrsj4yzlqn6-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"swiftwebappk3f6xmyq4ng2f","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3390","name":"swiftwebapp3ka6khopdvbn3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3390,"deletedTimestamp":"2019-10-14T03:40:07.8577621","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh5iw4ahow4zortyjg4zplkjepdnylecayyufg3dvv4g4ciuapec7znbqcek3gd2sz","webSpace":"clitest.rgh5iw4ahow4zortyjg4zplkjepdnylecayyufg3dvv4g4ciuapec7znbqcek3gd2sz-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"swiftwebapp3ka6khopdvbn3","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3391","name":"swiftwebappgvtgsjby2ibwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3391,"deletedTimestamp":"2019-10-14T04:30:22.6496011","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgaiezkx7fzowgsrgozhhcgn73dttke5a7zttx2yrbx6vzgupt7qj3w4yywfqjalssi","webSpace":"clitest.rgaiezkx7fzowgsrgozhhcgn73dttke5a7zttx2yrbx6vzgupt7qj3w4yywfqjalssi-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"swiftwebappgvtgsjby2ibwv","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3392","name":"swiftwebapppp7ewxml52lr6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3392,"deletedTimestamp":"2019-10-15T16:56:44.5813836","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7gfdrqn34w5wgzosttuh4m46efgj4cnle2tavihacshusidsh6exqwqpxpd44patg","webSpace":"clitest.rg7gfdrqn34w5wgzosttuh4m46efgj4cnle2tavihacshusidsh6exqwqpxpd44patg-WestUSwebspace","stamp":"waws-prod-bay-097","deletedSiteName":"swiftwebapppp7ewxml52lr6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3393","name":"web-msiupzrk2tqou66z","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3393,"deletedTimestamp":"2019-10-15T16:58:20.0148537","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgllmqv42usznqoiyo4rbbz4imssmpvczlxt4x67hg5t7rf2f6dl2vj76vnodxp4wl4","webSpace":"clitest.rgllmqv42usznqoiyo4rbbz4imssmpvczlxt4x67hg5t7rf2f6dl2vj76vnodxp4wl4-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"web-msiupzrk2tqou66z","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3394","name":"appr2xjlbqw4sfp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3394,"deletedTimestamp":"2019-10-15T17:13:03.9419611","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_metric_alert_v22kvu7jid7gldl2a77v4pi5sx32uigfskvawh26j24n24vhfoloz","webSpace":"cli_test_metric_alert_v22kvu7jid7gldl2a77v4pi5sx32uigfskvawh26j24n24vhfoloz-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"appr2xjlbqw4sfp","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3395","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3395,"deletedTimestamp":"2019-10-16T07:40:29.0628138","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createt5rbmiq65ybxgnk74vqborsxqghw7f27onpr45qhjayelize2q7","webSpace":"cli_test_resource_createt5rbmiq65ybxgnk74vqborsxqghw7f27onpr45qhjayelize2q7-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3396","name":"cli-funcapp-nwr7q2mg7idv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3396,"deletedTimestamp":"2019-10-16T14:38:08.4571802","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvkcwmzprdukjvbgsr22zcpu44nvl6qxk6z3d5f4ctmxi24bnpjcw2xuchm63qvyty","webSpace":"clitest.rgvkcwmzprdukjvbgsr22zcpu44nvl6qxk6z3d5f4ctmxi24bnpjcw2xuchm63qvyty-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-funcapp-nwr7q2mg7idv","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3397","name":"cli-webapp-nwrkxfpe2pnea","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3397,"deletedTimestamp":"2019-10-16T14:38:19.2484038","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm4x5d6adqwuiofmvm4u2opc3zmjk2lddm2fcrn7jtv5egzrkzijyv4ecg2eqylzr7","webSpace":"clitest.rgm4x5d6adqwuiofmvm4u2opc3zmjk2lddm2fcrn7jtv5egzrkzijyv4ecg2eqylzr7-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwrkxfpe2pnea","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3398","name":"cli-webapp-nwr2gso3j2fgj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3398,"deletedTimestamp":"2019-10-16T14:38:24.2540435","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwwipm6xplsyjcqwmfckxgkij4nqnajcmuwgiis6yj2kigkamwlhtjiblyherpgakm","webSpace":"clitest.rgwwipm6xplsyjcqwmfckxgkij4nqnajcmuwgiis6yj2kigkamwlhtjiblyherpgakm-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwr2gso3j2fgj","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3399","name":"cli-webapp-nwrag5jpuzoci","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3399,"deletedTimestamp":"2019-10-16T14:38:37.5158573","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqvm3mbe2dwmhhgvfq26ybtrxlsm3mvggqxnxqcl3geg3u2j7jo2lrh6sduaqemadz","webSpace":"clitest.rgqvm3mbe2dwmhhgvfq26ybtrxlsm3mvggqxnxqcl3geg3u2j7jo2lrh6sduaqemadz-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-webapp-nwrag5jpuzoci","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3400","name":"cli-webapp-nwrm2quivohyj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3400,"deletedTimestamp":"2019-10-16T14:38:44.0521720","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvxjenffqglnjc52wnt3nk4pgyutkwia7np226dwjewyrhw2bguv5hwqlrsudzuhix","webSpace":"clitest.rgvxjenffqglnjc52wnt3nk4pgyutkwia7np226dwjewyrhw2bguv5hwqlrsudzuhix-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwrm2quivohyj","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3401","name":"cli-webapp-nwrn2sgodtgvd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3401,"deletedTimestamp":"2019-10-16T14:38:57.0541727","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbjpliawigmazk4t6fmnlj6gnzyyial5a344sn5q2tcoidmiqy7tpzsrfswcapdqgq","webSpace":"clitest.rgbjpliawigmazk4t6fmnlj6gnzyyial5a344sn5q2tcoidmiqy7tpzsrfswcapdqgq-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-webapp-nwrn2sgodtgvd","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3402","name":"cli-webapp-nwrmfncj7tuvb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3402,"deletedTimestamp":"2019-10-16T14:39:00.1070634","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4iphgrgikxytgl35yuvezwreytd4ndw2all7ufpu6wvganfyrbku7d7fw76hpl264","webSpace":"clitest.rg4iphgrgikxytgl35yuvezwreytd4ndw2all7ufpu6wvganfyrbku7d7fw76hpl264-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-webapp-nwrmfncj7tuvb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3403","name":"cli-webapp-nwr67df6xdbkk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3403,"deletedTimestamp":"2019-10-16T14:39:26.0869246","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxcgbtzxhyxt5ip55d7qvj2js67trhegs4u75ctixdi2evcmip3a5yos6szim2icm7","webSpace":"clitest.rgxcgbtzxhyxt5ip55d7qvj2js67trhegs4u75ctixdi2evcmip3a5yos6szim2icm7-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-webapp-nwr67df6xdbkk","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3404","name":"webnppfrnwc7cjjr3fwfahjq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3404,"deletedTimestamp":"2019-10-16T14:39:34.9020841","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6n2ezugwiz52y6chvwqvja7trlbvhllyj7pjdemuawojihf6a62fj22efatytio3t","webSpace":"clitest.rg6n2ezugwiz52y6chvwqvja7trlbvhllyj7pjdemuawojihf6a62fj22efatytio3t-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"webnppfrnwc7cjjr3fwfahjq","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3405","name":"webInOtherRG","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3405,"deletedTimestamp":"2019-10-16T14:39:41.4829469","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3342xpzhvmf7jq226fj7w2b64ewbvgavujbcd3245e5jqsq2k64dsrc6olwskrb5x","webSpace":"clitest.rg3342xpzhvmf7jq226fj7w2b64ewbvgavujbcd3245e5jqsq2k64dsrc6olwskrb5x-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webInOtherRG","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3406","name":"webapp-quickfyyesly7oarm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3406,"deletedTimestamp":"2019-10-16T14:40:10.2347234","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwd2fqhljvh7vr2wxue4qssmgg7bcgibgksmbryeuk3wi6xt5ifpjzxczta6ize2c2","webSpace":"clitest.rgwd2fqhljvh7vr2wxue4qssmgg7bcgibgksmbryeuk3wi6xt5ifpjzxczta6ize2c2-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"webapp-quickfyyesly7oarm","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3407","name":"cli-webapp-nwroyfbth5hkj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3407,"deletedTimestamp":"2019-10-16T14:40:27.9924937","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggctvbzcegoh53hyxt3f2jwjc72f5wlzvbc4cgapeb5wqhwt5vlhonp66yemf74blx","webSpace":"clitest.rggctvbzcegoh53hyxt3f2jwjc72f5wlzvbc4cgapeb5wqhwt5vlhonp66yemf74blx-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-webapp-nwroyfbth5hkj","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3408","name":"webapp-e2efl3i3nwgtqvmp2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3408,"deletedTimestamp":"2019-10-16T14:40:28.6457502","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgesb5ov7u77pnp45io6p6rizw763uim2kgs5brhnxqbgmjjin23lv6zmhgclthoxro","webSpace":"clitest.rgesb5ov7u77pnp45io6p6rizw763uim2kgs5brhnxqbgmjjin23lv6zmhgclthoxro-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-e2efl3i3nwgtqvmp2","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3409","name":"cli-webapp-nwrifbvdprlyh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3409,"deletedTimestamp":"2019-10-16T14:40:32.7792799","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq","webSpace":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-webapp-nwrifbvdprlyh","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3410","name":"cli-webapp-nwrifbvdprlyh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3410,"deletedTimestamp":"2019-10-16T14:40:32.8419234","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq","webSpace":"clitest.rggyraxukjbks6bvkontyaobogiyfgxksmolynyqhjwkjlhcs7xtnwtd65h3blinosq-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-webapp-nwrifbvdprlyh","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3411","name":"web-erroredyxyq6imps5tg5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3411,"deletedTimestamp":"2019-10-16T14:40:55.5519704","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7xbe4ugka3cvj5zxvj6effge5jgr2ybcw76hbtxcqdreil7abgmdqceldne5pwueq","webSpace":"clitest.rg7xbe4ugka3cvj5zxvj6effge5jgr2ybcw76hbtxcqdreil7abgmdqceldne5pwueq-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"web-erroredyxyq6imps5tg5","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3412","name":"webapp-linux-multirgl2mj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3412,"deletedTimestamp":"2019-10-16T14:41:01.6678119","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5s4xdbmbrwgwyn7tlybri44dvujix5ox23owgerkkg3tbdlqwbrnzyocsohkkczwv","webSpace":"clitest.rg5s4xdbmbrwgwyn7tlybri44dvujix5ox23owgerkkg3tbdlqwbrnzyocsohkkczwv-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"webapp-linux-multirgl2mj","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3413","name":"webapp-quickk2idwex6pa7w","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3413,"deletedTimestamp":"2019-10-16T14:41:11.8893841","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkvs6r2vehnimk6zvxm2w3mifxijfjbeu2mrcnifgdj4csndrpra3f24nsfdeu4z45","webSpace":"clitest.rgkvs6r2vehnimk6zvxm2w3mifxijfjbeu2mrcnifgdj4csndrpra3f24nsfdeu4z45-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"webapp-quickk2idwex6pa7w","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3414","name":"webapp-quick-cdtlyd4ssoa","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3414,"deletedTimestamp":"2019-10-16T14:41:50.7580481","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgswnuszu5p2k6pa3qwp4zpjrsb3l4odoiyoe5ti3ositf76jzv3xxiuxctm3tsgjzn","webSpace":"clitest.rgswnuszu5p2k6pa3qwp4zpjrsb3l4odoiyoe5ti3ositf76jzv3xxiuxctm3tsgjzn-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-quick-cdtlyd4ssoa","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3415","name":"webapp-config-test5bhrwfs46b7rxlvq6eigla","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3415,"deletedTimestamp":"2019-10-16T14:41:58.9602234","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_json4rjy5scjbeq4rlfdtq4o7abnaet34y2nnpb4hulq4fhpkzxmsozmsls","webSpace":"cli_test_webapp_json4rjy5scjbeq4rlfdtq4o7abnaet34y2nnpb4hulq4fhpkzxmsozmsls-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"webapp-config-test5bhrwfs46b7rxlvq6eigla","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3416","name":"webapp-win-logssg6s7sjdy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3416,"deletedTimestamp":"2019-10-16T14:42:30.9329787","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgthk7rmfhcvopjfm4ixmpgbxh6krjn7so6ud5vapo6cbtqegx5gd2qt7fqntr7z3mf","webSpace":"clitest.rgthk7rmfhcvopjfm4ixmpgbxh6krjn7so6ud5vapo6cbtqegx5gd2qt7fqntr7z3mf-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-win-logssg6s7sjdy","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3417","name":"web-ssl-testzn3jfo2e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3417,"deletedTimestamp":"2019-10-16T14:42:51.8448319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqdllviohbflyzeuqtgyfiqfisdilneclnn44q7taadejonnmng3kpuj36pgwuwxkm","webSpace":"clitest.rgqdllviohbflyzeuqtgyfiqfisdilneclnn44q7taadejonnmng3kpuj36pgwuwxkm-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"web-ssl-testzn3jfo2e","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3418","name":"functionapp-slottwz46npq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3418,"deletedTimestamp":"2019-10-16T14:44:37.2059748","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz","webSpace":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionapp-slottwz46npq","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3419","name":"functionapp-slottwz46npq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3419,"deletedTimestamp":"2019-10-16T14:44:37.2841034","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz","webSpace":"clitest.rgolugqutrcv2pz5clagcmg4ldswpy642wflnqeaechq35ex3c7ygg7xyoigsb56zyz-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionapp-slottwz46npq","slot":"slotnamegag64ljay7o2jp2r","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3420","name":"slot-traffic-web7vbertq6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3420,"deletedTimestamp":"2019-10-16T14:44:44.1785174","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh","webSpace":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-web7vbertq6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3421","name":"slot-traffic-web7vbertq6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3421,"deletedTimestamp":"2019-10-16T14:44:44.2566448","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh","webSpace":"clitest.rgia5vsuftjq6wqhdepuw2jrvajtlskwbd65oca4d4ia5uqpary7jvzp54bvx4ssuwh-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-web7vbertq6","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3422","name":"slot-traffic-webwwdpjqtj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3422,"deletedTimestamp":"2019-10-16T14:45:01.8931622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq67c6yjlpbcfde2puas6gnncgkbpvvwakuf3ozd7q6lew75k3uofhnktnhnqpfwpi","webSpace":"clitest.rgq67c6yjlpbcfde2puas6gnncgkbpvvwakuf3ozd7q6lew75k3uofhnktnhnqpfwpi-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"slot-traffic-webwwdpjqtj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3423","name":"delete-me-web7or2x5am6dk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3423,"deletedTimestamp":"2019-10-16T14:45:11.4087894","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrta6xlzky4s2spdlcd4xu7mpkegrvvbgbnzyvrspj34rupbcjgdaj6hxghimbczuy","webSpace":"clitest.rgrta6xlzky4s2spdlcd4xu7mpkegrvvbgbnzyvrspj34rupbcjgdaj6hxghimbczuy-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"delete-me-web7or2x5am6dk","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3424","name":"web-git-test2yfuqdykpuzb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3424,"deletedTimestamp":"2019-10-16T14:45:32.9524294","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgx4kqlm4y4xieqzkgqrhe3jnpagvvrzlndkkcxlokdk7ovyikd54uipxaycpmgmtxt","webSpace":"clitest.rgx4kqlm4y4xieqzkgqrhe3jnpagvvrzlndkkcxlokdk7ovyikd54uipxaycpmgmtxt-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"web-git-test2yfuqdykpuzb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3425","name":"webapp-create-alwaysOn-e2e2jl6dxa2eeusxcfm2b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3425,"deletedTimestamp":"2019-10-16T14:45:58.7821187","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_alwaysOnqvmy3e5kzf764e2ixsucxy5rxu4kgkqbbngx2e7rsmay5klhnpp","webSpace":"cli_test_webapp_alwaysOnqvmy3e5kzf764e2ixsucxy5rxu4kgkqbbngx2e7rsmay5klhnpp-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"webapp-create-alwaysOn-e2e2jl6dxa2eeusxcfm2b","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3426","name":"webapp-config-testflslw2wmycyisradqllfhw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3426,"deletedTimestamp":"2019-10-16T14:46:10.3452702","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configkwfqnbecn2xjedatrozvozsqi6ilozkddidrqmtb6idbsyothqqog","webSpace":"cli_test_webapp_configkwfqnbecn2xjedatrozvozsqi6ilozkddidrqmtb6idbsyothqqog-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"webapp-config-testflslw2wmycyisradqllfhw","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3427","name":"func-e2e5ryxljjeedoif4so","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3427,"deletedTimestamp":"2019-10-16T14:47:05.1550226","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk","webSpace":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"func-e2e5ryxljjeedoif4so","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3428","name":"webapp-zipDeploy-testnsfwz7dnvrn3detmkcd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3428,"deletedTimestamp":"2019-10-16T14:47:05.6791026","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_zipDeployz5wey7vnt34uqtiuhfysdqj5n2jzu6kotkydrwbnibwrq4b3p2","webSpace":"cli_test_webapp_zipDeployz5wey7vnt34uqtiuhfysdqj5n2jzu6kotkydrwbnibwrq4b3p2-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"webapp-zipDeploy-testnsfwz7dnvrn3detmkcd","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3429","name":"webapp-update-testttpjfmeesqm2otcc4mc7vl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3429,"deletedTimestamp":"2019-10-16T14:47:15.8823457","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld","webSpace":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webapp-update-testttpjfmeesqm2otcc4mc7vl","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3430","name":"webapp-update-testttpjfmeesqm2otcc4mc7vl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3430,"deletedTimestamp":"2019-10-16T14:47:15.9604845","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld","webSpace":"cli_test_webapp_updatew5dgzwhjqabtt3wyfzpw4szi5cr7ctnmw7i23udemu6zdqsydcqld-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webapp-update-testttpjfmeesqm2otcc4mc7vl","slot":"s1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3431","name":"functionapp-slotkit3upcs","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3431,"deletedTimestamp":"2019-10-16T14:47:29.8119137","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm","webSpace":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotkit3upcs","slot":"slotnameqvhkeco7yaxs3f5j","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3432","name":"functionapp-slotkit3upcs","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3432,"deletedTimestamp":"2019-10-16T14:47:33.8560860","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm","webSpace":"clitest.rgvzina334int2x26wcxwthsmlolgk5fcdzk6cmaebudkbuu5p3xzvhciljvonxeamm-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotkit3upcs","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3433","name":"func-e2ellclrusvsbujcppv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3433,"deletedTimestamp":"2019-10-16T14:47:54.4772328","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk","webSpace":"clitest.rgqae6t6qo2ihnj4tz3h6bu3eaeqhchdiazzafvlehrxqdfgmxk3zysytf7wqgpqixk-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"func-e2ellclrusvsbujcppv","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3434","name":"slot-traffic-webwuaimbxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3434,"deletedTimestamp":"2019-10-16T14:48:20.5707480","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5","webSpace":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-webwuaimbxh","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3435","name":"slot-traffic-webwuaimbxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3435,"deletedTimestamp":"2019-10-16T14:48:20.6488812","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5","webSpace":"clitest.rgvisbdwgtimj325radj22kcdt5kkji4vbcjaxggx4betpcnbug4epdv6szudinioi5-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-webwuaimbxh","slot":"slot1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3436","name":"webapp-hyperv-e2ef7p6t5e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3436,"deletedTimestamp":"2019-10-16T14:49:18.7199343","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg43hespzwwpimbruh4opmprwobfedbljybzguwgqvrelq3jitiu2hckmzypyp6xvmx","webSpace":"clitest.rg43hespzwwpimbruh4opmprwobfedbljybzguwgqvrelq3jitiu2hckmzypyp6xvmx-WestUSwebspace","stamp":"waws-prod-bay-099","deletedSiteName":"webapp-hyperv-e2ef7p6t5e","slot":"Production","kind":"app,container,windows","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3437","name":"slot-swap-webkiu6e4ud7fh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3437,"deletedTimestamp":"2019-10-16T14:49:27.0650417","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm","webSpace":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"slot-swap-webkiu6e4ud7fh","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3438","name":"slot-swap-webkiu6e4ud7fh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3438,"deletedTimestamp":"2019-10-16T14:49:27.1900230","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm","webSpace":"clitest.rgqfjmfryrurucg7hn5afy2p5lxd2lcw34s2wq5xaehctegni66rgpqfz7gaidby6pm-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"slot-swap-webkiu6e4ud7fh","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3439","name":"web-msibmgh3h2mykksz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3439,"deletedTimestamp":"2019-10-16T14:49:56.4816230","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4b5pxvi25imvbg5rubyvmg6ctxjaquhvgtv62xfyrfgb5ccndrdydneheytwej4oa","webSpace":"clitest.rg4b5pxvi25imvbg5rubyvmg6ctxjaquhvgtv62xfyrfgb5ccndrdydneheytwej4oa-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"web-msibmgh3h2mykksz","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3440","name":"functionapp-slotylhxnjol","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3440,"deletedTimestamp":"2019-10-16T14:50:19.9669484","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy","webSpace":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"functionapp-slotylhxnjol","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3441","name":"functionapp-slotylhxnjol","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3441,"deletedTimestamp":"2019-10-16T14:50:20.0451008","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy","webSpace":"clitest.rgh62vxrapxul6kkosxm5uphtk5uvwr3nel6c32ogc7bjojqwc3knao6leurw634ywy-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"functionapp-slotylhxnjol","slot":"slotnamegpoeotikzkxnhsof","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3442","name":"slot-test-webruklkpkcnp6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3442,"deletedTimestamp":"2019-10-16T14:51:04.8958671","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg","webSpace":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"slot-test-webruklkpkcnp6","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3443","name":"slot-test-webruklkpkcnp6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3443,"deletedTimestamp":"2019-10-16T14:51:10.6455069","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg","webSpace":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"slot-test-webruklkpkcnp6","slot":"dev","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3444","name":"slot-test-webruklkpkcnp6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3444,"deletedTimestamp":"2019-10-16T14:51:45.8533977","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg","webSpace":"clitest.rgpuztxvv4yzxvddgra5d2zefuv35wjue6t4og6e3dbacxvweme2pff7wjq3wr6lyxg-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"slot-test-webruklkpkcnp6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3445","name":"hcwebapp5eru4ayiosmow2uo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3445,"deletedTimestamp":"2019-10-16T14:53:05.8240505","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6zjwj63ingzxfwmttdoonl2lue5cxbrcric7ydyfporu3t6rs4mtqpehcij3fpb7e","webSpace":"clitest.rg6zjwj63ingzxfwmttdoonl2lue5cxbrcric7ydyfporu3t6rs4mtqpehcij3fpb7e-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"hcwebapp5eru4ayiosmow2uo","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3446","name":"webapp-authentication-testjjrgixg5ux7qd5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3446,"deletedTimestamp":"2019-10-16T14:54:32.8852767","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_authenticationwegjcxvod4rxtuuixbqj7rx2pcdh7whkhabbkp3tpftko","webSpace":"cli_test_webapp_authenticationwegjcxvod4rxtuuixbqj7rx2pcdh7whkhabbkp3tpftko-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"webapp-authentication-testjjrgixg5ux7qd5","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3447","name":"swiftwebapp266o4acwlz57a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3447,"deletedTimestamp":"2019-10-16T14:56:05.7052371","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgltty6dynwi5sxehfhgszi5z34qjv6najdb3v6xoybpqyzn33c52epvxmrvzmm55em","webSpace":"clitest.rgltty6dynwi5sxehfhgszi5z34qjv6najdb3v6xoybpqyzn33c52epvxmrvzmm55em-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"swiftwebapp266o4acwlz57a","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3448","name":"apppuuvw3y2agbx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3448,"deletedTimestamp":"2019-10-16T16:43:35.2233015","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_metric_alert_v2ng656texwoldyngtpexkkvase2xmxx5l5445kxydrlbvg2vnfa5","webSpace":"cli_test_metric_alert_v2ng656texwoldyngtpexkkvase2xmxx5l5445kxydrlbvg2vnfa5-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"apppuuvw3y2agbx","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3449","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3449,"deletedTimestamp":"2019-10-17T00:58:01.9995694","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createaxkygpph6lidbgbgdxe234fgdm2xyxx4dyrghxxenlqc37uecog","webSpace":"cli_test_resource_createaxkygpph6lidbgbgdxe234fgdm2xyxx4dyrghxxenlqc37uecog-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3450","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3450,"deletedTimestamp":"2019-10-17T06:17:48.5024024","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createi2plmtpe5oms5lrnstwxhazaor7c5xqnbsz5xo2ecgbslcyiiwx","webSpace":"cli_test_resource_createi2plmtpe5oms5lrnstwxhazaor7c5xqnbsz5xo2ecgbslcyiiwx-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3451","name":"swiftwebappoun6pbaddcfre","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3451,"deletedTimestamp":"2019-10-17T11:18:45.2342303","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2eazmdjp3hlriqs6hjk3rkmmrq7ikdy753pkjopjk77ntsadxzh6df2fhpqugxkic","webSpace":"clitest.rg2eazmdjp3hlriqs6hjk3rkmmrq7ikdy753pkjopjk77ntsadxzh6df2fhpqugxkic-WestUSwebspace","stamp":"waws-prod-bay-089","deletedSiteName":"swiftwebappoun6pbaddcfre","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3452","name":"swiftwebappfsercqmcuebyy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3452,"deletedTimestamp":"2019-10-17T11:20:39.0884109","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpcoaoutxr2bjxmb7aqsf7qgp3rkryp23f275q2ihezpnwopujitjkekyrq3zhk5xr","webSpace":"clitest.rgpcoaoutxr2bjxmb7aqsf7qgp3rkryp23f275q2ihezpnwopujitjkekyrq3zhk5xr-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"swiftwebappfsercqmcuebyy","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/3453","name":"swiftwebappcmj7bccv7ownq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3453,"deletedTimestamp":"2019-10-17T15:44:51.6724052","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghgcuwdmhdgoh3ovalpotogjffu5kvamzthj4php2kp5mcznzremr2ii5llor3nq4w","webSpace":"clitest.rghgcuwdmhdgoh3ovalpotogjffu5kvamzthj4php2kp5mcznzremr2ii5llor3nq4w-WestUSwebspace","stamp":"waws-prod-bay-137","deletedSiteName":"swiftwebappcmj7bccv7ownq","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/42368","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":42368,"deletedTimestamp":"2019-10-19T14:15:04.4904337","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createumxbhibzy2otwutz3sufywbrcfyvd2h4iohgdyx6sus5srtpnj6","webSpace":"cli_test_resource_createumxbhibzy2otwutz3sufywbrcfyvd2h4iohgdyx6sus5srtpnj6-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/42388","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":42388,"deletedTimestamp":"2019-10-19T15:35:43.9187645","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createnja6t3tmyrgyjyurutfm6ockkxyd6el6boews7pb5i7invuvpyt","webSpace":"cli_test_resource_createnja6t3tmyrgyjyurutfm6ockkxyd6el6boews7pb5i7invuvpyt-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/43929","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":43929,"deletedTimestamp":"2019-10-21T05:14:33.6229622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_create7gkppgiqv32jchvqyn4atdpgkonksjj5yg3qrkutx74bsngwvjf","webSpace":"cli_test_resource_create7gkppgiqv32jchvqyn4atdpgkonksjj5yg3qrkutx74bsngwvjf-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44539","name":"cli-webapp-nwrazd3lcemej","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44539,"deletedTimestamp":"2019-10-21T10:44:29.7156890","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqigf4b7lqbu5xmbvzcxngwqxh3l2xid2nhfkis2ijbcu5skbxmvsxy7zd5nrtvhan","webSpace":"clitest.rgqigf4b7lqbu5xmbvzcxngwqxh3l2xid2nhfkis2ijbcu5skbxmvsxy7zd5nrtvhan-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwrazd3lcemej","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44551","name":"cli-funcapp-nwrtoodiszlv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44551,"deletedTimestamp":"2019-10-21T10:44:48.9988911","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq6g4ehlvcyy6jmtxmuzhwvkm4de4k7hheinje2u4qfozp6cni7dofgtegeft3mxy6","webSpace":"clitest.rgq6g4ehlvcyy6jmtxmuzhwvkm4de4k7hheinje2u4qfozp6cni7dofgtegeft3mxy6-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-funcapp-nwrtoodiszlv","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44554","name":"cli-webapp-nwrnw6yu4r4kl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44554,"deletedTimestamp":"2019-10-21T10:45:12.3056365","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgilo2m3v7tokcxvmyl3pjtwqbnue3b4opphjn5ljfsccjhsko2najuseet3ifzbuyv","webSpace":"clitest.rgilo2m3v7tokcxvmyl3pjtwqbnue3b4opphjn5ljfsccjhsko2najuseet3ifzbuyv-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrnw6yu4r4kl","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44556","name":"cli-webapp-nwrramwtmqw2t","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44556,"deletedTimestamp":"2019-10-21T10:45:26.8794893","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgl6g23wwnk4lj7yjbf4kbk3jfm2xtbjhcik23bfvjs2zk2pbuboghvnlgm4ajstwpz","webSpace":"clitest.rgl6g23wwnk4lj7yjbf4kbk3jfm2xtbjhcik23bfvjs2zk2pbuboghvnlgm4ajstwpz-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-webapp-nwrramwtmqw2t","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44557","name":"cli-webapp-nwrdqjq7dqnwc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44557,"deletedTimestamp":"2019-10-21T10:45:31.7488086","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgracwfmtyk36jbabtxtyqyh7oytt6sn4jlegwdl3zjw4xgaevapptduxaqdj5ajm3t","webSpace":"clitest.rgracwfmtyk36jbabtxtyqyh7oytt6sn4jlegwdl3zjw4xgaevapptduxaqdj5ajm3t-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwrdqjq7dqnwc","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44558","name":"cli-webapp-nwrhn573uer6w","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44558,"deletedTimestamp":"2019-10-21T10:45:42.7006949","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2ia4cqdcbhi7mxhmpunjxp3myauuicfacmhhtsca244gqtkcrwtubjqcfh7mni2du","webSpace":"clitest.rg2ia4cqdcbhi7mxhmpunjxp3myauuicfacmhhtsca244gqtkcrwtubjqcfh7mni2du-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-webapp-nwrhn573uer6w","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44560","name":"cli-webapp-nwr2ct2iznm2b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44560,"deletedTimestamp":"2019-10-21T10:45:57.3472372","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgitxjq3d4tzhkh6f5q3hvasxrtx4cbqgxnbzf7q2zypcc23ps2c4sm2qrcd3zd5v75","webSpace":"clitest.rgitxjq3d4tzhkh6f5q3hvasxrtx4cbqgxnbzf7q2zypcc23ps2c4sm2qrcd3zd5v75-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"cli-webapp-nwr2ct2iznm2b","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44563","name":"cli-webapp-nwr2es23kdesj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44563,"deletedTimestamp":"2019-10-21T10:46:13.8429528","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgubscoxvnwkkoqcp7wvh6ay34cogb6c7oy2bfrndavr2p4kftnelx3ca7aoufchdkw","webSpace":"clitest.rgubscoxvnwkkoqcp7wvh6ay34cogb6c7oy2bfrndavr2p4kftnelx3ca7aoufchdkw-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"cli-webapp-nwr2es23kdesj","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44564","name":"webInOtherRG","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44564,"deletedTimestamp":"2019-10-21T10:46:19.7862315","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglmb7bahd3xmisxhbo26y2uhvha4ftvwb22lyv33fr3zz5evljgkuyc5pz6zo66pr2","webSpace":"clitest.rglmb7bahd3xmisxhbo26y2uhvha4ftvwb22lyv33fr3zz5evljgkuyc5pz6zo66pr2-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webInOtherRG","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44565","name":"webn6dmyhiuutlvhzebhe7nk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44565,"deletedTimestamp":"2019-10-21T10:46:20.5519200","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq244ez2fonymvvhblrcqk6ek7whu3l4a43sxsz3jiiht4ljrfykhq4ym2kew6dh4p","webSpace":"clitest.rgq244ez2fonymvvhblrcqk6ek7whu3l4a43sxsz3jiiht4ljrfykhq4ym2kew6dh4p-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webn6dmyhiuutlvhzebhe7nk","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44567","name":"webapp-e2e4pmgyv3tlbnhzw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44567,"deletedTimestamp":"2019-10-21T10:46:23.6469371","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghrrnup3olmpcgqlqflgbdrlnxx47r3gg3zd2c7haxecrfcr5dgdrzswmuscawvuye","webSpace":"clitest.rghrrnup3olmpcgqlqflgbdrlnxx47r3gg3zd2c7haxecrfcr5dgdrzswmuscawvuye-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-e2e4pmgyv3tlbnhzw","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44568","name":"cli-webapp-nwryzjprpujcp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44568,"deletedTimestamp":"2019-10-21T10:46:27.3377133","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt","webSpace":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwryzjprpujcp","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44569","name":"cli-webapp-nwryzjprpujcp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44569,"deletedTimestamp":"2019-10-21T10:46:27.6502233","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt","webSpace":"clitest.rg3qbm2hphoudo2pa6j6d742x2kueqzensvihdidphwcneuy6cld37spjv5iwdv4qvt-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwryzjprpujcp","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44571","name":"webapp-quicktoqictutozj7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44571,"deletedTimestamp":"2019-10-21T10:46:35.5182579","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5os65amvfzwneetnp4yethg7sfj2vnzdkev7ajtmrczsef4omdpzse4ek4glcfjg4","webSpace":"clitest.rg5os65amvfzwneetnp4yethg7sfj2vnzdkev7ajtmrczsef4omdpzse4ek4glcfjg4-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webapp-quicktoqictutozj7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44572","name":"webapp-linux-multihajttz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44572,"deletedTimestamp":"2019-10-21T10:46:54.5185829","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgprrxi4fthzvrfrezf7sfthagq2hrodykwryaa5ekvlt2fxktkafmndcsoaobyvmkt","webSpace":"clitest.rgprrxi4fthzvrfrezf7sfthagq2hrodykwryaa5ekvlt2fxktkafmndcsoaobyvmkt-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"webapp-linux-multihajttz","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44573","name":"cli-webapp-nwrycxkwtt4dv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44573,"deletedTimestamp":"2019-10-21T10:47:01.9395168","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbqwirhqqoj2dhbbylrgdozi4lmce3m34qn6tlbrbfhqjnxi5tome6lghqwwdqzp62","webSpace":"clitest.rgbqwirhqqoj2dhbbylrgdozi4lmce3m34qn6tlbrbfhqjnxi5tome6lghqwwdqzp62-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"cli-webapp-nwrycxkwtt4dv","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44575","name":"webapp-quicka6xsz67flstp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44575,"deletedTimestamp":"2019-10-21T10:47:16.9225224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglcky23oteiihalm3yhywpwuil56ca4z3ocoiqrdnncg36ktoo6ipw6uf6ajlsbjnb","webSpace":"clitest.rglcky23oteiihalm3yhywpwuil56ca4z3ocoiqrdnncg36ktoo6ipw6uf6ajlsbjnb-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"webapp-quicka6xsz67flstp","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44576","name":"web-errorvkkvjyvwtg5ce6z","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44576,"deletedTimestamp":"2019-10-21T10:47:31.0836682","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyvu6tuqmg2hm5whoyzocq6djk5xcdkmqeagrqyle7sqlmtv4qgwo7f5ht4jx3s6gg","webSpace":"clitest.rgyvu6tuqmg2hm5whoyzocq6djk5xcdkmqeagrqyle7sqlmtv4qgwo7f5ht4jx3s6gg-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"web-errorvkkvjyvwtg5ce6z","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44577","name":"webapp-config-test2onr5kt6awir2v4wkzroz6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44577,"deletedTimestamp":"2019-10-21T10:47:41.1573962","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_json3rl2vwxk3vzxm2jpbxhubei22farktmlvumm4m7vjym2dkkei4o3wqu","webSpace":"cli_test_webapp_json3rl2vwxk3vzxm2jpbxhubei22farktmlvumm4m7vjym2dkkei4o3wqu-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"webapp-config-test2onr5kt6awir2v4wkzroz6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44579","name":"webapp-quick-cden7sr6ssn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44579,"deletedTimestamp":"2019-10-21T10:48:25.2274314","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwoh4a62ipe6efpskornpdh3avvzga2sd3twhlknvqvgzsn4i3bp7o2pboccm6aee2","webSpace":"clitest.rgwoh4a62ipe6efpskornpdh3avvzga2sd3twhlknvqvgzsn4i3bp7o2pboccm6aee2-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"webapp-quick-cden7sr6ssn","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44585","name":"webapp-win-log3t4ca3jcah","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44585,"deletedTimestamp":"2019-10-21T10:49:41.5232268","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwgskqebn5hlqcn7b4wftkuqj5smbzfozjhesi6s4brqnp6o6djr7haghwsl3z5hp3","webSpace":"clitest.rgwgskqebn5hlqcn7b4wftkuqj5smbzfozjhesi6s4brqnp6o6djr7haghwsl3z5hp3-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webapp-win-log3t4ca3jcah","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44586","name":"web-ssl-testzv7xwgts","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44586,"deletedTimestamp":"2019-10-21T10:50:15.9930493","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4iohq5uyslh77747llc2fbwgnclznoli4hox2uh44ynm3q2y6bvfe6ieknjufe7pj","webSpace":"clitest.rg4iohq5uyslh77747llc2fbwgnclznoli4hox2uh44ynm3q2y6bvfe6ieknjufe7pj-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"web-ssl-testzv7xwgts","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44587","name":"webapp-config-testry6qsr6o4rvvpcdwtqfu24","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44587,"deletedTimestamp":"2019-10-21T10:51:17.4165163","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configzcpedu7dqicxj36nkm62rfydj5t2extrk3pvw6chqeeaav2avlzqq","webSpace":"cli_test_webapp_configzcpedu7dqicxj36nkm62rfydj5t2extrk3pvw6chqeeaav2avlzqq-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"webapp-config-testry6qsr6o4rvvpcdwtqfu24","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44589","name":"web-git-test2fsf3f3wl2la","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44589,"deletedTimestamp":"2019-10-21T10:52:14.5647937","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6iksaxybqvem376w3leew6gv2sukvwynlyjnnp6djn63mwzmjscyovdgjmgpj5kjn","webSpace":"clitest.rg6iksaxybqvem376w3leew6gv2sukvwynlyjnnp6djn63mwzmjscyovdgjmgpj5kjn-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"web-git-test2fsf3f3wl2la","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44590","name":"slot-traffic-webxyqbskxm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44590,"deletedTimestamp":"2019-10-21T10:52:19.2447526","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgodr6bl2vxqoiciyhzvmcxqntg6qngc35fv3eaynv2ycrxrol7zbk3rbgc4khvo5rq","webSpace":"clitest.rgodr6bl2vxqoiciyhzvmcxqntg6qngc35fv3eaynv2ycrxrol7zbk3rbgc4khvo5rq-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"slot-traffic-webxyqbskxm","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44591","name":"delete-me-webvn7a3v4omii","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44591,"deletedTimestamp":"2019-10-21T10:52:21.6047387","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgygphugojdrmtiomsx5pm5xeseqnqobieyxvm2l5amje24plj3sl3kvwx6tlpewmmg","webSpace":"clitest.rgygphugojdrmtiomsx5pm5xeseqnqobieyxvm2l5amje24plj3sl3kvwx6tlpewmmg-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"delete-me-webvn7a3v4omii","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44592","name":"slot-traffic-webzhztvcvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44592,"deletedTimestamp":"2019-10-21T10:52:26.3144201","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7","webSpace":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-traffic-webzhztvcvx","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44593","name":"slot-traffic-webzhztvcvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44593,"deletedTimestamp":"2019-10-21T10:52:26.5957285","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7","webSpace":"clitest.rgith5dio4rpbhijutucwmnfiplob362wuzbs7i5m2dyjh5646w6clw7exw52ugl4k7-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-traffic-webzhztvcvx","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44594","name":"web-msivjaf2yovpiji7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44594,"deletedTimestamp":"2019-10-21T10:53:33.3238176","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggjzpo7kdtrbqx4lpo6tdbhrc2ccmcjvio4twsskweavkcjxy4t463rfvr2vk7cr2a","webSpace":"clitest.rggjzpo7kdtrbqx4lpo6tdbhrc2ccmcjvio4twsskweavkcjxy4t463rfvr2vk7cr2a-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"web-msivjaf2yovpiji7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44596","name":"slot-traffic-webl7gdnjnh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44596,"deletedTimestamp":"2019-10-21T10:54:07.8897027","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmqpdf4ipw6jnj7e3lf4pm4ttlzmbazshwlkvpt5wpaibdymmyz6wooefz245s3sqy","webSpace":"clitest.rgmqpdf4ipw6jnj7e3lf4pm4ttlzmbazshwlkvpt5wpaibdymmyz6wooefz245s3sqy-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"slot-traffic-webl7gdnjnh","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44597","name":"slot-traffic-webl7gdnjnh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44597,"deletedTimestamp":"2019-10-21T10:54:08.2024351","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmqpdf4ipw6jnj7e3lf4pm4ttlzmbazshwlkvpt5wpaibdymmyz6wooefz245s3sqy","webSpace":"clitest.rgmqpdf4ipw6jnj7e3lf4pm4ttlzmbazshwlkvpt5wpaibdymmyz6wooefz245s3sqy-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"slot-traffic-webl7gdnjnh","slot":"slot1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44598","name":"func-e2ebxoj66a2dvbrkrvz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44598,"deletedTimestamp":"2019-10-21T10:54:35.3399481","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgabytwukzhklplehnh6vlddxigjoajje7acgz7b4sqn3m7jo55zjvdguefslxxa4pv","webSpace":"clitest.rgabytwukzhklplehnh6vlddxigjoajje7acgz7b4sqn3m7jo55zjvdguefslxxa4pv-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"func-e2ebxoj66a2dvbrkrvz","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44599","name":"func-e2eg36yqboo5ylzjzq7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44599,"deletedTimestamp":"2019-10-21T10:55:17.9306447","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgabytwukzhklplehnh6vlddxigjoajje7acgz7b4sqn3m7jo55zjvdguefslxxa4pv","webSpace":"clitest.rgabytwukzhklplehnh6vlddxigjoajje7acgz7b4sqn3m7jo55zjvdguefslxxa4pv-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"func-e2eg36yqboo5ylzjzq7","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44600","name":"webapp-authentication-testpj47xprk2zmr7g","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44600,"deletedTimestamp":"2019-10-21T10:55:42.1711622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_authenticationpvbsfuug3uoqv2jvz2eagmnsttgctmkby77p5gmqhi3qx","webSpace":"cli_test_webapp_authenticationpvbsfuug3uoqv2jvz2eagmnsttgctmkby77p5gmqhi3qx-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"webapp-authentication-testpj47xprk2zmr7g","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44605","name":"functionapp-slotvju7nrse","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44605,"deletedTimestamp":"2019-10-21T10:56:30.1626652","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6xwvwefyibsbnj5x3y557caof3g72nqrxuag2s6eabgq3x646pfzlqcsouj67ypdn","webSpace":"clitest.rg6xwvwefyibsbnj5x3y557caof3g72nqrxuag2s6eabgq3x646pfzlqcsouj67ypdn-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"functionapp-slotvju7nrse","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44606","name":"functionapp-slotvju7nrse","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44606,"deletedTimestamp":"2019-10-21T10:56:30.4755770","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6xwvwefyibsbnj5x3y557caof3g72nqrxuag2s6eabgq3x646pfzlqcsouj67ypdn","webSpace":"clitest.rg6xwvwefyibsbnj5x3y557caof3g72nqrxuag2s6eabgq3x646pfzlqcsouj67ypdn-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"functionapp-slotvju7nrse","slot":"slotnamexwxsmpczeka5nydb","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44607","name":"slot-swap-web755erubytgt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44607,"deletedTimestamp":"2019-10-21T10:56:36.3309642","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgreoozp43yromqoc3ob755vx3jakpg4jbn3roqkfoptb5bd64cxn4r4p6uscxdpscz","webSpace":"clitest.rgreoozp43yromqoc3ob755vx3jakpg4jbn3roqkfoptb5bd64cxn4r4p6uscxdpscz-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-swap-web755erubytgt","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44608","name":"slot-swap-web755erubytgt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44608,"deletedTimestamp":"2019-10-21T10:56:36.6277853","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgreoozp43yromqoc3ob755vx3jakpg4jbn3roqkfoptb5bd64cxn4r4p6uscxdpscz","webSpace":"clitest.rgreoozp43yromqoc3ob755vx3jakpg4jbn3roqkfoptb5bd64cxn4r4p6uscxdpscz-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-swap-web755erubytgt","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44609","name":"webapp-update-testnnhq2urmmwrex2padtri22","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44609,"deletedTimestamp":"2019-10-21T10:56:42.0137208","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatengnh5r3zl4neuqed2r27rlxszo2lbssdofeo3buln3i73q2c2sii6","webSpace":"cli_test_webapp_updatengnh5r3zl4neuqed2r27rlxszo2lbssdofeo3buln3i73q2c2sii6-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-update-testnnhq2urmmwrex2padtri22","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44610","name":"webapp-update-testnnhq2urmmwrex2padtri22","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44610,"deletedTimestamp":"2019-10-21T10:56:42.3262118","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatengnh5r3zl4neuqed2r27rlxszo2lbssdofeo3buln3i73q2c2sii6","webSpace":"cli_test_webapp_updatengnh5r3zl4neuqed2r27rlxszo2lbssdofeo3buln3i73q2c2sii6-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-update-testnnhq2urmmwrex2padtri22","slot":"s1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44611","name":"functionapp-slot2ttebn2y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44611,"deletedTimestamp":"2019-10-21T10:56:42.5346351","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgf5xryxmzt76z2htxtdvjd2j4kqfb6xofehq3ktwy44nl3x27sfzxgllxdbil47mvp","webSpace":"clitest.rgf5xryxmzt76z2htxtdvjd2j4kqfb6xofehq3ktwy44nl3x27sfzxgllxdbil47mvp-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"functionapp-slot2ttebn2y","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44612","name":"functionapp-slot2ttebn2y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44612,"deletedTimestamp":"2019-10-21T10:56:42.8165527","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgf5xryxmzt76z2htxtdvjd2j4kqfb6xofehq3ktwy44nl3x27sfzxgllxdbil47mvp","webSpace":"clitest.rgf5xryxmzt76z2htxtdvjd2j4kqfb6xofehq3ktwy44nl3x27sfzxgllxdbil47mvp-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"functionapp-slot2ttebn2y","slot":"slotnamesicvulgncxw2yv6z","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44613","name":"swiftwebappnfrhl4rgqqgf4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44613,"deletedTimestamp":"2019-10-21T10:56:47.7243538","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwi2ghf3iu2lmvmiajb65it32rfu3mutczmixiymswaf4z3qzryuudpch66zjvjwst","webSpace":"clitest.rgwi2ghf3iu2lmvmiajb65it32rfu3mutczmixiymswaf4z3qzryuudpch66zjvjwst-WestUSwebspace","stamp":"waws-prod-bay-097","deletedSiteName":"swiftwebappnfrhl4rgqqgf4","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44614","name":"webapp-linux-free23xigjw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44614,"deletedTimestamp":"2019-10-21T10:57:06.8161957","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_linux_freephqcn22ui7pbseeyehvbntstl7rs2zcssdipr7z6zihttsrtv","webSpace":"cli_test_webapp_linux_freephqcn22ui7pbseeyehvbntstl7rs2zcssdipr7z6zihttsrtv-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"webapp-linux-free23xigjw","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44617","name":"webapp-create-alwaysOn-e2eddtbjkkhfondicz424","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44617,"deletedTimestamp":"2019-10-21T10:58:16.4764515","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_alwaysOnze4mx26emggqqj63y7jcsxusce2y7bm2c6tpbkhp2oh7nz2eqmf","webSpace":"cli_test_webapp_alwaysOnze4mx26emggqqj63y7jcsxusce2y7bm2c6tpbkhp2oh7nz2eqmf-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"webapp-create-alwaysOn-e2eddtbjkkhfondicz424","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44618","name":"webapp-zipDeploy-testttkt54akhdrpfroxkd6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44618,"deletedTimestamp":"2019-10-21T10:58:20.5949726","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_zipDeployziurjq5azzje5opdpndoafefw5emu536yln4uceh4u56tvuxtp","webSpace":"cli_test_webapp_zipDeployziurjq5azzje5opdpndoafefw5emu536yln4uceh4u56tvuxtp-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"webapp-zipDeploy-testttkt54akhdrpfroxkd6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44625","name":"slot-test-webfkrpodixwqp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44625,"deletedTimestamp":"2019-10-21T10:58:43.3992765","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg35t6g4aj2xlefmnre5em7m62dyxph52rgehuvrqur237gdbjidrs35wh56bwmb2ea","webSpace":"clitest.rg35t6g4aj2xlefmnre5em7m62dyxph52rgehuvrqur237gdbjidrs35wh56bwmb2ea-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"slot-test-webfkrpodixwqp","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44627","name":"slot-test-webfkrpodixwqp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44627,"deletedTimestamp":"2019-10-21T10:58:48.9960539","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg35t6g4aj2xlefmnre5em7m62dyxph52rgehuvrqur237gdbjidrs35wh56bwmb2ea","webSpace":"clitest.rg35t6g4aj2xlefmnre5em7m62dyxph52rgehuvrqur237gdbjidrs35wh56bwmb2ea-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"slot-test-webfkrpodixwqp","slot":"dev","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44638","name":"hcwebapprw6ja6sdkmcl463l","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44638,"deletedTimestamp":"2019-10-21T10:59:36.3347350","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggthkrgfupmkp4qwg6rhnnix26nsuapmr4ecynaqi4fq7ibdga77qi4k4rp3n35ezj","webSpace":"clitest.rggthkrgfupmkp4qwg6rhnnix26nsuapmr4ecynaqi4fq7ibdga77qi4k4rp3n35ezj-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"hcwebapprw6ja6sdkmcl463l","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44639","name":"slot-test-webfkrpodixwqp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44639,"deletedTimestamp":"2019-10-21T10:59:41.9581994","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg35t6g4aj2xlefmnre5em7m62dyxph52rgehuvrqur237gdbjidrs35wh56bwmb2ea","webSpace":"clitest.rg35t6g4aj2xlefmnre5em7m62dyxph52rgehuvrqur237gdbjidrs35wh56bwmb2ea-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"slot-test-webfkrpodixwqp","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44650","name":"functionapp-slotqqc2p7zt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44650,"deletedTimestamp":"2019-10-21T11:01:30.9506115","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjneljzj67jzoodkmwsyo4bxkm5qw65iebzwxmporhrcygwqbluyjgr7elcbyt6lvf","webSpace":"clitest.rgjneljzj67jzoodkmwsyo4bxkm5qw65iebzwxmporhrcygwqbluyjgr7elcbyt6lvf-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"functionapp-slotqqc2p7zt","slot":"slotnamecycm3c4s7vgvo25p","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44651","name":"functionapp-slotqqc2p7zt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44651,"deletedTimestamp":"2019-10-21T11:01:37.8190590","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjneljzj67jzoodkmwsyo4bxkm5qw65iebzwxmporhrcygwqbluyjgr7elcbyt6lvf","webSpace":"clitest.rgjneljzj67jzoodkmwsyo4bxkm5qw65iebzwxmporhrcygwqbluyjgr7elcbyt6lvf-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"functionapp-slotqqc2p7zt","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44663","name":"webapp-hyperv-e2e5tnm4ld","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44663,"deletedTimestamp":"2019-10-21T11:03:33.5968708","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvgasboccvqqqzo3vbqv7hhaz5h4s36b5es6azouq3teflytnv3i7ibjbshtuwwsa5","webSpace":"clitest.rgvgasboccvqqqzo3vbqv7hhaz5h4s36b5es6azouq3teflytnv3i7ibjbshtuwwsa5-WestUSwebspace","stamp":"waws-prod-bay-105","deletedSiteName":"webapp-hyperv-e2e5tnm4ld","slot":"Production","kind":"app,container,windows","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/44723","name":"appw63jqx2kfjtf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":44723,"deletedTimestamp":"2019-10-21T11:40:30.5428351","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_metric_alert_v2tewpvnjgpidf5ppt6mv3klcddvyftot3gp2pktimgslqccgiwug","webSpace":"cli_test_metric_alert_v2tewpvnjgpidf5ppt6mv3klcddvyftot3gp2pktimgslqccgiwug-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"appw63jqx2kfjtf","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/49446","name":"swiftwebappclbfzmhly4zgt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":49446,"deletedTimestamp":"2019-10-23T01:45:56.3191449","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglbx52u2hlsxa6q4j2h2jcjuavguqap2uhguid66gpqgpqk4innroyxh4rgseikojo","webSpace":"clitest.rglbx52u2hlsxa6q4j2h2jcjuavguqap2uhguid66gpqgpqk4innroyxh4rgseikojo-WestUSwebspace","stamp":"waws-prod-bay-117","deletedSiteName":"swiftwebappclbfzmhly4zgt","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/49449","name":"func-e2edcltojhmbf63i4pj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":49449,"deletedTimestamp":"2019-10-23T01:46:20.8578002","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvooizowj6acklbyiiyd2lienoodka425rqc75uvunyns76qpqzimwmw2jip6dsmxc","webSpace":"clitest.rgvooizowj6acklbyiiyd2lienoodka425rqc75uvunyns76qpqzimwmw2jip6dsmxc-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"func-e2edcltojhmbf63i4pj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/49452","name":"hcwebappobpowxcubfd64i52","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":49452,"deletedTimestamp":"2019-10-23T01:46:30.2659748","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgndhuxeabutihxwtja57h2un2jjj4l3n7ztxnfmyx6cljw6v2uc6jza3tfvwg3p2fi","webSpace":"clitest.rgndhuxeabutihxwtja57h2un2jjj4l3n7ztxnfmyx6cljw6v2uc6jza3tfvwg3p2fi-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"hcwebappobpowxcubfd64i52","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/49453","name":"slot-traffic-webhud2xe3d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":49453,"deletedTimestamp":"2019-10-23T01:46:31.0529530","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgou5aielsnug2qbdcsfhqlm4sjghi46pojg4pbtiuizmkcwb6nc32a5vujzmiqoavn","webSpace":"clitest.rgou5aielsnug2qbdcsfhqlm4sjghi46pojg4pbtiuizmkcwb6nc32a5vujzmiqoavn-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"slot-traffic-webhud2xe3d","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/49454","name":"func-e2efvszn4rn2wff5bui","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":49454,"deletedTimestamp":"2019-10-23T01:46:57.4625203","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvooizowj6acklbyiiyd2lienoodka425rqc75uvunyns76qpqzimwmw2jip6dsmxc","webSpace":"clitest.rgvooizowj6acklbyiiyd2lienoodka425rqc75uvunyns76qpqzimwmw2jip6dsmxc-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"func-e2efvszn4rn2wff5bui","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/58025","name":"java-webapp-7929","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":58025,"deletedTimestamp":"2019-10-28T07:20:23.7276750","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg7251","webSpace":"javacsmrg7251-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"java-webapp-7929","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/58063","name":"java-webapp-2748","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":58063,"deletedTimestamp":"2019-10-28T07:46:32.2445718","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg4988","webSpace":"javacsmrg4988-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"java-webapp-2748","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/58064","name":"java-webapp-3326","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":58064,"deletedTimestamp":"2019-10-28T07:55:30.6392566","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg7870","webSpace":"javacsmrg7870-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"java-webapp-3326","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/58197","name":"webapp2-76585593f5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":58197,"deletedTimestamp":"2019-10-28T10:13:05.5046820","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_a68221051a45","webSpace":"rgnemv_a68221051a45-WestUSwebspace","stamp":"waws-prod-bay-081","deletedSiteName":"webapp2-76585593f5","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/58198","name":"webapp1-d9990935a4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":58198,"deletedTimestamp":"2019-10-28T10:13:09.2153091","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_a68221051a45","webSpace":"rgnemv_a68221051a45-WestUSwebspace","stamp":"waws-prod-bay-081","deletedSiteName":"webapp1-d9990935a4","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59332","name":"webapp2-8fa5712918","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59332,"deletedTimestamp":"2019-10-29T04:38:39.3670734","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_728923482fd5","webSpace":"rgnemv_728923482fd5-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"webapp2-8fa5712918","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59333","name":"webapp1-ac097650b1","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59333,"deletedTimestamp":"2019-10-29T04:38:43.3389847","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_728923482fd5","webSpace":"rgnemv_728923482fd5-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"webapp1-ac097650b1","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59334","name":"webapp1-bf73204109","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59334,"deletedTimestamp":"2019-10-29T04:42:58.5172796","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rg1nemv_89165081f3e3","webSpace":"rg1nemv_89165081f3e3-WestUSwebspace","stamp":"waws-prod-bay-011","deletedSiteName":"webapp1-bf73204109","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59335","name":"webapp3-d7f0042585","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59335,"deletedTimestamp":"2019-10-29T04:43:44.4937501","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rg1nemv_89165081f3e3","webSpace":"rg1nemv_89165081f3e3-WestUSwebspace","stamp":"waws-prod-bay-011","deletedSiteName":"webapp3-d7f0042585","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59337","name":"webapp2-9c103781e3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59337,"deletedTimestamp":"2019-10-29T04:46:00.6356235","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rg1nemv_89165081f3e3","webSpace":"rg1nemv_89165081f3e3-WestUSwebspace","stamp":"waws-prod-bay-011","deletedSiteName":"webapp2-9c103781e3","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59344","name":"webapp4-5bd43959f8","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59344,"deletedTimestamp":"2019-10-29T05:08:40.9173344","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webapp4-5bd43959f8","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59345","name":"webapp5-a6e70202cf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59345,"deletedTimestamp":"2019-10-29T05:08:42.4349147","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webapp5-a6e70202cf","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59346","name":"webapp1-d5f20954f9","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59346,"deletedTimestamp":"2019-10-29T05:08:48.4730048","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webapp1-d5f20954f9","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59353","name":"webapp2-7659013656","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59353,"deletedTimestamp":"2019-10-29T05:16:55.9309503","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_55b39777adb8","webSpace":"rgnemv_55b39777adb8-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp2-7659013656","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59356","name":"webapp1-6998762791","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59356,"deletedTimestamp":"2019-10-29T05:16:59.5753120","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_55b39777adb8","webSpace":"rgnemv_55b39777adb8-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp1-6998762791","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59380","name":"webapp2-5f955698d6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59380,"deletedTimestamp":"2019-10-29T05:34:50.9293853","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_a09401747ebb","webSpace":"rgnemv_a09401747ebb-WestUSwebspace","stamp":"waws-prod-bay-023","deletedSiteName":"webapp2-5f955698d6","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/59381","name":"webapp1-5bc61919b4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":59381,"deletedTimestamp":"2019-10-29T05:34:55.6158334","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_a09401747ebb","webSpace":"rgnemv_a09401747ebb-WestUSwebspace","stamp":"waws-prod-bay-023","deletedSiteName":"webapp1-5bc61919b4","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/61485","name":"functionapp-slotgvxxdvih","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":61485,"deletedTimestamp":"2019-10-30T02:17:47.8447885","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfqwkoc4gxyneuwkky47s32sega42hcemivrbu23ndu5bxn4rnqxmwf7rr27eq7tjx","webSpace":"clitest.rgfqwkoc4gxyneuwkky47s32sega42hcemivrbu23ndu5bxn4rnqxmwf7rr27eq7tjx-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"functionapp-slotgvxxdvih","slot":"slotnameenlteeyag6xx6sqd","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/61486","name":"functionapp-slot2za6lqo2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":61486,"deletedTimestamp":"2019-10-30T02:17:53.7173889","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4drad4ouuikp5j6rl5denu6as6em57ugdwccykrhorhn3r5uh5btib3wz6u3sqgb5","webSpace":"clitest.rg4drad4ouuikp5j6rl5denu6as6em57ugdwccykrhorhn3r5uh5btib3wz6u3sqgb5-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"functionapp-slot2za6lqo2","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/61487","name":"functionapp-slot2za6lqo2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":61487,"deletedTimestamp":"2019-10-30T02:17:54.0932711","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4drad4ouuikp5j6rl5denu6as6em57ugdwccykrhorhn3r5uh5btib3wz6u3sqgb5","webSpace":"clitest.rg4drad4ouuikp5j6rl5denu6as6em57ugdwccykrhorhn3r5uh5btib3wz6u3sqgb5-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"functionapp-slot2za6lqo2","slot":"slotnamebekgoduboaigrdug","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/61488","name":"functionapp-slotgvxxdvih","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":61488,"deletedTimestamp":"2019-10-30T02:17:54.2335564","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfqwkoc4gxyneuwkky47s32sega42hcemivrbu23ndu5bxn4rnqxmwf7rr27eq7tjx","webSpace":"clitest.rgfqwkoc4gxyneuwkky47s32sega42hcemivrbu23ndu5bxn4rnqxmwf7rr27eq7tjx-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"functionapp-slotgvxxdvih","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/61491","name":"functionapp-slotu5d76ipp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":61491,"deletedTimestamp":"2019-10-30T02:20:31.4722287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdk5kvtzoywkknzvbpttanmhrjoawc2uwo4yj6qubtf5pqfwcjpsxjdtxhxewujjgr","webSpace":"clitest.rgdk5kvtzoywkknzvbpttanmhrjoawc2uwo4yj6qubtf5pqfwcjpsxjdtxhxewujjgr-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"functionapp-slotu5d76ipp","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/61492","name":"functionapp-slotu5d76ipp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":61492,"deletedTimestamp":"2019-10-30T02:20:31.7856653","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdk5kvtzoywkknzvbpttanmhrjoawc2uwo4yj6qubtf5pqfwcjpsxjdtxhxewujjgr","webSpace":"clitest.rgdk5kvtzoywkknzvbpttanmhrjoawc2uwo4yj6qubtf5pqfwcjpsxjdtxhxewujjgr-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"functionapp-slotu5d76ipp","slot":"slotnameihnoqjhv543loywl","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/66181","name":"java-webapp-7449","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":66181,"deletedTimestamp":"2019-11-01T03:20:43.1764691","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg7483","webSpace":"javacsmrg7483-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"java-webapp-7449","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/72294","name":"faremotebuildapp6pmoi2ok","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":72294,"deletedTimestamp":"2019-11-05T11:38:44.4985468","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgztxmbrmbb4kgd33unylpyrir4papwo6hwkogax6oo5hyntze4z4l5jnba5kkk5yqs","webSpace":"clitest.rgztxmbrmbb4kgd33unylpyrir4papwo6hwkogax6oo5hyntze4z4l5jnba5kkk5yqs-WestUSwebspace","stamp":"waws-prod-bay-139","deletedSiteName":"faremotebuildapp6pmoi2ok","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/72301","name":"faremotebuildappx2qfvbfi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":72301,"deletedTimestamp":"2019-11-05T11:44:31.4702995","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmoavsjxekm2di3paw6vzq3z2blh3zvbg7ztowl35am6jjxgd6viaomrngbrp6cluf","webSpace":"clitest.rgmoavsjxekm2di3paw6vzq3z2blh3zvbg7ztowl35am6jjxgd6viaomrngbrp6cluf-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"faremotebuildappx2qfvbfi","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/74390","name":"appupey4b2fpyxb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74390,"deletedTimestamp":"2019-11-06T07:55:21.4189595","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_metric_alert_v25kdjipml3gdo5f5ykspl5smtbtckzjtszivvnl6grfuhu3mnf24","webSpace":"cli_test_metric_alert_v25kdjipml3gdo5f5ykspl5smtbtckzjtszivvnl6grfuhu3mnf24-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"appupey4b2fpyxb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82036","name":"faremotebuildapptufchfwf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82036,"deletedTimestamp":"2019-11-11T02:16:27.2937984","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4ipii35ymj6awppeyynm7od62ysqrkmvz7x5jhh46hdrwnbytykmucevecc2nv7fb","webSpace":"clitest.rg4ipii35ymj6awppeyynm7od62ysqrkmvz7x5jhh46hdrwnbytykmucevecc2nv7fb-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"faremotebuildapptufchfwf","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82182","name":"appvdj27rpmjvnq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82182,"deletedTimestamp":"2019-11-11T05:10:27.3906937","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_metric_alert_v2zlxaruuf4axqmrfzphczxwhhzryzbl3arnxgdd5cooktltddaxw","webSpace":"cli_test_metric_alert_v2zlxaruuf4axqmrfzphczxwhhzryzbl3arnxgdd5cooktltddaxw-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"appvdj27rpmjvnq","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82443","name":"cli-funcapp-nwrpozizvrhx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82443,"deletedTimestamp":"2019-11-11T08:53:59.4473593","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnddbbkhax253em4qkvamx6pvvva2qzldxv2qtrvhyqyi6phzagwewswtbbews2jbg","webSpace":"clitest.rgnddbbkhax253em4qkvamx6pvvva2qzldxv2qtrvhyqyi6phzagwewswtbbews2jbg-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-funcapp-nwrpozizvrhx","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82444","name":"cli-funcapp-nwrnzho475m3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82444,"deletedTimestamp":"2019-11-11T08:54:00.1985116","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmy6qsuhnxi6xryxiy25y5x3tozbkiy7ohdq67mgrzhrnxpmdj4jhgopk7bkzzme7y","webSpace":"clitest.rgmy6qsuhnxi6xryxiy25y5x3tozbkiy7ohdq67mgrzhrnxpmdj4jhgopk7bkzzme7y-WestUSwebspace","stamp":"waws-prod-bay-101","deletedSiteName":"cli-funcapp-nwrnzho475m3","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82445","name":"cli-funcapp-nwr525jibdyj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82445,"deletedTimestamp":"2019-11-11T08:54:00.7764427","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgccqzqbdylio3pnt2jrklmiyz2af42z6ccx2o7jyhq5rfawintog5ar4glfmikl2y3","webSpace":"clitest.rgccqzqbdylio3pnt2jrklmiyz2af42z6ccx2o7jyhq5rfawintog5ar4glfmikl2y3-WestUSwebspace","stamp":"waws-prod-bay-141","deletedSiteName":"cli-funcapp-nwr525jibdyj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82446","name":"cli-funcapp-nwr3k2u2tvhl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82446,"deletedTimestamp":"2019-11-11T08:54:04.8284603","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7b6og4m2sp4zhztufhp2a2565rjcgo3kcavdjebvao22fzti5mwjolv3vu5ngnapk","webSpace":"clitest.rg7b6og4m2sp4zhztufhp2a2565rjcgo3kcavdjebvao22fzti5mwjolv3vu5ngnapk-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-funcapp-nwr3k2u2tvhl","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82447","name":"cli-funcapp-nwrynxwnbwqw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82447,"deletedTimestamp":"2019-11-11T08:54:05.3285146","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm4xz6jr3k76ilhpeimebkwuvf4p7mczfwmqhbegz2u3xcfcsbvobgvf5vjihpw3vn","webSpace":"clitest.rgm4xz6jr3k76ilhpeimebkwuvf4p7mczfwmqhbegz2u3xcfcsbvobgvf5vjihpw3vn-WestUSwebspace","stamp":"waws-prod-bay-121","deletedSiteName":"cli-funcapp-nwrynxwnbwqw","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82448","name":"cli-funcapp-nwrvn2kzfw2e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82448,"deletedTimestamp":"2019-11-11T08:54:22.7089681","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgy272y6mbn4czj4bbuwkcmpjhnbn3r437onkwfpntew5nxwxz6lcrfmc4zqmmyvrhy","webSpace":"clitest.rgy272y6mbn4czj4bbuwkcmpjhnbn3r437onkwfpntew5nxwxz6lcrfmc4zqmmyvrhy-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-funcapp-nwrvn2kzfw2e","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82449","name":"cli-funcapp-nwrfyzto2jm2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82449,"deletedTimestamp":"2019-11-11T08:54:31.4342249","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgefh5ei6gwffcvsgqgly4kklrlxu4i2nwfqd3q6vqsudnqgpchurzfvlqzttzjyow4","webSpace":"clitest.rgefh5ei6gwffcvsgqgly4kklrlxu4i2nwfqd3q6vqsudnqgpchurzfvlqzttzjyow4-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-funcapp-nwrfyzto2jm2","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82450","name":"cli-funcapp-nwraqwj6w7sk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82450,"deletedTimestamp":"2019-11-11T08:54:32.1536752","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggcl2wvtl2stembd7xpnhai4lhiopsml7zkltskqkiqy3suw4d2g6njflj3ib43kpw","webSpace":"clitest.rggcl2wvtl2stembd7xpnhai4lhiopsml7zkltskqkiqy3suw4d2g6njflj3ib43kpw-WestUSwebspace","stamp":"waws-prod-bay-093","deletedSiteName":"cli-funcapp-nwraqwj6w7sk","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82451","name":"cli-webapp-nwrycomzpruso","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82451,"deletedTimestamp":"2019-11-11T08:54:48.5826280","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjprm6wkorz4rfnm2gq732l6nz3mkmqowxmkwv57zy5ectxma43slzei5vhm46jxrc","webSpace":"clitest.rgjprm6wkorz4rfnm2gq732l6nz3mkmqowxmkwv57zy5ectxma43slzei5vhm46jxrc-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-webapp-nwrycomzpruso","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82452","name":"cli-webapp-nwrjpdfbupo6b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82452,"deletedTimestamp":"2019-11-11T08:54:49.6890130","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5egdr75z44i3zv5fvbpykbofurxdfultulyjbxtvefnv7gx2rjiqjqqz45wvbhy6f","webSpace":"clitest.rg5egdr75z44i3zv5fvbpykbofurxdfultulyjbxtvefnv7gx2rjiqjqqz45wvbhy6f-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-webapp-nwrjpdfbupo6b","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82453","name":"cli-webapp-nwrlmb4dsfz4u","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82453,"deletedTimestamp":"2019-11-11T08:54:50.8964910","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmwxnq7gabsznvn6qagzwheib4cyef4vraw2p5iath5n5zkfars6vdjlhq6ofbxsjf","webSpace":"clitest.rgmwxnq7gabsznvn6qagzwheib4cyef4vraw2p5iath5n5zkfars6vdjlhq6ofbxsjf-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-webapp-nwrlmb4dsfz4u","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82454","name":"cli-webapp-nwrfqzmcosylj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82454,"deletedTimestamp":"2019-11-11T08:54:53.8519431","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgddhgngpwturmqim3cpwa663qm6rm3mxsrykam3jm6ikz6ldas5rwm6wpmw4alzlmt","webSpace":"clitest.rgddhgngpwturmqim3cpwa663qm6rm3mxsrykam3jm6ikz6ldas5rwm6wpmw4alzlmt-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwrfqzmcosylj","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82455","name":"cli-webapp-nwrhepzgecw7j","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82455,"deletedTimestamp":"2019-11-11T08:55:12.0738636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgd4acyew26cijm45zwozyugovmmgfuyz6nim5m3yo6qlcghkbttrjjkmb6tqooh235","webSpace":"clitest.rgd4acyew26cijm45zwozyugovmmgfuyz6nim5m3yo6qlcghkbttrjjkmb6tqooh235-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"cli-webapp-nwrhepzgecw7j","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82456","name":"cli-webapp-nwrcao54sghi6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82456,"deletedTimestamp":"2019-11-11T08:55:17.6085986","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqssfrol2y5zpientr7xsiv3jvagl5rhwrznwi7bpls76csrx64oxg5ua7yum2sdz3","webSpace":"clitest.rgqssfrol2y5zpientr7xsiv3jvagl5rhwrznwi7bpls76csrx64oxg5ua7yum2sdz3-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwrcao54sghi6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82457","name":"cli-webapp-nwr3k5ccsnrdf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82457,"deletedTimestamp":"2019-11-11T08:55:22.6929798","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgssq3njdubxjbpugnauocun2j5wb3mqbscvjm2b6q22ccg5gxythg3clumgp3hqulo","webSpace":"clitest.rgssq3njdubxjbpugnauocun2j5wb3mqbscvjm2b6q22ccg5gxythg3clumgp3hqulo-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-webapp-nwr3k5ccsnrdf","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82458","name":"webInOtherRG","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82458,"deletedTimestamp":"2019-11-11T08:55:50.2802933","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzsukoktorh3pmqic4catsotgxou7vcp5z4vxplitahu4lovzidfjl4fhztngy3aez","webSpace":"clitest.rgzsukoktorh3pmqic4catsotgxou7vcp5z4vxplitahu4lovzidfjl4fhztngy3aez-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webInOtherRG","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82459","name":"webrt3b4suwtp4rmeg2cjo33","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82459,"deletedTimestamp":"2019-11-11T08:56:06.2401657","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm64kl5wnbdi2d73ynlcv3usv47usncjxgkwtzeeh5i3ikuvcq3s32bsdwdzfwpsky","webSpace":"clitest.rgm64kl5wnbdi2d73ynlcv3usv47usncjxgkwtzeeh5i3ikuvcq3s32bsdwdzfwpsky-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"webrt3b4suwtp4rmeg2cjo33","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82460","name":"cli-webapp-nwrjynyle7ul7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82460,"deletedTimestamp":"2019-11-11T08:56:13.4316943","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzatorr5dusqadmsvzjdeoqgm43kqrf3yyusq32tubhjaiqqtzjpuiypolf72bwysf","webSpace":"clitest.rgzatorr5dusqadmsvzjdeoqgm43kqrf3yyusq32tubhjaiqqtzjpuiypolf72bwysf-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwrjynyle7ul7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82461","name":"cli-webapp-nwrjynyle7ul7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82461,"deletedTimestamp":"2019-11-11T08:56:13.7129599","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzatorr5dusqadmsvzjdeoqgm43kqrf3yyusq32tubhjaiqqtzjpuiypolf72bwysf","webSpace":"clitest.rgzatorr5dusqadmsvzjdeoqgm43kqrf3yyusq32tubhjaiqqtzjpuiypolf72bwysf-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwrjynyle7ul7","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82462","name":"webapp-linux-multirl6ztr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82462,"deletedTimestamp":"2019-11-11T08:56:21.3215436","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq7sofb4onsqrb6qqn3e6trzwnmpkbwwhcyln4qov33qwekcdkozzjaxlc2esqs6dd","webSpace":"clitest.rgq7sofb4onsqrb6qqn3e6trzwnmpkbwwhcyln4qov33qwekcdkozzjaxlc2esqs6dd-WestUSwebspace","stamp":"waws-prod-bay-139","deletedSiteName":"webapp-linux-multirl6ztr","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82464","name":"cli-funcapp-nwr57ug4uupc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82464,"deletedTimestamp":"2019-11-11T08:56:35.8294010","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggm2fihme27ssursiwyrk63bn3pbqlz42v4xsg4li2m7i4v23hd2yuvqke4i4o5dkw","webSpace":"clitest.rggm2fihme27ssursiwyrk63bn3pbqlz42v4xsg4li2m7i4v23hd2yuvqke4i4o5dkw-WestUSwebspace","stamp":"waws-prod-bay-095","deletedSiteName":"cli-funcapp-nwr57ug4uupc","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82465","name":"cli-funcapp-nwr57ug4uupc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82465,"deletedTimestamp":"2019-11-11T08:56:36.1767229","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggm2fihme27ssursiwyrk63bn3pbqlz42v4xsg4li2m7i4v23hd2yuvqke4i4o5dkw","webSpace":"clitest.rggm2fihme27ssursiwyrk63bn3pbqlz42v4xsg4li2m7i4v23hd2yuvqke4i4o5dkw-WestUSwebspace","stamp":"waws-prod-bay-095","deletedSiteName":"cli-funcapp-nwr57ug4uupc","slot":"stage","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82469","name":"cli-webapp-nwrlsgowt2dvc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82469,"deletedTimestamp":"2019-11-11T08:57:15.8421574","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgv3oo4gc5p72gpsouna3aguy2zjhwcflu5ypezmt2bcqiamgbd3obxjvuzkddffmjl","webSpace":"clitest.rgv3oo4gc5p72gpsouna3aguy2zjhwcflu5ypezmt2bcqiamgbd3obxjvuzkddffmjl-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"cli-webapp-nwrlsgowt2dvc","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82470","name":"webapp-config-testus34cwlqhrtefvorqliva3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82470,"deletedTimestamp":"2019-11-11T08:57:24.5928540","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configzqwkz5x3xyfb2qr2zs6q54eyp2t27chqpae773i3mgyhxtiyzkmw3","webSpace":"cli_test_webapp_configzqwkz5x3xyfb2qr2zs6q54eyp2t27chqpae773i3mgyhxtiyzkmw3-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"webapp-config-testus34cwlqhrtefvorqliva3","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82471","name":"webapp-win-logyutteqzi3p","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82471,"deletedTimestamp":"2019-11-11T08:57:25.6182110","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2v3uzoz6wvm4u6aujgdbzacscldlxu4tl3ostncqzl6rcgeeqmksu2g3qap566sze","webSpace":"clitest.rg2v3uzoz6wvm4u6aujgdbzacscldlxu4tl3ostncqzl6rcgeeqmksu2g3qap566sze-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"webapp-win-logyutteqzi3p","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82472","name":"webapp-config-testv6bxv6o43d5m623iavwgds","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82472,"deletedTimestamp":"2019-11-11T08:57:35.6913062","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_jsonvpj3eq74utyxlwrtz6sgofjwxxv4jgqd6cipyre4v5uzyqksvnuwaoy","webSpace":"cli_test_webapp_jsonvpj3eq74utyxlwrtz6sgofjwxxv4jgqd6cipyre4v5uzyqksvnuwaoy-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"webapp-config-testv6bxv6o43d5m623iavwgds","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82473","name":"webapp-quick-cdsunrjk5fb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82473,"deletedTimestamp":"2019-11-11T08:57:37.4201988","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6hs35ijvacrbrjxh75f6gfbzkba355srlznhdtfowkv2zsg43r2vldrbnrudq3jcq","webSpace":"clitest.rg6hs35ijvacrbrjxh75f6gfbzkba355srlznhdtfowkv2zsg43r2vldrbnrudq3jcq-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webapp-quick-cdsunrjk5fb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82475","name":"web-del-testyjscwpggvs6y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82475,"deletedTimestamp":"2019-11-11T08:57:45.5114307","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4ksgtryfjsutojmahtbrz27463o5gvzckgyidbdaqdcw6u42n4p7fhjj34mk4a2qa","webSpace":"clitest.rg4ksgtryfjsutojmahtbrz27463o5gvzckgyidbdaqdcw6u42n4p7fhjj34mk4a2qa-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"web-del-testyjscwpggvs6y","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82476","name":"webapp-quicksrhtvm33o3t4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82476,"deletedTimestamp":"2019-11-11T08:58:04.0146870","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgznwxu6x3jsckc4mvdlfmgqg2caisebjkcm7433iaavekarfgnix5l7h66iio64lol","webSpace":"clitest.rgznwxu6x3jsckc4mvdlfmgqg2caisebjkcm7433iaavekarfgnix5l7h66iio64lol-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"webapp-quicksrhtvm33o3t4","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82477","name":"web-errorbrki4g4bpvaiyw7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82477,"deletedTimestamp":"2019-11-11T08:58:23.6834989","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtcnem3hkwa372kgohvy5os7sgpabjd6incxgk6ndzhtb3sq3tdff6r47oh3b7tfm6","webSpace":"clitest.rgtcnem3hkwa372kgohvy5os7sgpabjd6incxgk6ndzhtb3sq3tdff6r47oh3b7tfm6-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"web-errorbrki4g4bpvaiyw7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82479","name":"webapp-quickxad7mv2u4kg7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82479,"deletedTimestamp":"2019-11-11T09:00:04.6072806","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2inalz66mr5g4kdmsciobxtbmqv2kun6i2v3zdgz523csuqo3rpt2gzojv44pldke","webSpace":"clitest.rg2inalz66mr5g4kdmsciobxtbmqv2kun6i2v3zdgz523csuqo3rpt2gzojv44pldke-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webapp-quickxad7mv2u4kg7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82481","name":"slot-traffic-webu53jzjlu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82481,"deletedTimestamp":"2019-11-11T09:01:25.0980868","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnql3zfezjp6a5ts4p352cijcazo3vmj3mzvoc44ymcj5kqz4wd4k2mlw77cfrmao6","webSpace":"clitest.rgnql3zfezjp6a5ts4p352cijcazo3vmj3mzvoc44ymcj5kqz4wd4k2mlw77cfrmao6-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"slot-traffic-webu53jzjlu","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82482","name":"slot-traffic-webs5nl5yz5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82482,"deletedTimestamp":"2019-11-11T09:01:26.6279251","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgujzahyy444aa22ut4rtgvojtoaqzfqkfkmgleau5nkzjenebqmvmsxjgue3eob7vz","webSpace":"clitest.rgujzahyy444aa22ut4rtgvojtoaqzfqkfkmgleau5nkzjenebqmvmsxjgue3eob7vz-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"slot-traffic-webs5nl5yz5","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82483","name":"slot-traffic-webs5nl5yz5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82483,"deletedTimestamp":"2019-11-11T09:01:26.9095931","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgujzahyy444aa22ut4rtgvojtoaqzfqkfkmgleau5nkzjenebqmvmsxjgue3eob7vz","webSpace":"clitest.rgujzahyy444aa22ut4rtgvojtoaqzfqkfkmgleau5nkzjenebqmvmsxjgue3eob7vz-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"slot-traffic-webs5nl5yz5","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82484","name":"delete-me-webmppnumkrh7c","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82484,"deletedTimestamp":"2019-11-11T09:01:30.3151731","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg374lppzmjwvx4uojxgroazg5n7nkbr3yb2tqtuhsphjfyxvifutsv3rmp7s6ik7a","webSpace":"clitest.rgg374lppzmjwvx4uojxgroazg5n7nkbr3yb2tqtuhsphjfyxvifutsv3rmp7s6ik7a-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"delete-me-webmppnumkrh7c","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82485","name":"functionappwithreservedinstances4n2s6242","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82485,"deletedTimestamp":"2019-11-11T09:02:04.4187639","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwxesp2ymz72cg2e24syaxget6byo4dloq6wa3g4m2fovqdkksxntgizvgpnzfa6x3","webSpace":"clitest.rgwxesp2ymz72cg2e24syaxget6byo4dloq6wa3g4m2fovqdkksxntgizvgpnzfa6x3-WestUSwebspace","stamp":"waws-prod-bay-085","deletedSiteName":"functionappwithreservedinstances4n2s6242","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82486","name":"functionappconsumptionugec5f4vhjslxywzn2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82486,"deletedTimestamp":"2019-11-11T09:02:37.9032505","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-c-e2ejyz6pyhebowdv2shskbirnp5tteoawnmlncwnoqcitzbkolx7","webSpace":"azurecli-functionapp-c-e2ejyz6pyhebowdv2shskbirnp5tteoawnmlncwnoqcitzbkolx7-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionappconsumptionugec5f4vhjslxywzn2","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82488","name":"functionappconsumptionjnjost7qwz4gzpjpav","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82488,"deletedTimestamp":"2019-11-11T09:03:00.1369951","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-c-e2e-ragrs6e7xnz2ppznfgwfzlp7mcgkxarwpcfvaflncdwphrze","webSpace":"azurecli-functionapp-c-e2e-ragrs6e7xnz2ppznfgwfzlp7mcgkxarwpcfvaflncdwphrze-WestUSwebspace","stamp":"waws-prod-bay-037","deletedSiteName":"functionappconsumptionjnjost7qwz4gzpjpav","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82489","name":"func-e2erluk3dszjodkgmz5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82489,"deletedTimestamp":"2019-11-11T09:03:11.4101126","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtmx5rp4mkoe4nbetxw22pp5cidnhws5xlnjwgbxrrszheclscidf7v2dmn6l7vgqx","webSpace":"clitest.rgtmx5rp4mkoe4nbetxw22pp5cidnhws5xlnjwgbxrrszheclscidf7v2dmn6l7vgqx-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"func-e2erluk3dszjodkgmz5","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82490","name":"functionapplinuxconsumptionzd666pxb3fdby","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82490,"deletedTimestamp":"2019-11-11T09:03:17.2287420","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-linuxhz6y5rba3eqqdmtvxlxy47jqymv4jmbz4f6e5vzgmakug64ik","webSpace":"azurecli-functionapp-linuxhz6y5rba3eqqdmtvxlxy47jqymv4jmbz4f6e5vzgmakug64ik-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"functionapplinuxconsumptionzd666pxb3fdby","slot":"Production","kind":"functionapp,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82491","name":"slot-test-web7guu4nmzuvy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82491,"deletedTimestamp":"2019-11-11T09:03:18.1161043","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnlicznvkthsnyjpkv27p6zsiiqbtbulxxj5v5wb6mc4n2c6nerhv7zs6kzle2tzue","webSpace":"clitest.rgnlicznvkthsnyjpkv27p6zsiiqbtbulxxj5v5wb6mc4n2c6nerhv7zs6kzle2tzue-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"slot-test-web7guu4nmzuvy","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82492","name":"slot-test-web7guu4nmzuvy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82492,"deletedTimestamp":"2019-11-11T09:03:23.7238853","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnlicznvkthsnyjpkv27p6zsiiqbtbulxxj5v5wb6mc4n2c6nerhv7zs6kzle2tzue","webSpace":"clitest.rgnlicznvkthsnyjpkv27p6zsiiqbtbulxxj5v5wb6mc4n2c6nerhv7zs6kzle2tzue-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"slot-test-web7guu4nmzuvy","slot":"dev","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82493","name":"functionappwindowswithoutruntimeuuak7bbd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82493,"deletedTimestamp":"2019-11-11T09:03:31.9490372","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtehzwrpudh3doekqjycdaunruyejts4wt7dj22fw3mob2pvixsvujsgpfkpnxmjsh","webSpace":"clitest.rgtehzwrpudh3doekqjycdaunruyejts4wt7dj22fw3mob2pvixsvujsgpfkpnxmjsh-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"functionappwindowswithoutruntimeuuak7bbd","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82495","name":"functionappwindowsruntimervzufnspqw7qvp7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82495,"deletedTimestamp":"2019-11-11T09:03:40.3073521","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtv5a5dz25jecoh2d2q3kagkbf3uc3lt5dh627dr55uqvjp7dcjefysgavcfd4riel","webSpace":"clitest.rgtv5a5dz25jecoh2d2q3kagkbf3uc3lt5dh627dr55uqvjp7dcjefysgavcfd4riel-WestUSwebspace","stamp":"waws-prod-bay-031","deletedSiteName":"functionappwindowsruntimervzufnspqw7qvp7","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82496","name":"web-ssl-test4iqse2tx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82496,"deletedTimestamp":"2019-11-11T09:03:49.2351197","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgljragtoa6exlk5xak3vfd3lkckqhysefgu3grjstq52o4eiwp5zrnn36pziuyf4fr","webSpace":"clitest.rgljragtoa6exlk5xak3vfd3lkckqhysefgu3grjstq52o4eiwp5zrnn36pziuyf4fr-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"web-ssl-test4iqse2tx","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82497","name":"func-e2ezqsbvh7xmt62u7oc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82497,"deletedTimestamp":"2019-11-11T09:04:05.5128895","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtmx5rp4mkoe4nbetxw22pp5cidnhws5xlnjwgbxrrszheclscidf7v2dmn6l7vgqx","webSpace":"clitest.rgtmx5rp4mkoe4nbetxw22pp5cidnhws5xlnjwgbxrrszheclscidf7v2dmn6l7vgqx-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"func-e2ezqsbvh7xmt62u7oc","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82498","name":"slot-test-web7guu4nmzuvy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82498,"deletedTimestamp":"2019-11-11T09:04:07.7385888","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnlicznvkthsnyjpkv27p6zsiiqbtbulxxj5v5wb6mc4n2c6nerhv7zs6kzle2tzue","webSpace":"clitest.rgnlicznvkthsnyjpkv27p6zsiiqbtbulxxj5v5wb6mc4n2c6nerhv7zs6kzle2tzue-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"slot-test-web7guu4nmzuvy","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82499","name":"functionappwindowsruntimewf2qggyf7wir43y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82499,"deletedTimestamp":"2019-11-11T09:04:20.0749800","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghobkdvvdjsxwkfbn53zpgplbertb5bs6tfuodpyxmlosatlpirtmwmsbuiivfs5jx","webSpace":"clitest.rghobkdvvdjsxwkfbn53zpgplbertb5bs6tfuodpyxmlosatlpirtmwmsbuiivfs5jx-WestUSwebspace","stamp":"waws-prod-bay-035","deletedSiteName":"functionappwindowsruntimewf2qggyf7wir43y","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82500","name":"functionappwithappinsightso6zgp5jnc5wjr3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82500,"deletedTimestamp":"2019-11-11T09:04:56.4210369","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmxuqzuo32zb3fccabtb736ngcykyqkyolfz7iflsjvipthajue5oxq4jtrzembc2h","webSpace":"clitest.rgmxuqzuo32zb3fccabtb736ngcykyqkyolfz7iflsjvipthajue5oxq4jtrzembc2h-WestUSwebspace","stamp":"waws-prod-bay-079","deletedSiteName":"functionappwithappinsightso6zgp5jnc5wjr3","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82501","name":"functionappwithappinsightsv77asn3njolo6c","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82501,"deletedTimestamp":"2019-11-11T09:05:30.7484099","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglucbfi2vni5cg3z2xexroaklajhtxmdlpj6cz7yj6kuodul4yf7jyptykjwcksga7","webSpace":"clitest.rglucbfi2vni5cg3z2xexroaklajhtxmdlpj6cz7yj6kuodul4yf7jyptykjwcksga7-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"functionappwithappinsightsv77asn3njolo6c","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82502","name":"slot-traffic-webhol444es","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82502,"deletedTimestamp":"2019-11-11T09:05:38.9432478","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjr7jqjzdcqkpe5zzm5yyg4wfupbj4laetdbm6inh5q4d73fvndhinfgxjt66d7hez","webSpace":"clitest.rgjr7jqjzdcqkpe5zzm5yyg4wfupbj4laetdbm6inh5q4d73fvndhinfgxjt66d7hez-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-webhol444es","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82503","name":"slot-traffic-webhol444es","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82503,"deletedTimestamp":"2019-11-11T09:05:39.2245252","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjr7jqjzdcqkpe5zzm5yyg4wfupbj4laetdbm6inh5q4d73fvndhinfgxjt66d7hez","webSpace":"clitest.rgjr7jqjzdcqkpe5zzm5yyg4wfupbj4laetdbm6inh5q4d73fvndhinfgxjt66d7hez-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"slot-traffic-webhol444es","slot":"slot1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82504","name":"functionapp-linux2kgmpwe","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82504,"deletedTimestamp":"2019-11-11T09:05:58.7078691","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg22w7hxe2yukqg57jd4mfpzutb2x67pvvkazwbllshwufedxoqbxcrn7hx54gtjaip","webSpace":"clitest.rg22w7hxe2yukqg57jd4mfpzutb2x67pvvkazwbllshwufedxoqbxcrn7hx54gtjaip-WestUSwebspace","stamp":"waws-prod-bay-081","deletedSiteName":"functionapp-linux2kgmpwe","slot":"Production","kind":"functionapp,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82505","name":"webapp-create-alwaysOn-e2eafwcpcm6pg655fwjuf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82505,"deletedTimestamp":"2019-11-11T09:06:28.8455106","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_alwaysOnlgyzutab3g7iwl7apexizglkubmyj4bsyssdu6k5e6rizunvwfg","webSpace":"cli_test_webapp_alwaysOnlgyzutab3g7iwl7apexizglkubmyj4bsyssdu6k5e6rizunvwfg-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"webapp-create-alwaysOn-e2eafwcpcm6pg655fwjuf","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82506","name":"webapp-authentication-testy6r7ecw7mtm5ot","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82506,"deletedTimestamp":"2019-11-11T09:06:30.9353555","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_authenticationicikypklxqvut7oy42zdivaabryigipafojewkq5nqus5","webSpace":"cli_test_webapp_authenticationicikypklxqvut7oy42zdivaabryigipafojewkq5nqus5-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"webapp-authentication-testy6r7ecw7mtm5ot","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82507","name":"functionapp-slotwwyx7hq4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82507,"deletedTimestamp":"2019-11-11T09:06:38.4271364","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqgcgoiid6x7oaiomapmnfff4sauje5dcdsf2cofp54ngibx3hldvioqtl2haglyw4","webSpace":"clitest.rgqgcgoiid6x7oaiomapmnfff4sauje5dcdsf2cofp54ngibx3hldvioqtl2haglyw4-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"functionapp-slotwwyx7hq4","slot":"slotnameig7ogxhgs7jputgj","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82508","name":"functionapp-slotadtsyr2n","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82508,"deletedTimestamp":"2019-11-11T09:06:39.9019076","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkddr3vpdvpa4cguggc2q3qyavvuejkmfedwuvlgd67w6nx44wzlynzr3metxmypri","webSpace":"clitest.rgkddr3vpdvpa4cguggc2q3qyavvuejkmfedwuvlgd67w6nx44wzlynzr3metxmypri-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotadtsyr2n","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82509","name":"functionapp-slotadtsyr2n","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82509,"deletedTimestamp":"2019-11-11T09:06:40.1987442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkddr3vpdvpa4cguggc2q3qyavvuejkmfedwuvlgd67w6nx44wzlynzr3metxmypri","webSpace":"clitest.rgkddr3vpdvpa4cguggc2q3qyavvuejkmfedwuvlgd67w6nx44wzlynzr3metxmypri-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotadtsyr2n","slot":"slotnameuracjbvoksbaokhw","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82510","name":"functionapp-slotwwyx7hq4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82510,"deletedTimestamp":"2019-11-11T09:06:46.4356755","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqgcgoiid6x7oaiomapmnfff4sauje5dcdsf2cofp54ngibx3hldvioqtl2haglyw4","webSpace":"clitest.rgqgcgoiid6x7oaiomapmnfff4sauje5dcdsf2cofp54ngibx3hldvioqtl2haglyw4-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"functionapp-slotwwyx7hq4","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82511","name":"webapp-update-testhqd3r5rmbirqtvn2k4qic7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82511,"deletedTimestamp":"2019-11-11T09:06:56.7192111","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatezip4yd6k2iwotgsgoycb4aj3tahlxiajswkwrhix4oexrzygfpnvi","webSpace":"cli_test_webapp_updatezip4yd6k2iwotgsgoycb4aj3tahlxiajswkwrhix4oexrzygfpnvi-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-update-testhqd3r5rmbirqtvn2k4qic7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82512","name":"webapp-update-testhqd3r5rmbirqtvn2k4qic7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82512,"deletedTimestamp":"2019-11-11T09:06:57.0005217","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_updatezip4yd6k2iwotgsgoycb4aj3tahlxiajswkwrhix4oexrzygfpnvi","webSpace":"cli_test_webapp_updatezip4yd6k2iwotgsgoycb4aj3tahlxiajswkwrhix4oexrzygfpnvi-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-update-testhqd3r5rmbirqtvn2k4qic7","slot":"s1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82513","name":"web-msiyjguy5y4himob","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82513,"deletedTimestamp":"2019-11-11T09:07:51.9500818","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgohtwxqquyshe5if36zhgfz2hjxkxu3ce2fzyg4a5pgcfhzkjosjlkwpmnulmg45vn","webSpace":"clitest.rgohtwxqquyshe5if36zhgfz2hjxkxu3ce2fzyg4a5pgcfhzkjosjlkwpmnulmg45vn-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"web-msiyjguy5y4himob","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82514","name":"functionapp-slot7hhconuo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82514,"deletedTimestamp":"2019-11-11T09:07:58.2502127","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbrhv36iuafmdghz5pxyzp57ixx23mdcfdfctffkbw6awg7h5r65o7fuowzzdnf2jk","webSpace":"clitest.rgbrhv36iuafmdghz5pxyzp57ixx23mdcfdfctffkbw6awg7h5r65o7fuowzzdnf2jk-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"functionapp-slot7hhconuo","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82515","name":"functionapp-slot7hhconuo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82515,"deletedTimestamp":"2019-11-11T09:07:58.5939765","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbrhv36iuafmdghz5pxyzp57ixx23mdcfdfctffkbw6awg7h5r65o7fuowzzdnf2jk","webSpace":"clitest.rgbrhv36iuafmdghz5pxyzp57ixx23mdcfdfctffkbw6awg7h5r65o7fuowzzdnf2jk-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"functionapp-slot7hhconuo","slot":"slotnamehxkhz37ezomdah7c","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82523","name":"swiftwebappit5oavjqxm3dk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82523,"deletedTimestamp":"2019-11-11T09:08:30.0842882","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3ezb6mcsoak5y3ar2kesedhijemz5djidgnqa4pypd2jaeae6sq7vuy5cjbeiy2e7","webSpace":"clitest.rg3ezb6mcsoak5y3ar2kesedhijemz5djidgnqa4pypd2jaeae6sq7vuy5cjbeiy2e7-WestUSwebspace","stamp":"waws-prod-bay-119","deletedSiteName":"swiftwebappit5oavjqxm3dk","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/82531","name":"hcwebapp67hh6v5d57ppgszv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":82531,"deletedTimestamp":"2019-11-11T09:09:56.4969825","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg32qmqa55kzqejja4ntvgldys7aaadathn6pb6kj5hvotgqfw3efklmo4hktjft5sy","webSpace":"clitest.rg32qmqa55kzqejja4ntvgldys7aaadathn6pb6kj5hvotgqfw3efklmo4hktjft5sy-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"hcwebapp67hh6v5d57ppgszv","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/85064","name":"faremotebuildapptui27cby","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":85064,"deletedTimestamp":"2019-11-12T09:46:51.5186810","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rganixxkja62yk5jls2r64x7mxvnnmwfhwbfd6p4ysngwdqqptbbpqpzn2yvxlpp2k2","webSpace":"clitest.rganixxkja62yk5jls2r64x7mxvnnmwfhwbfd6p4ysngwdqqptbbpqpzn2yvxlpp2k2-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"faremotebuildapptui27cby","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/85075","name":"faremotebuildapp46tax4pg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":85075,"deletedTimestamp":"2019-11-12T09:52:00.5255831","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6k3ndzhztxahusvtvsdlixfqd3xycsylqbse4oiw3ivaxtmyflxwbhmjp2mjiw5s6","webSpace":"clitest.rg6k3ndzhztxahusvtvsdlixfqd3xycsylqbse4oiw3ivaxtmyflxwbhmjp2mjiw5s6-WestUSwebspace","stamp":"waws-prod-bay-081","deletedSiteName":"faremotebuildapp46tax4pg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/85086","name":"faremotebuildappkta6ocve","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":85086,"deletedTimestamp":"2019-11-12T09:59:55.5274335","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggxotyrmp2wbxc5p7onoaoselxkbwemj3ssw2paxnjfr73dc7ze6ydo7xseg5tn63i","webSpace":"clitest.rggxotyrmp2wbxc5p7onoaoselxkbwemj3ssw2paxnjfr73dc7ze6ydo7xseg5tn63i-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"faremotebuildappkta6ocve","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/85098","name":"faremotebuildappyofllud7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":85098,"deletedTimestamp":"2019-11-12T10:05:19.2374299","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg74hw5swepkszi6be774f7myovuzzjr5ms3ry7csueqvyrlchhgwp6sucirwxghk5e","webSpace":"clitest.rg74hw5swepkszi6be774f7myovuzzjr5ms3ry7csueqvyrlchhgwp6sucirwxghk5e-WestUSwebspace","stamp":"waws-prod-bay-139","deletedSiteName":"faremotebuildappyofllud7","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86488","name":"faremotebuildapppelst4ys","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86488,"deletedTimestamp":"2019-11-13T03:29:04.6614796","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3qipzt4cy262zv364zouucvydboez7vgubl5xuqhxkpmtgmyc6qmihfniadydl26q","webSpace":"clitest.rg3qipzt4cy262zv364zouucvydboez7vgubl5xuqhxkpmtgmyc6qmihfniadydl26q-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"faremotebuildapppelst4ys","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86490","name":"faremotebuildappbbeqwl2t","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86490,"deletedTimestamp":"2019-11-13T03:38:39.6505076","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmaw52hlp7so2scxytqk5lfxjkbgcvm3gbydqnilwd76c4ksjoaoqslns5n4ywn4um","webSpace":"clitest.rgmaw52hlp7so2scxytqk5lfxjkbgcvm3gbydqnilwd76c4ksjoaoqslns5n4ywn4um-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"faremotebuildappbbeqwl2t","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86980","name":"cli-funcapp-nwrpobqmziuq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86980,"deletedTimestamp":"2019-11-13T10:56:57.6869535","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgckimjrd5xm475nwy6dxk56amyk4cxpjy6gakos5zhjxndkp4nytuusrk3vhziu33q","webSpace":"clitest.rgckimjrd5xm475nwy6dxk56amyk4cxpjy6gakos5zhjxndkp4nytuusrk3vhziu33q-WestUSwebspace","stamp":"waws-prod-bay-121","deletedSiteName":"cli-funcapp-nwrpobqmziuq","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86981","name":"cli-funcapp-nwryurozjojh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86981,"deletedTimestamp":"2019-11-13T10:57:05.3702615","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh34kumv6fcpwa6h3xauve3vuhmtmooal6e7zzfgldoyasvz4jzoo6b7cyh6t6w6ix","webSpace":"clitest.rgh34kumv6fcpwa6h3xauve3vuhmtmooal6e7zzfgldoyasvz4jzoo6b7cyh6t6w6ix-WestUSwebspace","stamp":"waws-prod-bay-083","deletedSiteName":"cli-funcapp-nwryurozjojh","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86982","name":"cli-funcapp-nwrja3wa4t2m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86982,"deletedTimestamp":"2019-11-13T10:57:08.3239813","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgacva7pqub2j5gcirui3jzrbsgy4he3ho6apbjqm3lcaofff2vofetqlst4n4nwdgr","webSpace":"clitest.rgacva7pqub2j5gcirui3jzrbsgy4he3ho6apbjqm3lcaofff2vofetqlst4n4nwdgr-WestUSwebspace","stamp":"waws-prod-bay-115","deletedSiteName":"cli-funcapp-nwrja3wa4t2m","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86983","name":"cli-funcapp-nwrzljeai7st","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86983,"deletedTimestamp":"2019-11-13T10:57:09.2134667","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzbsnhzswcm65cv4klduhcexc2tkxdkweog5pe2oviwhh677efs2bwbpocg2f7lfha","webSpace":"clitest.rgzbsnhzswcm65cv4klduhcexc2tkxdkweog5pe2oviwhh677efs2bwbpocg2f7lfha-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"cli-funcapp-nwrzljeai7st","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86984","name":"cli-funcapp-nwr57yqq4ira","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86984,"deletedTimestamp":"2019-11-13T10:57:11.0733219","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgo4mwxbu6f2umy242nltcxvgez3nc22bddidzpz7khp4fyalsj5jvuqmpuxzozdc4q","webSpace":"clitest.rgo4mwxbu6f2umy242nltcxvgez3nc22bddidzpz7khp4fyalsj5jvuqmpuxzozdc4q-WestUSwebspace","stamp":"waws-prod-bay-117","deletedSiteName":"cli-funcapp-nwr57yqq4ira","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86987","name":"cli-funcapp-nwrywxnx3vsi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86987,"deletedTimestamp":"2019-11-13T10:57:18.9436715","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtynldokxcnhfwi374lad6qffhjnclbzbdkuf5k5baopbp7p6cczc47owj5p5bjdxd","webSpace":"clitest.rgtynldokxcnhfwi374lad6qffhjnclbzbdkuf5k5baopbp7p6cczc47owj5p5bjdxd-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"cli-funcapp-nwrywxnx3vsi","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86988","name":"cli-funcapp-nwrg64iqhph7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86988,"deletedTimestamp":"2019-11-13T10:57:19.0407158","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgw3jpoi5w4yp77y2jgkyycxb4mmkgjfp5t5dqzhhnw457strpqvgnwxbqjdxg6l6jv","webSpace":"clitest.rgw3jpoi5w4yp77y2jgkyycxb4mmkgjfp5t5dqzhhnw457strpqvgnwxbqjdxg6l6jv-WestUSwebspace","stamp":"waws-prod-bay-123","deletedSiteName":"cli-funcapp-nwrg64iqhph7","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86989","name":"cli-funcapp-nwr6kqy2ditm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86989,"deletedTimestamp":"2019-11-13T10:57:21.9756186","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrfccanvl5qylfusxthmr6toyfj62jygugvmlvf34blbuqggvvcqimwfyikxpqawfa","webSpace":"clitest.rgrfccanvl5qylfusxthmr6toyfj62jygugvmlvf34blbuqggvvcqimwfyikxpqawfa-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-funcapp-nwr6kqy2ditm","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86990","name":"cli-webapp-nwrb7ikru6q3x","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86990,"deletedTimestamp":"2019-11-13T10:57:47.4501618","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbzm2ee2tk4dcfpuhrktoiuqwxf3dlt6s7637np6c7mzwqcnqyd73oot5dmzrd5xvn","webSpace":"clitest.rgbzm2ee2tk4dcfpuhrktoiuqwxf3dlt6s7637np6c7mzwqcnqyd73oot5dmzrd5xvn-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrb7ikru6q3x","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86991","name":"cli-webapp-nwrzsc3ojjwpw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86991,"deletedTimestamp":"2019-11-13T10:57:49.9091899","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7ytuxl45vgk5rehbnw5eosqe54k7sx4rbk5g47gh6aom4nhqggl2ucniotnhe2xy2","webSpace":"clitest.rg7ytuxl45vgk5rehbnw5eosqe54k7sx4rbk5g47gh6aom4nhqggl2ucniotnhe2xy2-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"cli-webapp-nwrzsc3ojjwpw","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86992","name":"cli-webapp-nwryx4n3m7xu2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86992,"deletedTimestamp":"2019-11-13T10:57:50.5658742","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2y3qmgoncwr4tvaug5ttucegti7sytricotthzpmqesxga6xhlcrbw2x4u5pojq6b","webSpace":"clitest.rg2y3qmgoncwr4tvaug5ttucegti7sytricotthzpmqesxga6xhlcrbw2x4u5pojq6b-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"cli-webapp-nwryx4n3m7xu2","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86993","name":"cli-webapp-nwrnmfplnmbzw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86993,"deletedTimestamp":"2019-11-13T10:57:50.7288227","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdspsaxti5o3janqd2ogka5zpypcyqnesjilmqx6mwaxdce5zkd4k5u57drttb3txc","webSpace":"clitest.rgdspsaxti5o3janqd2ogka5zpypcyqnesjilmqx6mwaxdce5zkd4k5u57drttb3txc-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-webapp-nwrnmfplnmbzw","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86994","name":"cli-webapp-nwraccmxxbccm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86994,"deletedTimestamp":"2019-11-13T10:57:50.8623248","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrxwqzsgyczv7szerjeirkkpb5sn6hnpw5himc3ms3j4vo7cc2eltnsx2tspmb3nye","webSpace":"clitest.rgrxwqzsgyczv7szerjeirkkpb5sn6hnpw5himc3ms3j4vo7cc2eltnsx2tspmb3nye-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"cli-webapp-nwraccmxxbccm","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86995","name":"cli-webapp-nwrbrlftkmo3m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86995,"deletedTimestamp":"2019-11-13T10:58:00.6368391","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmhkrkykha5gk2jydag2se52gmirxt5tcdjqs7fk37sxb6rqjyadaienidp3m47sjy","webSpace":"clitest.rgmhkrkykha5gk2jydag2se52gmirxt5tcdjqs7fk37sxb6rqjyadaienidp3m47sjy-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-webapp-nwrbrlftkmo3m","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86996","name":"webapp-quick2sz7c3fqazsi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86996,"deletedTimestamp":"2019-11-13T10:58:30.8922547","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgggmkhovlnxl46chne77lippphkln2iuq6epm3xsaqo7lbvw3qjbwhgl4jilistwa6","webSpace":"clitest.rgggmkhovlnxl46chne77lippphkln2iuq6epm3xsaqo7lbvw3qjbwhgl4jilistwa6-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webapp-quick2sz7c3fqazsi","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86997","name":"web-del-testxo72kp5htwxd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86997,"deletedTimestamp":"2019-11-13T10:58:47.6017224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvz5imcoqq7xze6zycm4qpy5k6gopoe2bab2phmlbyjmfqllhjmgpmqymaf7vgjdrs","webSpace":"clitest.rgvz5imcoqq7xze6zycm4qpy5k6gopoe2bab2phmlbyjmfqllhjmgpmqymaf7vgjdrs-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"web-del-testxo72kp5htwxd","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86998","name":"webInOtherRG","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86998,"deletedTimestamp":"2019-11-13T10:58:48.5704598","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghk5nnxvxkfblf2jlfpgzsiy536cmkpl7hawrpacpbblgcugw5g53i3clqlfjy7dm7","webSpace":"clitest.rghk5nnxvxkfblf2jlfpgzsiy536cmkpl7hawrpacpbblgcugw5g53i3clqlfjy7dm7-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"webInOtherRG","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/86999","name":"cli-webapp-nwrvu2m2r365y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":86999,"deletedTimestamp":"2019-11-13T10:58:57.2449450","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglcn4wqohkahfo7dav7zu3wq3al3v45hnsh2p6if2swr3oee5hwpeq72cxnmqgfmkn","webSpace":"clitest.rglcn4wqohkahfo7dav7zu3wq3al3v45hnsh2p6if2swr3oee5hwpeq72cxnmqgfmkn-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"cli-webapp-nwrvu2m2r365y","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87000","name":"cli-webapp-nwrvu2m2r365y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87000,"deletedTimestamp":"2019-11-13T10:58:57.5308765","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglcn4wqohkahfo7dav7zu3wq3al3v45hnsh2p6if2swr3oee5hwpeq72cxnmqgfmkn","webSpace":"clitest.rglcn4wqohkahfo7dav7zu3wq3al3v45hnsh2p6if2swr3oee5hwpeq72cxnmqgfmkn-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"cli-webapp-nwrvu2m2r365y","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87001","name":"cli-funcapp-nwrvaporbamc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87001,"deletedTimestamp":"2019-11-13T10:59:23.5364393","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr52sndlm5uoy5ywg2w2hfsguhtxugtmosuf4lrciehoa7acbonipe7bspx45kvjk5","webSpace":"clitest.rgr52sndlm5uoy5ywg2w2hfsguhtxugtmosuf4lrciehoa7acbonipe7bspx45kvjk5-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-funcapp-nwrvaporbamc","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87002","name":"cli-funcapp-nwrvaporbamc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87002,"deletedTimestamp":"2019-11-13T10:59:23.8492884","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr52sndlm5uoy5ywg2w2hfsguhtxugtmosuf4lrciehoa7acbonipe7bspx45kvjk5","webSpace":"clitest.rgr52sndlm5uoy5ywg2w2hfsguhtxugtmosuf4lrciehoa7acbonipe7bspx45kvjk5-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-funcapp-nwrvaporbamc","slot":"stage","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87003","name":"webapp-linux-multiyi4qaj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87003,"deletedTimestamp":"2019-11-13T10:59:35.9729808","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgf3l6swhu2awyolshkjpvnirdckxwgqf5fdyqv5xqemowvuxbamqebgudyjs5fbaz2","webSpace":"clitest.rgf3l6swhu2awyolshkjpvnirdckxwgqf5fdyqv5xqemowvuxbamqebgudyjs5fbaz2-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"webapp-linux-multiyi4qaj","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87004","name":"web3w5pldjegw2zco3otjx65","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87004,"deletedTimestamp":"2019-11-13T10:59:57.9194793","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggm2lsairzwyterwkus6mgxdybtyqpeqsdptixff35txh65qfy7klrqubxig2gxson","webSpace":"clitest.rggm2lsairzwyterwkus6mgxdybtyqpeqsdptixff35txh65qfy7klrqubxig2gxson-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"web3w5pldjegw2zco3otjx65","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87005","name":"cli-webapp-nwrnrzzkm2gks","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87005,"deletedTimestamp":"2019-11-13T11:00:07.3789442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfp3n6tfpvxt6zcanhymazot4zxbvz46est6dtnrbwhy6qqn2vcct5xrk7yywx2hbq","webSpace":"clitest.rgfp3n6tfpvxt6zcanhymazot4zxbvz46est6dtnrbwhy6qqn2vcct5xrk7yywx2hbq-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"cli-webapp-nwrnrzzkm2gks","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87006","name":"webapp-config-test2rwvrubzf66dccohy4xwqx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87006,"deletedTimestamp":"2019-11-13T11:00:20.9455457","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_confige4xjkcj4sady5sxqp6ionvjhmrmjz3elbq7lfaen4gsorhxah7fh4","webSpace":"cli_test_webapp_confige4xjkcj4sady5sxqp6ionvjhmrmjz3elbq7lfaen4gsorhxah7fh4-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-config-test2rwvrubzf66dccohy4xwqx","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87007","name":"webapp-quick-cdoz365ig6k","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87007,"deletedTimestamp":"2019-11-13T11:00:41.5778800","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnevifahu3fpwca6nroeayhkxbhdpyzhpte3ap3xhumj3wmitu644mvgdzvcitlais","webSpace":"clitest.rgnevifahu3fpwca6nroeayhkxbhdpyzhpte3ap3xhumj3wmitu644mvgdzvcitlais-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webapp-quick-cdoz365ig6k","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87009","name":"web-erroru5v4q54k7b444ol","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87009,"deletedTimestamp":"2019-11-13T11:01:23.4325156","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpnt7cslzuazk4rtvrpalsteoo2pchnmwsh77dt2uiuqwct62i3loryp5gdn6te2m3","webSpace":"clitest.rgpnt7cslzuazk4rtvrpalsteoo2pchnmwsh77dt2uiuqwct62i3loryp5gdn6te2m3-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"web-erroru5v4q54k7b444ol","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87010","name":"webapp-config-testtpt2udvxfh5qv3ycyag3ch","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87010,"deletedTimestamp":"2019-11-13T11:01:39.5754072","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_jsonrfxwtxafoftecnc7s4yfrl7nth5tg7mkr5r745euflkz55chbzrpek5","webSpace":"cli_test_webapp_jsonrfxwtxafoftecnc7s4yfrl7nth5tg7mkr5r745euflkz55chbzrpek5-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"webapp-config-testtpt2udvxfh5qv3ycyag3ch","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87011","name":"functionappwithreservedinstanceqzdi52bfh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87011,"deletedTimestamp":"2019-11-13T11:01:47.9139713","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdau4q63vpglyjvc6x66w4atbnsydwrikslne2hvw2or3mqzayp3iujuf43ytwneha","webSpace":"clitest.rgdau4q63vpglyjvc6x66w4atbnsydwrikslne2hvw2or3mqzayp3iujuf43ytwneha-WestUSwebspace","stamp":"waws-prod-bay-023","deletedSiteName":"functionappwithreservedinstanceqzdi52bfh","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87012","name":"webapp-quick7zxj2xm2eunu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87012,"deletedTimestamp":"2019-11-13T11:01:49.6851627","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnvzjuw3ptbbtplfqdu6ckipgb6u2pvhvuvgzijwtsj3z3dy76jkijlglm4emwuig6","webSpace":"clitest.rgnvzjuw3ptbbtplfqdu6ckipgb6u2pvhvuvgzijwtsj3z3dy76jkijlglm4emwuig6-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-quick7zxj2xm2eunu","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87014","name":"web-git-test25pbktj4r5ww","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87014,"deletedTimestamp":"2019-11-13T11:02:22.5300312","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5jijmghffzdy7o35pmr2ehl62bd3ghnu6zywgkqgpp7mfaaezhhpgvaj5usbtezlk","webSpace":"clitest.rg5jijmghffzdy7o35pmr2ehl62bd3ghnu6zywgkqgpp7mfaaezhhpgvaj5usbtezlk-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"web-git-test25pbktj4r5ww","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87015","name":"slot-traffic-webstzkpic6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87015,"deletedTimestamp":"2019-11-13T11:02:56.7707199","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgu2gcksd2tirmdhaykbxjihbuquxwspmgfwtpha5a72uhbzkfytaqopyd5ejkyhmvb","webSpace":"clitest.rgu2gcksd2tirmdhaykbxjihbuquxwspmgfwtpha5a72uhbzkfytaqopyd5ejkyhmvb-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"slot-traffic-webstzkpic6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87016","name":"slot-traffic-webstzkpic6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87016,"deletedTimestamp":"2019-11-13T11:02:57.0988140","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgu2gcksd2tirmdhaykbxjihbuquxwspmgfwtpha5a72uhbzkfytaqopyd5ejkyhmvb","webSpace":"clitest.rgu2gcksd2tirmdhaykbxjihbuquxwspmgfwtpha5a72uhbzkfytaqopyd5ejkyhmvb-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"slot-traffic-webstzkpic6","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87026","name":"slot-traffic-webu52dpxyh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87026,"deletedTimestamp":"2019-11-13T11:03:58.8366013","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgf4dgh7yykm63t4vgyxwrmcy64apzhmjaqtjwax5pbj7rexjq54wowswbqxhrqkhtz","webSpace":"clitest.rgf4dgh7yykm63t4vgyxwrmcy64apzhmjaqtjwax5pbj7rexjq54wowswbqxhrqkhtz-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"slot-traffic-webu52dpxyh","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87027","name":"slot-traffic-webu52dpxyh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87027,"deletedTimestamp":"2019-11-13T11:03:59.1183721","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgf4dgh7yykm63t4vgyxwrmcy64apzhmjaqtjwax5pbj7rexjq54wowswbqxhrqkhtz","webSpace":"clitest.rgf4dgh7yykm63t4vgyxwrmcy64apzhmjaqtjwax5pbj7rexjq54wowswbqxhrqkhtz-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"slot-traffic-webu52dpxyh","slot":"slot1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87030","name":"slot-traffic-webp5k3udru","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87030,"deletedTimestamp":"2019-11-13T11:04:11.1684219","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgijxhy7ej4w32hcsvu7ppjkwjeu45atpwthxdiyf5dfiylyhjmi23x44lzagcnu2t7","webSpace":"clitest.rgijxhy7ej4w32hcsvu7ppjkwjeu45atpwthxdiyf5dfiylyhjmi23x44lzagcnu2t7-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"slot-traffic-webp5k3udru","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87031","name":"webapp-win-logvvi7ie7yoe","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87031,"deletedTimestamp":"2019-11-13T11:04:13.6913380","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz6djyu5zf3iu5h2u6ojnanuftjffavpm4p7c4mu5pljyayfbzjjzrulvq3ytughq2","webSpace":"clitest.rgz6djyu5zf3iu5h2u6ojnanuftjffavpm4p7c4mu5pljyayfbzjjzrulvq3ytughq2-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"webapp-win-logvvi7ie7yoe","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87034","name":"web-ssl-test2qaboheh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87034,"deletedTimestamp":"2019-11-13T11:04:41.0853831","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgj5phpde55ebredvlsrwbuiq5dhwq3uto2okbjzyuwblaxnch5qne7snfbb74x2vgf","webSpace":"clitest.rgj5phpde55ebredvlsrwbuiq5dhwq3uto2okbjzyuwblaxnch5qne7snfbb74x2vgf-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"web-ssl-test2qaboheh","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87037","name":"functionappconsumptionznan5detn54ek3itay","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87037,"deletedTimestamp":"2019-11-13T11:05:33.7216396","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-c-e2erznbsphot45bsdtdxrzeclkxergj42orlrmimh3mm6eodprvb","webSpace":"azurecli-functionapp-c-e2erznbsphot45bsdtdxrzeclkxergj42orlrmimh3mm6eodprvb-WestUSwebspace","stamp":"waws-prod-bay-095","deletedSiteName":"functionappconsumptionznan5detn54ek3itay","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87038","name":"delete-me-webvnfmjinlr6o","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87038,"deletedTimestamp":"2019-11-13T11:05:34.1776075","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgszmqcgmwoflk7hcy5crwhjmrizbbaxrvyjuiovp7nceaaa6y5x3egemwu7ikjyvt6","webSpace":"clitest.rgszmqcgmwoflk7hcy5crwhjmrizbbaxrvyjuiovp7nceaaa6y5x3egemwu7ikjyvt6-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"delete-me-webvnfmjinlr6o","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87040","name":"func-e2e32mtb2nnxdl2z6or","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87040,"deletedTimestamp":"2019-11-13T11:05:57.3752360","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtnpiale46shghwqayezrfuzm5urbys3msda75mi75gwgec43sghx2qq33t2hgscen","webSpace":"clitest.rgtnpiale46shghwqayezrfuzm5urbys3msda75mi75gwgec43sghx2qq33t2hgscen-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"func-e2e32mtb2nnxdl2z6or","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87041","name":"functionappwindowswithoutruntimea3266qro","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87041,"deletedTimestamp":"2019-11-13T11:06:20.1226557","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwmnatw3itzeiefajbi4eg74shoe7tmoq5n7qzxr3znn5rc6cddify4ml2xoa4g74m","webSpace":"clitest.rgwmnatw3itzeiefajbi4eg74shoe7tmoq5n7qzxr3znn5rc6cddify4ml2xoa4g74m-WestUSwebspace","stamp":"waws-prod-bay-019","deletedSiteName":"functionappwindowswithoutruntimea3266qro","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87042","name":"slot-swap-web5p7zshii2fn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87042,"deletedTimestamp":"2019-11-13T11:06:30.1399441","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7kwx7biv22t74wbqvnmzo53tmbnvzdg7bqlabwekmgjyhlu6dannhscytechnttys","webSpace":"clitest.rg7kwx7biv22t74wbqvnmzo53tmbnvzdg7bqlabwekmgjyhlu6dannhscytechnttys-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"slot-swap-web5p7zshii2fn","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87043","name":"slot-swap-web5p7zshii2fn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87043,"deletedTimestamp":"2019-11-13T11:06:30.4215725","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7kwx7biv22t74wbqvnmzo53tmbnvzdg7bqlabwekmgjyhlu6dannhscytechnttys","webSpace":"clitest.rg7kwx7biv22t74wbqvnmzo53tmbnvzdg7bqlabwekmgjyhlu6dannhscytechnttys-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"slot-swap-web5p7zshii2fn","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87044","name":"func-e2ebyvtyahaufzcgj7i","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87044,"deletedTimestamp":"2019-11-13T11:06:43.3903129","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtnpiale46shghwqayezrfuzm5urbys3msda75mi75gwgec43sghx2qq33t2hgscen","webSpace":"clitest.rgtnpiale46shghwqayezrfuzm5urbys3msda75mi75gwgec43sghx2qq33t2hgscen-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"func-e2ebyvtyahaufzcgj7i","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87045","name":"functionappwithappinsightsr537owwkb47bzq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87045,"deletedTimestamp":"2019-11-13T11:06:54.4365401","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtug57advlxby3n2632dnlemaete6zeffqdz2r7uvm26jeasb54bxszofvbvzodd47","webSpace":"clitest.rgtug57advlxby3n2632dnlemaete6zeffqdz2r7uvm26jeasb54bxszofvbvzodd47-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"functionappwithappinsightsr537owwkb47bzq","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87046","name":"functionapplinuxconsumptionfrxcq6j7r2rxq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87046,"deletedTimestamp":"2019-11-13T11:07:13.4008851","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-linuxourqba3clkzakiz2mzmlbuvsqasc6urzydrjz5idxnqmaot3i","webSpace":"azurecli-functionapp-linuxourqba3clkzakiz2mzmlbuvsqasc6urzydrjz5idxnqmaot3i-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"functionapplinuxconsumptionfrxcq6j7r2rxq","slot":"Production","kind":"functionapp,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87048","name":"slot-test-weby3igfowmhkw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87048,"deletedTimestamp":"2019-11-13T11:07:32.2757553","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjp73rp7szenxjvt6iphjqo2f62su4trrqfppjvc4qf6m3dhtn74a6icoyr43jgbz5","webSpace":"clitest.rgjp73rp7szenxjvt6iphjqo2f62su4trrqfppjvc4qf6m3dhtn74a6icoyr43jgbz5-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"slot-test-weby3igfowmhkw","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87049","name":"slot-test-weby3igfowmhkw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87049,"deletedTimestamp":"2019-11-13T11:07:38.3764540","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjp73rp7szenxjvt6iphjqo2f62su4trrqfppjvc4qf6m3dhtn74a6icoyr43jgbz5","webSpace":"clitest.rgjp73rp7szenxjvt6iphjqo2f62su4trrqfppjvc4qf6m3dhtn74a6icoyr43jgbz5-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"slot-test-weby3igfowmhkw","slot":"dev","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87050","name":"functionappconsumptionlcoyguzjgbqj2gi233","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87050,"deletedTimestamp":"2019-11-13T11:08:06.2636649","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-c-e2e-ragrsa36uxiix7dc3yg3snh7ainyxqwzsjjr45leh34ol4sr","webSpace":"azurecli-functionapp-c-e2e-ragrsa36uxiix7dc3yg3snh7ainyxqwzsjjr45leh34ol4sr-WestUSwebspace","stamp":"waws-prod-bay-127","deletedSiteName":"functionappconsumptionlcoyguzjgbqj2gi233","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87051","name":"functionappwithappinsightscr4oozbf4db7bx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87051,"deletedTimestamp":"2019-11-13T11:08:10.6311937","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfdlibu5vqnqxwtv7fux6anniaotkkyvqczwf34mjtly2zfu6b5h23qb2hj5ifmsel","webSpace":"clitest.rgfdlibu5vqnqxwtv7fux6anniaotkkyvqczwf34mjtly2zfu6b5h23qb2hj5ifmsel-WestUSwebspace","stamp":"waws-prod-bay-111","deletedSiteName":"functionappwithappinsightscr4oozbf4db7bx","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87052","name":"slot-test-weby3igfowmhkw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87052,"deletedTimestamp":"2019-11-13T11:08:14.9163354","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjp73rp7szenxjvt6iphjqo2f62su4trrqfppjvc4qf6m3dhtn74a6icoyr43jgbz5","webSpace":"clitest.rgjp73rp7szenxjvt6iphjqo2f62su4trrqfppjvc4qf6m3dhtn74a6icoyr43jgbz5-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"slot-test-weby3igfowmhkw","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87053","name":"functionappwindowsruntime5xzqh6qs5r4ll55","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87053,"deletedTimestamp":"2019-11-13T11:08:32.4925011","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmjuwk2fyp5nj4eu7ngzmlwycbhwwxltn343vcj5gl2n2mhbredpimvg7mwqsgenx7","webSpace":"clitest.rgmjuwk2fyp5nj4eu7ngzmlwycbhwwxltn343vcj5gl2n2mhbredpimvg7mwqsgenx7-WestUSwebspace","stamp":"waws-prod-bay-011","deletedSiteName":"functionappwindowsruntime5xzqh6qs5r4ll55","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87055","name":"functionapp-slotweizy5yb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87055,"deletedTimestamp":"2019-11-13T11:09:14.6664491","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbcc6hrndr54qswnpopq3uzmqqfhqaqkgtibvpfvljvq7yyubwdpzp7cledo3gzh2r","webSpace":"clitest.rgbcc6hrndr54qswnpopq3uzmqqfhqaqkgtibvpfvljvq7yyubwdpzp7cledo3gzh2r-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotweizy5yb","slot":"slotname47ho4ca7f7gfq5i3","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87056","name":"functionappwindowsruntimelff3pvcesmlowx4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87056,"deletedTimestamp":"2019-11-13T11:09:15.0045740","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjwb4tpngk5wri5swvalrsq3plynxxmyl7pqx5ejutth3nxk7zh5lfluygw2jyml3s","webSpace":"clitest.rgjwb4tpngk5wri5swvalrsq3plynxxmyl7pqx5ejutth3nxk7zh5lfluygw2jyml3s-WestUSwebspace","stamp":"waws-prod-bay-103","deletedSiteName":"functionappwindowsruntimelff3pvcesmlowx4","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87057","name":"functionapp-slotweizy5yb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87057,"deletedTimestamp":"2019-11-13T11:09:19.8383944","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbcc6hrndr54qswnpopq3uzmqqfhqaqkgtibvpfvljvq7yyubwdpzp7cledo3gzh2r","webSpace":"clitest.rgbcc6hrndr54qswnpopq3uzmqqfhqaqkgtibvpfvljvq7yyubwdpzp7cledo3gzh2r-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"functionapp-slotweizy5yb","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87058","name":"functionapp-sloteekazfet","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87058,"deletedTimestamp":"2019-11-13T11:09:22.9947787","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk534rvrs25qqlmq3mvyy6zydz7i3wrjbzhxxim7ro3mau2y6vv4gcykiyxrzgjnem","webSpace":"clitest.rgk534rvrs25qqlmq3mvyy6zydz7i3wrjbzhxxim7ro3mau2y6vv4gcykiyxrzgjnem-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"functionapp-sloteekazfet","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87059","name":"functionapp-sloteekazfet","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87059,"deletedTimestamp":"2019-11-13T11:09:23.2916502","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk534rvrs25qqlmq3mvyy6zydz7i3wrjbzhxxim7ro3mau2y6vv4gcykiyxrzgjnem","webSpace":"clitest.rgk534rvrs25qqlmq3mvyy6zydz7i3wrjbzhxxim7ro3mau2y6vv4gcykiyxrzgjnem-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"functionapp-sloteekazfet","slot":"slotnameja6kt7of4hggxdzd","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87060","name":"webapp-authentication-testqnzl6ovcjrlwq7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87060,"deletedTimestamp":"2019-11-13T11:09:27.1370976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_authentication5s5ic7gtpi57fjtmxtlzlq5akgreojwjwzcnqvntc6gp6","webSpace":"cli_test_webapp_authentication5s5ic7gtpi57fjtmxtlzlq5akgreojwjwzcnqvntc6gp6-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-authentication-testqnzl6ovcjrlwq7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87061","name":"functionapp-linux2mb62p6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87061,"deletedTimestamp":"2019-11-13T11:09:32.3740370","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgajlcmip6t47prm6esurkqwf7q2oigsfaydidk2a2m4yrjt7fjg3c43sh272w3m5rx","webSpace":"clitest.rgajlcmip6t47prm6esurkqwf7q2oigsfaydidk2a2m4yrjt7fjg3c43sh272w3m5rx-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"functionapp-linux2mb62p6","slot":"Production","kind":"functionapp,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87063","name":"webapp-create-alwaysOn-e2eexyjhg5b7tg7b72zug","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87063,"deletedTimestamp":"2019-11-13T11:10:14.7535466","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_alwaysOnwnh3w5p6w7s3vcseew2xxxbigmwq26twsjrthu5uhr7weic2qhg","webSpace":"cli_test_webapp_alwaysOnwnh3w5p6w7s3vcseew2xxxbigmwq26twsjrthu5uhr7weic2qhg-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webapp-create-alwaysOn-e2eexyjhg5b7tg7b72zug","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87067","name":"webapp-update-testxj5gbwjow25cqc33ev2c2i","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87067,"deletedTimestamp":"2019-11-13T11:11:03.0207637","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_update7ugahjzyt6p7tr7bxsv4a6jyt7b7pjhwzfojoxkvdtv3yiwin4m4d","webSpace":"cli_test_webapp_update7ugahjzyt6p7tr7bxsv4a6jyt7b7pjhwzfojoxkvdtv3yiwin4m4d-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"webapp-update-testxj5gbwjow25cqc33ev2c2i","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87068","name":"webapp-update-testxj5gbwjow25cqc33ev2c2i","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87068,"deletedTimestamp":"2019-11-13T11:11:03.3957915","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_update7ugahjzyt6p7tr7bxsv4a6jyt7b7pjhwzfojoxkvdtv3yiwin4m4d","webSpace":"cli_test_webapp_update7ugahjzyt6p7tr7bxsv4a6jyt7b7pjhwzfojoxkvdtv3yiwin4m4d-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"webapp-update-testxj5gbwjow25cqc33ev2c2i","slot":"s1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87069","name":"webapp-zipDeploy-testyigcfhryjnaquhrqcbf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87069,"deletedTimestamp":"2019-11-13T11:11:08.8278063","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_zipDeploy3n2phfcfan3km3wqtz2kqoy7er4b7tuyvx4kh23d76xfra663a","webSpace":"cli_test_webapp_zipDeploy3n2phfcfan3km3wqtz2kqoy7er4b7tuyvx4kh23d76xfra663a-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-zipDeploy-testyigcfhryjnaquhrqcbf","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87070","name":"swiftwebappr7nmagjisxgz6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87070,"deletedTimestamp":"2019-11-13T11:11:11.9577279","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2rctcttog53tutg2d7dkbz27ffi26x7shkrxdt6yzgk43qrmv6rv5ep5zpg4b2ki3","webSpace":"clitest.rg2rctcttog53tutg2d7dkbz27ffi26x7shkrxdt6yzgk43qrmv6rv5ep5zpg4b2ki3-WestUSwebspace","stamp":"waws-prod-bay-089","deletedSiteName":"swiftwebappr7nmagjisxgz6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87072","name":"functionapp-slotskxrd2ng","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87072,"deletedTimestamp":"2019-11-13T11:11:34.9865060","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwlblnt3tfjvfle5oygrualbbe3tvhrgtn6vja3c3g2rhxcehcf36vdzye4b6uxdhl","webSpace":"clitest.rgwlblnt3tfjvfle5oygrualbbe3tvhrgtn6vja3c3g2rhxcehcf36vdzye4b6uxdhl-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"functionapp-slotskxrd2ng","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87073","name":"functionapp-slotskxrd2ng","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87073,"deletedTimestamp":"2019-11-13T11:11:35.4098815","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwlblnt3tfjvfle5oygrualbbe3tvhrgtn6vja3c3g2rhxcehcf36vdzye4b6uxdhl","webSpace":"clitest.rgwlblnt3tfjvfle5oygrualbbe3tvhrgtn6vja3c3g2rhxcehcf36vdzye4b6uxdhl-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"functionapp-slotskxrd2ng","slot":"slotnamez37bp62yw2xr7xim","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87074","name":"web-msielnxgr36cqxbe","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87074,"deletedTimestamp":"2019-11-13T11:11:44.5599586","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvigwjfhjm62h4rsepmpwceifksukaukvk4lt3ex4tb55z2xqmdhnxxhh5g5w4l6fh","webSpace":"clitest.rgvigwjfhjm62h4rsepmpwceifksukaukvk4lt3ex4tb55z2xqmdhnxxhh5g5w4l6fh-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"web-msielnxgr36cqxbe","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87095","name":"hcwebappm54yntnvbwkgb6v7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87095,"deletedTimestamp":"2019-11-13T11:22:58.7710331","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg354uxzv2xyons3ggni5gpwkfa3qzpxssqe4zmhelmbbtw552wc3fzes5tsrchd5en","webSpace":"clitest.rg354uxzv2xyons3ggni5gpwkfa3qzpxssqe4zmhelmbbtw552wc3fzes5tsrchd5en-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"hcwebappm54yntnvbwkgb6v7","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87101","name":"cli-webapp-nwr3r6cb3xqnv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87101,"deletedTimestamp":"2019-11-13T11:24:41.9800093","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgssflsuuqirkc3dlsaer5n34vhxptuilsrdts7eqbe6isf5jjzldiozcxlnhjefky4","webSpace":"clitest.rgssflsuuqirkc3dlsaer5n34vhxptuilsrdts7eqbe6isf5jjzldiozcxlnhjefky4-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"cli-webapp-nwr3r6cb3xqnv","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87103","name":"cli-funcapp-nwrhxzkmm37v","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87103,"deletedTimestamp":"2019-11-13T11:25:24.2736631","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2ylspsjy44vzyjltyef6nsgrrtsxtzzh7ekrwh2dadj26yc4gxfhqhbtobc4mhese","webSpace":"clitest.rg2ylspsjy44vzyjltyef6nsgrrtsxtzzh7ekrwh2dadj26yc4gxfhqhbtobc4mhese-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"cli-funcapp-nwrhxzkmm37v","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87104","name":"cli-funcapp-nwrnyhjzyjxj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87104,"deletedTimestamp":"2019-11-13T11:25:29.9385516","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7gt222r2a4y2ckmcnwng2hbqx6krz2gb675zkzvdyzag7kin7j6hr6ihgjbherxov","webSpace":"clitest.rg7gt222r2a4y2ckmcnwng2hbqx6krz2gb675zkzvdyzag7kin7j6hr6ihgjbherxov-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-funcapp-nwrnyhjzyjxj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87105","name":"cli-funcapp-nwrgx7ldwlfp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87105,"deletedTimestamp":"2019-11-13T11:25:41.4668378","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqkzqfaqbcg5hlauxmpyjuh7dtzth2wnvsbdafd5bddcihoiotl46ejyrnvwyga5ul","webSpace":"clitest.rgqkzqfaqbcg5hlauxmpyjuh7dtzth2wnvsbdafd5bddcihoiotl46ejyrnvwyga5ul-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-funcapp-nwrgx7ldwlfp","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87106","name":"cli-funcapp-nwr64hktm7an","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87106,"deletedTimestamp":"2019-11-13T11:25:48.1207008","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnzauzpa7jpl6qz4vema6yflpyz6ebhic42al4g4u6nvujy4iyko2js45kntqvcigg","webSpace":"clitest.rgnzauzpa7jpl6qz4vema6yflpyz6ebhic42al4g4u6nvujy4iyko2js45kntqvcigg-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-funcapp-nwr64hktm7an","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87107","name":"cli-funcapp-nwr4bz64rzv2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87107,"deletedTimestamp":"2019-11-13T11:25:48.4808377","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgi445swta7p4brn6qi7fjqdc5mgsbpwjkgnc4emmkasvojkcqvjfwnbzkbnejo6hro","webSpace":"clitest.rgi445swta7p4brn6qi7fjqdc5mgsbpwjkgnc4emmkasvojkcqvjfwnbzkbnejo6hro-WestUSwebspace","stamp":"waws-prod-bay-089","deletedSiteName":"cli-funcapp-nwr4bz64rzv2","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87109","name":"cli-funcapp-nwroed7eju63","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87109,"deletedTimestamp":"2019-11-13T11:25:53.6673544","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjyxg6s7s6lh5gilbxs2zzikkmwb6nn2u52abdjjtuyjf2qcyw7qxvzw3d6ncpmua4","webSpace":"clitest.rgjyxg6s7s6lh5gilbxs2zzikkmwb6nn2u52abdjjtuyjf2qcyw7qxvzw3d6ncpmua4-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-funcapp-nwroed7eju63","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87111","name":"cli-webapp-nwrjqtngkpiif","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87111,"deletedTimestamp":"2019-11-13T11:26:04.6716981","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgphtojj36z5opaui6pi7rffmzgbio5y55ofa652f2iepjouobseguplcevgjeacf4p","webSpace":"clitest.rgphtojj36z5opaui6pi7rffmzgbio5y55ofa652f2iepjouobseguplcevgjeacf4p-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-webapp-nwrjqtngkpiif","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87112","name":"cli-webapp-nwrlq6xjcn77x","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87112,"deletedTimestamp":"2019-11-13T11:26:20.0372956","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdlyzfvjoc54i4zpjsku6zyzgrer2rertcrxc35ujpioitkmz7tergkxlzs3gsya5w","webSpace":"clitest.rgdlyzfvjoc54i4zpjsku6zyzgrer2rertcrxc35ujpioitkmz7tergkxlzs3gsya5w-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-webapp-nwrlq6xjcn77x","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87113","name":"cli-funcapp-nwrzvfkkft6n","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87113,"deletedTimestamp":"2019-11-13T11:26:26.1392662","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4caagm5v4a44zy7os7eaebtrrt6qnfeekucxd4flx5qbtexqgbdlaag6rqzyauv33","webSpace":"clitest.rg4caagm5v4a44zy7os7eaebtrrt6qnfeekucxd4flx5qbtexqgbdlaag6rqzyauv33-WestUSwebspace","stamp":"waws-prod-bay-115","deletedSiteName":"cli-funcapp-nwrzvfkkft6n","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87114","name":"cli-webapp-nwrhx7a4zria3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87114,"deletedTimestamp":"2019-11-13T11:26:26.3381596","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgujumgs5ka55k3xh2tqqg5lya2uf47d2h7gfnndlhnn3vhzabao7c64sw2ipmmmpvp","webSpace":"clitest.rgujumgs5ka55k3xh2tqqg5lya2uf47d2h7gfnndlhnn3vhzabao7c64sw2ipmmmpvp-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"cli-webapp-nwrhx7a4zria3","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87115","name":"cli-funcapp-nwrzvfkkft6n","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87115,"deletedTimestamp":"2019-11-13T11:26:26.4701979","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4caagm5v4a44zy7os7eaebtrrt6qnfeekucxd4flx5qbtexqgbdlaag6rqzyauv33","webSpace":"clitest.rg4caagm5v4a44zy7os7eaebtrrt6qnfeekucxd4flx5qbtexqgbdlaag6rqzyauv33-WestUSwebspace","stamp":"waws-prod-bay-115","deletedSiteName":"cli-funcapp-nwrzvfkkft6n","slot":"stage","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87116","name":"cli-webapp-nwrhrv4m5swm4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87116,"deletedTimestamp":"2019-11-13T11:26:27.2859031","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2scto5zqevh22v2zyx7zma3xhalhfbfi3utrlpdfrvxaybxsjksbv6nl2jxlesbxo","webSpace":"clitest.rg2scto5zqevh22v2zyx7zma3xhalhfbfi3utrlpdfrvxaybxsjksbv6nl2jxlesbxo-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-webapp-nwrhrv4m5swm4","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87117","name":"cli-webapp-nwrbr22avzhpg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87117,"deletedTimestamp":"2019-11-13T11:26:28.3621408","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg72qyqah2j33a6zpnlscqmbbgiigg67p7kqaplnrfde7ienx426uiqfvhi6nvl4afn","webSpace":"clitest.rg72qyqah2j33a6zpnlscqmbbgiigg67p7kqaplnrfde7ienx426uiqfvhi6nvl4afn-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwrbr22avzhpg","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87118","name":"cli-webapp-nwrbr22avzhpg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87118,"deletedTimestamp":"2019-11-13T11:26:28.6589650","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg72qyqah2j33a6zpnlscqmbbgiigg67p7kqaplnrfde7ienx426uiqfvhi6nvl4afn","webSpace":"clitest.rg72qyqah2j33a6zpnlscqmbbgiigg67p7kqaplnrfde7ienx426uiqfvhi6nvl4afn-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-webapp-nwrbr22avzhpg","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87119","name":"cli-webapp-nwrgv6u5gegfa","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87119,"deletedTimestamp":"2019-11-13T11:26:47.3665565","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjoxbdvuzw57o45umemkswvfillfvdwhduvs2s2gztqql44lerbijiudb4txbd56xw","webSpace":"clitest.rgjoxbdvuzw57o45umemkswvfillfvdwhduvs2s2gztqql44lerbijiudb4txbd56xw-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-webapp-nwrgv6u5gegfa","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/87122","name":"webapp-config-testqhvm2upsnmqk56nuslfovx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":87122,"deletedTimestamp":"2019-11-13T11:30:48.7068015","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configkwhtjgdfqmbgivkfv3kcxwjanudp3qq5mw36e2lha5mhk36ylmpnq","webSpace":"cli_test_webapp_configkwhtjgdfqmbgivkfv3kcxwjanudp3qq5mw36e2lha5mhk36ylmpnq-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"webapp-config-testqhvm2upsnmqk56nuslfovx","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88579","name":"cli-webapp-nwrzmpk4gcjex","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88579,"deletedTimestamp":"2019-11-14T01:39:44.0422580","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxanm3svsetn4pcx3fob27yk2fvrt7yqx7vrawtrnyevoukal6fkfneduo3zodq3kj","webSpace":"clitest.rgxanm3svsetn4pcx3fob27yk2fvrt7yqx7vrawtrnyevoukal6fkfneduo3zodq3kj-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"cli-webapp-nwrzmpk4gcjex","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88580","name":"cli-funcapp-nwrzxgxrchxv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88580,"deletedTimestamp":"2019-11-14T01:40:25.8914280","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk72l2455ujcriukka2fk3maagzwnem6djgg7rcla2nbmeisrvrahvkhmrpsvaopez","webSpace":"clitest.rgk72l2455ujcriukka2fk3maagzwnem6djgg7rcla2nbmeisrvrahvkhmrpsvaopez-WestUSwebspace","stamp":"waws-prod-bay-117","deletedSiteName":"cli-funcapp-nwrzxgxrchxv","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88581","name":"cli-funcapp-nwrzp4km664i","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88581,"deletedTimestamp":"2019-11-14T01:40:32.2599578","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7giayaoo4fhqnqbkxjo7pryaorbk3xwyxgbuybxtgdazf7aqnivnaxzgdmktwq3lc","webSpace":"clitest.rg7giayaoo4fhqnqbkxjo7pryaorbk3xwyxgbuybxtgdazf7aqnivnaxzgdmktwq3lc-WestUSwebspace","stamp":"waws-prod-bay-119","deletedSiteName":"cli-funcapp-nwrzp4km664i","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88582","name":"cli-funcapp-nwrlq5bzcujj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88582,"deletedTimestamp":"2019-11-14T01:40:40.5894124","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfgwri3stty5vggxx6xejxo2icb774omynontqpcypyphb3bf6jom5gs42yp3vcohr","webSpace":"clitest.rgfgwri3stty5vggxx6xejxo2icb774omynontqpcypyphb3bf6jom5gs42yp3vcohr-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-funcapp-nwrlq5bzcujj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88583","name":"cli-funcapp-nwrcheiqzzvi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88583,"deletedTimestamp":"2019-11-14T01:40:46.3047159","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rguv6rhyhofmjstemtbqi3biqoq2uov7sn6vkoobhjflt7tg6hx2dxxz35pg3jw2htt","webSpace":"clitest.rguv6rhyhofmjstemtbqi3biqoq2uov7sn6vkoobhjflt7tg6hx2dxxz35pg3jw2htt-WestUSwebspace","stamp":"waws-prod-bay-011","deletedSiteName":"cli-funcapp-nwrcheiqzzvi","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88584","name":"cli-funcapp-nwrhbf7fr3lj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88584,"deletedTimestamp":"2019-11-14T01:40:50.6413941","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgorkouy6cg3gwmdk3ofvtpbfqfptjvz4m2eq3fvznjfrp7anyyxgeqdkzann5cmfm5","webSpace":"clitest.rgorkouy6cg3gwmdk3ofvtpbfqfptjvz4m2eq3fvznjfrp7anyyxgeqdkzann5cmfm5-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"cli-funcapp-nwrhbf7fr3lj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88585","name":"cli-funcapp-nwrfqyn6iqpn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88585,"deletedTimestamp":"2019-11-14T01:40:57.7381177","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzkjcwjbnpmq2isg3upwecsgoslmrwcxd4yxa3yj5uh3oimoleqj3hxrxrafbkljja","webSpace":"clitest.rgzkjcwjbnpmq2isg3upwecsgoslmrwcxd4yxa3yj5uh3oimoleqj3hxrxrafbkljja-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-funcapp-nwrfqyn6iqpn","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88586","name":"cli-funcapp-nwr7fe4nmipj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88586,"deletedTimestamp":"2019-11-14T01:41:18.7078128","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7beds43ujdnr6h4alua25cnxb4bobvdkxwuvws33hhbhugqxjr3tjqan56pmuj7zi","webSpace":"clitest.rg7beds43ujdnr6h4alua25cnxb4bobvdkxwuvws33hhbhugqxjr3tjqan56pmuj7zi-WestUSwebspace","stamp":"waws-prod-bay-093","deletedSiteName":"cli-funcapp-nwr7fe4nmipj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88587","name":"cli-funcapp-nwr7fe4nmipj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88587,"deletedTimestamp":"2019-11-14T01:41:19.0046920","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7beds43ujdnr6h4alua25cnxb4bobvdkxwuvws33hhbhugqxjr3tjqan56pmuj7zi","webSpace":"clitest.rg7beds43ujdnr6h4alua25cnxb4bobvdkxwuvws33hhbhugqxjr3tjqan56pmuj7zi-WestUSwebspace","stamp":"waws-prod-bay-093","deletedSiteName":"cli-funcapp-nwr7fe4nmipj","slot":"stage","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88588","name":"cli-webapp-nwrflt7avifau","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88588,"deletedTimestamp":"2019-11-14T01:41:21.7082829","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqpmub5bo76w7hubiwrkdcdskw6lqyyf2lhrlkvviytsiguyo4ikm3t2ofaerdvl7z","webSpace":"clitest.rgqpmub5bo76w7hubiwrkdcdskw6lqyyf2lhrlkvviytsiguyo4ikm3t2ofaerdvl7z-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-webapp-nwrflt7avifau","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88589","name":"delete-me-web000003","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88589,"deletedTimestamp":"2019-11-14T01:41:26.4159535","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001","webSpace":"clitest.rg000001-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"delete-me-web000003","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88590","name":"cli-webapp-nwra4icsrtesu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88590,"deletedTimestamp":"2019-11-14T01:41:30.7047545","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggwezdmc6uitftml4n5n4t7iilvp3scmrnmw7y57wrw6hsmukkes25z4q3gujli7sl","webSpace":"clitest.rggwezdmc6uitftml4n5n4t7iilvp3scmrnmw7y57wrw6hsmukkes25z4q3gujli7sl-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"cli-webapp-nwra4icsrtesu","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88591","name":"cli-webapp-nwrncniae4fvb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88591,"deletedTimestamp":"2019-11-14T01:41:31.4678685","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6aoiuwnwwjlwejthgfbmhecmxwof352bphwn6oagaqxwypwxdxuv3fnwruvu527hv","webSpace":"clitest.rg6aoiuwnwwjlwejthgfbmhecmxwof352bphwn6oagaqxwypwxdxuv3fnwruvu527hv-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrncniae4fvb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88592","name":"cli-webapp-nwrcoo2bvrbmr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88592,"deletedTimestamp":"2019-11-14T01:41:37.3270038","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexzi4bd2tmkyuudhe7k2hxhli3jhnfshmagqpluxsgmopl5oukz4vm65altpuh3tb","webSpace":"clitest.rgexzi4bd2tmkyuudhe7k2hxhli3jhnfshmagqpluxsgmopl5oukz4vm65altpuh3tb-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrcoo2bvrbmr","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88593","name":"cli-webapp-nwr4dmoxcsllv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88593,"deletedTimestamp":"2019-11-14T01:41:37.7207889","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgabu4dbz57woewnv2dkl3i7jjb4b4tgp4wehooy6rtyigzgpxmcw5yumfpedosijps","webSpace":"clitest.rgabu4dbz57woewnv2dkl3i7jjb4b4tgp4wehooy6rtyigzgpxmcw5yumfpedosijps-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"cli-webapp-nwr4dmoxcsllv","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88594","name":"cli-webapp-nwrcoo2bvrbmr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88594,"deletedTimestamp":"2019-11-14T01:41:37.7645092","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexzi4bd2tmkyuudhe7k2hxhli3jhnfshmagqpluxsgmopl5oukz4vm65altpuh3tb","webSpace":"clitest.rgexzi4bd2tmkyuudhe7k2hxhli3jhnfshmagqpluxsgmopl5oukz4vm65altpuh3tb-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrcoo2bvrbmr","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88595","name":"cli-webapp-nwro26pdvhqde","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88595,"deletedTimestamp":"2019-11-14T01:41:45.3796506","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgiad56lmalf54bywtksnquctsno4sofpnxlqqxd4ckozu32fhslki3aktzdfxy6evt","webSpace":"clitest.rgiad56lmalf54bywtksnquctsno4sofpnxlqqxd4ckozu32fhslki3aktzdfxy6evt-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwro26pdvhqde","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '38' + - '231456' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:08 GMT + - Thu, 14 Nov 2019 01:41:52 GMT expires: - '-1' pragma: @@ -3395,23 +4616,99 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20South/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/72678","name":"cliwavo6gbvwb6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":72678,"deletedTimestamp":"2019-10-16T04:48:06.4080361","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgu2yghzh37x","webSpace":"clitest.rgu2yghzh37x-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"cliwavo6gbvwb6","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74160","name":"functionappelastic3ndjouw7ytl3zh336bgqob","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74160,"deletedTimestamp":"2019-10-16T14:53:46.1342929","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgskms7ubowpc3k5tzo7xwifakz5rp4ewcgm4pffjawlqcvhsw3z2ragovbuno5dgvd","webSpace":"clitest.rgskms7ubowpc3k5tzo7xwifakz5rp4ewcgm4pffjawlqcvhsw3z2ragovbuno5dgvd-CentralUSwebspace","stamp":"waws-prod-dm1-111","deletedSiteName":"functionappelastic3ndjouw7ytl3zh336bgqob","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74172","name":"climi2zswoetz3x","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74172,"deletedTimestamp":"2019-10-16T14:59:00.0035012","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjfkok4c7ix","webSpace":"clitest.rgjfkok4c7ix-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"climi2zswoetz3x","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74174","name":"cliaoimachvlyy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74174,"deletedTimestamp":"2019-10-16T15:00:03.3896780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgu3ofajm6lj","webSpace":"clitest.rgu3ofajm6lj-CentralUSwebspace","stamp":"waws-prod-dm1-155","deletedSiteName":"cliaoimachvlyy","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74188","name":"cliglb3vx5kg2ze","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74188,"deletedTimestamp":"2019-10-16T15:05:54.9401115","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnqgvhxdlee","webSpace":"clitest.rgnqgvhxdlee-CentralUSwebspace","stamp":"waws-prod-dm1-039","deletedSiteName":"cliglb3vx5kg2ze","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74301","name":"cliooveaegmlhuw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74301,"deletedTimestamp":"2019-10-16T15:24:49.3938865","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpha6khbpq5","webSpace":"clitest.rgpha6khbpq5-CentralUSwebspace","stamp":"waws-prod-dm1-151","deletedSiteName":"cliooveaegmlhuw","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74304","name":"cligsmufyjjm6ld","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74304,"deletedTimestamp":"2019-10-16T15:25:11.0533718","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3nwqgyaarj","webSpace":"clitest.rg3nwqgyaarj-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"cligsmufyjjm6ld","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74323","name":"clifcv7oi57hmqt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74323,"deletedTimestamp":"2019-10-16T15:29:17.6976493","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgihholjaumj","webSpace":"clitest.rgihholjaumj-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"clifcv7oi57hmqt","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74531","name":"cliztn5vtd7nbnq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74531,"deletedTimestamp":"2019-10-16T16:33:26.6005549","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4rsowhreim","webSpace":"clitest.rg4rsowhreim-CentralUSwebspace","stamp":"waws-prod-dm1-147","deletedSiteName":"cliztn5vtd7nbnq","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74543","name":"cli5s4j3rtfujk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74543,"deletedTimestamp":"2019-10-16T16:37:55.4749775","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6qso2z4pvl","webSpace":"clitest.rg6qso2z4pvl-CentralUSwebspace","stamp":"waws-prod-dm1-125","deletedSiteName":"cli5s4j3rtfujk4","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74583","name":"cliapgg72c5nf3v","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74583,"deletedTimestamp":"2019-10-16T16:50:46.9552050","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdj7pu4v5ti","webSpace":"clitest.rgdj7pu4v5ti-CentralUSwebspace","stamp":"waws-prod-dm1-047","deletedSiteName":"cliapgg72c5nf3v","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74609","name":"cliyyjicwgaq6vq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74609,"deletedTimestamp":"2019-10-16T16:57:36.6927022","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgryxu22pvph","webSpace":"clitest.rgryxu22pvph-CentralUSwebspace","stamp":"waws-prod-dm1-153","deletedSiteName":"cliyyjicwgaq6vq","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/74651","name":"clig5m22p7b4cbj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":74651,"deletedTimestamp":"2019-10-16T17:15:57.4354728","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgktomzudqpf","webSpace":"clitest.rgktomzudqpf-CentralUSwebspace","stamp":"waws-prod-dm1-149","deletedSiteName":"clig5m22p7b4cbj","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/78222","name":"clicawq2jychcv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":78222,"deletedTimestamp":"2019-10-17T15:52:09.7356971","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghcciycm7cv","webSpace":"clitest.rghcciycm7cv-CentralUSwebspace","stamp":"waws-prod-dm1-137","deletedSiteName":"clicawq2jychcv","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84579","name":"cliouxiroxpwyn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84579,"deletedTimestamp":"2019-10-21T10:57:39.7588862","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgby7f72gxpi","webSpace":"clitest.rgby7f72gxpi-CentralUSwebspace","stamp":"waws-prod-dm1-119","deletedSiteName":"cliouxiroxpwyn","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84582","name":"cliy5xp5y37zo5j","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84582,"deletedTimestamp":"2019-10-21T11:01:22.8300635","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgocvscrdrl4","webSpace":"clitest.rgocvscrdrl4-CentralUSwebspace","stamp":"waws-prod-dm1-079","deletedSiteName":"cliy5xp5y37zo5j","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84591","name":"clidtqegf3cehbw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84591,"deletedTimestamp":"2019-10-21T11:06:48.6105435","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5rvgdh7ccu","webSpace":"clitest.rg5rvgdh7ccu-CentralUSwebspace","stamp":"waws-prod-dm1-087","deletedSiteName":"clidtqegf3cehbw","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84595","name":"cliipwmxanhy7wu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84595,"deletedTimestamp":"2019-10-21T11:11:12.6510559","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdwgohr3bjy","webSpace":"clitest.rgdwgohr3bjy-CentralUSwebspace","stamp":"waws-prod-dm1-105","deletedSiteName":"cliipwmxanhy7wu","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84597","name":"cli5l5drjudunyd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84597,"deletedTimestamp":"2019-10-21T11:11:34.4004567","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rguosryp5yrt","webSpace":"clitest.rguosryp5yrt-CentralUSwebspace","stamp":"waws-prod-dm1-155","deletedSiteName":"cli5l5drjudunyd","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84598","name":"clipbsib64ri32f","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84598,"deletedTimestamp":"2019-10-21T11:11:47.5386718","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpvq7bknvjq","webSpace":"clitest.rgpvq7bknvjq-CentralUSwebspace","stamp":"waws-prod-dm1-119","deletedSiteName":"clipbsib64ri32f","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84611","name":"clivg5yrh56bcma","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84611,"deletedTimestamp":"2019-10-21T11:19:30.3340758","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgklg65hsjry","webSpace":"clitest.rgklg65hsjry-CentralUSwebspace","stamp":"waws-prod-dm1-133","deletedSiteName":"clivg5yrh56bcma","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84620","name":"clivwkq72fwwtpd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84620,"deletedTimestamp":"2019-10-21T11:25:11.1833821","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkoo6hcmokp","webSpace":"clitest.rgkoo6hcmokp-CentralUSwebspace","stamp":"waws-prod-dm1-147","deletedSiteName":"clivwkq72fwwtpd","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84625","name":"clivtx2xhmah5mn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84625,"deletedTimestamp":"2019-10-21T11:29:55.4499889","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvspfwgdy4y","webSpace":"clitest.rgvspfwgdy4y-CentralUSwebspace","stamp":"waws-prod-dm1-109","deletedSiteName":"clivtx2xhmah5mn","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84628","name":"clirvc4wp7hfmlg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84628,"deletedTimestamp":"2019-10-21T11:31:31.7107053","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfnc6qp76wf","webSpace":"clitest.rgfnc6qp76wf-CentralUSwebspace","stamp":"waws-prod-dm1-029","deletedSiteName":"clirvc4wp7hfmlg","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/84629","name":"cliu4oxc35l5oez","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":84629,"deletedTimestamp":"2019-10-21T11:35:00.1003120","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgq3epymqbvg","webSpace":"clitest.rgq3epymqbvg-CentralUSwebspace","stamp":"waws-prod-dm1-055","deletedSiteName":"cliu4oxc35l5oez","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/90181","name":"cliycx327agsc4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":90181,"deletedTimestamp":"2019-10-23T01:49:42.5053048","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgscg3yljqw5","webSpace":"clitest.rgscg3yljqw5-CentralUSwebspace","stamp":"waws-prod-dm1-147","deletedSiteName":"cliycx327agsc4","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/104065","name":"functionappelasticofql4qejxflb5jfqxvaquk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":104065,"deletedTimestamp":"2019-10-30T02:17:08.8615285","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgilxcjpjxsa2z4u2xyhyxh5ebrcaucqmme7is3mpwwbt2qxf24w4crtopm75bi7eq2","webSpace":"clitest.rgilxcjpjxsa2z4u2xyhyxh5ebrcaucqmme7is3mpwwbt2qxf24w4crtopm75bi7eq2-CentralUSwebspace","stamp":"waws-prod-dm1-139","deletedSiteName":"functionappelasticofql4qejxflb5jfqxvaquk","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/128975","name":"functionappelastict52uajuauxcb3zj7yjffo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":128975,"deletedTimestamp":"2019-11-11T09:02:50.8548567","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7pmtiat4hxhkr3ppnjfqvufzpopggkh5xkcwebhamoo45pypuojif2d3xctcmaad2","webSpace":"clitest.rg7pmtiat4hxhkr3ppnjfqvufzpopggkh5xkcwebhamoo45pypuojif2d3xctcmaad2-CentralUSwebspace","stamp":"waws-prod-dm1-147","deletedSiteName":"functionappelastict52uajuauxcb3zj7yjffo7","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/128978","name":"functionappwithappinsightsxa3vwq3ztqrhlh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":128978,"deletedTimestamp":"2019-11-11T09:05:30.1161903","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgem4tizpmwm7ikthjqcczh5d46dofuzigzje35tma4r5k2qdpgmiyc5gxm77l7rtbq","webSpace":"clitest.rgem4tizpmwm7ikthjqcczh5d46dofuzigzje35tma4r5k2qdpgmiyc5gxm77l7rtbq-CentralUSwebspace","stamp":"waws-prod-dm1-093","deletedSiteName":"functionappwithappinsightsxa3vwq3ztqrhlh","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/129040","name":"zuhwebapptest","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":129040,"deletedTimestamp":"2019-11-11T09:27:59.8002558","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-CentralUSwebspace","stamp":"waws-prod-dm1-033","deletedSiteName":"zuhwebapptest","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/129042","name":"zuhwebaaaa","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":129042,"deletedTimestamp":"2019-11-11T09:28:19.5243997","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Linux_centralus","webSpace":"zuh_rg_Linux_centralus-CentralUSwebspace","stamp":"waws-prod-dm1-159","deletedSiteName":"zuhwebaaaa","slot":"Production","kind":"app,linux","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/129044","name":"zuhwebaaaa3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":129044,"deletedTimestamp":"2019-11-11T09:28:26.2777152","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Linux_centralus","webSpace":"zuh_rg_Linux_centralus-CentralUSwebspace","stamp":"waws-prod-dm1-159","deletedSiteName":"zuhwebaaaa3","slot":"Production","kind":"app,linux","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/129045","name":"savrrevrev","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":129045,"deletedTimestamp":"2019-11-11T09:28:27.4232153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Linux_centralus","webSpace":"zuh_rg_Linux_centralus-CentralUSwebspace","stamp":"waws-prod-dm1-159","deletedSiteName":"savrrevrev","slot":"Production","kind":"app,linux","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/129046","name":"zuhwebaaaa2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":129046,"deletedTimestamp":"2019-11-11T09:28:28.9241992","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Linux_centralus","webSpace":"zuh_rg_Linux_centralus-CentralUSwebspace","stamp":"waws-prod-dm1-159","deletedSiteName":"zuhwebaaaa2","slot":"Production","kind":"app,linux","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/129056","name":"zuhwebapp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":129056,"deletedTimestamp":"2019-11-11T09:30:03.0291787","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Linux_centralus","webSpace":"zuh_rg_Linux_centralus-CentralUSwebspace","stamp":"waws-prod-dm1-159","deletedSiteName":"zuhwebapp","slot":"Production","kind":"app,linux","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/135008","name":"functionappwithappinsightso5mmv3hjxnmbkb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":135008,"deletedTimestamp":"2019-11-13T11:08:19.0372262","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmhhwuapgvzod4zrximxzc4xbq6sk4zdo5vcfiesvhgbohwberv5ll6hlgac3re2ri","webSpace":"clitest.rgmhhwuapgvzod4zrximxzc4xbq6sk4zdo5vcfiesvhgbohwberv5ll6hlgac3re2ri-CentralUSwebspace","stamp":"waws-prod-dm1-151","deletedSiteName":"functionappwithappinsightso5mmv3hjxnmbkb","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/135014","name":"functionappelasticykka2nuscubn4gyl2mozjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":135014,"deletedTimestamp":"2019-11-13T11:10:07.0861890","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg5fuwhzrtcnrs4dfwjjgeaj3dszmezu2hbixbzy2i5ktb32yiroefwzjknfk76cuw","webSpace":"clitest.rgg5fuwhzrtcnrs4dfwjjgeaj3dszmezu2hbixbzy2i5ktb32yiroefwzjknfk76cuw-CentralUSwebspace","stamp":"waws-prod-dm1-105","deletedSiteName":"functionappelasticykka2nuscubn4gyl2mozjh","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/135043","name":"functionappelasticj5i4g66ic3nmayuo6cmgqu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":135043,"deletedTimestamp":"2019-11-13T11:28:54.1874939","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgipjbiejfcq3azzai5hz6mderyjnslkwm74t3ukb7oslz2djo7spo4sdr2syrqcmdt","webSpace":"clitest.rgipjbiejfcq3azzai5hz6mderyjnslkwm74t3ukb7oslz2djo7spo4sdr2syrqcmdt-CentralUSwebspace","stamp":"waws-prod-dm1-131","deletedSiteName":"functionappelasticj5i4g66ic3nmayuo6cmgqu","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '38' + - '23003' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:09 GMT + - Thu, 14 Nov 2019 01:41:54 GMT expires: - '-1' pragma: @@ -3448,23 +4745,39 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US%202/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/6954","name":"webapp-linux-multivc7q7k","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":6954,"deletedTimestamp":"2019-10-16T14:43:54.6444040","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5","webSpace":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multivc7q7k","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/6955","name":"webapp-linux-multivc7q7k","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":6955,"deletedTimestamp":"2019-10-16T14:43:54.7538033","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5","webSpace":"clitest.rgl3iwc32vvbfgbubuhkx4nzbrn2gdbzflkphvo2m3gsqo5n2txxcgzrhpio6syduz5-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multivc7q7k","slot":"stage","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/13459","name":"webapp-linux-multixrwnjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13459,"deletedTimestamp":"2019-10-21T10:50:48.6719194","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj","webSpace":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj-WestUS2webspace","stamp":"waws-prod-mwh-007","deletedSiteName":"webapp-linux-multixrwnjh","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/13460","name":"webapp-linux-multixrwnjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13460,"deletedTimestamp":"2019-10-21T10:50:49.1102667","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj","webSpace":"clitest.rg7hpzgfullzzs32e6hd4ykicroz5yqdethzndnrr6lve3gy7ubto5aghx4c36orhtj-WestUS2webspace","stamp":"waws-prod-mwh-007","deletedSiteName":"webapp-linux-multixrwnjh","slot":"stage","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/26813","name":"webapp-linux-multim6miqu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26813,"deletedTimestamp":"2019-11-11T09:00:40.6246363","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrcpldya2tzs2mrgx73ulp3ebb7qxvrr2b5lziw7gyq3gmgd4gzbbw3oyirwqfkcbd","webSpace":"clitest.rgrcpldya2tzs2mrgx73ulp3ebb7qxvrr2b5lziw7gyq3gmgd4gzbbw3oyirwqfkcbd-WestUS2webspace","stamp":"waws-prod-mwh-007","deletedSiteName":"webapp-linux-multim6miqu","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/26814","name":"webapp-linux-multim6miqu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":26814,"deletedTimestamp":"2019-11-11T09:00:41.0309145","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrcpldya2tzs2mrgx73ulp3ebb7qxvrr2b5lziw7gyq3gmgd4gzbbw3oyirwqfkcbd","webSpace":"clitest.rgrcpldya2tzs2mrgx73ulp3ebb7qxvrr2b5lziw7gyq3gmgd4gzbbw3oyirwqfkcbd-WestUS2webspace","stamp":"waws-prod-mwh-007","deletedSiteName":"webapp-linux-multim6miqu","slot":"stage","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/27976","name":"webapp-linux-multigv5yp5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":27976,"deletedTimestamp":"2019-11-13T11:05:06.7926224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf","webSpace":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multigv5yp5","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/27977","name":"webapp-linux-multigv5yp5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":27977,"deletedTimestamp":"2019-11-13T11:05:07.1841615","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf","webSpace":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multigv5yp5","slot":"stage","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '38' + - '5725' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:10 GMT + - Thu, 14 Nov 2019 01:41:56 GMT expires: - '-1' pragma: @@ -3501,23 +4814,25 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US/deletedSites?api-version=2018-02-01 response: body: - string: '{"value":[],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US/deletedSites/133950","name":"zuheducation","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":133950,"deletedTimestamp":"2019-11-13T06:12:48.0357118","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-EastUSwebspace","stamp":"waws-prod-blu-143","deletedSiteName":"zuheducation","slot":"Production","kind":"app","geoRegionName":"East + US","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '38' + - '564' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:12 GMT + - Thu, 14 Nov 2019 01:41:57 GMT expires: - '-1' pragma: @@ -3554,7 +4869,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -3570,7 +4885,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:17 GMT + - Thu, 14 Nov 2019 01:41:59 GMT expires: - '-1' pragma: @@ -3607,7 +4922,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -3623,7 +4938,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:19 GMT + - Thu, 14 Nov 2019 01:42:00 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml index 25a9d0d10f1..b89e8c5dbcc 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml @@ -13,15 +13,24 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:22 GMT +======= + - Thu, 14 Nov 2019 01:40:48 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +76,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +98,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:23 GMT +======= + - Thu, 14 Nov 2019 01:40:49 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +120,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1196' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -118,15 +144,24 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +170,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:22 GMT +======= + - Thu, 14 Nov 2019 01:40:49 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +207,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +221,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +236,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT +======= + - Thu, 14 Nov 2019 01:40:55 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -225,8 +278,13 @@ interactions: ParameterSetName: - -g User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +292,13 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +======= + US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +307,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT +======= + - Thu, 14 Nov 2019 01:40:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -280,15 +347,24 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -297,7 +373,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT +======= + - Thu, 14 Nov 2019 01:40:57 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -330,8 +410,13 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -347,7 +432,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT +======= + - Thu, 14 Nov 2019 01:40:57 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -365,7 +454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -385,15 +474,24 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -402,7 +500,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:30 GMT +======= + - Thu, 14 Nov 2019 01:40:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -435,16 +537,26 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -453,7 +565,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:32 GMT +======= + - Thu, 14 Nov 2019 01:41:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -471,7 +587,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1191' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -491,8 +611,13 @@ interactions: ParameterSetName: - -g User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -500,8 +625,13 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +======= + US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -510,7 +640,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:33 GMT +======= + - Thu, 14 Nov 2019 01:41:01 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -544,6 +678,7 @@ interactions: Connection: - keep-alive User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -818,21 +953,31 @@ interactions: User-Agent: - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''westus'' could not be found."}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '1523' + - '98' content-type: +<<<<<<< HEAD - application/json date: - Mon, 09 Dec 2019 21:27:35 GMT @@ -900,27 +1045,23 @@ interactions: - Mon, 09 Dec 2019 21:27:54 GMT etag: - '"1D5AED77B6F6FC0"' +======= + - application/json; charset=utf-8 + date: + - Thu, 14 Nov 2019 01:41:02 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: +<<<<<<< HEAD code: 200 message: OK - request: @@ -3055,4 +3196,8 @@ interactions: status: code: 200 message: OK +======= + code: 404 + message: Not Found +>>>>>>> Re-record test for app service version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml index 1083a8e5ea1..c8d1978b0af 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:48:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:49 GMT + - Wed, 13 Nov 2019 10:59:35 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:48:50 GMT + - Wed, 13 Nov 2019 10:59:36 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:48:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:48:52 GMT + - Wed, 13 Nov 2019 10:59:36 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,17 +177,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","name":"webapp-git-plan5000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28411,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28411","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":145437,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145437","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1528' + - '1530' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:00 GMT + - Wed, 13 Nov 2019 10:59:44 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1189' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,17 +234,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","name":"webapp-git-plan5000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28411,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28411","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":145437,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145437","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1528' + - '1530' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:02 GMT + - Wed, 13 Nov 2019 10:59:45 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:04 GMT + - Wed, 13 Nov 2019 10:59:45 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,17 +349,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","name":"webapp-git-plan5000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28411,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28411","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":145437,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145437","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1528' + - '1530' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:04 GMT + - Wed, 13 Nov 2019 10:59:47 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,22 +396,22 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '520' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003","name":"web-git-test2000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:10.523","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CDA29E956CDCE203B61C76CEDE56A933640FADE52B49A35910AE02A2CA66CCD7","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:52.287","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86E320A8AF4F1E8A2A3B2ADCBA3AEF23562718E8691B4C0D9980A0A136FF4B39","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -421,9 +420,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:26 GMT + - Wed, 13 Nov 2019 11:00:08 GMT etag: - - '"1D587FD2CB60660"' + - '"1D59A1179E37910"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '498' x-powered-by: - ASP.NET status: @@ -466,28 +465,22 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/publishxml?api-version=2018-02-01 response: body: string: @@ -495,11 +488,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:49:27 GMT + - Wed, 13 Nov 2019 11:00:09 GMT expires: - '-1' pragma: @@ -513,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -534,26 +527,26 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003","name":"web-git-test2000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:12.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CDA29E956CDCE203B61C76CEDE56A933640FADE52B49A35910AE02A2CA66CCD7","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:52.737","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86E320A8AF4F1E8A2A3B2ADCBA3AEF23562718E8691B4C0D9980A0A136FF4B39","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3529' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:28 GMT + - Wed, 13 Nov 2019 11:00:10 GMT etag: - - '"1D587FD2CB60660"' + - '"1D59A1179E37910"' expires: - '-1' pragma: @@ -595,11 +588,11 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -612,9 +605,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:38 GMT + - Wed, 13 Nov 2019 11:00:21 GMT etag: - - '"1D587FD3CAD6590"' + - '"1D59A118B888840"' expires: - '-1' pragma: @@ -628,7 +621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1188' x-powered-by: - ASP.NET status: @@ -649,69 +642,14 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:50:02.7854084 - https://web-git-test2000003.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-50-01Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '703' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:09 GMT - etag: - - '"1D587FD3CAD6590"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment source config - Connection: - - keep-alive - ParameterSetName: - - -g -n --repo-url --branch --manual-integration - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:50:36.7368564 - https://web-git-test2000003.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-50-01Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T11:00:43.3355935 + https://web-git-test2000003.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_11-00-32Z"}}' headers: cache-control: - no-cache @@ -720,9 +658,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:42 GMT + - Wed, 13 Nov 2019 11:00:52 GMT etag: - - '"1D587FD3CAD6590"' + - '"1D59A118B888840"' expires: - '-1' pragma: @@ -759,9 +697,9 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -774,9 +712,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:13 GMT + - Wed, 13 Nov 2019 11:01:23 GMT etag: - - '"1D587FD3CAD6590"' + - '"1D59A118B888840"' expires: - '-1' pragma: @@ -813,11 +751,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -830,9 +768,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:16 GMT + - Wed, 13 Nov 2019 11:01:25 GMT etag: - - '"1D587FD3CAD6590"' + - '"1D59A118B888840"' expires: - '-1' pragma: @@ -871,11 +809,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 response: body: string: '' @@ -885,9 +823,9 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:51:35 GMT + - Wed, 13 Nov 2019 11:01:37 GMT etag: - - '"1D587FD7811B640"' + - '"1D59A11B29AAB20"' expires: - '-1' pragma: @@ -901,7 +839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14996' x-powered-by: - ASP.NET status: @@ -922,11 +860,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -939,9 +877,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:36 GMT + - Wed, 13 Nov 2019 11:01:37 GMT etag: - - '"1D587FD7811B640"' + - '"1D59A11B29AAB20"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml index 533c578df76..81bceebb481 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:15 GMT +======= + - Wed, 13 Nov 2019 11:20:05 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:15 GMT +======= + - Wed, 13 Nov 2019 11:20:06 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -126,7 +143,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +156,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:16 GMT +======= + - Wed, 13 Nov 2019 11:20:07 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -168,8 +193,13 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -177,8 +207,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -187,7 +222,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:21 GMT +======= + - Wed, 13 Nov 2019 11:20:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -205,7 +244,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1179' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -225,8 +268,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -234,8 +282,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -244,7 +297,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:22 GMT +======= + - Wed, 13 Nov 2019 11:20:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -285,8 +342,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -302,7 +364,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:22 GMT +======= + - Wed, 13 Nov 2019 11:20:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -320,7 +386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' x-powered-by: - ASP.NET status: @@ -340,8 +406,13 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -349,8 +420,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -359,7 +435,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:22 GMT +======= + - Wed, 13 Nov 2019 11:20:18 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -385,8 +465,12 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], +<<<<<<< HEAD "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}''' +======= + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -397,26 +481,40 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD - '558' +======= + - '520' +>>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:25.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:20:23.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3523' content-type: - application/json @@ -424,6 +522,15 @@ interactions: - Mon, 30 Dec 2019 20:26:42 GMT etag: - '"1D5BF4F68F86AD0"' +======= + - '3540' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:20:38 GMT + etag: + - '"1D59A145774640B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -465,16 +572,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -493,11 +614,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:42 GMT +======= + - Wed, 13 Nov 2019 11:20:39 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -511,7 +636,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11998' +======= + - '11992' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -539,7 +668,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -548,7 +681,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:42 GMT +======= + - Wed, 13 Nov 2019 11:20:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -589,16 +726,24 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West +<<<<<<< HEAD US","tags":{},"properties":{"provisioningState":"Created","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:26:44.457Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' +======= + US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:20:44.08Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '662' + - '660' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:44 GMT +======= + - Wed, 13 Nov 2019 11:20:44 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -617,7 +762,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1184' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -646,16 +795,24 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West +<<<<<<< HEAD US","tags":{},"properties":{"provisioningState":"Created","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:26:44.457Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' +======= + US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:20:44.08Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: - - '662' + - '660' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:14 GMT +======= + - Wed, 13 Nov 2019 11:21:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -701,7 +858,11 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West +<<<<<<< HEAD US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:27:26.667Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' +======= + US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:21:29.333Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -710,7 +871,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:44 GMT +======= + - Wed, 13 Nov 2019 11:21:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -758,7 +923,11 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005","name":"hcname000005","type":"Microsoft.Relay/Namespaces/HybridConnections","location":"West +<<<<<<< HEAD US","properties":{"createdAt":"2019-12-30T20:27:48.0033426Z","updatedAt":"2019-12-30T20:27:48.0033426Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' +======= + US","properties":{"createdAt":"2019-11-13T11:21:51.0016942Z","updatedAt":"2019-11-13T11:21:51.0016942Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -767,7 +936,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:47 GMT +======= + - Wed, 13 Nov 2019 11:21:50 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -786,7 +959,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1179' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -804,20 +981,30 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:26.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:20:23.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -825,6 +1012,15 @@ interactions: - Mon, 30 Dec 2019 20:27:49 GMT etag: - '"1D5BF4F68F86AD0"' +======= + - '3543' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:21:53 GMT + etag: + - '"1D59A145774640B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -864,16 +1060,22 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -892,11 +1102,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:49 GMT +======= + - Wed, 13 Nov 2019 11:21:54 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -940,18 +1154,32 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Relay/namespaces?api-version=2017-04-01 response: body: +<<<<<<< HEAD string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Relay/namespaces/allisonm-test-migration-091619-d1b1","name":"allisonm-test-migration-091619-d1b1","type":"Microsoft.Relay/Namespaces","location":"West Europe","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:allisonm-test-migration-091619-d1b1","createdAt":"2019-09-16T13:53:45.15Z","updatedAt":"2019-09-16T13:54:30.377Z","serviceBusEndpoint":"https://allisonm-test-migration-091619-d1b1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:27:26.667Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' +======= + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyk7rc5d5ettr65sj7oyjeewy2z3e454hko6fd3f7kvmokgpuq3d3qh3bda2xuqjhg/providers/Microsoft.Relay/namespaces/hcnamespaceh56n4phx22mx4","name":"hcnamespaceh56n4phx22mx4","type":"Microsoft.Relay/Namespaces","location":"West + US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespaceh56n4phx22mx4","createdAt":"2019-11-13T11:12:29.497Z","updatedAt":"2019-11-13T11:13:11.733Z","serviceBusEndpoint":"https://hcnamespaceh56n4phx22mx4.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West + US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:21:29.333Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1320' content-type: - application/json; charset=utf-8 date: - Mon, 30 Dec 2019 20:27:49 GMT +======= + - '1332' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 11:21:56 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -997,7 +1225,11 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005","name":"hcname000005","type":"Microsoft.Relay/Namespaces/HybridConnections","location":"West +<<<<<<< HEAD US","properties":{"createdAt":"2019-12-30T20:27:48.0033426Z","updatedAt":"2019-12-30T20:27:48.0033426Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' +======= + US","properties":{"createdAt":"2019-11-13T11:21:51.0016942Z","updatedAt":"2019-11-13T11:21:51.0016942Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1006,7 +1238,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:48 GMT +======= + - Wed, 13 Nov 2019 11:21:58 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1060,7 +1296,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:48 GMT +======= + - Wed, 13 Nov 2019 11:21:59 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1117,7 +1357,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:48 GMT +======= + - Wed, 13 Nov 2019 11:22:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1136,7 +1380,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1174' status: code: 200 message: OK @@ -1166,7 +1410,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005/authorizationRules/defaultSender/listKeys?api-version=2017-04-01 response: body: +<<<<<<< HEAD string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=zL9MjD3KnTjd5+AxxOgqvC49Kxf79F83rC69afOyJnI=;EntityPath=hcname000005","primaryKey":"gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=","secondaryKey":"zL9MjD3KnTjd5+AxxOgqvC49Kxf79F83rC69afOyJnI=","keyName":"defaultSender"}' +======= + string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=NQkNzq82SR7wNOhrLVtIWH3586JKV5veGYS+aVPpJXk=;EntityPath=hcname000005","primaryKey":"IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=","secondaryKey":"NQkNzq82SR7wNOhrLVtIWH3586JKV5veGYS+aVPpJXk=","keyName":"defaultSender"}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1175,7 +1423,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:49 GMT +======= + - Wed, 13 Nov 2019 11:22:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1194,7 +1446,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1190' +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1202,7 +1458,11 @@ interactions: body: 'b''{"properties": {"serviceBusNamespace": "hcnamespace000004", "relayName": "hcname000005", "relayArmUri": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005", "hostname": "vmsq1", "port": 80, "sendKeyName": "defaultSender", "sendKeyValue": +<<<<<<< HEAD "gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=", "serviceBusSuffix": ".servicebus.windows.net"}}''' +======= + "IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=", "serviceBusSuffix": ".servicebus.windows.net"}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -1219,12 +1479,17 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005","name":"hcname000005","type":"Microsoft.Web/sites/hybridConnectionNamespaces/relays","location":"West @@ -1237,7 +1502,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:51 GMT +======= + - Wed, 13 Nov 2019 11:22:02 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1255,7 +1524,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1173' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1275,20 +1548,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:51.773","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:02.8933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -1296,6 +1579,15 @@ interactions: - Mon, 30 Dec 2019 20:27:51 GMT etag: - '"1D5BF4F9BFDF0D0"' +======= + - '3543' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:22:04 GMT + etag: + - '"1D59A1492B938D5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1335,16 +1627,22 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1363,11 +1669,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:51 GMT +======= + - Wed, 13 Nov 2019 11:22:06 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1381,7 +1691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11993' x-powered-by: - ASP.NET status: @@ -1401,12 +1711,17 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005","name":"hcname000005","type":"Microsoft.Web/sites/hybridConnectionNamespaces/relays","location":"West @@ -1419,7 +1734,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:52 GMT +======= + - Wed, 13 Nov 2019 11:22:07 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1455,20 +1774,30 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:51.773","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:02.8933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -1476,6 +1805,15 @@ interactions: - Mon, 30 Dec 2019 20:27:53 GMT etag: - '"1D5BF4F9BFDF0D0"' +======= + - '3543' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:22:09 GMT + etag: + - '"1D59A1492B938D5"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1515,16 +1853,22 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1543,11 +1895,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:53 GMT +======= + - Wed, 13 Nov 2019 11:22:10 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1561,7 +1917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1583,12 +1939,17 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2018-02-01 response: body: string: '' @@ -1598,7 +1959,11 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:54 GMT +======= + - Wed, 13 Nov 2019 11:22:11 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1612,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14993' x-powered-by: - ASP.NET status: @@ -1632,20 +1997,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:54.417","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:11.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -1653,6 +2028,15 @@ interactions: - Mon, 30 Dec 2019 20:27:54 GMT etag: - '"1D5BF4F9D916210"' +======= + - '3537' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:22:13 GMT + etag: + - '"1D59A1497E9C100"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1692,16 +2076,22 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1720,11 +2118,15 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:54 GMT +======= + - Wed, 13 Nov 2019 11:22:14 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1738,7 +2140,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11991' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1758,12 +2164,17 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2018-02-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -1775,7 +2186,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:55 GMT +======= + - Wed, 13 Nov 2019 11:22:15 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml index 378ddff5a29..13eed2c3316 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T11:01:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 11:01:49 GMT + - Thu, 14 Nov 2019 01:41:50 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: - -g -n --hyper-v --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 11:01:51 GMT + - Thu, 14 Nov 2019 01:41:52 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1195' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T11:01:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 11:01:51 GMT + - Thu, 14 Nov 2019 01:41:52 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: - -g -n --hyper-v --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":1971,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-105_1971","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + US","properties":{"serverFarmId":8602,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8602","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 11:02:02 GMT + - Thu, 14 Nov 2019 01:42:03 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1177' + - '1187' x-powered-by: - ASP.NET status: @@ -228,7 +228,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -236,8 +236,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":1971,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-105_1971","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":8602,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8602","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 11:02:04 GMT + - Thu, 14 Nov 2019 01:42:04 GMT expires: - '-1' pragma: @@ -281,1083 +281,35 @@ interactions: - keep-alive User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/serverfarms?detailed=true&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":121375,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-105_1971","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e2llfnxtj554fs5wpxajcsb5dge2njdovvup3mnzldwlstvta4/providers/Microsoft.Web/serverfarms/WestUSPlan","name":"WestUSPlan","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"West - US","properties":{"serverFarmId":121229,"name":"WestUSPlan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"azurecli-functionapp-c-e2e2llfnxtj554fs5wpxajcsb5dge2njdovvup3mnzldwlstvta4-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":0,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"azurecli-functionapp-c-e2e2llfnxtj554fs5wpxajcsb5dge2njdovvup3mnzldwlstvta4","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-037_25685","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Web/serverfarms/serviceplan","name":"serviceplan","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":152113,"name":"serviceplan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"zuh-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"zuh","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-033_31023","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5rvgdh7ccu/providers/Microsoft.Web/serverfarms/clidtqegf3cehbw","name":"clidtqegf3cehbw","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":240284,"name":"clidtqegf3cehbw","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg5rvgdh7ccu-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg5rvgdh7ccu","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-087_30383","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpvq7bknvjq/providers/Microsoft.Web/serverfarms/clipbsib64ri32f","name":"clipbsib64ri32f","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":240281,"name":"clipbsib64ri32f","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rgpvq7bknvjq-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rgpvq7bknvjq","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-119_30398","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/emerald-city-bookstore/providers/Microsoft.Web/serverfarms/emerald-city-bookstore-app-service-plan","name":"emerald-city-bookstore-app-service-plan","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":23068,"name":"emerald-city-bookstore-app-service-plan","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"emerald-city-bookstore-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"emerald-city-bookstore","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-029_477","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/new-experiences/providers/Microsoft.Web/serverfarms/bookstore-westus2","name":"bookstore-westus2","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","tags":{},"properties":{"serverFarmId":23069,"name":"bookstore-westus2","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"new-experiences-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{},"kind":"linux","resourceGroup":"new-experiences","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-007_6995","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fengtest/providers/Microsoft.Web/serverfarms/myserverfarm","name":"myserverfarm","type":"Microsoft.Web/serverfarms","kind":"app","location":"East - US","properties":{"serverFarmId":35518,"name":"myserverfarm","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"fengtest-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"fengtest","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-143_19544","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1","tier":"Premium","size":"P1","family":"P","capacity":1}}]}' - headers: - cache-control: - - no-cache - content-length: - - '11024' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 21 Oct 2019 11:02:08 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: - - fbc3e4c0-c74d-4ba2-bc85-113b25c7320e - - dd217417-e251-48ff-9d5b-69da090f0e47 - - 5ae83603-2c36-4507-9cff-465541fa669a - - 48208933-ab6b-459f-9bad-585c09d8bed5 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - appservice plan show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":1971,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-105_1971","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '1543' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":1971,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-105_1971","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '1543' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"name": "webapp-hyperv-e2e000002", "type": "Microsoft.Web/sites", "location": - "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '329' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 - response: - body: - string: '{"status":"Success","error":null}' - headers: - cache-control: - - no-cache - content-length: - - '33' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":1971,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-105_1971","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '1543' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003", - "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "windowsFxVersion": "DOCKER|microsoft/iis:nanoserver-sac2016", "appSettings": - [], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '543' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West - US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-105.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-10-21T11:02:21.9","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1178CE2E8A83C7FFA892A08B8A537CF571288D27CA2BB00975A40A0C279F192C","kind":"app,container,windows","inboundIpAddress":"40.112.166.161","possibleInboundIpAddresses":"40.112.166.161","outboundIpAddresses":"40.112.166.161,40.83.139.134,40.118.225.6,104.42.149.225","possibleOutboundIpAddresses":"40.112.166.161,40.83.139.134,40.118.225.6,104.42.149.225","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-105","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3616' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:38 GMT - etag: - - '"1D587FF0475BED5"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/publishxml?api-version=2018-11-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Mon, 21 Oct 2019 11:02:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West - US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-105.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-10-21T11:02:23.8533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1178CE2E8A83C7FFA892A08B8A537CF571288D27CA2BB00975A40A0C279F192C","kind":"app,container,windows","inboundIpAddress":"40.112.166.161","possibleInboundIpAddresses":"40.112.166.161","outboundIpAddresses":"40.112.166.161,40.83.139.134,40.118.225.6,104.42.149.225","possibleOutboundIpAddresses":"40.112.166.161,40.83.139.134,40.118.225.6,104.42.149.225","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-105","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3620' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:41 GMT - etag: - - '"1D587FF0475BED5"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3148' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", - "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", - "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": - "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "windowsFxVersion": - "DOCKER|microsoft/iis:nanoserver-sac2016", "requestTracingEnabled": false, "remoteDebuggingEnabled": - false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": - false, "publishingUsername": "$webapp-hyperv-e2e000002", "scmType": "None", - "use32BitWorkerProcess": false, "webSocketsEnabled": false, "alwaysOn": true, - "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": - [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true}], - "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": - false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '1414' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3134' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:47 GMT - etag: - - '"1D587FF0475BED5"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1175' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '319' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '193' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n --plan --deployment-container-image-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3152' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp list - Connection: - - keep-alive - ParameterSetName: - - -g - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West - US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-105.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-10-21T11:02:47.29","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1178CE2E8A83C7FFA892A08B8A537CF571288D27CA2BB00975A40A0C279F192C","kind":"app,container,windows","inboundIpAddress":"40.112.166.161","possibleInboundIpAddresses":"40.112.166.161","outboundIpAddresses":"40.112.166.161,40.83.139.134,40.118.225.6,104.42.149.225","possibleOutboundIpAddresses":"40.112.166.161,40.83.139.134,40.118.225.6,104.42.149.225","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-105","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '3655' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3152' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config set - Connection: - - keep-alive - ParameterSetName: - - -g -n --windows-fx-version - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''westus'' could not be found."}}' headers: cache-control: - no-cache content-length: - - '3152' + - '98' content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", - "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", - "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": - "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "windowsFxVersion": - "DOCKER|microsoft/iis", "requestTracingEnabled": false, "remoteDebuggingEnabled": - false, "remoteDebuggingVersion": "VS2017", "httpLoggingEnabled": false, "logsDirectorySizeLimit": - 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-hyperv-e2e000002", - "scmType": "None", "use32BitWorkerProcess": false, "webSocketsEnabled": false, - "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config set - Connection: - - keep-alive - Content-Length: - - '1431' - Content-Type: - application/json; charset=utf-8 - ParameterSetName: - - -g -n --windows-fx-version - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3115' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 11:02:57 GMT - etag: - - '"1D587FF126DE5A0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1176' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3133' - content-type: - - application/json date: - - Mon, 21 Oct 2019 11:02:58 GMT + - Thu, 14 Nov 2019 01:42:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml index fcac6865c58..df0523eaa6b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:52:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:29 GMT + - Wed, 13 Nov 2019 11:01:46 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:30 GMT + - Wed, 13 Nov 2019 11:01:46 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:52:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:52:30 GMT + - Wed, 13 Nov 2019 11:01:48 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","name":"slot-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":39181,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_39181","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23655,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:45 GMT + - Wed, 13 Nov 2019 11:01:53 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1183' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","name":"slot-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":39181,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_39181","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23655,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:47 GMT + - Wed, 13 Nov 2019 11:01:55 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:48 GMT + - Wed, 13 Nov 2019 11:01:55 GMT expires: - '-1' pragma: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","name":"slot-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":39181,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_39181","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23655,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:52:49 GMT + - Wed, 13 Nov 2019 11:01:56 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '520' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:52:54.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28FDE1C0224D3845E4A4F0B0A715550F5D4B61D4EA824909C88E59B518F005AE","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:00.9933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3542' + - '3545' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:11 GMT + - Wed, 13 Nov 2019 11:02:19 GMT etag: - - '"1D587FDB16BB800"' + - '"1D59A11C6C023A0"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '491' x-powered-by: - ASP.NET status: @@ -466,28 +465,22 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/publishxml?api-version=2018-02-01 response: body: string: @@ -495,11 +488,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:53:12 GMT + - Wed, 13 Nov 2019 11:02:20 GMT expires: - '-1' pragma: @@ -513,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -536,11 +529,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -553,7 +546,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:14 GMT + - Wed, 13 Nov 2019 11:02:21 GMT expires: - '-1' pragma: @@ -571,7 +564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11997' x-powered-by: - ASP.NET status: @@ -597,11 +590,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -614,9 +607,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:16 GMT + - Wed, 13 Nov 2019 11:02:22 GMT etag: - - '"1D587FDBE628160"' + - '"1D59A11D3585240"' expires: - '-1' pragma: @@ -634,7 +627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1191' x-powered-by: - ASP.NET status: @@ -655,11 +648,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -672,7 +665,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:18 GMT + - Wed, 13 Nov 2019 11:02:23 GMT expires: - '-1' pragma: @@ -713,11 +706,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -730,7 +723,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:19 GMT + - Wed, 13 Nov 2019 11:02:23 GMT expires: - '-1' pragma: @@ -748,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1180' + - '1190' x-powered-by: - ASP.NET status: @@ -769,26 +762,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:53:16.79","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28FDE1C0224D3845E4A4F0B0A715550F5D4B61D4EA824909C88E59B518F005AE","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:22.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3540' + - '3538' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:20 GMT + - Wed, 13 Nov 2019 11:02:25 GMT etag: - - '"1D587FDBE628160"' + - '"1D59A11D3585240"' expires: - '-1' pragma: @@ -832,26 +825,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:53:25.577","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__8c7b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4D41F3A8D2A12F5ECF5831BA15A46FB2E7898044C4A0B1907C8B43F80E61BE2B","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:32.29","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__03f3","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"876A0788163347A8DEFF7327D06D58D16B7E1BAC916EA8737F50B264DC386E2D","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3634' + - '3631' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:41 GMT + - Wed, 13 Nov 2019 11:02:48 GMT etag: - - '"1D587FDBE628160"' + - '"1D59A11D3585240"' expires: - '-1' pragma: @@ -890,26 +883,26 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:53:16.79","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28FDE1C0224D3845E4A4F0B0A715550F5D4B61D4EA824909C88E59B518F005AE","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:22.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3540' + - '3538' content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:43 GMT + - Wed, 13 Nov 2019 11:02:49 GMT etag: - - '"1D587FDBE628160"' + - '"1D59A11D3585240"' expires: - '-1' pragma: @@ -951,11 +944,11 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -968,9 +961,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:56 GMT + - Wed, 13 Nov 2019 11:03:14 GMT etag: - - '"1D587FDD629B1B0"' + - '"1D59A11F238E1F5"' expires: - '-1' pragma: @@ -984,7 +977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1181' + - '1191' x-powered-by: - ASP.NET status: @@ -1005,14 +998,14 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:54:19.1194815 - https://slot-test-web000003-staging.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-54-08Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T11:03:36.3264183 + https://slot-test-web000003-staging.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_11-03-24Z"}}' headers: cache-control: - no-cache @@ -1021,9 +1014,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:28 GMT + - Wed, 13 Nov 2019 11:03:44 GMT etag: - - '"1D587FDD629B1B0"' + - '"1D59A11F238E1F5"' expires: - '-1' pragma: @@ -1060,9 +1053,9 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -1075,9 +1068,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:59 GMT + - Wed, 13 Nov 2019 11:04:15 GMT etag: - - '"1D587FDD629B1B0"' + - '"1D59A11F238E1F5"' expires: - '-1' pragma: @@ -1118,11 +1111,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2018-02-01 response: body: string: '' @@ -1132,13 +1125,13 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:55:04 GMT + - Wed, 13 Nov 2019 11:04:20 GMT etag: - - '"1D587FDFDC94780"' + - '"1D59A12195C4FEB"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 pragma: - no-cache server: @@ -1150,54 +1143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment slot swap - Connection: - - keep-alive - ParameterSetName: - - -g -n -s - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 21 Oct 2019 10:55:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff + - '1190' x-powered-by: - ASP.NET status: @@ -1218,9 +1164,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 response: body: string: '' @@ -1230,11 +1176,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:55:36 GMT + - Wed, 13 Nov 2019 11:04:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 pragma: - no-cache server: @@ -1265,9 +1211,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 response: body: string: '' @@ -1277,11 +1223,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:55:53 GMT + - Wed, 13 Nov 2019 11:04:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 pragma: - no-cache server: @@ -1312,9 +1258,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 response: body: string: '' @@ -1324,11 +1270,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:56:09 GMT + - Wed, 13 Nov 2019 11:05:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 pragma: - no-cache server: @@ -1359,24 +1305,24 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/2a6c4809-0bb9-4714-9541-e928aa6df858?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:56:18.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28FDE1C0224D3845E4A4F0B0A715550F5D4B61D4EA824909C88E59B518F005AE","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-10-21T10:56:18.13Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:15.9066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:05:15.95Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3725' + - '3728' content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:26 GMT + - Wed, 13 Nov 2019 11:05:24 GMT etag: - - '"1D587FE2A75BDE0"' + - '"1D59A123A83402B"' expires: - '-1' pragma: @@ -1415,11 +1361,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1432,7 +1378,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:29 GMT + - Wed, 13 Nov 2019 11:05:25 GMT expires: - '-1' pragma: @@ -1471,11 +1417,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -1488,7 +1434,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:30 GMT + - Wed, 13 Nov 2019 11:05:28 GMT expires: - '-1' pragma: @@ -1525,26 +1471,24 @@ interactions: - -g -n --php-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3113' + - '2917' content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:31 GMT + - Wed, 13 Nov 2019 11:05:30 GMT expires: - '-1' pragma: @@ -1574,16 +1518,12 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-test-web000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1594,35 +1534,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1353' + - '1072' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --php-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3099' + - '2903' content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:33 GMT + - Wed, 13 Nov 2019 11:05:33 GMT etag: - - '"1D587FDFE2C00F0"' + - '"1D59A1219F3E200"' expires: - '-1' pragma: @@ -1640,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1123' + - '1181' x-powered-by: - ASP.NET status: @@ -1661,26 +1599,26 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:56:33.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__8c7b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4D41F3A8D2A12F5ECF5831BA15A46FB2E7898044C4A0B1907C8B43F80E61BE2B","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-10-21T10:56:18.13Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:33.99","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__03f3","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"876A0788163347A8DEFF7327D06D58D16B7E1BAC916EA8737F50B264DC386E2D","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:05:15.95Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3647' + - '3644' content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:35 GMT + - Wed, 13 Nov 2019 11:05:34 GMT etag: - - '"1D587FE33C948D0"' + - '"1D59A12454A8C60"' expires: - '-1' pragma: @@ -1724,26 +1662,26 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:56:40.44","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__af2a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F92E6ACE11E2F2FEDB282869CD99C816F4124EF0B834F3137FEE4DC751A422D6","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:40.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__0276","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E26A825E4E40375E93C56F364257D4B83F7F0F60C3760AA55D213316FFA45338","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3597' + - '3595' content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:56 GMT + - Wed, 13 Nov 2019 11:05:57 GMT etag: - - '"1D587FE33C948D0"' + - '"1D59A12454A8C60"' expires: - '-1' pragma: @@ -1761,7 +1699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -1782,26 +1720,24 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3117' + - '2921' content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:57 GMT + - Wed, 13 Nov 2019 11:05:58 GMT expires: - '-1' pragma: @@ -1828,19 +1764,15 @@ interactions: "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", + false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-test-web000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": + true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' headers: Accept: - application/json @@ -1851,35 +1783,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1389' + - '1108' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3124' + - '2928' content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:59 GMT + - Wed, 13 Nov 2019 11:06:00 GMT etag: - - '"1D587FE3804A890"' + - '"1D59A124992A355"' expires: - '-1' pragma: @@ -1897,7 +1827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1173' + - '1187' x-powered-by: - ASP.NET status: @@ -1918,11 +1848,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -1935,7 +1865,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:00 GMT + - Wed, 13 Nov 2019 11:06:01 GMT expires: - '-1' pragma: @@ -1974,11 +1904,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1991,7 +1921,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:01 GMT + - Wed, 13 Nov 2019 11:06:01 GMT expires: - '-1' pragma: @@ -2009,7 +1939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11994' x-powered-by: - ASP.NET status: @@ -2032,11 +1962,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/connectionstrings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/connectionstrings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -2049,7 +1979,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:02 GMT + - Wed, 13 Nov 2019 11:06:02 GMT expires: - '-1' pragma: @@ -2067,7 +1997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11988' + - '11997' x-powered-by: - ASP.NET status: @@ -2093,11 +2023,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -2110,9 +2040,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:05 GMT + - Wed, 13 Nov 2019 11:06:03 GMT etag: - - '"1D587FE468916D0"' + - '"1D59A1256E5FEA0"' expires: - '-1' pragma: @@ -2130,7 +2060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1153' + - '1178' x-powered-by: - ASP.NET status: @@ -2155,11 +2085,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -2172,9 +2102,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:06 GMT + - Wed, 13 Nov 2019 11:06:04 GMT etag: - - '"1D587FE477B3F00"' + - '"1D59A12574BB84B"' expires: - '-1' pragma: @@ -2192,7 +2122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1179' + - '1177' x-powered-by: - ASP.NET status: @@ -2213,26 +2143,24 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3132' + - '2936' content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:07 GMT + - Wed, 13 Nov 2019 11:06:04 GMT expires: - '-1' pragma: @@ -2271,11 +2199,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -2288,7 +2216,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:10 GMT + - Wed, 13 Nov 2019 11:06:06 GMT expires: - '-1' pragma: @@ -2332,11 +2260,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -2349,9 +2277,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:11 GMT + - Wed, 13 Nov 2019 11:06:08 GMT etag: - - '"1D587FE4A5CB410"' + - '"1D59A1259C2ECD5"' expires: - '-1' pragma: @@ -2369,7 +2297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1178' + - '1182' x-powered-by: - ASP.NET status: @@ -2390,11 +2318,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2407,7 +2335,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:12 GMT + - Wed, 13 Nov 2019 11:06:09 GMT expires: - '-1' pragma: @@ -2449,11 +2377,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2466,7 +2394,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:14 GMT + - Wed, 13 Nov 2019 11:06:09 GMT expires: - '-1' pragma: @@ -2484,7 +2412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1155' + - '1181' x-powered-by: - ASP.NET status: @@ -2507,11 +2435,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -2524,7 +2452,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:15 GMT + - Wed, 13 Nov 2019 11:06:10 GMT expires: - '-1' pragma: @@ -2568,11 +2496,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -2585,9 +2513,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:17 GMT + - Wed, 13 Nov 2019 11:06:11 GMT etag: - - '"1D587FE4DB8D760"' + - '"1D59A125BF26A00"' expires: - '-1' pragma: @@ -2605,7 +2533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1172' + - '1187' x-powered-by: - ASP.NET status: @@ -2626,11 +2554,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2643,7 +2571,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:19 GMT + - Wed, 13 Nov 2019 11:06:11 GMT expires: - '-1' pragma: @@ -2685,11 +2613,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2702,7 +2630,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:57:20 GMT + - Wed, 13 Nov 2019 11:06:12 GMT expires: - '-1' pragma: @@ -2720,7 +2648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1170' + - '1186' x-powered-by: - ASP.NET status: @@ -2745,11 +2673,11 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2018-02-01 response: body: string: '' @@ -2759,13 +2687,13 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:57:23 GMT + - Wed, 13 Nov 2019 11:06:16 GMT etag: - - '"1D587FE33C948D0"' + - '"1D59A12454A8C60"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 pragma: - no-cache server: @@ -2777,7 +2705,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1192' x-powered-by: - ASP.NET status: @@ -2798,9 +2726,9 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 response: body: string: '' @@ -2810,11 +2738,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:57:38 GMT + - Wed, 13 Nov 2019 11:06:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 pragma: - no-cache server: @@ -2845,9 +2773,9 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 response: body: string: '' @@ -2857,11 +2785,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:57:55 GMT + - Wed, 13 Nov 2019 11:06:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 pragma: - no-cache server: @@ -2892,9 +2820,9 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 response: body: string: '' @@ -2904,11 +2832,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:58:10 GMT + - Wed, 13 Nov 2019 11:07:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 pragma: - no-cache server: @@ -2939,24 +2867,24 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/80648885-4930-4160-90ce-1f818c6c9bb0?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:58:12.587","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__af2a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F92E6ACE11E2F2FEDB282869CD99C816F4124EF0B834F3137FEE4DC751A422D6","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-10-21T10:58:12.624Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:05.2066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__0276","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E26A825E4E40375E93C56F364257D4B83F7F0F60C3760AA55D213316FFA45338","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3726' + - '3728' content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:26 GMT + - Wed, 13 Nov 2019 11:07:20 GMT etag: - - '"1D587FE6EB18BB0"' + - '"1D59A127BA91B6B"' expires: - '-1' pragma: @@ -2995,11 +2923,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -3012,7 +2940,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:28 GMT + - Wed, 13 Nov 2019 11:07:20 GMT expires: - '-1' pragma: @@ -3051,11 +2979,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -3068,7 +2996,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:29 GMT + - Wed, 13 Nov 2019 11:07:21 GMT expires: - '-1' pragma: @@ -3107,11 +3035,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -3124,7 +3052,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:31 GMT + - Wed, 13 Nov 2019 11:07:22 GMT expires: - '-1' pragma: @@ -3163,11 +3091,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -3180,7 +3108,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:32 GMT + - Wed, 13 Nov 2019 11:07:23 GMT expires: - '-1' pragma: @@ -3219,11 +3147,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -3236,7 +3164,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:35 GMT + - Wed, 13 Nov 2019 11:07:24 GMT expires: - '-1' pragma: @@ -3275,11 +3203,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -3292,7 +3220,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:36 GMT + - Wed, 13 Nov 2019 11:07:25 GMT expires: - '-1' pragma: @@ -3331,11 +3259,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/connectionstrings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/connectionstrings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -3348,7 +3276,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:37 GMT + - Wed, 13 Nov 2019 11:07:26 GMT expires: - '-1' pragma: @@ -3387,11 +3315,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -3404,7 +3332,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:38 GMT + - Wed, 13 Nov 2019 11:07:27 GMT expires: - '-1' pragma: @@ -3441,27 +3369,27 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:58:12.587","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__af2a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F92E6ACE11E2F2FEDB282869CD99C816F4124EF0B834F3137FEE4DC751A422D6","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-10-21T10:58:12.624Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:57:23.293","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28FDE1C0224D3845E4A4F0B0A715550F5D4B61D4EA824909C88E59B518F005AE","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-10-21T10:58:12.624Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:05.2066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__0276","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E26A825E4E40375E93C56F364257D4B83F7F0F60C3760AA55D213316FFA45338","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West + US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:16.9966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '7477' + - '7481' content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:39 GMT + - Wed, 13 Nov 2019 11:07:29 GMT etag: - - '"1D587FE514FE0D0"' + - '"1D59A125EECD84B"' expires: - '-1' pragma: @@ -3500,11 +3428,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2018-02-01 response: body: string: '' @@ -3514,9 +3442,9 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:58:44 GMT + - Wed, 13 Nov 2019 11:07:33 GMT etag: - - '"1D587FE6EB18BB0"' + - '"1D59A127BA91B6B"' expires: - '-1' pragma: @@ -3530,7 +3458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14996' x-powered-by: - ASP.NET status: @@ -3551,26 +3479,26 @@ interactions: - -g -n --slot --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:57:23.293","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28FDE1C0224D3845E4A4F0B0A715550F5D4B61D4EA824909C88E59B518F005AE","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-10-21T10:58:12.624Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:16.9966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3684' + - '3686' content-type: - application/json date: - - Mon, 21 Oct 2019 10:58:46 GMT + - Wed, 13 Nov 2019 11:07:35 GMT etag: - - '"1D587FE514FE0D0"' + - '"1D59A125EECD84B"' expires: - '-1' pragma: @@ -3609,11 +3537,11 @@ interactions: - -g -n --slot --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2018-02-01 response: body: string: '' @@ -3623,9 +3551,9 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:58:50 GMT + - Wed, 13 Nov 2019 11:07:39 GMT etag: - - '"1D587FE514FE0D0"' + - '"1D59A125EECD84B"' expires: - '-1' pragma: @@ -3639,7 +3567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14997' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml index d6b56b530bc..20fe9ae0146 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:53:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:53:34 GMT + - Wed, 13 Nov 2019 11:03:30 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:35 GMT + - Wed, 13 Nov 2019 11:03:31 GMT expires: - '-1' pragma: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:53:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:53:36 GMT + - Wed, 13 Nov 2019 11:03:32 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","name":"slot-swap-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28414,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28414","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":40798,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_40798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:45 GMT + - Wed, 13 Nov 2019 11:03:40 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1190' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","name":"slot-swap-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28414,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28414","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":40798,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_40798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:46 GMT + - Wed, 13 Nov 2019 11:03:41 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:47 GMT + - Wed, 13 Nov 2019 11:03:43 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1190' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","name":"slot-swap-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28414,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28414","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":40798,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_40798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:48 GMT + - Wed, 13 Nov 2019 11:03:43 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '520' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003","name":"slot-swap-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:53:53.937","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0D9D7083A2062238426ED9AB5B73993B653CB12BF05D05047E2FBC82595E6213","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:48.293","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B95DD9E267254A5712C9B70CE4B23B60AAB41D9FAC1C8C07BC511F5E784DE31","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3531' + - '3543' content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:09 GMT + - Wed, 13 Nov 2019 11:04:05 GMT etag: - - '"1D587FDD4C5B4E0"' + - '"1D59A1206A08690"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '498' x-powered-by: - ASP.NET status: @@ -466,28 +465,22 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/publishxml?api-version=2018-02-01 response: body: string: @@ -495,11 +488,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:54:10 GMT + - Wed, 13 Nov 2019 11:04:05 GMT expires: - '-1' pragma: @@ -513,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -536,11 +529,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -553,7 +546,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:12 GMT + - Wed, 13 Nov 2019 11:04:06 GMT expires: - '-1' pragma: @@ -571,7 +564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11993' x-powered-by: - ASP.NET status: @@ -597,11 +590,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -614,9 +607,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:13 GMT + - Wed, 13 Nov 2019 11:04:08 GMT etag: - - '"1D587FDE04EBD70"' + - '"1D59A12125AD850"' expires: - '-1' pragma: @@ -634,7 +627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1160' + - '1186' x-powered-by: - ASP.NET status: @@ -655,11 +648,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -672,7 +665,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:14 GMT + - Wed, 13 Nov 2019 11:04:09 GMT expires: - '-1' pragma: @@ -713,11 +706,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -730,7 +723,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:14 GMT + - Wed, 13 Nov 2019 11:04:09 GMT expires: - '-1' pragma: @@ -748,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1159' + - '1185' x-powered-by: - ASP.NET status: @@ -769,26 +762,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003","name":"slot-swap-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:54:13.703","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0D9D7083A2062238426ED9AB5B73993B653CB12BF05D05047E2FBC82595E6213","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:08.533","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B95DD9E267254A5712C9B70CE4B23B60AAB41D9FAC1C8C07BC511F5E784DE31","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3529' + - '3541' content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:16 GMT + - Wed, 13 Nov 2019 11:04:10 GMT etag: - - '"1D587FDE04EBD70"' + - '"1D59A12125AD850"' expires: - '-1' pragma: @@ -832,26 +825,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging","name":"slot-swap-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:54:21.183","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003__c7e3","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"76C39EC7AABF86AFA816FBE739B9A5F42791FF1C3F7436C67822A5F2757A3FDE","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:15.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003__aeaf","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B2B8B48A1BA429E2651C817462BBBB00E5218B8B83E6528A884AE84E562D7648","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3622' + - '3633' content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:37 GMT + - Wed, 13 Nov 2019 11:04:32 GMT etag: - - '"1D587FDE04EBD70"' + - '"1D59A12125AD850"' expires: - '-1' pragma: @@ -892,11 +885,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -909,7 +902,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:38 GMT + - Wed, 13 Nov 2019 11:04:34 GMT expires: - '-1' pragma: @@ -953,11 +946,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -970,9 +963,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:40 GMT + - Wed, 13 Nov 2019 11:04:37 GMT etag: - - '"1D587FDEFFA4690"' + - '"1D59A1223711500"' expires: - '-1' pragma: @@ -990,7 +983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1157' + - '1178' x-powered-by: - ASP.NET status: @@ -1011,11 +1004,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1028,7 +1021,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:40 GMT + - Wed, 13 Nov 2019 11:04:37 GMT expires: - '-1' pragma: @@ -1070,11 +1063,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1087,7 +1080,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:42 GMT + - Wed, 13 Nov 2019 11:04:38 GMT expires: - '-1' pragma: @@ -1105,7 +1098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1126' + - '1177' x-powered-by: - ASP.NET status: @@ -1130,11 +1123,11 @@ interactions: - -g -n -s --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/applySlotConfig?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/applySlotConfig?api-version=2018-02-01 response: body: string: '' @@ -1144,9 +1137,9 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:54:44 GMT + - Wed, 13 Nov 2019 11:04:41 GMT etag: - - '"1D587FDF2D09810"' + - '"1D59A1225D60710"' expires: - '-1' pragma: @@ -1160,7 +1153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1195' x-powered-by: - ASP.NET status: @@ -1183,11 +1176,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1200,7 +1193,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:46 GMT + - Wed, 13 Nov 2019 11:04:43 GMT expires: - '-1' pragma: @@ -1239,11 +1232,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1256,7 +1249,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:48 GMT + - Wed, 13 Nov 2019 11:04:44 GMT expires: - '-1' pragma: @@ -1297,11 +1290,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/slotsswap?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/slotsswap?api-version=2018-02-01 response: body: string: '' @@ -1311,13 +1304,13 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:54:50 GMT + - Wed, 13 Nov 2019 11:04:45 GMT etag: - - '"1D587FDE04EBD70"' + - '"1D59A12125AD850"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 pragma: - no-cache server: @@ -1329,7 +1322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1189' x-powered-by: - ASP.NET status: @@ -1350,9 +1343,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 response: body: string: '' @@ -1362,11 +1355,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:55:06 GMT + - Wed, 13 Nov 2019 11:05:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 pragma: - no-cache server: @@ -1397,9 +1390,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 response: body: string: '' @@ -1409,11 +1402,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:55:21 GMT + - Wed, 13 Nov 2019 11:05:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 pragma: - no-cache server: @@ -1444,9 +1437,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 response: body: string: '' @@ -1456,11 +1449,11 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:55:37 GMT + - Wed, 13 Nov 2019 11:05:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 pragma: - no-cache server: @@ -1491,24 +1484,24 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/e8bd46f3-8054-4cdb-90e8-f23f67115c7a?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging","name":"slot-swap-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:49.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0D9D7083A2062238426ED9AB5B73993B653CB12BF05D05047E2FBC82595E6213","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-10-21T10:55:49.71Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:34.613","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B95DD9E267254A5712C9B70CE4B23B60AAB41D9FAC1C8C07BC511F5E784DE31","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:05:34.659Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3713' + - '3727' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:54 GMT + - Wed, 13 Nov 2019 11:05:48 GMT etag: - - '"1D587FE19822460"' + - '"1D59A1245A99C50"' expires: - '-1' pragma: @@ -1547,11 +1540,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1564,7 +1557,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:55 GMT + - Wed, 13 Nov 2019 11:05:49 GMT expires: - '-1' pragma: @@ -1603,11 +1596,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1620,7 +1613,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:56 GMT + - Wed, 13 Nov 2019 11:05:51 GMT expires: - '-1' pragma: @@ -1659,11 +1652,11 @@ interactions: - -g -n -s --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/resetSlotConfig?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/resetSlotConfig?api-version=2018-02-01 response: body: string: '' @@ -1673,9 +1666,9 @@ interactions: content-length: - '0' date: - - Mon, 21 Oct 2019 10:55:57 GMT + - Wed, 13 Nov 2019 11:05:52 GMT etag: - - '"1D587FDF2F9CAF0"' + - '"1D59A1225F61230"' expires: - '-1' pragma: @@ -1689,7 +1682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' x-powered-by: - ASP.NET status: @@ -1712,11 +1705,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1729,7 +1722,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:58 GMT + - Wed, 13 Nov 2019 11:05:55 GMT expires: - '-1' pragma: @@ -1768,11 +1761,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1785,7 +1778,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:01 GMT + - Wed, 13 Nov 2019 11:05:56 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml index e8dd8bf2562..609be3763b1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-06T00:10:14Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:58Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:16 GMT +======= + - Wed, 13 Nov 2019 11:03:01 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -63,8 +71,13 @@ interactions: ParameterSetName: - -g -n --sku --tags User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -80,7 +93,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:17 GMT +======= + - Wed, 13 Nov 2019 11:03:03 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -98,7 +115,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1196' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -126,7 +147,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-06T00:10:14Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:58Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -135,7 +160,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:16 GMT +======= + - Wed, 13 Nov 2019 11:03:03 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -169,8 +198,13 @@ interactions: ParameterSetName: - -g -n --sku --tags User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -178,8 +212,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -188,7 +227,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:21 GMT +======= + - Wed, 13 Nov 2019 11:03:12 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -206,7 +249,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1180' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -226,8 +273,13 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -235,8 +287,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -245,7 +302,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:21 GMT +======= + - Wed, 13 Nov 2019 11:03:14 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -281,8 +342,13 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -290,8 +356,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -300,7 +371,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:22 GMT +======= + - Wed, 13 Nov 2019 11:03:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -341,8 +416,13 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -358,7 +438,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:23 GMT +======= + - Wed, 13 Nov 2019 11:03:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -396,8 +480,13 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -405,8 +494,13 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -415,7 +509,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:24 GMT +======= + - Wed, 13 Nov 2019 11:03:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -460,20 +558,30 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:26.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3516' content-type: - application/json @@ -481,6 +589,15 @@ interactions: - Fri, 06 Dec 2019 00:10:42 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3521' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:39 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -498,7 +615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -522,16 +639,22 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -550,11 +681,15 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:42 GMT +======= + - Wed, 13 Nov 2019 11:03:40 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -568,7 +703,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -588,20 +727,30 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -609,6 +758,15 @@ interactions: - Fri, 06 Dec 2019 00:10:42 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:42 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -644,20 +802,30 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -665,6 +833,15 @@ interactions: - Fri, 06 Dec 2019 00:10:43 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:43 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -705,12 +882,17 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -725,7 +907,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:44 GMT +======= + - Wed, 13 Nov 2019 11:03:47 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -746,7 +932,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -766,20 +956,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -787,6 +987,15 @@ interactions: - Fri, 06 Dec 2019 00:10:45 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:48 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -822,20 +1031,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -843,6 +1062,15 @@ interactions: - Fri, 06 Dec 2019 00:10:46 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:49 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -882,16 +1110,22 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -910,11 +1152,15 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:48 GMT +======= + - Wed, 13 Nov 2019 11:03:50 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -928,7 +1174,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11997' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -948,20 +1198,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -969,6 +1229,15 @@ interactions: - Fri, 06 Dec 2019 00:10:48 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:51 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1004,20 +1273,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -1025,6 +1304,15 @@ interactions: - Fri, 06 Dec 2019 00:10:49 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:52 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1060,12 +1348,17 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -1080,7 +1373,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:49 GMT +======= + - Wed, 13 Nov 2019 11:03:53 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1116,12 +1413,17 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings/web-ssl-test000003.azurewebsites.net","name":"web-ssl-test000003/web-ssl-test000003.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West @@ -1134,9 +1436,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:49 GMT etag: - '"1D5ABC9903890A0"' +======= + - Wed, 13 Nov 2019 11:03:53 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1180,20 +1488,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3561' content-type: - application/json @@ -1201,6 +1519,15 @@ interactions: - Fri, 06 Dec 2019 00:10:52 GMT etag: - '"1D5ABC9903890A0"' +======= + - '3566' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:57 GMT + etag: + - '"1D59A11F6F90215"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1218,7 +1545,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '499' +======= + - '498' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1238,20 +1569,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3559' content-type: - application/json @@ -1259,6 +1600,15 @@ interactions: - Fri, 06 Dec 2019 00:10:52 GMT etag: - '"1D5ABC99EB6FE6B"' +======= + - '3564' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:03:59 GMT + etag: + - '"1D59A120B7D1555"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1298,16 +1648,22 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1326,11 +1690,15 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:53 GMT +======= + - Wed, 13 Nov 2019 11:04:00 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1364,20 +1732,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3559' content-type: - application/json @@ -1385,6 +1763,15 @@ interactions: - Fri, 06 Dec 2019 00:10:55 GMT etag: - '"1D5ABC99EB6FE6B"' +======= + - '3564' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:01 GMT + etag: + - '"1D59A120B7D1555"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1420,20 +1807,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3559' content-type: - application/json @@ -1441,6 +1838,15 @@ interactions: - Fri, 06 Dec 2019 00:10:56 GMT etag: - '"1D5ABC99EB6FE6B"' +======= + - '3564' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:03 GMT + etag: + - '"1D59A120B7D1555"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1480,16 +1886,22 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1508,11 +1928,15 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:56 GMT +======= + - Wed, 13 Nov 2019 11:04:04 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1546,20 +1970,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3559' content-type: - application/json @@ -1567,6 +2001,15 @@ interactions: - Fri, 06 Dec 2019 00:10:56 GMT etag: - '"1D5ABC99EB6FE6B"' +======= + - '3564' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:05 GMT + etag: + - '"1D59A120B7D1555"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1602,20 +2045,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3559' content-type: - application/json @@ -1623,6 +2076,15 @@ interactions: - Fri, 06 Dec 2019 00:10:56 GMT etag: - '"1D5ABC99EB6FE6B"' +======= + - '3564' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:06 GMT + etag: + - '"1D59A120B7D1555"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1658,12 +2120,17 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -1678,7 +2145,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:57 GMT +======= + - Wed, 13 Nov 2019 11:04:06 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1714,12 +2185,17 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings/web-ssl-test000003.azurewebsites.net","name":"web-ssl-test000003/web-ssl-test000003.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West @@ -1732,9 +2208,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:10:57 GMT etag: - '"1D5ABC99EB6FE6B"' +======= + - Wed, 13 Nov 2019 11:04:07 GMT + etag: + - '"1D59A120B7D1555"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1777,20 +2259,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3516' content-type: - application/json @@ -1798,6 +2290,15 @@ interactions: - Fri, 06 Dec 2019 00:11:01 GMT etag: - '"1D5ABC99EB6FE6B"' +======= + - '3526' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:10 GMT + etag: + - '"1D59A120B7D1555"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1815,7 +2316,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '499' +======= + - '497' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1835,20 +2340,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -1856,6 +2371,15 @@ interactions: - Fri, 06 Dec 2019 00:11:02 GMT etag: - '"1D5ABC9A44725C0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:11 GMT + etag: + - '"1D59A1212E3352B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1895,16 +2419,22 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1923,11 +2461,15 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:11:03 GMT +======= + - Wed, 13 Nov 2019 11:04:12 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1941,7 +2483,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11995' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1961,20 +2507,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -1982,6 +2538,15 @@ interactions: - Fri, 06 Dec 2019 00:11:03 GMT etag: - '"1D5ABC9A44725C0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:13 GMT + etag: + - '"1D59A1212E3352B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2017,20 +2582,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -2038,6 +2613,15 @@ interactions: - Fri, 06 Dec 2019 00:11:05 GMT etag: - '"1D5ABC9A44725C0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:15 GMT + etag: + - '"1D59A1212E3352B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2077,16 +2661,22 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2105,11 +2703,15 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:11:04 GMT +======= + - Wed, 13 Nov 2019 11:04:16 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2123,7 +2725,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -2143,12 +2749,17 @@ interactions: ParameterSetName: - -g --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-02-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -2163,7 +2774,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:11:05 GMT +======= + - Wed, 13 Nov 2019 11:04:17 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2201,12 +2816,17 @@ interactions: ParameterSetName: - -g --certificate-thumbprint User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-02-01 response: body: string: '' @@ -2216,7 +2836,11 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:11:06 GMT +======= + - Wed, 13 Nov 2019 11:04:32 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2230,7 +2854,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14999' +======= + - '14996' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -2250,20 +2878,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -2271,6 +2909,15 @@ interactions: - Fri, 06 Dec 2019 00:11:06 GMT etag: - '"1D5ABC9A44725C0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:34 GMT + etag: + - '"1D59A1212E3352B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2306,20 +2953,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -2327,6 +2984,15 @@ interactions: - Fri, 06 Dec 2019 00:11:07 GMT etag: - '"1D5ABC9A44725C0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:34 GMT + etag: + - '"1D59A1212E3352B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2366,16 +3032,22 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2394,10 +3074,11 @@ interactions: cache-control: - no-cache content-length: - - '1678' + - '1114' content-type: - application/xml date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:11:07 GMT expires: - '-1' @@ -2516,6 +3197,9 @@ interactions: - Fri, 06 Dec 2019 00:11:28 GMT etag: - '"1D5ABC9A44725C0"' +======= + - Wed, 13 Nov 2019 11:04:36 GMT +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -2533,6 +3217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '499' x-powered-by: - ASP.NET @@ -4397,6 +5082,9 @@ interactions: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' +======= + - '11998' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -4416,20 +5104,30 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3514' content-type: - application/json @@ -4437,6 +5135,15 @@ interactions: - Fri, 06 Dec 2019 00:11:51 GMT etag: - '"1D5ABC9A44725C0"' +======= + - '3524' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:04:37 GMT + etag: + - '"1D59A1212E3352B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -4474,12 +5181,17 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 response: body: string: '' @@ -4489,9 +5201,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 06 Dec 2019 00:11:57 GMT etag: - '"1D5ABC9A44725C0"' +======= + - Wed, 13 Nov 2019 11:04:44 GMT + etag: + - '"1D59A1212E3352B"' +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -4505,7 +5223,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14998' +======= + - '14994' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml deleted file mode 100644 index 179a2e25201..00000000000 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml +++ /dev/null @@ -1,162 +0,0 @@ -interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-05-27T16:37:17Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-27T16:37:17Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 May 2019 16:37:18 GMT - expires: - - '-1' - pragma: - - no-cache - 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: - - webapp webjob triggered list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs?api-version=2018-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs/test-triggered","name":"cliTestApp/test-triggered","type":"Microsoft.Web/sites/triggeredwebjobs","location":"West - US","properties":{"latest_run":{"id":"201905152138309173","name":"201905152138309173","status":"Aborted","start_time":"2019-05-15T21:38:30.9173992Z","end_time":"0001-01-01T00:00:00","duration":"11.18:58:50.9297920","output_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/201905152138309173/output_log.txt","error_url":null,"url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history/201905152138309173","job_name":"test-triggered","trigger":"Schedule - - 0 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58 - * * * *"},"history_url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history","scheduler_logs_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/job_scheduler.log","name":"test-triggered","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/triggered/test-triggered","type":"triggered","error":null,"using_sdk":false,"settings":{"schedule":"0 - 0/2 * * * *"}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1437' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 May 2019 16:37:21 GMT - etag: - - '"6ab79922"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 27 May 2019 16:37:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHT1VZVEYyVzJWUFEyNkVPV09XSFBHTk9CUTdHUVJQWVFUTnwxMjA5NDk1NzEwNEQyM0ZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml index 30ed0e23efa..005467dcc3f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_update000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:54:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:54:37 GMT + - Wed, 13 Nov 2019 11:09:25 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:39 GMT + - Wed, 13 Nov 2019 11:09:26 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1187' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_update000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:54:34Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:54:39 GMT + - Wed, 13 Nov 2019 11:09:26 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,17 +177,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","name":"webapp-update-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20874,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_20874","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":145438,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145438","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1576' + - '1578' content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:51 GMT + - Wed, 13 Nov 2019 11:09:33 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1157' + - '1172' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,17 +234,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","name":"webapp-update-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20874,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_20874","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":145438,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145438","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1576' + - '1578' content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:53 GMT + - Wed, 13 Nov 2019 11:09:36 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:54 GMT + - Wed, 13 Nov 2019 11:09:37 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1191' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,17 +349,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","name":"webapp-update-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":20874,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_20874","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":145438,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145438","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1576' + - '1578' content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:55 GMT + - Wed, 13 Nov 2019 11:09:38 GMT expires: - '-1' pragma: @@ -385,8 +385,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -397,33 +396,33 @@ interactions: Connection: - keep-alive Content-Length: - - '554' + - '536' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:00.26","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1FDFE5D638CCEA9DF7EBC08C2894F70AB59DD37273AB6D269626EC5E9C693082","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:41.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3730' + - '3738' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:15 GMT + - Wed, 13 Nov 2019 11:09:58 GMT etag: - - '"1D587FDFC66C44B"' + - '"1D59A12D94A9450"' expires: - '-1' pragma: @@ -441,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -466,29 +465,23 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/publishxml?api-version=2018-02-01 response: body: string: @@ -496,11 +489,11 @@ interactions: cache-control: - no-cache content-length: - - '1938' + - '1294' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:55:17 GMT + - Wed, 13 Nov 2019 11:09:58 GMT expires: - '-1' pragma: @@ -514,7 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11994' x-powered-by: - ASP.NET status: @@ -535,26 +528,26 @@ interactions: - -g -n --client-affinity-enabled --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:00.8366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1FDFE5D638CCEA9DF7EBC08C2894F70AB59DD37273AB6D269626EC5E9C693082","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:42.293","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3733' + - '3737' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:18 GMT + - Wed, 13 Nov 2019 11:10:01 GMT etag: - - '"1D587FDFC66C44B"' + - '"1D59A12D94A9450"' expires: - '-1' pragma: @@ -602,26 +595,26 @@ interactions: - -g -n --client-affinity-enabled --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:21.53","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1FDFE5D638CCEA9DF7EBC08C2894F70AB59DD37273AB6D269626EC5E9C693082","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:03.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3761' + - '3769' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:25 GMT + - Wed, 13 Nov 2019 11:10:04 GMT etag: - - '"1D587FDFC66C44B"' + - '"1D59A12D94A9450"' expires: - '-1' pragma: @@ -660,26 +653,26 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:21.53","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1FDFE5D638CCEA9DF7EBC08C2894F70AB59DD37273AB6D269626EC5E9C693082","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:03.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3759' + - '3767' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:27 GMT + - Wed, 13 Nov 2019 11:10:06 GMT etag: - - '"1D587FE08BC51A0"' + - '"1D59A12E5D184E0"' expires: - '-1' pragma: @@ -723,26 +716,26 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1","name":"webapp-update-test000002/s1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:33.6433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__645b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"51487D7F435490C5ED9F60CB121FFE0E86E514887ABB4A8C6516BE45ADE5FBF8","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:09.953","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__c39d","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF221DBBA07FD890E331725B298F968774B74689419E10060E1DB5F4FE413BFE","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3782' + - '3786' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:50 GMT + - Wed, 13 Nov 2019 11:10:25 GMT etag: - - '"1D587FE08BC51A0"' + - '"1D59A12E5D184E0"' expires: - '-1' pragma: @@ -760,7 +753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -781,26 +774,26 @@ interactions: - -g -n -s --client-affinity-enabled User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1","name":"webapp-update-test000002/s1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:34.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__645b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"51487D7F435490C5ED9F60CB121FFE0E86E514887ABB4A8C6516BE45ADE5FBF8","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:10.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__c39d","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF221DBBA07FD890E331725B298F968774B74689419E10060E1DB5F4FE413BFE","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3775' + - '3784' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:52 GMT + - Wed, 13 Nov 2019 11:10:27 GMT etag: - - '"1D587FE1038D2A0"' + - '"1D59A12EA110350"' expires: - '-1' pragma: @@ -848,26 +841,26 @@ interactions: - -g -n -s --client-affinity-enabled User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1","name":"webapp-update-test000002/s1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:55:54.7333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__645b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"51487D7F435490C5ED9F60CB121FFE0E86E514887ABB4A8C6516BE45ADE5FBF8","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:28.1","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__c39d","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF221DBBA07FD890E331725B298F968774B74689419E10060E1DB5F4FE413BFE","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3781' + - '3783' content-type: - application/json date: - - Mon, 21 Oct 2019 10:55:55 GMT + - Wed, 13 Nov 2019 11:10:28 GMT etag: - - '"1D587FE1038D2A0"' + - '"1D59A12EA110350"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml index fefb8adb8c0..d3c7788e04f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml @@ -21,7 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-17T23:11:10Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -30,7 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:14 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:13 GMT +======= + - Wed, 13 Nov 2019 11:09:23 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -64,8 +80,17 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -73,15 +98,37 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1223359a-3691-4865-ad41-b55ae59d3abf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"resourceGuid\": \"fdb79e0d-9bb9-477c-9b2b-55875c87e30c\",\r\n \"addressSpace\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"f591d4e1-cd06-4001-85a9-bb18440a38f0\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"603abb25-8958-4bad-9c73-7fee8423200f\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"b437b93b-b720-40ca-af73-59b824ddd2c0\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"f8015ce3-c97a-4ceb-92c5-520f6c0f7226\",\r\n \"addressSpace\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1223359a-3691-4865-ad41-b55ae59d3abf\\\"\",\r\n +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"f591d4e1-cd06-4001-85a9-bb18440a38f0\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"b437b93b-b720-40ca-af73-59b824ddd2c0\\\"\",\r\n +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -90,7 +137,15 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f67ff03-8bef-427f-9be3-11233d5b57ea?api-version=2019-09-01 +======= +<<<<<<< HEAD + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac3a76b6-c475-46e7-bbe6-b9a7b44d4b5c?api-version=2019-09-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1392e8eb-deae-46b2-b081-33c421060832?api-version=2019-09-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service cache-control: - no-cache content-length: @@ -98,7 +153,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:16 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:16 GMT +======= + - Wed, 13 Nov 2019 11:09:27 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -111,9 +174,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - a0ecb030-d8d3-48e1-baa3-84e00e729bf4 x-ms-ratelimit-remaining-subscription-writes: - '1198' +======= +<<<<<<< HEAD + - 778294c6-5dbc-4c95-8d9e-349b15276fe5 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' +======= + - d0f42550-0908-4725-a7d0-bd9a1021a140 + x-ms-ratelimit-remaining-subscription-writes: + - '1181' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 201 message: Created @@ -131,10 +206,21 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET +<<<<<<< HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f67ff03-8bef-427f-9be3-11233d5b57ea?api-version=2019-09-01 +======= + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac3a76b6-c475-46e7-bbe6-b9a7b44d4b5c?api-version=2019-09-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1392e8eb-deae-46b2-b081-33c421060832?api-version=2019-09-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -146,7 +232,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:18 GMT +======= + - Wed, 13 Nov 2019 11:09:31 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -163,7 +257,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 8eba40dc-b129-4d6f-92fe-cdf7d5a77e93 +======= +<<<<<<< HEAD + - 294da45c-99cb-4402-bcd4-461aed81acfc +======= + - 565d2be0-bebf-4103-8e9b-d8cb83381cd1 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -181,22 +283,53 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"resourceGuid\": \"fdb79e0d-9bb9-477c-9b2b-55875c87e30c\",\r\n \"addressSpace\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"deaca25e-444b-48a3-997c-c14ab5bc8703\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"603abb25-8958-4bad-9c73-7fee8423200f\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"f8015ce3-c97a-4ceb-92c5-520f6c0f7226\",\r\n \"addressSpace\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"deaca25e-444b-48a3-997c-c14ab5bc8703\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -211,9 +344,21 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT etag: - W/"60592257-15f5-4efe-a75e-627e48d7ef21" +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:18 GMT + etag: + - W/"deaca25e-444b-48a3-997c-c14ab5bc8703" +======= + - Wed, 13 Nov 2019 11:09:31 GMT + etag: + - W/"9a5b08a2-353f-44f9-b7eb-041f1b697afb" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -230,7 +375,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 9e161d45-e18d-489e-818c-88c8681140d5 +======= +<<<<<<< HEAD + - 521373f3-26f7-45de-a17e-a55aa571bbfa +======= + - 0e81574b-96e4-43ee-90ec-3a0a10fac0d7 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -256,7 +409,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-17T23:11:10Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -265,7 +426,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:20 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:20 GMT +======= + - Wed, 13 Nov 2019 11:09:33 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -298,8 +467,17 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -315,7 +493,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:21 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:20 GMT +======= + - Wed, 13 Nov 2019 11:09:34 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -333,7 +519,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1188' x-powered-by: - ASP.NET status: @@ -361,7 +547,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= +<<<<<<< HEAD + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-17T23:11:10Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -370,7 +564,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:20 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:20 GMT +======= + - Wed, 13 Nov 2019 11:09:34 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -403,8 +605,17 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -412,8 +623,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= +<<<<<<< HEAD + US","properties":{"serverFarmId":23337,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23337","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= + US","properties":{"serverFarmId":25610,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -422,7 +643,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:26 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:26 GMT +======= + - Wed, 13 Nov 2019 11:09:45 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -440,7 +669,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= +<<<<<<< HEAD + - '1199' +======= + - '1186' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -460,8 +697,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -469,8 +715,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= +<<<<<<< HEAD + US","properties":{"serverFarmId":23337,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23337","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= + US","properties":{"serverFarmId":25610,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -479,7 +735,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:26 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:27 GMT +======= + - Wed, 13 Nov 2019 11:09:46 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -520,8 +784,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST @@ -537,7 +810,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:27 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:26 GMT +======= + - Wed, 13 Nov 2019 11:09:47 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -555,7 +836,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1190' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -575,8 +860,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -584,8 +878,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= +<<<<<<< HEAD + US","properties":{"serverFarmId":23337,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23337","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= + US","properties":{"serverFarmId":25610,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -594,7 +898,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:27 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:28 GMT +======= + - Wed, 13 Nov 2019 11:09:48 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -620,8 +932,12 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], +<<<<<<< HEAD "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}''' +======= + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' +>>>>>>> Re-record test for app service headers: Accept: - application/json @@ -632,33 +948,72 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD - '558' +======= + - '520' +>>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:30.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"47DDC8D312FD4E7B4E131F59B3F5252FCF54C49F046B76F2C89DF9011F56BFD0","kind":"app","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"13.91.97.179,13.91.103.21,13.91.99.109","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-17T23:11:29.9833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AB1C7EE1D87A4539A3BFBEE4406496B037D61DC2E250B12C494BF1B89EA96BFA","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"104.40.12.222,104.40.2.67,104.40.9.121","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:51.85","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7EB61A8421B57265091B3591B6F91C39F567A54318A335173483E8039FB65F5","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"13.64.105.5,13.64.108.146","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3569' +======= +<<<<<<< HEAD + - '3568' +>>>>>>> Re-record test for app service content-type: - application/json date: - Mon, 30 Dec 2019 20:26:46 GMT etag: +<<<<<<< HEAD - '"1D5BF4F6B7F70D5"' +======= + - '"1D5B52F512A1360"' +======= + - '3543' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:10:10 GMT + etag: + - '"1D59A12DF430D60"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -676,7 +1031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -700,17 +1055,31 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/publishxml?api-version=2018-02-01 response: body: string: >>>>>> Re-record test for app service destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -728,11 +1110,19 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:46 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:47 GMT +======= + - Wed, 13 Nov 2019 11:10:11 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -746,7 +1136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11994' x-powered-by: - ASP.NET status: @@ -766,24 +1156,57 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 response: body: +<<<<<<< HEAD string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnameg4ued677fgugi2h","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetage4k2a5osssu","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +======= +<<<<<<< HEAD + string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"603abb25-8958-4bad-9c73-7fee8423200f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +======= + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmyerjgVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"e1506c1e-de72-4fc4-94a9-8e2848212088","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmyerjgSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET/subnets/clitest-vmyerjgSubnet","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/networkInterfaces/clitest-vmyerjgVMNic/ipConfigurations/ipconfigclitest-vmyerjg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vm7iwncVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ce8c76a2-8bc7-436f-ba35-6f0314704350","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vm7iwncSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET/subnets/clitest-vm7iwncSubnet","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/networkInterfaces/clitest-vm7iwncVMNic/ipConfigurations/ipconfigclitest-vm7iwnc"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmp2c42VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ec0373e6-fdb6-4d6a-aa0b-a2d756bb4651","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmp2c42Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET/subnets/clitest-vmp2c42Subnet","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/networkInterfaces/clitest-vmp2c42VMNic/ipConfigurations/ipconfigclitest-vmp2c42"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"477e2cdb-b50d-4829-bfa6-f82cb1c3bf33","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":["10.0.0.4"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"efdc4136-b9bf-4894-b8c3-b30b98bdb97f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmmqas2VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"386ac8b2-f17e-499b-beb3-454b89cb8f4c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmmqas2Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET/subnets/clitest-vmmqas2Subnet","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/networkInterfaces/clitest-vmmqas2VMNic/ipConfigurations/ipconfigclitest-vmmqas2"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"my-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b939522c-51ed-46f3-9947-5c46cc2c709a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"my-subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet1","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/networkInterfaces/my-nic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm4s3yyw5VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"84e38c1c-bf5d-40d3-8285-44aee940dec4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm4s3yyw5Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET/subnets/clisqlvm4s3yyw5Subnet","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvm4s3yyw5VMNic/ipConfigurations/ipconfigclisqlvm4s3yyw5"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvmxkluncgVMNic/ipConfigurations/ipconfigclisqlvmxkluncg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm2jizpe4VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b8115f8e-6c00-46ff-beed-9b5e74c2ac69","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm2jizpe4Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET/subnets/clisqlvm2jizpe4Subnet","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm2jizpe4VMNic/ipConfigurations/ipconfigclisqlvm2jizpe4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvmmlvodkmVMNic/ipConfigurations/ipconfigclisqlvmmlvodkm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm4ctxzwhVMNic/ipConfigurations/ipconfigclisqlvm4ctxzwh"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ddsfsfee","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/ddsfsfee","etag":"W/\"5fd2815d-f428-40fc-b33b-08af9909f094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90bf8295-7548-4a89-b09c-a1f84a266d8f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '16972' content-type: - application/json; charset=utf-8 date: - Mon, 30 Dec 2019 20:26:46 GMT +======= +<<<<<<< HEAD + - '15076' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Dec 2019 23:11:47 GMT +======= + - '21558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 11:10:12 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -795,9 +1218,22 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: +<<<<<<< HEAD - 6dd3fbd8-5b0b-4ca4-94bf-f8f65e1db865 - d5a493a6-35cd-4577-b8fb-0d8e888cdbdf - de94027d-45d8-468e-8663-06ca303ade8b +======= +<<<<<<< HEAD + - 346257c8-e044-480f-9df6-22ffda24c71b + - 51b97335-f4f3-4b24-b3cb-601f8299bf24 + - a95d9ef8-7202-4e58-a3f6-ef0e81bf8827 +======= + - 574358d0-253a-474c-9f30-0cb06e3ef07a + - 5aad1968-0211-4da5-a436-32041bfe5bb7 + - a0bade7d-1b91-4fa2-a6ab-15a6292429a4 + - 1082c626-0d98-4439-9ba6-b1e845e631ce +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -815,27 +1251,62 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:30.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"47DDC8D312FD4E7B4E131F59B3F5252FCF54C49F046B76F2C89DF9011F56BFD0","kind":"app","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"13.91.97.179,13.91.103.21,13.91.99.109","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= +<<<<<<< HEAD + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-17T23:11:30.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AB1C7EE1D87A4539A3BFBEE4406496B037D61DC2E250B12C494BF1B89EA96BFA","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"104.40.12.222,104.40.2.67,104.40.9.121","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:52.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7EB61A8421B57265091B3591B6F91C39F567A54318A335173483E8039FB65F5","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"13.64.105.5,13.64.108.146","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3572' +======= +<<<<<<< HEAD + - '3561' +>>>>>>> Re-record test for app service content-type: - application/json date: - Mon, 30 Dec 2019 20:26:47 GMT etag: +<<<<<<< HEAD - '"1D5BF4F6B7F70D5"' +======= + - '"1D5B52F512A1360"' +======= + - '3541' + content-type: + - application/json + date: + - Wed, 13 Nov 2019 11:10:14 GMT + etag: + - '"1D59A12DF430D60"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -871,24 +1342,57 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 response: body: +<<<<<<< HEAD string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnameg4ued677fgugi2h","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetage4k2a5osssu","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +======= +<<<<<<< HEAD + string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"603abb25-8958-4bad-9c73-7fee8423200f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +======= + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmyerjgVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"e1506c1e-de72-4fc4-94a9-8e2848212088","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmyerjgSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET/subnets/clitest-vmyerjgSubnet","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/networkInterfaces/clitest-vmyerjgVMNic/ipConfigurations/ipconfigclitest-vmyerjg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vm7iwncVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ce8c76a2-8bc7-436f-ba35-6f0314704350","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vm7iwncSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET/subnets/clitest-vm7iwncSubnet","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/networkInterfaces/clitest-vm7iwncVMNic/ipConfigurations/ipconfigclitest-vm7iwnc"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmp2c42VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ec0373e6-fdb6-4d6a-aa0b-a2d756bb4651","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmp2c42Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET/subnets/clitest-vmp2c42Subnet","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/networkInterfaces/clitest-vmp2c42VMNic/ipConfigurations/ipconfigclitest-vmp2c42"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"477e2cdb-b50d-4829-bfa6-f82cb1c3bf33","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":["10.0.0.4"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"efdc4136-b9bf-4894-b8c3-b30b98bdb97f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmmqas2VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"386ac8b2-f17e-499b-beb3-454b89cb8f4c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmmqas2Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET/subnets/clitest-vmmqas2Subnet","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/networkInterfaces/clitest-vmmqas2VMNic/ipConfigurations/ipconfigclitest-vmmqas2"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"my-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b939522c-51ed-46f3-9947-5c46cc2c709a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"my-subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet1","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/networkInterfaces/my-nic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm4s3yyw5VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"84e38c1c-bf5d-40d3-8285-44aee940dec4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm4s3yyw5Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET/subnets/clisqlvm4s3yyw5Subnet","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvm4s3yyw5VMNic/ipConfigurations/ipconfigclisqlvm4s3yyw5"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvmxkluncgVMNic/ipConfigurations/ipconfigclisqlvmxkluncg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm2jizpe4VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b8115f8e-6c00-46ff-beed-9b5e74c2ac69","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm2jizpe4Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET/subnets/clisqlvm2jizpe4Subnet","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm2jizpe4VMNic/ipConfigurations/ipconfigclisqlvm2jizpe4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvmmlvodkmVMNic/ipConfigurations/ipconfigclisqlvmmlvodkm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm4ctxzwhVMNic/ipConfigurations/ipconfigclisqlvm4ctxzwh"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ddsfsfee","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/ddsfsfee","etag":"W/\"5fd2815d-f428-40fc-b33b-08af9909f094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90bf8295-7548-4a89-b09c-a1f84a266d8f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '16972' content-type: - application/json; charset=utf-8 date: - Mon, 30 Dec 2019 20:26:48 GMT +======= +<<<<<<< HEAD + - '15076' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 17 Dec 2019 23:11:48 GMT +======= + - '21558' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 11:10:15 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -900,9 +1404,22 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: +<<<<<<< HEAD - ac1aaf15-2601-47ed-9d04-5392ebdefbbb - 5f64a3d5-b35b-49b1-87a4-69e9f8a15e68 - 3099f39f-643e-45e4-990d-0d32bf25babb +======= +<<<<<<< HEAD + - 2f5d977c-6242-4bf2-99cc-84cbb38368b5 + - 38fe4b5d-5463-47f2-871f-bd5e6d6de824 + - 3aa62c91-803c-4b30-a47c-b2db23b22e33 +======= + - 8bda761f-acfe-46e6-b206-6963a58bf168 + - 48f08ca5-fae4-42b3-8d5f-d5003170c2f8 + - 924990fd-5729-41c7-a34d-5dc3766d5b49 + - 733ebe11-4106-49f2-9f18-4ac067019c61 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -920,12 +1437,21 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/config/virtualNetwork","name":"virtualNetwork","type":"Microsoft.Web/sites/config","location":"West @@ -938,9 +1464,19 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:48 GMT etag: - '"1D5BF4F6B7F70D5"' +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:48 GMT + etag: + - '"1D5B52F512A1360"' +======= + - Wed, 13 Nov 2019 11:10:16 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -976,8 +1512,17 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -985,7 +1530,15 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n \"properties\": +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"deaca25e-444b-48a3-997c-c14ab5bc8703\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n \"properties\": +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -998,9 +1551,21 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:48 GMT etag: - W/"60592257-15f5-4efe-a75e-627e48d7ef21" +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:48 GMT + etag: + - W/"deaca25e-444b-48a3-997c-c14ab5bc8703" +======= + - Wed, 13 Nov 2019 11:10:16 GMT + etag: + - W/"9a5b08a2-353f-44f9-b7eb-041f1b697afb" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1017,7 +1582,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 93d69467-9d70-4aca-a2ce-be7b931350c8 +======= +<<<<<<< HEAD + - 8152c3d2-eee5-46b2-b084-d4017f1b8651 +======= + - 620a2ba0-87b1-450e-97dd-33175b99e76c +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1042,8 +1615,17 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: PUT @@ -1051,11 +1633,27 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"805dfad2-4003-4f7d-9d03-ec788db80d13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n \ \"etag\": \"W/\\\"805dfad2-4003-4f7d-9d03-ec788db80d13\\\"\",\r\n +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"e01b8237-0125-487a-93a9-ee38f5a14771\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"e01b8237-0125-487a-93a9-ee38f5a14771\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"96855493-ffc7-4874-a8ea-2561ac442265\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"96855493-ffc7-4874-a8ea-2561ac442265\\\"\",\r\n +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1065,7 +1663,15 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc28c162-5a9a-4cd2-9ab7-57e256f3e529?api-version=2019-09-01 +======= +<<<<<<< HEAD + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b427a041-32b2-47f9-9f5f-ea12e2b4ab26?api-version=2019-09-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38fdbae2-df71-44a0-b050-033cec22411f?api-version=2019-09-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service cache-control: - no-cache content-length: @@ -1073,7 +1679,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:49 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:49 GMT +======= + - Wed, 13 Nov 2019 11:10:17 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1090,9 +1704,21 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - a460f621-4479-4c87-8b37-3e7bcf561a0d x-ms-ratelimit-remaining-subscription-writes: - '1198' +======= +<<<<<<< HEAD + - 249a3799-1a8a-4995-8169-4115a22a7731 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' +======= + - 48e50bd1-ce21-46a8-bf25-6c522bbc379f + x-ms-ratelimit-remaining-subscription-writes: + - '1176' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1110,8 +1736,17 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET @@ -1119,11 +1754,27 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"5c844416-9fd8-4961-98e2-5a591a97f97b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n \ \"etag\": \"W/\\\"5c844416-9fd8-4961-98e2-5a591a97f97b\\\"\",\r\n +======= +<<<<<<< HEAD + \ \"etag\": \"W/\\\"eb1379bb-1f1b-4f51-9615-fcaa5847d409\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"eb1379bb-1f1b-4f51-9615-fcaa5847d409\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"805eb4c1-f487-4ecf-a654-263b4cc8ba4d\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"805eb4c1-f487-4ecf-a654-263b4cc8ba4d\\\"\",\r\n +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1139,9 +1790,21 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:49 GMT etag: - W/"5c844416-9fd8-4961-98e2-5a591a97f97b" +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:49 GMT + etag: + - W/"eb1379bb-1f1b-4f51-9615-fcaa5847d409" +======= + - Wed, 13 Nov 2019 11:10:18 GMT + etag: + - W/"805eb4c1-f487-4ecf-a654-263b4cc8ba4d" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1158,7 +1821,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 42f40ac0-b45f-403d-83fe-8ad318576ba1 +======= +<<<<<<< HEAD + - 71242f57-1d3f-4d92-bb80-822991dfcef4 +======= + - d778e867-d6d0-4360-9519-b08c9c875168 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1181,12 +1852,19 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38fdbae2-df71-44a0-b050-033cec22411f?api-version=2019-09-01 +>>>>>>> Re-record test for app service response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/config/virtualNetwork","name":"virtualNetwork","type":"Microsoft.Web/sites/config","location":"West @@ -1199,9 +1877,19 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:51 GMT etag: - '"1D5BF4F6B7F70D5"' +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:51 GMT + etag: + - '"1D5B52F512A1360"' +======= + - Wed, 13 Nov 2019 11:10:22 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1218,10 +1906,15 @@ interactions: - 4.0.30319 x-content-type-options: - nosniff +<<<<<<< HEAD x-ms-ratelimit-remaining-subscription-writes: - '1199' x-powered-by: - ASP.NET +======= + x-ms-arm-service-request-id: + - b9a844bf-8790-4457-91eb-a6f18dead0b8 +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1239,25 +1932,80 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US +======= + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-11-01 response: body: +<<<<<<< HEAD string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/fdb79e0d-9bb9-477c-9b2b-55875c87e30c_swiftsubnet000004","name":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' +======= +<<<<<<< HEAD + string: "{\r\n \"status\": \"Succeeded\"\r\n}" +======= + string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n + \ \"etag\": \"W/\\\"36fde0fa-02cb-4a59-a8ff-796dad1b13d1\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n + \ \"etag\": \"W/\\\"36fde0fa-02cb-4a59-a8ff-796dad1b13d1\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Web/serverfarms\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003\",\r\n + \ \"allowDelete\": false,\r\n \"locations\": []\r\n }\r\n + \ }\r\n ],\r\n \"delegations\": [\r\n {\r\n \"name\": + \"delegation\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"36fde0fa-02cb-4a59-a8ff-796dad1b13d1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": + [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '830' +======= +<<<<<<< HEAD + - '29' +>>>>>>> Re-record test for app service content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:52 GMT +======= + - Tue, 17 Dec 2019 23:11:52 GMT +======= + - '2329' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 13 Nov 2019 11:10:22 GMT + etag: + - W/"36fde0fa-02cb-4a59-a8ff-796dad1b13d1" +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1274,8 +2022,17 @@ interactions: - 4.0.30319 x-content-type-options: - nosniff +<<<<<<< HEAD x-powered-by: - ASP.NET +======= + x-ms-arm-service-request-id: +<<<<<<< HEAD + - 8abe86c8-04d8-4089-9418-ceac224c2612 +======= + - 22dd1baa-86d4-42b1-becf-500dc647ed43 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1293,10 +2050,23 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET +<<<<<<< HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc28c162-5a9a-4cd2-9ab7-57e256f3e529?api-version=2019-09-01 +======= + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004?api-version=2019-09-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-02-01 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1308,7 +2078,19 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:52 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:52 GMT + etag: + - W/"b09ee5ce-3b76-49f9-a3ab-b7ee5c8dcefc" +======= + - Wed, 13 Nov 2019 11:10:23 GMT + etag: + - '"1D59A12DF430D60"' +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1324,8 +2106,19 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff +<<<<<<< HEAD x-ms-arm-service-request-id: +<<<<<<< HEAD - 510467d7-83bc-4086-845d-1b794e2163ab +======= + - 458cb996-fe81-46ff-8031-108046a3f4f1 +======= + x-ms-ratelimit-remaining-subscription-writes: + - '1173' + x-powered-by: + - ASP.NET +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1343,7 +2136,9 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004?api-version=2019-09-01 @@ -1370,6 +2165,25 @@ interactions: \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-02-01 + response: + body: +<<<<<<< HEAD + string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/603abb25-8958-4bad-9c73-7fee8423200f_swiftsubnet000004","name":"603abb25-8958-4bad-9c73-7fee8423200f_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West +======= + string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/f8015ce3-c97a-4ceb-92c5-520f6c0f7226_swiftsubnet000004","name":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West +>>>>>>> Re-record test for app service + US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' +>>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -1378,9 +2192,17 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:52 GMT etag: - W/"08ae915b-8028-457c-aa82-997febfa2bbc" +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:11:53 GMT +======= + - Wed, 13 Nov 2019 11:10:24 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1417,12 +2239,21 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-02-01 response: body: string: '' @@ -1432,7 +2263,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:40 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:12:42 GMT +======= + - Wed, 13 Nov 2019 11:10:28 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: @@ -1446,7 +2285,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14999' +======= + - '14989' +>>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -1466,12 +2309,21 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-02-01 response: body: string: '[]' @@ -1483,7 +2335,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:40 GMT +======= +<<<<<<< HEAD + - Tue, 17 Dec 2019 23:12:43 GMT +======= + - Wed, 13 Nov 2019 11:10:29 GMT +>>>>>>> Re-record test for app service +>>>>>>> Re-record test for app service expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml index e98efb9059d..b89b58d56e8 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:44:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:44:58 GMT + - Wed, 13 Nov 2019 10:57:18 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:44:58 GMT + - Wed, 13 Nov 2019 10:57:19 GMT expires: - '-1' pragma: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:44:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:14Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:44:59 GMT + - Wed, 13 Nov 2019 10:57:20 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31295,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_31295","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":29490,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29490","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:07 GMT + - Wed, 13 Nov 2019 10:57:27 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31295,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_31295","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":29490,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29490","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:09 GMT + - Wed, 13 Nov 2019 10:57:29 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:11 GMT + - Wed, 13 Nov 2019 10:57:29 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31295,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_31295","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":29490,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29490","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:11 GMT + - Wed, 13 Nov 2019 10:57:30 GMT expires: - '-1' pragma: @@ -403,15 +403,15 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:45:16.243","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"371CCEB59329FE2ADC8004B826D292697F29E6E82E44B558D817C46E2C35AADE","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:33.397","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D2972CC26E15E1D09EBE5BAC8733C15556903438ADF564BE6C32752F4356600F","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -420,9 +420,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:34 GMT + - Wed, 13 Nov 2019 10:57:50 GMT etag: - - '"1D587FCA05C9CB0"' + - '"1D59A112727A9D0"' expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '495' x-powered-by: - ASP.NET status: @@ -461,15 +461,15 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:45:16.923","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"371CCEB59329FE2ADC8004B826D292697F29E6E82E44B558D817C46E2C35AADE","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:33.933","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D2972CC26E15E1D09EBE5BAC8733C15556903438ADF564BE6C32752F4356600F","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -478,9 +478,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:34 GMT + - Wed, 13 Nov 2019 10:57:51 GMT etag: - - '"1D587FCA05C9CB0"' + - '"1D59A112727A9D0"' expires: - '-1' pragma: @@ -522,28 +522,26 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3101' + - '2903' content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:35 GMT + - Wed, 13 Nov 2019 10:57:53 GMT etag: - - '"1D587FCA05C9CB0"' + - '"1D59A112727A9D0"' expires: - '-1' pragma: @@ -561,7 +559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1193' x-powered-by: - ASP.NET status: @@ -582,7 +580,7 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -598,7 +596,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:36 GMT + - Wed, 13 Nov 2019 10:57:53 GMT expires: - '-1' pragma: @@ -635,11 +633,11 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web","name":"webapp-quick000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -652,9 +650,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:37 GMT + - Wed, 13 Nov 2019 10:57:54 GMT etag: - - '"1D587FCABB5E2B0"' + - '"1D59A11325B6670"' expires: - '-1' pragma: @@ -695,26 +693,21 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2018-02-01 response: body: string: @@ -722,11 +715,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:45:39 GMT + - Wed, 13 Nov 2019 10:57:55 GMT expires: - '-1' pragma: @@ -740,7 +733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -763,11 +756,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -780,7 +773,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:41 GMT + - Wed, 13 Nov 2019 10:57:57 GMT expires: - '-1' pragma: @@ -819,11 +812,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West @@ -836,7 +829,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:42 GMT + - Wed, 13 Nov 2019 10:57:57 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml index 52a2f58def4..f0ea37cd50b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:12 GMT + - Wed, 13 Nov 2019 10:57:24 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:13 GMT + - Wed, 13 Nov 2019 10:57:25 GMT expires: - '-1' pragma: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:45:13 GMT + - Wed, 13 Nov 2019 10:57:25 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28584,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-055_28584","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":29491,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29491","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:19 GMT + - Wed, 13 Nov 2019 10:57:46 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1161' + - '1196' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28584,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-055_28584","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":29491,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29491","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:21 GMT + - Wed, 13 Nov 2019 10:57:47 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:23 GMT + - Wed, 13 Nov 2019 10:57:48 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28584,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-055_28584","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":29491,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29491","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:24 GMT + - Wed, 13 Nov 2019 10:57:48 GMT expires: - '-1' pragma: @@ -396,15 +396,15 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 + string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 (Oracle)","runtimeVersion":"1.7.0_51","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_71 (Oracle)","runtimeVersion":"1.7.0_71","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_80 (Oracle)","runtimeVersion":"1.7.0_80","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_191 @@ -425,17 +425,17 @@ interactions: (Azul)","runtimeVersion":"1.8.0_202_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.8.0_212 (Azul)","runtimeVersion":"1.8.0_212_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"11","runtimeVersion":"11","isDefault":false,"minorVersions":[{"displayVersion":"11.0.2 (Azul)","runtimeVersion":"11.0.2_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"11.0.3 - (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null},{"name":"java","display":"Java - SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null}]}}],"nextLink":null,"id":null}' + (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java + SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17083' content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:26 GMT + - Wed, 13 Nov 2019 10:57:49 GMT expires: - '-1' pragma: @@ -479,26 +479,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:45:30.093","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7D21DBF7BF95B05B49503163FFFFABEAE2968DCD99888B2BCC0B9FB6B08FC432","kind":"app","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:53.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DA9BDA4A8D3ACFF3B70FCB998ECEE3E5F23A54CD296DA7B2E88DB67FBB3618D1","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3540' + - '3527' content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:45 GMT + - Wed, 13 Nov 2019 10:58:09 GMT etag: - - '"1D587FCA8713F00"' + - '"1D59A113347E950"' expires: - '-1' pragma: @@ -537,26 +537,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:45:30.48","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7D21DBF7BF95B05B49503163FFFFABEAE2968DCD99888B2BCC0B9FB6B08FC432","kind":"app","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:54.277","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DA9BDA4A8D3ACFF3B70FCB998ECEE3E5F23A54CD296DA7B2E88DB67FBB3618D1","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3537' + - '3526' content-type: - application/json date: - - Mon, 21 Oct 2019 10:45:46 GMT + - Wed, 13 Nov 2019 10:58:12 GMT etag: - - '"1D587FCA8713F00"' + - '"1D59A113347E950"' expires: - '-1' pragma: @@ -598,11 +598,11 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -615,9 +615,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:01 GMT + - Wed, 13 Nov 2019 10:58:24 GMT etag: - - '"1D587FCBAE36230"' + - '"1D59A114565F910"' expires: - '-1' pragma: @@ -631,7 +631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1192' x-powered-by: - ASP.NET status: @@ -652,14 +652,14 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-10-21T10:46:24.2759668 - https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-10-21_10-46-13Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T10:58:48.1156308 + https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_10-58-37Z"}}' headers: cache-control: - no-cache @@ -668,9 +668,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:34 GMT + - Wed, 13 Nov 2019 10:58:55 GMT etag: - - '"1D587FCBAE36230"' + - '"1D59A114565F910"' expires: - '-1' pragma: @@ -707,9 +707,9 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -722,9 +722,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:47:05 GMT + - Wed, 13 Nov 2019 10:59:26 GMT etag: - - '"1D587FCBAE36230"' + - '"1D59A114565F910"' expires: - '-1' pragma: @@ -765,28 +765,22 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/publishxml?api-version=2018-02-01 response: body: string: @@ -794,11 +788,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:47:06 GMT + - Wed, 13 Nov 2019 10:59:29 GMT expires: - '-1' pragma: @@ -840,13 +834,13 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Mon, 21 Oct 2019 10:47:43 GMT + - Wed, 13 Nov 2019 11:00:06 GMT etag: - W/"1f-5wgfifX1chdI4CmMe+Iov0qAB9Q" server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=a9a23b7ae427ed54b6edf331decc7cebe073bbee4a3186636cc3312fc76b4523;Path=/;HttpOnly;Domain=webapp-quick-cden7sr6ssn.azurewebsites.net + - ARRAffinity=573c11eabff192b5e6e11bd53ad8c3e5e49ca9948eee57dd87a42261928864c1;Path=/;HttpOnly;Domain=webapp-quick-cdoz365ig6k.azurewebsites.net vary: - Accept-Encoding x-powered-by: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml index b789e1d0a7a..50dab3f0757 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:01 GMT + - Wed, 13 Nov 2019 11:00:17 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:02 GMT + - Wed, 13 Nov 2019 11:00:18 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:45:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:12Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:46:02 GMT + - Wed, 13 Nov 2019 11:00:18 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31671,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_31671","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":21751,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21751","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:09 GMT + - Wed, 13 Nov 2019 11:00:27 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1188' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31671,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_31671","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":21751,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21751","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:10 GMT + - Wed, 13 Nov 2019 11:00:29 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:13 GMT + - Wed, 13 Nov 2019 11:00:30 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":31671,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_31671","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":21751,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21751","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:15 GMT + - Wed, 13 Nov 2019 11:00:31 GMT expires: - '-1' pragma: @@ -396,15 +396,15 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 + string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 (Oracle)","runtimeVersion":"1.7.0_51","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_71 (Oracle)","runtimeVersion":"1.7.0_71","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_80 (Oracle)","runtimeVersion":"1.7.0_80","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_191 @@ -425,17 +425,17 @@ interactions: (Azul)","runtimeVersion":"1.8.0_202_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.8.0_212 (Azul)","runtimeVersion":"1.8.0_212_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"11","runtimeVersion":"11","isDefault":false,"minorVersions":[{"displayVersion":"11.0.2 (Azul)","runtimeVersion":"11.0.2_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"11.0.3 - (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[]}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null},{"name":"java","display":"Java - SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null}]}}],"nextLink":null,"id":null}' + (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java + SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17083' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:16 GMT + - Wed, 13 Nov 2019 11:00:32 GMT expires: - '-1' pragma: @@ -479,26 +479,26 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:19.93","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C18E5265786EA32C360906DB0916C44C8A889898A79DD5E78E187A9046CE68F8","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:35.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F6FBAB6DF833FBDA4C5B11E66706DE302082C95EFA0833B1DAB2F36EC95A9C1E","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3519' + - '3534' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:36 GMT + - Wed, 13 Nov 2019 11:00:51 GMT etag: - - '"1D587FCC64BEA70"' + - '"1D59A1193C95DAB"' expires: - '-1' pragma: @@ -516,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '499' x-powered-by: - ASP.NET status: @@ -537,26 +537,26 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:46:20.567","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C18E5265786EA32C360906DB0916C44C8A889898A79DD5E78E187A9046CE68F8","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:36.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F6FBAB6DF833FBDA4C5B11E66706DE302082C95EFA0833B1DAB2F36EC95A9C1E","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3518' + - '3532' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:37 GMT + - Wed, 13 Nov 2019 11:00:52 GMT etag: - - '"1D587FCC64BEA70"' + - '"1D59A1193C95DAB"' expires: - '-1' pragma: @@ -598,28 +598,26 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3101' + - '2903' content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:38 GMT + - Wed, 13 Nov 2019 11:00:53 GMT etag: - - '"1D587FCC64BEA70"' + - '"1D59A1193C95DAB"' expires: - '-1' pragma: @@ -637,7 +635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1192' x-powered-by: - ASP.NET status: @@ -658,7 +656,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -674,7 +672,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:39 GMT + - Wed, 13 Nov 2019 11:00:54 GMT expires: - '-1' pragma: @@ -711,11 +709,11 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web","name":"webapp-quick000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -728,9 +726,9 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:40 GMT + - Wed, 13 Nov 2019 11:00:56 GMT etag: - - '"1D587FCD11D62D0"' + - '"1D59A119E677700"' expires: - '-1' pragma: @@ -771,26 +769,21 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2018-02-01 response: body: string: @@ -798,11 +791,11 @@ interactions: cache-control: - no-cache content-length: - - '1730' + - '1150' content-type: - application/xml date: - - Mon, 21 Oct 2019 10:46:40 GMT + - Wed, 13 Nov 2019 11:00:56 GMT expires: - '-1' pragma: @@ -816,7 +809,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -839,11 +832,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2018-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -856,7 +849,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:42 GMT + - Wed, 13 Nov 2019 11:00:58 GMT expires: - '-1' pragma: @@ -874,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -895,11 +888,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2018-02-01 response: body: string: '{"id":null,"name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West @@ -912,7 +905,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:46:42 GMT + - Wed, 13 Nov 2019 11:00:59 GMT expires: - '-1' pragma: From d60d3f8a51b5e04d687df0f56ff4e5f107ee5f23 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 19 Nov 2019 14:08:56 +0800 Subject: [PATCH 10/51] pass test_acr_integration_function_app --- .../appservice/tests/latest/test_webapp_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index 3738eff3de9..776da592ad2 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -702,7 +702,7 @@ def test_acr_integration_function_app(self, resource_group, storage_account): self.cmd('acr create --admin-enabled -g {} -n {} --sku Basic'.format(resource_group, acr_registry_name)) self.cmd('appservice plan create -g {} -n {} --sku S1 --is-linux' .format(resource_group, plan)) self.cmd('functionapp create -g {} -n {} -s {} --plan {} --runtime {}'.format(resource_group, functionapp, storage_account, plan, runtime)) - creds = self.cmd('acr credential show -n {}'.format(acr_registry_name)).get_output_in_json() + creds = self.cmd('acr credential show -n {} -g {}'.format(acr_registry_name, resource_group)).get_output_in_json() self.cmd('functionapp config container set -g {0} -n {1} --docker-custom-image-name {2}.azurecr.io/image-name:latest --docker-registry-server-url https://{2}.azurecr.io'.format( resource_group, functionapp, acr_registry_name), checks=[ JMESPathCheck("[?name=='DOCKER_REGISTRY_SERVER_USERNAME']|[0].value", creds['username']) From 033685f8b4674f466e8e536f90fc5532b9356a40 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 19 Nov 2019 14:24:37 +0800 Subject: [PATCH 11/51] pass test_acr_create_function_app --- .../test_acr_create_function_app.yaml | 1982 ++++++++++++++++- .../tests/latest/test_webapp_commands.py | 2 +- 2 files changed, 1978 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml index 5638742e16d..f43bc7e853f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml @@ -21,7 +21,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:02Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:20:06Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> pass test_acr_create_function_app headers: cache-control: - no-cache @@ -30,7 +34,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT +======= + - Tue, 19 Nov 2019 06:20:33 GMT +>>>>>>> pass test_acr_create_function_app expires: - '-1' pragma: @@ -71,7 +79,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:31.8216859Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.0324878+00:00","status":"disabled"}}}}' +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-19T06:20:36.6853535Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:20:48.3980303+00:00","status":"disabled"}}}}' +>>>>>>> pass test_acr_create_function_app headers: cache-control: - no-cache @@ -80,7 +92,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:36 GMT +======= + - Tue, 19 Nov 2019 06:20:48 GMT +>>>>>>> pass test_acr_create_function_app expires: - '-1' pragma: @@ -96,7 +112,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1199' +>>>>>>> pass test_acr_create_function_app status: code: 200 message: OK @@ -112,33 +132,1932 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n + - -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-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET +<<<<<<< HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' +======= + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-19T06:20:36.6853535Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:20:48.3980303+00:00","status":"disabled"}}}}' + headers: + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:20:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + 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: + - acr credential show + 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-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 + response: + body: + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"},{"name":"password2","value":"HUMUVJ=jvf1bmFeuhZt6rQXFSWoS9lxr"}]}' + headers: + cache-control: + - no-cache + content-length: + - '180' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:20:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - 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 + CommandName: + - functionapp plan create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --is-linux + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:20:06Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '431' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:20:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "japanwest", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp plan create + Connection: + - keep-alive + Content-Length: + - '145' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --sku --is-linux + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan + West","properties":{"serverFarmId":5762,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5762","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1538' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1192' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan + West","properties":{"serverFarmId":5762,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5762","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1538' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-19T06:20:13.2427285Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-19T06:20:13.2427285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T06:20:13.1958615Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1168' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: 'b''{"kind": "functionapp,linux,container", "location": "Japan West", "properties": + {"serverFarmId": "acrtestplanfunction000003", "reserved": true, "isXenon": false, + "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": + "DOCKER|functionappacrtest000004.azurecr.io/image-name:latest", "appSettings": + [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9"}, + {"name": "DOCKER_CUSTOM_IMAGE_NAME", "value": "functionappacrtest000004.azurecr.io/image-name:latest"}, + {"name": "FUNCTION_APP_EDIT_MODE", "value": "readOnly"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", + "value": "false"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, + {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, + {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}], "alwaysOn": true, + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '1426' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:21:19.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"62987909C2C65518CEFF743A08CC0A5F60552CD2FDBEB960F4A3D9637086B12B","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3714' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:38 GMT + etag: + - '"1D59EA18EDD78E0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "Japan West", "kind": "web", "properties": {"Application_Type": + "web"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '84' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappacrtest000004?api-version=2015-05-01 + response: + body: + string: '{"error":{"code":"MissingRegistrationForLocation","message":"The subscription + is not registered for the resource type ''components'' in the location ''Japan + West''. Please re-register for this provider in order to have access to this + location."}}' + headers: + cache-control: + - no-cache + content-length: + - '242' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:21:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 409 + message: Conflict +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:21:20.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"62987909C2C65518CEFF743A08CC0A5F60552CD2FDBEB960F4A3D9637086B12B","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3712' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:39 GMT + etag: + - '"1D59EA18EDD78E0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3101' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + headers: + cache-control: + - no-cache + content-length: + - '1136' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", + "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", + "FUNCTION_APP_EDIT_MODE": "readOnly", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": + "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '874' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + headers: + cache-control: + - no-cache + content-length: + - '1136' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:42 GMT + etag: + - '"1D59EA19CB79D60"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", + "index.php"], "netFrameworkVersion": "v4.0", "phpVersion": "", "pythonVersion": + "", "nodeVersion": "", "linuxFxVersion": "DOCKER|functionappacrtest000004.azurecr.io/image-name:latest", + "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": + false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": + "$functionappacrtest000004", "scmType": "None", "use32BitWorkerProcess": true, + "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": + "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", + "https://functions-staging.azure.com", "https://functions-next.azure.com"], + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '1271' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3087' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:44 GMT + etag: + - '"1D59EA19CB79D60"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + headers: + cache-control: + - no-cache + content-length: + - '1136' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", + "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", + "FUNCTION_APP_EDIT_MODE": "readOnly", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": + "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "functionappacrtest000004.azurecr.io", + "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": + "WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '1077' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:47 GMT + etag: + - '"1D59EA19F3B8920"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 + response: + body: + string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user + --docker-registry-server-password + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3105' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 + response: + body: + string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3105' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config appsettings list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config appsettings list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 + response: + body: + string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3105' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3105' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' + headers: + cache-control: + - no-cache + content-length: + - '1333' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 + response: + body: + string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:21:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", + "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", + "FUNCTION_APP_EDIT_MODE": "readOnly", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "functionappacrtest000004.azurecr.io", + "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": + "WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + Content-Length: + - '1029' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' + headers: + cache-control: + - no-cache + content-length: + - '1287' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:22:00 GMT + etag: + - '"1D59EA1A6C95535"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", + "index.php"], "netFrameworkVersion": "v4.0", "phpVersion": "", "pythonVersion": + "", "nodeVersion": "", "linuxFxVersion": " ", "requestTracingEnabled": false, + "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", "httpLoggingEnabled": + false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": + "$functionappacrtest000004", "scmType": "None", "use32BitWorkerProcess": true, + "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": + "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", + "https://functions-staging.azure.com", "https://functions-next.azure.com"], + "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + Content-Length: + - '1248' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" + ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3028' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:22:00 GMT + etag: + - '"1D59EA1A6C95535"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' + headers: + cache-control: + - no-cache + content-length: + - '1287' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:22:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' + string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' +>>>>>>> pass test_acr_create_function_app headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1121' +======= + - '196' +>>>>>>> pass test_acr_create_function_app content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:22:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", + "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", + "FUNCTION_APP_EDIT_MODE": "readOnly", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp config container delete + Connection: + - keep-alive + Content-Length: + - '826' + Content-Type: - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + headers: + cache-control: + - no-cache + content-length: + - '1090' + content-type: + - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:57:37 GMT +======= + - Tue, 19 Nov 2019 06:22:03 GMT + etag: + - '"1D59EA1A89E494B"' +>>>>>>> pass test_acr_create_function_app expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains +<<<<<<< HEAD vary: - Accept-Encoding x-content-type-options: @@ -1827,6 +3746,8 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains +======= +>>>>>>> pass test_acr_create_function_app transfer-encoding: - chunked vary: @@ -1836,6 +3757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' x-powered-by: - ASP.NET @@ -1920,6 +3842,9 @@ interactions: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1194' +======= + - '1195' +>>>>>>> pass test_acr_create_function_app x-powered-by: - ASP.NET status: @@ -1933,7 +3858,11 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: +<<<<<<< HEAD - functionapp config container delete +======= + - functionapp config appsettings list +>>>>>>> pass test_acr_create_function_app Connection: - keep-alive Content-Length: @@ -1942,6 +3871,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1951,15 +3881,34 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> pass test_acr_create_function_app headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1287' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:42 GMT +======= + - '1090' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:22:04 GMT +>>>>>>> pass test_acr_create_function_app expires: - '-1' pragma: @@ -1977,7 +3926,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11995' +======= + - '11998' +>>>>>>> pass test_acr_create_function_app x-powered-by: - ASP.NET status: @@ -1991,18 +3944,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: +<<<<<<< HEAD - functionapp config container delete +======= + - functionapp config appsettings list +>>>>>>> pass test_acr_create_function_app Connection: - keep-alive ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 +>>>>>>> pass test_acr_create_function_app response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -2015,7 +3980,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:43 GMT +======= + - Tue, 19 Nov 2019 06:22:05 GMT +>>>>>>> pass test_acr_create_function_app expires: - '-1' pragma: @@ -2037,6 +4006,7 @@ interactions: status: code: 200 message: OK +<<<<<<< HEAD - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F", @@ -2216,4 +4186,6 @@ interactions: status: code: 200 message: OK +======= +>>>>>>> pass test_acr_create_function_app version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index 776da592ad2..3eb6798ae94 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -737,7 +737,7 @@ def test_acr_create_function_app(self, resource_group, storage_account): runtime = 'node' acr_registry_name = functionapp self.cmd('acr create --admin-enabled -g {} -n {} --sku Basic'.format(resource_group, acr_registry_name)) - acr_creds = self.cmd('acr credential show -n {}'.format(acr_registry_name)).get_output_in_json() + acr_creds = self.cmd('acr credential show -n {} -g {}'.format(acr_registry_name, resource_group)).get_output_in_json() username = acr_creds['username'] password = acr_creds['passwords'][0]['value'] self.cmd('functionapp plan create -g {} -n {} --sku S1 --is-linux'.format(resource_group, plan)) From a0224f6d08de0143d42ef942a30216563e7629c0 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 19 Nov 2019 14:28:53 +0800 Subject: [PATCH 12/51] pass test_acr_integration --- .../recordings/test_acr_integration.yaml | 907 ++++++++++++++++-- .../tests/latest/test_webapp_commands.py | 2 +- 2 files changed, 853 insertions(+), 56 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml index 88d54a12475..f6998e4c68f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:40:51 GMT + - Tue, 19 Nov 2019 06:25:43 GMT expires: - '-1' pragma: @@ -71,7 +71,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-14T01:40:54.1923416Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-14T01:40:57.2047445+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-19T06:25:45.4824079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:25:48.4120479+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:40:57 GMT + - Tue, 19 Nov 2019 06:25:48 GMT expires: - '-1' pragma: @@ -96,7 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' status: code: 200 message: OK @@ -122,7 +122,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:40:58 GMT + - Tue, 19 Nov 2019 06:25:50 GMT expires: - '-1' pragma: @@ -182,7 +182,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:59 GMT + - Tue, 19 Nov 2019 06:25:50 GMT expires: - '-1' pragma: @@ -228,7 +228,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:41:00 GMT + - Tue, 19 Nov 2019 06:25:51 GMT expires: - '-1' pragma: @@ -280,8 +280,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5706,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5706","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5763,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5763","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -290,7 +290,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:16 GMT + - Tue, 19 Nov 2019 06:26:10 GMT expires: - '-1' pragma: @@ -308,7 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -337,8 +337,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5706,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5706","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5763,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5763","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -347,7 +347,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:18 GMT + - Tue, 19 Nov 2019 06:26:11 GMT expires: - '-1' pragma: @@ -405,7 +405,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:19 GMT + - Tue, 19 Nov 2019 06:26:13 GMT expires: - '-1' pragma: @@ -423,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -452,8 +452,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5706,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5706","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":5763,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5763","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -462,7 +462,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:19 GMT + - Tue, 19 Nov 2019 06:26:14 GMT expires: - '-1' pragma: @@ -506,30 +506,30 @@ interactions: uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17428' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:20 GMT + - Tue, 19 Nov 2019 06:26:16 GMT expires: - '-1' pragma: @@ -581,18 +581,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:24.8","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"05581BD2FAC64392233CFEFF2A4341838DAE4B8268084E11622135A9BAB07A89","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:26:21.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8BC605D678663C0540D3861BC4E60F3FAB88B9D97893403BBF9A8BA5DBFCBA0F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3624' + - '3625' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:42 GMT + - Tue, 19 Nov 2019 06:26:40 GMT etag: - - '"1D59A8CA042DDD5"' + - '"1D59EA24315F260"' expires: - '-1' pragma: @@ -610,7 +610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -644,13 +644,13 @@ interactions: body: string: @@ -662,7 +662,7 @@ interactions: content-type: - application/xml date: - - Thu, 14 Nov 2019 01:41:42 GMT + - Tue, 19 Nov 2019 06:26:42 GMT expires: - '-1' pragma: @@ -694,38 +694,835 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n + - -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-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-19T06:25:45.4824079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:25:48.4120479+00:00","status":"disabled"}}}}' + headers: + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:26:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + 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: + - acr credential show + 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-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-05-01 + response: + body: + string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"},{"name":"password2","value":"2ALq=akOzEvWk1Z7CvHcFF=e3jotOd=Y"}]}' + headers: + cache-control: + - no-cache + content-length: + - '180' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:26:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwsup","name":"yugangwsup","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ContainerRegistry/registries/zuhacr","name":"zuhacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"centralus","tags":{}}]}' + headers: + cache-control: + - no-cache + content-length: + - '941' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:26:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - webapp config container set + Connection: + - keep-alive + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 + response: + body: + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-19T06:25:45.4824079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:25:48.4120479+00:00","status":"disabled"}}}}' + headers: + cache-control: + - no-cache + content-length: + - '756' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 19 Nov 2019 06:26:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + 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: + - webapp config container set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-05-01 response: body: - string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group - ''westus'' could not be found."}}' + string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"},{"name":"password2","value":"2ALq=akOzEvWk1Z7CvHcFF=e3jotOd=Y"}]}' headers: cache-control: - no-cache content-length: - - '98' + - '180' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:41:43 GMT + - Tue, 19 Nov 2019 06:26:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan + West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:26:22.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8BC605D678663C0540D3861BC4E60F3FAB88B9D97893403BBF9A8BA5DBFCBA0F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3623' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:47 GMT + etag: + - '"1D59EA24315F260"' expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2925' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '322' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11996' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"WEBSITES_ENABLE_APP_SERVICE_STORAGE": + "false"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}' + headers: + cache-control: + - no-cache + content-length: + - '367' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:50 GMT + etag: + - '"1D59EA2537BA3C0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", + "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": + "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "DOCKER|webappacrtest000003.azurecr.io/image-name:latest", + "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": + false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": + "$webappacrtest000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": + false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2963' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:51 GMT + etag: + - '"1D59EA2537BA3C0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}' + headers: + cache-control: + - no-cache + content-length: + - '367' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"WEBSITES_ENABLE_APP_SERVICE_STORAGE": + "false", "DOCKER_REGISTRY_SERVER_URL": "https://webappacrtest000003.azurecr.io", + "DOCKER_REGISTRY_SERVER_USERNAME": "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": + "/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + Content-Length: + - '300' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"}}' + headers: + cache-control: + - no-cache + content-length: + - '572' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:53 GMT + etag: + - '"1D59EA255D7E340"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"}}' + headers: + cache-control: + - no-cache + content-length: + - '572' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/slotConfigNames?api-version=2018-02-01 + response: + body: + string: '{"id":null,"name":"webappacrtest000003","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '196' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config container set + Connection: + - keep-alive + ParameterSetName: + - -g -n --docker-custom-image-name --docker-registry-server-url + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"Japan + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2981' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 06:26:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index 3eb6798ae94..dd7522f8140 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -683,7 +683,7 @@ def test_acr_integration(self, resource_group): self.cmd('acr create --admin-enabled -g {} -n {} --sku Basic'.format(resource_group, acr_registry_name)) self.cmd('appservice plan create -g {} -n {} --sku S1 --is-linux' .format(resource_group, plan)) self.cmd('webapp create -g {} -n {} --plan {} --runtime {}'.format(resource_group, webapp, plan, runtime)) - creds = self.cmd('acr credential show -n {}'.format(acr_registry_name)).get_output_in_json() + creds = self.cmd('acr credential show -n {} -g {}'.format(acr_registry_name, resource_group)).get_output_in_json() self.cmd('webapp config container set -g {0} -n {1} --docker-custom-image-name {2}.azurecr.io/image-name:latest --docker-registry-server-url https://{2}.azurecr.io'.format( resource_group, webapp, acr_registry_name), checks=[ JMESPathCheck("[?name=='DOCKER_REGISTRY_SERVER_USERNAME']|[0].value", creds['username']) From 32175cc4e6b81bdc720398e46cc2beb78ee5f657 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 19 Nov 2019 18:48:10 +0800 Subject: [PATCH 13/51] pass test_webapp_hyperv_e2e --- .../recordings/test_webapp_hyperv_e2e.yaml | 1055 ++++++++++++++++- .../tests/latest/test_webapp_commands.py | 2 +- 2 files changed, 1034 insertions(+), 23 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml index 13eed2c3316..7cf9ace57db 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T09:37:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:41:50 GMT + - Tue, 19 Nov 2019 09:37:50 GMT expires: - '-1' pragma: @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:52 GMT + - Tue, 19 Nov 2019 09:37:50 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T09:37:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:41:52 GMT + - Tue, 19 Nov 2019 09:37:51 GMT expires: - '-1' pragma: @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8602,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8602","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:03 GMT + - Tue, 19 Nov 2019 09:38:11 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' x-powered-by: - ASP.NET status: @@ -236,8 +236,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8602,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8602","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:04 GMT + - Tue, 19 Nov 2019 09:38:13 GMT expires: - '-1' pragma: @@ -279,37 +279,1048 @@ interactions: - appservice plan list Connection: - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West + US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '1581' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West + US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1543' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West + US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1543' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"name": "webapp-hyperv-e2e000002", "type": "Microsoft.Web/sites", "location": + "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '329' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + response: + body: + string: '{"status":"Success","error":null}' + headers: + cache-control: + - no-cache + content-length: + - '33' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West + US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1543' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "windowsFxVersion": "DOCKER|microsoft/iis:nanoserver-sac2016", "appSettings": + [], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '525' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West + US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-11-19T09:38:25.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9D6EA1ABF72838E3C5AEB0DE2D8796018AF3A27BDD57A5ACBB53DAFA50CD930D","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3750' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:43 GMT + etag: + - '"1D59EBD1AF6FF20"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/publishxml?api-version=2018-02-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1150' + content-type: + - application/xml + date: + - Tue, 19 Nov 2019 09:38:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West + US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-11-19T09:38:31.57","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9D6EA1ABF72838E3C5AEB0DE2D8796018AF3A27BDD57A5ACBB53DAFA50CD930D","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3743' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:45 GMT + etag: + - '"1D59EBD1AF6FF20"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2952' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", + "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": + "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "windowsFxVersion": + "DOCKER|microsoft/iis:nanoserver-sac2016", "requestTracingEnabled": false, "remoteDebuggingEnabled": + false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": + false, "publishingUsername": "$webapp-hyperv-e2e000002", "scmType": "None", + "use32BitWorkerProcess": false, "webSocketsEnabled": false, "alwaysOn": false, + "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": + [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], + "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": + false, "vnetName": "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "reservedInstanceCount": 0}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '1133' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2938' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:49 GMT + etag: + - '"1D59EBD1AF6FF20"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/appsettings/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '319' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/slotConfigNames?api-version=2018-02-01 + response: + body: + string: '{"id":null,"name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '193' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-container-image-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2956' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West + US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-11-19T09:38:50.17","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9D6EA1ABF72838E3C5AEB0DE2D8796018AF3A27BDD57A5ACBB53DAFA50CD930D","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '3783' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2956' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config set + Connection: + - keep-alive + ParameterSetName: + - -g -n --windows-fx-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 response: body: - string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group - ''westus'' could not be found."}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '98' + - '2956' content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", + "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": + "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "windowsFxVersion": + "DOCKER|microsoft/iis", "requestTracingEnabled": false, "remoteDebuggingEnabled": + false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": + 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-hyperv-e2e000002", + "scmType": "None", "use32BitWorkerProcess": false, "webSocketsEnabled": false, + "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": + {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config set + Connection: + - keep-alive + Content-Length: + - '1150' + Content-Type: - application/json; charset=utf-8 + ParameterSetName: + - -g -n --windows-fx-version + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2919' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 09:38:58 GMT + etag: + - '"1D59EBD260D21A0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2937' + content-type: + - application/json date: - - Thu, 14 Nov 2019 01:42:05 GMT + - Tue, 19 Nov 2019 09:39:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index dd7522f8140..f376993e8bb 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -1720,7 +1720,7 @@ def test_webapp_hyperv_e2e(self, resource_group): JMESPathCheck('[0].sku.tier', 'PremiumContainer'), JMESPathCheck('[0].sku.name', 'PC2') ]) - self.cmd('appservice plan list', checks=[ + self.cmd('appservice plan list -g {}'.format(resource_group), checks=[ JMESPathCheck("length([?name=='{}' && resourceGroup=='{}'])".format(plan, resource_group), 1) ]) self.cmd('appservice plan show -g {} -n {}'.format(resource_group, plan), checks=[ From 2da3837a67d055725e6b311a1fe74559fe1eaf68 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 19 Nov 2019 19:00:47 +0800 Subject: [PATCH 14/51] replace api version because record_only() to pass test_webapp_continuousWebjob_e2e --- .../test_webapp_continuousWebjob_e2e.yaml | 385 ++++++++++++++++++ 1 file changed, 385 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml new file mode 100644 index 00000000000..d66eb7fee87 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml @@ -0,0 +1,385 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-05-28T19:56:17Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-28T19:56:17Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 28 May 2019 19:56:19 GMT + expires: + - '-1' + pragma: + - no-cache + 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: + - webapp webjob continuous list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs?api-version=2018-02-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West + US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '763' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 28 May 2019 19:56:22 GMT + etag: + - '"d6f53377"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous start + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/start?api-version=2018-02-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 28 May 2019 19:56:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous start + Connection: + - keep-alive + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West + US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 28 May 2019 19:56:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous stop + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/stop?api-version=2018-02-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 28 May 2019 19:56:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous stop + Connection: + - keep-alive + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West + US","properties":{"status":"Disabling","detailed_status":"e7b519 - Disabling\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '755' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 28 May 2019 19:56:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 28 May 2019 19:56:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdKS1laTkZLUFZUR1c1UVY3M1ZKWFRFRDM3QlpKUE5WMzZTWHw3OUEyRTg3NDg5MUU2OTM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 From afdbdec80e69823215887e5366873779ca14b541 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 19 Nov 2019 19:07:07 +0800 Subject: [PATCH 15/51] pass test_webapp_create_linux_free --- .../test_webapp_create_linux_free.yaml | 736 +++++++++++++++++- 1 file changed, 720 insertions(+), 16 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml index 10be02c741e..afe253550f7 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_linux_free000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T11:02:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:41:12 GMT + - Tue, 19 Nov 2019 11:02:14 GMT expires: - '-1' pragma: @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:14 GMT + - Tue, 19 Nov 2019 11:02:15 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_linux_free000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T11:02:06Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:41:13 GMT + - Tue, 19 Nov 2019 11:02:16 GMT expires: - '-1' pragma: @@ -177,20 +177,439 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 response: body: - string: '{"Code":"BadRequest","Message":"Exceeded the limit of 1 free tier linux - server farm per subscription.","Target":null,"Details":[{"Message":"Exceeded - the limit of 1 free tier linux server farm per subscription."},{"Code":"BadRequest"},{"ErrorEntity":{"ExtendedCode":"11027","MessageTemplate":"Exceeded - the limit of 1 free tier linux server farm per subscription.","Parameters":[],"Code":"BadRequest","Message":"Exceeded - the limit of 1 free tier linux server farm per subscription."}}],"Innererror":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West + US","properties":{"serverFarmId":2658,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_2658","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' headers: cache-control: - no-cache content-length: - - '502' + - '1524' content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West + US","properties":{"serverFarmId":2658,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_2658","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1524' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:02:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"name": "webapp-linux-free000002", "type": "Microsoft.Web/sites", "location": + "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '329' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + response: + body: + string: '{"status":"Success","error":null}' + headers: + cache-control: + - no-cache + content-length: + - '33' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:02:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West + US","properties":{"serverFarmId":2658,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_2658","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1524' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:02:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + response: + body: + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17428' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:02:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "node|10.14", "appSettings": [], "localMySqlEnabled": + false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '494' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002","name":"webapp-linux-free000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"West + US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-139.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T11:02:51.7533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF9C51A2B7033C2BE7C2762226B802B7F79AB3DDE9D91C442603C213528465A0","kind":"app,linux","inboundIpAddress":"40.112.243.7","possibleInboundIpAddresses":"40.112.243.7","outboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150","possibleOutboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150,13.64.91.216,13.64.94.144,13.91.124.136,13.91.125.204,40.118.239.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-139","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3649' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:03:08 GMT + etag: + - '"1D59EC8E3862C4B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002","name":"webapp-linux-free000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"West + US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-139.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T11:02:52.5166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF9C51A2B7033C2BE7C2762226B802B7F79AB3DDE9D91C442603C213528465A0","kind":"app,linux","inboundIpAddress":"40.112.243.7","possibleInboundIpAddresses":"40.112.243.7","outboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150","possibleOutboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150,13.64.91.216,13.64.94.144,13.91.124.136,13.91.125.204,40.118.239.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-139","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3647' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:03:09 GMT + etag: + - '"1D59EC8E3862C4B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"repoUrl": "https://github.com/yugangw-msft/azure-site-test.git", + "branch": "master", "isManualIntegration": true, "isMercurial": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '153' + Content-Type: - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '535' + content-type: + - application/json date: - - Thu, 14 Nov 2019 01:41:20 GMT + - Tue, 19 Nov 2019 11:03:35 GMT + etag: + - '"1D59EC8FD3E572B"' expires: - '-1' pragma: @@ -204,10 +623,295 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-19T11:04:01.6180133 + http://webapp-linux-free000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-11-19_11-04-00Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '709' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:04:07 GMT + etag: + - '"1D59EC8FD3E572B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-19T11:04:34.0466094 + http://webapp-linux-free000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-11-19_11-04-00Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '709' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:04:37 GMT + etag: + - '"1D59EC8FD3E572B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '534' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:05:09 GMT + etag: + - '"1D59EC8FD3E572B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan -u -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/publishxml?api-version=2018-02-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1150' + content-type: + - application/xml + date: + - Tue, 19 Nov 2019 11:05:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/config/web?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/config/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-free000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"ExternalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '2931' + content-type: + - application/json + date: + - Tue, 19 Nov 2019 11:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff x-powered-by: - ASP.NET status: - code: 400 - message: Bad Request + code: 200 + message: OK version: 1 From 0bbcadddcf838ef7d194b711722ecf7a42614d45 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 19 Nov 2019 19:54:37 +0800 Subject: [PATCH 16/51] replace api version because record only to pass test_webapp_triggeredWebjob_list --- .../test_webapp_triggeredWebjob_list.yaml | 162 ++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml new file mode 100644 index 00000000000..53ac3a25aa1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml @@ -0,0 +1,162 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-05-27T16:37:17Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-27T16:37:17Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 May 2019 16:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + 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: + - webapp webjob triggered list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs?api-version=2018-02-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs/test-triggered","name":"cliTestApp/test-triggered","type":"Microsoft.Web/sites/triggeredwebjobs","location":"West + US","properties":{"latest_run":{"id":"201905152138309173","name":"201905152138309173","status":"Aborted","start_time":"2019-05-15T21:38:30.9173992Z","end_time":"0001-01-01T00:00:00","duration":"11.18:58:50.9297920","output_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/201905152138309173/output_log.txt","error_url":null,"url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history/201905152138309173","job_name":"test-triggered","trigger":"Schedule + - 0 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58 + * * * *"},"history_url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history","scheduler_logs_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/job_scheduler.log","name":"test-triggered","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/triggered/test-triggered","type":"triggered","error":null,"using_sdk":false,"settings":{"schedule":"0 + 0/2 * * * *"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1437' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 May 2019 16:37:21 GMT + etag: + - '"6ab79922"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 27 May 2019 16:37:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHT1VZVEYyVzJWUFEyNkVPV09XSFBHTk9CUTdHUVJQWVFUTnwxMjA5NDk1NzEwNEQyM0ZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 From 663d9c649b6fd7860f4ba855ad38f6ceda96904e Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Wed, 20 Nov 2019 10:14:07 +0800 Subject: [PATCH 17/51] pass test_webapp_e2e --- .../appservice/tests/latest/test_webapp_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index f376993e8bb..ec30f8b171d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -45,7 +45,7 @@ def test_webapp_e2e(self, resource_group): JMESPathCheck('[0].sku.name', 'B1'), JMESPathCheck('[0].perSiteScaling', True) ]) - self.cmd('appservice plan list', checks=[ + self.cmd('appservice plan list -g {}'.format(resource_group), checks=[ JMESPathCheck("length([?name=='{}' && resourceGroup=='{}'])".format(plan, resource_group), 1) ]) self.cmd('appservice plan show -g {} -n {}'.format(resource_group, plan), checks=[ From 85b9f1d2689af6e901d1f14affa4e3a989b7a457 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Wed, 20 Nov 2019 14:52:09 +0800 Subject: [PATCH 18/51] replace api version to make test_linux_webapp_ssh pass because only supporting linux and mac --- .../recordings/test_linux_webapp_ssh.yaml | 772 +++++- .../latest/recordings/test_webapp_config.yaml | 2262 ++++++++++++++++- 2 files changed, 2911 insertions(+), 123 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml index c9c9367cd19..c9ee36c6b97 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml @@ -13,24 +13,25 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '387' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:40:43 GMT + - Wed, 21 Aug 2019 22:00:01 GMT expires: - '-1' pragma: @@ -64,8 +65,9 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: POST @@ -81,7 +83,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:44 GMT + - Wed, 21 Aug 2019 22:00:01 GMT expires: - '-1' pragma: @@ -99,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -119,24 +121,25 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '387' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:40:45 GMT + - Wed, 21 Aug 2019 22:00:02 GMT expires: - '-1' pragma: @@ -170,8 +173,9 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: PUT @@ -179,8 +183,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5705,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5705","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +193,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:02 GMT + - Wed, 21 Aug 2019 22:00:19 GMT expires: - '-1' pragma: @@ -207,7 +211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -227,8 +231,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET @@ -236,8 +241,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5705,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5705","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +251,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:03 GMT + - Wed, 21 Aug 2019 22:00:21 GMT expires: - '-1' pragma: @@ -287,8 +292,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: POST @@ -304,7 +310,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:03 GMT + - Wed, 21 Aug 2019 22:00:21 GMT expires: - '-1' pragma: @@ -322,7 +328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -342,8 +348,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET @@ -351,8 +358,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5705,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5705","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +368,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:04 GMT + - Wed, 21 Aug 2019 22:00:22 GMT expires: - '-1' pragma: @@ -397,38 +404,69 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"Ruby + 2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby + 2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby + 2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby + 2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node.js","dependency":null,"majorVersions":[{"displayVersion":"Node.js + LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"PHP + 5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6.40-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6.40-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP + 7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.33-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.33-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP + 7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2.15-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2.15-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP + 7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":".NET Core 1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"Python + 3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python + 3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python + 2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '12309' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:05 GMT + - Wed, 21 Aug 2019 22:00:24 GMT expires: - '-1' pragma: @@ -453,8 +491,8 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "localMySqlEnabled": - false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -465,14 +503,15 @@ interactions: Connection: - keep-alive Content-Length: - - '496' + - '514' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: PUT @@ -480,18 +519,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:10.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BDDA772EE8CD3A22C5AC9F49C1A5EE423465BFD8E3DB88A8F0E1A4557F9AB779","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:28.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null}}' headers: cache-control: - no-cache content-length: - - '3631' + - '3484' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:27 GMT + - Wed, 21 Aug 2019 22:00:47 GMT etag: - - '"1D59A8C97BCDC15"' + - '"1D5586BD8783840"' expires: - '-1' pragma: @@ -509,7 +548,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -533,8 +572,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: POST @@ -543,12 +583,17 @@ interactions: body: string: @@ -556,11 +601,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Thu, 14 Nov 2019 01:41:28 GMT + - Wed, 21 Aug 2019 22:00:48 GMT expires: - '-1' pragma: @@ -641,13 +686,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Thu, 14 Nov 2019 01:42:22 GMT + - Wed, 21 Aug 2019 22:01:18 GMT etag: - - W/"ca5-16d98916728" + - W/"ca5-16acc376e90" last-modified: - - Fri, 04 Oct 2019 20:58:49 GMT + - Sat, 18 May 2019 18:32:26 GMT set-cookie: - - ARRAffinity=4708f0803427ee636c9c0713542decccacd689d0f6d69fbd6071b25e331a151f;Path=/;HttpOnly;Domain=webapp-sshhttezeqyklq3op.azurewebsites.net + - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.azurewebsites.net x-powered-by: - Express status: @@ -667,8 +712,9 @@ interactions: ParameterSetName: - -g -n --timeout User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET @@ -676,16 +722,75 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/web","name":"webapp-ssh000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' + headers: + cache-control: + - no-cache + content-length: + - '3052' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:01:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' headers: cache-control: - no-cache content-length: - - '2926' + - '3482' content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:54 GMT + - Wed, 21 Aug 2019 22:01:53 GMT + etag: + - '"1D5586BD8783840"' expires: - '-1' pragma: @@ -707,4 +812,515 @@ interactions: status: code: 200 message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-02-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:01:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-02-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:01:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '3482' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:01:56 GMT + etag: + - '"1D5586BD8783840"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-02-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:01:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/publishingcredentials/list?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishingcredentials/$webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan + West","properties":{"name":null,"publishingUserName":"$webapp-ssh000003","publishingPassword":"1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-ssh000003:1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH@webapp-ssh000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '774' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:01:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '3482' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:02:00 GMT + etag: + - '"1D5586BD8783840"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-02-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:02:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://webapp-ssh000003.scm.azurewebsites.net/api/settings + response: + body: + string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_AUTH_ENABLED":"False","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","ScmType":"None","WEBSITE_SITE_NAME":"webapp-ssh000003","WEBSITE_NODE_DEFAULT_VERSION":"8.11"}' + headers: + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Aug 2019 22:02:21 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://webapp-ssh000003.scm.azurewebsites.net/AppServiceTunnel/Tunnel.ashx?GetStatus + response: + body: + string: SUCCESS:2222 + headers: + date: + - Wed, 21 Aug 2019 22:02:22 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net + transfer-encoding: + - chunked + status: + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index 03f407da4be..5f0bc9dd132 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:42:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:42:35 GMT + - Mon, 21 Oct 2019 10:49:05 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:36 GMT + - Mon, 21 Oct 2019 10:49:07 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:42:31Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:42:36 GMT + - Mon, 21 Oct 2019 10:49:07 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21924,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21924","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:45 GMT + - Mon, 21 Oct 2019 10:49:16 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1188' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21924,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21924","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:46 GMT + - Mon, 21 Oct 2019 10:49:17 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:47 GMT + - Mon, 21 Oct 2019 10:49:18 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1190' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21924,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21924","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:48 GMT + - Mon, 21 Oct 2019 10:49:19 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '536' + - '554' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:53.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2552D921A9064867E08BAB0E9A63A5D55D8E8ECBB5A0D8F2D744B69A96E2A8F6","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:24.803","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BCD66C08AB0832EF1CDDE7810BEBF6BDCA3414CC63568C1AD09885ABB858DEC3","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3730' + - '3723' content-type: - application/json date: - - Thu, 14 Nov 2019 01:43:08 GMT + - Mon, 21 Oct 2019 10:49:41 GMT etag: - - '"1D59A8CD5534200"' + - '"1D587FD348B7CD0"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '495' x-powered-by: - ASP.NET status: @@ -465,23 +466,29 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-11-01 response: body: string: @@ -489,11 +496,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Thu, 14 Nov 2019 01:43:09 GMT + - Mon, 21 Oct 2019 10:49:42 GMT expires: - '-1' pragma: @@ -507,7 +514,203 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3161' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config set + Connection: + - keep-alive + ParameterSetName: + - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version + --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled + --min-tls-version --ftps-state + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3161' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", + "index.php", "hostingstart.html"], "netFrameworkVersion": "v3.5", "phpVersion": + "7.0", "pythonVersion": "3.4", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": + false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": + 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-config-test000002", + "scmType": "None", "use32BitWorkerProcess": false, "webSocketsEnabled": true, + "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": true, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.0", "ftpsState": "Disabled", "reservedInstanceCount": + 0}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config set + Connection: + - keep-alive + Content-Length: + - '1369' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version + --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled + --min-tls-version --ftps-state + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3147' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:48 GMT + etag: + - '"1D587FD348B7CD0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1187' x-powered-by: - ASP.NET status: @@ -528,24 +731,1993 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3165' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' + headers: + cache-control: + - no-cache + content-length: + - '373' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": + "10.14", "s1": "foo", "s2": "bar", "s3": "bar2"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings set + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '407' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:52 GMT + etag: + - '"1D587FD44EC9A50"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1156' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '407' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '407' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": + "10.14", "s3": "bar2"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings delete + Connection: + - keep-alive + Content-Length: + - '96' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '385' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:58 GMT + etag: + - '"1D587FD4842A320"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1182' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config hostname list + Connection: + - keep-alive + ParameterSetName: + - -g --webapp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings?api-version=2018-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings/webapp-config-test000002.azurewebsites.net","name":"webapp-config-test000002/webapp-config-test000002.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West + US","properties":{"siteName":"webapp-config-test000002","domainId":null,"hostNameType":"Verified"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '623' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:49:59 GMT + etag: + - '"1D587FD4842A320"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --custom-id --storage-type --account-name --share-name --access-key + --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '344' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11996' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", + "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": + "/path/to/mount"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account add + Connection: + - keep-alive + Content-Length: + - '171' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --custom-id --storage-type --account-name --share-name --access-key + --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '500' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:02 GMT + etag: + - '"1D587FD4AA1EFE0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1186' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '491' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account update + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --custom-id --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '491' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", + "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": + "/different/path"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account update + Connection: + - keep-alive + Content-Length: + - '172' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --custom-id --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '501' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:06 GMT + etag: + - '"1D587FD4D351DE0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1191' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '492' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '492' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11995' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --custom-id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '492' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11992' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --custom-id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account delete + Connection: + - keep-alive + Content-Length: + - '43' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --custom-id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:16 GMT + etag: + - '"1D587FD52E54350"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1188' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '347' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11996' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"c1": {"value": "conn1", "type": + "MySql"}, "c2": {"value": "conn2", "type": "MySql"}, "c3": {"value": "conn3", + "type": "MySql"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '460' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:19 GMT + etag: + - '"1D587FD549F4F60"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1181' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"connectionStringNames": ["c3"]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '207' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1188' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '460' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '207' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '460' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11995' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '207' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"connectionStringNames": [], "appSettingNames": [], "azureStorageConfigNames": + []}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + Content-Length: + - '99' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '203' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1186' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"c2": {"value": "conn2", "type": + "MySql"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + Content-Length: + - '84' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:28 GMT + etag: + - '"1D587FD59CBC5E0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1187' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '203' + content-type: + - application/json + date: + - Mon, 21 Oct 2019 10:50:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp deployment user show + Connection: + - keep-alive + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2018-02-01 + response: + body: + string: '{"id":null,"name":"web","type":"Microsoft.Web/publishingUsers/web","properties":{"name":null,"publishingUserName":null,"publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' headers: cache-control: - no-cache content-length: - - '2965' + - '258' content-type: - application/json date: - - Thu, 14 Nov 2019 01:43:10 GMT + - Mon, 21 Oct 2019 10:50:34 GMT expires: - '-1' pragma: From c8b9c3e687822b900c791ac83e5326146ef212ce Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 21 Nov 2019 10:45:39 +0800 Subject: [PATCH 19/51] fix test_webapp_config --- .../tests/latest/test_webapp_commands.py | 33 ++++++++++++------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index ec30f8b171d..cc109a5778e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -287,7 +287,7 @@ def test_webapp_config(self, resource_group): # verify the baseline self.cmd('webapp config show -g {} -n {}'.format(resource_group, webapp_name)).assert_with_checks([ - JMESPathCheck('alwaysOn', True), + JMESPathCheck('alwaysOn', False), JMESPathCheck('autoHealEnabled', False), JMESPathCheck('phpVersion', '5.6'), JMESPathCheck('netFrameworkVersion', 'v4.0'), @@ -348,10 +348,21 @@ def test_webapp_config(self, resource_group): JMESPathCheck('[0].name', '{0}.azurewebsites.net'.format(webapp_name))]) # site azure storage account configurations tests + runtime = 'node|6.6' + linux_plan = self.create_random_name(prefix='webapp-linux-plan', length=24) + linux_webapp = self.create_random_name(prefix='webapp-linux', length=24) + self.cmd('appservice plan create -g {} -n {} -l eastus --sku S1 --is-linux'.format(resource_group, linux_plan), checks=[ + JMESPathCheck('reserved', True), # this weird field means it is a linux + JMESPathCheck('sku.name', 'S1'), + ]) + self.cmd('webapp create -g {} -n {} --plan {} --runtime {}'.format(resource_group, linux_webapp, linux_plan, runtime), + checks=[ + JMESPathCheck('name', linux_webapp), + ]) # add self.cmd(('webapp config storage-account add -g {} -n {} --custom-id Id --storage-type AzureFiles --account-name name ' - '--share-name sharename --access-key key --mount-path /path/to/mount').format(resource_group, webapp_name)) - self.cmd('webapp config storage-account list -g {} -n {}'.format(resource_group, webapp_name)).assert_with_checks([ + '--share-name sharename --access-key key --mount-path /path/to/mount').format(resource_group, linux_webapp)) + self.cmd('webapp config storage-account list -g {} -n {}'.format(resource_group, linux_webapp)).assert_with_checks([ JMESPathCheck('length(@)', 1), JMESPathCheck("[?name=='Id']|[0].value.type", "AzureFiles"), JMESPathCheck("[?name=='Id']|[0].value.accountName", "name"), @@ -360,8 +371,8 @@ def test_webapp_config(self, resource_group): JMESPathCheck("[?name=='Id']|[0].value.mountPath", "/path/to/mount")]) # update self.cmd('webapp config storage-account update -g {} -n {} --custom-id Id --mount-path /different/path' - .format(resource_group, webapp_name)) - self.cmd('webapp config storage-account list -g {} -n {}'.format(resource_group, webapp_name)).assert_with_checks([ + .format(resource_group, linux_webapp)) + self.cmd('webapp config storage-account list -g {} -n {}'.format(resource_group, linux_webapp)).assert_with_checks([ JMESPathCheck("length(@)", 1), JMESPathCheck("[?name=='Id']|[0].value.type", "AzureFiles"), JMESPathCheck("[?name=='Id']|[0].value.accountName", "name"), @@ -369,18 +380,18 @@ def test_webapp_config(self, resource_group): JMESPathCheck("[?name=='Id']|[0].value.accessKey", "key"), JMESPathCheck("[?name=='Id']|[0].value.mountPath", "/different/path")]) # list - self.cmd('webapp config storage-account list -g {} -n {}'.format(resource_group, webapp_name)).assert_with_checks([ + self.cmd('webapp config storage-account list -g {} -n {}'.format(resource_group, linux_webapp)).assert_with_checks([ JMESPathCheck("length(@)", 1), JMESPathCheck('[0].name', 'Id')]) # delete - self.cmd('webapp config storage-account delete -g {} -n {} --custom-id Id'.format(resource_group, webapp_name)).assert_with_checks([ + self.cmd('webapp config storage-account delete -g {} -n {} --custom-id Id'.format(resource_group, linux_webapp)).assert_with_checks([ JMESPathCheck("length(@)", 0)]) # site connection string tests self.cmd('webapp config connection-string set -t mysql -g {} -n {} --settings c1="conn1" c2=conn2 ' - '--slot-settings c3=conn3'.format(resource_group, webapp_name)) + '--slot-settings c3=conn3'.format(resource_group, linux_webapp)) self.cmd('webapp config connection-string list -g {} -n {}' - .format(resource_group, webapp_name)).assert_with_checks([ + .format(resource_group, linux_webapp)).assert_with_checks([ JMESPathCheck('length([])', 3), JMESPathCheck("[?name=='c1']|[0].slotSetting", False), JMESPathCheck("[?name=='c1']|[0].value.type", 'MySql'), @@ -388,9 +399,9 @@ def test_webapp_config(self, resource_group): JMESPathCheck("[?name=='c2']|[0].slotSetting", False), JMESPathCheck("[?name=='c3']|[0].slotSetting", True)]) self.cmd('webapp config connection-string delete -g {} -n {} --setting-names c1 c3' - .format(resource_group, webapp_name)) + .format(resource_group, linux_webapp)) self.cmd('webapp config connection-string list -g {} -n {}' - .format(resource_group, webapp_name)).assert_with_checks([ + .format(resource_group, linux_webapp)).assert_with_checks([ JMESPathCheck('length([])', 1), JMESPathCheck('[0].slotSetting', False), JMESPathCheck('[0].name', 'c2')]) From 9401d617cd7b55f8cb8f0e07603289cb1902689d Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 24 Dec 2019 09:25:58 +0800 Subject: [PATCH 20/51] change api version to 20181101 --- src/azure-cli-core/azure/cli/core/profiles/_shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index a44b9da8ff1..cb74a9dc2f4 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -175,7 +175,7 @@ def default_api_version(self): 'tenant_activity_logs': '2015-04-01', 'vm_insights': '2018-11-27-preview' }), - ResourceType.MGMT_APPSERVICE: '2018-02-01' + ResourceType.MGMT_APPSERVICE: '2018-11-01' }, '2019-03-01-hybrid': { ResourceType.MGMT_STORAGE: '2017-10-01', From f57a0990e43d1324a4493410a8dd254ea0cf74f5 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 31 Dec 2019 10:20:48 +0800 Subject: [PATCH 21/51] change api version to 2019-08-01 --- src/azure-cli-core/azure/cli/core/profiles/_shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index cb74a9dc2f4..244fe1ba8a8 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -175,7 +175,7 @@ def default_api_version(self): 'tenant_activity_logs': '2015-04-01', 'vm_insights': '2018-11-27-preview' }), - ResourceType.MGMT_APPSERVICE: '2018-11-01' + ResourceType.MGMT_APPSERVICE: '2019-08-01' }, '2019-03-01-hybrid': { ResourceType.MGMT_STORAGE: '2017-10-01', From ef6866dabdbeb0aca069196646c2015164b7d341 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 31 Dec 2019 10:57:02 +0800 Subject: [PATCH 22/51] live test --- .../test_acr_deployment_function_app.yaml | 577 ++++- .../recordings/test_acr_integration.yaml | 273 +- .../test_acr_integration_function_app.yaml | 664 ++++- .../test_appservice_error_polish.yaml | 163 +- .../recordings/test_auto_delete_plan.yaml | 148 +- .../test_create_in_different_group.yaml | 101 +- .../latest/recordings/test_deploy_zip.yaml | 422 +-- .../recordings/test_download_win_web_log.yaml | 849 ++++--- ...st_functionapp_access_restriction_add.yaml | 155 +- ...unctionapp_access_restriction_add_scm.yaml | 164 +- ...cess_restriction_add_service_endpoint.yaml | 452 +++- ...functionapp_access_restriction_remove.yaml | 214 +- ...tionapp_access_restriction_remove_scm.yaml | 206 +- ...ionapp_access_restriction_set_complex.yaml | 243 +- ...tionapp_access_restriction_set_simple.yaml | 168 +- ...t_functionapp_access_restriction_show.yaml | 132 +- ...t_functionapp_access_restriction_slot.yaml | 216 +- .../test_functionapp_app_service_plan.yaml | 18 +- ...st_functionapp_app_service_plan_linux.yaml | 18 +- .../test_functionapp_consumption_e2e.yaml | 240 +- .../test_functionapp_consumption_linux.yaml | 164 +- ...tionapp_consumption_ragrs_storage_e2e.yaml | 160 +- .../recordings/test_functionapp_cors.yaml | 254 +- .../recordings/test_functionapp_e2e.yaml | 350 ++- .../test_functionapp_elastic_plan.yaml | 191 +- .../recordings/test_functionapp_on_linux.yaml | 211 +- .../test_functionapp_on_linux_version.yaml | 183 +- ...ctionapp_on_linux_version_consumption.yaml | 130 +- ...st_functionapp_on_linux_version_error.yaml | 28 +- .../test_functionapp_reserved_instance.yaml | 177 +- ...st_functionapp_slot_appsetting_update.yaml | 280 +- .../test_functionapp_slot_creation.yaml | 242 +- .../test_functionapp_slot_swap.yaml | 358 ++- .../test_functionapp_windows_runtime.yaml | 150 +- ...t_functionapp_windows_runtime_version.yaml | 158 +- ...onapp_windows_runtime_version_invalid.yaml | 31 +- ...t_functionapp_windows_without_runtime.yaml | 142 +- ...est_functionapp_with_app_insights_key.yaml | 106 +- ...functionapp_with_default_app_insights.yaml | 148 +- ...ctionapp_with_no_default_app_insights.yaml | 90 +- .../latest/recordings/test_linux_webapp.yaml | 544 ++-- ...st_linux_webapp_multicontainer_create.yaml | 132 +- ...test_linux_webapp_multicontainer_slot.yaml | 322 +-- .../test_linux_webapp_quick_create.yaml | 200 +- .../test_linux_webapp_quick_create_cd.yaml | 198 +- .../test_linux_webapp_remote_debug.yaml | 326 +-- .../test_linux_webapp_remote_ssh.yaml | 278 +- .../recordings/test_linux_webapp_ssh.yaml | 34 +- .../recordings/test_move_plan_to_elastic.yaml | 361 ++- .../latest/recordings/test_retain_plan.yaml | 125 +- .../recordings/test_traffic_routing.yaml | 248 +- ...test_update_webapp_settings_thru_json.yaml | 189 +- .../test_webapp_access_restriction_add.yaml | 275 +- ...est_webapp_access_restriction_add_scm.yaml | 281 +- ...cess_restriction_add_service_endpoint.yaml | 655 +---- ...test_webapp_access_restriction_remove.yaml | 311 +-- ..._webapp_access_restriction_remove_scm.yaml | 315 +-- ...webapp_access_restriction_set_complex.yaml | 346 +-- ..._webapp_access_restriction_set_simple.yaml | 280 +- .../test_webapp_access_restriction_show.yaml | 236 +- .../test_webapp_access_restriction_slot.yaml | 341 +-- .../test_webapp_assign_system_identity.yaml | 518 ++-- .../test_webapp_authentication.yaml | 125 +- .../latest/recordings/test_webapp_config.yaml | 2263 +---------------- .../test_webapp_continuousWebjob_e2e.yaml | 385 --- .../latest/recordings/test_webapp_cors.yaml | 343 +-- .../test_webapp_create_linux_free.yaml | 176 +- .../test_webapp_create_noAlwaysOn.yaml | 110 +- .../recordings/test_webapp_deleted_list.yaml | 1689 ++++++------ .../latest/recordings/test_webapp_e2e.yaml | 971 ++++++- .../latest/recordings/test_webapp_git.yaml | 240 +- .../test_webapp_hybridconnectionE2E.yaml | 537 +++- .../recordings/test_webapp_hyperv_e2e.yaml | 296 ++- .../test_webapp_list_locations_free_sku.yaml | 247 +- .../latest/recordings/test_webapp_scale.yaml | 186 +- .../latest/recordings/test_webapp_slot.yaml | 735 +++--- .../recordings/test_webapp_slot_swap.yaml | 332 ++- .../latest/recordings/test_webapp_ssl.yaml | 1690 ++++-------- .../recordings/test_webapp_ssl_import.yaml | 430 ++-- .../test_webapp_triggeredWebjob_list.yaml | 162 -- .../latest/recordings/test_webapp_update.yaml | 181 +- .../test_webapp_vnetDelegation.yaml | 524 +++- .../recordings/test_webapp_vnetE2E.yaml | 513 +++- .../test_win_webapp_quick_create.yaml | 153 +- .../test_win_webapp_quick_create_cd.yaml | 161 +- .../test_win_webapp_quick_create_runtime.yaml | 166 +- 86 files changed, 15916 insertions(+), 12190 deletions(-) delete mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml delete mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml index c213e424a16..8a99d25e49a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:21Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT ======= - Wed, 13 Nov 2019 10:58:49 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:29:47 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,35 +80,47 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' ======= string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:29:49.7115333Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:29:53.2294581+00:00","status":"disabled"}}}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '755' + - '756' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:37 GMT ======= - Wed, 13 Nov 2019 10:58:55 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:29:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -116,11 +136,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1185' +>>>>>>> live test status: code: 200 message: OK @@ -146,11 +170,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:21Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -159,11 +187,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:37 GMT ======= - Wed, 13 Nov 2019 10:58:56 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:29:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -198,15 +230,19 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -218,11 +254,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:39 GMT ======= - Wed, 13 Nov 2019 10:58:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:29:54 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -240,7 +280,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1192' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -268,11 +312,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:21Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -281,11 +329,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:39 GMT ======= - Wed, 13 Nov 2019 10:58:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:29:55 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -320,18 +372,23 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"serverFarmId":6103,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6103","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -339,6 +396,10 @@ interactions: West","properties":{"serverFarmId":5693,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + West","properties":{"serverFarmId":6160,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6160","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -347,11 +408,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:57 GMT ======= - Wed, 13 Nov 2019 10:59:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -369,11 +434,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= - '1191' >>>>>>> Re-record test for app service +======= + - '1184' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -394,18 +463,23 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"serverFarmId":6103,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6103","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -413,6 +487,10 @@ interactions: West","properties":{"serverFarmId":5693,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + West","properties":{"serverFarmId":6160,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6160","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -421,11 +499,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:58 GMT ======= - Wed, 13 Nov 2019 10:59:16 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -462,22 +544,30 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:08.9073819Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:08.9073819Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:08.8449217Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:58:29.1287372Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:58:29.1287372Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:58:29.0662559Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:29:26.7495528Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:29:26.7495528Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:29:26.6714357Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -493,8 +583,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 10:59:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:15 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -529,11 +623,15 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -549,11 +647,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:00 GMT ======= - Wed, 13 Nov 2019 10:59:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:15 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -569,11 +671,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1199' ======= - '1198' >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test status: code: 200 message: OK @@ -583,11 +689,15 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD <<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625"}, ======= "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162"}, >>>>>>> Re-record test for app service +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4"}, +>>>>>>> live test {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -610,27 +720,36 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:03.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"42B7FD8BF61C4F79C2BC5AF4683E3EFFCC12166AE6037E75F8A5D3667B78AF5A","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:23.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1CC3647730C5C4B3EE84D8282522811D7DF60D907471479C691E2D31E6625619","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:20.7366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0440F098A1AFFD451E6CE6E911FCCB014746930E8182080E8CEEDD70E19B9B89","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3725' content-type: @@ -641,13 +760,20 @@ interactions: - '"1D5BCBDA89D8275"' ======= - '3720' +======= + - '3725' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:40 GMT + - Tue, 31 Dec 2019 02:30:39 GMT etag: +<<<<<<< HEAD - '"1D59A11688B9F80"' >>>>>>> Re-record test for app service +======= + - '"1D5BF823FA5918B"' +>>>>>>> live test expires: - '-1' pragma: @@ -665,11 +791,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '498' ======= - '494' >>>>>>> Re-record test for app service +======= + - '497' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -714,11 +844,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:23 GMT ======= - Wed, 13 Nov 2019 10:59:41 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:40 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -747,35 +881,47 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' ======= string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:29:49.7115333Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:29:53.2294581+00:00","status":"disabled"}}}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '755' + - '756' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:23 GMT ======= - Wed, 13 Nov 2019 10:59:43 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -810,22 +956,30 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"},{"name":"password2","value":"DJBcLN3V8M9j8+sHX7KNqF8niZ7OOBIq"}]}' ======= string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"},{"name":"password2","value":"FXNkxThSgyMQ96enK1N+PmrOD82izihs"}]}' >>>>>>> Re-record test for app service +======= + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"},{"name":"password2","value":"4BZAJMnDDCYQuN1WhcfMdU+nOkqpB4pm"}]}' +>>>>>>> live test headers: cache-control: - no-cache @@ -834,11 +988,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:24 GMT ======= - Wed, 13 Nov 2019 10:59:43 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -854,7 +1012,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1197' +>>>>>>> live test status: code: 200 message: OK @@ -880,16 +1042,22 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq/providers/Microsoft.ContainerRegistry/registries/functionappacrtestjj5sex","name":"functionappacrtestjj5sex","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtaxukv52qe62framiki27mbioow56xau3bvxuiyxigul6yogk4ib5eqpgwasfb7ei/providers/Microsoft.ContainerRegistry/registries/functionappacrtest2deqyn","name":"functionappacrtest2deqyn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' ======= string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.ContainerRegistry/registries/yugangw2acr","name":"yugangw2acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}}]}' >>>>>>> Re-record test for app service +======= + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.ContainerRegistry/registries/yugangwcu","name":"yugangwcu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.ContainerRegistry/registries/yugangwcu2","name":"yugangwcu2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","identity":{"principalId":"9e7cb25c-ec58-4657-b3b3-75bbd6e5d2ae","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcu2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcu2-mi":{"principalId":"bbc185a9-94a4-4a3f-97e9-447c330fd9bd","clientId":"efc86395-63d0-4a38-ad99-6caf7e22a022"}}},"tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.ContainerRegistry/registries/yugangwvnet","name":"yugangwvnet","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}}]}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '1879' content-type: @@ -903,6 +1071,13 @@ interactions: date: - Wed, 13 Nov 2019 10:59:45 GMT >>>>>>> Re-record test for app service +======= + - '1704' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:30:43 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -931,35 +1106,47 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' ======= string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:29:49.7115333Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:29:53.2294581+00:00","status":"disabled"}}}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '755' + - '756' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT ======= - Wed, 13 Nov 2019 10:59:45 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:45 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -994,22 +1181,30 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"},{"name":"password2","value":"DJBcLN3V8M9j8+sHX7KNqF8niZ7OOBIq"}]}' ======= string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"},{"name":"password2","value":"FXNkxThSgyMQ96enK1N+PmrOD82izihs"}]}' >>>>>>> Re-record test for app service +======= + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"},{"name":"password2","value":"4BZAJMnDDCYQuN1WhcfMdU+nOkqpB4pm"}]}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1018,11 +1213,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT ======= - Wed, 13 Nov 2019 10:59:46 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:45 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1038,11 +1237,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1189' +>>>>>>> live test status: code: 200 message: OK @@ -1061,27 +1264,36 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:04.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"42B7FD8BF61C4F79C2BC5AF4683E3EFFCC12166AE6037E75F8A5D3667B78AF5A","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:23.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1CC3647730C5C4B3EE84D8282522811D7DF60D907471479C691E2D31E6625619","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:21.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0440F098A1AFFD451E6CE6E911FCCB014746930E8182080E8CEEDD70E19B9B89","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3723' content-type: @@ -1092,13 +1304,20 @@ interactions: - '"1D5BCBDA89D8275"' ======= - '3718' +======= + - '3723' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:46 GMT + - Tue, 31 Dec 2019 02:30:46 GMT etag: +<<<<<<< HEAD - '"1D59A11688B9F80"' >>>>>>> Re-record test for app service +======= + - '"1D5BF823FA5918B"' +>>>>>>> live test expires: - '-1' pragma: @@ -1135,18 +1354,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -1154,10 +1378,16 @@ interactions: ======= West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3305' content-type: @@ -1171,6 +1401,13 @@ interactions: date: - Wed, 13 Nov 2019 10:59:47 GMT >>>>>>> Re-record test for app service +======= + - '3276' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:30:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1209,23 +1446,31 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1234,11 +1479,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:28 GMT ======= - Wed, 13 Nov 2019 10:59:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:47 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1256,7 +1505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1264,11 +1513,15 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD <<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", ======= "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", >>>>>>> Re-record test for app service +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4", +>>>>>>> live test "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' @@ -1289,23 +1542,31 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1314,6 +1575,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:29 GMT etag: @@ -1323,6 +1585,11 @@ interactions: etag: - '"1D59A117882F1AB"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:50 GMT + etag: + - '"1D5BF8250BDCA0B"' +>>>>>>> live test expires: - '-1' pragma: @@ -1340,11 +1607,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= - '1188' >>>>>>> Re-record test for app service +======= + - '1189' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1363,9 +1634,13 @@ interactions: "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1376,25 +1651,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1271' + - '1555' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -1402,10 +1682,16 @@ interactions: ======= West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3285' content-type: @@ -1416,13 +1702,20 @@ interactions: - '"1D5BCBDB7CF7BCB"' ======= - '3087' +======= + - '3256' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:51 GMT + - Tue, 31 Dec 2019 02:30:52 GMT etag: +<<<<<<< HEAD - '"1D59A117882F1AB"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8250BDCA0B"' +>>>>>>> live test expires: - '-1' pragma: @@ -1440,11 +1733,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1194' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1182' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1467,23 +1764,31 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1492,11 +1797,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:31 GMT ======= - Wed, 13 Nov 2019 10:59:52 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1514,11 +1823,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11998' ======= - '11999' >>>>>>> Re-record test for app service +======= + - '11998' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1526,20 +1839,28 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD <<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", ======= "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", >>>>>>> Re-record test for app service +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4", +>>>>>>> live test "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": +<<<<<<< HEAD <<<<<<< HEAD "Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}''' ======= "T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}''' >>>>>>> Re-record test for app service +======= + "hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -1557,23 +1878,31 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1582,6 +1911,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:33 GMT etag: @@ -1591,6 +1921,11 @@ interactions: etag: - '"1D59A117AAA4B80"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:54 GMT + etag: + - '"1D5BF8253C9836B"' +>>>>>>> live test expires: - '-1' pragma: @@ -1608,11 +1943,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1194' ======= - '1190' >>>>>>> Re-record test for app service +======= + - '1181' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1635,23 +1974,31 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1660,11 +2007,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:33 GMT ======= - Wed, 13 Nov 2019 10:59:54 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:55 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1682,7 +2033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -1703,15 +2054,19 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -1724,11 +2079,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:34 GMT ======= - Wed, 13 Nov 2019 10:59:55 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:56 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1765,18 +2124,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -1784,10 +2148,16 @@ interactions: ======= West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3303' content-type: @@ -1801,6 +2171,13 @@ interactions: date: - Wed, 13 Nov 2019 10:59:56 GMT >>>>>>> Re-record test for app service +======= + - '3274' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:30:57 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1839,23 +2216,31 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1864,11 +2249,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT ======= - Wed, 13 Nov 2019 10:59:56 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1886,7 +2275,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -1894,20 +2283,28 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD <<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", ======= "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", >>>>>>> Re-record test for app service +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4", +>>>>>>> live test "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": +<<<<<<< HEAD <<<<<<< HEAD "Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5", "DOCKER_ENABLE_CI": "true"}}''' ======= "T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU", "DOCKER_ENABLE_CI": "true"}}''' >>>>>>> Re-record test for app service +======= + "hrpqNItHq2PPhHwPjUr98p/z1fa79sDV", "DOCKER_ENABLE_CI": "true"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -1925,23 +2322,31 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV","DOCKER_ENABLE_CI":"true"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1950,6 +2355,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT etag: @@ -1959,6 +2365,11 @@ interactions: etag: - '"1D59A117CF12E40"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:59 GMT + etag: + - '"1D5BF8256A3E695"' +>>>>>>> live test expires: - '-1' pragma: @@ -1976,11 +2387,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1193' ======= - '1190' >>>>>>> Re-record test for app service +======= + - '1186' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2003,23 +2418,31 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV","DOCKER_ENABLE_CI":"true"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2028,11 +2451,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:37 GMT ======= - Wed, 13 Nov 2019 10:59:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:00 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2050,11 +2477,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11999' ======= - '11998' >>>>>>> Re-record test for app service +======= + - '11996' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2075,15 +2506,19 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -2096,11 +2531,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:37 GMT ======= - Wed, 13 Nov 2019 10:59:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:01 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2139,23 +2578,31 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/publishingcredentials/$functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg@functionappacrtest000004.scm.azurewebsites.net"}}' ======= West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR@functionappacrtest000004.scm.azurewebsites.net"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj@functionappacrtest000004.scm.azurewebsites.net"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2164,11 +2611,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:38 GMT ======= - Wed, 13 Nov 2019 10:59:59 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:02 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2186,7 +2637,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -2209,23 +2660,31 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' ======= West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV","DOCKER_ENABLE_CI":"true"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2234,11 +2693,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:39 GMT ======= - Wed, 13 Nov 2019 11:00:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:03 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2256,11 +2719,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11996' ======= - '11998' >>>>>>> Re-record test for app service +======= + - '11995' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2281,15 +2748,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -2302,11 +2773,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:39 GMT ======= - Wed, 13 Nov 2019 11:00:02 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:04 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2345,23 +2820,31 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/publishingcredentials/$functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg@functionappacrtest000004.scm.azurewebsites.net"}}' ======= West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR@functionappacrtest000004.scm.azurewebsites.net"}}' >>>>>>> Re-record test for app service +======= + West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj@functionappacrtest000004.scm.azurewebsites.net"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2370,11 +2853,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:40 GMT ======= - Wed, 13 Nov 2019 11:00:03 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:05 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2392,7 +2879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -2415,15 +2902,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: string: '' @@ -2433,6 +2924,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:47 GMT etag: @@ -2442,6 +2934,11 @@ interactions: etag: - '"1D59A117CF12E40"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:11 GMT + etag: + - '"1D5BF8256A3E695"' +>>>>>>> live test expires: - '-1' pragma: @@ -2455,11 +2952,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14999' ======= - '14996' >>>>>>> Re-record test for app service +======= + - '14995' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml index f6998e4c68f..f78a8061e33 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration.yaml @@ -14,14 +14,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:26:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:25:43 GMT + - Tue, 31 Dec 2019 02:26:48 GMT expires: - '-1' pragma: @@ -64,14 +64,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-19T06:25:45.4824079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:25:48.4120479+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-12-31T02:26:52.9274508Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:26:56.5767206+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:25:48 GMT + - Tue, 31 Dec 2019 02:26:57 GMT expires: - '-1' pragma: @@ -115,14 +115,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:26:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -131,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:25:50 GMT + - Tue, 31 Dec 2019 02:26:57 GMT expires: - '-1' pragma: @@ -166,11 +166,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -182,7 +182,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:25:50 GMT + - Tue, 31 Dec 2019 02:26:59 GMT expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -221,14 +221,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:26:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:25:51 GMT + - Tue, 31 Dec 2019 02:26:59 GMT expires: - '-1' pragma: @@ -272,16 +272,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5763,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5763","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6155,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6155","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -290,7 +290,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:10 GMT + - Tue, 31 Dec 2019 02:27:17 GMT expires: - '-1' pragma: @@ -308,7 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' x-powered-by: - ASP.NET status: @@ -329,16 +329,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5763,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5763","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6155,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6155","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -347,7 +347,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:11 GMT + - Tue, 31 Dec 2019 02:27:18 GMT expires: - '-1' pragma: @@ -389,11 +389,11 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -405,7 +405,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:13 GMT + - Tue, 31 Dec 2019 02:27:19 GMT expires: - '-1' pragma: @@ -423,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -444,16 +444,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","name":"acrtestplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5763,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5763","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6155,"name":"acrtestplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6155","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -462,7 +462,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:14 GMT + - Tue, 31 Dec 2019 02:27:19 GMT expires: - '-1' pragma: @@ -499,11 +499,11 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 @@ -529,7 +529,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:16 GMT + - Tue, 31 Dec 2019 02:27:21 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "localMySqlEnabled": + "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: @@ -566,33 +566,33 @@ interactions: Connection: - keep-alive Content-Length: - - '495' + - '513' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:26:21.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8BC605D678663C0540D3861BC4E60F3FAB88B9D97893403BBF9A8BA5DBFCBA0F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:27:27.1066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"19B84FC8AF56F18211A16986A408FF815D63581BFEBF9E5A175A70F7883386FE","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3625' + - '3630' content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:40 GMT + - Tue, 31 Dec 2019 02:27:45 GMT etag: - - '"1D59EA24315F260"' + - '"1D5BF81D8197DD5"' expires: - '-1' pragma: @@ -610,7 +610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '496' x-powered-by: - ASP.NET status: @@ -635,22 +635,28 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/publishxml?api-version=2019-08-01 response: body: string: @@ -658,11 +664,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Tue, 19 Nov 2019 06:26:42 GMT + - Tue, 31 Dec 2019 02:27:46 GMT expires: - '-1' pragma: @@ -697,14 +703,14 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-19T06:25:45.4824079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:25:48.4120479+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-12-31T02:26:52.9274508Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:26:56.5767206+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -713,7 +719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:26:42 GMT + - Tue, 31 Dec 2019 02:27:48 GMT expires: - '-1' pragma: @@ -748,14 +754,14 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-05-01 response: body: - string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"},{"name":"password2","value":"2ALq=akOzEvWk1Z7CvHcFF=e3jotOd=Y"}]}' + string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"NNKTxaH0uW1x8YdjGNxaLkXNrOy+ebDf"},{"name":"password2","value":"BGfld6Y9qJbgIPgdK+S92gHTIvkUW5Z="}]}' headers: cache-control: - no-cache @@ -764,7 +770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:26:43 GMT + - Tue, 31 Dec 2019 02:27:48 GMT expires: - '-1' pragma: @@ -780,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 200 message: OK @@ -799,23 +805,24 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.ContainerRegistry/registries/yugangwsup","name":"yugangwsup","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.ContainerRegistry/registries/zuhacr","name":"zuhacr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"centralus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.ContainerRegistry/registries/yugangwcu","name":"yugangwcu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.ContainerRegistry/registries/yugangwcu2","name":"yugangwcu2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","identity":{"principalId":"9e7cb25c-ec58-4657-b3b3-75bbd6e5d2ae","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcu2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcu2-mi":{"principalId":"bbc185a9-94a4-4a3f-97e9-447c330fd9bd","clientId":"efc86395-63d0-4a38-ad99-6caf7e22a022"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '941' + - '1414' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:26:44 GMT + - Tue, 31 Dec 2019 02:27:50 GMT expires: - '-1' pragma: @@ -844,14 +851,14 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-11-19T06:25:45.4824079Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:25:48.4120479+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"japanwest","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2019-12-31T02:26:52.9274508Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:26:56.5767206+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -860,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:26:45 GMT + - Tue, 31 Dec 2019 02:27:50 GMT expires: - '-1' pragma: @@ -895,14 +902,14 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2019-05-01 response: body: - string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"},{"name":"password2","value":"2ALq=akOzEvWk1Z7CvHcFF=e3jotOd=Y"}]}' + string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"NNKTxaH0uW1x8YdjGNxaLkXNrOy+ebDf"},{"name":"password2","value":"BGfld6Y9qJbgIPgdK+S92gHTIvkUW5Z="}]}' headers: cache-control: - no-cache @@ -911,7 +918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 06:26:45 GMT + - Tue, 31 Dec 2019 02:27:51 GMT expires: - '-1' pragma: @@ -927,7 +934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 200 message: OK @@ -946,26 +953,26 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:26:22.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8BC605D678663C0540D3861BC4E60F3FAB88B9D97893403BBF9A8BA5DBFCBA0F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:27:27.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webappacrtest000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"19B84FC8AF56F18211A16986A408FF815D63581BFEBF9E5A175A70F7883386FE","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3623' + - '3628' content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:47 GMT + - Tue, 31 Dec 2019 02:27:52 GMT etag: - - '"1D59EA24315F260"' + - '"1D5BF81D8197DD5"' expires: - '-1' pragma: @@ -1002,24 +1009,26 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2925' + - '3092' content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:48 GMT + - Tue, 31 Dec 2019 02:27:53 GMT expires: - '-1' pragma: @@ -1058,11 +1067,11 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1075,7 +1084,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:49 GMT + - Tue, 31 Dec 2019 02:27:53 GMT expires: - '-1' pragma: @@ -1093,7 +1102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11998' x-powered-by: - ASP.NET status: @@ -1119,11 +1128,11 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1136,9 +1145,9 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:50 GMT + - Tue, 31 Dec 2019 02:27:55 GMT etag: - - '"1D59EA2537BA3C0"' + - '"1D5BF81E8B392AB"' expires: - '-1' pragma: @@ -1156,7 +1165,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' x-powered-by: - ASP.NET status: @@ -1170,12 +1179,16 @@ interactions: "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webappacrtest000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": - false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1186,33 +1199,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1129' + - '1411' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2963' + - '3130' content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:51 GMT + - Tue, 31 Dec 2019 02:27:56 GMT etag: - - '"1D59EA2537BA3C0"' + - '"1D5BF81E8B392AB"' expires: - '-1' pragma: @@ -1230,7 +1245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1189' x-powered-by: - ASP.NET status: @@ -1253,11 +1268,11 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1270,7 +1285,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:52 GMT + - Tue, 31 Dec 2019 02:27:57 GMT expires: - '-1' pragma: @@ -1288,7 +1303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -1298,7 +1313,7 @@ interactions: body: '{"kind": "", "properties": {"WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "DOCKER_REGISTRY_SERVER_URL": "https://webappacrtest000003.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": - "/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"}}' + "NNKTxaH0uW1x8YdjGNxaLkXNrOy+ebDf"}}' headers: Accept: - application/json @@ -1316,15 +1331,15 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"}}' + West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"NNKTxaH0uW1x8YdjGNxaLkXNrOy+ebDf"}}' headers: cache-control: - no-cache @@ -1333,9 +1348,9 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:53 GMT + - Tue, 31 Dec 2019 02:27:58 GMT etag: - - '"1D59EA255D7E340"' + - '"1D5BF81EAC304B5"' expires: - '-1' pragma: @@ -1353,7 +1368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1190' x-powered-by: - ASP.NET status: @@ -1376,15 +1391,15 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"/5SWNmQSbZypquZsXXDQsBe1sOUnn5ym"}}' + West","properties":{"WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"NNKTxaH0uW1x8YdjGNxaLkXNrOy+ebDf"}}' headers: cache-control: - no-cache @@ -1393,7 +1408,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:54 GMT + - Tue, 31 Dec 2019 02:27:59 GMT expires: - '-1' pragma: @@ -1432,11 +1447,11 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webappacrtest000003","type":"Microsoft.Web/sites","location":"Japan @@ -1449,7 +1464,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:55 GMT + - Tue, 31 Dec 2019 02:27:59 GMT expires: - '-1' pragma: @@ -1486,24 +1501,26 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2981' + - '3148' content-type: - application/json date: - - Tue, 19 Nov 2019 06:26:55 GMT + - Tue, 31 Dec 2019 02:28:00 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml index e6980591080..8f641fa968a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT ======= - Thu, 14 Nov 2019 01:41:34 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,22 +80,30 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.3685388Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:37.3684618+00:00","status":"disabled"}}}}' ======= string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-14T01:41:35.7749709Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-14T01:41:38.3164876+00:00","status":"disabled"}}}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:28:32.7615172Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:28:35.9208737+00:00","status":"disabled"}}}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -96,11 +112,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:37 GMT ======= - Thu, 14 Nov 2019 01:41:37 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -116,11 +136,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= - '1188' >>>>>>> Re-record test for app service +======= + - '1187' +>>>>>>> live test status: code: 200 message: OK @@ -146,11 +170,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -159,11 +187,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:38 GMT ======= - Thu, 14 Nov 2019 01:41:38 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -198,15 +230,19 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -218,11 +254,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:38 GMT ======= - Thu, 14 Nov 2019 01:41:40 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:38 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -240,7 +280,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1194' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -268,11 +312,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -281,11 +329,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:39 GMT ======= - Thu, 14 Nov 2019 01:41:40 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -320,18 +372,23 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"serverFarmId":6104,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -339,6 +396,10 @@ interactions: West","properties":{"serverFarmId":5707,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5707","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + West","properties":{"serverFarmId":6158,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6158","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -347,11 +408,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:58 GMT ======= - Thu, 14 Nov 2019 01:41:56 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:57 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -369,11 +434,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1186' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -394,18 +463,23 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan +<<<<<<< HEAD <<<<<<< HEAD West","properties":{"serverFarmId":6104,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -413,6 +487,10 @@ interactions: West","properties":{"serverFarmId":5707,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5707","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + West","properties":{"serverFarmId":6158,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6158","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -421,11 +499,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:59 GMT ======= - Thu, 14 Nov 2019 01:41:57 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -462,26 +544,35 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4073947Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4073947Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:09.3605103Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:13.4461171Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:13.4461171Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:41:13.3679949Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:28:10.4194884Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:28:10.4194884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:28:10.3413490Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '1200' content-type: @@ -495,6 +586,13 @@ interactions: date: - Thu, 14 Nov 2019 01:41:58 GMT >>>>>>> Re-record test for app service +======= + - '1168' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:28:59 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -529,11 +627,15 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -549,11 +651,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:00 GMT ======= - Thu, 14 Nov 2019 01:41:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:28:59 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -569,11 +675,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1199' ======= - '1197' >>>>>>> Re-record test for app service +======= + - '1190' +>>>>>>> live test status: code: 200 message: OK @@ -583,11 +693,15 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD <<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486"}, ======= "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "A91352A5354BD958A1E81E787625A08C3639170743C01D3E32F951ADF186FEAE"}, >>>>>>> Re-record test for app service +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E"}, +>>>>>>> live test {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -610,6 +724,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= @@ -627,10 +742,22 @@ interactions: ======= West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:03.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"455B1DCB19A4AB97719FEF98EDBE62C82D3ED9138CF26F34601F3A63B4435C86","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:04.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2712CE839A7AE09942545C3F42718ECDB735053BAA79A0525C65B7B23577DF5D","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3725' content-type: @@ -648,6 +775,15 @@ interactions: etag: - '"1D59A8CB74D67E0"' >>>>>>> Re-record test for app service +======= + - '3725' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:29:23 GMT + etag: + - '"1D5BF8211F83FF5"' +>>>>>>> live test expires: - '-1' pragma: @@ -710,11 +846,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:24 GMT ======= - Thu, 14 Nov 2019 01:42:21 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:29:23 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -740,9 +880,10 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n + - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -790,6 +931,8 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= +>>>>>>> live test azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -797,7 +940,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.3685388Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:37.3684618+00:00","status":"disabled"}}}}' +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:28:32.7615172Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:28:35.9208737+00:00","status":"disabled"}}}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -806,7 +953,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT +======= + - Tue, 31 Dec 2019 02:29:25 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -838,7 +989,7 @@ interactions: Content-Length: - '0' ParameterSetName: - - -n + - -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-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -848,7 +999,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"},{"name":"password2","value":"gj=8SgCdvomjuIBNNt6GPPAW35FJMAQy"}]}' +======= + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"},{"name":"password2","value":"k1NW6Q/BST=NayN6dKYfk8mEwvKrx/NG"}]}' +>>>>>>> live test headers: cache-control: - no-cache @@ -857,7 +1012,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT +======= + - Tue, 31 Dec 2019 02:29:26 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -873,7 +1032,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1194' +>>>>>>> live test status: code: 200 message: OK @@ -899,17 +1062,30 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq/providers/Microsoft.ContainerRegistry/registries/functionappacrtestjj5sex","name":"functionappacrtestjj5sex","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglplchoujaebmh2yq2poi4e7aq57a3bn3lfprsb6sakl5vtfjw6eqw2k5fac7w5dbv/providers/Microsoft.ContainerRegistry/registries/functionappacrtestmlrcel","name":"functionappacrtestmlrcel","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' +======= + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi2tn2nfhgyprqlsmzfr7lp6bgkeqqhlj2pb76zu52o6zgwccvj7axgfz2b6nw267c/providers/Microsoft.ContainerRegistry/registries/functionappacrtestngx6pk","name":"functionappacrtestngx6pk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.ContainerRegistry/registries/yugangwcu","name":"yugangwcu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.ContainerRegistry/registries/yugangwcu2","name":"yugangwcu2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","identity":{"principalId":"9e7cb25c-ec58-4657-b3b3-75bbd6e5d2ae","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcu2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcu2-mi":{"principalId":"bbc185a9-94a4-4a3f-97e9-447c330fd9bd","clientId":"efc86395-63d0-4a38-ad99-6caf7e22a022"}}},"tags":{}}]}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '1879' content-type: - application/json; charset=utf-8 date: - Fri, 27 Dec 2019 13:58:27 GMT +======= + - '1793' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:29:27 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -945,7 +1121,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.3685388Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:37.3684618+00:00","status":"disabled"}}}}' +======= + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:28:32.7615172Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:28:35.9208737+00:00","status":"disabled"}}}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -954,7 +1134,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:27 GMT +======= + - Tue, 31 Dec 2019 02:29:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -996,7 +1180,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: +<<<<<<< HEAD string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"},{"name":"password2","value":"gj=8SgCdvomjuIBNNt6GPPAW35FJMAQy"}]}' +======= + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"},{"name":"password2","value":"k1NW6Q/BST=NayN6dKYfk8mEwvKrx/NG"}]}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1005,7 +1193,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:27 GMT +======= + - Tue, 31 Dec 2019 02:29:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1021,7 +1213,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1195' +>>>>>>> live test status: code: 200 message: OK @@ -1040,15 +1236,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan +<<<<<<< HEAD West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:05.5133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1E9AF8C2BF2D32587B39C953004B0BF4D44438B44C39DE257CEBE96E9C6DF7EB","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:04.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2712CE839A7AE09942545C3F42718ECDB735053BAA79A0525C65B7B23577DF5D","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1057,9 +1261,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:28 GMT etag: - '"1D5BCBDA974A895"' +======= + - Tue, 31 Dec 2019 02:29:29 GMT + etag: + - '"1D5BF8211F83FF5"' +>>>>>>> live test expires: - '-1' pragma: @@ -1096,26 +1306,42 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3305' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:29 GMT +======= + - '3276' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:29:29 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1154,15 +1380,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1171,7 +1405,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:30 GMT +======= + - Tue, 31 Dec 2019 02:29:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1197,7 +1435,11 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", +>>>>>>> live test "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' @@ -1218,15 +1460,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1235,9 +1485,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:31 GMT etag: - '"1D5BCBDB8BC80E0"' +======= + - Tue, 31 Dec 2019 02:29:31 GMT + etag: + - '"1D5BF822269A420"' +>>>>>>> live test expires: - '-1' pragma: @@ -1255,7 +1511,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1185' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1279,7 +1539,7 @@ interactions: "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -1291,28 +1551,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1554' + - '1555' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3285' content-type: - application/json @@ -1320,6 +1589,15 @@ interactions: - Fri, 27 Dec 2019 13:58:33 GMT etag: - '"1D5BCBDB8BC80E0"' +======= + - '3256' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:29:33 GMT + etag: + - '"1D5BF822269A420"' +>>>>>>> live test expires: - '-1' pragma: @@ -1337,7 +1615,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1196' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1360,15 +1642,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1377,7 +1667,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:33 GMT +======= + - Tue, 31 Dec 2019 02:29:33 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1395,7 +1689,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11998' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1403,12 +1701,20 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", +>>>>>>> live test "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": +<<<<<<< HEAD "wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}''' +======= + "SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -1426,15 +1732,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1443,9 +1757,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:34 GMT etag: - '"1D5BCBDBAE1D1E0"' +======= + - Tue, 31 Dec 2019 02:29:35 GMT + etag: + - '"1D5BF82245806A0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1463,7 +1783,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1194' +======= + - '1184' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1486,15 +1810,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1503,7 +1835,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:35 GMT +======= + - Tue, 31 Dec 2019 02:29:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1542,11 +1878,15 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -1559,7 +1899,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:35 GMT +======= + - Tue, 31 Dec 2019 02:29:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1596,26 +1940,42 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3303' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:36 GMT +======= + - '3274' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:29:37 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1654,15 +2014,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1671,7 +2039,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:37 GMT +======= + - Tue, 31 Dec 2019 02:29:38 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1710,11 +2082,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -1727,7 +2103,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:37 GMT +======= + - Tue, 31 Dec 2019 02:29:38 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1764,26 +2144,42 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3303' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:37 GMT +======= + - '3274' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:29:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1822,15 +2218,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1839,7 +2243,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:39 GMT +======= + - Tue, 31 Dec 2019 02:29:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1857,7 +2265,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11997' +======= + - '11999' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1878,11 +2290,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -1895,7 +2311,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:39 GMT +======= + - Tue, 31 Dec 2019 02:29:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1932,26 +2352,42 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3303' content-type: - application/json date: - Fri, 27 Dec 2019 13:58:40 GMT +======= + - '3274' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:29:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1990,15 +2426,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2007,7 +2451,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:40 GMT +======= + - Tue, 31 Dec 2019 02:29:43 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2025,7 +2473,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11996' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2046,11 +2498,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -2063,7 +2519,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:42 GMT +======= + - Tue, 31 Dec 2019 02:29:44 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2087,12 +2547,20 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", +>>>>>>> live test "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": +<<<<<<< HEAD "wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}''' +======= + "SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -2110,15 +2578,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2127,9 +2603,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:42 GMT etag: - '"1D5BCBDBF96C16B"' +======= + - Tue, 31 Dec 2019 02:29:44 GMT + etag: + - '"1D5BF822A1A0660"' +>>>>>>> live test expires: - '-1' pragma: @@ -2147,7 +2629,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1189' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2171,7 +2657,7 @@ interactions: "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -2183,29 +2669,38 @@ interactions: Connection: - keep-alive Content-Length: - - '1531' + - '1532' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3226' content-type: - application/json @@ -2213,6 +2708,15 @@ interactions: - Fri, 27 Dec 2019 13:58:43 GMT etag: - '"1D5BCBDBF96C16B"' +======= + - '3197' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:29:46 GMT + etag: + - '"1D5BF822A1A0660"' +>>>>>>> live test expires: - '-1' pragma: @@ -2230,7 +2734,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1186' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2253,15 +2761,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2270,7 +2786,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:44 GMT +======= + - Tue, 31 Dec 2019 02:29:47 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2288,7 +2808,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11998' +======= + - '11994' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2309,6 +2833,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 @@ -2317,6 +2842,13 @@ interactions: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group @@ -2330,7 +2862,11 @@ interactions: <<<<<<< HEAD - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:45 GMT +======= + - Tue, 31 Dec 2019 02:29:48 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2354,7 +2890,11 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", +>>>>>>> live test "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' @@ -2375,15 +2915,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2392,9 +2940,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:45 GMT etag: - '"1D5BCBDC1AE56CB"' +======= + - Tue, 31 Dec 2019 02:29:48 GMT + etag: + - '"1D5BF822C77CC80"' +>>>>>>> live test expires: - '-1' pragma: @@ -2412,7 +2966,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1185' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2435,15 +2993,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan +<<<<<<< HEAD West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +======= + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2452,7 +3018,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:47 GMT +======= + - Tue, 31 Dec 2019 02:29:49 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2470,7 +3040,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11997' +======= + - '11994' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2491,11 +3065,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -2508,7 +3086,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:48 GMT +======= + - Tue, 31 Dec 2019 02:29:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2547,11 +3129,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: string: '' @@ -2561,6 +3147,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:58:53 GMT etag: - '"1D5BCBDC1AE56CB"' @@ -2569,6 +3156,11 @@ interactions: date: - Thu, 14 Nov 2019 01:42:22 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:29:56 GMT + etag: + - '"1D5BF822C77CC80"' +>>>>>>> live test expires: - '-1' pragma: @@ -2579,7 +3171,11 @@ interactions: - nosniff <<<<<<< HEAD x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD - '14998' +======= + - '14996' +>>>>>>> live test x-powered-by: - ASP.NET ======= diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml index 7d8e6b42876..3b7109ab4a9 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_appservice_error_polish.yaml @@ -18,7 +18,7 @@ interactions: - -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:59:52 GMT + - Tue, 31 Dec 2019 02:26:28 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1190' status: code: 200 message: OK @@ -67,14 +67,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:43Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:26:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:59:54 GMT + - Tue, 31 Dec 2019 02:26:29 GMT expires: - '-1' pragma: @@ -117,11 +117,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -133,7 +133,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:55 GMT + - Tue, 31 Dec 2019 02:26:29 GMT expires: - '-1' pragma: @@ -151,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' x-powered-by: - ASP.NET status: @@ -172,14 +172,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:43Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:26:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -188,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:59:55 GMT + - Tue, 31 Dec 2019 02:26:30 GMT expires: - '-1' pragma: @@ -222,16 +222,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22825,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":23238,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23238","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -240,7 +240,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:01 GMT + - Tue, 31 Dec 2019 02:26:41 GMT expires: - '-1' pragma: @@ -279,16 +279,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22825,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":23238,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23238","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:03 GMT + - Tue, 31 Dec 2019 02:26:42 GMT expires: - '-1' pragma: @@ -339,11 +339,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -355,7 +355,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:03 GMT + - Tue, 31 Dec 2019 02:26:44 GMT expires: - '-1' pragma: @@ -373,7 +373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1194' x-powered-by: - ASP.NET status: @@ -394,16 +394,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22825,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":23238,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23238","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -412,7 +412,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:06 GMT + - Tue, 31 Dec 2019 02:26:44 GMT expires: - '-1' pragma: @@ -456,26 +456,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004","name":"web-error000004","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-error000004","state":"Running","hostNames":["web-error000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-error000004","repositorySiteName":"web-error000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-error000004.azurewebsites.net","web-error000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-error000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-error000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:09.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-error000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"36ECA35F630EECC43790A3BEAF1E7A59EE7EEEC881EB5956514C83CA9FB6AD46","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-error000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-error000004","state":"Running","hostNames":["web-error000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-error000004","repositorySiteName":"web-error000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-error000004.azurewebsites.net","web-error000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-error000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-error000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-error-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:50.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-error000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E308809470A4B902BD1C32F609F95D3AC184935244E87626D2BEA1486C5EB20B","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-error000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3537' + - '3534' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:25 GMT + - Tue, 31 Dec 2019 02:27:07 GMT etag: - - '"1D59A1183FC42CB"' + - '"1D5BF81C3395AE0"' expires: - '-1' pragma: @@ -493,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '495' x-powered-by: - ASP.NET status: @@ -518,21 +518,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-error000004/publishxml?api-version=2019-08-01 response: body: string: @@ -540,11 +545,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:00:25 GMT + - Tue, 31 Dec 2019 02:27:09 GMT expires: - '-1' pragma: @@ -558,7 +563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -579,7 +584,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET @@ -595,7 +600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:27 GMT + - Tue, 31 Dec 2019 02:27:09 GMT expires: - '-1' pragma: @@ -629,11 +634,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -645,7 +650,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:27 GMT + - Tue, 31 Dec 2019 02:27:11 GMT expires: - '-1' pragma: @@ -663,7 +668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -684,7 +689,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET @@ -700,7 +705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:28 GMT + - Tue, 31 Dec 2019 02:27:11 GMT expires: - '-1' pragma: @@ -734,16 +739,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":33286,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33286","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":24836,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24836","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -752,7 +757,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:36 GMT + - Tue, 31 Dec 2019 02:27:22 GMT expires: - '-1' pragma: @@ -770,7 +775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1191' x-powered-by: - ASP.NET status: @@ -791,16 +796,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":33286,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33286","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":24836,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24836","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -809,7 +814,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:37 GMT + - Tue, 31 Dec 2019 02:27:25 GMT expires: - '-1' pragma: @@ -851,11 +856,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -867,7 +872,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:37 GMT + - Tue, 31 Dec 2019 02:27:26 GMT expires: - '-1' pragma: @@ -885,7 +890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1193' x-powered-by: - ASP.NET status: @@ -906,16 +911,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/serverfarms/web-error-plan000003","name":"web-error-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":33286,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33286","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":24836,"name":"web-error-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000002-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000002","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24836","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -924,7 +929,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:38 GMT + - Tue, 31 Dec 2019 02:27:27 GMT expires: - '-1' pragma: @@ -968,11 +973,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/web-error000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/web-error000004?api-version=2019-08-01 response: body: string: '{"Code":"Conflict","Message":"Website with given name web-error000004 @@ -988,7 +993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:40 GMT + - Tue, 31 Dec 2019 02:27:33 GMT expires: - '-1' pragma: @@ -1002,7 +1007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml index 98046b22826..17fda5c6a3d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_auto_delete_plan.yaml @@ -19,11 +19,11 @@ interactions: - -g -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -35,7 +35,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:04 GMT + - Tue, 31 Dec 2019 02:28:19 GMT expires: - '-1' pragma: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' x-powered-by: - ASP.NET status: @@ -79,16 +79,16 @@ interactions: - -g -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27537,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27537","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -97,7 +97,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:13 GMT + - Tue, 31 Dec 2019 02:28:29 GMT expires: - '-1' pragma: @@ -115,7 +115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1194' x-powered-by: - ASP.NET status: @@ -136,16 +136,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27537,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27537","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -154,7 +154,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:15 GMT + - Tue, 31 Dec 2019 02:28:30 GMT expires: - '-1' pragma: @@ -191,16 +191,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27537,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27537","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -209,7 +209,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:15 GMT + - Tue, 31 Dec 2019 02:28:31 GMT expires: - '-1' pragma: @@ -254,16 +254,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1}}' + US","properties":{"serverFarmId":27537,"name":"web-del-plan000003","sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27537","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","capacity":1}}' headers: cache-control: - no-cache @@ -272,7 +272,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:18 GMT + - Tue, 31 Dec 2019 02:28:39 GMT expires: - '-1' pragma: @@ -290,7 +290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1187' x-powered-by: - ASP.NET status: @@ -311,16 +311,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":27537,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27537","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -329,7 +329,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:19 GMT + - Tue, 31 Dec 2019 02:28:41 GMT expires: - '-1' pragma: @@ -371,11 +371,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -387,7 +387,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:19 GMT + - Tue, 31 Dec 2019 02:28:42 GMT expires: - '-1' pragma: @@ -405,7 +405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' x-powered-by: - ASP.NET status: @@ -426,16 +426,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","name":"web-del-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28656,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28656","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":27537,"name":"web-del-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27537","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -444,7 +444,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:20 GMT + - Tue, 31 Dec 2019 02:28:43 GMT expires: - '-1' pragma: @@ -470,7 +470,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -481,33 +482,33 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '538' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002","name":"web-del-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:24.873","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"81C9D4C70A47141D27B5A056078D7EA866353DBA0AB663517802E7C5A78B6124","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:48.3566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A78E25A62A9DBE2B5A1727099E3245FA62972B0A5DEF4074A8FBBBB9822FEC3","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3541' + - '3589' content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:41 GMT + - Tue, 31 Dec 2019 02:29:05 GMT etag: - - '"1D59A1145C18690"' + - '"1D5BF82088B53A0"' expires: - '-1' pragma: @@ -525,7 +526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -550,21 +551,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002/publishxml?api-version=2019-08-01 response: body: string: @@ -572,11 +578,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 10:58:43 GMT + - Tue, 31 Dec 2019 02:29:05 GMT expires: - '-1' pragma: @@ -590,7 +596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -611,26 +617,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002","name":"web-del-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:25.273","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"81C9D4C70A47141D27B5A056078D7EA866353DBA0AB663517802E7C5A78B6124","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-del-test000002","state":"Running","hostNames":["web-del-test000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-del-test000002","repositorySiteName":"web-del-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-del-test000002.azurewebsites.net","web-del-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-del-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-del-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-del-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:48.73","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-del-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A78E25A62A9DBE2B5A1727099E3245FA62972B0A5DEF4074A8FBBBB9822FEC3","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-del-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3539' + - '3582' content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:44 GMT + - Tue, 31 Dec 2019 02:29:07 GMT etag: - - '"1D59A1145C18690"' + - '"1D5BF82088B53A0"' expires: - '-1' pragma: @@ -669,11 +675,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-del-test000002?api-version=2019-08-01 response: body: string: '' @@ -683,9 +689,9 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 10:58:49 GMT + - Tue, 31 Dec 2019 02:29:11 GMT etag: - - '"1D59A1145C18690"' + - '"1D5BF82088B53A0"' expires: - '-1' pragma: @@ -699,7 +705,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' x-powered-by: - ASP.NET status: @@ -720,11 +726,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -736,7 +742,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:49 GMT + - Tue, 31 Dec 2019 02:29:12 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml index a8d552572df..f233e0d48f6 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_create_in_different_group.yaml @@ -18,7 +18,7 @@ interactions: - -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:40 GMT + - Tue, 31 Dec 2019 02:24:58 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1191' status: code: 200 message: OK @@ -67,14 +67,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:42 GMT + - Tue, 31 Dec 2019 02:24:59 GMT expires: - '-1' pragma: @@ -117,11 +117,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -133,7 +133,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:42 GMT + - Tue, 31 Dec 2019 02:25:02 GMT expires: - '-1' pragma: @@ -151,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -172,14 +172,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -188,7 +188,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:43 GMT + - Tue, 31 Dec 2019 02:25:02 GMT expires: - '-1' pragma: @@ -222,16 +222,16 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","name":"planInOneRG","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28655,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":30955,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30955","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -240,7 +240,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:50 GMT + - Tue, 31 Dec 2019 02:25:12 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1192' x-powered-by: - ASP.NET status: @@ -279,16 +279,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","name":"planInOneRG","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28655,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":30955,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30955","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:51 GMT + - Tue, 31 Dec 2019 02:25:14 GMT expires: - '-1' pragma: @@ -339,11 +339,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -355,7 +355,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:52 GMT + - Tue, 31 Dec 2019 02:25:15 GMT expires: - '-1' pragma: @@ -373,7 +373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -394,16 +394,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","name":"planInOneRG","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28655,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_28655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":30955,"name":"planInOneRG","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30955","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -412,7 +412,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:53 GMT + - Tue, 31 Dec 2019 02:25:16 GMT expires: - '-1' pragma: @@ -456,26 +456,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG","name":"webInOtherRG","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webInOtherRG","state":"Running","hostNames":["webinotherrg.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webInOtherRG","repositorySiteName":"webInOtherRG","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webinotherrg.azurewebsites.net","webinotherrg.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webinotherrg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webinotherrg.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:57.227","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webInOtherRG","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A55427C1699CE947FD09366ECD509E2843A5D1B42A2DDC54A2EF3ABF4F625995","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"webinotherrg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webInOtherRG","state":"Running","hostNames":["webinotherrg.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webInOtherRG","repositorySiteName":"webInOtherRG","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webinotherrg.azurewebsites.net","webinotherrg.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webinotherrg.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webinotherrg.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/planInOneRG","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:23.463","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webInOtherRG","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A55427C1699CE947FD09366ECD509E2843A5D1B42A2DDC54A2EF3ABF4F625995","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"webinotherrg.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3381' + - '3371' content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:14 GMT + - Tue, 31 Dec 2019 02:25:40 GMT etag: - - '"1D59A11355349B0"' + - '"1D5BF818E890B10"' expires: - '-1' pragma: @@ -493,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -518,21 +518,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/webInOtherRG/publishxml?api-version=2019-08-01 response: body: string: @@ -540,11 +545,11 @@ interactions: cache-control: - no-cache content-length: - - '1042' + - '1574' content-type: - application/xml date: - - Wed, 13 Nov 2019 10:58:14 GMT + - Tue, 31 Dec 2019 02:25:41 GMT expires: - '-1' pragma: @@ -558,7 +563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml index b44ec657b9c..843ff9769a5 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_deploy_zip.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_zipDeploy000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:09:13 GMT + - Tue, 31 Dec 2019 02:38:26 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:15 GMT + - Tue, 31 Dec 2019 02:38:27 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1190' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_zipDeploy000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001","name":"cli_test_webapp_zipDeploy000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:09:15 GMT + - Tue, 31 Dec 2019 02:38:28 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","name":"webapp-zipDeploy-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21754,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21754","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":30957,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30957","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:22 GMT + - Tue, 31 Dec 2019 02:38:37 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1174' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","name":"webapp-zipDeploy-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21754,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21754","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":30957,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30957","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:23 GMT + - Tue, 31 Dec 2019 02:38:39 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:25 GMT + - Tue, 31 Dec 2019 02:38:41 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1190' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","name":"webapp-zipDeploy-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21754,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21754","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":30957,"name":"webapp-zipDeploy-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_zipDeploy000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30957","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:26 GMT + - Tue, 31 Dec 2019 02:38:42 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '536' + - '554' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002","name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:30.29","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7CA1457E4A6406921BFB0568E45DCCF4E739BCE9AFC75DC2204BAD0C0DDE9670","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net","webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:50.787","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D2FC21D1FD2475A1BEBFD6726E29EA1372F4DD2CC56C49988AC8513043FBD368","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3740' + - '3739' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:46 GMT + - Tue, 31 Dec 2019 02:39:08 GMT etag: - - '"1D59A12D289CF35"' + - '"1D5BF836FC99300"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '495' x-powered-by: - ASP.NET status: @@ -465,23 +466,29 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2019-08-01 response: body: string: @@ -489,11 +496,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:09:47 GMT + - Tue, 31 Dec 2019 02:39:09 GMT expires: - '-1' pragma: @@ -507,7 +514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11993' x-powered-by: - ASP.NET status: @@ -530,15 +537,15 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/publishingcredentials/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishingcredentials/$webapp-zipDeploy-test000002","name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-zipDeploy-test000002","publishingPassword":"wxQwfoJpdnJFYN24Lvx2C7qqfKLz7W7JHbg6sWeoliqGeryLSvf4kc5ijmuH","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-zipDeploy-test000002:wxQwfoJpdnJFYN24Lvx2C7qqfKLz7W7JHbg6sWeoliqGeryLSvf4kc5ijmuH@webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$webapp-zipDeploy-test000002","publishingPassword":"Cmspjz4pbv2BP4CwWJ3dca5cfnoE9Qe4nWNJJlH8Shm7phobdqF5711BtbiL","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-zipDeploy-test000002:Cmspjz4pbv2BP4CwWJ3dca5cfnoE9Qe4nWNJJlH8Shm7phobdqF5711BtbiL@webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -547,7 +554,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:49 GMT + - Tue, 31 Dec 2019 02:39:11 GMT expires: - '-1' pragma: @@ -565,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11990' x-powered-by: - ASP.NET status: @@ -586,26 +593,26 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002","name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:30.9633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7CA1457E4A6406921BFB0568E45DCCF4E739BCE9AFC75DC2204BAD0C0DDE9670","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-testyigcfhryjnaquhrqcbf.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-zipDeploy-test000002","state":"Running","hostNames":["webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net"],"webSpace":"cli_test_webapp_zipDeploy000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_zipDeploy000001-WestUSwebspace/sites/webapp-zipDeploy-test000002","repositorySiteName":"webapp-zipDeploy-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net","webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/serverfarms/webapp-zipDeploy-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:51.44","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-zipDeploy-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D2FC21D1FD2475A1BEBFD6726E29EA1372F4DD2CC56C49988AC8513043FBD368","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_zipDeploy000001","defaultHostName":"webapp-zipdeploy-test57ajcrcqnny5soiritb.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3743' + - '3736' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:51 GMT + - Tue, 31 Dec 2019 02:39:11 GMT etag: - - '"1D59A12D289CF35"' + - '"1D5BF836FC99300"' expires: - '-1' pragma: @@ -646,23 +653,29 @@ interactions: - -g -n --src User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/publishxml?api-version=2019-08-01 response: body: string: @@ -670,121 +683,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:09:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11993' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment source config-zip - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --src - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' - headers: - cache-control: - - no-cache - content-length: - - '373' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:09:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment source config-zip - Connection: - - keep-alive - ParameterSetName: - - -g -n --src - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/slotConfigNames?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"webapp-zipDeploy-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:09:54 GMT + - Tue, 31 Dec 2019 02:39:13 GMT expires: - '-1' pragma: @@ -793,66 +696,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment source config-zip - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --src - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' - headers: - cache-control: - - no-cache - content-length: - - '373' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:09:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: @@ -864,69 +707,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": - "10.14", "ENABLE_ORYX_BUILD": "false", "SCM_DO_BUILD_DURING_DEPLOYMENT": "false"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment source config-zip - Connection: - - keep-alive - Content-Length: - - '155' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --src - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_zipDeploy000001/providers/Microsoft.Web/sites/webapp-zipDeploy-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","ENABLE_ORYX_BUILD":"false","SCM_DO_BUILD_DURING_DEPLOYMENT":"false"}}' - headers: - cache-control: - - no-cache - content-length: - - '442' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:09:58 GMT - etag: - - '"1D59A12E29D1AD5"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1184' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK - request: body: !!binary | UEsDBBQAAAAIAARkUUvBmBSXUwAAAHAAAAAJAAAAdGVzdC5odG1ss1F08XcOiQxwVcgoyc2x4+Wy @@ -943,11 +723,11 @@ interactions: Content-Length: - '199' User-Agent: - - AZURECLI/2.0.75 + - AZURECLI/2.0.78 content-type: - application/octet-stream method: POST - uri: https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/zipdeploy?isAsync=true + uri: https://webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net/api/zipdeploy?isAsync=true response: body: string: '' @@ -957,17 +737,17 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:10:13 GMT + - Tue, 31 Dec 2019 02:39:17 GMT expires: - '-1' location: - - https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-11-13_11-10-14Z + - https://webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-12-31_02-39-17Z pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=8d19353e31508408a606729f6c5bf28df0a8240d674128eb1edb9f017011bcb8;Path=/;HttpOnly;Domain=webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net + - ARRAffinity=da33149745cc3c85a01c55c3baee5c434b3b6c2ed325c4285bd9126a5b834681;Path=/;HttpOnly;Domain=webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -985,35 +765,35 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.0.75 + - AZURECLI/2.0.78 content-type: - application/octet-stream method: GET - uri: https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/mock-deployment + uri: https://webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"cd028ba608e14fe9949d3e57ce9f76e2","status":1,"status_text":"Building - and Deploying ''cd028ba608e14fe9949d3e57ce9f76e2''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running post deployment command(s)...","received_time":"2019-11-13T11:10:14.2921618Z","start_time":"2019-11-13T11:10:14.4015126Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"webapp-zipDeploy-test000002","provisioningState":null}' + string: '{"id":"6a832cc33c0c435685b9e5baf165722c","status":1,"status_text":"Building + and Deploying ''6a832cc33c0c435685b9e5baf165722c''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Generating deployment script.","received_time":"2019-12-31T02:39:18.8661555Z","start_time":"2019-12-31T02:39:20.139991Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"webapp-zipDeploy-test000002","provisioningState":null}' headers: cache-control: - no-cache content-length: - - '592' + - '583' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:10:17 GMT + - Tue, 31 Dec 2019 02:39:21 GMT expires: - '-1' location: - - https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest + - https://webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=8d19353e31508408a606729f6c5bf28df0a8240d674128eb1edb9f017011bcb8;Path=/;HttpOnly;Domain=webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net + - ARRAffinity=da33149745cc3c85a01c55c3baee5c434b3b6c2ed325c4285bd9126a5b834681;Path=/;HttpOnly;Domain=webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -1031,24 +811,24 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.0.75 + - AZURECLI/2.0.78 content-type: - application/octet-stream method: GET - uri: https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/mock-deployment + uri: https://webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"cd028ba608e14fe9949d3e57ce9f76e2","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"","received_time":"2019-11-13T11:10:14.2921618Z","start_time":"2019-11-13T11:10:14.4015126Z","end_time":"2019-11-13T11:10:18.6209808Z","last_success_end_time":"2019-11-13T11:10:18.6209808Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest","log_url":"https://webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net/api/deployments/latest/log","site_name":"webapp-zipDeploy-test000002","provisioningState":null}' + string: '{"id":"6a832cc33c0c435685b9e5baf165722c","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2019-12-31T02:39:18.8661555Z","start_time":"2019-12-31T02:39:20.139991Z","end_time":"2019-12-31T02:39:26.7623928Z","last_success_end_time":"2019-12-31T02:39:26.7623928Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net/api/deployments/latest","log_url":"https://webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net/api/deployments/latest/log","site_name":"webapp-zipDeploy-test000002","provisioningState":null}' headers: cache-control: - no-cache content-length: - - '733' + - '732' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:10:23 GMT + - Tue, 31 Dec 2019 02:39:27 GMT expires: - '-1' pragma: @@ -1056,7 +836,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=8d19353e31508408a606729f6c5bf28df0a8240d674128eb1edb9f017011bcb8;Path=/;HttpOnly;Domain=webapp-zipdeploy-testyigcfhryjnaquhrqcbf.scm.azurewebsites.net + - ARRAffinity=da33149745cc3c85a01c55c3baee5c434b3b6c2ed325c4285bd9126a5b834681;Path=/;HttpOnly;Domain=webapp-zipdeploy-test57ajcrcqnny5soiritb.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml index 7b82899f5f1..4fc2c71c173 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:09 GMT + - Tue, 31 Dec 2019 02:25:49 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:09 GMT + - Tue, 31 Dec 2019 02:25:49 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:09 GMT + - Tue, 31 Dec 2019 02:25:49 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23993,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23993","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":25557,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25557","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:15 GMT + - Tue, 31 Dec 2019 02:25:56 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1192' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23993,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23993","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":25557,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25557","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:18 GMT + - Tue, 31 Dec 2019 02:25:58 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:20 GMT + - Tue, 31 Dec 2019 02:25:58 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23993,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23993","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":25557,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25557","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:20 GMT + - Tue, 31 Dec 2019 02:25:59 GMT expires: - '-1' pragma: @@ -396,14 +396,14 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET + string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 (Oracle)","runtimeVersion":"1.7.0_51","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_71 (Oracle)","runtimeVersion":"1.7.0_71","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_80 @@ -425,17 +425,16 @@ interactions: (Azul)","runtimeVersion":"1.8.0_202_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.8.0_212 (Azul)","runtimeVersion":"1.8.0_212_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"11","runtimeVersion":"11","isDefault":false,"minorVersions":[{"displayVersion":"11.0.2 (Azul)","runtimeVersion":"11.0.2_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"11.0.3 - (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java - SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' + (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"SE","runtimeVersion":"SE","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '17083' + - '17080' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:21 GMT + - Tue, 31 Dec 2019 02:25:59 GMT expires: - '-1' pragma: @@ -479,26 +478,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:25.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A0B7790F45B5146C33EE576CCBA85B98B8F0B5F1AC2DB47E0DB31A001A67C0DE","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:04.14","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C99284C95018DD255E01D2B5A7FAD4459C252D45592F73D7E15EFC85C8DF8A29","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3525' + - '3539' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:42 GMT + - Tue, 31 Dec 2019 02:26:22 GMT etag: - - '"1D59A11B16E1200"' + - '"1D5BF81A6AFF495"' expires: - '-1' pragma: @@ -516,7 +515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '497' x-powered-by: - ASP.NET status: @@ -537,26 +536,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:25.92","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A0B7790F45B5146C33EE576CCBA85B98B8F0B5F1AC2DB47E0DB31A001A67C0DE","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:04.5533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C99284C95018DD255E01D2B5A7FAD4459C252D45592F73D7E15EFC85C8DF8A29","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3523' + - '3542' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:43 GMT + - Tue, 31 Dec 2019 02:26:23 GMT etag: - - '"1D59A11B16E1200"' + - '"1D5BF81A6AFF495"' expires: - '-1' pragma: @@ -598,26 +597,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '535' + - '558' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:56 GMT + - Tue, 31 Dec 2019 02:26:30 GMT etag: - - '"1D59A11C4425260"' + - '"1D5BF81B6957975"' expires: - '-1' pragma: @@ -631,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1190' x-powered-by: - ASP.NET status: @@ -652,25 +651,25 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T11:02:28.5995689 - https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_11-02-05Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:26:54.2977121 + https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-26-43Z"}}' headers: cache-control: - no-cache content-length: - - '707' + - '730' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:28 GMT + - Tue, 31 Dec 2019 02:27:03 GMT etag: - - '"1D59A11C4425260"' + - '"1D5BF81B6957975"' expires: - '-1' pragma: @@ -707,24 +706,24 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '534' + - '557' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:58 GMT + - Tue, 31 Dec 2019 02:27:35 GMT etag: - - '"1D59A11C4425260"' + - '"1D5BF81B6957975"' expires: - '-1' pragma: @@ -765,22 +764,28 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2019-08-01 response: body: string: @@ -788,11 +793,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:03:00 GMT + - Tue, 31 Dec 2019 02:27:36 GMT expires: - '-1' pragma: @@ -806,7 +811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -827,26 +832,26 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:57.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A0B7790F45B5146C33EE576CCBA85B98B8F0B5F1AC2DB47E0DB31A001A67C0DE","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:31.2233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C99284C95018DD255E01D2B5A7FAD4459C252D45592F73D7E15EFC85C8DF8A29","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3523' + - '3542' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:31 GMT + - Tue, 31 Dec 2019 02:28:06 GMT etag: - - '"1D59A11C4425260"' + - '"1D5BF81B6957975"' expires: - '-1' pragma: @@ -887,22 +892,28 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishxml?api-version=2019-08-01 response: body: string: @@ -910,11 +921,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:03:32 GMT + - Tue, 31 Dec 2019 02:28:08 GMT expires: - '-1' pragma: @@ -951,15 +962,15 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/config/publishingcredentials/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishingcredentials/$webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"84LdXWLSzEeWKKE79T4yQ6KQnwrAP6BZPglfDsdgRejFuswbNaNlaZnjvgpg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:84LdXWLSzEeWKKE79T4yQ6KQnwrAP6BZPglfDsdgRejFuswbNaNlaZnjvgpg@webapp-win-log000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"D2a2HgbvLyEvExh7vic2dCb5X4PiSGXdfzHctj4xYZwZ8sGBvZRmkFx4Qvj3","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:D2a2HgbvLyEvExh7vic2dCb5X4PiSGXdfzHctj4xYZwZ8sGBvZRmkFx4Qvj3@webapp-win-log000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -968,7 +979,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:33 GMT + - Tue, 31 Dec 2019 02:28:09 GMT expires: - '-1' pragma: @@ -986,7 +997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11999' x-powered-by: - ASP.NET status: @@ -1000,328 +1011,342 @@ interactions: response: body: string: !!binary | - UEsDBBQACAAIAFJYbU8AAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw - l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACABR - WG1PAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj - MDFlYzc5MjQyZmZiMDcvbG9nLmxvZ51YXY7byBF+ToDcgfBDZgyoO+xm/5CTl1msnQ2QrLGwvVhg - MMCiSTYlZiVSIamZVZ72EH7MVYLcZS+QK+RrSiKboxHXY1uAXWpVfV9VV1dXFw9ZQhgjLPrI2E3I - b0JNlRDuc7f4fpubrqyWQbtLN3W+W9uWLkQWFqkRkqhUhkQIk5A4kooUOheSG62yvFiEf/g9f8ay - DjWTCpa/a+zWNM50brfrer+xVRcUdRNk9WZTdkGZB1dZFosCfxJ+RRc5L0TKdEY4sxERNsxJmiQJ - kZyFQghb2Ci9hJpwGSdRcrf4xla2OXjkwbZZU247ulB5moY8TIhlsSKCZ5KkPBdEJUYym2hRSOUg - fnfuWUxDpTQcRsxa51W3snBnva4fneScMlUedHWwPFCwvt8HAjfBlfnXrrFBW3b+8mE1IPuAkKom - ed0Rjzxpgldvbu5X9cbeO8V7BLbGf+pm/yog9ZPFUbG97+p63eI3MJpb/OO0vzPd6omKZw/bcMH/ - hLKECxnJ+Rj3O+zg6D/a4AebBh+A2ds8D2lCI6F1zGHy/a6qnqTKMaKU0kWRh1LzIiI2NAUReS5J - nJicsNRYi5RUmuuLtCMVCcHju8XXhy26eeL9WcDuD9/QbJO/uhANxmgE3mGo7xZ/xbavHfeT16PB - S8GEeuxYSXj+dWMP6Wq22x/rooApS1fd5jJyrBOcCOTh33b57sO+yui7tx+Doqk3yK8LiXKFxHy6 - +vj42NR1d/UZSG/s2vZVoijXFnZWdevEtjNN58iu54wkQuF4uvhv9y5ORxt0WXblsqobO6OcMJZI - Ls6Utyb7ySxdktXVnHqcKCafUW/qzLbtl6q3tnmwDbQvQnMahgmPOPJjiN1nbjCnXIpQK6j+va5/ - 6iOGqgltAP5pgA52VW6bQyVx23gx1zhVLBJxHJ0KV79rZLcNjmVnMHkpETwLx/Jq8+DRpjSrq6Jc - ziHzhCEQd4t3x4qAsLVlXbWBeTDl2qRrG9RVX0q3a9PhdtgEpkGGhVRRHv6xrwF/hhRT7gss8SWu - JpKeSPEosZDKicSmi5xNVrmYih4KLPEnuh4jrEZTU5HHHqvC84whVTwc7P5EiibSQEHQcFQTlE2F - wYSgnA5MnDBZGWy7lcFZQSPfWuTrAPbER1DA+oLHTdBhDwSVvo6aCp6BeGQAjfFnEs4NP5M+NwkG - Ax3p40hkj7eip4JnDZf6yQVJccOdBKiPK8oPL9JyDIjy6SifgfIZKOoxUMAZQJ3ggSa+6WQMiPvZ - kLmgMyWHbBt542rxDEIadhx6bGJl4gjScLACtiNF7Xuv4f1AXvvea38ztB8KNJu+jhcKjbgMaQec - KWo4OoJtGk3EIDRoIWv8FS/XYj/oMQrIwNsJQ4xifzucMETBCR6Ozw76XpjdymgdkucvJOadEyfK - cUuc6HJopvCeCugH3MBZh7p76jKOlTToDxgNvm9t4F+K/S3rutFsVddYM0FeFoVtXBN+VH0Z7HZz - 0gtQU3Aq2QxrITRjofe6KMu2J77frAPTBZMu5diH3Hu/uWQ6plEiw1jgRqlA6Iev3r+ber3fLU21 - fCS4nQhuzFsURhoG72r04ofbDpfPYsGe6/AZcgltFee4KF9ofGygEXa7zhHZixA8iXWMbuiFEO/f - fvXm27cBHmtmxrhgifqC4KzLzFZIklnyEYovYs8TBN/+vG3QP90itXFu+5z88fh6vD+uXdhC38qv - n/7966df8AmwOWZriesk+y2LZrRVrFiIdn7UNk1j9qRAA9HZCvr4+yL9XVeuW7KxzdL26HPaMdNx - hNZsRLdVhuZm1xyY8xnkBG8dja0fdXtMvPUOuVk37W/iP2ejW9W500Sxv4wumGYqnKBnrr20eBUu - K9PhWdqDqxeZwAu/Pfoe0ZldwwNMyRiN+Og7mkdsV0e6/faALGaQz9UfTLP/TZ+FYkJOdqtBebCk - p91AHaVsBvVc3XZmCTVcAC9S2+LRTbqaNHaJ43GLsk/1jAGZ4N2DEcoYrNYUlqQ7V8FvXUc0t9Fa - S0xpfO1TqPOy7ScHKILggPM8wyERPBGTdOnfCQSvh67MXORx+F+kf0g3AOPKfpFia7ttU3e1y5S6 - 6Dd9BlmGOsRwy/ffcd611p0RdAiXsSWPMONBfRsDX6DOrfpgzYRcStx3ySTPMATIe6YvU6srUpRV - 2a5sfouODHfXtbX4qmm7g9+vZ9ifs4Ats165AQXypi8QwfWu2pbHExfOWdNciWml+2d727eyMxTO - lbBzP++JyfMGDiHpgmu88h5Nk8NDdw6G/rTcuh/hjQuiaJFfRi236W4JAHTKwfWm7aFmTaCH6DuU - cadbW/WM3IV2MIGAnRprlOiuqV3BQfqevtyUG1e5vHZv1XVbYpvmUMnRIM95cU7BJTgpXQDQrMdg - YfPS9AWyQay8Z5lD7r93niKGcgZHhRxDlElymiyz287hRFQH15Vd1l1pMFAECh44vn9fgPLpf//9 - Dz7uXk/rfD8WW4ZtDa7TfYeTGIH20JE35pG4n8IZr51/GsyBV4l69kDWGCyCL96u4nO8/8vxWGHQ - De/bttit1/tDC3w2mUSTooQWzM1MTpNJFM7On+gex5PX7Ws3ocyESrMUw0keFpyI0HCSmlQTJWSh - dapzo/rB8nNQmkvFI3a3+NiUy6XtR+aNzfYZhiPX6LMeSvsYoLvCxLhs3cgkf00XMQagKTMpUblN - iDChIWnOciIxVdS6kHkahc8Oy+FbHEoM5FDb34yD+TEqdIExLxcKtsMi1hi3Rrh6hLYkNuBZFCpl - Rexs/x9QSwcIMCsOciwIAABZGAAAUEsDBBQACAAIAEVYbU8AAAAAAAAAAAAAAAA9AAAAZGVwbG95 - bWVudHMvY2M4NGZmZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdNNL - zyzJTM/LL0rl5SpITM5OTE/VyyrOzwPyivKTU4uLobzi1KKy1CIgh5dLD6iFlwsAUEsHCE08ibUy - AAAAOQAAAFBLAwQUAAgACABRWG1PAAAAAAAAAAAAAAAAPwAAAGRlcGxveW1lbnRzL2NjODRmZmZm - OTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbI2SzU6EMBSF9ya+A2HP - TxkIMOl03Iy6l5Ub0ykXbEIpacvoPJsLH8lXsHaAYDImdtV7z/lOb9N+fXzi/bvovBMozWW/81EY - +x70TNa8b3f+aJqg8Pfk9gbXMHTyLKA3tvI8zGvCWJE2dpUJLdM4ZQBZmQEUBYsRsLxM0qRpjnGO - I2t2EB3Nq1TkPLa0b98CoRuDo6npDJdTQJEHbh7HI46Wxoo/CMq7OeROcKaklo0JmRRz2sXiGAFa - 0xYIrWtPj8daWrq3u2GQytiLRbPBuQclW2UJgqNl6wRtqBk1eRoZszKOpnqlVfBuLHYRXOHEjmoz - UYe+rrgAksSoDBAK0KZCaBsn200WFqhMivIZR1f8LkcBA36CPxLiPMzK3K6NjfhlnSdU5vrZlsyT - JC/yzJJ2+MnnMPjPwLPJEfYNhg4MkEqNgKOldCLXLwbEQO5pp604l7OmgNay784rfWn9PNTqC34D - UEsHCPPWbu1kAQAAugIAAFBLAwQUAAAAAABCWG1PAAAAAAAAAAAAAAAAEwAAAGRlcGxveW1lbnRz - L3BlbmRpbmdQSwMEFAAIAAgAPFhtTwAAAAAAAAAAAAAAABgAAABkZXBsb3ltZW50cy9zZXR0aW5n - cy54bWx7v3u/jX1Fbo5CWWpRcWZ+nq2SoZ6BkkJqXnJ+SmZeuq1SaUmaroWSvR0vl01xakkJUKwY - yFZQsElJLcjJr8xNzSsB84EiiSkpCtmplbZKSUWJeckZSgpliTmlqbZKuYnFJalFSgr6EI36KDpt - 9OHGAgBQSwcIDAVmJHIAAACMAAAAUEsDBBQACAAIAERYbU8AAAAAAAAAAAAAAAAcAAAAZGVwbG95 - bWVudHMvdG9vbHMvZGVwbG95LmNtZMVW32/iRhB+R+J/GJAs3VXBSa6tKpFSHSLLHT0wFDu5nIRk - OfYCvphd116H0If+7Z3ZtfkRSO76dDyA8ezMfjv7fTPzPp5D03J7I9+bdnvMH7JbNrSa4LC/oPlL - E97zcClBzuf1Wr3WbkPr5EebPt1c38A1TxO5WXGhwA2zOFXadMuzPJaiDZf2hX3526uRtHGS8Yz/ - XcR5rHh+vLwEg2Hj+QaEjLj9NYdY5CpIEh7Va+sl+msDvPtDFAnQV7026IPFptPx1BxTn/IC3tRr - APqcozjPY7HYRuRPPCxUcJ/wM0gTHuS82qRacgaYwCDJeBBtKhuPYBU8cMgLxBArCAMB9xxwTbhE - 2zyTKwiLLKMkcfEYZ1JQwmyCsZBKAs8ymdVrb8tjulwV6S4J9DbnKpFhkKA/oYt4Emzw+ykNBCWa - lrjMg+7UG/S7Pc/tWP9G6YVl27MgU/E8CBVmVefDGXtwzfoDh13j72Q4/jJijue745tpj5nUUKQj - UxWxhImZfSGS151+wAA6yc8iGVPH2sK0Zuv1OpMSWaMP/yyqw+48f9R1Bn3mev6k633chT22HcRd - BSKe8xwDU5afxZ1M2e1gfOOeig1AoE+veGEHAAR/Cj8pxHe/OD2/N7o20FFSA0NbeCiiAvKNCLd0 - LC3EyE9kdEsjXnwCIl1VhNOu5AmtBSo0jxOkU3nOxo7vjZLv+xyjVYhhSGRKNvC1yBVkhRC0Z5MQ - 0Z5NWMsiiZDnucTH7IG8KC0HB+pYQZpGgQqsGWKbVc52uEJBYjr0trv6QDeBO9+oOInVBvqFCBVS - 94TaqeTo1S5PeKgclHtZUEoOV/w1cNiQ9TzfGV8z/5ZN3cHYOUi3t+Qwl0ki13TGACUaScFBCjy+ - FPA5FpFc59D9h9T7md/rErSvUzq8vgHrtf0sLKtHosHCevDWCODoLRtNrOb33x+ymd0NXO9ZbIoy - 832qjmW6bLVKm4Z35v7OU1Qt5ondsc7vh8he8CZUWj/f4JXWAEB5iNfgpavX0E1G/p+ulvpLAA/9 - /xe+Et1+4arSsZ+l6l2HUkk+Wtsmgw4CRDF3mo1qVQPvuEGvS9wNvMm3wIbuXjWtvFAnFI+kVLmX - m+gttGLabNw3Wmn/4I/W676AD+YBjXHfqjvqx0BEyX5LjbYDAvY7HfHS1tXNFDfk8vkAiTxw/MmQ - BpKdhqqp5LKksNZgm+kWzXurCL0O6hGubz3CrxfQohFnF6fsbWRWh4atHFsCDccdhVxStJzuBmSN - oWkvYnVlLxdX9u6oV+aRSuF36lrfP+b3nQ2m6plh5tEMUvWaOfzJgoheP9vbrkJtIg3Ch2BBg9QL - pUK3aGtWrsNZSooyyWmRLymze+mrskTMPboDzXwURGPbm1qtNJNRoYt7Kbhv1o5UpqZnEEF+9Kfs - XFwgJE3YknIQyhWOFRFkslAxthC1DBSsY+zNZmgu8N+Si2qc26PqboDTT0AlxO9YP5X3aun/Vr2m - h/NdA0eG6bn8oml26AfY6SPgT7HqYWnq7M+2ZxW8zjYarYPz+4MRWB+pnDfxhHqorNc0/m6JHJZB - DjLUE2sEUZGRnNf8Hqgzwo7kqGdDB9oHZ1ZGU+yQP3IcvHeGPk6/Va83s7mBcOxTwb3cLtj3rdfe - GI3oe3kGvR+LOKdZOy/CkOf5vMDhBvH9B1BLBwh6ITNJ6QQAAO4MAABQSwMEFAAIAAgARFhtTwAA - AAAAAAAAAAAAACQAAABkZXBsb3ltZW50cy90b29scy9kZXBsb3ltZW50Q2FjaGVLZXmzMNUzNDQw - MtEzMTQ10TPg5dKtVNDVzcvXTckv0U1JLcjJr8xNzStR0C1SUHKxisnIz02NKc4sSY0pSi3IBzLy - iyqVFHTz0SQRGotjSvLzc4qBaoCGpqQCKZDugMSSDDQtSObxcgEAUEsHCHHT5L5nAAAAlgAAAFBL - AwQUAAgACABAWG1PAAAAAAAAAAAAAAAAFQAAAExvZ0ZpbGVzL2V2ZW50bG9nLnhtbG1QTWvDMAy9 - D/YfTO8ltpuUJCiGLClrWNeFNqeVMkyj0bB84bgdhbHfPi9pyg67WM9P0tOTYHHGWncC+ihge+k0 - VgJS1ZyLHBVZywqDyVLrNi2lfm9UtZR1XqKaWNemJBacUgpWL2F+sMIzlsIGawCQye5DmII+whNe - PhuVd2IEYI1IQFZUGCmUGnMyePllggmnzJsyNmWzjDGfcp/S15uDDR6MoJnMPD53qWPPr2ZuCYiO - sq6NqbBty+IgddHUYI0kRE3VnjQqsYkpZY4TO9R2H7ipGBOwxcNJFfpitrbGI/ULx1JLAf0bpukq - icIseVm/PYfr8HGx8f3vf1jyRfSx6ALqRJx5jkt2WRITA/me7FIDZ55r78EatIfD/sXGQz+7E/d3 - P1BLBwjUhSCSJgEAAMIBAABQSwMEFAAAAAAAcVhtTwAAAAAAAAAAAAAAABkAAABMb2dGaWxlcy9r - dWR1L2RlcGxveW1lbnQvUEsDBBQACAAIADtYbU8AAAAAAAAAAAAAAABTAAAATG9nRmlsZXMva3Vk - dS90cmFjZS8yMDE5LTExLTEzVDExLTAxLTU1X2Q4MjZmNV8wMDFfU3RhcnR1cF9QT1NUX2FwaS1z - ZXR0aW5nc18wcy54bWx1jstqwzAQRfeF/sN01lFt+dHExg6EdGPqJqEyITsjYrUV2LJqjRf9+yqF - QAl0O+fOvadwpCyQpl6VKEhONFt4U1+zcoTQSfLnKOQZ45zxuOE8D3mepo9xFiNo40ias490q+jp - PUWYp77EQFodOEWkzYdDGBR9jl2Jh71oEOjb+vx0XbDakzhbJYtosUQQ29dWvFSHVoi6PW7q6nnT - VPtdiaFn56H5fd6NRiGs7+8Air/6215J4/VPQw/1eJn+3z+JEoRgXTwwBt08SdKjySEcHDDmm4vg - UnyLk+WV/wBQSwcIJQAMvN4AAAA3AQAAUEsDBBQACAAIADxYbU8AAAAAAAAAAAAAAABPAAAATG9n - RmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEzVDExLTAxLTU1X2Q4MjZmNV8wMDJfUE9TVF9hcGkt - c2V0dGluZ3NfMjA0XzJzLnhtbJ1T227aQBB9r9R/2O5zZrExvoBwJJeQBpWbsCnpozET2Aq87u4a - knx9x7QolSKkqq9nztzOnOkbixWz0u4x5qOyUAdZbtkCf9ZoLGeb3BLedtwuuC64Xua6Pcft+b7o - +D5nsjQ2LwuibKJ28ERIrfcxb+WVbBm0lmoZzg5od2oT8/kszTizLxXx9aVDJSnidaPOTfsm5Gyg - yhILK1UZ86+IFSR7ecQzbrG0MMZya3c0UvCGZeeKeVXtZZE3qa0fRpWcJTX11fL1jMX8c26EEJwN - nyvqEHPXcaBQJQ1ZU4MHZQg74ZrqwEmWsFfb41GGEsMXhcIUB5G/1hqJYaRFI0okfZYGNSRbmizm - SROGFa7TJg60idVqv0fdinzhiFB4pM8zHAz8WR6a1fPcjYJNVIAXRT50wrUD3W5QQOg5UdAOA8d1 - 1pw9wipZpbAskU60wQ0sF+N3Og/Go+E0g9GcdvNE1xNtzxWh32s7gdNtaiSLBYxnX2B09+9901E2 - hLvhfDz7PjlXp9xrKnG2SlIi3yfLcQYPdO5pMhle519T9RHulT7lull0rpVVMd9ZW5GVaIeqSlEf - ZYHvQpMUBrPxXZoli4wk4Oz24wfG+n87fFbbrWocrtFUqjR0+GsWD0XbJ5Nd7Hqhk+FtbQZ0hOYv - Opz9BjJ8JgtMVWPgxqicNVOijvlEFloZ9WRhNEpbriOc/3bBIC92eDFWzCstj/SfZ1VMNUUL31Cb - 8+t0yHCe47l09tZt/xMA29T6/Ac95gYHwwBInH6r0eZdPHpj/AJQSwcIsz2l300CAAAfBAAAUEsD - BBQACAAIADxYbU8AAAAAAAAAAAAAAABWAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEz - VDExLTAxLTU3X2Q4MjZmNV8wMDNfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWyd - k8tu2zAQRfcF+g8s1xk9bT1cK4DqOIkQJw4suU6XsjSxWcgiS1LO4+tLOTVaBHBRdDv3csi5czhW - GgXRTDeY0Kyt+I61G7LAHx0qTUldalP3HDcG1wXXL1x35LijYWgFgUcJa5Uu28pY6sgLHoeUdLJJ - qF0KZivU2vRSdl7tiheBlOxQb3md0KtpQYk2pYTK40WCGcGPo8GZdxZSMuFti5VmvE3oDaKAtGF7 - 0yLtTAvJXss36UupLMui5JorndAnXJdCwBNroeGb/Z6FDMMXjpaqdlb52kk0DsU0KqtFM9xSoYR0 - g605m/YyrHCd9zqY+7XkTYPSjoaWY4WWb4Z7hp2CX0+G/sFl6UZBHVXgR9EQBuHagTgOKgh9Jwq8 - MHBcZ03JA6zSVQ7LFk2+NdawXMxOhjSZZdO7ArL7hLq+FfuW57tWOBx5TuDEfa90sYDZ/Aqyi3+/ - P8+KKVxM72fzb7eH7ubsqbQoWaW5MV+my1kB1/O8uEtvp6f9p9J9gEsun0rZD3wvueYJ3Wot1GEG - IXKUe1bhO+n84wdCxn8yOe/0hvdMSlSCt8pA8BcoY/83WUe7QVR3amKS70l2KHkrFPhs9j6/oaR/ - CsqE3rJKcsUfNWRZbruOZbz/ufJJWW3xSFFChWR785MOoytxhxq+olQHugeGLt/xXbPbHjoDI/S/ - xexWiIZVB9Dt74q3n0m1LaX5VUmnHyGixD4ffwIgdScPphFxdooAmAjHdp/ge3kQHvWfUEsHCMzx - iRo1AgAA9QMAAFBLAwQUAAgACABAWG1PAAAAAAAAAAAAAAAAQgAAAExvZ0ZpbGVzL2t1ZHUvdHJh - Y2UvMjAxOS0xMS0xM1QxMS0wMi0wMF9kODI2ZjVfMDA0X1NodXRkb3duXzBzLnhtbFXLSw7CIBSF - 4bmJe7gyLpWXhZK2azDRDZCCkaSltVzi9mXq9PzfGTKGHTDiEkZyP7Y55AyPd0G/fRMB77DugvGe - ck65fHJumbCMtUwqAjFldGmuxBvRvW4E9uhHInujGtFoAmXHuNbMWP1YptrOaK1vFS4u4xE+JWT8 - I6KVRihtKrlOw4VS8OVwGLdkgfM1A6XT+fQDUEsHCJHYtf2VAAAAtwAAAFBLAwQUAAgACABCWG1P - AAAAAAAAAAAAAAAAWgAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0wNF9k - ODI2ZjVfMDAxX1N0YXJ0dXBfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzBzLnhtbH2PXUvDMBSG - 7wX/w/FcL7bpYulKMxhzjGL9wJThXQlrnIE2rc0p6L83IgPxwtv3OTzveQtPZgSy1BmJivRE8wjP - 5n02nhBaTSFOYr5inDO+rDnP4ySPxXW6FAjWedLuGE7aLElfbxDmqZMY6dFG3hBZd/KROvb152gQ - ekNvQytxv6sRKEQSp3PRaAMQPBOLZJEiqO19o+7Kp0apqjlsqvJ2U5ePDxLjwH58EncfZCanu70N - n64vLwCK32O2ndEujHnpO6iGk/93jQil0bq4YgzaedJkB5dD3HtgLJiL6Fv8FyfZmX8BUEsHCMJ3 - zPzmAAAARQEAAFBLAwQUAAgACABCWG1PAAAAAAAAAAAAAAAAVgAAAExvZ0ZpbGVzL2t1ZHUvdHJh - Y2UvMjAxOS0xMS0xM1QxMS0wMi0wNF9kODI2ZjVfMDAyX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlw - ZV8yMDBfMHMueG1snZPbbtpAEIbvK/Udtnud8RFsQ3Ekl5AEhYQIm5JeGjOBrcC73V1DkqfvmBSp - ioRU9Xbm3zn88+3AWFTMCrvFlI/rSu5EvWYz/NWgsZytSkvxwPN74Pvgh4Xv972g73WcqNfhTNTG - lnVFklUSRM9dzhq9TblbKuEatJZqGTevdsWrQs52aDdylfKbUcGZpVDK9amREpTo+EnnIriIOBvK - usbKClmn/A5RQbYVeyqRNVRCi7fyPfWtNI7jcHYrjU35AZelUnAQNWzler8XscD4VaJjqp1TvjUa - SWGERePUSMvNDWrI1ljT26xNwwKXeZsH6m+13G5Ru0nX8ZzYCWm5F9gZ+DMytAOXpZ9Eq6SCMEm6 - 0ImXHvR6UQVx6CVREEee7y05e4JFtshhXiP5u8IVzGeTsyYNJ+PRQwHjx5T7odMLnSD0nbjbD7zI - 67W1stkMJtMbGF/9e/98XIzgavQ4mf64P1ant+fc4myR5SS+zuaTAm6nefGQ3Y/O68+5+wTXUh9K - 3S78qKWVKd9Yq8xxB6Vy1HtR4YfU5edPjA3+ZnLa2LVsmdRolKwNQXAOSjpUSOycyDrJCVHbmCE5 - 35LscfYeKPCF7j6946wdBXXK70WlpZHPFsbj3PU9h7T/efJhWW3wRFHKlRZ7+knH1Y16QAvfUZsj - 3R2iK/RCn27bQkcwQvtb6LZKbUV1BN39aWT9lVWbUtOvShv7DAln7uXgCwBbNfoo6jNvZxgAWThw - Wwc/psNuchL8BlBLBwhaP0jrOAIAAPYDAABQSwMEFAAIAAgAQlhtTwAAAAAAAAAAAAAAAEkAAABM - b2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItMDVfZDgyNmY1XzAwM19QT1NUX2Rl - cGxveV8yMDJfMHMueG1slVRLc9s2EL53Jv8BxaGnLAmQelCKmQzryLGm8mMsuU566VDkRsKUAlAA - lO38+i4la+Jxokx6BT4sdr/HnviAlgUVGsz5VFdmo/SK3eC/LfrAWV0GOk+EHIGUINOFlGORjEU/ - ElnKmdI+lLoiSJ0lg899zlrX5Dyu0Tbm8Z2vNotHi/nkIaDTZfNBhd/KjX2jfOEfdZUH1yJnGwxr - U+f8+mq+4Cx0D7g7NGAV3fRk1nudvB5wdmq0xiooo3P+B6KFolFbqkHnAXWAGepVWOd8JDkrWqrr - 1JdyD/+99FEUcTZ5sFQh51IIqOiZ0l0T58bT2T0uS2vhXmlozGq7VUOFw0eDEU0SlV9ah4TwKqCP - NBI9tx4dFCv6OedFdw13uJx399B15EzToIszYisaRinR8wAbD0/DQTdaWcpsUGcVpFnWh95wKWA0 - GlQwTEU2SIYDIcWSs49wV9zN4VYjKVRjDbc3s/9L8+lsOrlcwPSaRk+jURolqYyG/XEiBmLUfVHc - 3MDs6gNM3/98W/PpYgLvJ9ezq08Xu+r09hiJnN0VcwKfFbezBZyT2pfFxeQ4/hjpH+HMuPvSdTxc - OxNMztchWL+bwdo5uq2q8MXV21e/MHby3OxnGKr1ealrkuhHRpeyx9nu+YsC81C6wPZW35AFKA0s - rJEty+qflTOtrn9UNhEZZ/Hbk18BWN26nUnHTGbDjWcA+3bjrt+XkGT0HPJ8oqs2rEwXX4feGu3J - 1sfz20tI9EPYDnBKc2j9KVmsC33C2f5ggQ+dwasKbUCaqqMYXc4vVOWMN58DTKfzWIpIcDYz1VPg - dqKM4/iYH76vb1xa9bQ/OlJ93NAK8uHdnmf6lZbIebvc7ZGgNph/XU5/04oSCYj+X7QQymqNhxDm - 3Dq1pTo7i3h7iQH+ROd3a6RH4UxFKomOb+XoHdQ4+a4WaX90APwHUEsHCHJZX27EAgAASQUAAFBL - AwQUAAgACABSWG1PAAAAAAAAAAAAAAAAUQAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0x - M1QxMS0wMi0wNV9kODI2ZjVfMDA0X0JhY2tncm91bmRfUE9TVF9kZXBsb3lfMzFzLnhtbNVWUW/i - RhB+r9T/MPVDlTzgeI0NNg0n9S65XlXdFYlU92KpWtYDWNi7vt11Ev59ZyEJYIxVnfpShARazc43 - 8803M3trLNZgC1vi1HvPxWalVSPzB80FepBzS8dhwNIBYwM2fGBsEoSTIPbDMPKgkMZyKcgkT8LR - Mvag0eXUu8mxLtXWgwrtWuVTb/bn/MGDdz/+AHB7jPdBI7eFXIHFqlaa6y3sr1YobR/6kCUe3Ly7 - /WkwgLzR5ETJCYyTysBgcI4zQ71UunJIS7RiDQtuMP+XWBFjL7G3or/bZelC/cwlX6H29ydXRT4R - IomW9ElDnkZBJBDjNEZMEhEwFOM0jMLlchGMry9nOfbj0egNuYX9QZUlih13Ys3lCg1aKofLckdG - r9uECnVGXnhEHtDnpFB/1aQER59pFpXKmxJNH8IoTDsQ2OhQnjOEO7ToKuRADhqARVOUOeo+sHFM - StzV3DltBf5+fx8KA19UjvPC4stRn8sk6ow/asV/47TcFiEL0pbZieJVvXUpzuefYIPbXhaTlBI7 - q1PQ432XGrnvzc15vUTXbyjRddNpEYzQRd3Tj2M/jQ490lGF+2cUzc4rPlOZJS+h1kqg6ck/8YMk - 9MBuaxovb9Y1t+upR1NHkx9fVLkHXK8a14Rm6v38rVH2l7tJNtNqpXkFHwtSKlw9J6PrzNX+nuCl - oWFhsj+avMmS2GcsCCM/YnGULQqZSVLJ3y8Sz3x3siHDPQMObw8Bgy0NGqkGubKDI7kONLzFsFYV - ZoZAM421oj9Kb19vqy6zgx+TWaVK82pNQDkSnnM2IwK6LrcxOpTDWNoSz1m7zPkjzUXBxZp+HlE7 - qkAtwa7xuCv3dABNGxCqqrjM/w+EXFpmqR92TsT2vKLR0t3xw7jV8q0h9D3yT/3h98v/IL0zTWX7 - k4OUO4QSjsLwTCkn++BBFytaeG5OaBRbUSJc1RofC3wCah4SS2H4osT82r84i4axPw67NlE/9O8r - qXbAH+fwxGmZo35Z56+RaPzWoLHADemWBj99OYiSG1MI+FrIXD3RSV3/56HNN0UNy0bSXqa2sXuO - wHVHqVaFIEgwWylggYI3Bg+mFKFUFlDuOOuPKx53VKxFWbdOw3E6Do+3xwWzZMjiE7OTBVYi3y3p - hl6N9GqDpRuxfUVOEtoNZ2vstLlOxPUVF5+U2pjXV9WsWZSFWd8/0pD/1RE4gZky9u7t+dWHnrJh - B3p6tMq7WRgGI8ZeWbhkkrA3P/8AUEsHCJ1aMlaqAwAASAsAAFBLAwQUAAgACABDWG1PAAAAAAAA - AAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0wNV9kODI2ZjVf - MDA1X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8xcy54bWytVNty2zYQfe9M/gHFQ5+y - JEiKN8VMh7UVWxP5MpIcp33pUORaRockEACU43x9QNqqPHWYyXTyil3s2cs550gblMRwU2NG520p - Gt5uyRI/dagNJVVh7LvPvBQ8D7xg7XlT5k9Z6ExSnxLealO0pU2pEj+6DSnpVJ1Rt5DcrVDW4qHB - 1mi3tmW0+f3xCVV2ys1Zt/mtaOQbwxvMDgB/WxjmAwv/oqRBcyeqjJ7O1pSYB2lh1L4xyW1g4iWT - 1/7rhJJj0bZYGi7ajL5HlJDXfIeU5J0tofiX4jH0R6Edx6HkTGiT0XvcFFLCPW+hFtvdjscc4weB - ji4bp/jSKbQZmtvWnRbtMq41Ksi3dqKM5n0YbnCz6uNg8Y0SdY3KTUKHObET2GV8hkbDU8vQN1wU - XhJVSQlBkoQwiTcM0jQqIQ5YEvlxxDy2oeQj3OQ3K7hu0d6jwgqul4ufttTjxXx2sYb5VUa9wEkD - xw88Jw6nPotY2mPnyyUsLk9hfvLj/a7m6xmczK4Wl3+eD9Xt37HtUnKTr2zyu/x6sYazy9X6Ij+f - jeePXeMjvBPqvlD9gq6UMCKjd8ZIPcwg5QrVjpf4n9DbV78QcvSc8yf/0vTph3OKZom6q79L/3Bi - 6T9U+5F6i4H/B6jvCSsMD5VHa58XbbFFdejVjj2u1aGk+/boVwBSdWoQw5RMwkmjCcDTFKNYxGAj - wY/jBOMyJVyTK2wraxPjkJHDWETJC0j2HPDI7e/woqsoPSSNpMTPU54f87IzW9EbmEItRautA4xt - xbYYWePY28o+3fqZ6fSxlV1ve/YSjw9r/NyLvixRGqwo6blifYye81IJLW4NzOcr12MO+9+qPy7K - O9wbSUal4jvLmoHNWl6ggQ+o9GBwE2swAQs8K9eFKJ+sbeD+1HXHZPdtGf0kp+7tz9oirAeTtqZa - 88e+3H+0aN+Q8q5QGk3WmVuwS3/BCy/Z3/zbFw/TYJ/wFVBLBwge9xSl3gIAALEGAABQSwMEFAAI - AAgASFhtTwAAAAAAAAAAAAAAAFgAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEt - MDItMTZfZDgyNmY1XzAwNl9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1srVVd - c+I2FH3vTP+DVg99imzJNrZh4+14STZhCgkDpEn70jHyhahjW15JJpv99ZUhLAkLtNNZPXl0r4/O - /Tr3XBuokRGmgAQPKi5LUS3RBD43oA1GeWbsvUdZlzBGmD9jrEe9Hgsd5nUxEpU2WcWtSx574aKD - UaOKBLtZLdwc6kI+l1AZ7RYWRptfN1egkithrpv5L1lZvzeihGT3wF/2GeoR2vkToxLMo8wTfHU5 - w8g81/YZtSVWC2sIWByceWfMw6gvqwq4EbJK8G8ANUkLsQKM0sZiKPE125g+ZtpxHIyupTYJfoJ5 - VtfkSVSkkMvVSkQComcJjualk31tFFgPLSx3pwKbjTsNiqRLG1KC09ZM7mE+be3Evm+ULApQbtxx - qBM5vs3GF1Jq8sKZtIyzjMVhHnPix3GHBNGckm435CTyaRx6UUgZnWP0QO7T+ym5q8AWJIec3E2G - Pyyr/eHg8mZGBuMEM9/p+o7nMyfq9DwaUlvSB5JOJmR4e0UGF/+d73QwuyQXl+Ph7R+jNbr991h2 - MbpPp9b5U3o3nJHr2+nsJh1dHvc/Vo0H8kmqp0y1CRoraWSCH42p9TqGup6CWgkOe6YPP/+E0Pnr - pu8XkFVNjR7KAg3l0v5+oukDW1T3w/k7QlDeqHVT9RAtNSLke+SLbxPwwsW5AjMB3RSnJ6t9ZI22 - x/Qg3nA9WjvTSfoh/YZ8FHuUVdkS1I7r6Yy8gdwDHTdqCWgz9a0QIDsq5Uk4z/NfMUT2vKnVBEq5 - AmRRauJFUXyGxlDlVrHOkAIOduJzlBnEmMt8txUV+9nqFe2gdHQqM178L4VtqVgybts5+/UPvV0D - HPdiwb7b6y7cFRBxHgcLe7pe1g1owAE63Q5AHHPKgEddL/AWizmNkNDoYyOKNv5TsfnU6uOppj0W - 1xvGh0Nn0aug3pTqtjFL2e4SBbqWlbZafHyufBbuFH7rbleLaXTfCmC7gWwMm4sZfGnll3OoDeQY - tbNlVwoeCa6klgtDBoOpy6hje/1/6m8/44+wlfQE10qs7JStdUXXN2DI76D0etUEVup96jMrnEPJ - X5bMWoV6rntMAA8L2g9amu0isqNGZut9addbITa83L+1rN4j/pgpDSZpzILEB/qChdtmPlxxj/pb - h38AUEsHCElDNaJdAwAAPAgAAFBLAwQUAAgACABOWG1PAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVz - L2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0yOF9kODI2ZjVfMDA3X0dFVF9hcGktZGVwbG95 - bWVudHMtbGF0ZXN0XzIwMl8wcy54bWytVV1zmzgUfd+Z/Q+qHvapAokPA27oDnXcxFPnY2xnk+1L - B4trRzuAqCScpr++gnw4TWJPZ6c8ci9HR+feczjQBhpkhCkhxZOay0rUazSDry1og1GRG/veoywh - jBHmLxgbUm/oxY4/SDAStTZ5zW1LEXuDVYhRq8oUu3kj3AKaUt5WUBvtlhZGm7/vXoFKj4Q5bpd/ - 5VXzzogK0u0BX+wx1CM0/IxRBeZaFik+Gi8wMreNPUY9EGuELQQsDt56b5mH0UjWNXAjZJ3iTwAN - yUqxAYyy1mIo8T2/K33IteM4GB1LbVJ8A8u8aciNqEkp15uNiAREtxIczSsn/94qsB1aWO5ODVaN - Cw2KZGt7pRRnXZlcwnLe1Yk93yhZlqDcOHSoEzm+VeMbqTS550w6xnnO4kERc+LHcUiCaElJkgw4 - iXwaD7xoQBldYnRFLrPLObmowQ6kgIJczKa/TdXRdDI+XZDJeYqZ7yS+4/nMicKhRwfUjvSKZLMZ - mZ4dkcnhr/OdTxZjcjg+n579e9Kj2293qYvRZTa3zR+zi+mCHJ/NF6fZyXh3/65pXJGPUt3kqhPo - XEkjU3xtTKP7OzTNHNRGcHhWev/nHwgdPF36UQl53TboqirRVK7t53uWPrIKue8P3hCCilb1SzVE - tNKIkJfIh48OuOfiHIGZgW7L/c5KYox6tGdMX8Wb9tbalvbRDxh7RN6JfZLX+RrUluteRXrIF4ow - 5m01Qfb5SfEtWcR5HKzsk3h5EtCAA4RJCBDHnDLgUeIF3mq1pBESGn1oRVnYdNp3w9Dz9w/IUnG7 - 6T+fIfPCLeMdLX70pOXpCp21Zi273FSgG1lrmzu7dyiM6DbNHtptjJpWj6zZu7S1eXb3YgHfuqjh - HBoDBUbdHtn4xCeCK6nlypDJZO4y6ljI/5k1o5xfw0N8pbhRYmM3qveQbk7BkH9A6T5WAxtrPvWZ - tcBU8vtA7R03dN1dZn/dvL/pB9GFrg1jsuj/DTbKS3HHy/1Py/od4te50mDS1qyI9dSLNX007usD - 95j/MPAfUEsHCHn5R00NAwAAJwcAAFBLAwQUAAgACABOWG1PAAAAAAAAAAAAAAAAVQAAAExvZ0Zp - bGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0yOF9kODI2ZjVfMDA4X0dFVF9hcGktc2V0 - dGluZ3MtYnJhbmNoXzIwMF8wcy54bWydk1tv2kAQhd8r9T9s9znjK8RAcSSXkMQKCRE2JX009gBb - Ga+7uyaXX5+xU6oqElLV1z1nZmfOfjvWBmtmhCkx5HGVy72otmyBvxrUhrMiM3TuOe4QXBdcP3Xd - keONvIHVHw45E5U2WZWTpRh455s+Z40qQ25ntbA1GkO9tL1WZNlxtkezk0XIr6cpZ+alpip1vKcW - JPTcQe/MO3M9ziayqjA3QlYhv0WsISrFATmLGuqhxGv2Ln3LtGVZnN1IbUL+hOusruFJVFDK7eEg - AoHBi0RL53sre20UkkMLg9qqkJZbalQQbbGi2qiVYYXrpNWB7jdKliUqe9C3HCuwfFruGfYafs8M - 7cTDor9eb/IAgszrQY8igCzYeBA46Pe9LB8GwYCzR1hFqwSWFVK+BRawXMxOhTSZxdP7FOKHkLu+ - NfQtz3etoD/ynHOnaxUtFjCbX0N8+e/XJ3E6hcvpw2z+467rTrWnwuJsFSVkvoqWsxRu5kl6H91N - T/tPhfsIV1I9Zard90FJI0O+M6bWbRxRXSeoDiLHD9LF50+Mjf9Gct6YrWyRVKhrWWli4DST5y4x - eSTraCdCTaMnFHwLssPZ+0GKz/Ts81vO2lFQhfxO5EpquTEQx4ntOhZ5//PFJ1m+wyNEIa+VONBH - 6lbX9T0a+I5Kd3D3CC7f8dvBW+aIRUi7r0EklyLvOLd/all9ZfkuU/SpwsZsgFCwL8ZfAFjRqM40 - Ys5eMwCKcGy3CX6U/T/6G1BLBwiwJlDTMwIAAPQDAABQSwMEFAAIAAgAXVhtTwAAAAAAAAAAAAAA - AFUAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItNTlfZDgyNmY1XzAxMF9H - RVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1snZNbc9owEIXfO9P/oOo5a1s2F0NxZlxC - EiYkZMAp6aMwG1DHWK4kk8uv75qUmU46pJ2+as+utEffGViHFXPKFZjwcZnrrSrXbIY/arSOs5V0 - dB4GogdCgIgyIfpB2G/3vKAdcKZK62SZk2QVh52HNme1KRLuy0r5Fp2jWdZfGpJsONui2+hVwi9G - GWfuuaIuc7inUlRoibh1Ep6IkLOhLkvMndJlwq8QK0gLtUPO0ppmGPUiX0tfpPU8j7NLbV3CH3Ep - qwoeVQmFXu92qquw+6zRs/nWky+1QVJY5dB6JdJydxYNpGssqTdtyrDA5bypA93vjC4KNH7c9gKv - 60W03BNsLfx6MzQvlnLZ7S5XbRDtSEArjgKQcSeGMM7zuNWVEkPB2T0s0sUc7kokf1e4grvZ5JhJ - w8l4dJPB+DbhIvJ6kRdGwuu2+2HQCXrNqHQ2g8n0AsZn/379fJyN4Gx0O5l+u95Pp95jZnG2SOck - Pk/vJhlcTufZTXo9Oq4/Zu49nGvzKE2z763RTid841xl9ztU1RzNTuX4pnT68QNjg9+RHBYoy7pi - 99uCTfSa2v+CpH86+ATAVrXZM9JnorO1DODP0dParXVDu0Fb6dISXu/M7tD/H6A9yAl+V9sh/WmT - EcrD60GGT0TU9IqzZks0Cb9WudFWPzgYj+e+CDzS/idMQ5lv8MBnwiujdpTRvau2ukEHX9HYfW5a - xG0URIKwaXAmzCHbp45CUqh8b4//3eryM8s30lBek9o9QMzZOx4O/OZ33nociYPHPwFQSwcITSC6 - p0sCAABQBAAAUEsDBBQACAAIAHFYbU8AAAAAAAAAAAAAAABHAAAATG9nRmlsZXMva3VkdS90cmFj - ZS8yMDE5LTExLTEzVDExLTAzLTM1X2Q4MjZmNV8wMTFfR0VUX2R1bXBfcGVuZGluZy54bWx9Ul1v - 2jAUfZ+0/+D5uXbjkA9ApFJG0xYtLYgEwfbmOBdqKbG9xAHRXz/TadO0ib3e8+FzfO+st2CQlbaB - BC+U0K1UB7SG7wP0FqOaWzf3PTYhjBE2KhmbeqPpKKThOMRIqt5yJRylHvvR3k2GrknwbT20BqMW - 7KuuE/yYlRjZs3G07pexkQ4I2Di48W+Yj9FcKwXCSq0S/AXAkLSRR8AoFQKMJZlLVrtkCZY1KBf3 - 7KDB2Xfyjf9UfeY9pRSjJ93bBJ+g4saQk1Sk0YfjUcYS4rMG2ouW8rehA8fopYWeKnBFd2Sbbguy - UXB5CWqyWee/i8zzRfZSksUqwSyKqe971A9Dylg4DfzYpd+RdL0m+fKRLO4TXAmvhj33iYjcpwWR - 2JPJpBIkqsJJVfE4CCN+0RSLMiP32Spffn1+93faa7kx2qaFIz+km7wkT8uifEmfs+v86z0fdHfi - 3aXiqtNWJ/jVWtO/dzCmgO4oBfwF3X38gNDsz0uZN8DVYNCubVCuD05+/VIiz8Po9m72iRBUD937 - uqbIa3tEyL/O36QpbAe8dRdh3arpUrnRf/2DGKMfUEsHCPPM5dGxAQAAyAIAAFBLAwQUAAgACAA7 - WG1PAAAAAAAAAAAAAAAASwAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvUkQwMDE1NUQ1MDQ4QjItNmY0 - YzdmZTQtODJkOS00MTY5LWJkMGQtN2Y0MTJmN2FkZjkwLnR4dDXLwQqCMBgA4HvQO/wPMHG/JuVu - UpeRqbTRVcRGDVLX9u/Q2ydB548v41gmiAnmGlFwFEUBoGjwFB1czTuaQAyifwlIB2fTYIjs/AgM - JkPP5S6ga5VmQB9nBPh/cHaVvDzsWMb2DNTx0quz7Hql6v5W1fJUadk2Avhq46R/uVlms918AVBL - Bwj9IkbyhAAAAJEAAABQSwECFAAUAAgACABSWG1PVf07dycAAAAoAAAAEgAAAAAAAAAAAAAAAAAA - AAAAZGVwbG95bWVudHMvYWN0aXZlUEsBAhQAFAAIAAgAUVhtTzArDnIsCAAAWRgAADwAAAAAAAAA - AAAAAAAAZwAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQy - ZmZiMDcvbG9nLmxvZ1BLAQIUABQACAAIAEVYbU9NPIm1MgAAADkAAAA9AAAAAAAAAAAAAAAAAP0I - AABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L21h - bmlmZXN0UEsBAhQAFAAIAAgAUVhtT/PWbu1kAQAAugIAAD8AAAAAAAAAAAAAAAAAmgkAAGRlcGxv - eW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnht - bFBLAQIUABQAAAAAAEJYbU8AAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAGsLAABkZXBsb3ltZW50 - cy9wZW5kaW5nUEsBAhQAFAAIAAgAPFhtTwwFZiRyAAAAjAAAABgAAAAAAAAAAAAAAAAAnAsAAGRl - cGxveW1lbnRzL3NldHRpbmdzLnhtbFBLAQIUABQACAAIAERYbU96ITNJ6QQAAO4MAAAcAAAAAAAA - AAAAAAAAAFQMAABkZXBsb3ltZW50cy90b29scy9kZXBsb3kuY21kUEsBAhQAFAAIAAgARFhtT3HT - 5L5nAAAAlgAAACQAAAAAAAAAAAAAAAAAhxEAAGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveW1lbnRD - YWNoZUtleVBLAQIUABQACAAIAEBYbU/UhSCSJgEAAMIBAAAVAAAAAAAAAAAAAAAAAEASAABMb2dG - aWxlcy9ldmVudGxvZy54bWxQSwECFAAUAAAAAABxWG1PAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAA - AACpEwAATG9nRmlsZXMva3VkdS9kZXBsb3ltZW50L1BLAQIUABQACAAIADtYbU8lAAy83gAAADcB - AABTAAAAAAAAAAAAAAAAAOATAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDEt - NTVfZDgyNmY1XzAwMV9TdGFydHVwX1BPU1RfYXBpLXNldHRpbmdzXzBzLnhtbFBLAQIUABQACAAI - ADxYbU+zPaXfTQIAAB8EAABPAAAAAAAAAAAAAAAAAD8VAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIw - MTktMTEtMTNUMTEtMDEtNTVfZDgyNmY1XzAwMl9QT1NUX2FwaS1zZXR0aW5nc18yMDRfMnMueG1s - UEsBAhQAFAAIAAgAPFhtT8zxiRo1AgAA9QMAAFYAAAAAAAAAAAAAAAAACRgAAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMS01N19kODI2ZjVfMDAzX0dFVF9hcGktc2V0dGluZ3Mt - U2NtVHlwZV8yMDBfMHMueG1sUEsBAhQAFAAIAAgAQFhtT5HYtf2VAAAAtwAAAEIAAAAAAAAAAAAA - AAAAwhoAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0wMF9kODI2ZjVfMDA0 - X1NodXRkb3duXzBzLnhtbFBLAQIUABQACAAIAEJYbU/Cd8z85gAAAEUBAABaAAAAAAAAAAAAAAAA - AMcbAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItMDRfZDgyNmY1XzAwMV9T - dGFydHVwX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8wcy54bWxQSwECFAAUAAgACABCWG1PWj9I - 6zgCAAD2AwAAVgAAAAAAAAAAAAAAAAA1HQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEz - VDExLTAyLTA0X2Q4MjZmNV8wMDJfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWxQ - SwECFAAUAAgACABCWG1PcllfbsQCAABJBQAASQAAAAAAAAAAAAAAAADxHwAATG9nRmlsZXMva3Vk - dS90cmFjZS8yMDE5LTExLTEzVDExLTAyLTA1X2Q4MjZmNV8wMDNfUE9TVF9kZXBsb3lfMjAyXzBz - LnhtbFBLAQIUABQACAAIAFJYbU+dWjJWqgMAAEgLAABRAAAAAAAAAAAAAAAAACwjAABMb2dGaWxl - cy9rdWR1L3RyYWNlLzIwMTktMTEtMTNUMTEtMDItMDVfZDgyNmY1XzAwNF9CYWNrZ3JvdW5kX1BP - U1RfZGVwbG95XzMxcy54bWxQSwECFAAUAAgACABDWG1PHvcUpd4CAACxBgAAWAAAAAAAAAAAAAAA - AABVJwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEzVDExLTAyLTA1X2Q4MjZmNV8wMDVf - R0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzFzLnhtbFBLAQIUABQACAAIAEhYbU9JQzWi - XQMAADwIAABYAAAAAAAAAAAAAAAAALkqAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNU - MTEtMDItMTZfZDgyNmY1XzAwNl9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1s - UEsBAhQAFAAIAAgATlhtT3n5R00NAwAAJwcAAFgAAAAAAAAAAAAAAAAAnC4AAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvMjAxOS0xMS0xM1QxMS0wMi0yOF9kODI2ZjVfMDA3X0dFVF9hcGktZGVwbG95bWVu - dHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACABOWG1PsCZQ0zMCAAD0AwAAVQAAAAAAAAAA - AAAAAAAvMgAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTExLTEzVDExLTAyLTI4X2Q4MjZmNV8w - MDhfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hfMjAwXzBzLnhtbFBLAQIUABQACAAIAF1YbU9NILqn - SwIAAFAEAABVAAAAAAAAAAAAAAAAAOU0AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTEtMTNU - MTEtMDItNTlfZDgyNmY1XzAxMF9HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1sUEsB - AhQAFAAIAAgAcVhtT/PM5dGxAQAAyAIAAEcAAAAAAAAAAAAAAAAAszcAAExvZ0ZpbGVzL2t1ZHUv - dHJhY2UvMjAxOS0xMS0xM1QxMS0wMy0zNV9kODI2ZjVfMDExX0dFVF9kdW1wX3BlbmRpbmcueG1s - UEsBAhQAFAAIAAgAO1htT/0iRvKEAAAAkQAAAEsAAAAAAAAAAAAAAAAA2TkAAExvZ0ZpbGVzL2t1 - ZHUvdHJhY2UvUkQwMDE1NUQ1MDQ4QjItNmY0YzdmZTQtODJkOS00MTY5LWJkMGQtN2Y0MTJmN2Fk - ZjkwLnR4dFBLBQYAAAAAGQAZAKkKAADWOgAAAAA= + UEsDBBQACAAIAGUTn08AAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw + l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACABl + E59PAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj + MDFlYzc5MjQyZmZiMDcvbG9nLmxvZ61YXY7juBF+ToDcQZiHTA9gKiRFiVTnpRczkw2QZLCYmcUC + jQYWtETZytqiI8nd6zzlEPOYqwS5y14gV8hHyZYod1vTHaS7gZkyXVVf/bCqWJyylDBOIvaZ8mue + XAsRJjyiPI5vF9/vct2W1Spo9sutzfcb04SLIityxaOMmDyJiTBFQtRSS5KZVClNM6lTs6C/+TV/ + SnIseCzp7eK72ux07UTnZrexh62p2qCwdZDZ7bZsgzIPXmeZEgV+Uv46XOSKKWpMRmhEcyJyE5GU + SkY4T6jSTMmY0ktaFaMxfm8X35rK1L1Fntomq8tdGy6kSkwhIkYSGkdERMKQJWeUcJ3GktEly0Tk + VPzqKcscgDSK4LPGWdWuDczZbOyDo5xRusqD1garHoLx7e4BXAev9d/3tQmasvWP+9OAHAJCKkty + 2xIPPKmDV++u79Z2a+4c4x0ca/EfWx9eBcSeHY6MzV1r7abBdyA0N/jHcX+n2/UZiycPYbhgfxxK + IdNU8XkfdxF26sK/NsEPZhl8gs5O5mOXQmQqlOTidvFxX1VnqXL0aBgibFKqnJmCiCxOiFjGmqQi + 44id4Dwy2shoeRG2Sw0hkBpv+xBdn1n/yGF3/Sdhts1fXfKGChnjURolt4s/Iuwbh/1k9SjwojNV + GMmIUolkelubPl31bvejLQqIMuG63V7WPLD+aZ/vPx2qLPzw/nNQ1HaL/LqQKK+RmOenDw8PtbXt + 6xlNKeNUwXXvzMZ0VaIoNwZy1rZxZNPqunVgN88R8tbuDs5PRxnhqmzLVWVrM8MsqOBCok6dMe90 + 9pNeuSSz1f/CXtvMNM1X2VEbFEfGn2lvTH1vanDPqT7xDr57doBloiLGkVp/tvanzmOomuCGwt8N + qoN9lZu6ryQujDO5lkaSxgq3rC9cXdTIfhccy84g8nIiDBKO5dXkwYNZhpmtinL1HM0fjhUBbmtK + WzWBvtflRi83JrBVV0p3G92iO2wDXSPDaJiEnP62qwG/B6VC7hMs9SmeTCg5odRIMRrGE4pNDzmb + nHIxJT0tkMTPeD1EOI2moiIPPU6FZxnj4ZTyv8rDyMPAwwGCCOnIJkI2JQYRIuThgMQRk5NBtjsZ + jBVh5EuLfB6oPeERIdT6hIdNhEMMRBj7PMmU8ASoEQE4xq/FMG74Wuxji4FggBP7emJkj3cip4Qn + Tfkn6agH7ONJ4rsXaTk6JPHhJD6CxEeQhB6CJEx90ROlqS86HR3ieIbMBZwpOGTbKQ4487zVUUPE + O8qXMjEEaThIAdoRovStl7B+cKz0rZd+MKTvCum7QvqucMSQdtAz1UrHcCBMo1q03pELWeOfeLmm + fE0KBWTA7YghB5QfDkcMXnDEgA4cUwiem93JKB2Ul3ygmHdPHBmPQXYkcugUPcSA4e49p55+QkPO + WpTh09BxLKxBd9/C4PvGBH6P7JquG06ztbU400FeFoWp3Ux+ZH2Z2t32xBcANS4pe0b3GB4bZdl0 + wA/bTaDbYDK0HMeSO+87F0THUYg2yVMubxcVAP3wzccPU6sP+5WuVg8EzYqggd6gToY0+GAxmvfN + D71osWBPDfxOeKQSPD5eLHycp+F2s8nh2f+3io/vv3n3l/cB3m56RnicUO76/gudsykzUyFJZsDL + a5qGiUiFpOntwvy8qzFO3SDTcY27nPzx+Ji8O549GcJeShInPAHKX77885cv/8BfgODonSFusOxC + Fs1wqzimEgkwcuu61gdSYJ5oTQV+/L6IP3NTl8FjaVXpFq+1DkIyIyJNIhFhShwh7Nty05CtqVc9 + 9xyAx9wdH16AfYrauukQzMiQLOZRxHwEW9Oube44WcgvY3+CE0Md/NaS9rDrwYsZdi7jVOAVM5pe + IBPWN5i0ZtU+5qtxUQ3BxgDjKFCjqMyoFSKN3Fw+qu2DBr3oBy9iNFWG2XRf95k256rHSk2rV8CK + 5jCjMlZKxBMXnTycl033kEcR6hw2k+bysZR7XR++Gl4pEpZOEqOb9gneAG2ZOXbc2Rnwj/m7CPXu + isI5xE+xtmvSWlKbFaoCTGahnNGdChG7d/sY5Ma0u9q21qWmLTrjZ8ArGkvO8Hb0BOgCG5+963w3 + brCcCbeKklSySdyc0/aNcZcKg8Zl5E+wYieQfy1YT7D9rbnphscZXbFgVKBHjUbaihRlVTZrk99g + qkPDuzIGH9VN27vszYvEQZberN2So7uYcFpwta925bE60BlpqUBlTCY+RPx+PhCd5zWwoUoEV3j0 + Peg6B1iXEMO4Wu7cl/DkBWZMzC/TkpvlfgUFGJyDq23TqZoVkXCVuNXe6MXGVB0i19B6Ebgsp0kN + tbmtrbt+KDinD7fl1hVMb/pbt+2OmLruSzjm5TkrHkNwaU5K5wDM7gooTF7qri7X8JX3SnOau8+d + pfBh/DI9OsvMrnV6olAGV5VZ2bbU2C9CC947vn3P1qKwBI66tvzlP//+F/5cX1/a/DCWeIawBlfL + Q4sbhWFrHKFr/UDcV2GMN92fO3PAVaKe3pMN9ozAi6esmLP+hOsPxxuCvTesb5piv9kc+hH4bFEp + rzGmYw1FmbPntKhE4W79Be9xW3nVvHELS06xtDL5kuRFLolguiBporFKL6SIFcVp2i0sn1LFMFUp + hqnqc12uVqbboNcmO2TYlVxhzrovzUOA6QoL5LJxG5T8DTakgkuZOQ0Ka3Nh+JIsk+WSpIYuFdU8 + pbx4Ynfe2cbRW7ot17txTz96JVxkJspkyrB9VUwT3OccxuScxKmSeUpz/Ggn+79QSwcIbWnhjh0I + AABoGAAAUEsDBBQACAAIAFgTn08AAAAAAAAAAAAAAAA9AAAAZGVwbG95bWVudHMvY2M4NGZmZmY5 + MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdNNLzyzJTM/LL0rl5SpITM5O + TE/VyyrOzwPyivKTU4uLobzi1KKy1CIgh5dLD6iFlwsAUEsHCE08ibUyAAAAOQAAAFBLAwQUAAgA + CABlE59PAAAAAAAAAAAAAAAAPwAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVl + ODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbI2SvW7DIBSF90p9Byu7/4h/I0K6pO1eT10qgq9d + JGMswGnybB36SH2FUmJbqZShTNx7zne4CL4/v/DuJDrvCEpz2W9XcRCtPOiZrHnfblejafxitSP3 + d7iGoZNnAb2xledhXhPGiqSxq0S0TKKEAaRlClAULIqB5SVKUNMcohyH1uwgOpp3qch5bGnffvhC + NwaHU9MZLqeAIk/cPI8HHC6NK34vKO/mkAfBmZJaNiZgUsxpF4tjBGhNWyC0rj09Hmpp6d7uhkEq + Yy8WzgbnHpRslSUIDpetE7ShZtTkZWTMyjic6iutgpOx2EVwhRM7qs1E7fu64gIIiuLSj5G/jqsI + bVC+iaMApUVRIPSKwxuAC1LAgB/hZkS2SZIgzbN1lv1G/LHOIypz63BHZllZ5CixpJ1+8jkM/jXx + 7HKIfYWhAwOkUiPgcCmdyPWbATGQR9ppK87lrCmgtey785W+tH6f6uoT/gBQSwcIiZmQL2YBAAC8 + AgAAUEsDBBQAAAAAAFUTn08AAAAAAAAAAAAAAAATAAAAZGVwbG95bWVudHMvcGVuZGluZ1BLAwQU + AAgACABPE59PAAAAAAAAAAAAAAAAGAAAAGRlcGxveW1lbnRzL3NldHRpbmdzLnhtbHu/e7+NfUVu + jkJZalFxZn6erZKhnoGSQmpecn5KZl66rVJpSZquhZK9HS+XTXFqSQlQrBjIVlCwSUktyMmvzE3N + KwHzgSKJKSkK2amVtkpJRYl5yRlKCmWJOaWptkq5icUlqUVKCvoQjfooOm304cYCAFBLBwgMBWYk + cgAAAIwAAABQSwMEFAAIAAgAVhOfTwAAAAAAAAAAAAAAABwAAABkZXBsb3ltZW50cy90b29scy9k + ZXBsb3kuY21kxVbfb+JGEH5H4n8YkCzdVcFJrq0qkVIdIssdPTAUO7mchGQ59gK+mF3XXofQh/7t + ndm1+RFI7vp0PIDx7Mx+O/t9M/M+nkPTcnsj35t2e8wfsls2tJrgsL+g+UsT3vNwKUHO5/VavdZu + Q+vkR5s+3VzfwDVPE7lZcaHADbM4Vdp0y7M8lqINl/aFffnbq5G0cZLxjP9dxHmseH68vASDYeP5 + BoSMuP01h1jkKkgSHtVr6yX6awO8+0MUCdBXvTbog8Wm0/HUHFOf8gLe1GsA+pyjOM9jsdhG5E88 + LFRwn/AzSBMe5LzapFpyBpjAIMl4EG0qG49gFTxwyAvEECsIAwH3HHBNuETbPJMrCIssoyRx8Rhn + UlDCbIKxkEoCzzKZ1Wtvy2O6XBXpLgn0NucqkWGQoD+hi3gSbPD7KQ0EJZqWuMyD7tQb9Ls9z+1Y + /0bphWXbsyBT8TwIFWZV58MZe3DN+gOHXePvZDj+MmKO57vjm2mPmdRQpCNTFbGEiZl9IZLXnX7A + ADrJzyIZU8fawrRm6/U6kxJZow//LKrD7jx/1HUGfeZ6/qTrfdyFPbYdxF0FIp7zHANTlp/FnUzZ + 7WB8456KDUCgT694YQcABH8KPynEd784Pb83ujbQUVIDQ1t4KKIC8o0It3QsLcTIT2R0SyNefAIi + XVWE067kCa0FKjSPE6RTec7Gju+Nku/7HKNViGFIZEo28LXIFWSFELRnkxDRnk1YyyKJkOe5xMfs + gbwoLQcH6lhBmkaBCqwZYptVzna4QkFiOvS2u/pAN4E736g4idUG+oUIFVL3hNqp5OjVLk94qByU + e1lQSg5X/DVw2JD1PN8ZXzP/lk3dwdg5SLe35DCXSSLXdMYAJRpJwUEKPL4U8DkWkVzn0P2H1PuZ + 3+sStK9TOry+Aeu1/Swsq0eiwcJ68NYI4OgtG02s5vffH7KZ3Q1c71lsijLzfaqOZbpstUqbhnfm + /s5TVC3mid2xzu+HyF7wJlRaP9/gldYAQHmI1+Clq9fQTUb+n66W+ksAD/3/F74S3X7hqtKxn6Xq + XYdSST5a2yaDDgJEMXeajWpVA++4Qa9L3A28ybfAhu5eNa28UCcUj6RUuZeb6C20Ytps3Ddaaf/g + j9brvoAP5gGNcd+qO+rHQETJfkuNtgMC9jsd8dLW1c0UN+Ty+QCJPHD8yZAGkp2GqqnksqSw1mCb + 6RbNe6sIvQ7qEa5vPcKvF9CiEWcXp+xtZFaHhq0cWwINxx2FXFK0nO4GZI2haS9idWUvF1f27qhX + 5pFK4XfqWt8/5vedDabqmWHm0QxS9Zo5/MmCiF4/29uuQm0iDcKHYEGD1AulQrdoa1auw1lKijLJ + aZEvKbN76auyRMw9ugPNfBREY9ubWq00k1Ghi3spuG/WjlSmpmcQQX70p+xcXCAkTdiSchDKFY4V + EWSyUDG2ELUMFKxj7M1maC7w35KLapzbo+pugNNPQCXE71g/lfdq6f9WvaaH810DR4bpufyiaXbo + B9jpI+BPsephaersz7ZnFbzONhqtg/P7gxFYH6mcN/GEeqis1zT+bokclkEOMtQTawRRkZGc1/we + qDPCjuSoZ0MH2gdnVkZT7JA/chy8d4Y+Tr9VrzezuYFw7FPBvdwu2Pet194Yjeh7eQa9H4s4p1k7 + L8KQ5/m8wOEG8f0HUEsHCHohM0npBAAA7gwAAFBLAwQUAAgACABWE59PAAAAAAAAAAAAAAAAJAAA + AGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveW1lbnRDYWNoZUtlebMw1TM0NDI00TMxMjfXM+Dl0q1U + 0NXNy9dNyS/RTUktyMmvzE3NK1HQLVJQcrGKycjPTY0pzixJjSlKLcgHMvKLKpUUdPPRJBEai2NK + 8vNzioFqgIampAIpkO6AxJIMNC1I5vFyAQBQSwcIRVXWI2cAAACWAAAAUEsDBBQACAAIAFITn08A + AAAAAAAAAAAAAAAVAAAATG9nRmlsZXMvZXZlbnRsb2cueG1sbVBNa8MwDL0P9h9M7yW2m/QjqIYs + ydawrgttTitlmEajYfnCcTsKY799btKUHXaxnp+kpydBeMJSNwLaKGBzbjQWAmJVnbIUFVnJAueD + hdZ1nEv9UaliIcs0RzWwrk1RIDilFKxWwvxgiSfMhQ1WByCRzacwBW2EZzx/VSptRA/A6pGAJCvQ + Vyg1pqTzcmHmA07ZbMj4cMQSyl0+dkeTt5uDNe6NoJnMZmPqzCZTdjVzS4B/kGVpTHl1nWd7qbOq + BKsnwa+K+qhRiXVAKXOcIGTh5ME3FX0CNrg/qkyfzdZWf6R24UBqKaB9vTheRr6XRK+r9xdv5T2F + a9f9+Ycl30QfsmZO7UcWcI+SbRIFZDzldEe28QU6tr0Dq9PuDvsXGw/t7Ebc3/0CUEsHCPmrVQ0p + AQAAwgEAAFBLAwQUAAAAAACFE59PAAAAAAAAAAAAAAAAGQAAAExvZ0ZpbGVzL2t1ZHUvZGVwbG95 + bWVudC9QSwMEFAAIAAgAThOfTwAAAAAAAAAAAAAAAFMAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIw + MTktMTItMzFUMDItMjYtMjlfNTA1MGNlXzAwMV9TdGFydHVwX1BPU1RfYXBpLXNldHRpbmdzXzBz + LnhtbH2OTUvEMBRF94L/4fnWE5umH9jSDgzjplhnBlOG2ZXQBg20aW1eF/57M4IiLty+c989t3Ck + ZyBDgy5RklponeFFv6/aEUKvyJ8FDzMWChaFDRe5SHOR3WfxA4KxjpTtfCThCe80wroMJQZqNoHT + RMa+OoRR09vUl3g6ygaBPmafX74Ns/EkTeJ4IzYpgtw/t/KpOrVS1u15V1ePu6Y6HkrknnVj8/V8 + mKxXbW9vAIrf8/eDVtbPv4wD1NNV/c/+NEIItsUdY9CviyIz2Rz46IAx31wE1+K/OPrhn1BLBwgh + CUyN2wAAADcBAABQSwMEFAAIAAgATxOfTwAAAAAAAAAAAAAAAE8AAABMb2dGaWxlcy9rdWR1L3Ry + YWNlLzIwMTktMTItMzFUMDItMjYtMjlfNTA1MGNlXzAwMl9QT1NUX2FwaS1zZXR0aW5nc18yMDRf + MXMueG1snVPbbtpAEH2v1H/Y7nNm8Q2CEY7kEtJY5SZsSvpo7AU2MrvO7jok+fqOSZGqRkhVX2fO + XM6ZM0NjeU2ssBWPaCILdRByR5b8qeHGUlLmFuOe44bgeuC7meMNvN7AC1kYBpQIaWwuC4R0na5T + cEoaXUW0k9eiY7i12MtQcuB2r8qILuZpRol9rRGvzxNqgZleNwiuvKseJSMlJS+sUDKi3zmvIa7E + M/bFuOXSwoTLnd3jSu/YUyw7dczruhJF3pZ2Ho2SlMQNztXi7RSL6NfcMMYoGb/UOCGiruNAgW2F + bHDAvTIYO/IN9oGjkFCpnagem93h1T8+MVMcWP7WaI4IIyw3THLUZ2W4hniHm0U0btOw5pu0zUO7 + sVZVxXWn32MOu2Yh7vwCBwO/yUNLfYvcN+WmhNLJexAEfQ7963wLvbJwur0iLzbbPiUPsI7XKawk + xxOVvITVcvJB59EkGc8ySBbIze+z0GVe4LC+O/C7QRdnP0C8XMJk/g2S238fnCbZGG7Hi8n85/TU + HmsvyUTJOk4RfBevJhnc471n8XR8GX9J1ge4U/qY65bpQiurIrq3tkYvIYe6Trl+FgX/kJqmMJpP + btMsXmaoASU3nz8RMvzT4vPG7lRrcc1NraTBy1/wuO+w0EePn/16hqPjbWNGeIX2MRDwHsj4C3pg + ps5OpaTdkuuITkWhlVFbC0mSdlyHOf9tg1Fe7PnZWRGttXjGBz2pYuoZt/CDa3P6nQAd5zu+G1LS + uRl+ASBlo0+PMCCudzAEAMUZdlpt/s6HXf8M+AVQSwcI7g/KAlECAAAfBAAAUEsDBBQACAAIAE8T + n08AAAAAAAAAAAAAAABWAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTMx + XzUwNTBjZV8wMDNfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWydk91u2kAQhe8r + 9R22e53xD7bBUBzJJSRBISHCpqSXxh5gI+N1dtchydN3TIpaRaKqervn7OyZ2W+G2mDNjDAlRnxS + 5XInqg2b41OD2nBWZIbOO47bB7cDnps6nUGnO/Bcyw96nIlKm6zKyRI4gZMjZ40qI25ntbA1GkO1 + tJ3ku/S1Jm2HZiuLiF+NU84MHUVcHR+qBQndwPfPOmddzkayqjA3QlYRv0GsIS7FM5WIGyqhxFv2 + Ln3LtGVZnF1LbSK+x1VW17AXFZRyI8rHZrN79fZPls53VvbWKCSHFga1VSE1t9CoIN5gRXfjVoYl + rpJWB3rfKFmWqOywazlWz+pTqhfYafgVGdrAa0q8KlYFFE7WBd8PEcJetoZukTtBN8/y1Trk7AGW + 8TKBRYU03wILWMynJ4c0mk7GdylM7iPueqHVd62O71ihO/ACP6AMDxDP5zCdXcHk4t8DJJN0DBfj + ++nsx+2hPN09NS7OlnFC5st4MU3hepakd/Ht+LT/1Hgf4FKqfabaju+VNDLiW2NqfeihrhNUzyLH + D9L550+MDf+EctaYjWyhVKhrWWmi4C9Uhv3faB3txKhp9IhG36LscPZ+kOILffzshrM2CqqI34pc + SS3XBiaTxHYdi7z/+eejLN/iEaOI10o80yodWtf1HRr4jkof8PYJL8/xXAreUkc0QrsuESeWS5Ef + SLcftay+snybKVqrqDFrIK7s8+EXAFY06mAaMDfYaQZAMxza7Qg/6n7vqP8EUEsHCJJeuaE4AgAA + 9wMAAFBLAwQUAAgACABRE59PAAAAAAAAAAAAAAAAVgAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAx + OS0xMi0zMVQwMi0yNi0zNF81MDUwY2VfMDA0X0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBf + MHMueG1snZPdbtpAEIXvK/Udtnud8Q82DlAcySUksUJChE1JL409wEbG6+yuQ5Kn79gpUlUJtert + ntnZM2e/GWuDNTPClBjyuMrlXlRbtsDnBrXhrMgMnfccdwhuDzw3dXqjXjDyfKvv+ZyJSpusyqmk + 7/SdHDlrVBlyO6uFrdEY6qXtJN+nbzVpezQ7WYT8eppyZugo5Or4UC1ICPq+f9Y7CzibyKrC3AhZ + hfwWsYaoFC/UImqohRLv2Yf0LdOWZXF2I7UJ+QHXWV3DQVRQyq0on5rt/s07PFs631vZe6OQKrQw + qK0KabilRgXRFiu6G7UyrHCdtDrQ+0bJskRlDwLLsc6tIbl6hb2GX5ahNbwhx+tiXUDhZAH4/gBh + cJ5tIChypx/kWb7eDDh7hFW0SmBZIeVbYAHLxexkSJNZPL1PIX4IuesNrKFr9XzHGrgjr+/3ycMj + RIsFzObXEF/+u4EkTqdwOX2YzX/cde3p7qm4OFtFCRVfRctZCjfzJL2P7qan60/F+whXUh0y1U78 + oKSRId8ZU+tuhrpOUL2IHP+QLj5/Ymz8O5TzxmxlC6VCXctKEwV/ofKI1rGcGDWNnlD0LcoOZx8H + Kb7Sx89vOWutoAr5nciV1HJjII4T23Usqv3PP59k+Q6PGIW8VuKFVqkbXdf3aOA7Kt3h7RNenuO5 + w456QzRCuy4hJ5ZLkXek209aVl9ZvssUrVXYmA0QV/bF+AsAKxrVFY2YG+w1A6AMx3Yb4Wn9J1BL + Bwj7CEg2MgIAAPcDAABQSwMEFAAIAAgAUhOfTwAAAAAAAAAAAAAAAEIAAABMb2dGaWxlcy9rdWR1 + L3RyYWNlLzIwMTktMTItMzFUMDItMjYtMzdfNTA1MGNlXzAwNV9TaHV0ZG93bl8wcy54bWxVjEsK + wyAUReeF7uHVcUyfGrUJSdZQaDcgUaiQX+OTbr92WLijcw63TxR2oEhzGNj92KaQEjxemfz2WRl4 + R4VLFC0XkivxRNlJ0ylbGyEZxDWRW6eSaNQ4BQZ79AMzumkqWRkGeae4FI3Y/WZri3hDFAxml+gI + 7xwS/SWqxlZZbcv7dewvnIPPh6O4rR3gkoDz8Xz6AlBLBwgLCIo1lQAAALYAAABQSwMEFAAIAAgA + VROfTwAAAAAAAAAAAAAAAFoAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYt + NDJfNTA1MGNlXzAwMV9TdGFydHVwX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8wcy54bWx9j11L + xDAQRd8F/8M4z1ubpN2ylmZhWZelWD8wRXwroQ1roE1rMwX990ZkQXzw9Z7h3LmFJzMBWeqNREV6 + pmWCZ/O+GE8InaYQC8ZvIi6ihNdM5CLLU3HNN2sE6zxp14aTNVuz1iAscy8x1pONvSGy7uRj1Q71 + 5xTYYOht7CQeDzUChUjifC6abABptklXYpUhqP19o+7Kp0apqnnZVeXtri4fHySywH58Eg8fZGan + +6MNn24vLwCK32P2vdEujHkdeqjGk/9vjWApQrwtrqIIumXWZEeXA08GD1EU1EX8bf7LE37mX1BL + BwjoglO+5gAAAEYBAABQSwMEFAAIAAgAVROfTwAAAAAAAAAAAAAAAFYAAABMb2dGaWxlcy9rdWR1 + L3RyYWNlLzIwMTktMTItMzFUMDItMjYtNDJfNTA1MGNlXzAwMl9HRVRfYXBpLXNldHRpbmdzLVNj + bVR5cGVfMjAwXzBzLnhtbJ2T3W7aQBCF7yv1HbZ7nfE/DlAcySWkQSEhwqakl8YeYCPb6+yuQ5Kn + 75gUtYqEVPV2z9nZmTPfjrTBhhlhSoz4tM5lJeotW+BTi9pwVmSGzj3HHYDrge+mjjf0wmHgWV7Q + 50zU2mR1Tpae03Ny5KxVZcTtrBG2RmOolraTvEpfG9IqNDtZRPz7JOXM0FHE1fGhRpAQhP3gzDsL + ORvLusbcCFlH/AaxgbgUz1QibqmEEm/Zu/Qt05ZlcXYttYn4HtdZ08Be1FDKrSgf22316u+fLJ1X + VvbWKiSHFga1VSMNt9SoIN5iTXfjToYVrpNOB3rfKFmWqOx+aDnWuTWgrl6g0vC7Zega3oS9YF2s + CyicLIQg6CP0z7MNhEXu9MI8y9cbSukBVvEqgWWNlG+BBSwXs5MhjWfTyV0K0/uIu37fGriUtGP1 + 3aHfC3rUwwPEiwXM5t9hevnvDSTTdAKXk/vZ/OftoTzdPRUXZ6s4IfNVvJylcD1P0rv4dnLafyre + B7iSap+pbuJ7JY2M+M6YRh9maJoE1bPI8YN08fkTY6O/oZy3Zis7KBXqRtaaKDhNJe3jD1pHOzFq + Wj2m6DuUHc7eD1J8ocXPbzjrWkEV8VuRK6nlxsB0mtiuY5H3P3c+zvIdHjGKeKPEM32lw+i6uUMD + P1DpA94B4eU7vjs4UG+IRui+S8SJ5VLkB9LtRy3rryzfZYq+VdSaDRBX9sXoCwArWnUwDZl7XmkG + QBmO7C7Cj3rg+UfDL1BLBwhFNlocNwIAAPgDAABQSwMEFAAIAAgAVROfTwAAAAAAAAAAAAAAAEkA + AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYtNDJfNTA1MGNlXzAwM19QT1NU + X2RlcGxveV8yMDJfMHMueG1slVRZc9s2EH7vTP8Dioc+BSR46aqZDOPIsSbyMZZcu33pQOBaQkoC + CAD6yK/vUrJTj8fKJK/YA7vfsQc+gCVBhQZKOtPStEqvyQV86cAHSmoR8D3lyZglKcuSJU8n6WCS + p9GQJ5Qo7YPQElMKXnAJlHSuKWlcg23Mwzsv2+WDhXJ6H8Bp0XxU4XfR2j+Ur/yDlmVwHZa0EDam + Lun52WJJSegLqHsawCqM5INR/iZ9M6Dk0GgNMiijS/oJwLKqUbfYA98D6MDmoNdhU9IxDld12Nep + r2KX/l74KIoomd5b7FDShHMmsUzpfohj4/HtDlbCWnanNGvMWjWfu3X7kN19iXCTSHztHGCGVwF8 + pAHhufTgWLXGn0ta9WF2BatFH2f9RM40Dbh4NIh4NIzGOP89az17XI71q90MinxVr2pWczFgeT4C + NhqKGzaoJS8GUsjVzYiSa3ZVXS3YpQZkqIaaXV7Mfxbmw/lserpks3NcPRtF4yRKcx6NkklW5AWO + ds2qiws2P/vIZh9+fK7FbDllH6bn87O/TrbtsXYfipRcVQtMPqou50t2jHSfVifT/fn7UL9mR8bd + CdcDce5MMCXdhGD9dgdrF+BulYQXobe//kLIwXO1H0GQm2Oha+Tou0ovOCXb8hcNFkG4QHZab1ED + aAcSNkBWQv67dqbT9ffajooxJfHbg98YI3XntiqdkGTIW08Y240b9/O+TEmH42cpzzc668La9P51 + 4K3RHnW9z8BZxHMU1pPbntLRzqHzh6ix3vUpJbuHJdz3CpcSbADcqocYXElPlHTGm5vAZrNFnPAI + kZob+ei4LSmTON6nh9f5jYVVjwekB9XHDd4gH97tcMZf8Yocd6vtIQmqhfL/6/QPT1mKLsr+xosg + 5AaeXFhS69Qt9tlKxNtTCOxPcH57R3J0Z8az5DU6vpFx8CoVWfGNiv8AUEsHCG+ER/rEAgAASQUA + AFBLAwQUAAgACABlE59PAAAAAAAAAAAAAAAAUQAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0x + Mi0zMVQwMi0yNi00Ml81MDUwY2VfMDA0X0JhY2tncm91bmRfUE9TVF9kZXBsb3lfMjhzLnhtbNVW + TW/jNhC9F+h/mOpQJAcrkiJZkhsv0E2y3aLYrQGn2IuAgqbGtmCJ1JJUEv/7Du34S5aFYG8VAsQg + yHkzj2/e8E4brMEUpsSx85Hx1ULJRuRPinF0IGeGlgPPTwd+MLj1n7xgFAxHYeAmUepAIbRhgtOW + yIs8e6BR5di5ybEu5dqBCs1S5mNn8vf0yYEPP/8EcHeMd6+QmUIswGBVS8XUGrZHKxSmDz2NfAdu + Ptz9MhhA3igKIsUIhreVhsHgHGeCai5VZZHmaPgSZkxj/i6sW9cLqNJNzFb2D5sqbapfmGALVO52 + 5arIR5wn4Zy+NGBp6IUcMUojxCThno88ToMwmM9nXnx9ucrQjcLhHrmFfS/LEvmGO75kYoEaDV2H + rXJDRm/YoddB3q1/IA/oO7mof2pSgqVPN7NK5k2Juhch7bqeXoQHNGhvyIIcNACzpihzVH1gwyQ6 + YqmV+MfteSg0fJU5TguDb0t9IeMw7mDIaxF0Y6Xcp8EzGu9lvbYFTqefYYXrXg7jmGR3JnF/2Eri + uJ02lVH83tLSHrb+QIG2mU7vQHNV1D3tGLpJcCzUs7IfX5E3m6j4SrcsWAm1khx1LwGpFzpg1jW5 + y353zcxy7JDpKIrj8ip3gKlFY3tQj51fvzfS/PYwyiZKLhSr4FNBQoWr12R4ndmrfyR4ockrdPZX + kzdZErm+H/ihGwZxnM0KkQkSyb9vCs9cu7KijVsGLN4WAgZr8hkhB7k0gyO1DhTsc1jKCjNNoJnC + WtIPqda707Jr2yGOzoyUpd7tJqAcCc8GmxABXYfbGB3SScIje7R3ZL+TLp+yZ3JFzviS/j2jskyB + nINZ4nFPbtkA8hrgsqqYyP8PfFwaZZEbD9/R7URVZ7+nYcs3W5z+iPYjNwnJQH9M+wfdnQkq264c + dNyhkiD0o/6KnlSxoGFnTUIhX/MS4apW+FzgC1DnkFQKzWYl5tfuBSOKR77n+uF7/K3F5p8LITfI + n6bwwmiSo3qb5btUFH5vUBtgmmRLrk9/DHjJtC44fCtELl9opa77cxuSSZ55b8v/W6lNV0UN80bQ + UKauMVuSwDZHKRcFJ0jQa8Fhhpw1Gg9bKUMhDaDYkNafV9I1uc9mQqdQgygKToZHt56DKI6j4xlz + 4hD3JbLNiG7ozUhvNphbh+275tug6ylwmvIJxDecfZZypXdvqkkzKwu9fHwmj//dMjiCidTmYf/4 + 6kWPgo6LHAaHAi+wEIfevgsubYmSeBfnP1BLBwht8n+kqwMAAEYLAABQSwMEFAAIAAgAVROfTwAA + AAAAAAAAAAAAAFgAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYtNDNfNTA1 + MGNlXzAwNV9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1srVTbctMwEH1nhn8Q + euCJ9d2OE2oY04Y2Q3qZJKWFF0axN6kY2xKS3FK+Htm9pEObDsPwql2dPXs5Z0cblMRwU2FGJ00h + at6syQx/tKgNJSUz9j3w/CH4AYT+wgtGQTKKQsf3Ukp4ow1rCpsSe7FXICWtqjLqMsndEmUlrmts + jHYrC6PN+5snVNk+Nwft8jWr5VvDa8w2Bb55AQQJROFXSmo0F6LM6P54QYm5lraMuiMmuQ1ESRq9 + Cd5YIruiabAwXDQZ/YQoIa/4paWTtxZC8V/sJvSBacdxKDkQ2mT0CpdMSrjiDVRizavv7bq+Dq9+ + OLqoHfarVWgzNLfUnQbtME41KsjXtqOM5l0YznA57+Jg6xslqgqVmyaO5wycYULJT6g13FKGjvAq + iaNluSyh9JhtMkoR0gFbQVIWXpwUrFiubDPncJafzeG0QbuPEks4nU3/21B3p5Px0QImJxn1w9QZ + +k4QeU7qj8I4ii3nc8hnM5ge78Nk7+8JzyeLMeyNT6bHXw57ePt323gpOcvnNvljfjpdwMHxfHGU + H463529bxzl8FOqKqW5CJ0oYkdELY6Tue5ByjuqSF/hH6N3LF4TsPDz6vfs7vf3h7KOZoW6r5+8/ + HlDSo/0N3rQXwKbUs8pKhvfIW7EPWcPWqDZcbdvPiLWDdN/tvAIgZat6NYyIPwhqTQBuu9haixis + JXjD2GdewgjX5ASb0vrEcyXDbj6PSnoPC+643R4esUrTTdLTKYE/fJDycJnHrVmLzsEUaikabS1g + +1SiMN74yl26NTTT6l2ru873AkpuHhb4s1N9UaA0WFLS3Yo1MnrICyW0WBmYTOau7zneP8t+lxUX + eOckGZWKX9qr6a9ZyyM08BmV7h0usg4TeqFvlzoVxa239bc/ct1tsntaRv/Jqjv/s74Ii96lratW + /IaX+12L5i0pLpjSaLLWrMA63Pa7eHrhYTC4W/hvUEsHCEG5gDHWAgAAsQYAAFBLAwQUAAgACABb + E59PAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNi01 + NF81MDUwY2VfMDA2X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWytVcty2zYU + 3Xem/4Bi0ZVBguBDpGKmw8iKralkayQ5drvpUOCVjAxfAUA7ztcXpKxKUSxN0gmXwOHBua9zz5WG + Gmmhc4jxqORVIco1msGnBpTGKEu1OWfUiYjDiOssKOuzoO97lkN7GIlS6bTkBuJTn3LAqJF5jO20 + FnYGdV49F1BqZeeGRuk/Nkcg40uhr5rl72lRv9GigHj3wD+UERYQz/0bowL0Q5XF+HK4wEg/1+YZ + uRVWC3PhBaF3xs4chtGgKkvgWlRljP8EqEmSi0ejJ2kMhxRf0s3Vu1RZloXRVaV0jJ9gmdY1eRIl + yau1yD826+LZffpkKV5Y6ZdGgkEoYbRbJZhs3CqQJFmbkGKctNfkDpbz9p6Y97Ws8hykHQYWtXpW + FGD0mRSKvGgmreJV4HvLbJmRjKYmSi8EEvbSFQkyTv2Ap3y5CjG6J3fJ3ZzclmAKkkFGbmfjn5bV + wXg0vF6Q0TTGjhtakWMxj1qh03d9zzea70kym5HxzSUZXXy/4PloMSQXw+n45q9JR2/+PZZejO6S + uQG/T27HC3J1M19cJ5PhcfyxctyT95V8SmWboamsdBXjB61r1cVQ13OQj4LDwdXbX39B6Hy/6wc5 + pGVTo/siR+NqbX4/0fXM9Jr99vw3QlDWyK6r+ogWChHyLfPFfyPwosW6BD0D1eSnR8szj3RsB0pf + 5Rt3s7W7Oil/j/ko9yQt0zXIndbTGfmK8oB02sg1oM3Yt06AzKwUJ+kY3cWOuu+rWs2gqB4BGZaa + 0Mh3ztAUysxY1hmSwMGMfIZSjRxmu47dugrq/MpjKJmcSgzz6em6vmix28Y5LL8X7urf4s5fRTn0 + ELbfhLv6Ic5Db2W+iKWRRz0O4Ec+QBhy6gDvRcxjq9WS9pBQ6F0j8jb8H4/NcfdFH5HMnB3oeyD7 + Ed00el21y0SCqqtSGTM+PlcscHcWv4Wb3aIbNTAO2K4g0xebgwV8bv2Xc6g1ZBi1s2V2Cp4ILitV + rTQZjea2Qy1T0v9pwIOUP8DW02NcS/FopqzzFVVfgyYfQKpu13jG613qOhE23sFftkznQn3bPmaA + rxvaT9qa7SYyo0YW3cI0+y0XG132R1WVbxB/SKUCHTd6Rcyu+cbMnGBb8yMV77Et4F9QSwcIGGSw + GVcDAAA9CAAAUEsDBBQACAAIAGITn08AAAAAAAAAAAAAAABVAAAATG9nRmlsZXMva3VkdS90cmFj + ZS8yMDE5LTEyLTMxVDAyLTI3LTA0XzUwNTBjZV8wMDdfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hf + MjAwXzBzLnhtbJ1T0VLbMBB870z/QdUzZ8uOCQ6NmXFDKBkCYRKnSR9t50jEOJaRZAJ8fc+m6XRg + 0nb6qt1b6Va7fWOxYlbaAiM+KnO1leWaTfGhRmM5W6WWzn3h9cDzoeMlwj/1T05F4AR+yJksjU3L + nCjH4ljkyFmti4i7aSVdg9aSlnEzTZQNZ1u0G7WK+Ndhwpl9rmhK7++pJAFBNwyO/CPP52ygyhJz + K1UZ8SvECuJCPpJ8XJOGli/pK/QlNY7jcHapjI34DrO0qmAnSyjUWhb39Xr73Nk9OCbfOulLrZEY + Rlo0Tom03NyghniNJc3GDQwLzGYNDnS/1aooULth1xHOidPrcvYEWwM/3wzNi7NMeF2vG4IgiyAI + sgDSMEwhC/JeJrK7NOjknC1hES9mMC+R/F3hCubT8SGTBuPR8CaB0W3EvU7o9DzHD4QTeqd+2BXk + +BLi6RTGk68wOv/3+2ejZAjnw9vx5Pt1K0+zh9zibBHPiHwRz8cJXE5myU18PTzMP+TuEi6U3qW6 + WfhWK6sivrG2Mu0OVTVD/ShzfAOdffzAWP/3TA4KTMu6YsttwcZqTeN/yaR71v8EwFa1bkNyyjpi + axjAe+lJbdeqibtGU6nSUL7+oH1M7u9Tu6dT+m1tBvSpTUkEZ68HCT5RpCZXnDVboo74tcy1MurO + wmg0cz3hEPc/0zRI8w3uAxrxSstHKmnrqqlu0MI31KYtTkDB7YiO12v7ZCnnkLS1o5YUMm/tce+N + Kj+zfJNqKmxU2zugPd956PX2Hvbd5nfeehz8wn8AUEsHCDOOU3pOAgAAUQQAAFBLAwQUAAgACABi + E59PAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNy0w + NF81MDUwY2VfMDA4X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWytlEtv2zgQ + x+8F9jtweeipI1FPS27UhZq4ibHOA7bTpL0saGrssNCrJJU0/fRLKXGTbeMgWFRHzmjmP6/fnjbY + EiNNiRmd1qKpZL0hc/zaoTaUFNzYd595KXg+BN6S+WN/NGahE7ERJbLWhtfCukQsYgIp6VSZUZe3 + 0i2wLZvbCmuj3dKG0eavuydU2aE0R93qNa/at0ZWmD0k+If54McQBp8pqdBcNUVGDydLSsxta9Oo + rbBWWkMYJ+Eb/43nU7Lf1DUKI5s6o38jtpCX8trqyTsbQ8nv/M70nmvHcSg5arTJ6A2ueNvCjayh + bDay/NJtqtvg5qujReXw751C66Gl1e7UaLtxrlFBvrElZTTvzXCBq0VvB5vfqKYsUblJ7DBn5KQx + Jd+g0nCvGXrF6zgKV8WqgIJxW2WYICQjvoa4ECyKBRerdULJJVzkFws4r9EOpMACzuez39bV/dl0 + crKE6VlGvSBxUs/xQ+Yk3jiIwshqvoR8PofZ6SFMD14ueDFdTuBgcjY7/XQ8hLf/7movJRf5wjp/ + yM9nSzg6XSxP8uPJbv9d47iED4264arv0JlqTJPRK2NaPdTQtgtU11LgT6Z3f7wiZO/x1h/8WNT7 + P5xDNHPUXfn8AQT2AIZoL4k3Gy7gIdWzp/Uo8s7Yx7zmG1QPWm3Zz1xrH9J9t/cnACk6NVzDmHge + qzQBuK9iZy4iRBKu7Zf6PA1ZKBCjNEJMEsE8FKPUD/31esVGRGryvpNlYSHynJw4fErOf8Tsuf2M + flEcPHJ6icvjQZ92ZtP0eFOo26bWFg+7OxaPrMQtdLbulnam0/v2JnsoWuzcPSzxW08EIbA1WFDS + 75GlHD2WQjW6WRuYTheuxxz2v5Gwz8UVbimT0VbJa7tRw6br9gQNfESlB/qFlj4BC7yUklkj7rk3 + 3MXYdXed5NMn9ps43rPRMhOWA8ItcUt5p8v9opv6LRFXXGk0WWfWYOn3y5r+GPnTA/fDdLvF/wJQ + SwcIOIUGvOsCAADOBgAAUEsDBBQACAAIAHETn08AAAAAAAAAAAAAAABVAAAATG9nRmlsZXMva3Vk + dS90cmFjZS8yMDE5LTEyLTMxVDAyLTI3LTM0XzUwNTBjZV8wMTBfR0VUX2FwaS1zZXR0aW5ncy1i + cmFuY2hfMjAwXzBzLnhtbJ2T3U7bQBCF7yv1HbZ7zfi/xkljJDcEiAgEJU5DLx17kixyvGZ3TYCn + 79g0UkWVturtzszZnbPfGWiDNTPClBjzcZXLnag2bIaPDWrDWZEZOvcctweuB76bOl7fO+37gdVz + Hc5EpU1W5dTy2fns5MhZo8qY21ktbI3GkJa2V4patpzt0GxlEfPLUcqZealpSh3uqQUVgjAKTryT + VngoqwpzI2QV82vEGpJSPJF80pCGEq/ZW+lrpi3L4uxKahPzPa6yuoa9qKCUG1E+NJvdi79/tHS+ + s7LXRiF1aGFQWxXScguNCpINVjSbtGVY4mre1oHuN0qWJSo7Ci3HOrV6IWfPsNPw883Qvjjy/XV4 + 6vuwCkMHgnUWQOZHIRS+4+ZR7odF7nF2D8tkOYdFheRvgQUsZpNjJg0n49FtCuO7mLt+RC5bXuBY + kdv3otCJWq1kNoPJ9BLG5/9+/3ycjuB8dDeZfr/p5Gn2mFucLZM5NV8ki0kKV9N5epvcjI73H3P3 + Hi6k2meqXfhOSSNjvjWm1t0OdT1H9SRyfFc6+/iBscGvTA5LzKqmZve7kk3khsb/wqR9NvgEwIpG + dZD0mbPTDOB35WljNrKlXaGuZaUJrz9Ie/T/B2gP7QS/afSQ/rTNCGH7dpDiMxE1veasXRJVzG9E + rqSWawPj8dx2HYt6/xOmYZZv8cBnzGslniijnam6vkUD31DpLjcBces7vtvr4mQIc0i71FFISpF3 + 7tgPWlZfWL7NFOU1bswaCLLjFg7s9m/eO+yGB4t/AFBLBwjPiCjlSQIAAE8EAABQSwMEFAAIAAgA + hROfTwAAAAAAAAAAAAAAAEcAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjgt + MTBfNTA1MGNlXzAxMV9HRVRfZHVtcF9wZW5kaW5nLnhtbIVSXW/aQBB8r9T/cL3n7MXfYIQjucRJ + rDgBYSNo3w57IVfZ54t9DiK/vgdVq6oV7evuzOzM7k57jYpooWuMaCrLthFyT5b4OmCvKam4NnXH + skOwHXDtwnImznhiWyx0RpQI2WsuSwPxLd8qkZKhqyN6XQ2NoqRB/dJWEb1PCkr0URlY91NYCdPw + grF35VzZFiWzVkostWhlRB8RFcS1eDN6cVmi0pAYZ5VxFlFRoTR2j6Y1GPlOvPMfrM+8Z4xR8tD2 + OqIH3HKl4CAk1O1e1N+GfXN0D6+sLxvG34cODaIXGnsm0QTdwDpe57CSeJqEFayW2a8gsyxNngtI + FxG1gxFzHIs5vs9s2594tjsKT/R4uYRsfg/p7WkZVbDFksNu523BC0cBbMtwB5YbBHa1s7g7Nsvb + QJ4WCdwmi2z+5ek8wHAvGadkHecGfBevsgIe5nnxHD8ll/GXg9613YF3p4yLrtVtRF+0Vv05g1I5 + dm+ixD9aNx8/EDL9/VVmNXI5KLJpapK1e0P/z6tc30w/AZBq6M73mhCr6QnA38pfhcp1h7wxL6HN + rdlcmtI/9QOHku9QSwcILEsEILEBAADJAgAAUEsDBBQACAAIAE4Tn08AAAAAAAAAAAAAAABLAAAA + TG9nRmlsZXMva3VkdS90cmFjZS9SRDAwMTU1REUxRTdCQy05M2JjZTQwOS1iYmNjLTRmNjctOWVk + NC0xMjIxMGEwZmJlMzIudHh0NcvBCsIgGADge9A7/A/gmNoS5m3URVrbSOkqo6SEtpn+Hnr7RtD5 + 4+OU1QXjxY4ZyiUXktcAGseIOcDFvbNLSCDHl4RyDL5MDtHPj0Rgcvhc7hKGXhsC+AlOQvyH4FcR + +6oinAgC+nC2+qQGq3Vrr02rjo1RfSeBrnabzC93y+y2my9QSwcIBYlYBYMAAACRAAAAUEsBAhQA + FAAIAAgAZROfT1X9O3cnAAAAKAAAABIAAAAAAAAAAAAAAAAAAAAAAGRlcGxveW1lbnRzL2FjdGl2 + ZVBLAQIUABQACAAIAGUTn09taeGOHQgAAGgYAAA8AAAAAAAAAAAAAAAAAGcAAABkZXBsb3ltZW50 + cy9jYzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L2xvZy5sb2dQSwECFAAU + AAgACABYE59PTTyJtTIAAAA5AAAAPQAAAAAAAAAAAAAAAADuCAAAZGVwbG95bWVudHMvY2M4NGZm + ZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdFBLAQIUABQACAAIAGUT + n0+JmZAvZgEAALwCAAA/AAAAAAAAAAAAAAAAAIsJAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0 + MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L3N0YXR1cy54bWxQSwECFAAUAAAAAABVE59PAAAA + AAAAAAAAAAAAEwAAAAAAAAAAAAAAAABeCwAAZGVwbG95bWVudHMvcGVuZGluZ1BLAQIUABQACAAI + AE8Tn08MBWYkcgAAAIwAAAAYAAAAAAAAAAAAAAAAAI8LAABkZXBsb3ltZW50cy9zZXR0aW5ncy54 + bWxQSwECFAAUAAgACABWE59PeiEzSekEAADuDAAAHAAAAAAAAAAAAAAAAABHDAAAZGVwbG95bWVu + dHMvdG9vbHMvZGVwbG95LmNtZFBLAQIUABQACAAIAFYTn09FVdYjZwAAAJYAAAAkAAAAAAAAAAAA + AAAAAHoRAABkZXBsb3ltZW50cy90b29scy9kZXBsb3ltZW50Q2FjaGVLZXlQSwECFAAUAAgACABS + E59P+atVDSkBAADCAQAAFQAAAAAAAAAAAAAAAAAzEgAATG9nRmlsZXMvZXZlbnRsb2cueG1sUEsB + AhQAFAAAAAAAhROfTwAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAnxMAAExvZ0ZpbGVzL2t1ZHUv + ZGVwbG95bWVudC9QSwECFAAUAAgACABOE59PIQlMjdsAAAA3AQAAUwAAAAAAAAAAAAAAAADWEwAA + TG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTI5XzUwNTBjZV8wMDFfU3RhcnR1 + cF9QT1NUX2FwaS1zZXR0aW5nc18wcy54bWxQSwECFAAUAAgACABPE59P7g/KAlECAAAfBAAATwAA + AAAAAAAAAAAAAAAyFQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTI5XzUw + NTBjZV8wMDJfUE9TVF9hcGktc2V0dGluZ3NfMjA0XzFzLnhtbFBLAQIUABQACAAIAE8Tn0+SXrmh + OAIAAPcDAABWAAAAAAAAAAAAAAAAAAAYAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFU + MDItMjYtMzFfNTA1MGNlXzAwM19HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnhtbFBL + AQIUABQACAAIAFETn0/7CEg2MgIAAPcDAABWAAAAAAAAAAAAAAAAALwaAABMb2dGaWxlcy9rdWR1 + L3RyYWNlLzIwMTktMTItMzFUMDItMjYtMzRfNTA1MGNlXzAwNF9HRVRfYXBpLXNldHRpbmdzLVNj + bVR5cGVfMjAwXzBzLnhtbFBLAQIUABQACAAIAFITn08LCIo1lQAAALYAAABCAAAAAAAAAAAAAAAA + AHIdAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYtMzdfNTA1MGNlXzAwNV9T + aHV0ZG93bl8wcy54bWxQSwECFAAUAAgACABVE59P6IJTvuYAAABGAQAAWgAAAAAAAAAAAAAAAAB3 + HgAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTQyXzUwNTBjZV8wMDFfU3Rh + cnR1cF9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMHMueG1sUEsBAhQAFAAIAAgAVROfT0U2Whw3 + AgAA+AMAAFYAAAAAAAAAAAAAAAAA5R8AAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQw + Mi0yNi00Ml81MDUwY2VfMDAyX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMueG1sUEsB + AhQAFAAIAAgAVROfT2+ER/rEAgAASQUAAEkAAAAAAAAAAAAAAAAAoCIAAExvZ0ZpbGVzL2t1ZHUv + dHJhY2UvMjAxOS0xMi0zMVQwMi0yNi00Ml81MDUwY2VfMDAzX1BPU1RfZGVwbG95XzIwMl8wcy54 + bWxQSwECFAAUAAgACABlE59PbfJ/pKsDAABGCwAAUQAAAAAAAAAAAAAAAADbJQAATG9nRmlsZXMv + a3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTQyXzUwNTBjZV8wMDRfQmFja2dyb3VuZF9QT1NU + X2RlcGxveV8yOHMueG1sUEsBAhQAFAAIAAgAVROfT0G5gDHWAgAAsQYAAFgAAAAAAAAAAAAAAAAA + BSoAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNi00M181MDUwY2VfMDA1X0dF + VF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACABbE59PGGSwGVcD + AAA9CAAAWAAAAAAAAAAAAAAAAABhLQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAy + LTI2LTU0XzUwNTBjZV8wMDZfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBzLnhtbFBL + AQIUABQACAAIAGITn08zjlN6TgIAAFEEAABVAAAAAAAAAAAAAAAAAD4xAABMb2dGaWxlcy9rdWR1 + L3RyYWNlLzIwMTktMTItMzFUMDItMjctMDRfNTA1MGNlXzAwN19HRVRfYXBpLXNldHRpbmdzLWJy + YW5jaF8yMDBfMHMueG1sUEsBAhQAFAAIAAgAYhOfTziFBrzrAgAAzgYAAFgAAAAAAAAAAAAAAAAA + DzQAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNy0wNF81MDUwY2VfMDA4X0dF + VF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACABxE59Pz4go5UkC + AABPBAAAVQAAAAAAAAAAAAAAAACANwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAy + LTI3LTM0XzUwNTBjZV8wMTBfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hfMjAwXzBzLnhtbFBLAQIU + ABQACAAIAIUTn08sSwQgsQEAAMkCAABHAAAAAAAAAAAAAAAAAEw6AABMb2dGaWxlcy9rdWR1L3Ry + YWNlLzIwMTktMTItMzFUMDItMjgtMTBfNTA1MGNlXzAxMV9HRVRfZHVtcF9wZW5kaW5nLnhtbFBL + AQIUABQACAAIAE4Tn08FiVgFgwAAAJEAAABLAAAAAAAAAAAAAAAAAHI8AABMb2dGaWxlcy9rdWR1 + L3RyYWNlL1JEMDAxNTVERTFFN0JDLTkzYmNlNDA5LWJiY2MtNGY2Ny05ZWQ0LTEyMjEwYTBmYmUz + Mi50eHRQSwUGAAAAABoAGgAtCwAAbj0AAAAA headers: cache-control: - no-cache content-disposition: - - attachment; filename=dump-11-13-11-03-35.zip + - attachment; filename=dump-12-31-02-28-10.zip content-type: - application/zip date: - - Wed, 13 Nov 2019 11:03:35 GMT + - Tue, 31 Dec 2019 02:28:10 GMT expires: - '-1' pragma: @@ -1329,7 +1354,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=d826f5d20884afb8161133707fcf2d0f116d4ff9b65e9eb4cd29018eae35ce60;Path=/;HttpOnly;Domain=webapp-win-logvvi7ie7yoe.scm.azurewebsites.net + - ARRAffinity=5050ce4256dd242414a945f914f7df82a73c49ae3d61b250b8244f5ed8870263;Path=/;HttpOnly;Domain=webapp-win-logiljugmy3wq.scm.azurewebsites.net transfer-encoding: - chunked x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml index 9fc81e389df..3e60fc2b28f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml @@ -14,15 +14,19 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -109,11 +113,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT ======= - Thu, 14 Nov 2019 01:38:45 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:29 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -150,22 +158,30 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1658203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1658203Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.1189940Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6105062Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6105062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:25.5323440Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.3661618Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.3661618Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:10.3192884Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -174,11 +190,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT ======= - Thu, 14 Nov 2019 01:38:46 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -213,11 +233,15 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -233,11 +257,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT ======= - Thu, 14 Nov 2019 01:38:46 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -253,11 +281,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1197' >>>>>>> Re-record test for app service +======= + - '1199' +>>>>>>> live test status: code: 200 message: OK @@ -288,26 +320,35 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.4766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D84CA1749759018BB1A2B764D13033E6E697EF01DEAFB5E282EAD234AEA402E6","kind":"functionapp","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:05.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"69AFFB94E4A32F8CE2B3EAECF314FAAF0454A38D7B1B2D175E747AFE11AB3CA1","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:42.697","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"632480D605713BC7557946275C95FBC0CD74F704579F1C32EA593F06DB5B6D92","kind":"functionapp","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3606' content-type: @@ -318,13 +359,20 @@ interactions: - '"1D5BCBD60688100"' ======= - '3660' +======= + - '3535' +>>>>>>> live test content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:40 GMT + - Tue, 31 Dec 2019 02:23:19 GMT etag: +<<<<<<< HEAD - '"1D59A8C4D5FF190"' >>>>>>> Re-record test for app service +======= + - '"1D5BF812F076D80"' +>>>>>>> live test expires: - '-1' pragma: @@ -368,22 +416,30 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30054e8-0000-0700-0000-5e060d9c0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"88085aae-84f9-4638-9308-8124bccc7763","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"af1c2150-c887-4d9c-8e56-900dd9cb13d2","ConnectionString":"InstrumentationKey=af1c2150-c887-4d9c-8e56-900dd9cb13d2","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:44.2940497+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801dfbe-0000-0700-0000-5dccb0620000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"25b470a3-6702-449b-bfa1-ea48e31c40d6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66b28c54-c2b4-410e-8d10-c6ff3806d3a9","ConnectionString":"InstrumentationKey=66b28c54-c2b4-410e-8d10-c6ff3806d3a9","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:45.9905593+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0003e33-0000-0700-0000-5e0ab11f0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c504c088-3e38-4d55-a045-7f18b3d439fd","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"12a1728a-63f6-472d-bd62-404edf216e32","ConnectionString":"InstrumentationKey=12a1728a-63f6-472d-bd62-404edf216e32","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:27.5981628+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -394,11 +450,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT ======= - Thu, 14 Nov 2019 01:39:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -416,11 +476,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1196' >>>>>>> Re-record test for app service +======= + - '1195' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -443,15 +507,19 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -464,11 +532,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT ======= - Thu, 14 Nov 2019 01:39:50 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:29 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -499,11 +571,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "af1c2150-c887-4d9c-8e56-900dd9cb13d2"}}''' ======= "66b28c54-c2b4-410e-8d10-c6ff3806d3a9"}}''' >>>>>>> Re-record test for app service +======= + "12a1728a-63f6-472d-bd62-404edf216e32"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -521,23 +597,31 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"af1c2150-c887-4d9c-8e56-900dd9cb13d2"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"66b28c54-c2b4-410e-8d10-c6ff3806d3a9"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"12a1728a-63f6-472d-bd62-404edf216e32"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -546,6 +630,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:51 GMT etag: @@ -555,6 +640,11 @@ interactions: etag: - '"1D59A8C685382A0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:33 GMT + etag: + - '"1D5BF814B8D3750"' +>>>>>>> live test expires: - '-1' pragma: @@ -572,7 +662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -593,32 +683,42 @@ interactions: - -g -n --rule-name --action --ip-address --priority User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3042' + - '3212' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:51 GMT ======= - Thu, 14 Nov 2019 01:39:53 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:34 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -653,9 +753,14 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": + "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -666,25 +771,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1216' + - '1609' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -692,14 +802,20 @@ interactions: ======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '3028' + - '3303' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:55 GMT etag: @@ -709,6 +825,11 @@ interactions: etag: - '"1D59A8C685382A0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:38 GMT + etag: + - '"1D5BF814B8D3750"' +>>>>>>> live test expires: - '-1' pragma: @@ -726,11 +847,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1198' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml index 88dd0c934c3..22a902f5b08 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml @@ -14,15 +14,19 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -109,6 +113,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT ======= @@ -118,6 +123,9 @@ interactions: - Thu, 14 Nov 2019 01:38:45 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:29 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -153,6 +161,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -165,12 +174,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5877145Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5877145Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.5095665Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -180,6 +194,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:24.8604564Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:24.8604564Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:24.7823657Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.6630358Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.6630358Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:09.6161438Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -188,6 +205,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT ======= @@ -197,6 +215,9 @@ interactions: - Thu, 14 Nov 2019 01:38:45 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -230,6 +251,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -242,6 +264,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -257,6 +283,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT ======= @@ -266,6 +293,9 @@ interactions: - Thu, 14 Nov 2019 01:38:46 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -311,6 +341,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -323,12 +354,17 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:00.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A80D5FE8B93333EF4670E77F9303194F768EF994FFF068768BD393551AA47EB5","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -338,10 +374,14 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:06.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AEFBD01849D2F4B503CA7E0DAA3D1FAB8AE1E06B53AB93B8D968E950329447AE","kind":"functionapp","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-057.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:38.147","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"856D49449DED31B833B0F77E44840AB13AAA907F30C32840F4A2280C9FB4D60B","kind":"functionapp","inboundIpAddress":"13.91.40.166","possibleInboundIpAddresses":"13.91.40.166","outboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","possibleOutboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-057","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3544' ======= @@ -359,14 +399,21 @@ interactions: - '"1D599EAAB9DB215"' ======= - '3607' +======= + - '3529' +>>>>>>> live test content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:42 GMT + - Tue, 31 Dec 2019 02:23:13 GMT etag: +<<<<<<< HEAD - '"1D59A8C4E5FD560"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '"1D5BF812C0F1510"' +>>>>>>> live test expires: - '-1' pragma: @@ -409,6 +456,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -421,12 +469,17 @@ interactions: azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30040e8-0000-0700-0000-5e060d9b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"330b5c97-d73e-4c59-922e-fa9c25c254ee","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"1902db55-b4ac-49c2-ab2b-fdd54e8d451e","ConnectionString":"InstrumentationKey=1902db55-b4ac-49c2-ab2b-fdd54e8d451e","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:43.325334+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -436,12 +489,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801e5be-0000-0700-0000-5dccb0620000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cd96a6bf-644a-4843-b6c8-0b074ad5eb7d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"9b5fc5f2-db6b-4318-8360-3a007b7ed005","ConnectionString":"InstrumentationKey=9b5fc5f2-db6b-4318-8360-3a007b7ed005","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:46.5716382+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000d032-0000-0700-0000-5e0ab1180000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e7052f6d-7e76-4466-997d-f4f3155c32ac","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c3d76d5f-ada7-49b9-845c-1c6b0fb86924","ConnectionString":"InstrumentationKey=c3d76d5f-ada7-49b9-845c-1c6b0fb86924","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:20.3881265+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '891' content-type: @@ -452,13 +509,19 @@ interactions: ======= - Wed, 13 Nov 2019 06:22:47 GMT ======= +======= +>>>>>>> live test - '892' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Thu, 14 Nov 2019 01:39:49 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:21 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -476,7 +539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -498,6 +561,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -510,10 +574,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -526,6 +594,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:49 GMT ======= @@ -535,6 +604,9 @@ interactions: - Thu, 14 Nov 2019 01:39:51 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:23 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -565,6 +637,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "1902db55-b4ac-49c2-ab2b-fdd54e8d451e"}}''' ======= @@ -574,6 +647,9 @@ interactions: "9b5fc5f2-db6b-4318-8360-3a007b7ed005"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "c3d76d5f-ada7-49b9-845c-1c6b0fb86924"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -590,6 +666,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -602,13 +679,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"1902db55-b4ac-49c2-ab2b-fdd54e8d451e"}}' ======= @@ -618,6 +700,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"9b5fc5f2-db6b-4318-8360-3a007b7ed005"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c3d76d5f-ada7-49b9-845c-1c6b0fb86924"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -626,6 +711,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:52 GMT etag: @@ -641,6 +727,11 @@ interactions: - '"1D59A8C68EA9280"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:24 GMT + etag: + - '"1D5BF8146D02470"' +>>>>>>> live test expires: - '-1' pragma: @@ -658,6 +749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= @@ -667,6 +759,9 @@ interactions: - '1195' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1196' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -686,6 +781,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -698,24 +794,25 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3241' content-type: @@ -733,6 +830,13 @@ interactions: - Thu, 14 Nov 2019 01:39:54 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3212' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:26 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -767,9 +871,14 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": "Allow", "tag": + "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -780,12 +889,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1216' + - '1609' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -798,33 +908,38 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3332' + - '3303' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT etag: <<<<<<< HEAD @@ -841,6 +956,11 @@ interactions: - '"1D59A8C68EA9280"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:29 GMT + etag: + - '"1D5BF8146D02470"' +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml index b4f5c7b3bf2..b88b7a0747b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml @@ -21,6 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' ======= @@ -30,6 +31,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:21:56Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -38,6 +42,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT ======= @@ -47,6 +52,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -79,6 +87,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -91,10 +100,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -106,6 +119,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT ======= @@ -115,6 +129,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -160,6 +177,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' ======= @@ -169,6 +187,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:21:56Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -177,6 +198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT ======= @@ -186,6 +208,9 @@ interactions: - Thu, 14 Nov 2019 01:38:48 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:29 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -218,6 +243,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -230,13 +256,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":24704,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24704","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' @@ -249,6 +280,10 @@ interactions: US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26351","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":26087,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-085_26087","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -257,6 +292,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:00 GMT ======= @@ -266,6 +302,9 @@ interactions: - Thu, 14 Nov 2019 01:39:09 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -283,7 +322,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1197' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -303,6 +346,7 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -315,13 +359,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":24704,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24704","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' @@ -334,6 +383,10 @@ interactions: US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26351","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":26087,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-085_26087","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -342,6 +395,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:01 GMT ======= @@ -351,6 +405,9 @@ interactions: - Thu, 14 Nov 2019 01:39:09 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -386,6 +443,7 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -398,12 +456,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:30.5251927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:30.5251927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:30.4627059Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -413,6 +476,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.8917374Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.8917374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.8136159Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:08.9286333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:08.9286333Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:08.8661839Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -421,6 +487,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:03 GMT ======= @@ -430,6 +497,9 @@ interactions: - Thu, 14 Nov 2019 01:39:09 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:43 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -463,6 +533,7 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -475,6 +546,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -490,6 +565,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:03 GMT ======= @@ -499,6 +575,9 @@ interactions: - Thu, 14 Nov 2019 01:39:10 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:43 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -542,6 +621,7 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -554,13 +634,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:06.5466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7B6F36499787FED9892C315A4F8D0BFD81CB19FD24D22EA13BAA8C2857567183","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -570,10 +655,14 @@ interactions: US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:27.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7736D418667B94B983EFED783F107D28E60D8A220E71DEC779420A4B9B80B75","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-085.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:47.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D8D1500BF33EC6662252052B44F8087DB3A1B47C3F5B20CDC6EB97DA4BDAEADF","kind":"functionapp","inboundIpAddress":"104.40.53.219","possibleInboundIpAddresses":"104.40.53.219","outboundIpAddresses":"104.40.53.219,104.42.226.43,104.42.227.57,104.42.228.164,104.42.230.5","possibleOutboundIpAddresses":"104.40.53.219,104.42.226.43,104.42.227.57,104.42.228.164,104.42.230.5,104.42.229.180,104.42.227.131","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-085","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3615' ======= @@ -599,6 +688,15 @@ interactions: - '"1D59A8C5A533880"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3614' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:05 GMT + etag: + - '"1D5BF813189D2A0"' +>>>>>>> live test expires: - '-1' pragma: @@ -616,7 +714,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -649,6 +747,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30064e7-0000-0700-0000-5e060d8e0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"0ef8c039-b78d-4ecf-ac1f-821b06343833","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"10df803f-1965-48d5-9dad-8a9639fd103f","ConnectionString":"InstrumentationKey=10df803f-1965-48d5-9dad-8a9639fd103f","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:30.2294893+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -658,6 +757,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801febe-0000-0700-0000-5dccb0650000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"794058f7-43bb-49f7-8401-eddcffa80ca8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c4fb5df7-4617-452d-866d-a832dbe5153d","ConnectionString":"InstrumentationKey=c4fb5df7-4617-452d-866d-a832dbe5153d","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:49.1987606+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0007233-0000-0700-0000-5e0ab1230000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"df4eff6d-645c-4cf6-8d20-3df4712cfed2","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"24d13473-02b7-4381-a04e-b4cc9d9a59c6","ConnectionString":"InstrumentationKey=24d13473-02b7-4381-a04e-b4cc9d9a59c6","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:31.6927659+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -668,6 +770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:32 GMT ======= @@ -677,6 +780,9 @@ interactions: - Thu, 14 Nov 2019 01:39:51 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:33 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -694,11 +800,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1199' ->>>>>>> Re-record test for app service + - '1197' x-powered-by: - ASP.NET status: @@ -720,6 +822,7 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -732,10 +835,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -748,6 +855,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:32 GMT ======= @@ -757,6 +865,9 @@ interactions: - Thu, 14 Nov 2019 01:39:53 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -784,6 +895,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "10df803f-1965-48d5-9dad-8a9639fd103f"}}''' ======= @@ -793,6 +905,9 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "c4fb5df7-4617-452d-866d-a832dbe5153d"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "24d13473-02b7-4381-a04e-b4cc9d9a59c6"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -809,6 +924,7 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -821,13 +937,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"10df803f-1965-48d5-9dad-8a9639fd103f"}}' ======= @@ -837,6 +958,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"c4fb5df7-4617-452d-866d-a832dbe5153d"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24d13473-02b7-4381-a04e-b4cc9d9a59c6"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -845,6 +969,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:34 GMT etag: @@ -860,6 +985,11 @@ interactions: - '"1D59A8C6AAEB0B0"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:36 GMT + etag: + - '"1D5BF814E1CE2E0"' +>>>>>>> live test expires: - '-1' pragma: @@ -877,6 +1007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= @@ -886,6 +1017,9 @@ interactions: - '1195' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1194' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -913,6 +1047,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' ======= @@ -922,6 +1057,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:21:56Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -930,6 +1068,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:35 GMT ======= @@ -939,6 +1078,9 @@ interactions: - Thu, 14 Nov 2019 01:39:56 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -972,6 +1114,7 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -984,6 +1127,10 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT @@ -991,6 +1138,7 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"3a28b566-8c95-414f-83ae-2d3597aa0192\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n @@ -1009,10 +1157,17 @@ interactions: \ \"resourceGuid\": \"ad679ee0-62fc-4b4a-8e4b-f8f400bec02c\",\r\n \"addressSpace\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"2b4ba6a9-6b87-432d-8703-2986f293f23e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"32db3ad1-aa23-458f-b6ec-4854a257583d\",\r\n \"addressSpace\": +>>>>>>> live test {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"3a28b566-8c95-414f-83ae-2d3597aa0192\\\"\",\r\n ======= @@ -1022,6 +1177,9 @@ interactions: \ \"etag\": \"W/\\\"0bd4c0f4-5d54-40f1-8540-fd567f29e865\\\"\",\r\n >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"2b4ba6a9-6b87-432d-8703-2986f293f23e\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1030,6 +1188,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD <<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b9b3572-6c49-4ae7-832c-741887138ff9?api-version=2019-09-01 ======= @@ -1039,6 +1198,9 @@ interactions: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78bb6f8b-5314-44d2-835e-50815602241d?api-version=2019-09-01 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c0c73cce-2a4a-4907-b21a-3f12ca46028c?api-version=2019-09-01 +>>>>>>> live test cache-control: - no-cache content-length: @@ -1046,6 +1208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:40 GMT ======= @@ -1055,6 +1218,9 @@ interactions: - Thu, 14 Nov 2019 01:39:58 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1067,6 +1233,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - afecf30f-8adb-4f07-a972-2b197e79ce88 x-ms-ratelimit-remaining-subscription-writes: @@ -1082,6 +1249,11 @@ interactions: - '1197' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 7b28286c-2fb7-4f6a-aa17-a5a80c8fd4c7 + x-ms-ratelimit-remaining-subscription-writes: + - '1192' +>>>>>>> live test status: code: 201 message: Created @@ -1099,6 +1271,7 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1111,12 +1284,18 @@ interactions: method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b4ea130-5d2a-4698-8e83-57e931ac4ead?api-version=2019-09-01 ======= +======= +>>>>>>> live test - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET +<<<<<<< HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78bb6f8b-5314-44d2-835e-50815602241d?api-version=2019-09-01 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c0c73cce-2a4a-4907-b21a-3f12ca46028c?api-version=2019-09-01 +>>>>>>> live test response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1128,6 +1307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:44 GMT ======= @@ -1137,6 +1317,9 @@ interactions: - Thu, 14 Nov 2019 01:40:02 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:43 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1153,6 +1336,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - d88fd294-76f3-4bf0-bca5-4ef467719754 ======= @@ -1162,6 +1346,9 @@ interactions: - f6d1f08e-f8f0-4e3e-b8db-b47e85f6e382 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - ab134ed7-1743-4355-94ec-5fc89ad6b4f0 +>>>>>>> live test status: code: 200 message: OK @@ -1179,6 +1366,7 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1191,11 +1379,16 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n @@ -1214,10 +1407,17 @@ interactions: \ \"resourceGuid\": \"ad679ee0-62fc-4b4a-8e4b-f8f400bec02c\",\r\n \"addressSpace\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"32db3ad1-aa23-458f-b6ec-4854a257583d\",\r\n \"addressSpace\": +>>>>>>> live test {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n ======= @@ -1227,6 +1427,9 @@ interactions: \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1241,6 +1444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:45 GMT etag: @@ -1256,6 +1460,11 @@ interactions: - W/"4b32d70e-4bc5-4756-94b2-8bb66ee041db" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:44 GMT + etag: + - W/"c4766cc1-12c3-48e5-a28d-c6520f65b969" +>>>>>>> live test expires: - '-1' pragma: @@ -1272,6 +1481,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 12794c96-f01c-4fc5-8f03-52cb9cc631f0 ======= @@ -1281,6 +1491,9 @@ interactions: - 80c79fa1-1f2d-4c44-8f69-42573c5b386d >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 2e72408a-1166-4c75-88fd-e2f11355ef3c +>>>>>>> live test status: code: 200 message: OK @@ -1298,6 +1511,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --subnet --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1310,22 +1524,29 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3041' + - '3210' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:45 GMT ======= @@ -1335,6 +1556,9 @@ interactions: - Thu, 14 Nov 2019 01:40:03 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:44 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1370,6 +1594,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1382,22 +1607,29 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3041' + - '3210' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:47 GMT ======= @@ -1407,6 +1639,9 @@ interactions: - Thu, 14 Nov 2019 01:40:05 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1442,6 +1677,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1454,6 +1690,10 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET @@ -1461,6 +1701,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n \"properties\": ======= @@ -1470,6 +1711,9 @@ interactions: \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n \"properties\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: @@ -1480,6 +1724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:48 GMT etag: @@ -1495,6 +1740,11 @@ interactions: - W/"4b32d70e-4bc5-4756-94b2-8bb66ee041db" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:46 GMT + etag: + - W/"c4766cc1-12c3-48e5-a28d-c6520f65b969" +>>>>>>> live test expires: - '-1' pragma: @@ -1511,6 +1761,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 266a12ad-2d7b-4ae4-90b8-ecbf155856e2 ======= @@ -1520,14 +1771,17 @@ interactions: - e7087e77-d11e-4c10-84bb-54685aca3b6a >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 2a5ca6b1-6801-4407-ba0a-818025ef5c4e +>>>>>>> live test status: code: 200 message: OK - request: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": -<<<<<<< HEAD "Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}, "name": +<<<<<<< HEAD <<<<<<< HEAD "endpoint-subnet", "etag": "W/\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\""}''' ======= @@ -1537,6 +1791,9 @@ interactions: "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "endpoint-subnet"}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "endpoint-subnet", "etag": "W/\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\""}''' +>>>>>>> live test headers: Accept: - application/json @@ -1547,16 +1804,13 @@ interactions: Connection: - keep-alive Content-Length: -<<<<<<< HEAD - '479' -======= - - '484' ->>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1569,6 +1823,10 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT @@ -1576,6 +1834,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"e2a4ff9b-a943-46d7-aba5-93c0dc41a9a3\\\"\",\r\n \"properties\": ======= @@ -1585,6 +1844,9 @@ interactions: \ \"etag\": \"W/\\\"4c3d21ea-e4a3-4640-a74b-5a09a6a435c6\\\"\",\r\n \"properties\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"cc23dfd4-2570-4cd9-af43-fe73c75b617c\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1592,6 +1854,7 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD <<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5269b980-65e6-4fc8-9a5f-ed74adc2f9dd?api-version=2019-02-01 ======= @@ -1601,6 +1864,9 @@ interactions: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6ac2ede-9fd5-40b6-a82b-5f2802cad130?api-version=2019-09-01 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb68b61a-7ea6-4080-9065-4d829d019dd0?api-version=2019-02-01 +>>>>>>> live test cache-control: - no-cache content-length: @@ -1608,6 +1874,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:49 GMT ======= @@ -1617,6 +1884,9 @@ interactions: - Thu, 14 Nov 2019 01:40:06 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:47 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1633,6 +1903,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 78c1a59b-23d5-4961-a115-fefef2177fb0 x-ms-ratelimit-remaining-subscription-writes: @@ -1640,13 +1911,11 @@ interactions: ======= <<<<<<< HEAD - fe6217e4-7561-4ab4-abac-7e06b6d79e32 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' ======= - - c42d10aa-0919-4c84-850f-867e2bd52e6e + - 1dc3ab65-576c-492c-9889-c4d06c93cf83 +>>>>>>> live test x-ms-ratelimit-remaining-subscription-writes: - - '1196' ->>>>>>> Re-record test for app service + - '1199' status: code: 200 message: OK @@ -1669,56 +1938,6 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 06:23:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 2f26d4e0-e156-45ea-8911-568fe0d7153c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config access-restriction add - Connection: - - keep-alive - ParameterSetName: - - -g -n --rule-name --action --vnet-name --subnet --priority - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1774,12 +1993,18 @@ interactions: ======= uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 ======= +======= +>>>>>>> live test - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET +<<<<<<< HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6ac2ede-9fd5-40b6-a82b-5f2802cad130?api-version=2019-09-01 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb68b61a-7ea6-4080-9065-4d829d019dd0?api-version=2019-02-01 +>>>>>>> live test response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1791,6 +2016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:53 GMT ======= @@ -1800,6 +2026,9 @@ interactions: - Thu, 14 Nov 2019 01:40:10 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1816,6 +2045,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - baedfd23-1916-4c1f-9acb-48ab3460298a ======= @@ -1825,6 +2055,9 @@ interactions: - 28c5949f-9f4a-461c-99a9-97a8d2c77ab9 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 2b3d6add-b036-470b-8b49-3067e3559be4 +>>>>>>> live test status: code: 200 message: OK @@ -1842,6 +2075,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1854,11 +2088,16 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet?api-version=2019-02-01 response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"f09b2bfd-f9e2-4c2b-84a3-a6e89fd84043\\\"\",\r\n \"properties\": ======= @@ -1868,6 +2107,9 @@ interactions: \ \"etag\": \"W/\\\"afe0ddc6-9167-44f2-b2e3-af6d2e5951ae\\\"\",\r\n \"properties\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"222dc022-e91e-4b74-8d58-65fc73521094\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1881,6 +2123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:54 GMT etag: @@ -1896,6 +2139,11 @@ interactions: - W/"afe0ddc6-9167-44f2-b2e3-af6d2e5951ae" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:51 GMT + etag: + - W/"222dc022-e91e-4b74-8d58-65fc73521094" +>>>>>>> live test expires: - '-1' pragma: @@ -1912,6 +2160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - b8f1790c-c0cc-4509-b258-454e1cfdf681 ======= @@ -1921,11 +2170,14 @@ interactions: - 74d672a3-aa64-4e85-8bb3-ded367a48529 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 95554fab-4193-4271-b94a-1d6b305be106 +>>>>>>> live test status: code: 200 message: OK - request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + body: 'b''{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": false, @@ -1933,13 +2185,18 @@ interactions: 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-funcapp-nwr000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\\\wwwroot", "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}, {"vnetSubnetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet", + "action": "Allow", "tag": "Default", "priority": 150, "name": "vnet-integration"}], + "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "preWarmedInstanceCount": 0}}''' headers: Accept: - application/json @@ -1950,12 +2207,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1214' + - '1845' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1968,13 +2226,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -1982,14 +2245,20 @@ interactions: ======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '3027' + - '3539' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:58 GMT etag: @@ -2005,6 +2274,11 @@ interactions: - '"1D59A8C6AAEB0B0"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:54 GMT + etag: + - '"1D5BF814E1CE2E0"' +>>>>>>> live test expires: - '-1' pragma: @@ -2022,7 +2296,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1194' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml index 715ab82afb7..a38e75ae629 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml @@ -13,6 +13,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -25,10 +26,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -115,6 +120,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT ======= @@ -124,6 +130,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -159,6 +168,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -171,12 +181,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1502142Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1502142Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.1033203Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -186,6 +201,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.3760716Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.3760716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.2979755Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.1161550Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.1161550Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:09.0692793Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -194,6 +212,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT ======= @@ -203,6 +222,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -236,6 +258,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -248,6 +271,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -263,6 +290,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:53 GMT ======= @@ -272,6 +300,9 @@ interactions: - Thu, 14 Nov 2019 01:38:48 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:32 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -287,7 +318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -317,6 +348,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -329,12 +361,17 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1C685E15FE44F2252C7A9255E05DEA3195B48C45A4370C1EC320FA7D1C7A1F40","kind":"functionapp","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -344,10 +381,14 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:57.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8F797835B578BE02E82C08EAB05726F3818DB9BE78843EF01DD12AF8A50CE57F","kind":"functionapp","inboundIpAddress":"104.42.53.248","possibleInboundIpAddresses":"104.42.53.248","outboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90","possibleOutboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:41.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A92E3685D99B9F2197A789E4E030D130697DA5F9393D29EB4CCEAD5949BA97B2","kind":"functionapp","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3547' ======= @@ -373,6 +414,15 @@ interactions: - '"1D59A8C48A801CB"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3534' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:17 GMT + etag: + - '"1D5BF812E3E0300"' +>>>>>>> live test expires: - '-1' pragma: @@ -415,6 +465,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -427,12 +478,17 @@ interactions: azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30041e8-0000-0700-0000-5e060d9b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b003c07e-8fcd-47e9-8d8f-4b426bb43083","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"41c886d1-02c1-47f9-bbc9-cdcbae852226","ConnectionString":"InstrumentationKey=41c886d1-02c1-47f9-bbc9-cdcbae852226","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:43.5726621+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -442,12 +498,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801adbe-0000-0700-0000-5dccb05b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c6f908b0-01bb-4cf2-9c0c-1d66a7657bde","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"79efa49f-a0c9-4989-9501-f67b7b285ad7","ConnectionString":"InstrumentationKey=79efa49f-a0c9-4989-9501-f67b7b285ad7","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:39.634062+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0000433-0000-0700-0000-5e0ab11c0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"298a744e-a284-4e4a-86a3-b7bc7de29d8f","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8e7d03fc-651f-4ea5-aef5-b92c6effcb61","ConnectionString":"InstrumentationKey=8e7d03fc-651f-4ea5-aef5-b92c6effcb61","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:24.273871+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '892' content-type: @@ -458,13 +518,19 @@ interactions: ======= - Wed, 13 Nov 2019 06:22:55 GMT ======= +======= +>>>>>>> live test - '891' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Thu, 14 Nov 2019 01:39:42 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:26 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -482,7 +548,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1196' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -504,6 +574,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -516,10 +587,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -532,6 +607,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:46 GMT ======= @@ -541,6 +617,9 @@ interactions: - Thu, 14 Nov 2019 01:39:43 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:27 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -571,6 +650,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "41c886d1-02c1-47f9-bbc9-cdcbae852226"}}''' ======= @@ -580,6 +660,9 @@ interactions: "79efa49f-a0c9-4989-9501-f67b7b285ad7"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "8e7d03fc-651f-4ea5-aef5-b92c6effcb61"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -596,6 +679,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -608,13 +692,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"41c886d1-02c1-47f9-bbc9-cdcbae852226"}}' ======= @@ -624,6 +713,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"79efa49f-a0c9-4989-9501-f67b7b285ad7"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8e7d03fc-651f-4ea5-aef5-b92c6effcb61"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -632,6 +724,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:47 GMT etag: @@ -647,6 +740,11 @@ interactions: - '"1D59A8C649E69E0"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:30 GMT + etag: + - '"1D5BF814A633640"' +>>>>>>> live test expires: - '-1' pragma: @@ -664,6 +762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= @@ -673,6 +772,9 @@ interactions: - '1198' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1199' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -692,6 +794,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -704,24 +807,25 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3241' content-type: @@ -739,6 +843,13 @@ interactions: - Thu, 14 Nov 2019 01:39:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3212' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -773,9 +884,14 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": + "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -786,12 +902,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1216' + - '1609' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -800,27 +917,37 @@ interactions: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3332' + - '3303' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:51 GMT etag: - '"1D5BCBD7AECAE70"' +======= + - Tue, 31 Dec 2019 02:23:34 GMT + etag: + - '"1D5BF814A633640"' +>>>>>>> live test expires: - '-1' pragma: @@ -838,7 +965,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1198' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -859,26 +990,34 @@ interactions: - -g -n --rule-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3321' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:54 GMT +======= + - Tue, 31 Dec 2019 02:23:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -918,7 +1057,7 @@ interactions: all", "description": "Deny all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -930,12 +1069,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1541' + - '1542' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -947,33 +1087,38 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3227' + - '3198' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:56 GMT etag: <<<<<<< HEAD @@ -990,6 +1135,11 @@ interactions: - '"1D59A8C649E69E0"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:40 GMT + etag: + - '"1D5BF814D09C530"' +>>>>>>> live test expires: - '-1' pragma: @@ -1007,6 +1157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= @@ -1016,6 +1167,9 @@ interactions: - '1199' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml index 1034d403019..f602da3d036 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml @@ -13,6 +13,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -25,10 +26,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -115,6 +120,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT ======= @@ -124,6 +130,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -159,6 +168,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -171,12 +181,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5720903Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5720903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.4939285Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -186,6 +201,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6573672Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6573672Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.5792303Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.5230461Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.5230461Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:10.4761735Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -194,6 +212,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT ======= @@ -203,6 +222,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -236,6 +258,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -248,6 +271,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -263,6 +290,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:52 GMT ======= @@ -272,6 +300,9 @@ interactions: - Thu, 14 Nov 2019 01:38:48 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -317,6 +348,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -329,12 +361,17 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.0433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"72EB641BF828439A1C1943CA994813DC3F131EC656167DA77AC0A9A115DA5562","kind":"functionapp","inboundIpAddress":"40.80.155.102","possibleInboundIpAddresses":"40.80.155.102","outboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21","possibleOutboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-079","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -344,10 +381,14 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:55.4966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3D4A34DBD44EAA1B1725A344A788F64753B7003EF09C6BBDDBB1B88CE175E08B","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:42.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"85011CABEA77A342C7E2F62011D99F3A142A9395F713B6E4C37CB7EBF7B712FA","kind":"functionapp","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3593' ======= @@ -373,6 +414,15 @@ interactions: - '"1D59A8C474FAAC0"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3607' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:18 GMT + etag: + - '"1D5BF812EB792CB"' +>>>>>>> live test expires: - '-1' pragma: @@ -415,6 +465,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -427,12 +478,17 @@ interactions: azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30064e8-0000-0700-0000-5e060d9d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"015977ed-6710-4384-965f-326e2bb3dcd8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7be89f73-9913-470d-9b2d-40ec57532bb0","ConnectionString":"InstrumentationKey=7be89f73-9913-470d-9b2d-40ec57532bb0","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:45.0954588+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -442,16 +498,20 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"080102bf-0000-0700-0000-5dccb0650000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"052eaeff-2a42-4d8f-a74a-e4da1a1fcf47","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"1802ac28-c4ca-4926-9299-1efcb52be180","ConnectionString":"InstrumentationKey=1802ac28-c4ca-4926-9299-1efcb52be180","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:49.3113832+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0002233-0000-0700-0000-5e0ab11e0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cfb0a661-45b8-4b94-92fe-356ac58ed0b1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"00c13f92-a594-4e75-b08f-cf9998c89fa1","ConnectionString":"InstrumentationKey=00c13f92-a594-4e75-b08f-cf9998c89fa1","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:26.237112+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '892' + - '891' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:46 GMT ======= @@ -461,6 +521,9 @@ interactions: - Thu, 14 Nov 2019 01:39:55 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:49 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -478,6 +541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= @@ -487,6 +551,9 @@ interactions: - '1197' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -508,6 +575,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -520,10 +588,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -536,6 +608,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:47 GMT ======= @@ -545,6 +618,9 @@ interactions: - Thu, 14 Nov 2019 01:39:57 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -562,7 +638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -575,6 +651,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "7be89f73-9913-470d-9b2d-40ec57532bb0"}}''' ======= @@ -584,6 +661,9 @@ interactions: "1802ac28-c4ca-4926-9299-1efcb52be180"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "00c13f92-a594-4e75-b08f-cf9998c89fa1"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -600,6 +680,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -612,13 +693,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7be89f73-9913-470d-9b2d-40ec57532bb0"}}' ======= @@ -628,6 +714,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"1802ac28-c4ca-4926-9299-1efcb52be180"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"00c13f92-a594-4e75-b08f-cf9998c89fa1"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -636,6 +725,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:49 GMT etag: @@ -651,6 +741,11 @@ interactions: - '"1D59A8C6C632475"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:53 GMT + etag: + - '"1D5BF81577B0F2B"' +>>>>>>> live test expires: - '-1' pragma: @@ -668,7 +763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -688,6 +783,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -700,29 +796,29 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3241' + - '3212' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:50 GMT ======= @@ -735,6 +831,9 @@ interactions: - Thu, 14 Nov 2019 01:39:59 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:54 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -769,9 +868,14 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": "Allow", "tag": + "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -782,12 +886,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1216' + - '1609' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -800,33 +905,38 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3332' + - '3303' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:54 GMT etag: <<<<<<< HEAD @@ -843,6 +953,11 @@ interactions: - '"1D59A8C6C632475"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:56 GMT + etag: + - '"1D5BF81577B0F2B"' +>>>>>>> live test expires: - '-1' pragma: @@ -865,7 +980,10 @@ interactions: ======= - '1198' <<<<<<< HEAD +<<<<<<< HEAD >>>>>>> Re-record test for app service +======= +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -886,26 +1004,34 @@ interactions: - -g -n --rule-name --scm-site User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3321' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:54 GMT +======= + - Tue, 31 Dec 2019 02:23:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -945,7 +1071,7 @@ interactions: "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Deny", "priority": 2147483647, "name": "Deny all", "description": "Deny all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -957,35 +1083,45 @@ interactions: Connection: - keep-alive Content-Length: - - '1541' + - '1542' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --scm-site User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3227' + - '3198' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT etag: - '"1D5BCBD7E26A3C0"' +======= + - Tue, 31 Dec 2019 02:24:00 GMT + etag: + - '"1D5BF8159E58C80"' +>>>>>>> live test expires: - '-1' pragma: @@ -1003,6 +1139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= @@ -1010,6 +1147,9 @@ interactions: ======= >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1195' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml index 3b63d6bbf66..c032b19b460 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml @@ -13,6 +13,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -25,10 +26,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -115,6 +120,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT ======= @@ -124,6 +130,9 @@ interactions: - Wed, 13 Nov 2019 10:55:30 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -159,6 +168,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -171,12 +181,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:29.9314642Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:29.9314642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:29.8845687Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -186,6 +201,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:10.4612231Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:10.4612231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:55:10.3830967Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:11.3518420Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:11.3518420Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:11.2906252Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -194,6 +212,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:50 GMT ======= @@ -203,6 +222,9 @@ interactions: - Wed, 13 Nov 2019 10:55:30 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -236,6 +258,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -248,6 +271,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -263,6 +290,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:55:51 GMT ======= @@ -272,6 +300,9 @@ interactions: - Wed, 13 Nov 2019 10:55:31 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -287,7 +318,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1197' +>>>>>>> live test status: code: 200 message: OK @@ -317,6 +352,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -329,12 +365,17 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:00.99","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2FFE5A6288EFE99F89E1812365F37B248ACDF759795B4976B1F3ABC98D5C1987","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -344,10 +385,14 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:55:40.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"48F7F33B940A0E39C31D723787EF4ABB0F4CFC0FF90FB8A3A51D43C5D74CF39D","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:41.187","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D02A214EFE453203F5189CB0544DCE6EAD6CC49375D02B48B5F7F9AE5154EB44","kind":"functionapp","inboundIpAddress":"40.112.143.214","possibleInboundIpAddresses":"40.112.143.214","outboundIpAddresses":"40.112.143.127,40.112.139.230,40.112.138.193,40.112.141.127","possibleOutboundIpAddresses":"40.112.143.127,40.112.139.230,40.112.138.193,40.112.141.127","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-041","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3532' ======= @@ -373,6 +418,15 @@ interactions: - '"1D59A10E46A72B5"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3549' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:15 GMT + etag: + - '"1D5BF812DE386F0"' +>>>>>>> live test expires: - '-1' pragma: @@ -415,6 +469,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -427,12 +482,17 @@ interactions: azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30006e8-0000-0700-0000-5e060d980000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e1f9a686-3953-45fa-bff1-6b4c864b472a","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cfd60e56-c5b3-4f3f-8c2b-0321650f04fb","ConnectionString":"InstrumentationKey=cfd60e56-c5b3-4f3f-8c2b-0321650f04fb","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:40.5528135+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -442,17 +502,20 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00bead-0000-0700-0000-5dcbe1520000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"6e9d8ef5-b88a-43bd-94f9-7c296c5fcb57","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c275aa6d-2d1e-4dce-a11d-730d7950a6fa","ConnectionString":"InstrumentationKey=c275aa6d-2d1e-4dce-a11d-730d7950a6fa","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T10:56:18.881353+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001533-0000-0700-0000-5e0ab11d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cbc898ef-cd29-441d-9b35-44550d17d543","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6150f444-fdfd-484a-9318-bb6f19788aaf","ConnectionString":"InstrumentationKey=6150f444-fdfd-484a-9318-bb6f19788aaf","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:25.4017895+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: -<<<<<<< HEAD - '892' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:43 GMT ======= @@ -465,6 +528,9 @@ interactions: - Wed, 13 Nov 2019 10:56:21 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -482,7 +548,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1196' +======= + - '1199' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -504,6 +574,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -516,10 +587,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -532,6 +607,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:43 GMT ======= @@ -541,6 +617,9 @@ interactions: - Wed, 13 Nov 2019 10:56:22 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -558,7 +637,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -571,6 +650,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "cfd60e56-c5b3-4f3f-8c2b-0321650f04fb"}}''' ======= @@ -580,6 +660,9 @@ interactions: "c275aa6d-2d1e-4dce-a11d-730d7950a6fa"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "6150f444-fdfd-484a-9318-bb6f19788aaf"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -596,6 +679,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -608,13 +692,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"cfd60e56-c5b3-4f3f-8c2b-0321650f04fb"}}' ======= @@ -624,6 +713,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c275aa6d-2d1e-4dce-a11d-730d7950a6fa"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"6150f444-fdfd-484a-9318-bb6f19788aaf"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -632,6 +724,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:46 GMT etag: @@ -647,6 +740,11 @@ interactions: - '"1D59A10FDAA1235"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:30 GMT + etag: + - '"1D5BF814A3680F0"' +>>>>>>> live test expires: - '-1' pragma: @@ -664,6 +762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= @@ -673,6 +772,9 @@ interactions: - '1196' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1195' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -692,6 +794,7 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -704,28 +807,33 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD +======= +>>>>>>> live test US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3240' content-type: @@ -747,6 +855,13 @@ interactions: - Wed, 13 Nov 2019 10:56:27 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3212' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -781,9 +896,13 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - true, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -794,12 +913,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1215' + - '1499' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -812,28 +932,34 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3225' ======= @@ -851,14 +977,21 @@ interactions: - '"1D599EAC81F7740"' ======= - '3028' +======= + - '3197' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 10:56:30 GMT + - Tue, 31 Dec 2019 02:23:35 GMT etag: +<<<<<<< HEAD - '"1D59A10FDAA1235"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '"1D5BF814A3680F0"' +>>>>>>> live test expires: - '-1' pragma: @@ -876,11 +1009,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= - '1196' >>>>>>> Re-record test for app service +======= + - '1194' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -900,6 +1037,7 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -912,28 +1050,34 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3243' content-type: @@ -955,6 +1099,13 @@ interactions: - Wed, 13 Nov 2019 10:56:31 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3215' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -989,9 +1140,13 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1002,12 +1157,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1252' + - '1536' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -1020,28 +1176,34 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3226' ======= @@ -1059,14 +1221,21 @@ interactions: - '"1D599EACA8860F0"' ======= - '3029' +======= + - '3198' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 10:56:34 GMT + - Tue, 31 Dec 2019 02:23:38 GMT etag: +<<<<<<< HEAD - '"1D59A11004667F5"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '"1D5BF814CF46870"' +>>>>>>> live test expires: - '-1' pragma: @@ -1084,7 +1253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml index 7f45f4c7b60..96b5f3866e8 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml @@ -13,6 +13,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -25,10 +26,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -115,6 +120,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT ======= @@ -124,6 +130,9 @@ interactions: - Wed, 13 Nov 2019 10:55:29 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -159,6 +168,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -171,12 +181,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:56:36.0527974Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:56:36.0527974Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:56:35.9903373Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -186,6 +201,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:09.1018745Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:09.1018745Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:55:09.0237158Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.7886379Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.7886379Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:10.7261507Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -194,6 +212,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT ======= @@ -203,6 +222,9 @@ interactions: - Wed, 13 Nov 2019 10:55:30 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:32 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -236,6 +258,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -248,6 +271,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -263,6 +290,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:56:57 GMT ======= @@ -272,6 +300,9 @@ interactions: - Wed, 13 Nov 2019 10:55:30 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:32 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -287,7 +318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -317,6 +348,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -329,12 +361,17 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:07.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5C75769DBAC2FA2CA743898B096B8DD4AB004F6C9F47F5B60D87F79B1503AAFD","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -344,10 +381,14 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:55:39.54","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CF696388076CA5813D99A910270AB429569CD67F0A3610AB8534B5D9C9BE74A1","kind":"functionapp","inboundIpAddress":"40.112.243.0","possibleInboundIpAddresses":"40.112.243.0","outboundIpAddresses":"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30","possibleOutboundIpAddresses":"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30,40.112.164.63,40.83.181.150,40.112.248.128","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-123","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:42.823","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C787CE14F0473909D316720822A4AB5DDD66322C4681593367768A98CECBA018","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3546' ======= @@ -373,6 +414,15 @@ interactions: - '"1D59A10E3574800"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3545' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:19 GMT + etag: + - '"1D5BF812EE9FA70"' +>>>>>>> live test expires: - '-1' pragma: @@ -415,6 +465,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -427,12 +478,17 @@ interactions: azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3008aec-0000-0700-0000-5e060ddd0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"d9c28224-21c0-44fe-95d5-d198dc41b978","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"3ccae148-25a2-4aa2-beac-477fd99471e5","ConnectionString":"InstrumentationKey=3ccae148-25a2-4aa2-beac-477fd99471e5","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:57:49.6797074+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -442,6 +498,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00baad-0000-0700-0000-5dcbe1520000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e79d36b6-9458-4218-9500-3002b1bc6004","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"61798b5e-7261-492e-82a5-b53bf5e28c8c","ConnectionString":"InstrumentationKey=61798b5e-7261-492e-82a5-b53bf5e28c8c","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T10:56:18.6243186+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000ef33-0000-0700-0000-5e0ab12e0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"a47f285a-c42d-4cab-9a66-3cc821284079","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7e37f306-e32a-4ab6-851c-57ec67b6da16","ConnectionString":"InstrumentationKey=7e37f306-e32a-4ab6-851c-57ec67b6da16","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:42.8151822+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -452,6 +511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:50 GMT ======= @@ -461,6 +521,9 @@ interactions: - Wed, 13 Nov 2019 10:56:21 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:44 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -478,11 +541,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= - '1199' >>>>>>> Re-record test for app service +======= + - '1198' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -504,6 +571,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -516,10 +584,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -532,6 +604,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:52 GMT ======= @@ -541,6 +614,9 @@ interactions: - Wed, 13 Nov 2019 10:56:21 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:45 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -571,6 +647,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "3ccae148-25a2-4aa2-beac-477fd99471e5"}}''' ======= @@ -580,6 +657,9 @@ interactions: "61798b5e-7261-492e-82a5-b53bf5e28c8c"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "7e37f306-e32a-4ab6-851c-57ec67b6da16"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -596,6 +676,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -608,13 +689,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"3ccae148-25a2-4aa2-beac-477fd99471e5"}}' ======= @@ -624,6 +710,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"61798b5e-7261-492e-82a5-b53bf5e28c8c"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7e37f306-e32a-4ab6-851c-57ec67b6da16"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -632,6 +721,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:53 GMT etag: @@ -647,6 +737,11 @@ interactions: - '"1D59A10FD359880"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:47 GMT + etag: + - '"1D5BF81544C4A70"' +>>>>>>> live test expires: - '-1' pragma: @@ -684,6 +779,7 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -696,24 +792,25 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3241' content-type: @@ -731,6 +828,13 @@ interactions: - Wed, 13 Nov 2019 10:56:26 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3212' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:48 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -765,9 +869,13 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - true, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -778,12 +886,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1215' + - '1499' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -796,28 +905,34 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3226' content-type: @@ -831,14 +946,21 @@ interactions: - '"1D599EAC52B2375"' ======= - '3028' +======= + - '3197' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 10:56:29 GMT + - Tue, 31 Dec 2019 02:23:52 GMT etag: +<<<<<<< HEAD - '"1D59A10FD359880"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '"1D5BF81544C4A70"' +>>>>>>> live test expires: - '-1' pragma: @@ -856,11 +978,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1194' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml index 84d08e0b7fd..6a61ccc6f8c 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml @@ -13,6 +13,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -25,10 +26,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -115,6 +120,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:44:57 GMT ======= @@ -124,6 +130,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:32 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -159,6 +168,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -171,12 +181,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:44:35.9730496Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:44:35.9730496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:44:35.8949256Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -186,6 +201,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6417160Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6417160Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:25.5636449Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:12.3674814Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:12.3674814Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:12.3049272Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -194,6 +212,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:44:58 GMT ======= @@ -203,6 +222,9 @@ interactions: - Thu, 14 Nov 2019 01:38:46 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:34 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -236,6 +258,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -248,6 +271,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -263,6 +290,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:44:58 GMT ======= @@ -272,6 +300,9 @@ interactions: - Thu, 14 Nov 2019 01:38:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:22:34 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -287,7 +318,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1198' +>>>>>>> live test status: code: 200 message: OK @@ -317,6 +352,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -329,12 +365,17 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:45:07.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"53886C5AAA16C07E0AEDADC9F72DDE1576804B73E7BD616689D0ECFDE575EE18","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -344,10 +385,14 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:10.503","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6F1879B3EB0C1DEC13B22F519B240349DC208CE769D8CAB6AE0ADE4B95FD9DFC","kind":"functionapp","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-121.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:44.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"825D02E00A7361E204C07D2FD7FBCC5A74C99347568221770D686843491DA2B2","kind":"functionapp","inboundIpAddress":"13.93.141.10","possibleInboundIpAddresses":"13.93.141.10","outboundIpAddresses":"13.93.141.10,40.78.90.180,40.78.93.25,40.78.88.130,40.78.92.162","possibleOutboundIpAddresses":"13.93.141.10,40.78.90.180,40.78.93.25,40.78.88.130,40.78.92.162,40.78.92.123,40.78.92.141,40.78.85.102","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-121","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3544' ======= @@ -365,14 +410,21 @@ interactions: - '"1D599EAA99F8B20"' ======= - '3535' +======= + - '3596' +>>>>>>> live test content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:47 GMT + - Tue, 31 Dec 2019 02:23:20 GMT etag: +<<<<<<< HEAD - '"1D59A8C50821920"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '"1D5BF81301B9CA0"' +>>>>>>> live test expires: - '-1' pragma: @@ -415,6 +467,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -427,12 +480,17 @@ interactions: azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b400d6b0-0000-0700-0000-5e06191d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b39fe36b-9b63-4c7c-bdef-8eee84e8625d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"52af6706-1d63-4f67-8093-5bda91f7b5ff","ConnectionString":"InstrumentationKey=52af6706-1d63-4f67-8093-5bda91f7b5ff","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T14:45:49.5769569+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -442,6 +500,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"080116bf-0000-0700-0000-5dccb0660000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"a0ec2d96-1cc3-460a-91a7-5be86fa1b466","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"de9d4080-dc24-434a-a31b-f485976a54e5","ConnectionString":"InstrumentationKey=de9d4080-dc24-434a-a31b-f485976a54e5","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:50.696667+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0005433-0000-0700-0000-5e0ab1210000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"851fafd1-27e1-4dfc-bdee-3bb473f4b5c1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"81132a03-7dcf-457b-af10-309dc3351a42","ConnectionString":"InstrumentationKey=81132a03-7dcf-457b-af10-309dc3351a42","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:29.0664846+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -452,6 +513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:45:51 GMT ======= @@ -461,6 +523,9 @@ interactions: - Thu, 14 Nov 2019 01:39:53 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -478,6 +543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1176' ======= @@ -487,6 +553,9 @@ interactions: - '1198' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1195' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -508,6 +577,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -520,10 +590,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -536,6 +610,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:45:52 GMT ======= @@ -545,6 +620,9 @@ interactions: - Thu, 14 Nov 2019 01:39:54 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -575,6 +653,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "52af6706-1d63-4f67-8093-5bda91f7b5ff"}}''' ======= @@ -584,6 +663,9 @@ interactions: "de9d4080-dc24-434a-a31b-f485976a54e5"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "81132a03-7dcf-457b-af10-309dc3351a42"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -600,6 +682,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -612,13 +695,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"52af6706-1d63-4f67-8093-5bda91f7b5ff"}}' ======= @@ -628,6 +716,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"de9d4080-dc24-434a-a31b-f485976a54e5"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"81132a03-7dcf-457b-af10-309dc3351a42"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -636,6 +727,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:45:54 GMT etag: @@ -651,6 +743,11 @@ interactions: - '"1D59A8C6B3FA610"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:23:34 GMT + etag: + - '"1D5BF814C01BE0B"' +>>>>>>> live test expires: - '-1' pragma: @@ -668,6 +765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1181' ======= @@ -677,6 +775,9 @@ interactions: - '1192' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1198' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -696,6 +797,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -708,24 +810,25 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3241' content-type: @@ -743,6 +846,13 @@ interactions: - Thu, 14 Nov 2019 01:39:59 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3212' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:23:34 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml index ccec5341b5a..58d9ce12bdf 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml @@ -13,6 +13,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -25,10 +26,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -115,6 +120,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT ======= @@ -124,6 +130,9 @@ interactions: - Thu, 14 Nov 2019 01:38:46 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -159,6 +168,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -171,12 +181,17 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:06.7505219Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:06.7505219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:06.7036615Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= @@ -186,6 +201,9 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6417252Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6417252Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.5636089Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:23:48.7669546Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:23:48.7669546Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:23:48.6888136Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -194,6 +212,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT ======= @@ -203,6 +222,9 @@ interactions: - Thu, 14 Nov 2019 01:38:46 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:10 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -236,6 +258,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -248,6 +271,10 @@ interactions: azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -263,6 +290,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT ======= @@ -272,6 +300,9 @@ interactions: - Thu, 14 Nov 2019 01:38:46 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:10 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -287,7 +318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -317,6 +348,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -329,12 +361,17 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:39.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D65E97F1CF8E31BC2367AC0C61676494447E45CAA36B8ED96DF1FBC37CC1B38B","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -344,10 +381,14 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:09.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"384B9434DA2EF7ECA28D819751C33125E16AD2A2676B88E6185D3957ADE6774E","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:18.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCFF88DE4F3CADE028BDCCC6E296974D2262F39C159C4254A70173D445FB4C02","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3589' ======= @@ -373,6 +414,15 @@ interactions: - '"1D59A8C4FDBC700"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3534' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:24:52 GMT + etag: + - '"1D5BF816818A670"' +>>>>>>> live test expires: - '-1' pragma: @@ -419,6 +469,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -431,12 +482,17 @@ interactions: azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30031ee-0000-0700-0000-5e060dfa0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"18a34198-ff44-4e38-ba1b-384271538a7d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c7c02324-6c09-4410-b8f2-ff804e34bde9","ConnectionString":"InstrumentationKey=c7c02324-6c09-4410-b8f2-ff804e34bde9","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:58:18.1052474+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= @@ -446,6 +502,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"08011bbf-0000-0700-0000-5dccb0660000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"befcf8ee-ddae-49f5-9464-79e86c9bab33","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d009761b-ff64-4325-8ade-aead82b6fb85","ConnectionString":"InstrumentationKey=d009761b-ff64-4325-8ade-aead82b6fb85","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:50.9302344+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000a637-0000-0700-0000-5e0ab1790000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"90ec6c70-1d96-4157-bc34-bbcbc2d24b43","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7ae23556-8115-4af0-8c0f-4e1703a40714","ConnectionString":"InstrumentationKey=7ae23556-8115-4af0-8c0f-4e1703a40714","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:24:57.6919838+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -456,6 +515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:19 GMT ======= @@ -465,6 +525,9 @@ interactions: - Thu, 14 Nov 2019 01:39:54 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:59 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -482,7 +545,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1192' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -504,6 +571,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -516,10 +584,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -532,6 +604,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:20 GMT ======= @@ -541,6 +614,9 @@ interactions: - Thu, 14 Nov 2019 01:39:54 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:25:01 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -571,6 +647,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "c7c02324-6c09-4410-b8f2-ff804e34bde9"}}''' ======= @@ -580,6 +657,9 @@ interactions: "d009761b-ff64-4325-8ade-aead82b6fb85"}}''' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + "7ae23556-8115-4af0-8c0f-4e1703a40714"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -596,6 +676,7 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -608,13 +689,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c7c02324-6c09-4410-b8f2-ff804e34bde9"}}' ======= @@ -624,6 +710,9 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d009761b-ff64-4325-8ade-aead82b6fb85"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7ae23556-8115-4af0-8c0f-4e1703a40714"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -632,6 +721,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:23 GMT etag: @@ -647,6 +737,11 @@ interactions: - '"1D59A8C6B1E2155"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:25:05 GMT + etag: + - '"1D5BF8182AA8F80"' +>>>>>>> live test expires: - '-1' pragma: @@ -664,6 +759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= @@ -673,6 +769,9 @@ interactions: - '1196' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -692,6 +791,7 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -704,13 +804,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:22.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D65E97F1CF8E31BC2367AC0C61676494447E45CAA36B8ED96DF1FBC37CC1B38B","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -720,10 +825,14 @@ interactions: US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:56.0533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"384B9434DA2EF7ECA28D819751C33125E16AD2A2676B88E6185D3957ADE6774E","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:04.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCFF88DE4F3CADE028BDCCC6E296974D2262F39C159C4254A70173D445FB4C02","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3588' ======= @@ -741,14 +850,21 @@ interactions: - '"1D599EAFF8DA18B"' ======= - '3607' +======= + - '3533' +>>>>>>> live test content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:58 GMT + - Tue, 31 Dec 2019 02:25:07 GMT etag: +<<<<<<< HEAD - '"1D59A8C6B1E2155"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '"1D5BF8182AA8F80"' +>>>>>>> live test expires: - '-1' pragma: @@ -790,6 +906,7 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -802,13 +919,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage","name":"cli-funcapp-nwr000003/stage","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:30.4766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__20e2","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"414C25AB03F24EF1CF689DD59C4D54FED7168DA43F0F1B3BA9C1C9CD894D3C50","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -818,10 +940,14 @@ interactions: US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:04.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__b575","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6D1CD1F5A29B04254DC9862BDE3C629557D10354D6007E8CFE8D23A0FB68FD6C","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:11.177","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__ed33","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B310D26F5916779F11AE4FAFEE4CFE24E7D724302C6972E1C214A64981F17740","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3663' ======= @@ -847,6 +973,15 @@ interactions: - '"1D59A8C6B1E2155"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3609' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:45 GMT + etag: + - '"1D5BF8182AA8F80"' +>>>>>>> live test expires: - '-1' pragma: @@ -884,6 +1019,7 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -892,25 +1028,33 @@ interactions: - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3284' + - '3255' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:05 GMT +======= + - Tue, 31 Dec 2019 02:25:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -946,6 +1090,7 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --slot User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -957,33 +1102,38 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ======= <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow >>>>>>> Re-record test for app service - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +>>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3284' + - '3255' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:07 GMT ======= @@ -996,6 +1146,9 @@ interactions: - Thu, 14 Nov 2019 01:40:38 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:25:48 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1017,7 +1170,6 @@ interactions: status: code: 200 message: OK -<<<<<<< HEAD - request: body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", @@ -1038,7 +1190,7 @@ interactions: "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -1050,35 +1202,45 @@ interactions: Connection: - keep-alive Content-Length: - - '1672' + - '1673' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage","name":"cli-funcapp-nwr000003/stage","type":"Microsoft.Web/sites/slots","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3383' + - '3354' content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 13:59:10 GMT etag: - '"1D5BCBDB95DBCEB"' +======= + - Tue, 31 Dec 2019 02:25:51 GMT + etag: + - '"1D5BF81878FC3D0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1096,12 +1258,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1192' +>>>>>>> live test x-powered-by: - ASP.NET status: code: 200 message: OK -======= ->>>>>>> Re-record test for app service version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan.yaml index 4238a7e2add..5d14432402c 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:56:07Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:35:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:56:11 GMT + - Tue, 31 Dec 2019 02:35:53 GMT expires: - '-1' pragma: @@ -64,16 +64,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26312,"name":"funcappplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_26312","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25560,"name":"funcappplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25560","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -82,7 +82,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:56:18 GMT + - Tue, 31 Dec 2019 02:36:01 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1126' + - '1176' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan_linux.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan_linux.yaml index f1b3572d755..46373df1c9a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan_linux.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_app_service_plan_linux.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:53:25Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:53:29 GMT + - Tue, 31 Dec 2019 02:37:14 GMT expires: - '-1' pragma: @@ -64,16 +64,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":35359,"name":"funcappplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-081_35359","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":22657,"name":"funcappplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-109_22657","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -82,7 +82,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:53:37 GMT + - Tue, 31 Dec 2019 02:37:30 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1157' + - '1171' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml index a52d24fc86a..00ec7b45710 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:04:10 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:33:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,6 +174,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -169,14 +186,21 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:05.1823347Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:05.1823347Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:05.1042105Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:03:49.1024072Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:03:49.1024072Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:03:49.0242716Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:29.8148454Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:29.8148454Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:33:29.7367121Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -192,8 +216,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:04:11 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:51 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -228,11 +256,15 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -248,11 +280,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:25 GMT ======= - Wed, 13 Nov 2019 11:04:11 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:52 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -268,11 +304,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test status: code: 200 message: OK @@ -303,6 +343,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -314,18 +355,26 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:36.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:33.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:58.813","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3799' content-type: @@ -336,13 +385,20 @@ interactions: - '"1D5BCBE03F20B20"' ======= - '3772' +======= + - '3853' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:07 GMT + - Tue, 31 Dec 2019 02:34:35 GMT etag: +<<<<<<< HEAD - '"1D59A1221BCAE40"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82C1BFE4D0"' +>>>>>>> live test expires: - '-1' pragma: @@ -390,22 +446,30 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3000cf9-0000-0700-0000-5e060eaf0000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"121ab747-20e2-4689-bb8e-542a1ea7fa52","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"44cad93c-826f-4fcb-81f3-62600968f624","ConnectionString":"InstrumentationKey=44cad93c-826f-4fcb-81f3-62600968f624","Name":"functionappconsumption000003","CreationDate":"2019-12-27T14:01:19.8678157+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00efc7-0000-0700-0000-5dcbe3680000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"45c69c7d-6296-4471-8c30-fe10e7dbae4e","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5a24030b-2c82-4325-8331-6ccc40f57d10","ConnectionString":"InstrumentationKey=5a24030b-2c82-4325-8331-6ccc40f57d10","Name":"functionappconsumption000003","CreationDate":"2019-11-13T11:05:12.6393064+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0008c54-0000-0700-0000-5e0ab3c00000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"3b87e8a3-e6b7-4380-86ce-f0b90d1ef85b","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"bed711c7-0699-4314-a007-964c397cc360","ConnectionString":"InstrumentationKey=bed711c7-0699-4314-a007-964c397cc360","Name":"functionappconsumption000003","CreationDate":"2019-12-31T02:34:40.0112572+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -416,11 +480,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:45 GMT ======= - Wed, 13 Nov 2019 11:05:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -465,6 +533,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -478,6 +547,13 @@ interactions: method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -490,11 +566,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:46 GMT ======= - Wed, 13 Nov 2019 11:05:16 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:43 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -512,7 +592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11993' x-powered-by: - ASP.NET status: @@ -525,11 +605,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappconsumption000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "44cad93c-826f-4fcb-81f3-62600968f624"}}''' ======= "5a24030b-2c82-4325-8331-6ccc40f57d10"}}''' >>>>>>> Re-record test for app service +======= + "bed711c7-0699-4314-a007-964c397cc360"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -547,6 +631,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -559,15 +644,22 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"44cad93c-826f-4fcb-81f3-62600968f624"}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"5a24030b-2c82-4325-8331-6ccc40f57d10"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"bed711c7-0699-4314-a007-964c397cc360"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -576,6 +668,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT etag: @@ -585,6 +678,11 @@ interactions: etag: - '"1D59A123C1307EB"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:45 GMT + etag: + - '"1D5BF82DC9B8110"' +>>>>>>> live test expires: - '-1' pragma: @@ -602,11 +700,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1191' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1185' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -627,27 +729,36 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ======= US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.513","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3833' content-type: @@ -661,6 +772,13 @@ interactions: date: - Wed, 13 Nov 2019 11:05:20 GMT >>>>>>> Re-record test for app service +======= + - '3892' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:34:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -697,27 +815,36 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.513","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3793' content-type: @@ -728,13 +855,20 @@ interactions: - '"1D5BCBE2E348660"' ======= - '3776' +======= + - '3852' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:21 GMT + - Tue, 31 Dec 2019 02:34:48 GMT etag: +<<<<<<< HEAD - '"1D59A123C1307EB"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82DC9B8110"' +>>>>>>> live test expires: - '-1' pragma: @@ -775,20 +909,25 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> live test SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> Re-record test for app service +======= + userPWD="qhswcE48lgyE5lYtdTrhmrH1GbNph1vNxnltfqzm8t1P6NEggqiXWnmsYNPy" destinationAppUrl="http://functionappconsumption000003.azurewebsites.net" + SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" + controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> live test SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -819,15 +971,19 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:52 GMT ======= - Wed, 13 Nov 2019 11:05:22 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:49 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -841,7 +997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11998' x-powered-by: - ASP.NET status: @@ -862,27 +1018,36 @@ interactions: - -g -n --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.513","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3793' content-type: @@ -893,13 +1058,20 @@ interactions: - '"1D5BCBE2E348660"' ======= - '3776' +======= + - '3852' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:23 GMT + - Tue, 31 Dec 2019 02:34:50 GMT etag: +<<<<<<< HEAD - '"1D59A123C1307EB"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82DC9B8110"' +>>>>>>> live test expires: - '-1' pragma: @@ -947,27 +1119,36 @@ interactions: - -g -n --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:55.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:25.8766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:51.863","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3794' content-type: @@ -978,13 +1159,20 @@ interactions: - '"1D5BCBE2E348660"' ======= - '3777' +======= + - '3853' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:29 GMT + - Tue, 31 Dec 2019 02:34:54 GMT etag: +<<<<<<< HEAD - '"1D59A123C1307EB"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82DC9B8110"' +>>>>>>> live test expires: - '-1' pragma: @@ -1002,11 +1190,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '497' ======= - '498' >>>>>>> Re-record test for app service +======= + - '499' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1029,15 +1221,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: string: '' @@ -1047,6 +1243,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:04 GMT etag: @@ -1056,6 +1253,11 @@ interactions: etag: - '"1D59A1240748D4B"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:59 GMT + etag: + - '"1D5BF82E0FD0670"' +>>>>>>> live test expires: - '-1' pragma: @@ -1069,11 +1271,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14998' ======= - '14996' >>>>>>> Re-record test for app service +======= + - '14998' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml index 3d83c9e6700..3a1ff6a04d2 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:06:33 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:34:56 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,6 +174,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -169,14 +186,21 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:55.5180606Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:55.5180606Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:55.4399493Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:13.2084843Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:13.2084843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:13.1459951Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:34.0549933Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:34.0549933Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:34.0081361Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -192,8 +216,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:06:34 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:57 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -228,11 +256,15 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -248,11 +280,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:17 GMT ======= - Wed, 13 Nov 2019 11:06:34 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -268,11 +304,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1199' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1196' +>>>>>>> live test status: code: 200 message: OK @@ -302,6 +342,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -313,18 +354,26 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:25.5466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"76943A5F73F977F3D7BCAF2B398A4F95A2C1FEE9D1C946EDD7B2F07C8A791115","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:41.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C886C49CB1D65A2A0FDDD0A4A0A286BC8E7179291B8A36DF8D8A3E66EC5B37BE","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:06.3466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E77434405F4B942DBD20941003E085DEBF97F2858EF452619C1567B139FF3D6D","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3816' content-type: @@ -335,13 +384,20 @@ interactions: - '"1D5BCBDD98AF0E0"' ======= - '3811' +======= + - '3816' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:59 GMT + - Tue, 31 Dec 2019 02:35:23 GMT etag: +<<<<<<< HEAD - '"1D59A126E0974E0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82EA0B650B"' +>>>>>>> live test expires: - '-1' pragma: @@ -359,11 +415,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '499' ======= - '498' >>>>>>> Re-record test for app service +======= + - '499' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -389,22 +449,30 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300f0f2-0000-0700-0000-5e060e550000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"e97001a0-eb94-455a-8925-22d1fcd14494","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"119f8a66-3f7e-4180-8b5f-adc157e5426b","ConnectionString":"InstrumentationKey=119f8a66-3f7e-4180-8b5f-adc157e5426b","Name":"functionapplinuxconsumption000003","CreationDate":"2019-12-27T13:59:49.4589712+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc000acd-0000-0700-0000-5dcbe3d60000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"1ff16a83-bc85-468e-8aee-d6f0e1dcc376","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5d8afb20-087f-442d-b4dc-d59a04c7133a","ConnectionString":"InstrumentationKey=5d8afb20-087f-442d-b4dc-d59a04c7133a","Name":"functionapplinuxconsumption000003","CreationDate":"2019-11-13T11:07:02.9519574+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001357-0000-0700-0000-5e0ab3f10000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"854da032-e1f3-4ea1-9dbd-f2bb326a51a1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"afac9cb3-dfec-40cd-b9d0-28366dadefde","ConnectionString":"InstrumentationKey=afac9cb3-dfec-40cd-b9d0-28366dadefde","Name":"functionapplinuxconsumption000003","CreationDate":"2019-12-31T02:35:29.4570108+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -415,11 +483,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:51 GMT ======= - Wed, 13 Nov 2019 11:07:05 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -437,11 +509,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1190' ======= - '1187' >>>>>>> Re-record test for app service +======= + - '1185' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -464,6 +540,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -477,6 +554,13 @@ interactions: method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -489,11 +573,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:52 GMT ======= - Wed, 13 Nov 2019 11:07:06 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:33 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -511,7 +599,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11992' x-powered-by: - ASP.NET status: @@ -521,11 +609,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "119f8a66-3f7e-4180-8b5f-adc157e5426b"}}''' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "5d8afb20-087f-442d-b4dc-d59a04c7133a"}}''' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "afac9cb3-dfec-40cd-b9d0-28366dadefde"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -543,6 +635,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -555,15 +648,22 @@ interactions: US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"119f8a66-3f7e-4180-8b5f-adc157e5426b"}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"5d8afb20-087f-442d-b4dc-d59a04c7133a"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"afac9cb3-dfec-40cd-b9d0-28366dadefde"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -572,6 +672,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:53 GMT etag: @@ -581,6 +682,11 @@ interactions: etag: - '"1D59A127D49AC0B"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:33 GMT + etag: + - '"1D5BF82FA562160"' +>>>>>>> live test expires: - '-1' pragma: @@ -598,11 +704,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1188' ======= - '1184' >>>>>>> Re-record test for app service +======= + - '1187' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -625,23 +735,31 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"119f8a66-3f7e-4180-8b5f-adc157e5426b"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"5d8afb20-087f-442d-b4dc-d59a04c7133a"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"afac9cb3-dfec-40cd-b9d0-28366dadefde"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -650,11 +768,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:54 GMT ======= - Wed, 13 Nov 2019 11:07:09 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -672,11 +794,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11997' ======= - '11992' >>>>>>> Re-record test for app service +======= + - '11998' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -697,15 +823,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","location":"West @@ -718,11 +848,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:55 GMT ======= - Wed, 13 Nov 2019 11:07:10 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -761,15 +895,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2019-08-01 response: body: string: '' @@ -779,6 +917,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:02 GMT etag: @@ -788,6 +927,11 @@ interactions: etag: - '"1D59A127D49AC0B"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:40 GMT + etag: + - '"1D5BF82FA562160"' +>>>>>>> live test expires: - '-1' pragma: @@ -801,11 +945,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14998' ======= - '14996' >>>>>>> Re-record test for app service +======= + - '14994' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml index 8b9568977e4..f2f137224f5 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:06:30 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:33:27 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,22 +174,30 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:04.3628763Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:04.3628763Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:04.2847491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' ======= string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:09.4889697Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:09.4889697Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:09.4108312Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:05.5797236Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:05.5797236Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:33:05.5016165Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -182,11 +206,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:26 GMT ======= - Wed, 13 Nov 2019 11:06:31 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -221,11 +249,15 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -241,11 +273,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:26 GMT ======= - Wed, 13 Nov 2019 11:06:32 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:29 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -261,11 +297,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1192' >>>>>>> Re-record test for app service +======= + - '1193' +>>>>>>> live test status: code: 200 message: OK @@ -296,26 +336,35 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:36.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5848DA9B79BECC7EBBC646104018E1812016A48F76073D1BC8002F99E91BDC4D","kind":"functionapp","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-127.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:42.4866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D15C91D534DF7AA401F65D61315163E803FB46591F04C2EAF77C125C1C22281E","kind":"functionapp","inboundIpAddress":"40.112.243.3","possibleInboundIpAddresses":"40.112.243.3","outboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230","possibleOutboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230,40.83.164.193,104.42.51.234,104.42.49.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-127","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:37.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F997D7F6967E5ED7951911DBABC719CED8D17FA2AD6DFD54F4925B49D5F5DF80","kind":"functionapp","inboundIpAddress":"191.236.106.123","possibleInboundIpAddresses":"191.236.106.123","outboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","possibleOutboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3783' content-type: @@ -326,13 +375,20 @@ interactions: - '"1D5BCBDDFF54B95"' ======= - '3797' +======= + - '3858' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:15 GMT + - Tue, 31 Dec 2019 02:34:13 GMT etag: +<<<<<<< HEAD - '"1D59A126E8CAEA0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82B4D354A0"' +>>>>>>> live test expires: - '-1' pragma: @@ -376,22 +432,30 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30037f4-0000-0700-0000-5e060e700000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"8f0d79f1-9de7-454f-887b-23b66c77f447","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"773e3dd9-e20d-4cb8-881d-646c98fcbbf2","ConnectionString":"InstrumentationKey=773e3dd9-e20d-4cb8-881d-646c98fcbbf2","Name":"functionappconsumption000003","CreationDate":"2019-12-27T14:00:16.7056429+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d7cd-0000-0700-0000-5dcbe3e90000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"74d047ff-f46e-46d9-b86d-3f70123eacad","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f12f08a5-8ee4-4bab-bf02-68ac34b92bbe","ConnectionString":"InstrumentationKey=f12f08a5-8ee4-4bab-bf02-68ac34b92bbe","Name":"functionappconsumption000003","CreationDate":"2019-11-13T11:07:21.0378602+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0007c53-0000-0700-0000-5e0ab3ab0000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"42efcf20-6fa4-4048-94ce-d9da215bb2e1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b645f6af-f566-4da3-b566-90663b7e9960","ConnectionString":"InstrumentationKey=b645f6af-f566-4da3-b566-90663b7e9960","Name":"functionappconsumption000003","CreationDate":"2019-12-31T02:34:19.9173373+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -402,11 +466,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:18 GMT ======= - Wed, 13 Nov 2019 11:07:23 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:21 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -424,11 +492,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1194' ======= - '1179' >>>>>>> Re-record test for app service +======= + - '1181' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -451,15 +523,19 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -472,11 +548,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:19 GMT ======= - Wed, 13 Nov 2019 11:07:25 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:22 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -507,11 +587,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappconsumption000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "773e3dd9-e20d-4cb8-881d-646c98fcbbf2"}}''' ======= "f12f08a5-8ee4-4bab-bf02-68ac34b92bbe"}}''' >>>>>>> Re-record test for app service +======= + "b645f6af-f566-4da3-b566-90663b7e9960"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -529,23 +613,31 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"773e3dd9-e20d-4cb8-881d-646c98fcbbf2"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"f12f08a5-8ee4-4bab-bf02-68ac34b92bbe"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b645f6af-f566-4da3-b566-90663b7e9960"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -554,6 +646,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:21 GMT etag: @@ -563,6 +656,11 @@ interactions: etag: - '"1D59A1288455BB5"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:24 GMT + etag: + - '"1D5BF82D06A2A90"' +>>>>>>> live test expires: - '-1' pragma: @@ -580,7 +678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1190' x-powered-by: - ASP.NET status: @@ -601,27 +699,36 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:20.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5848DA9B79BECC7EBBC646104018E1812016A48F76073D1BC8002F99E91BDC4D","kind":"functionapp","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-127.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:26.3633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D15C91D534DF7AA401F65D61315163E803FB46591F04C2EAF77C125C1C22281E","kind":"functionapp","inboundIpAddress":"40.112.243.3","possibleInboundIpAddresses":"40.112.243.3","outboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230","possibleOutboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230,40.83.164.193,104.42.51.234,104.42.49.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-127","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:24.057","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F997D7F6967E5ED7951911DBABC719CED8D17FA2AD6DFD54F4925B49D5F5DF80","kind":"functionapp","inboundIpAddress":"191.236.106.123","possibleInboundIpAddresses":"191.236.106.123","outboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","possibleOutboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3787' content-type: @@ -632,13 +739,20 @@ interactions: - '"1D5BCBDF9E77235"' ======= - '3796' +======= + - '3858' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:30 GMT + - Tue, 31 Dec 2019 02:34:26 GMT etag: +<<<<<<< HEAD - '"1D59A1288455BB5"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82D06A2A90"' +>>>>>>> live test expires: - '-1' pragma: @@ -679,20 +793,25 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> live test SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> Re-record test for app service +======= + userPWD="qN1HdBG6iGwl3GCgp31mu1YYAqkytig5qY72NQMNrstbRq6PhEGq1PxJmhEJ" destinationAppUrl="http://functionappconsumption000003.azurewebsites.net" + SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" + controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> live test SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -723,15 +855,19 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:23 GMT ======= - Wed, 13 Nov 2019 11:07:30 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:26 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -745,7 +881,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11996' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml index 16b82a84e32..3f615109187 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:35:44Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:34 GMT ======= - Wed, 13 Nov 2019 11:02:44 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:10 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,15 +80,19 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -92,11 +104,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT ======= - Wed, 13 Nov 2019 11:02:47 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:11 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -114,11 +130,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1192' >>>>>>> Re-record test for app service +======= + - '1191' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -146,11 +166,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:35:44Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -159,11 +183,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:36 GMT ======= - Wed, 13 Nov 2019 11:02:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -197,18 +225,23 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","name":"slot-traffic-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":23100,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23100","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -216,6 +249,10 @@ interactions: US","properties":{"serverFarmId":21887,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21887","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":23240,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23240","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -224,11 +261,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:44 GMT ======= - Wed, 13 Nov 2019 11:02:54 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:20 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -246,11 +287,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1184' >>>>>>> Re-record test for app service +======= + - '1176' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -278,11 +323,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:35:44Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -291,11 +340,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:45 GMT ======= - Wed, 13 Nov 2019 11:02:56 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:21 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -328,22 +381,30 @@ interactions: - --name -g --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:14.4978521Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:02:24.5062508Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:50.4986942Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -352,11 +413,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:48 GMT ======= - Wed, 13 Nov 2019 11:02:57 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:23 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -372,11 +437,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1193' ======= - '1187' >>>>>>> Re-record test for app service +======= + - '1175' +>>>>>>> live test status: code: 200 message: OK @@ -395,18 +464,23 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","name":"slot-traffic-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":23100,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23100","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -414,6 +488,10 @@ interactions: US","properties":{"serverFarmId":21887,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21887","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":23240,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23240","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -422,11 +500,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:48 GMT ======= - Wed, 13 Nov 2019 11:02:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:25 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -463,22 +545,30 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:14.4978521Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:02:24.5062508Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:50.4986942Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -487,11 +577,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:49 GMT ======= - Wed, 13 Nov 2019 11:03:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:27 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -526,11 +620,15 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -546,11 +644,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:49 GMT ======= - Wed, 13 Nov 2019 11:03:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:27 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -566,11 +668,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1190' +>>>>>>> live test status: code: 200 message: OK @@ -599,27 +705,36 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004","name":"slot-traffic-web000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:55.46","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"14DA58C5CDF11E6381D336E23DAF2E2595BE6C6E28B91E77A9E80049F34EEDE1","kind":"functionapp","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:05.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0E4463A697DC0CE5110F34B99679EC404AD6015E98778ED3363D5EB1E947C9CF","kind":"functionapp","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:33.4933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F53E60574C50D5404EC84EBBFBF5F6DFF5EA9529E5488BF24480997BB5BB615C","kind":"functionapp","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3542' content-type: @@ -630,13 +745,20 @@ interactions: - '"1D5BCBDC77D8FF5"' ======= - '3547' +======= + - '3557' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:21 GMT + - Tue, 31 Dec 2019 02:36:50 GMT etag: +<<<<<<< HEAD - '"1D59A11ECFA9E2B"' >>>>>>> Re-record test for app service +======= + - '"1D5BF831DE37D4B"' +>>>>>>> live test expires: - '-1' pragma: @@ -654,11 +776,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '496' ======= - '493' >>>>>>> Re-record test for app service +======= + - '498' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -691,11 +817,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300c0f0-0000-0700-0000-5e060e350000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"1fd97f62-4f17-4aa6-93b0-f9e6b6e36ea4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6b39def4-5356-4a5d-8d5d-79fdc9853d3a","ConnectionString":"InstrumentationKey=6b39def4-5356-4a5d-8d5d-79fdc9853d3a","Name":"slot-traffic-web000004","CreationDate":"2019-12-27T13:59:17.7009989+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d3c2-0000-0700-0000-5dcbe2fe0000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"24551cc3-d25e-4a92-b0a9-f255449e4a05","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ad36671f-938b-427f-bea2-9336ea0a5b99","ConnectionString":"InstrumentationKey=ad36671f-938b-427f-bea2-9336ea0a5b99","Name":"slot-traffic-web000004","CreationDate":"2019-11-13T11:03:26.4689897+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000495b-0000-0700-0000-5e0ab4470000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"ae349917-49a4-4cbe-aea4-83c90ba6d9af","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"53144707-8169-45d9-a33f-ebaa147ae13d","ConnectionString":"InstrumentationKey=53144707-8169-45d9-a33f-ebaa147ae13d","Name":"slot-traffic-web000004","CreationDate":"2019-12-31T02:36:55.9618783+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -706,11 +836,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:19 GMT ======= - Wed, 13 Nov 2019 11:03:28 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:57 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -728,11 +862,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1176' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -755,15 +893,19 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -776,11 +918,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:21 GMT ======= - Wed, 13 Nov 2019 11:03:29 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:59 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -798,11 +944,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11998' ======= - '11996' >>>>>>> Re-record test for app service +======= + - '11992' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -812,11 +962,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "6b39def4-5356-4a5d-8d5d-79fdc9853d3a"}}''' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ad36671f-938b-427f-bea2-9336ea0a5b99"}}''' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "53144707-8169-45d9-a33f-ebaa147ae13d"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -834,23 +988,31 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"6b39def4-5356-4a5d-8d5d-79fdc9853d3a"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ad36671f-938b-427f-bea2-9336ea0a5b99"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"53144707-8169-45d9-a33f-ebaa147ae13d"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -859,6 +1021,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:23 GMT etag: @@ -868,6 +1031,11 @@ interactions: etag: - '"1D59A11FBEAFAA0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:01 GMT + etag: + - '"1D5BF832E492EAB"' +>>>>>>> live test expires: - '-1' pragma: @@ -885,11 +1053,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= - '1191' >>>>>>> Re-record test for app service +======= + - '1179' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -910,32 +1082,42 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web","name":"slot-traffic-web000004","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3041' + - '3210' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:25 GMT ======= - Wed, 13 Nov 2019 11:03:32 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:02 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -971,8 +1153,12 @@ interactions: []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com", "https://msdn.com", "https://msn.com"], "supportCredentials": false}, "localMySqlEnabled": false, - "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -983,25 +1169,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1253' + - '1537' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004","name":"slot-traffic-web000004","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -1009,14 +1200,20 @@ interactions: ======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '3064' + - '3233' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:28 GMT etag: @@ -1026,6 +1223,11 @@ interactions: etag: - '"1D59A11FBEAFAA0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:05 GMT + etag: + - '"1D5BF832E492EAB"' +>>>>>>> live test expires: - '-1' pragma: @@ -1043,11 +1245,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1190' >>>>>>> Re-record test for app service +======= + - '1183' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1068,18 +1274,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web","name":"slot-traffic-web000004","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -1087,19 +1298,28 @@ interactions: ======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '3082' + - '3251' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:29 GMT ======= - Wed, 13 Nov 2019 11:03:36 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:06 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml index e397e82e459..cb052eedced 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:46:02Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:41Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:32Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:46:10 GMT ======= - Wed, 13 Nov 2019 11:03:47 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,15 +80,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -92,11 +104,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:46:10 GMT ======= - Wed, 13 Nov 2019 11:03:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -114,7 +130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1193' x-powered-by: - ASP.NET status: @@ -142,11 +158,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:46:02Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:41Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:32Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -155,11 +175,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:46:11 GMT ======= - Wed, 13 Nov 2019 11:03:49 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -193,18 +217,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' @@ -212,6 +241,10 @@ interactions: US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -220,11 +253,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:46:26 GMT ======= - Wed, 13 Nov 2019 11:03:56 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:51 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -242,11 +279,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1183' ======= - '1188' >>>>>>> Re-record test for app service +======= + - '1183' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -267,18 +308,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' @@ -286,6 +332,10 @@ interactions: US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache @@ -294,11 +344,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:46:28 GMT ======= - Wed, 13 Nov 2019 11:03:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -339,11 +393,15 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT @@ -359,6 +417,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:46:32 GMT expires: @@ -372,6 +431,13 @@ interactions: location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/29f967dc-4317-4de2-9a8e-bd5b2b9ba011?monitor=true&api-version=2019-04-01 >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d4f4b5ff-a820-4e95-a008-52f6d5c2ca97?monitor=true&api-version=2019-04-01 +>>>>>>> live test pragma: - no-cache server: @@ -381,11 +447,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1180' ======= - '1187' >>>>>>> Re-record test for app service +======= + - '1188' +>>>>>>> live test status: code: 202 message: Accepted @@ -404,6 +474,7 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET @@ -413,12 +484,19 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:32.7785433Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/29f967dc-4317-4de2-9a8e-bd5b2b9ba011?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d4f4b5ff-a820-4e95-a008-52f6d5c2ca97?monitor=true&api-version=2019-04-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:00.1649787Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:31:59.5754914Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -434,8 +512,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:04:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:32:17 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -472,11 +554,15 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT @@ -492,6 +578,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:46:56 GMT expires: @@ -505,6 +592,13 @@ interactions: location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fc68fc4e-b51f-4c7d-86cf-9bd359399517?monitor=true&api-version=2019-04-01 >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:32:24 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/faec5d13-051a-40e5-b81d-60085dda9697?monitor=true&api-version=2019-04-01 +>>>>>>> live test pragma: - no-cache server: @@ -514,11 +608,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1185' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1183' +>>>>>>> live test status: code: 202 message: Accepted @@ -537,6 +635,7 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET @@ -546,12 +645,19 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:56.1536413Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fc68fc4e-b51f-4c7d-86cf-9bd359399517?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/faec5d13-051a-40e5-b81d-60085dda9697?monitor=true&api-version=2019-04-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:33.5089907Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:32:23.6014906Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -560,11 +666,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:14 GMT ======= - Wed, 13 Nov 2019 11:04:51 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:32:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -597,18 +707,23 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' @@ -616,6 +731,10 @@ interactions: US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -624,11 +743,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:15 GMT ======= - Wed, 13 Nov 2019 11:04:53 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:32:44 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -665,22 +788,30 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:32.7785433Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:00.1649787Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:31:59.5754914Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -689,11 +820,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:16 GMT ======= - Wed, 13 Nov 2019 11:04:54 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:32:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -728,11 +863,15 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -748,11 +887,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:16 GMT ======= - Wed, 13 Nov 2019 11:04:54 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:32:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -768,11 +911,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1191' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1195' +>>>>>>> live test status: code: 200 message: OK @@ -801,27 +948,36 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003","name":"func-e2e000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:47:22.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AB799B4C490667BB75660E308123AB86E3D9FA4CA55CD99080EA7A52BAF97DE0","kind":"functionapp","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:57.413","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"448CCFDEB10D8C4F5B71DCCDC9EFA22156168F1C1F2CA7696D9AA6BCDEBBFE41","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:51.653","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BD7E85C5184A3E1555FEA7B74C36E0AD8D61B2093BF81FB47C56445DBC4934C3","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3562' content-type: @@ -832,13 +988,20 @@ interactions: - '"1D5BCC48C81E7F5"' ======= - '3558' +======= + - '3544' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:14 GMT + - Tue, 31 Dec 2019 02:33:08 GMT etag: +<<<<<<< HEAD - '"1D59A122FCAB400"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82999D3C50"' +>>>>>>> live test expires: - '-1' pragma: @@ -856,7 +1019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '497' x-powered-by: - ASP.NET status: @@ -889,11 +1052,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4007eb9-0000-0700-0000-5e0619920000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"be29cc31-d0ee-4c8c-8824-ab0081d96ae0","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0560a784-28d3-45bd-b704-acaaeab2f779","ConnectionString":"InstrumentationKey=0560a784-28d3-45bd-b704-acaaeab2f779","Name":"func-e2e000003","CreationDate":"2019-12-27T14:47:46.7719572+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc002fc8-0000-0700-0000-5dcbe36e0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"5c04767f-d6fa-490e-9b5f-95478c601250","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"808ca97b-b82e-4e6c-a71e-e8e8270fca53","ConnectionString":"InstrumentationKey=808ca97b-b82e-4e6c-a71e-e8e8270fca53","Name":"func-e2e000003","CreationDate":"2019-11-13T11:05:18.5808514+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001c51-0000-0700-0000-5e0ab37d0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"3803a80d-bc34-4876-95e0-e58c28fa914c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"79e1dbcd-038f-4a6a-b308-87a8fafbe74c","ConnectionString":"InstrumentationKey=79e1dbcd-038f-4a6a-b308-87a8fafbe74c","Name":"func-e2e000003","CreationDate":"2019-12-31T02:33:33.4087401+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -904,11 +1071,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:48 GMT ======= - Wed, 13 Nov 2019 11:05:20 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:34 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -953,15 +1124,19 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -974,11 +1149,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:49 GMT ======= - Wed, 13 Nov 2019 11:05:21 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -996,11 +1175,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11992' ======= - '11997' >>>>>>> Re-record test for app service +======= + - '11993' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1010,11 +1193,15 @@ interactions: body: '{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "0560a784-28d3-45bd-b704-acaaeab2f779"}}' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "808ca97b-b82e-4e6c-a71e-e8e8270fca53"}}' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "79e1dbcd-038f-4a6a-b308-87a8fafbe74c"}}' +>>>>>>> live test headers: Accept: - application/json @@ -1032,23 +1219,31 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"0560a784-28d3-45bd-b704-acaaeab2f779"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"808ca97b-b82e-4e6c-a71e-e8e8270fca53"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"79e1dbcd-038f-4a6a-b308-87a8fafbe74c"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1057,6 +1252,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:50 GMT etag: @@ -1066,6 +1262,11 @@ interactions: etag: - '"1D59A123EE5BCF0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:37 GMT + etag: + - '"1D5BF82B48A16A0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1083,11 +1284,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1182' ======= - '1190' >>>>>>> Re-record test for app service +======= + - '1181' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1108,18 +1313,23 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' @@ -1127,6 +1337,10 @@ interactions: US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1135,11 +1349,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:52 GMT ======= - Wed, 13 Nov 2019 11:05:23 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1176,22 +1394,30 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:56.1536413Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:33.5089907Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:32:23.6014906Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1200,11 +1426,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:54 GMT ======= - Wed, 13 Nov 2019 11:05:25 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1239,11 +1469,15 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -1259,11 +1493,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:47:54 GMT ======= - Wed, 13 Nov 2019 11:05:25 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1279,11 +1517,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1191' +>>>>>>> live test status: code: 200 message: OK @@ -1313,27 +1555,36 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004","name":"func-e2e000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:48:00.41","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BCF4D1F3FCE0F5784C42D79720CA823A08CAB3F1BB732D3242127915D99CE8E4","kind":"functionapp","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:28.687","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"36307B8D24C139F9183CE8366850022DA8FFE47F48E18561DD03D25E543B4461","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:45.527","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1F8C85E23B348CE0BD1AFDADD9C3477F702DC77E58D4D11F0865F7A639A373A4","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3557' content-type: @@ -1344,13 +1595,20 @@ interactions: - '"1D5BCC4A2CDB5E0"' ======= - '3558' +======= + - '3544' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:46 GMT + - Tue, 31 Dec 2019 02:34:02 GMT etag: +<<<<<<< HEAD - '"1D59A124276D2F0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82B9D315D0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1401,11 +1659,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b40090bc-0000-0700-0000-5e0619b80000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"8a69445b-2c14-456c-9803-b4a405dc5ad3","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f71bd035-02ae-4804-82bd-27e8d99ccb78","ConnectionString":"InstrumentationKey=f71bd035-02ae-4804-82bd-27e8d99ccb78","Name":"func-e2e000004","CreationDate":"2019-12-27T14:48:24.3526348+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc008fc9-0000-0700-0000-5dcbe38d0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"8edf45b5-8ea9-4761-87e8-b7f883a7c742","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7929435d-92d9-4fe4-8966-abbf519efd19","ConnectionString":"InstrumentationKey=7929435d-92d9-4fe4-8966-abbf519efd19","Name":"func-e2e000004","CreationDate":"2019-11-13T11:05:49.5146607+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000f052-0000-0700-0000-5e0ab39e0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"a5d37754-6c43-4ad3-8138-d9d0c5344cf2","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7b45bfda-64b4-40d8-bdcd-7a763b485dc6","ConnectionString":"InstrumentationKey=7b45bfda-64b4-40d8-bdcd-7a763b485dc6","Name":"func-e2e000004","CreationDate":"2019-12-31T02:34:06.9820935+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -1416,11 +1678,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:48:26 GMT ======= - Wed, 13 Nov 2019 11:05:52 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1438,11 +1704,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1179' ======= - '1183' >>>>>>> Re-record test for app service +======= + - '1174' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1465,15 +1735,19 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1486,11 +1760,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:48:27 GMT ======= - Wed, 13 Nov 2019 11:05:52 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:10 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1508,7 +1786,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11999' +======= + - '11997' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1518,11 +1800,15 @@ interactions: body: '{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f71bd035-02ae-4804-82bd-27e8d99ccb78"}}' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "7929435d-92d9-4fe4-8966-abbf519efd19"}}' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "7b45bfda-64b4-40d8-bdcd-7a763b485dc6"}}' +>>>>>>> live test headers: Accept: - application/json @@ -1540,23 +1826,31 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f71bd035-02ae-4804-82bd-27e8d99ccb78"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"7929435d-92d9-4fe4-8966-abbf519efd19"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"7b45bfda-64b4-40d8-bdcd-7a763b485dc6"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1565,6 +1859,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:48:28 GMT etag: @@ -1574,6 +1869,11 @@ interactions: etag: - '"1D59A125189C590"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:11 GMT + etag: + - '"1D5BF82C9030650"' +>>>>>>> live test expires: - '-1' pragma: @@ -1618,15 +1918,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003?api-version=2019-08-01 response: body: string: '' @@ -1636,6 +1940,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:48:34 GMT etag: @@ -1645,6 +1950,11 @@ interactions: etag: - '"1D59A123EE5BCF0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:17 GMT + etag: + - '"1D5BF82B48A16A0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1658,11 +1968,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14993' ======= - '14996' >>>>>>> Re-record test for app service +======= + - '14993' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml index e21375c30df..6ffedd0b6b4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_elastic_plan.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --min-instances --max-burst User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:42:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:43:03 GMT + - Tue, 31 Dec 2019 02:36:55 GMT expires: - '-1' pragma: @@ -65,16 +65,16 @@ interactions: - -g -n --sku --min-instances --max-burst User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":33972,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-115_33972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' + US","properties":{"serverFarmId":27347,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-149_27347","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' headers: cache-control: - no-cache @@ -83,7 +83,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:43:13 GMT + - Tue, 31 Dec 2019 02:37:09 GMT expires: - '-1' pragma: @@ -101,7 +101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1189' x-powered-by: - ASP.NET status: @@ -122,16 +122,16 @@ interactions: - -g -n --min-instances --max-burst User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":33972,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-115_33972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' + US","properties":{"serverFarmId":27347,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":4,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":4,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":12,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-149_27347","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":4}}' headers: cache-control: - no-cache @@ -140,7 +140,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:43:14 GMT + - Tue, 31 Dec 2019 02:37:10 GMT expires: - '-1' pragma: @@ -162,4 +162,167 @@ interactions: status: code: 200 message: OK +- request: + body: '{"kind": "elastic", "location": "Central US", "properties": {"perSiteScaling": + false, "maximumElasticWorkerCount": 11, "isSpot": false, "reserved": false, + "isXenon": false, "hyperV": false, "targetWorkerCount": 0, "targetWorkerSizeId": + 0}, "sku": {"name": "EP1", "tier": "ElasticPremium", "size": "EP1", "family": + "EP", "capacity": 5}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp plan update + Connection: + - keep-alive + Content-Length: + - '335' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --min-instances --max-burst + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central + US","properties":{"serverFarmId":27347,"name":"funcappplan000002","sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","capacity":5},"workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":5,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":5,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":11,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-149_27347","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","capacity":5}}' + headers: + cache-control: + - no-cache + content-length: + - '1595' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1182' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp plan show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000002","name":"funcappplan000002","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central + US","properties":{"serverFarmId":27347,"name":"funcappplan000002","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":5,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":5,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":11,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-149_27347","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":5}}' + headers: + cache-control: + - no-cache + content-length: + - '1545' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/funcappplan000002?api-version=2019-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Tue, 31 Dec 2019 02:37:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14995' + status: + code: 204 + message: No Content version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml index 67c08c0d8a6..046d7b37f44 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:07Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:13Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:28Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:39 GMT ======= - Wed, 13 Nov 2019 11:07:43 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:04 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -73,15 +81,19 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +105,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:41 GMT ======= - Wed, 13 Nov 2019 11:07:44 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:04 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -147,11 +163,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:07Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:13Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:28Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -160,11 +180,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:41 GMT ======= - Wed, 13 Nov 2019 11:07:44 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:05 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -199,18 +223,23 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"serverFarmId":43470,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43470","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -218,6 +247,10 @@ interactions: Central US","properties":{"serverFarmId":39582,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39582","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"serverFarmId":43527,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43527","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -226,11 +259,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:01 GMT ======= - Wed, 13 Nov 2019 11:07:57 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:22 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -248,11 +285,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1193' ======= - '1184' >>>>>>> Re-record test for app service +======= + - '1181' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -273,18 +314,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"serverFarmId":43470,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43470","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -292,6 +338,10 @@ interactions: Central US","properties":{"serverFarmId":39582,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39582","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"serverFarmId":43527,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43527","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -300,11 +350,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:02 GMT ======= - Wed, 13 Nov 2019 11:08:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:23 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -341,22 +395,30 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:19.7947321Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:19.7947321Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:19.7322763Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:22.2853891Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:22.2853891Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:22.2228860Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:42.6121556Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:42.6121556Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:42.5340281Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -372,8 +434,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:08:01 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:24 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -408,11 +474,15 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -428,11 +498,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:04 GMT ======= - Wed, 13 Nov 2019 11:08:01 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:25 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -448,11 +522,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1187' >>>>>>> Re-record test for app service +======= + - '1191' +>>>>>>> live test status: code: 200 message: OK @@ -462,11 +540,15 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD <<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141"}, ======= "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3"}, >>>>>>> Re-record test for app service +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D"}, +>>>>>>> live test {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -489,27 +571,36 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:12.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0471F2A51505A265B74B89D22161576FE40436B6B149F0D8C3A509EFB9DFD458","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:06.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2E789E15DF0E3E9D59C997A6A2A3B92F0BA114529FCE15646571DF24BC078045","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:34.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B49CCD74640961252EDA6D64BC98743348447C5CC287726142FE0E657C53E81D","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3738' content-type: @@ -520,13 +611,20 @@ interactions: - '"1D5BCBE192FC46B"' ======= - '3733' +======= + - '3738' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:22 GMT + - Tue, 31 Dec 2019 02:37:52 GMT etag: +<<<<<<< HEAD - '"1D59A12A0503EC0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8342522B80"' +>>>>>>> live test expires: - '-1' pragma: @@ -581,11 +679,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"000081ce-0000-0500-0000-5e060ec50000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"5ba55387-26cc-4230-998e-3292f8b46861","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66a7091e-76d2-4220-b8c3-53b8f3328178","ConnectionString":"InstrumentationKey=66a7091e-76d2-4220-b8c3-53b8f3328178","Name":"functionapp-linux000004","CreationDate":"2019-12-27T14:01:40.9478543+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"7a00a87e-0000-0500-0000-5dcbe42c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"a9ba33e0-3c87-4fab-ae35-247fbf16730e","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66fc13d6-906a-4ba4-a50a-09be042a2a72","ConnectionString":"InstrumentationKey=66fc13d6-906a-4ba4-a50a-09be042a2a72","Name":"functionapp-linux000004","CreationDate":"2019-11-13T11:08:28.6706268+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"00000bfc-0000-0500-0000-5e0ab4830000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"9e7206bc-178e-4fc6-8d76-394c6ef23b58","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c42dc52d-b427-47ae-b053-e14c75d3aaf7","ConnectionString":"InstrumentationKey=c42dc52d-b427-47ae-b053-e14c75d3aaf7","Name":"functionapp-linux000004","CreationDate":"2019-12-31T02:37:55.8173997+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -596,11 +698,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:44 GMT ======= - Wed, 13 Nov 2019 11:08:32 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:57 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -618,11 +724,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1193' ======= - '1188' >>>>>>> Re-record test for app service +======= + - '1179' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -645,23 +755,31 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ======= Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -670,11 +788,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:46 GMT ======= - Wed, 13 Nov 2019 11:08:33 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -700,6 +822,7 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD <<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", @@ -711,6 +834,12 @@ interactions: "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "66fc13d6-906a-4ba4-a50a-09be042a2a72"}}''' >>>>>>> Re-record test for app service +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D", + "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "c42dc52d-b427-47ae-b053-e14c75d3aaf7"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -728,23 +857,31 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"66a7091e-76d2-4220-b8c3-53b8f3328178"}}' ======= Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"66fc13d6-906a-4ba4-a50a-09be042a2a72"}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"c42dc52d-b427-47ae-b053-e14c75d3aaf7"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -753,6 +890,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT etag: @@ -762,6 +900,11 @@ interactions: etag: - '"1D59A12B2187355"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:59 GMT + etag: + - '"1D5BF8351746060"' +>>>>>>> live test expires: - '-1' pragma: @@ -779,11 +922,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1182' >>>>>>> Re-record test for app service +======= + - '1174' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -804,36 +951,48 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.7633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0471F2A51505A265B74B89D22161576FE40436B6B149F0D8C3A509EFB9DFD458","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ======= Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:36.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2E789E15DF0E3E9D59C997A6A2A3B92F0BA114529FCE15646571DF24BC078045","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:00.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B49CCD74640961252EDA6D64BC98743348447C5CC287726142FE0E657C53E81D","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '3776' + - '3771' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT ======= - Wed, 13 Nov 2019 11:08:37 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:02 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -870,18 +1029,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -889,10 +1053,16 @@ interactions: ======= Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3311' content-type: @@ -906,6 +1076,13 @@ interactions: date: - Wed, 13 Nov 2019 11:08:39 GMT >>>>>>> Re-record test for app service +======= + - '3282' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:38:03 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -944,15 +1121,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2019-08-01 response: body: string: '' @@ -962,6 +1143,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:03 GMT etag: @@ -971,6 +1153,11 @@ interactions: etag: - '"1D59A12B2187355"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:13 GMT + etag: + - '"1D5BF8351746060"' +>>>>>>> live test expires: - '-1' pragma: @@ -984,7 +1171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14990' + - '14992' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml index 53c6d52a4bb..014c68d6a8d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:02:12Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:38Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:24Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:43 GMT ======= - Wed, 13 Nov 2019 11:08:06 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:56 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,18 +80,23 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"serverFarmId":43471,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43471","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -91,6 +104,10 @@ interactions: Central US","properties":{"serverFarmId":39583,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39583","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"serverFarmId":46029,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46029","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -99,11 +116,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:00 GMT ======= - Wed, 13 Nov 2019 11:08:18 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:10 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -121,11 +142,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1188' ======= - '1177' >>>>>>> Re-record test for app service +======= + - '1181' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -146,18 +171,23 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"serverFarmId":43471,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43471","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -165,6 +195,10 @@ interactions: Central US","properties":{"serverFarmId":39583,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39583","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"serverFarmId":46029,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46029","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -173,11 +207,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:01 GMT ======= - Wed, 13 Nov 2019 11:08:21 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:11 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -214,22 +252,30 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:22.7732654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:22.7732654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:22.7263869Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:46.0058738Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:46.0058738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:45.9277971Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:35.6433498Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:35.6433498Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:35.5652143Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -245,8 +291,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:08:21 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -281,11 +331,15 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -301,11 +355,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:03 GMT ======= - Wed, 13 Nov 2019 11:08:22 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -321,11 +379,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1195' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1190' +>>>>>>> live test status: code: 200 message: OK @@ -335,11 +397,15 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", +<<<<<<< HEAD <<<<<<< HEAD "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8"}, ======= "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035"}, >>>>>>> Re-record test for app service +======= + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23"}, +>>>>>>> live test {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -362,31 +428,40 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:11.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ED2BBF7217DB1A3BCC830926101F0F672DD1F9B0BDE1B8F5A44FA8C804620DA5","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:27.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F47F73F2B75B91EED28574E1FB1F44BCF00E28E9B736B76CA6FF50DCAEAAA61","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:21.3833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60342BD6BBD558A58326DAFD0B7A66B80978EC1091A91DE509FCC7AB91810FAD","kind":"functionapp,linux,container","inboundIpAddress":"13.85.31.243","possibleInboundIpAddresses":"13.85.31.243","outboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11","possibleOutboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11,13.65.211.229,13.65.174.81","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '3734' + - '3718' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:28 GMT etag: @@ -396,6 +471,11 @@ interactions: etag: - '"1D59A12ACC14355"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:39 GMT + etag: + - '"1D5BF833A6C6160"' +>>>>>>> live test expires: - '-1' pragma: @@ -413,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '495' x-powered-by: - ASP.NET status: @@ -446,11 +526,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"00008dce-0000-0500-0000-5e060f390000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"43083ef5-a758-411a-9a36-80ea07c48969","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"36dd1360-8d1a-4390-b0d3-b1e3b056c4f3","ConnectionString":"InstrumentationKey=36dd1360-8d1a-4390-b0d3-b1e3b056c4f3","Name":"functionapp-linux000004","CreationDate":"2019-12-27T14:03:36.9660319+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"7a00ec7e-0000-0500-0000-5dcbe4410000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"d6beb8e4-40d4-4ed5-9a76-96904ba748ff","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"18a28719-24fc-4cd5-971f-284dd18a8292","ConnectionString":"InstrumentationKey=18a28719-24fc-4cd5-971f-284dd18a8292","Name":"functionapp-linux000004","CreationDate":"2019-11-13T11:08:49.6925887+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"000009fc-0000-0500-0000-5e0ab4790000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"fecdf451-87b6-4c5d-b08f-ac8bf481538d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"22596a92-57a6-420f-acad-91d64b1e5a98","ConnectionString":"InstrumentationKey=22596a92-57a6-420f-acad-91d64b1e5a98","Name":"functionapp-linux000004","CreationDate":"2019-12-31T02:37:45.4251488+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -461,11 +545,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:39 GMT ======= - Wed, 13 Nov 2019 11:08:53 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -483,7 +571,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1184' +======= + - '1175' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -506,23 +598,31 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ======= Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -531,11 +631,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:40 GMT ======= - Wed, 13 Nov 2019 11:08:55 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:49 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -553,11 +657,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11994' ======= - '11995' >>>>>>> Re-record test for app service +======= + - '11994' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -565,6 +673,7 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": +<<<<<<< HEAD <<<<<<< HEAD "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", @@ -576,6 +685,12 @@ interactions: "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "18a28719-24fc-4cd5-971f-284dd18a8292"}}''' >>>>>>> Re-record test for app service +======= + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23", + "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "22596a92-57a6-420f-acad-91d64b1e5a98"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -593,23 +708,31 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"36dd1360-8d1a-4390-b0d3-b1e3b056c4f3"}}' ======= Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"18a28719-24fc-4cd5-971f-284dd18a8292"}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"22596a92-57a6-420f-acad-91d64b1e5a98"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -618,6 +741,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:41 GMT etag: @@ -627,6 +751,11 @@ interactions: etag: - '"1D59A12BE1A9680"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:52 GMT + etag: + - '"1D5BF834C3C3715"' +>>>>>>> live test expires: - '-1' pragma: @@ -644,11 +773,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1188' ======= - '1183' >>>>>>> Re-record test for app service +======= + - '1185' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -669,36 +802,48 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:41.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ED2BBF7217DB1A3BCC830926101F0F672DD1F9B0BDE1B8F5A44FA8C804620DA5","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ======= Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:56.68","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F47F73F2B75B91EED28574E1FB1F44BCF00E28E9B736B76CA6FF50DCAEAAA61","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:51.7933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60342BD6BBD558A58326DAFD0B7A66B80978EC1091A91DE509FCC7AB91810FAD","kind":"functionapp,linux,container","inboundIpAddress":"13.85.31.243","possibleInboundIpAddresses":"13.85.31.243","outboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11","possibleOutboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11,13.65.211.229,13.65.174.81","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '3772' + - '3756' content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:43 GMT ======= - Wed, 13 Nov 2019 11:08:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:52 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -735,18 +880,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"South +<<<<<<< HEAD <<<<<<< HEAD Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -754,10 +904,16 @@ interactions: ======= Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3312' content-type: @@ -771,6 +927,13 @@ interactions: date: - Wed, 13 Nov 2019 11:09:00 GMT >>>>>>> Re-record test for app service +======= + - '3283' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:37:55 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml index 78c037c46e1..4aa8838fd75 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:08:16 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:36:47 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,22 +174,30 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:59.4704904Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:59.4704904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:03:59.4080180Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:55.3184654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:55.3184654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:55.2403787Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:26.1120599Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:26.1120599Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:26.0495337Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -182,11 +206,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:21 GMT ======= - Wed, 13 Nov 2019 11:08:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:47 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -221,11 +249,15 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -241,11 +273,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:21 GMT ======= - Wed, 13 Nov 2019 11:08:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:48 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -261,11 +297,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1193' ======= - '1192' >>>>>>> Re-record test for app service +======= + - '1190' +>>>>>>> live test status: code: 200 message: OK @@ -295,22 +335,30 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:04:30.5233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D10C701CFEC388A8004E1CB06351B8EB3BE878A355C65970379FD9A7803F719","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:26.2866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AA6AC62E05F9376837EC3FA91A7EA8573685661533AF1DB006F3FA7C5C4C73F4","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:54.7366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DFCB41F4A29DD3E99C56B2F77FF72CFFED0C2EC359AAE04D284F891BC725065C","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -319,6 +367,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:47 GMT etag: @@ -328,6 +377,11 @@ interactions: etag: - '"1D59A12ACE7EB2B"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:12 GMT + etag: + - '"1D5BF832AB5A7AB"' +>>>>>>> live test expires: - '-1' pragma: @@ -371,22 +425,30 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4005608-0000-0700-0000-5e060f860000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"a93e8bf8-5606-48d8-8f27-f5408daaa827","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ddc17a57-4b9a-475e-826f-0e4ecb8d562d","ConnectionString":"InstrumentationKey=ddc17a57-4b9a-475e-826f-0e4ecb8d562d","Name":"functionapp-linux000003","CreationDate":"2019-12-27T14:04:54.0194606+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00a1d1-0000-0700-0000-5dcbe4400000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"7c2adb82-fe31-4ae1-8bd1-a9f0583b4085","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"81e8601e-62b5-4928-a8a2-661ae6f2ff8b","ConnectionString":"InstrumentationKey=81e8601e-62b5-4928-a8a2-661ae6f2ff8b","Name":"functionapp-linux000003","CreationDate":"2019-11-13T11:08:48.7374985+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000445c-0000-0700-0000-5e0ab45c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"feac16ca-db70-4341-8d53-8ecc82e6cc18","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"078f182b-2718-4431-bea8-dd387fdbf50a","ConnectionString":"InstrumentationKey=078f182b-2718-4431-bea8-dd387fdbf50a","Name":"functionapp-linux000003","CreationDate":"2019-12-31T02:37:16.6282332+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -397,11 +459,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:57 GMT ======= - Wed, 13 Nov 2019 11:08:51 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:18 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -419,11 +485,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1174' >>>>>>> Re-record test for app service +======= + - '1182' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -446,15 +516,19 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -467,11 +541,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:59 GMT ======= - Wed, 13 Nov 2019 11:08:53 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:20 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -489,7 +567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11993' x-powered-by: - ASP.NET status: @@ -499,11 +577,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "python", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ddc17a57-4b9a-475e-826f-0e4ecb8d562d"}}''' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "81e8601e-62b5-4928-a8a2-661ae6f2ff8b"}}''' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "078f182b-2718-4431-bea8-dd387fdbf50a"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -521,23 +603,31 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ddc17a57-4b9a-475e-826f-0e4ecb8d562d"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"81e8601e-62b5-4928-a8a2-661ae6f2ff8b"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"078f182b-2718-4431-bea8-dd387fdbf50a"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -546,6 +636,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:05:01 GMT etag: @@ -555,6 +646,11 @@ interactions: etag: - '"1D59A12BDAFC6C0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:22 GMT + etag: + - '"1D5BF833A98A180"' +>>>>>>> live test expires: - '-1' pragma: @@ -572,11 +668,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1182' >>>>>>> Re-record test for app service +======= + - '1171' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -597,18 +697,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/web","name":"functionapp-linux000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -616,10 +721,16 @@ interactions: ======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3248' content-type: @@ -633,6 +744,13 @@ interactions: date: - Wed, 13 Nov 2019 11:08:58 GMT >>>>>>> Re-record test for app service +======= + - '3219' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:37:23 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_error.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_error.yaml index 275efe270eb..27fcc89c774 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_error.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_error.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:53:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:54:09 GMT + - Tue, 31 Dec 2019 02:37:08 GMT expires: - '-1' pragma: @@ -64,16 +64,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South - Central US","properties":{"serverFarmId":31428,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_31428","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + Central US","properties":{"serverFarmId":46030,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46030","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -82,7 +82,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:23 GMT + - Tue, 31 Dec 2019 02:37:23 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1159' + - '1176' x-powered-by: - ASP.NET status: @@ -121,16 +121,16 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South - Central US","properties":{"serverFarmId":31428,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_31428","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + Central US","properties":{"serverFarmId":46030,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46030","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -139,7 +139,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:54:25 GMT + - Tue, 31 Dec 2019 02:37:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml index 0dadd896366..20452cdc58d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:00:41 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:30:21 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,6 +174,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -169,14 +186,21 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:07.7979797Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:07.7979797Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:07.7505833Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:00:20.5234919Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:00:20.5234919Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:00:20.4453262Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:30:00.4705744Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:30:00.4705744Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:30:00.3924495Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -192,8 +216,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:00:41 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:22 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -228,11 +256,15 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -248,11 +280,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:57:29 GMT ======= - Wed, 13 Nov 2019 11:00:41 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:30:23 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -268,11 +304,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1199' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1188' +>>>>>>> live test status: code: 200 message: OK @@ -303,6 +343,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -314,18 +355,26 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:36.893","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9DBF919051B98C0AD59100135888C83CB3CA56F58881EB910F49D2DABD37FBBC","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:51.933","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7F6806AD42284EB3A73DE2E36F808F31BBD02623909DEE1663C187A9C26A7D3F","kind":"functionapp","inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:32.2066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8D978BBDC2588B5C3510753774368CCC2719FB244C21FEC8DA9264A404A3C356","kind":"functionapp","inboundIpAddress":"40.112.243.6","possibleInboundIpAddresses":"40.112.243.6","outboundIpAddresses":"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182","possibleOutboundIpAddresses":"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3711' content-type: @@ -336,13 +385,20 @@ interactions: - '"1D5BCBD98D1E130"' ======= - '3735' +======= + - '3822' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:25 GMT + - Tue, 31 Dec 2019 02:31:09 GMT etag: +<<<<<<< HEAD - '"1D59A119DA42700"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8246CC9F8B"' +>>>>>>> live test expires: - '-1' pragma: @@ -360,11 +416,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '499' ======= - '497' >>>>>>> Re-record test for app service +======= + - '498' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -390,22 +450,30 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3003aee-0000-0700-0000-5e060dfa0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"71b5d0ac-7681-46c8-a5d5-e57c63ec1176","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"94835eee-d90d-4f07-b1be-daf502bb21b6","ConnectionString":"InstrumentationKey=94835eee-d90d-4f07-b1be-daf502bb21b6","Name":"functionappwithreservedinstance000003","CreationDate":"2019-12-27T13:58:18.6399347+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d7bc-0000-0700-0000-5dcbe28a0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"16d522d5-db6a-4545-95ed-837a298e21e6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6fa02aa7-9e9c-45ba-b401-d5b9ed171147","ConnectionString":"InstrumentationKey=6fa02aa7-9e9c-45ba-b401-d5b9ed171147","Name":"functionappwithreservedinstance000003","CreationDate":"2019-11-13T11:01:30.0115931+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000384a-0000-0700-0000-5e0ab2f30000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"ab57a621-344d-4fb8-8b83-777a429b2be1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d25a083d-078e-4677-8e8f-24bafbbdcd8f","ConnectionString":"InstrumentationKey=d25a083d-078e-4677-8e8f-24bafbbdcd8f","Name":"functionappwithreservedinstance000003","CreationDate":"2019-12-31T02:31:15.9734741+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -416,11 +484,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:21 GMT ======= - Wed, 13 Nov 2019 11:01:32 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:17 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -438,11 +510,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1191' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -465,6 +541,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -478,6 +555,13 @@ interactions: method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings/list?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings/list?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -490,11 +574,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:22 GMT ======= - Wed, 13 Nov 2019 11:01:33 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:18 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -512,11 +600,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11999' ======= - '11997' >>>>>>> Re-record test for app service +======= + - '11995' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -529,11 +621,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwithreservedinstance000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "94835eee-d90d-4f07-b1be-daf502bb21b6"}}''' ======= "6fa02aa7-9e9c-45ba-b401-d5b9ed171147"}}''' >>>>>>> Re-record test for app service +======= + "d25a083d-078e-4677-8e8f-24bafbbdcd8f"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -551,6 +647,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -563,15 +660,22 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"94835eee-d90d-4f07-b1be-daf502bb21b6"}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"6fa02aa7-9e9c-45ba-b401-d5b9ed171147"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d25a083d-078e-4677-8e8f-24bafbbdcd8f"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -580,6 +684,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:58:26 GMT etag: @@ -589,6 +694,11 @@ interactions: etag: - '"1D59A11B70976F0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:31:21 GMT + etag: + - '"1D5BF8263187AA0"' +>>>>>>> live test expires: - '-1' pragma: @@ -606,11 +716,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1192' ======= - '1185' >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -631,18 +745,23 @@ interactions: - -g -n --prewarmed-instance-count User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -650,10 +769,16 @@ interactions: ======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3289' content-type: @@ -667,6 +792,13 @@ interactions: date: - Wed, 13 Nov 2019 11:01:38 GMT >>>>>>> Re-record test for app service +======= + - '3260' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:31:22 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -702,11 +834,15 @@ interactions: {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], <<<<<<< HEAD +<<<<<<< HEAD +======= +>>>>>>> live test "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": +<<<<<<< HEAD true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 4}}' ======= @@ -714,6 +850,10 @@ interactions: false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 4}}' >>>>>>> Re-record test for app service +======= + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' +>>>>>>> live test headers: Accept: - application/json @@ -724,25 +864,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1232' + - '1516' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --prewarmed-instance-count User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow @@ -750,10 +895,16 @@ interactions: ======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":4,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3275' content-type: @@ -764,13 +915,20 @@ interactions: - '"1D5BCBDB4B06E80"' ======= - '3077' +======= + - '3246' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:43 GMT + - Tue, 31 Dec 2019 02:31:27 GMT etag: +<<<<<<< HEAD - '"1D59A11B70976F0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8263187AA0"' +>>>>>>> live test expires: - '-1' pragma: @@ -794,6 +952,7 @@ interactions: status: code: 200 message: OK +<<<<<<< HEAD - request: body: null headers: @@ -861,4 +1020,6 @@ interactions: status: code: 200 message: OK +======= +>>>>>>> live test version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml index 536194d19ce..53e2a9fe0a2 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:19Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:14Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:44 GMT ======= - Wed, 13 Nov 2019 11:08:08 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:43 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,18 +80,23 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":27685,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27685","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -91,6 +104,10 @@ interactions: US","properties":{"serverFarmId":29492,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29492","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":29047,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29047","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -99,11 +116,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:05 GMT ======= - Wed, 13 Nov 2019 11:08:16 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -121,11 +142,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1186' ======= - '1183' >>>>>>> Re-record test for app service +======= + - '1188' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -146,18 +171,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":27685,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27685","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -165,6 +195,10 @@ interactions: US","properties":{"serverFarmId":29492,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29492","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":29047,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29047","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -173,11 +207,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:06 GMT ======= - Wed, 13 Nov 2019 11:08:18 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:54 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -214,22 +252,30 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:24.2802887Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:24.2802887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:24.2178242Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.5215121Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.5215121Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:48.4433934Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:37:23.0457620Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:37:23.0457620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:37:22.9676016Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -245,8 +291,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:08:19 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:55 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -281,11 +331,15 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -301,11 +355,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:08 GMT ======= - Wed, 13 Nov 2019 11:08:19 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:56 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -321,11 +379,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= - '1193' >>>>>>> Re-record test for app service +======= + - '1188' +>>>>>>> live test status: code: 200 message: OK @@ -355,27 +417,36 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:15.213","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2DD0CB8FB1FD65615809901040B32307B7E3910BD9ED8CC9E3C3735C3D71D0F5","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:24.243","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"01178ABA9290C36C445DCCEF74CFF1B81ACB9E1187C2183BCB12DD00699E2BE6","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:02.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E27061F90D4CF1159C43EA3B277D145AF2E86432F3F3E8BA752D26AF6E736B6D","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3535' content-type: @@ -386,13 +457,20 @@ interactions: - '"1D5BCBE1ABB7A80"' ======= - '3551' +======= + - '3559' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:40 GMT + - Tue, 31 Dec 2019 02:38:20 GMT etag: +<<<<<<< HEAD - '"1D59A12AB5CC450"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8352B1C260"' +>>>>>>> live test expires: - '-1' pragma: @@ -447,11 +525,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300fefa-0000-0700-0000-5e060ec30000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"1d2cfd84-cc7b-4c9a-9760-9c7f59aabfc4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"101bd586-af29-4dd2-b7e9-545c07428fae","ConnectionString":"InstrumentationKey=101bd586-af29-4dd2-b7e9-545c07428fae","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:01:39.7114528+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0059d1-0000-0700-0000-5dcbe43c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"1a98364b-46ad-4319-a5a4-d6f879ab0ec4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"3482293a-f71e-46da-836f-6cf0add8a388","ConnectionString":"InstrumentationKey=3482293a-f71e-46da-836f-6cf0add8a388","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:08:44.7009863+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000fc5f-0000-0700-0000-5e0ab4a10000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"0b8dce0a-c8d6-49c3-bc1b-61339d5b7272","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"24fe2190-4ab2-4e37-aa0c-686b237702f7","ConnectionString":"InstrumentationKey=24fe2190-4ab2-4e37-aa0c-686b237702f7","Name":"functionapp-slot000004","CreationDate":"2019-12-31T02:38:25.5018652+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -462,11 +544,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:40 GMT ======= - Wed, 13 Nov 2019 11:08:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:26 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -484,11 +570,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1194' ======= - '1183' >>>>>>> Re-record test for app service +======= + - '1180' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -511,15 +601,19 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -532,11 +626,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:41 GMT ======= - Wed, 13 Nov 2019 11:08:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:29 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -554,11 +652,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11995' ======= - '11996' >>>>>>> Re-record test for app service +======= + - '11992' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -568,11 +670,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "101bd586-af29-4dd2-b7e9-545c07428fae"}}''' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "3482293a-f71e-46da-836f-6cf0add8a388"}}''' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "24fe2190-4ab2-4e37-aa0c-686b237702f7"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -590,23 +696,31 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -615,6 +729,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:43 GMT etag: @@ -624,6 +739,11 @@ interactions: etag: - '"1D59A12BA61FB50"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:30 GMT + etag: + - '"1D5BF83631047D0"' +>>>>>>> live test expires: - '-1' pragma: @@ -641,11 +761,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1189' ======= - '1174' >>>>>>> Re-record test for app service +======= + - '1179' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -666,27 +790,36 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:42.997","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2DD0CB8FB1FD65615809901040B32307B7E3910BD9ED8CC9E3C3735C3D71D0F5","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:50.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"01178ABA9290C36C445DCCEF74CFF1B81ACB9E1187C2183BCB12DD00699E2BE6","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:30.093","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E27061F90D4CF1159C43EA3B277D145AF2E86432F3F3E8BA752D26AF6E736B6D","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3533' content-type: @@ -697,13 +830,20 @@ interactions: - '"1D5BCBE2B160850"' ======= - '3549' +======= + - '3559' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:51 GMT + - Tue, 31 Dec 2019 02:38:31 GMT etag: +<<<<<<< HEAD - '"1D59A12BA61FB50"' >>>>>>> Re-record test for app service +======= + - '"1D5BF83631047D0"' +>>>>>>> live test expires: - '-1' pragma: @@ -746,27 +886,36 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:50.517","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9288","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7D1F603240936AB54F65F112639041BD22089455BCB1E254A186DD0F0933B20B","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:55.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c8e2","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"733D9329B61051A165A5D72D32A4C7DD13576A6DCFA34B16C8A2CC7C2CC15ED1","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:35.483","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__00df","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2777F536F43043CE34839BBC9B3A2B6E46E9ED81A595FAD5C6549EB2A15F2C14","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3779' content-type: @@ -777,13 +926,20 @@ interactions: - '"1D5BCBE2B160850"' ======= - '3794' +======= + - '3805' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:12 GMT + - Tue, 31 Dec 2019 02:38:53 GMT etag: +<<<<<<< HEAD - '"1D59A12BA61FB50"' >>>>>>> Re-record test for app service +======= + - '"1D5BF83631047D0"' +>>>>>>> live test expires: - '-1' pragma: @@ -801,7 +957,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -824,23 +980,31 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -849,11 +1013,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:08 GMT ======= - Wed, 13 Nov 2019 11:09:14 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:55 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -871,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -881,11 +1049,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "101bd586-af29-4dd2-b7e9-545c07428fae", ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "3482293a-f71e-46da-836f-6cf0add8a388", >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "24fe2190-4ab2-4e37-aa0c-686b237702f7", +>>>>>>> live test "FOO": "BAR"}}''' headers: Accept: @@ -904,23 +1076,31 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae","FOO":"BAR"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388","FOO":"BAR"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7","FOO":"BAR"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -929,6 +1109,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:09 GMT etag: @@ -938,6 +1119,11 @@ interactions: etag: - '"1D59A12C959EBE0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:56 GMT + etag: + - '"1D5BF8373452530"' +>>>>>>> live test expires: - '-1' pragma: @@ -955,7 +1141,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1193' +======= + - '1176' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -976,15 +1166,19 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -997,11 +1191,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:09 GMT ======= - Wed, 13 Nov 2019 11:09:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1042,15 +1240,19 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -1063,11 +1265,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:11 GMT ======= - Wed, 13 Nov 2019 11:09:16 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1085,7 +1291,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1191' +======= + - '1175' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1108,23 +1318,31 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae","FOO":"BAR"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388","FOO":"BAR"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7","FOO":"BAR"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1133,11 +1351,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:11 GMT ======= - Wed, 13 Nov 2019 11:09:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:00 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1176,15 +1398,19 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -1197,11 +1423,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:13 GMT ======= - Wed, 13 Nov 2019 11:09:18 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:01 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1240,15 +1470,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '' @@ -1258,6 +1492,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:20 GMT etag: @@ -1267,6 +1502,11 @@ interactions: etag: - '"1D59A12BA61FB50"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:12 GMT + etag: + - '"1D5BF83631047D0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1280,7 +1520,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14994' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml index fdd7eda4e34..6684c05c73a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:05Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:55 GMT ======= - Wed, 13 Nov 2019 11:08:08 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:34 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,18 +80,23 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":30701,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-091_30701","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -91,6 +104,10 @@ interactions: US","properties":{"serverFarmId":24659,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24659","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":25703,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25703","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -99,11 +116,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:04 GMT ======= - Wed, 13 Nov 2019 11:08:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -121,11 +142,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1185' ======= - '1182' >>>>>>> Re-record test for app service +======= + - '1183' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -146,18 +171,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":30701,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-091_30701","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -165,6 +195,10 @@ interactions: US","properties":{"serverFarmId":24659,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24659","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":25703,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25703","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -173,11 +207,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:05 GMT ======= - Wed, 13 Nov 2019 11:08:19 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:44 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -214,22 +252,30 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:32.8915294Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:32.8915294Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:32.8134329Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.8496639Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.8496639Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:48.8027664Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:12.4518852Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:12.4518852Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:12.3893479Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -245,8 +291,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:08:19 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:45 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -281,11 +331,15 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -301,11 +355,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:07 GMT ======= - Wed, 13 Nov 2019 11:08:20 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -321,11 +379,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1194' ======= - '1185' >>>>>>> Re-record test for app service +======= + - '1191' +>>>>>>> live test status: code: 200 message: OK @@ -355,27 +417,36 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:13.7233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F804F4910DE78FD31C10AE0EE88A8D172F6B5DD9D84A3057E895D47AF5B78A23","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:23.88","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"89C280AA0333DD4E9C395B6E3C27C9D09481BE4C550FADA0EDAF6385812722FD","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:49.92","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"383A35FB917401DB7E99AFFBF3F2A4DA346CC6A5DFE2A840E41793518CC199A0","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3625' content-type: @@ -386,13 +457,20 @@ interactions: - '"1D5BCBE615D24C0"' ======= - '3546' +======= + - '3548' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:39 GMT + - Tue, 31 Dec 2019 02:37:07 GMT etag: +<<<<<<< HEAD - '"1D59A12AAF15850"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8327B211A0"' +>>>>>>> live test expires: - '-1' pragma: @@ -410,7 +488,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '499' x-powered-by: - ASP.NET status: @@ -443,11 +521,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4000e04-0000-0700-0000-5e060f390000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"0dacc424-6d07-416c-a883-e69a7cbf3feb","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ff9ca649-91ec-4857-b3d1-ee7dd1560565","ConnectionString":"InstrumentationKey=ff9ca649-91ec-4857-b3d1-ee7dd1560565","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:03:37.0090435+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0051d1-0000-0700-0000-5dcbe43a0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"a213eb67-7dbd-45ca-bb2e-0433c9452fe5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"baeb9808-086e-4756-b671-71b66c3def1a","ConnectionString":"InstrumentationKey=baeb9808-086e-4756-b671-71b66c3def1a","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:08:42.8765239+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001a5c-0000-0700-0000-5e0ab4580000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"6106f2ab-8369-4e73-ab65-b1fb240dbf7c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c7595144-be1a-4475-b9be-041d9a3f326f","ConnectionString":"InstrumentationKey=c7595144-be1a-4475-b9be-041d9a3f326f","Name":"functionapp-slot000004","CreationDate":"2019-12-31T02:37:12.7750286+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -458,11 +540,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:39 GMT ======= - Wed, 13 Nov 2019 11:08:45 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -480,11 +566,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1188' ======= - '1175' >>>>>>> Re-record test for app service +======= + - '1181' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -507,15 +597,19 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -528,11 +622,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:39 GMT ======= - Wed, 13 Nov 2019 11:08:46 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:15 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -550,11 +648,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11993' ======= - '11996' >>>>>>> Re-record test for app service +======= + - '11995' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -564,11 +666,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ff9ca649-91ec-4857-b3d1-ee7dd1560565"}}''' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "baeb9808-086e-4756-b671-71b66c3def1a"}}''' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "c7595144-be1a-4475-b9be-041d9a3f326f"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -586,23 +692,31 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ff9ca649-91ec-4857-b3d1-ee7dd1560565"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"baeb9808-086e-4756-b671-71b66c3def1a"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"c7595144-be1a-4475-b9be-041d9a3f326f"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -611,6 +725,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:40 GMT etag: @@ -620,6 +735,11 @@ interactions: etag: - '"1D59A12B8C56250"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:16 GMT + etag: + - '"1D5BF8337A6D8C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -637,11 +757,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1183' ======= - '1181' >>>>>>> Re-record test for app service +======= + - '1175' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -662,27 +786,36 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:41.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F804F4910DE78FD31C10AE0EE88A8D172F6B5DD9D84A3057E895D47AF5B78A23","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:47.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"89C280AA0333DD4E9C395B6E3C27C9D09481BE4C550FADA0EDAF6385812722FD","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:17.26","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"383A35FB917401DB7E99AFFBF3F2A4DA346CC6A5DFE2A840E41793518CC199A0","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3623' content-type: @@ -693,13 +826,20 @@ interactions: - '"1D5BCBE7172FB6B"' ======= - '3545' +======= + - '3546' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:49 GMT + - Tue, 31 Dec 2019 02:37:17 GMT etag: +<<<<<<< HEAD - '"1D59A12B8C56250"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8337A6D8C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -742,27 +882,36 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:47.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c619","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86874C82C143F85CA4729AD5911A19F20F5264D1B5051E9486DE2A02D8D67E07","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:54.297","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9abb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F17F05499F62575B06D6980316D355137D14F9098BA461802067EA49DDA86A9B","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:22.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__0240","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"50A29C79ECE058FCC09AFEA27ABAF1BE1A9A24DC86DB6A02AF7CD0ACC5C0B100","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3864' content-type: @@ -773,13 +922,20 @@ interactions: - '"1D5BCBE7172FB6B"' ======= - '3791' +======= + - '3792' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:10 GMT + - Tue, 31 Dec 2019 02:37:40 GMT etag: +<<<<<<< HEAD - '"1D59A12B8C56250"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8337A6D8C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -797,7 +953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -818,27 +974,36 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:48.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c619","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86874C82C143F85CA4729AD5911A19F20F5264D1B5051E9486DE2A02D8D67E07","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ======= US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:55.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9abb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F17F05499F62575B06D6980316D355137D14F9098BA461802067EA49DDA86A9B","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:23.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__0240","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"50A29C79ECE058FCC09AFEA27ABAF1BE1A9A24DC86DB6A02AF7CD0ACC5C0B100","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3914' content-type: @@ -849,13 +1014,20 @@ interactions: - '"1D5BCBE75C12CE0"' ======= - '3841' +======= + - '3842' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:11 GMT + - Tue, 31 Dec 2019 02:37:42 GMT etag: +<<<<<<< HEAD - '"1D59A12BD34A350"' >>>>>>> Re-record test for app service +======= + - '"1D5BF833B745B80"' +>>>>>>> live test expires: - '-1' pragma: @@ -894,15 +1066,19 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2019-08-01 response: body: string: '' @@ -912,6 +1088,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:12 GMT etag: @@ -921,6 +1098,11 @@ interactions: etag: - '"1D59A12BD34A350"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:48 GMT + etag: + - '"1D5BF833B745B80"' +>>>>>>> live test expires: - '-1' pragma: @@ -934,11 +1116,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14995' ======= - '14996' >>>>>>> Re-record test for app service +======= + - '14992' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -959,15 +1145,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -979,11 +1169,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:14 GMT ======= - Wed, 13 Nov 2019 11:09:16 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1022,15 +1216,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '' @@ -1040,6 +1238,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:22 GMT etag: @@ -1049,6 +1248,11 @@ interactions: etag: - '"1D59A12B8C56250"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:56 GMT + etag: + - '"1D5BF8337A6D8C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1062,11 +1266,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14994' ======= - '14988' >>>>>>> Re-record test for app service +======= + - '14995' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml index d7c34746a0c..5c22aca76c0 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml @@ -21,11 +21,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:04:28Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:01Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +38,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:56 GMT ======= - Wed, 13 Nov 2019 11:09:19 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -72,18 +80,23 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":42715,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42715","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -91,6 +104,10 @@ interactions: US","properties":{"serverFarmId":33288,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33288","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":29048,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29048","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -99,11 +116,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:05:04 GMT ======= - Wed, 13 Nov 2019 11:09:27 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -121,11 +142,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1184' ======= - '1181' >>>>>>> Re-record test for app service +======= + - '1184' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -146,18 +171,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":42715,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42715","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -165,6 +195,10 @@ interactions: US","properties":{"serverFarmId":33288,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33288","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":29048,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29048","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -173,11 +207,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:05:06 GMT ======= - Wed, 13 Nov 2019 11:09:27 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -214,22 +252,30 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:04:36.0366625Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:04:36.0366625Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:04:35.9584971Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:08:59.8845842Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:08:59.8845842Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:08:59.8220537Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:38:07.1010901Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:38:07.1010901Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:38:07.0386464Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -245,8 +291,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:09:28 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:38 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -281,11 +331,15 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -301,11 +355,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:05:08 GMT ======= - Wed, 13 Nov 2019 11:09:28 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -321,11 +379,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1191' ======= - '1183' >>>>>>> Re-record test for app service +======= + - '1188' +>>>>>>> live test status: code: 200 message: OK @@ -355,27 +417,36 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:14.893","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:32.273","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:42.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F668039C09E6656D3B9B02CD4B6DCA74BEDC4872B377D1AE6A4C1623C98F37DB","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3563' content-type: @@ -386,13 +457,20 @@ interactions: - '"1D5BCBEA9AF1710"' ======= - '3543' +======= + - '3560' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:48 GMT + - Tue, 31 Dec 2019 02:39:00 GMT etag: +<<<<<<< HEAD - '"1D59A12D3B4D4B0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF836A907250"' +>>>>>>> live test expires: - '-1' pragma: @@ -410,7 +488,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '498' +======= + - '497' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -443,11 +525,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b400750a-0000-0700-0000-5e060fb20000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"8c2c319d-09fd-424a-bd2a-376171b2fde8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f1d83ede-6062-4133-af7c-f6fef0f6de76","ConnectionString":"InstrumentationKey=f1d83ede-6062-4133-af7c-f6fef0f6de76","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:05:38.1685104+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0085d4-0000-0700-0000-5dcbe47f0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"fd8a8ad3-84f3-417e-addb-ccbbf8e7e795","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"366eaca0-a43a-47c9-9a1d-0951401254f0","ConnectionString":"InstrumentationKey=366eaca0-a43a-47c9-9a1d-0951401254f0","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:09:51.0301605+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000bc61-0000-0700-0000-5e0ab4c70000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"30821300-8d8e-4084-8490-1e5c7f572120","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","ConnectionString":"InstrumentationKey=88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","Name":"functionapp-slot000004","CreationDate":"2019-12-31T02:39:03.9709877+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -458,11 +544,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:05:40 GMT ======= - Wed, 13 Nov 2019 11:09:52 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:05 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -480,11 +570,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1184' ======= - '1176' >>>>>>> Re-record test for app service +======= + - '1168' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -507,15 +601,19 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -528,11 +626,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:05:41 GMT ======= - Wed, 13 Nov 2019 11:09:53 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -550,11 +652,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11996' ======= - '11992' >>>>>>> Re-record test for app service +======= + - '11991' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -564,11 +670,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f1d83ede-6062-4133-af7c-f6fef0f6de76"}}''' ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "366eaca0-a43a-47c9-9a1d-0951401254f0"}}''' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "88bacdc3-787a-4d69-bc9b-ba2fb41feb6f"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -586,23 +696,31 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -611,6 +729,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:05:43 GMT etag: @@ -620,6 +739,11 @@ interactions: etag: - '"1D59A12E10297B0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:09 GMT + etag: + - '"1D5BF837A849D30"' +>>>>>>> live test expires: - '-1' pragma: @@ -637,7 +761,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1184' x-powered-by: - ASP.NET status: @@ -658,27 +782,36 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:43.187","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:55.243","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:09.443","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F668039C09E6656D3B9B02CD4B6DCA74BEDC4872B377D1AE6A4C1623C98F37DB","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3561' content-type: @@ -689,13 +822,20 @@ interactions: - '"1D5BCBEBA401E30"' ======= - '3541' +======= + - '3559' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:55 GMT + - Tue, 31 Dec 2019 02:39:11 GMT etag: +<<<<<<< HEAD - '"1D59A12E10297B0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF837A849D30"' +>>>>>>> live test expires: - '-1' pragma: @@ -738,27 +878,36 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:51.917","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__ce6a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ADC59A6832CF094A276B4C7793233749B2935987B356A71111F461A092167378","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:00.717","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c588","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D33B2809E779679458C723599A13E91FFFEB18C31088C576F94A05D18CE57F6F","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:18.133","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__27f1","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6647D75E02F85DD66D4651B96500AAF52920BF9D22E2F08B48E09755C6CED5FD","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3807' content-type: @@ -769,13 +918,20 @@ interactions: - '"1D5BCBEBA401E30"' ======= - '3787' +======= + - '3805' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:16 GMT + - Tue, 31 Dec 2019 02:39:35 GMT etag: +<<<<<<< HEAD - '"1D59A12E10297B0"' >>>>>>> Re-record test for app service +======= + - '"1D5BF837A849D30"' +>>>>>>> live test expires: - '-1' pragma: @@ -816,23 +972,31 @@ interactions: - -g -n --slot --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -841,11 +1005,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:06:11 GMT ======= - Wed, 13 Nov 2019 11:10:18 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -863,7 +1031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -873,11 +1041,15 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f1d83ede-6062-4133-af7c-f6fef0f6de76", ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "366eaca0-a43a-47c9-9a1d-0951401254f0", >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "88bacdc3-787a-4d69-bc9b-ba2fb41feb6f", +>>>>>>> live test "FOO": "BAR"}}''' headers: Accept: @@ -896,23 +1068,31 @@ interactions: - -g -n --slot --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76","FOO":"BAR"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0","FOO":"BAR"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","FOO":"BAR"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -921,6 +1101,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:06:12 GMT etag: @@ -930,6 +1111,11 @@ interactions: etag: - '"1D59A12EFF50A00"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:39 GMT + etag: + - '"1D5BF838C4B6530"' +>>>>>>> live test expires: - '-1' pragma: @@ -947,11 +1133,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1190' ======= - '1180' >>>>>>> Re-record test for app service +======= + - '1169' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -976,15 +1166,19 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/slotsswap?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/slotsswap?api-version=2019-08-01 response: body: string: '' @@ -994,6 +1188,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:06:15 GMT etag: @@ -1004,13 +1199,20 @@ interactions: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 ======= - Wed, 13 Nov 2019 11:10:23 GMT +======= + - Tue, 31 Dec 2019 02:39:42 GMT +>>>>>>> live test etag: - - '"1D59A12F1D7ACB0"' + - '"1D5BF838DE14770"' expires: - '-1' location: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test pragma: - no-cache server: @@ -1022,7 +1224,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1195' +======= + - '1186' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1043,9 +1249,15 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test response: body: string: '' @@ -1055,11 +1267,19 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:06:32 GMT expires: - '-1' location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 +======= + - Tue, 31 Dec 2019 02:39:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test pragma: - no-cache server: @@ -1090,6 +1310,7 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 @@ -1146,6 +1367,11 @@ interactions: method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test response: body: string: '' @@ -1155,6 +1381,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:07:05 GMT expires: @@ -1168,6 +1395,13 @@ interactions: location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:40:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test pragma: - no-cache server: @@ -1198,6 +1432,7 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET @@ -1207,6 +1442,11 @@ interactions: method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test response: body: string: '' @@ -1216,6 +1456,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:07:21 GMT expires: @@ -1229,6 +1470,13 @@ interactions: location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:40:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test pragma: - no-cache server: @@ -1259,6 +1507,7 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET @@ -1268,6 +1517,11 @@ interactions: method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test response: body: string: '' @@ -1277,6 +1531,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:07:38 GMT expires: @@ -1290,6 +1545,13 @@ interactions: location: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:40:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 +>>>>>>> live test pragma: - no-cache server: @@ -1320,6 +1582,7 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET @@ -1330,17 +1593,25 @@ interactions: US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:07:41.523","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-27T14:07:41.561Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West +<<<<<<< HEAD US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:25.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:11:25.936Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:40:49.497","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F668039C09E6656D3B9B02CD4B6DCA74BEDC4872B377D1AE6A4C1623C98F37DB","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:40:49.549Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3917' content-type: @@ -1351,13 +1622,20 @@ interactions: - '"1D5BCBF00C8C230"' ======= - '3896' +======= + - '3915' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:11:27 GMT + - Tue, 31 Dec 2019 02:41:03 GMT etag: +<<<<<<< HEAD - '"1D59A13170D4760"' >>>>>>> Re-record test for app service +======= + - '"1D5BF83B627A490"' +>>>>>>> live test expires: - '-1' pragma: @@ -1396,23 +1674,31 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76","FOO":"BAR"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0","FOO":"BAR"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","FOO":"BAR"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1421,11 +1707,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:07:58 GMT ======= - Wed, 13 Nov 2019 11:11:29 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:41:04 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1443,11 +1733,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11998' ======= - '11989' >>>>>>> Re-record test for app service +======= + - '11993' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1468,15 +1762,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionapp-slot000004","type":"Microsoft.Web/sites","location":"West @@ -1489,11 +1787,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:07:59 GMT ======= - Wed, 13 Nov 2019 11:11:29 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:41:05 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1532,15 +1834,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004?api-version=2019-08-01 response: body: string: '' @@ -1550,6 +1856,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:08:06 GMT etag: @@ -1559,6 +1866,11 @@ interactions: etag: - '"1D59A12F212B9E0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:41:18 GMT + etag: + - '"1D5BF838E192050"' +>>>>>>> live test expires: - '-1' pragma: @@ -1572,11 +1884,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14999' ======= - '14995' >>>>>>> Re-record test for app service +======= + - '14992' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml index aeaf63e1c1e..330b9359ad8 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:06:10 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:35:48 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,6 +174,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -169,14 +186,21 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:56.4243289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:56.4243289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:56.3461863Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:47.6745244Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:47.6745244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:47.6120088Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:26.6547439Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:26.6547439Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:26.6078708Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -192,8 +216,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:06:12 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:48 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -228,11 +256,15 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -248,11 +280,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:17 GMT ======= - Wed, 13 Nov 2019 11:06:12 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:49 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -268,11 +304,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1191' +>>>>>>> live test status: code: 200 message: OK @@ -304,6 +344,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -315,18 +356,26 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:28.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B46FAF22F57BC30E39DC59729716577489465A9C7F5B0B2338144BE3EE594E47","kind":"functionapp","inboundIpAddress":"104.42.53.248","possibleInboundIpAddresses":"104.42.53.248","outboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90","possibleOutboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:19.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DF3121BB1DB92B04B03853EC84F717DF1390DBB8BA3A921F6B715552BE373291","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:56.957","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F22487794654976C428D9EE9E5BE93E99A22CFFB88B392D24A10EEDD0314D961","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3800' content-type: @@ -337,13 +386,20 @@ interactions: - '"1D5BCBDDB2050EB"' ======= - '3852' +======= + - '3737' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:54 GMT + - Tue, 31 Dec 2019 02:36:31 GMT etag: +<<<<<<< HEAD - '"1D59A1261005C00"' >>>>>>> Re-record test for app service +======= + - '"1D5BF83081F7D00"' +>>>>>>> live test expires: - '-1' pragma: @@ -361,11 +417,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '498' ======= - '496' >>>>>>> Re-record test for app service +======= + - '497' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -391,22 +451,30 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300bef3-0000-0700-0000-5e060e670000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"5cbc1a4a-9bb1-4158-be91-d360a5c572e9","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"85a4195b-b67a-409f-b3f2-bb2702f6abf1","ConnectionString":"InstrumentationKey=85a4195b-b67a-409f-b3f2-bb2702f6abf1","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-27T14:00:07.1319328+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00cdcc-0000-0700-0000-5dcbe3d30000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"ee01c40d-9438-40d1-ac7a-29f924f8d490","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"399895af-2e86-44f5-9291-13895c0f8534","ConnectionString":"InstrumentationKey=399895af-2e86-44f5-9291-13895c0f8534","Name":"functionappwindowsruntime000003","CreationDate":"2019-11-13T11:06:59.2188761+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000205a-0000-0700-0000-5e0ab4330000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"9606a8d5-8c99-4b10-a9d4-24a15819f565","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0dd26650-6579-4dbb-baf9-f39c41834724","ConnectionString":"InstrumentationKey=0dd26650-6579-4dbb-baf9-f39c41834724","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-31T02:36:35.5160791+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -417,11 +485,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:08 GMT ======= - Wed, 13 Nov 2019 11:07:25 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -439,11 +511,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1188' ======= - '1176' >>>>>>> Re-record test for app service +======= + - '1172' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -466,6 +542,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -479,6 +556,13 @@ interactions: method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -491,11 +575,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:09 GMT ======= - Wed, 13 Nov 2019 11:07:25 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:37 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -513,11 +601,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11996' ======= - '11997' >>>>>>> Re-record test for app service +======= + - '11996' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -530,11 +622,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowsruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}''' ======= "399895af-2e86-44f5-9291-13895c0f8534"}}''' >>>>>>> Re-record test for app service +======= + "0dd26650-6579-4dbb-baf9-f39c41834724"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -552,6 +648,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -564,15 +661,22 @@ interactions: US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"399895af-2e86-44f5-9291-13895c0f8534"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0dd26650-6579-4dbb-baf9-f39c41834724"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -581,6 +685,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:12 GMT etag: @@ -590,6 +695,11 @@ interactions: etag: - '"1D59A12897DA7A0"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:39 GMT + etag: + - '"1D5BF8320D022F0"' +>>>>>>> live test expires: - '-1' pragma: @@ -607,11 +717,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1191' ======= - '1188' >>>>>>> Re-record test for app service +======= + - '1186' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -634,23 +748,31 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"399895af-2e86-44f5-9291-13895c0f8534"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0dd26650-6579-4dbb-baf9-f39c41834724"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -659,11 +781,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:14 GMT ======= - Wed, 13 Nov 2019 11:07:30 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -681,11 +807,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11996' ======= - '11991' >>>>>>> Re-record test for app service +======= + - '11993' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -706,15 +836,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","location":"West @@ -727,11 +861,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:15 GMT ======= - Wed, 13 Nov 2019 11:07:32 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:43 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml index d3e78c2f774..d9bb2a8a0ac 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:08:14 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:35:11 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,22 +174,30 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:52.5180554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:52.5180554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:52.4555651Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:53.3340360Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:53.3340360Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:53.2559473Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:50.5395795Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:50.5395795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:50.4926957Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -182,11 +206,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:13 GMT ======= - Wed, 13 Nov 2019 11:08:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -221,11 +249,15 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -241,11 +273,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:14 GMT ======= - Wed, 13 Nov 2019 11:08:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -261,11 +297,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1188' >>>>>>> Re-record test for app service +======= + - '1193' +>>>>>>> live test status: code: 200 message: OK @@ -297,26 +337,35 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:23.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BE829D5350B4885923673ED0C07A6B93AB4A2B10A8F0460738D674A8D09CA84","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:25.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80F4AD36435109D0053CDB9BEB126291A608F7288F946EF3E7094A5294A263DA","kind":"functionapp","inboundIpAddress":"104.42.152.64","possibleInboundIpAddresses":"104.42.152.64","outboundIpAddresses":"104.42.152.64,40.118.228.30,40.118.235.170,40.118.239.187,40.118.232.194","possibleOutboundIpAddresses":"104.42.152.64,40.118.228.30,40.118.235.170,40.118.239.187,40.118.232.194,40.118.232.202,40.118.239.1,40.112.131.175","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:24.42","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9593B3453998AAE7800FBAA59301B02221872B23E873A20B88AC5DBD65FF281B","kind":"functionapp","inboundIpAddress":"40.112.243.8","possibleInboundIpAddresses":"40.112.243.8","outboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145","possibleOutboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3801' content-type: @@ -327,13 +376,20 @@ interactions: - '"1D5BCBDD7FBAB55"' ======= - '3807' +======= + - '3820' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:59 GMT + - Tue, 31 Dec 2019 02:36:00 GMT etag: +<<<<<<< HEAD - '"1D59A12ABC2F32B"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82F52CB820"' +>>>>>>> live test expires: - '-1' pragma: @@ -351,7 +407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '496' x-powered-by: - ASP.NET status: @@ -377,22 +433,30 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300b6f3-0000-0700-0000-5e060e660000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"4de72ad9-28ce-43c5-8757-a520e1c8d555","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"71d09d14-6cde-4aab-9e5c-a897b790be88","ConnectionString":"InstrumentationKey=71d09d14-6cde-4aab-9e5c-a897b790be88","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-27T14:00:06.7790797+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0067d2-0000-0700-0000-5dcbe44f0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"3514b387-6f5f-4322-9b63-9213968e8102","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c97231b0-fe86-4743-96ce-9ffecd462cdd","ConnectionString":"InstrumentationKey=c97231b0-fe86-4743-96ce-9ffecd462cdd","Name":"functionappwindowsruntime000003","CreationDate":"2019-11-13T11:09:03.6748503+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000c358-0000-0700-0000-5e0ab4150000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"bb562503-3fb6-45a1-9ee5-4116906e81d7","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"63879529-288d-4182-ae02-944010e07c87","ConnectionString":"InstrumentationKey=63879529-288d-4182-ae02-944010e07c87","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-31T02:36:05.6347411+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -403,11 +467,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:09 GMT ======= - Wed, 13 Nov 2019 11:09:05 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:06 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -425,11 +493,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1180' >>>>>>> Re-record test for app service +======= + - '1175' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -452,15 +524,19 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -473,11 +549,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:09 GMT ======= - Wed, 13 Nov 2019 11:09:06 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -512,11 +592,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~8", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowsruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "71d09d14-6cde-4aab-9e5c-a897b790be88"}}''' ======= "c97231b0-fe86-4743-96ce-9ffecd462cdd"}}''' >>>>>>> Re-record test for app service +======= + "63879529-288d-4182-ae02-944010e07c87"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -534,23 +618,31 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"71d09d14-6cde-4aab-9e5c-a897b790be88"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c97231b0-fe86-4743-96ce-9ffecd462cdd"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"63879529-288d-4182-ae02-944010e07c87"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -559,6 +651,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:11 GMT etag: @@ -568,6 +661,11 @@ interactions: etag: - '"1D59A12C4B54300"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:11 GMT + etag: + - '"1D5BF830F5034F5"' +>>>>>>> live test expires: - '-1' pragma: @@ -585,11 +683,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1188' ======= - '1179' >>>>>>> Re-record test for app service +======= + - '1178' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -612,23 +714,31 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"71d09d14-6cde-4aab-9e5c-a897b790be88"}}' ======= US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c97231b0-fe86-4743-96ce-9ffecd462cdd"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"63879529-288d-4182-ae02-944010e07c87"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -637,11 +747,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:13 GMT ======= - Wed, 13 Nov 2019 11:09:10 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -659,11 +773,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11997' ======= - '11993' >>>>>>> Re-record test for app service +======= + - '11991' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -684,15 +802,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","location":"West @@ -705,11 +827,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:14 GMT ======= - Wed, 13 Nov 2019 11:09:10 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -748,15 +874,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2019-08-01 response: body: string: '' @@ -766,6 +896,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:20 GMT etag: @@ -775,6 +906,11 @@ interactions: etag: - '"1D59A12C4B54300"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:20 GMT + etag: + - '"1D5BF830F5034F5"' +>>>>>>> live test expires: - '-1' pragma: @@ -788,11 +924,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14997' ======= - '14993' >>>>>>> Re-record test for app service +======= + - '14997' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version_invalid.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version_invalid.yaml index 00b33d35718..b79eb479133 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version_invalid.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version_invalid.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.2 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.75 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -33,13 +33,13 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East - US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan + US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan West","description":null,"sortOrder":7,"displayName":"Japan West","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan East","name":"Japan East","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan - East","description":null,"sortOrder":8,"displayName":"Japan East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + East","description":null,"sortOrder":8,"displayName":"Japan East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US 2","name":"East US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"East US 2","description":"","sortOrder":9,"displayName":"East US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North Central US","name":"North Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"North @@ -48,7 +48,7 @@ interactions: Central US","name":"South Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"South Central US","description":"","sortOrder":11,"displayName":"South Central US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil South","name":"Brazil South","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil - South","description":null,"sortOrder":12,"displayName":"Brazil South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia + South","description":null,"sortOrder":12,"displayName":"Brazil South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia East","name":"Australia East","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia East","description":"","sortOrder":13,"displayName":"Australia East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia Southeast","name":"Australia Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia @@ -70,11 +70,11 @@ interactions: Central US","description":null,"sortOrder":2147483647,"displayName":"West Central US","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US 2","name":"West US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"West - US 2","description":"","sortOrder":2147483647,"displayName":"West US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK + US 2","description":null,"sortOrder":2147483647,"displayName":"West US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK West","name":"UK West","type":"Microsoft.Web/geoRegions","properties":{"name":"UK West","description":null,"sortOrder":2147483647,"displayName":"UK West","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK South","name":"UK South","type":"Microsoft.Web/geoRegions","properties":{"name":"UK - South","description":"","sortOrder":2147483647,"displayName":"UK South","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + South","description":null,"sortOrder":2147483647,"displayName":"UK South","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US 2 EUAP","name":"East US 2 EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"East US 2 EUAP","description":null,"sortOrder":2147483647,"displayName":"East US 2 EUAP","orgDomain":"EUAP;XENON;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -87,22 +87,25 @@ interactions: Central","description":null,"sortOrder":2147483647,"displayName":"France Central","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia Central 2","name":"Australia Central 2","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia Central 2","description":null,"sortOrder":2147483647,"displayName":"Australia - Central 2","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia + Central 2","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia Central","name":"Australia Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia Central","description":null,"sortOrder":2147483647,"displayName":"Australia - Central","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Central","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South Africa North","name":"South Africa North","type":"Microsoft.Web/geoRegions","properties":{"name":"South Africa North","description":null,"sortOrder":2147483647,"displayName":"South - Africa North","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES"}}],"nextLink":null,"id":null}' + Africa North","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland + North","name":"Switzerland North","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland + North","description":null,"sortOrder":2147483647,"displayName":"Switzerland + North","orgDomain":"PUBLIC;DSERIES;FUNCTIONS;DYNAMIC;DSERIES"}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '12102' + - '12604' content-type: - application/json date: - - Fri, 18 Oct 2019 18:17:25 GMT + - Tue, 31 Dec 2019 02:35:43 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml index 3ba617a9be4..6c7c1839750 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:05:20 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:35:02 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,6 +174,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -169,14 +186,21 @@ interactions: string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:40.0191246Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:40.0191246Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:39.9409978Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 response: body: +<<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:00.6511904Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:00.6511904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:00.5887008Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:41.3831558Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:41.3831558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:41.3363054Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -192,8 +216,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:05:21 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:04 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -228,11 +256,15 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -248,11 +280,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:02 GMT ======= - Wed, 13 Nov 2019 11:05:21 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:04 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -268,11 +304,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1194' ======= - '1191' >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test status: code: 200 message: OK @@ -303,6 +343,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -314,18 +355,26 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:12.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AC4E499090EECF8D5DAE5AD4BB0A43E3AF39CF40A9AEF11BF29583E4CED65C62","kind":"functionapp","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:27.747","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7C8420B0028AB5A1317D3DE03F6511893744346704E7554845F6AC727440E535","kind":"functionapp","inboundIpAddress":"104.40.63.98","possibleInboundIpAddresses":"104.40.63.98","outboundIpAddresses":"104.40.57.101,104.40.82.23,104.40.81.188,104.40.85.254","possibleOutboundIpAddresses":"104.40.57.101,104.40.82.23,104.40.81.188,104.40.85.254","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:11.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"91D41F875AC8EBCA64CE1143676FB56DA64C138E71640F194510675C0779A831","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3743' content-type: @@ -336,13 +385,20 @@ interactions: - '"1D5BCBDF5983C55"' ======= - '3727' +======= + - '3724' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:02 GMT + - Tue, 31 Dec 2019 02:35:46 GMT etag: +<<<<<<< HEAD - '"1D59A1241E54150"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82ECDA156B"' +>>>>>>> live test expires: - '-1' pragma: @@ -360,11 +416,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '498' ======= - '497' >>>>>>> Re-record test for app service +======= + - '499' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -390,28 +450,37 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300a3f8-0000-0700-0000-5e060eac0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"25d797be-8a02-48ca-bf62-9bdb46175498","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d37c4f5d-e47c-42dc-af35-8e364703c763","ConnectionString":"InstrumentationKey=d37c4f5d-e47c-42dc-af35-8e364703c763","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-12-27T14:01:16.7224741+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0075ca-0000-0700-0000-5dcbe3a00000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"e464f7d1-e03a-4503-882b-270b061aca1b","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8a4394a4-c3a5-442c-bd8a-7b56bc8f650d","ConnectionString":"InstrumentationKey=8a4394a4-c3a5-442c-bd8a-7b56bc8f650d","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-11-13T11:06:08.538862+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0002059-0000-0700-0000-5e0ab41b0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"981f438d-6bfb-4796-afd7-277b5ccefe89","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"45308132-f81a-48c0-ba1a-08d9544c9af0","ConnectionString":"InstrumentationKey=45308132-f81a-48c0-ba1a-08d9544c9af0","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-12-31T02:36:11.4050002+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '956' content-type: @@ -425,6 +494,13 @@ interactions: date: - Wed, 13 Nov 2019 11:06:11 GMT >>>>>>> Re-record test for app service +======= + - '956' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:36:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -442,11 +518,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1190' ======= - '1187' >>>>>>> Re-record test for app service +======= + - '1176' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -469,6 +549,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -482,6 +563,13 @@ interactions: method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings/list?api-version=2018-02-01 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings/list?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -494,11 +582,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:41 GMT ======= - Wed, 13 Nov 2019 11:06:13 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:15 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -516,11 +608,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11997' ======= - '11998' >>>>>>> Re-record test for app service +======= + - '11997' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -533,11 +629,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowswithoutruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "d37c4f5d-e47c-42dc-af35-8e364703c763"}}''' ======= "8a4394a4-c3a5-442c-bd8a-7b56bc8f650d"}}''' >>>>>>> Re-record test for app service +======= + "45308132-f81a-48c0-ba1a-08d9544c9af0"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -555,6 +655,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: @@ -567,15 +668,22 @@ interactions: US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d37c4f5d-e47c-42dc-af35-8e364703c763"}}' ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8a4394a4-c3a5-442c-bd8a-7b56bc8f650d"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"45308132-f81a-48c0-ba1a-08d9544c9af0"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -584,6 +692,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:43 GMT etag: @@ -593,6 +702,11 @@ interactions: etag: - '"1D59A125DB8AB10"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:17 GMT + etag: + - '"1D5BF831399D28B"' +>>>>>>> live test expires: - '-1' pragma: @@ -610,11 +724,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1186' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1177' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -637,15 +755,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2019-08-01 response: body: string: '' @@ -655,6 +777,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:49 GMT etag: @@ -664,6 +787,11 @@ interactions: etag: - '"1D59A125DB8AB10"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:22 GMT + etag: + - '"1D5BF831399D28B"' +>>>>>>> live test expires: - '-1' pragma: @@ -677,11 +805,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14996' ======= - '14998' >>>>>>> Re-record test for app service +======= + - '14997' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml index 9753e3da4a1..bde7f9d6e89 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:06:05 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:35:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,22 +174,30 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:34.5687079Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:34.5687079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:34.5218148Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:44.6745134Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:44.6745134Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:44.6119990Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:09.2740371Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:09.2740371Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:09.2271427Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -189,8 +213,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:06:05 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -225,11 +253,15 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -245,11 +277,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:56 GMT ======= - Wed, 13 Nov 2019 11:06:06 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:32 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -265,11 +301,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1190' >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test status: code: 200 message: OK @@ -301,26 +341,35 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:17.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"31161615EE631F28ED8FEC49BF56BAB247AC57501091E9F64655937803DF8079","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:13.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"87E29F0ACF8FDF657C68A551AD807EDB9633C0E8D7B436B508DFF4774D563706","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:43.597","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCA0114099C9445D389060499460AA83ED82F724D92BA331B995DBBB0D9E3DF6","kind":"functionapp","inboundIpAddress":"40.78.25.157","possibleInboundIpAddresses":"40.78.25.157","outboundIpAddresses":"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141","possibleOutboundIpAddresses":"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-037","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3739' content-type: @@ -331,13 +380,20 @@ interactions: - '"1D5BCBE1C48AA30"' ======= - '3729' +======= + - '3721' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:47 GMT + - Tue, 31 Dec 2019 02:36:16 GMT etag: +<<<<<<< HEAD - '"1D59A125D429DB5"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8300532E50"' +>>>>>>> live test expires: - '-1' pragma: @@ -355,11 +411,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '497' ======= - '496' >>>>>>> Re-record test for app service +======= + - '498' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -382,15 +442,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -403,11 +467,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:55 GMT ======= - Wed, 13 Nov 2019 11:06:49 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:18 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -425,11 +493,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11995' ======= - '11998' >>>>>>> Re-record test for app service +======= + - '11994' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -450,15 +522,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","location":"West @@ -471,11 +547,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:56 GMT ======= - Wed, 13 Nov 2019 11:06:50 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:19 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -514,15 +594,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2019-08-01 response: body: string: '' @@ -532,6 +616,7 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:01 GMT etag: @@ -541,6 +626,11 @@ interactions: etag: - '"1D59A125D429DB5"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:25 GMT + etag: + - '"1D5BF8300532E50"' +>>>>>>> live test expires: - '-1' pragma: @@ -554,11 +644,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: +<<<<<<< HEAD <<<<<<< HEAD - '14998' ======= - '14995' >>>>>>> Re-record test for app service +======= + - '14994' +>>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml index 72e98bdd42d..d119ee12e4c 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:06:36 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:35:19 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,22 +174,30 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:12.2107211Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:12.2107211Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:12.1482214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:16.2756058Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:16.2756058Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:16.2130945Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:58.3520506Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:58.3520506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:58.2895487Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -189,8 +213,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:06:37 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:20 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -225,11 +253,15 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -245,11 +277,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:02:34 GMT ======= - Wed, 13 Nov 2019 11:06:37 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:21 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -265,11 +301,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1196' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1192' +>>>>>>> live test status: code: 200 message: OK @@ -300,26 +340,35 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:02:44.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E59A23A232C6FEB861D7F3E2F12FA890FF1230DDD57DD747AED42969686E6DF","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-111.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:45.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8E23F4A7F839A88ACE875CB6F66F6AC7B01BC6BE998EC757D1822F6909ADF3BE","kind":"functionapp","inboundIpAddress":"104.42.148.55","possibleInboundIpAddresses":"104.42.148.55","outboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103","possibleOutboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103,40.112.173.196,40.112.176.145,40.83.179.99","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-111","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:29.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8EC9965C3C375F8C1FE922D19125C5F709A652DB9D404934348589B656FDFA52","kind":"functionapp","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3852' content-type: @@ -330,13 +379,20 @@ interactions: - '"1D5BCBE4FCF6E20"' ======= - '3801' +======= + - '3736' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:20 GMT + - Tue, 31 Dec 2019 02:36:02 GMT etag: +<<<<<<< HEAD - '"1D59A1270429C00"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82F7B6BE60"' +>>>>>>> live test expires: - '-1' pragma: @@ -354,7 +410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '496' x-powered-by: - ASP.NET status: @@ -380,28 +436,37 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4005703-0000-0700-0000-5e060f2c0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"ac480024-2213-4ea5-8b8f-42634ba14ee7","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0e3ee542-d029-4b39-a68c-88a7cc617b36","ConnectionString":"InstrumentationKey=0e3ee542-d029-4b39-a68c-88a7cc617b36","Name":"functionappwithappinsights000003","CreationDate":"2019-12-27T14:03:24.4938661+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0003ce-0000-0700-0000-5dcbe3eb0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"61fd5ffd-3fe4-4719-90b0-6a254307e974","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b7fd7b31-2047-4da1-bd9a-883124c84fea","ConnectionString":"InstrumentationKey=b7fd7b31-2047-4da1-bd9a-883124c84fea","Name":"functionappwithappinsights000003","CreationDate":"2019-11-13T11:07:23.452952+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000dd58-0000-0700-0000-5e0ab4170000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"0472b0e0-f668-48bd-8c04-fcabc6cc1711","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0c3f12a1-1394-4c6a-99ba-f94914f7ba58","ConnectionString":"InstrumentationKey=0c3f12a1-1394-4c6a-99ba-f94914f7ba58","Name":"functionappwithappinsights000003","CreationDate":"2019-12-31T02:36:07.2719544+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '956' content-type: @@ -415,6 +480,13 @@ interactions: date: - Wed, 13 Nov 2019 11:07:28 GMT >>>>>>> Re-record test for app service +======= + - '956' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:36:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -432,7 +504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1175' x-powered-by: - ASP.NET status: @@ -455,15 +527,19 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -476,11 +552,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:27 GMT ======= - Wed, 13 Nov 2019 11:07:29 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -498,11 +578,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11995' ======= - '11997' >>>>>>> Re-record test for app service +======= + - '11996' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -515,11 +599,15 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwithappinsights000003", "APPINSIGHTS_INSTRUMENTATIONKEY": +<<<<<<< HEAD <<<<<<< HEAD "0e3ee542-d029-4b39-a68c-88a7cc617b36"}}''' ======= "b7fd7b31-2047-4da1-bd9a-883124c84fea"}}''' >>>>>>> Re-record test for app service +======= + "0c3f12a1-1394-4c6a-99ba-f94914f7ba58"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -537,23 +625,31 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0e3ee542-d029-4b39-a68c-88a7cc617b36"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b7fd7b31-2047-4da1-bd9a-883124c84fea"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0c3f12a1-1394-4c6a-99ba-f94914f7ba58"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -562,6 +658,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:30 GMT etag: @@ -571,6 +668,11 @@ interactions: etag: - '"1D59A128B6B05B5"' >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:11 GMT + etag: + - '"1D5BF830FDE1D15"' +>>>>>>> live test expires: - '-1' pragma: @@ -588,11 +690,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1187' ======= - '1185' >>>>>>> Re-record test for app service +======= + - '1174' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -615,23 +721,31 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0e3ee542-d029-4b39-a68c-88a7cc617b36"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b7fd7b31-2047-4da1-bd9a-883124c84fea"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0c3f12a1-1394-4c6a-99ba-f94914f7ba58"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -640,11 +754,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:31 GMT ======= - Wed, 13 Nov 2019 11:07:34 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -662,11 +780,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11994' ======= - '11997' >>>>>>> Re-record test for app service +======= + - '11996' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -687,15 +809,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","location":"West @@ -708,11 +834,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:03:33 GMT ======= - Wed, 13 Nov 2019 11:07:35 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:14 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml index 3f395b4f89b..2220779aa0a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml @@ -14,15 +14,19 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central @@ -37,11 +41,15 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West +<<<<<<< HEAD <<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ======= US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East >>>>>>> Re-record test for app service +======= + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East +>>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -109,6 +117,7 @@ interactions: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '12604' content-type: @@ -122,6 +131,13 @@ interactions: date: - Wed, 13 Nov 2019 11:06:51 GMT >>>>>>> Re-record test for app service +======= + - '12604' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:36:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -158,22 +174,30 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:47.6882816Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:47.6882816Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:03:47.6258050Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:32.0256761Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:32.0256761Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:31.9788001Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:51.0455750Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:51.0455750Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:50.9830984Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -189,8 +213,12 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:06:52 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -225,11 +253,15 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -245,11 +277,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:10 GMT ======= - Wed, 13 Nov 2019 11:06:53 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:36:14 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -265,11 +301,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1190' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1193' +>>>>>>> live test status: code: 200 message: OK @@ -300,26 +340,35 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:04:26.3866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"91C897AE5EF101FEC95BD9DA8580CD1591453F60E88A50A6B010BB2B28733F40","kind":"functionapp","inboundIpAddress":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-151.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:04.2033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C782659BB3DD08B92BDE84B49CD4B825A6BE78FE8902D08DC64100DC932059D3","kind":"functionapp","inboundIpAddress":"13.89.172.2","possibleInboundIpAddresses":"13.89.172.2","outboundIpAddresses":"13.89.172.2,23.99.133.160,23.101.117.42,23.101.112.78,23.99.229.34","possibleOutboundIpAddresses":"13.89.172.2,23.99.133.160,23.101.117.42,23.101.112.78,23.99.229.34,168.61.189.180,168.61.214.234,23.99.231.53","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-151","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:26.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7913F490540E1582360839DD19EBE3D8BAF770459732B54EA4FF52EF0B68F896","kind":"functionapp","inboundIpAddress":"13.89.172.0","possibleInboundIpAddresses":"13.89.172.0","outboundIpAddresses":"13.89.172.0,40.77.26.73,52.165.17.161,52.165.17.221,52.165.177.82","possibleOutboundIpAddresses":"13.89.172.0,40.77.26.73,52.165.17.161,52.165.17.221,52.165.177.82,40.77.27.24,40.77.26.223,52.173.39.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3777' content-type: @@ -330,13 +379,20 @@ interactions: - '"1D5BCBE8CDE066B"' ======= - '3808' +======= + - '3795' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:34 GMT + - Tue, 31 Dec 2019 02:37:00 GMT etag: +<<<<<<< HEAD - '"1D59A127B7A5040"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8319EE4E4B"' +>>>>>>> live test expires: - '-1' pragma: @@ -354,11 +410,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '497' ======= - '498' >>>>>>> Re-record test for app service +======= + - '497' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -381,15 +441,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central @@ -402,11 +466,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:57 GMT ======= - Wed, 13 Nov 2019 11:07:37 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:02 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -424,11 +492,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11998' ======= - '11990' >>>>>>> Re-record test for app service +======= + - '11995' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -449,15 +521,19 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","location":"Central @@ -470,11 +546,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:04:59 GMT ======= - Wed, 13 Nov 2019 11:07:38 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:03 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml index 3e26bdc841a..f7e163b6f63 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:27:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:55 GMT + - Tue, 31 Dec 2019 02:27:49 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:56 GMT + - Tue, 31 Dec 2019 02:27:52 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:27:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:57 GMT + - Tue, 31 Dec 2019 02:27:52 GMT expires: - '-1' pragma: @@ -171,16 +171,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5694,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5694","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6156,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6156","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:14 GMT + - Tue, 31 Dec 2019 02:28:10 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1194' x-powered-by: - ASP.NET status: @@ -228,16 +228,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5694,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5694","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6156,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6156","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:15 GMT + - Tue, 31 Dec 2019 02:28:11 GMT expires: - '-1' pragma: @@ -288,11 +288,11 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:16 GMT + - Tue, 31 Dec 2019 02:28:12 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -343,16 +343,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","name":"webapp-linux-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5694,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5694","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6156,"name":"webapp-linux-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6156","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:17 GMT + - Tue, 31 Dec 2019 02:28:13 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17428' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:18 GMT + - Tue, 31 Dec 2019 02:28:15 GMT expires: - '-1' pragma: @@ -453,7 +453,7 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "localMySqlEnabled": + "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: @@ -465,33 +465,33 @@ interactions: Connection: - keep-alive Content-Length: - - '495' + - '513' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:23.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:19.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8DCBD2EB3675371B5AD384D0555B97A80473AA17F74D95158477DADF5B5FB0C6","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3625' + - '3630' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:41 GMT + - Tue, 31 Dec 2019 02:28:38 GMT etag: - - '"1D59A11B056D5A0"' + - '"1D5BF81F7B5BC6B"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '498' x-powered-by: - ASP.NET status: @@ -534,21 +534,26 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2019-08-01 response: body: string: @@ -556,11 +561,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:01:42 GMT + - Tue, 31 Dec 2019 02:28:39 GMT expires: - '-1' pragma: @@ -574,7 +579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11996' x-powered-by: - ASP.NET status: @@ -595,24 +600,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2925' + - '3092' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:43 GMT + - Tue, 31 Dec 2019 02:28:41 GMT expires: - '-1' pragma: @@ -649,24 +656,24 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:24.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:20.4866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8DCBD2EB3675371B5AD384D0555B97A80473AA17F74D95158477DADF5B5FB0C6","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3663' + - '3668' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:15 GMT + - Tue, 31 Dec 2019 02:29:11 GMT expires: - '-1' pragma: @@ -703,26 +710,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:24.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:20.4866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8DCBD2EB3675371B5AD384D0555B97A80473AA17F74D95158477DADF5B5FB0C6","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3623' + - '3628' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:16 GMT + - Tue, 31 Dec 2019 02:29:13 GMT etag: - - '"1D59A11B056D5A0"' + - '"1D5BF81F7B5BC6B"' expires: - '-1' pragma: @@ -759,26 +766,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:24.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:20.4866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8DCBD2EB3675371B5AD384D0555B97A80473AA17F74D95158477DADF5B5FB0C6","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3623' + - '3628' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:17 GMT + - Tue, 31 Dec 2019 02:29:13 GMT etag: - - '"1D59A11B056D5A0"' + - '"1D5BF81F7B5BC6B"' expires: - '-1' pragma: @@ -819,21 +826,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishxml?api-version=2019-08-01 response: body: string: @@ -841,11 +853,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:02:19 GMT + - Tue, 31 Dec 2019 02:29:14 GMT expires: - '-1' pragma: @@ -859,7 +871,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -880,24 +892,26 @@ interactions: - -g -n --startup-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2925' + - '3092' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:20 GMT + - Tue, 31 Dec 2019 02:29:15 GMT expires: - '-1' pragma: @@ -927,12 +941,16 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-linux000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": false, "appCommandLine": "process.json", "managedPipelineMode": - "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "alwaysOn": true, "appCommandLine": "process.json", "managedPipelineMode": "Integrated", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -943,33 +961,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1089' + - '1371' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --startup-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2923' + - '3090' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:23 GMT + - Tue, 31 Dec 2019 02:29:18 GMT etag: - - '"1D59A11B056D5A0"' + - '"1D5BF81F7B5BC6B"' expires: - '-1' pragma: @@ -987,7 +1007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1192' x-powered-by: - ASP.NET status: @@ -1010,11 +1030,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1027,7 +1047,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:24 GMT + - Tue, 31 Dec 2019 02:29:20 GMT expires: - '-1' pragma: @@ -1045,7 +1065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11995' x-powered-by: - ASP.NET status: @@ -1070,11 +1090,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1087,9 +1107,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:24 GMT + - Tue, 31 Dec 2019 02:29:21 GMT etag: - - '"1D59A11D4DE700B"' + - '"1D5BF821C0563EB"' expires: - '-1' pragma: @@ -1107,7 +1127,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' x-powered-by: - ASP.NET status: @@ -1130,11 +1150,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1147,7 +1167,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:26 GMT + - Tue, 31 Dec 2019 02:29:21 GMT expires: - '-1' pragma: @@ -1165,7 +1185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11998' x-powered-by: - ASP.NET status: @@ -1186,11 +1206,11 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -1203,7 +1223,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:26 GMT + - Tue, 31 Dec 2019 02:29:23 GMT expires: - '-1' pragma: @@ -1242,15 +1262,15 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/publishingcredentials/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/publishingcredentials/$webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-linux000003","publishingPassword":"RJwd2Kt92efRjXCtmWZm6azxnurJ7npu58ejmofTxT9ejj5GfyP9mSA5lnsJ","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-linux000003:RJwd2Kt92efRjXCtmWZm6azxnurJ7npu58ejmofTxT9ejj5GfyP9mSA5lnsJ@webapp-linux000003.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-linux000003","publishingPassword":"wEhGLXTjDnRp9x6bvX89MbSGddoa4x1bSNFuj5Q86FkbrEwteHchiaosP33x","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-linux000003:wEhGLXTjDnRp9x6bvX89MbSGddoa4x1bSNFuj5Q86FkbrEwteHchiaosP33x@webapp-linux000003.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1259,7 +1279,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:28 GMT + - Tue, 31 Dec 2019 02:29:23 GMT expires: - '-1' pragma: @@ -1277,7 +1297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -1299,15 +1319,15 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:25.3766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5DCD1E67A811711DB99BC2FB87B10C15C2FD70776B9C4B705EAB32F03A1F2FF4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux000003","state":"Running","hostNames":["webapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux000003","repositorySiteName":"webapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000003.azurewebsites.net","webapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:21.4066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8DCBD2EB3675371B5AD384D0555B97A80473AA17F74D95158477DADF5B5FB0C6","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -1316,9 +1336,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:29 GMT + - Tue, 31 Dec 2019 02:29:25 GMT etag: - - '"1D59A11D4DE700B"' + - '"1D5BF821C0563EB"' expires: - '-1' pragma: @@ -1356,24 +1376,26 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|6.6","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2941' + - '3108' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:30 GMT + - Tue, 31 Dec 2019 02:29:25 GMT expires: - '-1' pragma: @@ -1413,11 +1435,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1430,7 +1452,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:31 GMT + - Tue, 31 Dec 2019 02:29:26 GMT expires: - '-1' pragma: @@ -1448,7 +1470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11997' x-powered-by: - ASP.NET status: @@ -1475,11 +1497,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1492,9 +1514,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:33 GMT + - Tue, 31 Dec 2019 02:29:27 GMT etag: - - '"1D59A11D976E3EB"' + - '"1D5BF821FF4FAA0"' expires: - '-1' pragma: @@ -1524,15 +1546,18 @@ interactions: "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "DOCKER|foo-image", "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": - "VS2017", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": + "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-linux000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "process.json", + true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "process.json", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": - "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": + "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, - "vnetName": "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": + "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], + "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -1543,7 +1568,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1133' + - '1415' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -1551,26 +1576,28 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2931' + - '3098' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:35 GMT + - Tue, 31 Dec 2019 02:29:28 GMT etag: - - '"1D59A11D976E3EB"' + - '"1D5BF821FF4FAA0"' expires: - '-1' pragma: @@ -1588,7 +1615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1180' x-powered-by: - ASP.NET status: @@ -1612,11 +1639,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1629,7 +1656,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:35 GMT + - Tue, 31 Dec 2019 02:29:29 GMT expires: - '-1' pragma: @@ -1647,7 +1674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11996' x-powered-by: - ASP.NET status: @@ -1676,11 +1703,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1693,9 +1720,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:37 GMT + - Tue, 31 Dec 2019 02:29:31 GMT etag: - - '"1D59A11DBEE1875"' + - '"1D5BF8222015F6B"' expires: - '-1' pragma: @@ -1713,7 +1740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1187' x-powered-by: - ASP.NET status: @@ -1737,11 +1764,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1754,7 +1781,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:38 GMT + - Tue, 31 Dec 2019 02:29:31 GMT expires: - '-1' pragma: @@ -1772,7 +1799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11995' x-powered-by: - ASP.NET status: @@ -1794,11 +1821,11 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -1811,7 +1838,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:38 GMT + - Tue, 31 Dec 2019 02:29:33 GMT expires: - '-1' pragma: @@ -1849,24 +1876,26 @@ interactions: --docker-registry-server-url --enable-app-service-storage User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2949' + - '3116' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:39 GMT + - Tue, 31 Dec 2019 02:29:34 GMT expires: - '-1' pragma: @@ -1905,11 +1934,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1922,7 +1951,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:40 GMT + - Tue, 31 Dec 2019 02:29:35 GMT expires: - '-1' pragma: @@ -1940,7 +1969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11997' x-powered-by: - ASP.NET status: @@ -1961,11 +1990,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -1978,7 +2007,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:41 GMT + - Tue, 31 Dec 2019 02:29:35 GMT expires: - '-1' pragma: @@ -2015,24 +2044,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2949' + - '3116' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:42 GMT + - Tue, 31 Dec 2019 02:29:36 GMT expires: - '-1' pragma: @@ -2069,24 +2100,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|foo-image","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2949' + - '3116' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:43 GMT + - Tue, 31 Dec 2019 02:29:37 GMT expires: - '-1' pragma: @@ -2125,11 +2158,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2142,7 +2175,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:44 GMT + - Tue, 31 Dec 2019 02:29:38 GMT expires: - '-1' pragma: @@ -2160,7 +2193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11995' x-powered-by: - ASP.NET status: @@ -2181,11 +2214,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -2198,7 +2231,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:45 GMT + - Tue, 31 Dec 2019 02:29:39 GMT expires: - '-1' pragma: @@ -2241,11 +2274,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2258,9 +2291,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:46 GMT + - Tue, 31 Dec 2019 02:29:40 GMT etag: - - '"1D59A11E11062CB"' + - '"1D5BF82272B4AE0"' expires: - '-1' pragma: @@ -2278,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1181' + - '1194' x-powered-by: - ASP.NET status: @@ -2289,16 +2322,19 @@ interactions: "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": " ", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", + false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-linux000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "process.json", + true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "process.json", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": - "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": + "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, - "vnetName": "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": + "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], + "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -2309,34 +2345,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1118' + - '1400' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003","name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" - ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2916' + - '3083' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:48 GMT + - Tue, 31 Dec 2019 02:29:41 GMT etag: - - '"1D59A11E11062CB"' + - '"1D5BF82272B4AE0"' expires: - '-1' pragma: @@ -2354,7 +2392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1186' x-powered-by: - ASP.NET status: @@ -2377,11 +2415,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2394,7 +2432,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:49 GMT + - Tue, 31 Dec 2019 02:29:42 GMT expires: - '-1' pragma: @@ -2412,7 +2450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -2433,11 +2471,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -2450,7 +2488,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:49 GMT + - Tue, 31 Dec 2019 02:29:43 GMT expires: - '-1' pragma: @@ -2491,11 +2529,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2508,9 +2546,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:50 GMT + - Tue, 31 Dec 2019 02:29:44 GMT etag: - - '"1D59A11E4413D60"' + - '"1D5BF8229A817B5"' expires: - '-1' pragma: @@ -2528,7 +2566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1178' x-powered-by: - ASP.NET status: @@ -2551,11 +2589,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -2568,7 +2606,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:52 GMT + - Tue, 31 Dec 2019 02:29:45 GMT expires: - '-1' pragma: @@ -2586,7 +2624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11997' x-powered-by: - ASP.NET status: @@ -2607,11 +2645,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux000003","type":"Microsoft.Web/sites","location":"Japan @@ -2624,7 +2662,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:53 GMT + - Tue, 31 Dec 2019 02:29:46 GMT expires: - '-1' pragma: @@ -2661,25 +2699,27 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux000003/config/web","name":"webapp-linux000003","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" - ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"process.json","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2934' + - '3101' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:53 GMT + - Tue, 31 Dec 2019 02:29:47 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml index bc4c80b863e..7255b1ae2de 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_create.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:19 GMT + - Tue, 31 Dec 2019 02:24:52 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:20 GMT + - Tue, 31 Dec 2019 02:24:52 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:20 GMT + - Tue, 31 Dec 2019 02:24:54 GMT expires: - '-1' pragma: @@ -171,16 +171,16 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":34928,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_34928","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":36469,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_36469","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:33 GMT + - Tue, 31 Dec 2019 02:25:08 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1190' x-powered-by: - ASP.NET status: @@ -228,16 +228,16 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":34928,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_34928","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":36469,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_36469","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:34 GMT + - Tue, 31 Dec 2019 02:25:09 GMT expires: - '-1' pragma: @@ -288,11 +288,11 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:34 GMT + - Tue, 31 Dec 2019 02:25:10 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' x-powered-by: - ASP.NET status: @@ -343,16 +343,16 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":34928,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_34928","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":36469,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-063_36469","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:36 GMT + - Tue, 31 Dec 2019 02:25:11 GMT expires: - '-1' pragma: @@ -406,15 +406,15 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"West - US","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:39.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FA29828D14C1C3AD28640E66730C2851806D0E5A2AF41B6C5AC542B7EC11EBA4","kind":"app,linux,container","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:16.56","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24671374C60781587A2DFD9DEFA62ED52D0408A7A2EF242B7312EE94E1F91D7D","kind":"app,linux,container","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -423,9 +423,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:58 GMT + - Tue, 31 Dec 2019 02:25:32 GMT etag: - - '"1D59A112A9929E0"' + - '"1D5BF818A5866B5"' expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '496' x-powered-by: - ASP.NET status: @@ -468,23 +468,29 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2019-08-01 response: body: string: @@ -492,11 +498,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 10:57:59 GMT + - Tue, 31 Dec 2019 02:25:35 GMT expires: - '-1' pragma: @@ -510,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -540,11 +546,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:48 GMT + - Tue, 31 Dec 2019 02:26:21 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -572,11 +578,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:50 GMT + - Tue, 31 Dec 2019 02:26:22 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -604,11 +610,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:50 GMT + - Tue, 31 Dec 2019 02:26:22 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -636,11 +642,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:50 GMT + - Tue, 31 Dec 2019 02:26:23 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -668,11 +674,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:51 GMT + - Tue, 31 Dec 2019 02:26:23 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -700,11 +706,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:52 GMT + - Tue, 31 Dec 2019 02:26:24 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -732,11 +738,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:53 GMT + - Tue, 31 Dec 2019 02:26:25 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -764,11 +770,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:53 GMT + - Tue, 31 Dec 2019 02:26:26 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -796,11 +802,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:54 GMT + - Tue, 31 Dec 2019 02:26:25 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK @@ -828,11 +834,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:54 GMT + - Tue, 31 Dec 2019 02:26:27 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=55310c53a2a6660a2f3721faf903f53afc86446dd328fe2381776d215e58007b;Path=/;HttpOnly;Domain=webapp-linux-multiyi4qaj.azurewebsites.net + - ARRAffinity=42d2afc5949d89299c6735ed778af161517d407a0e9db6cfe7d7ff94cb017cfa;Path=/;HttpOnly;Domain=webapp-linux-multicuiuft.azurewebsites.net status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml index 2d47798eaf7..6545999f952 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --is-linux --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:33Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:53 GMT + - Tue, 31 Dec 2019 02:29:37 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --is-linux --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:54 GMT + - Tue, 31 Dec 2019 02:29:38 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --is-linux --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:33Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:55 GMT + - Tue, 31 Dec 2019 02:29:39 GMT expires: - '-1' pragma: @@ -171,25 +171,25 @@ interactions: - -g -n --is-linux --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":11713,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-029_11713","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US 2","properties":{"serverFarmId":499,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-041_499","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1536' + - '1532' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:06 GMT + - Tue, 31 Dec 2019 02:29:49 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1194' x-powered-by: - ASP.NET status: @@ -228,25 +228,25 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":11713,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-029_11713","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US 2","properties":{"serverFarmId":499,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-041_499","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1536' + - '1532' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:08 GMT + - Tue, 31 Dec 2019 02:29:51 GMT expires: - '-1' pragma: @@ -288,11 +288,11 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:08 GMT + - Tue, 31 Dec 2019 02:29:52 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' x-powered-by: - ASP.NET status: @@ -343,25 +343,25 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":11713,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-029_11713","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US 2","properties":{"serverFarmId":499,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUS2webspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-041_499","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1536' + - '1532' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:09 GMT + - Tue, 31 Dec 2019 02:29:55 GMT expires: - '-1' pragma: @@ -387,8 +387,8 @@ interactions: body: 'b''{"location": "West US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo=", - "appSettings": [], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + "appSettings": [], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": + true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -399,33 +399,33 @@ interactions: Connection: - keep-alive Content-Length: - - '678' + - '696' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"West - US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:14.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B54AB0DD7DC1A86E677062CEBAC83567C30AEB8B5966F3CC007554E1014A8877","kind":"app,linux,container","inboundIpAddress":"13.77.182.13","possibleInboundIpAddresses":"13.77.182.13","outboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124","possibleOutboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124,52.183.34.217,13.66.206.87,13.77.172.226,52.183.34.132,13.77.180.8","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:00.2366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"59C53F23CF63254B4241BE1A98A0BEB3AA3681137791FEA5E93464957EC95D70","kind":"app,linux,container","inboundIpAddress":"13.66.138.104","possibleInboundIpAddresses":"13.66.138.104","outboundIpAddresses":"13.66.138.104,52.183.82.171,52.183.89.66,52.151.50.149,51.141.184.90","possibleOutboundIpAddresses":"13.66.138.104,52.183.82.171,52.183.89.66,52.151.50.149,51.141.184.90,52.250.0.90,52.151.20.147,52.151.58.127,51.143.16.116,52.183.97.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-041","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3848' + - '3858' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:31 GMT + - Tue, 31 Dec 2019 02:30:19 GMT etag: - - '"1D59A11CE88EFE0"' + - '"1D5BF823368F06B"' expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '494' + - '497' x-powered-by: - ASP.NET status: @@ -468,23 +468,29 @@ interactions: - -g -n --plan --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2019-08-01 response: body: string: @@ -492,11 +498,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:02:33 GMT + - Tue, 31 Dec 2019 02:30:21 GMT expires: - '-1' pragma: @@ -531,7 +537,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 2 times. + string: 'Hello World! I have been seen 4 times. ' headers: @@ -540,11 +546,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:16 GMT + - Tue, 31 Dec 2019 02:30:51 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -563,7 +569,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 5 times. + string: 'Hello World! I have been seen 7 times. ' headers: @@ -572,11 +578,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:17 GMT + - Tue, 31 Dec 2019 02:30:51 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -595,7 +601,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 6 times. + string: 'Hello World! I have been seen 8 times. ' headers: @@ -604,11 +610,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:17 GMT + - Tue, 31 Dec 2019 02:30:53 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -627,20 +633,20 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 7 times. + string: 'Hello World! I have been seen 10 times. ' headers: content-length: - - '39' + - '40' content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:18 GMT + - Tue, 31 Dec 2019 02:30:53 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -659,20 +665,20 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 8 times. + string: 'Hello World! I have been seen 11 times. ' headers: content-length: - - '39' + - '40' content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:18 GMT + - Tue, 31 Dec 2019 02:30:54 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -691,20 +697,20 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 9 times. + string: 'Hello World! I have been seen 12 times. ' headers: content-length: - - '39' + - '40' content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:19 GMT + - Tue, 31 Dec 2019 02:30:55 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -723,7 +729,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 10 times. + string: 'Hello World! I have been seen 13 times. ' headers: @@ -732,11 +738,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:19 GMT + - Tue, 31 Dec 2019 02:30:55 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -755,7 +761,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 11 times. + string: 'Hello World! I have been seen 14 times. ' headers: @@ -764,11 +770,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:20 GMT + - Tue, 31 Dec 2019 02:30:56 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -787,7 +793,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 12 times. + string: 'Hello World! I have been seen 15 times. ' headers: @@ -796,11 +802,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:20 GMT + - Tue, 31 Dec 2019 02:30:56 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -819,7 +825,7 @@ interactions: uri: http://webapp-linux-multi000002.azurewebsites.net/ response: body: - string: 'Hello World! I have been seen 13 times. + string: 'Hello World! I have been seen 16 times. ' headers: @@ -828,11 +834,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:21 GMT + - Tue, 31 Dec 2019 02:30:57 GMT server: - Werkzeug/0.14.1 Python/3.4.8 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq.azurewebsites.net status: code: 200 message: OK @@ -851,26 +857,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"West - US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:14.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B54AB0DD7DC1A86E677062CEBAC83567C30AEB8B5966F3CC007554E1014A8877","kind":"app,linux,container","inboundIpAddress":"13.77.182.13","possibleInboundIpAddresses":"13.77.182.13","outboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124","possibleOutboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124,52.183.34.217,13.66.206.87,13.77.172.226,52.183.34.132,13.77.180.8","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:00.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"59C53F23CF63254B4241BE1A98A0BEB3AA3681137791FEA5E93464957EC95D70","kind":"app,linux,container","inboundIpAddress":"13.66.138.104","possibleInboundIpAddresses":"13.66.138.104","outboundIpAddresses":"13.66.138.104,52.183.82.171,52.183.89.66,52.151.50.149,51.141.184.90","possibleOutboundIpAddresses":"13.66.138.104,52.183.82.171,52.183.89.66,52.151.50.149,51.141.184.90,52.250.0.90,52.151.20.147,52.151.58.127,51.143.16.116,52.183.97.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-041","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3846' + - '3856' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:23 GMT + - Tue, 31 Dec 2019 02:30:58 GMT etag: - - '"1D59A11CE88EFE0"' + - '"1D5BF823368F06B"' expires: - '-1' pragma: @@ -914,26 +920,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage","name":"webapp-linux-multi000002/stage","type":"Microsoft.Web/sites/slots","kind":"app,linux,container","location":"West - US 2","properties":{"name":"webapp-linux-multi000002(stage)","state":"Running","hostNames":["webapp-linux-multi000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002-stage.azurewebsites.net","webapp-linux-multi000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:28.3866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002__eb0c","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BA8D8CCB7044E5A716F9269C96AB90ADF318361070CD6AD00895F2496E0D51B0","kind":"app,linux,container","inboundIpAddress":"13.77.182.13","possibleInboundIpAddresses":"13.77.182.13","outboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124","possibleOutboundIpAddresses":"13.77.182.13,13.77.161.10,52.183.26.12,52.175.235.45,13.77.178.124,52.183.34.217,13.66.206.87,13.77.172.226,52.183.34.132,13.77.180.8","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US 2","properties":{"name":"webapp-linux-multi000002(stage)","state":"Running","hostNames":["webapp-linux-multi000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUS2webspace","selfLink":"https://waws-prod-mwh-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUS2webspace/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002-stage.azurewebsites.net","webapp-linux-multi000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:03.8333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-multi000002__1d7e","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FD989C5341A655DF09C47B6CA8CBA1536C5C308801DA828FFBDEA97E0B21DD75","kind":"app,linux,container","inboundIpAddress":"13.66.138.104","possibleInboundIpAddresses":"13.66.138.104","outboundIpAddresses":"13.66.138.104,52.183.82.171,52.183.89.66,52.151.50.149,51.141.184.90","possibleOutboundIpAddresses":"13.66.138.104,52.183.82.171,52.183.89.66,52.151.50.149,51.141.184.90,52.250.0.90,52.151.20.147,52.151.58.127,51.143.16.116,52.183.97.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-mwh-041","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3926' + - '3931' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:44 GMT + - Tue, 31 Dec 2019 02:31:21 GMT etag: - - '"1D59A11CE88EFE0"' + - '"1D5BF823368F06B"' expires: - '-1' pragma: @@ -974,11 +980,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -991,7 +997,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:45 GMT + - Tue, 31 Dec 2019 02:31:23 GMT expires: - '-1' pragma: @@ -1030,11 +1036,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","location":"West @@ -1047,7 +1053,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:47 GMT + - Tue, 31 Dec 2019 02:31:24 GMT expires: - '-1' pragma: @@ -1084,24 +1090,26 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites/config","location":"West - US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo=","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiDQogICAgcG9ydHM6DQogICAgIC0gIjUwMDA6NTAwMCINCiAgcmVkaXM6DQogICAgaW1hZ2U6ICJyZWRpczphbHBpbmUiDQo=","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3127' + - '3296' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:49 GMT + - Tue, 31 Dec 2019 02:31:26 GMT expires: - '-1' pragma: @@ -1140,11 +1148,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1157,7 +1165,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:50 GMT + - Tue, 31 Dec 2019 02:31:27 GMT expires: - '-1' pragma: @@ -1175,7 +1183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -1196,11 +1204,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","location":"West @@ -1213,7 +1221,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:51 GMT + - Tue, 31 Dec 2019 02:31:29 GMT expires: - '-1' pragma: @@ -1254,11 +1262,11 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1271,9 +1279,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:51 GMT + - Tue, 31 Dec 2019 02:31:30 GMT etag: - - '"1D59A1208756DA0"' + - '"1D5BF8268995FB5"' expires: - '-1' pragma: @@ -1291,7 +1299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1184' x-powered-by: - ASP.NET status: @@ -1309,8 +1317,12 @@ interactions: "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1321,33 +1333,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1280' + - '1564' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage","name":"webapp-linux-multi000002/stage","type":"Microsoft.Web/sites/slots","location":"West - US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3137' + - '3306' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:53 GMT + - Tue, 31 Dec 2019 02:31:32 GMT etag: - - '"1D59A11FAB6C060"' + - '"1D5BF82594EFC60"' expires: - '-1' pragma: @@ -1365,7 +1379,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1183' x-powered-by: - ASP.NET status: @@ -1386,24 +1400,26 @@ interactions: - -g -n --slot --multicontainer-config-file --multicontainer-config-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites/config","location":"West - US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"COMPOSE|dmVyc2lvbjogJzMnDQpzZXJ2aWNlczoNCiAgd2ViOg0KICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCINCiAgICBwb3J0czoNCiAgICAgLSAiNTAwMDo1MDAwIg0KICByZWRpczoNCiAgICBpbWFnZTogInJlZGlzOmFscGluZSINCg==","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-multi000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3143' + - '3312' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:55 GMT + - Tue, 31 Dec 2019 02:31:32 GMT expires: - '-1' pragma: @@ -1449,11 +1465,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:26 GMT + - Tue, 31 Dec 2019 02:32:11 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1481,11 +1497,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:27 GMT + - Tue, 31 Dec 2019 02:32:12 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1513,11 +1529,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:27 GMT + - Tue, 31 Dec 2019 02:32:12 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1545,11 +1561,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:28 GMT + - Tue, 31 Dec 2019 02:32:13 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1577,11 +1593,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:28 GMT + - Tue, 31 Dec 2019 02:32:13 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1609,11 +1625,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:30 GMT + - Tue, 31 Dec 2019 02:32:15 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1641,11 +1657,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:30 GMT + - Tue, 31 Dec 2019 02:32:15 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1673,11 +1689,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:31 GMT + - Tue, 31 Dec 2019 02:32:16 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1705,11 +1721,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:31 GMT + - Tue, 31 Dec 2019 02:32:16 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK @@ -1737,11 +1753,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:32 GMT + - Tue, 31 Dec 2019 02:32:17 GMT server: - Werkzeug/0.14.1 Python/3.4.9 set-cookie: - - ARRAffinity=06d414f4e8e313dec4f69f665d39b38e19a2bc859fda7221b7f8fbb42f3e6ea3;Path=/;HttpOnly;Domain=webapp-linux-multigv5yp5-stage.azurewebsites.net + - ARRAffinity=9c5c6ed14f3cb88981deadedc9c545db3da1140eb93dfd9647400c4d4d3c4a57;Path=/;HttpOnly;Domain=webapp-linux-multi4nkwaq-stage.azurewebsites.net status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml index b6b97fc783f..9b4e451b810 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:39:31 GMT + - Tue, 31 Dec 2019 02:24:39 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:32 GMT + - Tue, 31 Dec 2019 02:24:40 GMT expires: - '-1' pragma: @@ -120,14 +120,14 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japaneast","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:39:32 GMT + - Tue, 31 Dec 2019 02:24:41 GMT expires: - '-1' pragma: @@ -171,16 +171,16 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","name":"plan-quick-linux000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - East","properties":{"serverFarmId":10110,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-14T01:39:36.6133333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10110","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + East","properties":{"serverFarmId":10864,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2020-01-30T02:24:44.5233333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10864","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:46 GMT + - Tue, 31 Dec 2019 02:24:55 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' x-powered-by: - ASP.NET status: @@ -228,16 +228,16 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","name":"plan-quick-linux000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - East","properties":{"serverFarmId":10110,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-14T01:39:36.6133333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10110","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + East","properties":{"serverFarmId":10864,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2020-01-30T02:24:44.5233333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10864","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:50 GMT + - Tue, 31 Dec 2019 02:24:56 GMT expires: - '-1' pragma: @@ -288,11 +288,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:50 GMT + - Tue, 31 Dec 2019 02:24:57 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -343,16 +343,16 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","name":"plan-quick-linux000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - East","properties":{"serverFarmId":10110,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-14T01:39:36.6133333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10110","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + East","properties":{"serverFarmId":10864,"name":"plan-quick-linux000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanEastwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + East","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2020-01-30T02:24:44.5233333","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-ty1-011_10864","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:54 GMT + - Tue, 31 Dec 2019 02:24:59 GMT expires: - '-1' pragma: @@ -406,26 +406,26 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Japan - East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:57.9733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"549FB63F171F71E18445AE06C56C897B9AF910FE81B0B145D9DEDC94FE2B2C62","kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:04.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"66D78E51677BF4EE46A2BA4C39BCB5FBF5229C9D2E2F5EB9146190135B1C8485","kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3639' + - '3634' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:16 GMT + - Tue, 31 Dec 2019 02:25:23 GMT etag: - - '"1D59A8C6CDC320B"' + - '"1D5BF81835F1F75"' expires: - '-1' pragma: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '496' x-powered-by: - ASP.NET status: @@ -468,23 +468,29 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/publishxml?api-version=2019-08-01 response: body: string: @@ -492,11 +498,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Thu, 14 Nov 2019 01:40:17 GMT + - Tue, 31 Dec 2019 02:25:25 GMT expires: - '-1' pragma: @@ -510,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -531,15 +537,15 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"Japan - East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:58.9766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"549FB63F171F71E18445AE06C56C897B9AF910FE81B0B145D9DEDC94FE2B2C62","kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + East","properties":{"name":"webapp-quick-linux000002","state":"Running","hostNames":["webapp-quick-linux000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanEastwebspace","selfLink":"https://waws-prod-ty1-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanEastwebspace/sites/webapp-quick-linux000002","repositorySiteName":"webapp-quick-linux000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-linux000002.azurewebsites.net","webapp-quick-linux000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|patle/ruby-hello"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-linux000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-linux000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:05.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-linux000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"66D78E51677BF4EE46A2BA4C39BCB5FBF5229C9D2E2F5EB9146190135B1C8485","kind":"app,linux,container","inboundIpAddress":"13.73.26.73","possibleInboundIpAddresses":"13.73.26.73","outboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207","possibleOutboundIpAddresses":"13.73.26.73,13.73.30.113,52.243.32.123,52.243.37.163,13.73.27.207,13.78.9.45,13.78.23.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ty1-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-linux000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -548,9 +554,9 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:18 GMT + - Tue, 31 Dec 2019 02:25:27 GMT etag: - - '"1D59A8C6CDC320B"' + - '"1D5BF81835F1F75"' expires: - '-1' pragma: @@ -587,24 +593,26 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites/config","location":"Japan - East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2940' + - '3109' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:20 GMT + - Tue, 31 Dec 2019 02:25:29 GMT expires: - '-1' pragma: @@ -643,11 +651,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -660,7 +668,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:23 GMT + - Tue, 31 Dec 2019 02:25:29 GMT expires: - '-1' pragma: @@ -678,7 +686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -704,11 +712,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -721,9 +729,9 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:24 GMT + - Tue, 31 Dec 2019 02:25:31 GMT etag: - - '"1D59A8C7C3B6FEB"' + - '"1D5BF8192EBA1E0"' expires: - '-1' pragma: @@ -741,7 +749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' x-powered-by: - ASP.NET status: @@ -759,8 +767,12 @@ interactions: "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -771,33 +783,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1092' + - '1376' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","location":"Japan - East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2926' + - '3095' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:27 GMT + - Tue, 31 Dec 2019 02:25:35 GMT etag: - - '"1D59A8C7C3B6FEB"' + - '"1D5BF8192EBA1E0"' expires: - '-1' pragma: @@ -815,7 +829,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1189' x-powered-by: - ASP.NET status: @@ -838,11 +852,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -855,7 +869,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:29 GMT + - Tue, 31 Dec 2019 02:25:37 GMT expires: - '-1' pragma: @@ -873,7 +887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -894,11 +908,11 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","location":"Japan @@ -911,7 +925,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:30 GMT + - Tue, 31 Dec 2019 02:25:37 GMT expires: - '-1' pragma: @@ -948,24 +962,26 @@ interactions: - -g -n --plan -i User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/web","name":"webapp-quick-linux000002","type":"Microsoft.Web/sites/config","location":"Japan - East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + East","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|patle/ruby-hello","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick-linux000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2944' + - '3113' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:30 GMT + - Tue, 31 Dec 2019 02:25:38 GMT expires: - '-1' pragma: @@ -1009,9 +1025,9 @@ interactions: content-type: - text/html date: - - Thu, 14 Nov 2019 01:42:24 GMT + - Tue, 31 Dec 2019 02:27:55 GMT set-cookie: - - ARRAffinity=3cec392df3fcfb68e67228055194266ae3a12171f7ca6e8c3f085e4caee9b12e;Path=/;HttpOnly;Domain=webapp-quick-linuxx5bhk4.azurewebsites.net + - ARRAffinity=0565075a480d16b1f735ff8a5e5e850273dc8ca8480f6483ea9b1c209d58e68e;Path=/;HttpOnly;Domain=webapp-quick-linuxo4zdw6.azurewebsites.net status: code: 200 message: OK @@ -1032,11 +1048,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan @@ -1049,7 +1065,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:26 GMT + - Tue, 31 Dec 2019 02:27:58 GMT expires: - '-1' pragma: @@ -1088,11 +1104,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-linux000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-quick-linux000002","type":"Microsoft.Web/sites","location":"Japan @@ -1105,7 +1121,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:28 GMT + - Tue, 31 Dec 2019 02:28:00 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml index ba3a01e2431..64733d364a0 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_quick_create_cd.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:29Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:24 GMT + - Tue, 31 Dec 2019 02:24:31 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:25 GMT + - Tue, 31 Dec 2019 02:24:32 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:29Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:25 GMT + - Tue, 31 Dec 2019 02:24:32 GMT expires: - '-1' pragma: @@ -171,25 +171,25 @@ interactions: - -g -n --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","name":"plan-quick-linux-cd","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5691,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-13T10:57:28.0966667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5691","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":6152,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2020-01-30T02:24:36.28","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6152","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1544' + - '1539' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:41 GMT + - Tue, 31 Dec 2019 02:24:52 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1190' x-powered-by: - ASP.NET status: @@ -228,25 +228,25 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","name":"plan-quick-linux-cd","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5691,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-13T10:57:28.0966667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5691","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":6152,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2020-01-30T02:24:36.28","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6152","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1544' + - '1539' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:43 GMT + - Tue, 31 Dec 2019 02:24:54 GMT expires: - '-1' pragma: @@ -288,11 +288,11 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:44 GMT + - Tue, 31 Dec 2019 02:24:55 GMT expires: - '-1' pragma: @@ -343,25 +343,25 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","name":"plan-quick-linux-cd","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5691,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2019-12-13T10:57:28.0966667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5691","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + West","properties":{"serverFarmId":6152,"name":"plan-quick-linux-cd","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2020-01-30T02:24:36.28","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6152","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1544' + - '1539' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:45 GMT + - Tue, 31 Dec 2019 02:24:56 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17428' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:46 GMT + - Tue, 31 Dec 2019 02:24:57 GMT expires: - '-1' pragma: @@ -472,15 +472,15 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:02.8233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AF9C5CD9BED730A1A00ADE4611B340B23B269112C0F931902D1F206B621BDD0A","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:01.9333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"19D29839320F734C56AED4D8D7C6834B348F683B29F5C6FAA2A5389483FF7FE4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -489,9 +489,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:20 GMT + - Tue, 31 Dec 2019 02:25:21 GMT etag: - - '"1D59A1138E4BAD5"' + - '"1D5BF8181CAC3D5"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '497' x-powered-by: - ASP.NET status: @@ -530,15 +530,15 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:58:03.6933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AF9C5CD9BED730A1A00ADE4611B340B23B269112C0F931902D1F206B621BDD0A","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-linux-cd000002","state":"Running","hostNames":["webapp-linux-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-linux-cd000002","repositorySiteName":"webapp-linux-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-cd000002.azurewebsites.net","webapp-linux-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick-linux-cd","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:02.6533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"19D29839320F734C56AED4D8D7C6834B348F683B29F5C6FAA2A5389483FF7FE4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -547,9 +547,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:21 GMT + - Tue, 31 Dec 2019 02:25:22 GMT etag: - - '"1D59A1138E4BAD5"' + - '"1D5BF8181CAC3D5"' expires: - '-1' pragma: @@ -591,26 +591,26 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan - West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' + West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '538' + - '561' content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:59 GMT + - Tue, 31 Dec 2019 02:25:57 GMT etag: - - '"1D59A115A798815"' + - '"1D5BF81A2AB0120"' expires: - '-1' pragma: @@ -624,7 +624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -645,25 +645,25 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan - West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T10:59:23.0964347 - Ensuring ScmType done with True"}}' + West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:26:22.5846002 + http://webapp-linux-cd000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-26-21Z"}}' headers: cache-control: - no-cache content-length: - - '622' + - '735' content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:36 GMT + - Tue, 31 Dec 2019 02:26:29 GMT etag: - - '"1D59A115A798815"' + - '"1D5BF81A2AB0120"' expires: - '-1' pragma: @@ -700,25 +700,25 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan - West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T10:59:58.4982809 - http://webapp-linux-cd000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-11-13_10-59-36Z"}}' + West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:26:54.8127167 + http://webapp-linux-cd000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-26-21Z"}}' headers: cache-control: - no-cache content-length: - - '712' + - '735' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:06 GMT + - Tue, 31 Dec 2019 02:26:59 GMT etag: - - '"1D59A115A798815"' + - '"1D5BF81A2AB0120"' expires: - '-1' pragma: @@ -755,24 +755,24 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/sourcecontrols/web","name":"webapp-linux-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"Japan - West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + West","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '537' + - '560' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:37 GMT + - Tue, 31 Dec 2019 02:27:30 GMT etag: - - '"1D59A115A798815"' + - '"1D5BF81A2AB0120"' expires: - '-1' pragma: @@ -813,22 +813,28 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-cd000002/publishxml?api-version=2019-08-01 response: body: string: @@ -836,11 +842,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:00:38 GMT + - Tue, 31 Dec 2019 02:27:31 GMT expires: - '-1' pragma: @@ -854,7 +860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11996' x-powered-by: - ASP.NET status: @@ -882,11 +888,11 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:46 GMT + - Tue, 31 Dec 2019 02:28:36 GMT etag: - W/"21-Y1/wfdei+S14SZIuhOjhxBTBp94" set-cookie: - - ARRAffinity=1e3adbfa9a1d8a834f83f2cf75530d5493355d3aa5b5a68a9239081f4e3c0021;Path=/;HttpOnly;Domain=webapp-linux-cdgozrldcx6.azurewebsites.net + - ARRAffinity=48cfef3239b55a368ed2ccc58b5f68483cbf4e067b869f8156e13fed590088e9;Path=/;HttpOnly;Domain=webapp-linux-cdz5ojiryqp.azurewebsites.net x-powered-by: - Express status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml index d55ba65fa46..156ac5f1e53 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_debug.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:04:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:17 GMT + - Tue, 31 Dec 2019 02:25:53 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:17 GMT + - Tue, 31 Dec 2019 02:25:54 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1194' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:04:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:04:18 GMT + - Tue, 31 Dec 2019 02:25:55 GMT expires: - '-1' pragma: @@ -171,16 +171,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","name":"webapp-remote-debug-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5697,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5697","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6153,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6153","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:34 GMT + - Tue, 31 Dec 2019 02:26:14 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1188' x-powered-by: - ASP.NET status: @@ -228,16 +228,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","name":"webapp-remote-debug-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5697,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5697","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6153,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6153","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:36 GMT + - Tue, 31 Dec 2019 02:26:16 GMT expires: - '-1' pragma: @@ -288,11 +288,11 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:36 GMT + - Tue, 31 Dec 2019 02:26:17 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' x-powered-by: - ASP.NET status: @@ -343,16 +343,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","name":"webapp-remote-debug-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5697,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5697","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6153,"name":"webapp-remote-debug-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6153","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:37 GMT + - Tue, 31 Dec 2019 02:26:18 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17428' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:39 GMT + - Tue, 31 Dec 2019 02:26:20 GMT expires: - '-1' pragma: @@ -453,8 +453,8 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "localMySqlEnabled": - false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -465,22 +465,22 @@ interactions: Connection: - keep-alive Content-Length: - - '512' + - '530' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:44.2233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:26.3333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D57B92E5B5342E79B42FC8E504C63DC2D29ABE5214C20E7ED362780DA8E6DF7","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -489,9 +489,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:01 GMT + - Tue, 31 Dec 2019 02:26:45 GMT etag: - - '"1D59A1227E3E575"' + - '"1D5BF81B3E65200"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -534,23 +534,29 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2019-08-01 response: body: string: @@ -558,11 +564,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:05:02 GMT + - Tue, 31 Dec 2019 02:26:46 GMT expires: - '-1' pragma: @@ -576,7 +582,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -597,24 +603,26 @@ interactions: - --remote-debugging-enabled -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2974' + - '3141' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:33 GMT + - Tue, 31 Dec 2019 02:27:17 GMT expires: - '-1' pragma: @@ -644,12 +652,16 @@ interactions: false, "remoteDebuggingEnabled": true, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-remote-debug000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -660,33 +672,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1093' + - '1375' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --remote-debugging-enabled -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2959' + - '3126' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:36 GMT + - Tue, 31 Dec 2019 02:27:20 GMT etag: - - '"1D59A1227E3E575"' + - '"1D5BF81B3E65200"' expires: - '-1' pragma: @@ -704,7 +718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1197' x-powered-by: - ASP.NET status: @@ -771,13 +785,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Wed, 13 Nov 2019 11:05:51 GMT + - Tue, 31 Dec 2019 02:27:55 GMT etag: - - W/"ca5-16d98916728" + - W/"ca5-16e3e8a1c88" last-modified: - - Fri, 04 Oct 2019 20:58:49 GMT + - Wed, 06 Nov 2019 02:27:49 GMT set-cookie: - - ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=webapp-remote-debugfpywuaxihhm2uyf2rwcqq.azurewebsites.net + - ARRAffinity=e2b8ede25e987199fa9f6a40cf1d760529f4bfb1fedfc664ab9bda14eeb23577;Path=/;HttpOnly;Domain=webapp-remote-debugrr7qa4hpeceaixkn2j5pc.azurewebsites.net x-powered-by: - Express status: @@ -798,15 +812,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:36.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:27:20.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D57B92E5B5342E79B42FC8E504C63DC2D29ABE5214C20E7ED362780DA8E6DF7","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -815,9 +829,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:22 GMT + - Tue, 31 Dec 2019 02:28:26 GMT etag: - - '"1D59A1246AE9635"' + - '"1D5BF81D3D67CF5"' expires: - '-1' pragma: @@ -858,23 +872,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2019-08-01 response: body: string: @@ -882,11 +902,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:06:24 GMT + - Tue, 31 Dec 2019 02:28:26 GMT expires: - '-1' pragma: @@ -900,7 +920,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11997' x-powered-by: - ASP.NET status: @@ -925,23 +945,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2019-08-01 response: body: string: @@ -949,11 +975,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:06:24 GMT + - Tue, 31 Dec 2019 02:28:27 GMT expires: - '-1' pragma: @@ -967,7 +993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -988,15 +1014,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:36.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:27:20.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D57B92E5B5342E79B42FC8E504C63DC2D29ABE5214C20E7ED362780DA8E6DF7","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -1005,9 +1031,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:25 GMT + - Tue, 31 Dec 2019 02:28:29 GMT etag: - - '"1D59A1246AE9635"' + - '"1D5BF81D3D67CF5"' expires: - '-1' pragma: @@ -1048,23 +1074,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2019-08-01 response: body: string: @@ -1072,11 +1104,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:06:26 GMT + - Tue, 31 Dec 2019 02:28:29 GMT expires: - '-1' pragma: @@ -1090,7 +1122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11999' x-powered-by: - ASP.NET status: @@ -1113,15 +1145,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/publishingcredentials/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishingcredentials/$webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-remote-debug000003","publishingPassword":"SXaEhvsHKx7cophQ2P8T1qGpQq2Sfs200QEiME9qWhhXNgXLy8wQ9SmcHcr0","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-debug000003:SXaEhvsHKx7cophQ2P8T1qGpQq2Sfs200QEiME9qWhhXNgXLy8wQ9SmcHcr0@webapp-remote-debug000003.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-remote-debug000003","publishingPassword":"lKSsCnmiNaxRknhgErxGZwYhJe2fHNbnlWFki4og5llhuQqeQLE3nqxYDGCb","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-debug000003:lKSsCnmiNaxRknhgErxGZwYhJe2fHNbnlWFki4og5llhuQqeQLE3nqxYDGCb@webapp-remote-debug000003.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1130,7 +1162,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:27 GMT + - Tue, 31 Dec 2019 02:28:30 GMT expires: - '-1' pragma: @@ -1148,7 +1180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -1169,15 +1201,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:36.3233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BCF90D6432B561F258F73F22973966437223928C9150010790BBFCE6287322F","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-debug000003","state":"Running","hostNames":["webapp-remote-debug000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-debug000003","repositorySiteName":"webapp-remote-debug000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-debug000003.azurewebsites.net","webapp-remote-debug000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-debug000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-debug000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-debug-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:27:20.3033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-debug000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D57B92E5B5342E79B42FC8E504C63DC2D29ABE5214C20E7ED362780DA8E6DF7","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-debug000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -1186,9 +1218,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:28 GMT + - Tue, 31 Dec 2019 02:28:30 GMT etag: - - '"1D59A1246AE9635"' + - '"1D5BF81D3D67CF5"' expires: - '-1' pragma: @@ -1229,23 +1261,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/publishxml?api-version=2019-08-01 response: body: string: @@ -1253,11 +1291,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:06:30 GMT + - Tue, 31 Dec 2019 02:28:31 GMT expires: - '-1' pragma: @@ -1292,18 +1330,18 @@ interactions: uri: https://webapp-remote-debug000003.scm.azurewebsites.net/api/settings response: body: - string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_SITE_NAME":"webapp-remote-debug000003","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","WEBSITE_NODE_DEFAULT_VERSION":"8.11","WEBSITE_AUTH_ENABLED":"False","REMOTEDEBUGGINGVERSION":"15.0.28307.222","ScmType":"None"}' + string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_AUTH_ENABLED":"False","WEBSITE_SITE_NAME":"webapp-remote-debug000003","REMOTEDEBUGGINGVERSION":"16.0.28729.10","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","ScmType":"None","WEBSITE_NODE_DEFAULT_VERSION":"8.11"}' headers: content-length: - - '370' + - '369' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:06:53 GMT + - Tue, 31 Dec 2019 02:28:52 GMT server: - Kestrel set-cookie: - - ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=webapp-remote-debugfpywuaxihhm2uyf2rwcqq.scm.azurewebsites.net + - ARRAffinity=e2b8ede25e987199fa9f6a40cf1d760529f4bfb1fedfc664ab9bda14eeb23577;Path=/;HttpOnly;Domain=webapp-remote-debugrr7qa4hpeceaixkn2j5pc.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1321,11 +1359,11 @@ interactions: string: SUCCESS:49494 headers: date: - - Wed, 13 Nov 2019 11:06:55 GMT + - Tue, 31 Dec 2019 02:28:53 GMT server: - Kestrel set-cookie: - - ARRAffinity=aa0b80ec9f318cd027fba575d7d4ed3caa2df8eaf15ad3159ebe549845be6d65;Path=/;HttpOnly;Domain=webapp-remote-debugfpywuaxihhm2uyf2rwcqq.scm.azurewebsites.net + - ARRAffinity=e2b8ede25e987199fa9f6a40cf1d760529f4bfb1fedfc664ab9bda14eeb23577;Path=/;HttpOnly;Domain=webapp-remote-debugrr7qa4hpeceaixkn2j5pc.scm.azurewebsites.net transfer-encoding: - chunked status: @@ -1346,24 +1384,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-debug000003/config/web","name":"webapp-remote-debug000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":true,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-debug000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2977' + - '3144' content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:55 GMT + - Tue, 31 Dec 2019 02:28:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml index f118e893f09..a2f9d80a2f4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_remote_ssh.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:58 GMT + - Tue, 31 Dec 2019 02:29:38 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:59 GMT + - Tue, 31 Dec 2019 02:29:40 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1189' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:00 GMT + - Tue, 31 Dec 2019 02:29:40 GMT expires: - '-1' pragma: @@ -171,16 +171,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","name":"webapp-remote-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5695,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6159,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6159","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:18 GMT + - Tue, 31 Dec 2019 02:29:59 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1184' x-powered-by: - ASP.NET status: @@ -228,16 +228,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","name":"webapp-remote-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5695,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6159,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6159","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:19 GMT + - Tue, 31 Dec 2019 02:30:00 GMT expires: - '-1' pragma: @@ -288,11 +288,11 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:20 GMT + - Tue, 31 Dec 2019 02:30:01 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1193' x-powered-by: - ASP.NET status: @@ -343,16 +343,16 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","name":"webapp-remote-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5695,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6159,"name":"webapp-remote-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6159","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:21 GMT + - Tue, 31 Dec 2019 02:30:02 GMT expires: - '-1' pragma: @@ -398,37 +398,37 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":true,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '16883' + - '17428' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:22 GMT + - Tue, 31 Dec 2019 02:30:03 GMT expires: - '-1' pragma: @@ -453,8 +453,8 @@ interactions: - request: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": - "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "localMySqlEnabled": - false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -465,22 +465,22 @@ interactions: Connection: - keep-alive Content-Length: - - '512' + - '530' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:28.6633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:07.5366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ECA3CB0E8BCA99C18AF4AB551F56B3756387ACB675F58EE2D870057AC42F6177","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -489,9 +489,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:44 GMT + - Tue, 31 Dec 2019 02:30:26 GMT etag: - - '"1D59A11B3575E6B"' + - '"1D5BF8237C14E0B"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '492' + - '496' x-powered-by: - ASP.NET status: @@ -534,23 +534,29 @@ interactions: - -g -n --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2019-08-01 response: body: string: @@ -558,11 +564,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:01:45 GMT + - Tue, 31 Dec 2019 02:30:26 GMT expires: - '-1' pragma: @@ -576,7 +582,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11995' x-powered-by: - ASP.NET status: @@ -643,13 +649,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Wed, 13 Nov 2019 11:02:35 GMT + - Tue, 31 Dec 2019 02:31:52 GMT etag: - - W/"ca5-16d98916728" + - W/"ca5-16e3e8a1c88" last-modified: - - Fri, 04 Oct 2019 20:58:49 GMT + - Wed, 06 Nov 2019 02:27:49 GMT set-cookie: - - ARRAffinity=e11d3ad1bdae72b861d2157f2f6fc98a762dbb81735c6611fb619e80123b838c;Path=/;HttpOnly;Domain=webapp-remote-sshuutkqgghcbj5wyom57e7y6y.azurewebsites.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=webapp-remote-sshdojxnve2rn5ozupvyosetnv.azurewebsites.net x-powered-by: - Express status: @@ -670,15 +676,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:29.1266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:07.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ECA3CB0E8BCA99C18AF4AB551F56B3756387ACB675F58EE2D870057AC42F6177","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -687,9 +693,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:06 GMT + - Tue, 31 Dec 2019 02:32:24 GMT etag: - - '"1D59A11B3575E6B"' + - '"1D5BF8237C14E0B"' expires: - '-1' pragma: @@ -730,23 +736,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2019-08-01 response: body: string: @@ -754,11 +766,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:03:07 GMT + - Tue, 31 Dec 2019 02:32:24 GMT expires: - '-1' pragma: @@ -772,7 +784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11995' x-powered-by: - ASP.NET status: @@ -797,23 +809,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2019-08-01 response: body: string: @@ -821,11 +839,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:03:08 GMT + - Tue, 31 Dec 2019 02:32:25 GMT expires: - '-1' pragma: @@ -860,15 +878,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:29.1266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:07.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ECA3CB0E8BCA99C18AF4AB551F56B3756387ACB675F58EE2D870057AC42F6177","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -877,9 +895,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:08 GMT + - Tue, 31 Dec 2019 02:32:26 GMT etag: - - '"1D59A11B3575E6B"' + - '"1D5BF8237C14E0B"' expires: - '-1' pragma: @@ -920,23 +938,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2019-08-01 response: body: string: @@ -944,11 +968,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:03:10 GMT + - Tue, 31 Dec 2019 02:32:27 GMT expires: - '-1' pragma: @@ -985,15 +1009,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/publishingcredentials/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishingcredentials/$webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-remote-ssh000003","publishingPassword":"Zq5dy7iRw4rBnWEvfMvqBnoM4g4WY8LnkCrq0Z1zbghls2b5mL86jaPipSXk","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-ssh000003:Zq5dy7iRw4rBnWEvfMvqBnoM4g4WY8LnkCrq0Z1zbghls2b5mL86jaPipSXk@webapp-remote-ssh000003.scm.azurewebsites.net"}}' + West","properties":{"name":null,"publishingUserName":"$webapp-remote-ssh000003","publishingPassword":"9v51e453y4inQl4Ml6XHeuzciezCC2aMrjeGAQ2GuLx0Wbqhzk5qdsl1s9nK","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-remote-ssh000003:9v51e453y4inQl4Ml6XHeuzciezCC2aMrjeGAQ2GuLx0Wbqhzk5qdsl1s9nK@webapp-remote-ssh000003.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1002,7 +1026,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:10 GMT + - Tue, 31 Dec 2019 02:32:27 GMT expires: - '-1' pragma: @@ -1020,7 +1044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11994' x-powered-by: - ASP.NET status: @@ -1041,15 +1065,15 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:29.1266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"289042382CE314C9772B7AD6162B556F50D228142F03F25B08397E5E2B8D09A4","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-remote-ssh000003","state":"Running","hostNames":["webapp-remote-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-remote-ssh000003","repositorySiteName":"webapp-remote-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-remote-ssh000003.azurewebsites.net","webapp-remote-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-remote-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-remote-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-remote-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:07.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-remote-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ECA3CB0E8BCA99C18AF4AB551F56B3756387ACB675F58EE2D870057AC42F6177","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-remote-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -1058,9 +1082,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:11 GMT + - Tue, 31 Dec 2019 02:32:28 GMT etag: - - '"1D59A11B3575E6B"' + - '"1D5BF8237C14E0B"' expires: - '-1' pragma: @@ -1101,23 +1125,29 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/publishxml?api-version=2019-08-01 response: body: string: @@ -1125,11 +1155,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:03:11 GMT + - Tue, 31 Dec 2019 02:32:29 GMT expires: - '-1' pragma: @@ -1143,7 +1173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11996' x-powered-by: - ASP.NET status: @@ -1164,18 +1194,18 @@ interactions: uri: https://webapp-remote-ssh000003.scm.azurewebsites.net/api/settings response: body: - string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","WEBSITE_NODE_DEFAULT_VERSION":"8.11","WEBSITE_AUTH_ENABLED":"False","WEBSITE_SITE_NAME":"webapp-remote-ssh000003","ScmType":"None"}' + string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_SITE_NAME":"webapp-remote-ssh000003","ScmType":"None","WEBSITE_NODE_DEFAULT_VERSION":"8.11","WEBSITE_AUTH_ENABLED":"False","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0"}' headers: content-length: - '328' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:34 GMT + - Tue, 31 Dec 2019 02:32:50 GMT server: - Kestrel set-cookie: - - ARRAffinity=e11d3ad1bdae72b861d2157f2f6fc98a762dbb81735c6611fb619e80123b838c;Path=/;HttpOnly;Domain=webapp-remote-sshuutkqgghcbj5wyom57e7y6y.scm.azurewebsites.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=webapp-remote-sshdojxnve2rn5ozupvyosetnv.scm.azurewebsites.net transfer-encoding: - chunked vary: @@ -1193,11 +1223,11 @@ interactions: string: SUCCESS:2222 headers: date: - - Wed, 13 Nov 2019 11:03:35 GMT + - Tue, 31 Dec 2019 02:32:52 GMT server: - Kestrel set-cookie: - - ARRAffinity=e11d3ad1bdae72b861d2157f2f6fc98a762dbb81735c6611fb619e80123b838c;Path=/;HttpOnly;Domain=webapp-remote-sshuutkqgghcbj5wyom57e7y6y.scm.azurewebsites.net + - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=webapp-remote-sshdojxnve2rn5ozupvyosetnv.scm.azurewebsites.net transfer-encoding: - chunked status: @@ -1218,24 +1248,26 @@ interactions: - -g -n --timeout User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-remote-ssh000003/config/web","name":"webapp-remote-ssh000003","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-remote-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2974' + - '3141' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:36 GMT + - Tue, 31 Dec 2019 02:32:52 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml index c9ee36c6b97..93cd9eb6105 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml @@ -71,7 +71,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -179,7 +179,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan @@ -237,7 +237,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan @@ -298,7 +298,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -354,7 +354,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan @@ -410,7 +410,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"Ruby @@ -515,7 +515,7 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan @@ -578,7 +578,7 @@ interactions: accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service +======= + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:43Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -38,11 +46,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:45 GMT ======= - Thu, 14 Nov 2019 01:41:29 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:17 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -76,18 +88,23 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' @@ -95,6 +112,10 @@ interactions: US","properties":{"serverFarmId":27332,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27332","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":18681,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18681","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -103,11 +124,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:56 GMT ======= - Thu, 14 Nov 2019 01:41:39 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -125,11 +150,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1188' ======= - '1194' >>>>>>> Re-record test for app service +======= + - '1189' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -150,22 +179,30 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:43Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -174,11 +211,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 13:59:57 GMT ======= - Thu, 14 Nov 2019 01:41:40 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:31 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -212,18 +253,23 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' @@ -231,6 +277,10 @@ interactions: US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":18682,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18682","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -239,11 +289,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:03 GMT ======= - Thu, 14 Nov 2019 01:41:47 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:38 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -261,11 +315,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1187' ======= - '1189' >>>>>>> Re-record test for app service +======= + - '1188' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -286,22 +344,30 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:43Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -310,11 +376,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:05 GMT ======= - Thu, 14 Nov 2019 01:41:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -348,18 +418,23 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006","name":"ab1planname000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":29949,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29949","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -367,6 +442,10 @@ interactions: US","properties":{"serverFarmId":27334,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27334","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":18683,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18683","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -375,11 +454,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:15 GMT ======= - Thu, 14 Nov 2019 01:41:57 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -397,11 +480,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1190' ======= - '1197' >>>>>>> Re-record test for app service +======= + - '1191' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -422,18 +509,23 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' @@ -441,6 +533,10 @@ interactions: US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":18682,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18682","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -449,11 +545,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:17 GMT ======= - Thu, 14 Nov 2019 01:41:59 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:52 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -490,22 +590,30 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:25.8675463Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:25.8675463Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:25.7894141Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ======= string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:08.5394426Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:08.5394426Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:41:08.4613740Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' >>>>>>> Re-record test for app service +======= + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:55.2809934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:55.2809934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:32:55.2341050Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -514,11 +622,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:18 GMT ======= - Thu, 14 Nov 2019 01:42:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:52 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -553,11 +665,15 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST @@ -573,11 +689,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:00:19 GMT ======= - Thu, 14 Nov 2019 01:42:01 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:33:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -593,7 +713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' status: code: 200 message: OK @@ -604,14 +724,20 @@ interactions: "value": "~2"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, <<<<<<< HEAD +<<<<<<< HEAD +======= +>>>>>>> live test {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}, {"name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "WEBSITE_CONTENTSHARE", "value": "functionappelastic000003"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' +<<<<<<< HEAD ======= {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' >>>>>>> Re-record test for app service +======= +>>>>>>> live test headers: Accept: - application/json @@ -622,38 +748,51 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD <<<<<<< HEAD - '1282' ======= - '947' >>>>>>> Re-record test for app service +======= + - '1282' +>>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:28.4066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:05.7433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FBA6A0D1534E32FCB009ED629DD25AFEFB89630EA905ABC816672D588E0D7581","kind":"functionapp","inboundIpAddress":"104.43.246.71","possibleInboundIpAddresses":"104.43.246.71","outboundIpAddresses":"52.173.29.78,52.173.26.186,52.173.26.166","possibleOutboundIpAddresses":"104.43.246.71,52.173.24.19,52.173.26.122,52.173.26.85,13.89.219.71,52.173.29.78,52.173.26.186,52.173.26.166","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:03.48","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3829' content-type: @@ -664,13 +803,20 @@ interactions: - '"1D5BCBDFEE8AD00"' ======= - '3819' +======= + - '3810' +>>>>>>> live test content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:21 GMT + - Tue, 31 Dec 2019 02:34:38 GMT etag: +<<<<<<< HEAD - '"1D59A8CB8D30375"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82C464ED20"' +>>>>>>> live test expires: - '-1' pragma: @@ -718,22 +864,30 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003?api-version=2015-05-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"af01bf73-0000-0300-0000-5e060ead0000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"15cbbc53-eeb7-473f-82a3-daadfe21f52c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5698bd2a-9c0f-4266-8ab6-4567258f3b95","ConnectionString":"InstrumentationKey=5698bd2a-9c0f-4266-8ab6-4567258f3b95","Name":"functionappelastic000003","CreationDate":"2019-12-27T14:01:17.3350763+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"8d008bd5-0000-0300-0000-5dccb1040000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"e3d0ee80-0c87-4b49-809b-69120b643fb4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cbf5f06c-cd4f-4221-9554-52034c6523d9","ConnectionString":"InstrumentationKey=cbf5f06c-cd4f-4221-9554-52034c6523d9","Name":"functionappelastic000003","CreationDate":"2019-11-14T01:42:27.8097125+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"2e02aead-0000-0300-0000-5e0ab3c50000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"376e8557-bbf8-44ab-b140-93df6b8059c5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"4fcd757e-b7cf-490b-8b1e-185e5758399e","ConnectionString":"InstrumentationKey=4fcd757e-b7cf-490b-8b1e-185e5758399e","Name":"functionappelastic000003","CreationDate":"2019-12-31T02:34:45.5921926+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' +>>>>>>> live test headers: access-control-expose-headers: - Request-Context @@ -744,11 +898,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:18 GMT ======= - Thu, 14 Nov 2019 01:43:05 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:51 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -766,11 +924,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1190' ======= - '1195' >>>>>>> Re-record test for app service +======= + - '1184' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -793,27 +955,36 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003"}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '1170' content-type: @@ -827,6 +998,13 @@ interactions: date: - Thu, 14 Nov 2019 01:43:07 GMT >>>>>>> Re-record test for app service +======= + - '1170' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:34:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -854,6 +1032,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", +<<<<<<< HEAD <<<<<<< HEAD "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", @@ -862,6 +1041,12 @@ interactions: ======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "cbf5f06c-cd4f-4221-9554-52034c6523d9"}}''' >>>>>>> Re-record test for app service +======= + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", + "WEBSITE_CONTENTSHARE": "functionappelastic000003", "APPINSIGHTS_INSTRUMENTATIONKEY": + "4fcd757e-b7cf-490b-8b1e-185e5758399e"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -872,38 +1057,51 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD <<<<<<< HEAD - '960' ======= - '645' >>>>>>> Re-record test for app service +======= + - '960' +>>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003","APPINSIGHTS_INSTRUMENTATIONKEY":"5698bd2a-9c0f-4266-8ab6-4567258f3b95"}}' ======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"cbf5f06c-cd4f-4221-9554-52034c6523d9"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003","APPINSIGHTS_INSTRUMENTATIONKEY":"4fcd757e-b7cf-490b-8b1e-185e5758399e"}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '1242' content-type: @@ -914,13 +1112,20 @@ interactions: - '"1D5BCBE1E77B22B"' ======= - '931' +======= + - '1242' +>>>>>>> live test content-type: - application/json date: - - Thu, 14 Nov 2019 01:43:08 GMT + - Tue, 31 Dec 2019 02:34:55 GMT etag: +<<<<<<< HEAD - '"1D59A8CDDE2EDB5"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82E2863E80"' +>>>>>>> live test expires: - '-1' pragma: @@ -938,11 +1143,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1190' ======= - '1195' >>>>>>> Re-record test for app service +======= + - '1183' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -963,27 +1172,36 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:21.8266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:43:08.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FBA6A0D1534E32FCB009ED629DD25AFEFB89630EA905ABC816672D588E0D7581","kind":"functionapp","inboundIpAddress":"104.43.246.71","possibleInboundIpAddresses":"104.43.246.71","outboundIpAddresses":"52.173.29.78,52.173.26.186,52.173.26.166","possibleOutboundIpAddresses":"104.43.246.71,52.173.24.19,52.173.26.122,52.173.26.85,13.89.219.71,52.173.29.78,52.173.26.186,52.173.26.166","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:54.44","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3827' content-type: @@ -994,13 +1212,20 @@ interactions: - '"1D5BCBE1E77B22B"' ======= - '3817' +======= + - '3808' +>>>>>>> live test content-type: - application/json date: - - Thu, 14 Nov 2019 01:43:10 GMT + - Tue, 31 Dec 2019 02:34:56 GMT etag: +<<<<<<< HEAD - '"1D59A8CDDE2EDB5"' >>>>>>> Re-record test for app service +======= + - '"1D5BF82E2863E80"' +>>>>>>> live test expires: - '-1' pragma: @@ -1037,18 +1262,23 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' @@ -1056,6 +1286,10 @@ interactions: US","properties":{"serverFarmId":27332,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27332","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":18681,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18681","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1064,11 +1298,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:24 GMT ======= - Thu, 14 Nov 2019 01:43:11 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:34:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1105,21 +1343,30 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD <<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +======= + US","properties":{"serverFarmId":18682,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18682","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1128,7 +1375,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:26 GMT +======= + - Tue, 31 Dec 2019 02:34:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1176,6 +1427,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1185,10 +1437,22 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:30.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:00.8833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3824' content-type: - application/json @@ -1196,6 +1460,15 @@ interactions: - Fri, 27 Dec 2019 14:01:32 GMT etag: - '"1D5BCBE1E77B22B"' +======= + - '3815' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:35:03 GMT + etag: + - '"1D5BF82E2863E80"' +>>>>>>> live test expires: - '-1' pragma: @@ -1213,7 +1486,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '498' +======= + - '496' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1234,6 +1511,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1243,10 +1521,22 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:30.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:00.8833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3822' content-type: - application/json @@ -1254,6 +1544,15 @@ interactions: - Fri, 27 Dec 2019 14:01:35 GMT etag: - '"1D5BCBE236000C0"' +======= + - '3813' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:35:04 GMT + etag: + - '"1D5BF82E65D6B35"' +>>>>>>> live test expires: - '-1' pragma: @@ -1290,6 +1589,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1300,6 +1600,18 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006","name":"ab1planname000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central US","properties":{"serverFarmId":29949,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29949","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006","name":"ab1planname000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central + US","properties":{"serverFarmId":18683,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18683","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1308,7 +1620,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Fri, 27 Dec 2019 14:01:37 GMT +======= + - Tue, 31 Dec 2019 02:35:06 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1345,6 +1661,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1359,6 +1676,18 @@ interactions: US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central + US","properties":{"serverFarmId":18681,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18681","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1367,11 +1696,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Fri, 27 Dec 2019 14:01:38 GMT ======= - Thu, 14 Nov 2019 01:43:11 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:35:07 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml index c8b0b3d433d..2e3ff19920b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_retain_plan.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:58:58 GMT + - Tue, 31 Dec 2019 02:25:41 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:00 GMT + - Tue, 31 Dec 2019 02:25:41 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:59:01 GMT + - Tue, 31 Dec 2019 02:25:42 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27536,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:26 GMT + - Tue, 31 Dec 2019 02:25:53 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1194' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27536,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:28 GMT + - Tue, 31 Dec 2019 02:25:54 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:28 GMT + - Tue, 31 Dec 2019 02:25:54 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27536,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:30 GMT + - Tue, 31 Dec 2019 02:25:56 GMT expires: - '-1' pragma: @@ -403,26 +403,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002","name":"web000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:38.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8095C28F2324906B2D81BC62B4CABB2E016CB5D9D0905193ECBF0B5DC92F8197","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:00.49","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"06B0122E65606095E867F88C3C68B75E682C66187018A13DE3C879DA53AB146C","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3537' + - '3581' content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:52 GMT + - Tue, 31 Dec 2019 02:26:17 GMT etag: - - '"1D59A11737DA535"' + - '"1D5BF81A4848915"' expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '498' x-powered-by: - ASP.NET status: @@ -465,21 +465,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002/publishxml?api-version=2019-08-01 response: body: string: @@ -487,11 +492,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 10:59:54 GMT + - Tue, 31 Dec 2019 02:26:19 GMT expires: - '-1' pragma: @@ -526,26 +531,26 @@ interactions: - -g -n --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002","name":"web000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:42.0033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8095C28F2324906B2D81BC62B4CABB2E016CB5D9D0905193ECBF0B5DC92F8197","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web000002","state":"Running","hostNames":["web000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web000002","repositorySiteName":"web000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web000002.azurewebsites.net","web000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:00.9133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"06B0122E65606095E867F88C3C68B75E682C66187018A13DE3C879DA53AB146C","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3540' + - '3584' content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:55 GMT + - Tue, 31 Dec 2019 02:26:19 GMT etag: - - '"1D59A11737DA535"' + - '"1D5BF81A4848915"' expires: - '-1' pragma: @@ -584,11 +589,11 @@ interactions: - -g -n --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web000002?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2019-08-01 response: body: string: '' @@ -598,9 +603,9 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 10:59:58 GMT + - Tue, 31 Dec 2019 02:26:24 GMT etag: - - '"1D59A11737DA535"' + - '"1D5BF81A4848915"' expires: - '-1' pragma: @@ -614,7 +619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' x-powered-by: - ASP.NET status: @@ -635,16 +640,16 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-plan000003","name":"web-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":22824,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22824","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":27536,"name":"web-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_27536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -653,7 +658,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:59 GMT + - Tue, 31 Dec 2019 02:26:26 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml index cbc1e1f6b65..e61c660df6f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_traffic_routing.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:00 GMT + - Tue, 31 Dec 2019 02:29:39 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:02 GMT + - Tue, 31 Dec 2019 02:29:41 GMT expires: - '-1' pragma: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:03 GMT + - Tue, 31 Dec 2019 02:29:41 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23560,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23560","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":30956,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30956","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:15 GMT + - Tue, 31 Dec 2019 02:29:50 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1184' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23560,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23560","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":30956,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30956","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:16 GMT + - Tue, 31 Dec 2019 02:29:51 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:16 GMT + - Tue, 31 Dec 2019 02:29:51 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23560,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23560","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":30956,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_30956","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:17 GMT + - Tue, 31 Dec 2019 02:29:53 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '538' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:20.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:58.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"040B4C0B950BD2DB93B917A9125DF2122D7FBCB2732B0FF46AAD51019785DE87","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3542' + - '3530' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:37 GMT + - Tue, 31 Dec 2019 02:30:15 GMT etag: - - '"1D59A11AEAA9235"' + - '"1D5BF8232490E80"' expires: - '-1' pragma: @@ -465,22 +466,28 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2019-08-01 response: body: string: @@ -488,11 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:01:38 GMT + - Tue, 31 Dec 2019 02:30:17 GMT expires: - '-1' pragma: @@ -506,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -527,26 +534,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:21.2833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:58.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"040B4C0B950BD2DB93B917A9125DF2122D7FBCB2732B0FF46AAD51019785DE87","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3545' + - '3528' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:39 GMT + - Tue, 31 Dec 2019 02:30:19 GMT etag: - - '"1D59A11AEAA9235"' + - '"1D5BF8232490E80"' expires: - '-1' pragma: @@ -590,26 +597,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/staging?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/staging?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/staging","name":"slot-traffic-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003(staging)","state":"Running","hostNames":["slot-traffic-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-staging.azurewebsites.net","slot-traffic-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:43.93","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__e8b9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"17FFFB22E34D71B94BD9341D95C0D71ABE21F49A6AB9D8376A76ACBD33BF3703","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003(staging)","state":"Running","hostNames":["slot-traffic-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-staging.azurewebsites.net","slot-traffic-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:26.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__74e3","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EDAF93DF462F204179E69634B60755480F6B2DB89054503EF0615A3CF3BB1AC8","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3633' + - '3621' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:59 GMT + - Tue, 31 Dec 2019 02:30:43 GMT etag: - - '"1D59A11AEAA9235"' + - '"1D5BF8232490E80"' expires: - '-1' pragma: @@ -627,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -648,26 +655,26 @@ interactions: - -g -n -d User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:01:21.2833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:58.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"040B4C0B950BD2DB93B917A9125DF2122D7FBCB2732B0FF46AAD51019785DE87","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3545' + - '3528' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:01 GMT + - Tue, 31 Dec 2019 02:30:44 GMT etag: - - '"1D59A11AEAA9235"' + - '"1D5BF8232490E80"' expires: - '-1' pragma: @@ -704,24 +711,26 @@ interactions: - -g -n -d User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3084' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:02 GMT + - Tue, 31 Dec 2019 02:30:46 GMT expires: - '-1' pragma: @@ -751,13 +760,16 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": [{"actionHostName": "slot-traffic-web000003-staging.azurewebsites.net", - "reroutePercentage": 15.0, "name": "staging"}]}, "autoHealEnabled": false, "vnetName": - "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + [{"actionHostName": "slot-traffic-web000003-staging.azurewebsites.net", "reroutePercentage": + 15.0, "name": "staging"}]}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -769,33 +781,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1190' + - '1472' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n -d User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3405' + - '3572' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:05 GMT + - Tue, 31 Dec 2019 02:30:49 GMT etag: - - '"1D59A11AEAA9235"' + - '"1D5BF8232490E80"' expires: - '-1' pragma: @@ -813,7 +827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1185' x-powered-by: - ASP.NET status: @@ -834,24 +848,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3423' + - '3590' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:07 GMT + - Tue, 31 Dec 2019 02:30:50 GMT expires: - '-1' pragma: @@ -888,26 +904,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:05.85","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"408C4BC90E8CEE29A298AC034112F25DF939B63C7CF0EE5F64B7286DF77A2889","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:49.337","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"040B4C0B950BD2DB93B917A9125DF2122D7FBCB2732B0FF46AAD51019785DE87","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3540' + - '3529' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:08 GMT + - Tue, 31 Dec 2019 02:30:53 GMT etag: - - '"1D59A11C93AE7A0"' + - '"1D5BF82506E7E90"' expires: - '-1' pragma: @@ -944,24 +960,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}],"experiments":{"rampUpRules":[{"actionHostName":"slot-traffic-web000003-staging.azurewebsites.net","reroutePercentage":15.0,"changeStep":null,"changeIntervalInMinutes":null,"minReroutePercentage":null,"maxReroutePercentage":null,"changeDecisionCallbackUrl":null,"name":"staging"}]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3423' + - '3590' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:09 GMT + - Tue, 31 Dec 2019 02:30:53 GMT expires: - '-1' pragma: @@ -991,12 +1009,16 @@ interactions: false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": + true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1007,33 +1029,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1108' + - '1390' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3070' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:10 GMT + - Tue, 31 Dec 2019 02:30:55 GMT etag: - - '"1D59A11C93AE7A0"' + - '"1D5BF82506E7E90"' expires: - '-1' pragma: @@ -1051,7 +1075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1188' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml index 701402309c5..1851c43d8ec 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_update_webapp_settings_thru_json.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_json000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:26:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:10 GMT + - Tue, 31 Dec 2019 02:26:35 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:10 GMT + - Tue, 31 Dec 2019 02:26:36 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1194' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_json000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001","name":"cli_test_webapp_json000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:26:32Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:10 GMT + - Tue, 31 Dec 2019 02:26:37 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26284,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26284","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25558,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25558","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:19 GMT + - Tue, 31 Dec 2019 02:26:44 GMT expires: - '-1' pragma: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26284,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26284","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25558,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25558","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:20 GMT + - Tue, 31 Dec 2019 02:26:44 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:21 GMT + - Tue, 31 Dec 2019 02:26:46 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26284,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26284","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25558,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_json000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_json000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25558","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:23 GMT + - Tue, 31 Dec 2019 02:26:47 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '536' + - '554' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_json000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_json000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:27.377","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1BF5399B869D685DBEAE5B6EF1829F5565A2C55DAF7A1F9EFAD588F0D5607D75","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_json000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_json000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_json000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:54.04","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E01EE78B5DA020142E682BE1D294814691302ED3295222BCB08B96EC305CB53A","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_json000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3723' + - '3750' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:43 GMT + - Tue, 31 Dec 2019 02:27:11 GMT etag: - - '"1D59A118ED653B0"' + - '"1D5BF81C47431D5"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '493' + - '496' x-powered-by: - ASP.NET status: @@ -465,23 +466,29 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2019-08-01 response: body: string: @@ -489,11 +496,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:00:44 GMT + - Tue, 31 Dec 2019 02:27:11 GMT expires: - '-1' pragma: @@ -507,7 +514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11999' x-powered-by: - ASP.NET status: @@ -530,11 +537,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -547,7 +554,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:45 GMT + - Tue, 31 Dec 2019 02:27:13 GMT expires: - '-1' pragma: @@ -565,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -591,11 +598,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -608,9 +615,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:47 GMT + - Tue, 31 Dec 2019 02:27:15 GMT etag: - - '"1D59A119A4607E0"' + - '"1D5BF81D0F57D15"' expires: - '-1' pragma: @@ -628,7 +635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' x-powered-by: - ASP.NET status: @@ -651,11 +658,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -668,7 +675,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:47 GMT + - Tue, 31 Dec 2019 02:27:16 GMT expires: - '-1' pragma: @@ -686,7 +693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -712,11 +719,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -729,9 +736,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:48 GMT + - Tue, 31 Dec 2019 02:27:17 GMT etag: - - '"1D59A119B8C91A0"' + - '"1D5BF81D247376B"' expires: - '-1' pragma: @@ -749,7 +756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1188' x-powered-by: - ASP.NET status: @@ -770,11 +777,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West @@ -787,7 +794,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:49 GMT + - Tue, 31 Dec 2019 02:27:17 GMT expires: - '-1' pragma: @@ -828,11 +835,11 @@ interactions: - -g -n --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West @@ -845,7 +852,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:49 GMT + - Tue, 31 Dec 2019 02:27:18 GMT expires: - '-1' pragma: @@ -863,7 +870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1187' x-powered-by: - ASP.NET status: @@ -884,24 +891,26 @@ interactions: - -g -n --generic-configurations User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2965' + - '3132' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:51 GMT + - Tue, 31 Dec 2019 02:27:20 GMT expires: - '-1' pragma: @@ -933,10 +942,14 @@ interactions: "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -947,33 +960,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1086' + - '1369' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --generic-configurations User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_json000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":true,"requestTracingExpirationTime":"9999-12-31T23:59:00Z","remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":true,"requestTracingExpirationTime":"9999-12-31T23:59:00Z","remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3002' + - '3171' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:53 GMT + - Tue, 31 Dec 2019 02:27:23 GMT etag: - - '"1D59A119B8C91A0"' + - '"1D5BF81D247376B"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml index 1b47ea0f0d8..0949959f0f6 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T07:11:57Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:03 GMT -======= - - Thu, 14 Nov 2019 01:38:23 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:39 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:07 GMT -======= - - Thu, 14 Nov 2019 01:38:25 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:41 GMT expires: - '-1' pragma: @@ -115,11 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1197' -======= - - '1199' ->>>>>>> Re-record test for app service + - '1198' x-powered-by: - ASP.NET status: @@ -139,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T07:11:57Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -160,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:06 GMT -======= - - Thu, 14 Nov 2019 01:38:24 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:41 GMT expires: - '-1' pragma: @@ -197,27 +168,17 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":26271,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26271","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":21923,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21923","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":23144,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23144","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -226,11 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:16 GMT -======= - - Thu, 14 Nov 2019 01:38:35 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:49 GMT expires: - '-1' pragma: @@ -248,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1199' ->>>>>>> Re-record test for app service + - '1197' x-powered-by: - ASP.NET status: @@ -272,27 +225,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":26271,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26271","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":21923,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21923","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":23144,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23144","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -301,11 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:17 GMT -======= - - Thu, 14 Nov 2019 01:38:37 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:50 GMT expires: - '-1' pragma: @@ -346,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -368,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:18 GMT -======= - - Thu, 14 Nov 2019 01:38:38 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:51 GMT expires: - '-1' pragma: @@ -410,27 +340,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":26271,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26271","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":21923,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21923","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":23144,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23144","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -439,11 +359,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:18 GMT -======= - - Thu, 14 Nov 2019 01:38:39 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:52 GMT expires: - '-1' pragma: @@ -486,46 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T07:12:23.963","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DD566C1A86A0AC0E780AA150DFCFF2228F539373874E01CB3F86828A1D85464E","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:43.6333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B7C1B9E1DD09704424CF5CAFAAB3428E6ADD92B69C8153D95C5E96872F877BF","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:23:58.6166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7E4BB39F97236F9A08486AC99B22324578017A8A4A7783157D6E8DFF02DF2C49","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3512' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 07:12:40 GMT - etag: - - '"1D599F1B2F70980"' -======= - '3524' content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:04 GMT + - Tue, 31 Dec 2019 02:24:15 GMT etag: - - '"1D59A8C403F8020"' ->>>>>>> Re-record test for app service + - '"1D5BF815BE0A635"' expires: - '-1' pragma: @@ -567,44 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="xu11PaYNmyNdW8w6Yr9hurYe3FC0HwYq87ocZw2Mi0fqdDPh86lM9JKavWeH" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -612,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:41 GMT -======= - - Thu, 14 Nov 2019 01:39:05 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:16 GMT expires: - '-1' pragma: @@ -654,34 +532,27 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:44 GMT -======= - - Thu, 14 Nov 2019 01:39:07 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:18 GMT expires: - '-1' pragma: @@ -715,8 +586,13 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", + "action": "Allow", "tag": "Default", "priority": 200, "name": "developers"}], + "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -727,44 +603,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1072' + - '1465' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3177' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 07:12:46 GMT - etag: - - '"1D599F1B2F70980"' -======= - - Thu, 14 Nov 2019 01:39:10 GMT + - Tue, 31 Dec 2019 02:24:19 GMT etag: - - '"1D59A8C403F8020"' ->>>>>>> Re-record test for app service + - '"1D5BF815BE0A635"' expires: - '-1' pragma: @@ -782,11 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> Re-record test for app service + - '1191' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml index 8b02d8be0d0..bf01fa2b731 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:02Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:44 GMT -======= - - Thu, 14 Nov 2019 01:40:05 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:01 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:44 GMT -======= - - Thu, 14 Nov 2019 01:40:09 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:02 GMT expires: - '-1' pragma: @@ -135,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:02Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -156,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:45 GMT -======= - - Thu, 14 Nov 2019 01:40:09 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:02 GMT expires: - '-1' pragma: @@ -193,40 +168,26 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":34945,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34945","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":145474,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":27727,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27727","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1524' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:52 GMT -======= - - Thu, 14 Nov 2019 01:40:17 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:11 GMT expires: - '-1' pragma: @@ -244,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1195' ->>>>>>> Re-record test for app service + - '1197' x-powered-by: - ASP.NET status: @@ -268,40 +225,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":34945,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34945","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":145474,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":27727,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27727","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1524' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:54 GMT -======= - - Thu, 14 Nov 2019 01:40:17 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:12 GMT expires: - '-1' pragma: @@ -342,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -364,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:54 GMT -======= - - Thu, 14 Nov 2019 01:40:17 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:12 GMT expires: - '-1' pragma: @@ -386,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -406,40 +340,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":34945,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34945","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":145474,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145474","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":27727,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27727","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1524' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:55 GMT -======= - - Thu, 14 Nov 2019 01:40:18 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:14 GMT expires: - '-1' pragma: @@ -482,46 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:13:59.48","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"27C6FFEDEA9BB539656EF3603E5BB0A443F2897803A464E5560760B7F1D33E45","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:25.193","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FB651F7CB5F34E8807C806B7B6E0E5EE8E76F936C76F39738D9BE2EAFC338C50","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:16.953","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7FA9C93A467340E70FCC85677A9691AE83DC4CE944F06B5B39440E718A38FD73","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3653' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 06:14:16 GMT - etag: - - '"1D599E98A0041C0"' -======= - - '3528' + - '3512' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:41 GMT + - Tue, 31 Dec 2019 02:24:34 GMT etag: - - '"1D59A8C7CC1C3F0"' ->>>>>>> Re-record test for app service + - '"1D5BF8166D5C630"' expires: - '-1' pragma: @@ -539,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '496' x-powered-by: - ASP.NET status: @@ -563,44 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="eKZmeg33zk7iHSmTbroaPrcDdgPvxqeEqzr09Wnd2RgR6hqieleDctcQeCmv" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -608,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:18 GMT -======= - - Thu, 14 Nov 2019 01:40:41 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:35 GMT expires: - '-1' pragma: @@ -650,34 +532,27 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:18 GMT -======= - - Thu, 14 Nov 2019 01:40:43 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:36 GMT expires: - '-1' pragma: @@ -711,8 +586,13 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": + "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -723,44 +603,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1072' + - '1465' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3177' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:21 GMT - etag: - - '"1D599E98A0041C0"' -======= - - Thu, 14 Nov 2019 01:40:45 GMT + - Tue, 31 Dec 2019 02:24:38 GMT etag: - - '"1D59A8C7CC1C3F0"' ->>>>>>> Re-record test for app service + - '"1D5BF8166D5C630"' expires: - '-1' pragma: @@ -778,11 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1194' ->>>>>>> Re-record test for app service + - '1193' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml index d7d4376fc0f..fa1759d3efc 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:06Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:46 GMT -======= - - Thu, 14 Nov 2019 01:40:10 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:50 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:48 GMT -======= - - Thu, 14 Nov 2019 01:40:11 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:52 GMT expires: - '-1' pragma: @@ -115,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -135,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:06Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -156,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:48 GMT -======= - - Thu, 14 Nov 2019 01:40:11 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:52 GMT expires: - '-1' pragma: @@ -193,27 +168,17 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23549,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":33330,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":35419,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35419","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -222,11 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:01 GMT -======= - - Thu, 14 Nov 2019 01:40:18 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:01 GMT expires: - '-1' pragma: @@ -244,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - '1197' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -268,27 +225,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23549,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":33330,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":35419,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35419","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -297,11 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:01 GMT -======= - - Thu, 14 Nov 2019 01:40:19 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:02 GMT expires: - '-1' pragma: @@ -342,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -364,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:03 GMT -======= - - Thu, 14 Nov 2019 01:40:19 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:03 GMT expires: - '-1' pragma: @@ -386,11 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> Re-record test for app service + - '1198' x-powered-by: - ASP.NET status: @@ -410,27 +340,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23549,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23549","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":33330,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33330","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":35419,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35419","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -439,11 +359,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:03 GMT -======= - - Thu, 14 Nov 2019 01:40:20 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:04 GMT expires: - '-1' pragma: @@ -486,46 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:07.46","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"08A385EAF036166EDDEFE9D1157A08BC118561902E985E7881F41C376C4C796A","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:23.613","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6B30CA540DDECBDDA1C263434C2BD24DE9B363C5CC2E28E8411F3CD73374B9A2","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:08.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CF9E3B0C9BA16E3B8BC797BAC9817E5568B1836A1D632CF5FD5167133575B2A7","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3539' + - '3519' content-type: - application/json date: - - Wed, 13 Nov 2019 06:14:24 GMT + - Tue, 31 Dec 2019 02:24:25 GMT etag: - - '"1D599E98EBAC995"' -======= - - '3520' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:40:40 GMT - etag: - - '"1D59A8C7BD31E30"' ->>>>>>> Re-record test for app service + - '"1D5BF8161F41450"' expires: - '-1' pragma: @@ -543,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '496' x-powered-by: - ASP.NET status: @@ -567,44 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="7pxW2B7dnvqfD3ZHvGaeWbkhX6vxfHgc2WrzDJ4CwhPrwTljasyzildorAap" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -612,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:25 GMT -======= - - Thu, 14 Nov 2019 01:40:40 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:25 GMT expires: - '-1' pragma: @@ -654,19 +532,15 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:06Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -675,11 +549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:25 GMT -======= - - Thu, 14 Nov 2019 01:40:41 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:26 GMT expires: - '-1' pragma: @@ -713,13 +583,8 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT @@ -727,26 +592,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"e232ad50-f887-4f58-9102-8a68fefe26c5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"cf728304-8e68-4163-8f9b-498089de666e\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"9f8f7d70-c9aa-4080-ab51-d4ff543a5ee4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f8c9d97d-2d1f-4901-a83d-5ae829bdff38\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"6f5631f4-2d8c-4adf-bbe8-0b371c8e79c4\",\r\n \"addressSpace\": ->>>>>>> Re-record test for app service + \ \"resourceGuid\": \"76c14ddc-b1c6-4508-ba7b-b1430d434662\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"e232ad50-f887-4f58-9102-8a68fefe26c5\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"9f8f7d70-c9aa-4080-ab51-d4ff543a5ee4\\\"\",\r\n ->>>>>>> Re-record test for app service + \ \"etag\": \"W/\\\"f8c9d97d-2d1f-4901-a83d-5ae829bdff38\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -755,11 +609,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fbb18d1e-7f11-46bc-bf19-1f67d5bae269?api-version=2019-09-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7963a6ba-ecd5-430e-a94a-bd83e8969212?api-version=2019-09-01 ->>>>>>> Re-record test for app service + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a17fb5b5-9eb9-4141-ba17-e8245e47abb5?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -767,11 +617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:29 GMT -======= - - Thu, 14 Nov 2019 01:40:43 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:29 GMT expires: - '-1' pragma: @@ -784,13 +630,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 7f41f737-30fc-4c88-9901-9cca19d04352 -======= - - 34dd120a-962b-43de-8efa-14da8fed245a ->>>>>>> Re-record test for app service + - 3e2f2f5b-f3c3-49ec-b094-b57ebed55f32 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -808,67 +650,10 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fbb18d1e-7f11-46bc-bf19-1f67d5bae269?api-version=2019-09-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 06:14:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5ac9908e-105e-4ee9-a271-3180d4e167fb - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --address-prefixes --subnet-name --subnet-prefixes - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fbb18d1e-7f11-46bc-bf19-1f67d5bae269?api-version=2019-09-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7963a6ba-ecd5-430e-a94a-bd83e8969212?api-version=2019-09-01 ->>>>>>> Re-record test for app service + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a17fb5b5-9eb9-4141-ba17-e8245e47abb5?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -880,11 +665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:43 GMT -======= - - Thu, 14 Nov 2019 01:40:47 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:34 GMT expires: - '-1' pragma: @@ -901,11 +682,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 136ff14a-fc2f-4269-9a14-84575c36f98c -======= - - a1d674d5-ba95-414d-85f0-67bdb5efcbb1 ->>>>>>> Re-record test for app service + - eff59c5e-61cc-424c-8a7d-93bfc4ea528b status: code: 200 message: OK @@ -923,38 +700,22 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"0b70db94-a938-449b-a14f-b3afb433442f\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"cf728304-8e68-4163-8f9b-498089de666e\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"b5e2150c-18e6-4139-9868-16914deaf4ad\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"adb7ac47-c765-4cda-a664-cf2580c64d0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6f5631f4-2d8c-4adf-bbe8-0b371c8e79c4\",\r\n \"addressSpace\": ->>>>>>> Re-record test for app service + \ \"resourceGuid\": \"76c14ddc-b1c6-4508-ba7b-b1430d434662\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"0b70db94-a938-449b-a14f-b3afb433442f\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"b5e2150c-18e6-4139-9868-16914deaf4ad\\\"\",\r\n ->>>>>>> Re-record test for app service + \ \"etag\": \"W/\\\"adb7ac47-c765-4cda-a664-cf2580c64d0a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -969,15 +730,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:44 GMT - etag: - - W/"0b70db94-a938-449b-a14f-b3afb433442f" -======= - - Thu, 14 Nov 2019 01:40:48 GMT + - Tue, 31 Dec 2019 02:24:34 GMT etag: - - W/"b5e2150c-18e6-4139-9868-16914deaf4ad" ->>>>>>> Re-record test for app service + - W/"adb7ac47-c765-4cda-a664-cf2580c64d0a" expires: - '-1' pragma: @@ -994,11 +749,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 75dbed34-6f5a-4cd2-812c-d374d78863e3 -======= - - be0ea838-0801-48a0-8f6a-39aaf8e61932 ->>>>>>> Re-record test for app service + - 893a56e6-b193-40e2-8847-306d339f9191 status: code: 200 message: OK @@ -1016,34 +767,27 @@ interactions: ParameterSetName: - -g -n --rule-name --action --subnet --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:45 GMT -======= - - Thu, 14 Nov 2019 01:40:49 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:35 GMT expires: - '-1' pragma: @@ -1079,34 +823,27 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:45 GMT -======= - - Thu, 14 Nov 2019 01:40:50 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:37 GMT expires: - '-1' pragma: @@ -1142,13 +879,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET @@ -1156,11 +888,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"0b70db94-a938-449b-a14f-b3afb433442f\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"b5e2150c-18e6-4139-9868-16914deaf4ad\\\"\",\r\n \"properties\": ->>>>>>> Re-record test for app service + \ \"etag\": \"W/\\\"adb7ac47-c765-4cda-a664-cf2580c64d0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: @@ -1171,15 +899,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:45 GMT + - Tue, 31 Dec 2019 02:24:37 GMT etag: - - W/"0b70db94-a938-449b-a14f-b3afb433442f" -======= - - Thu, 14 Nov 2019 01:40:49 GMT - etag: - - W/"b5e2150c-18e6-4139-9868-16914deaf4ad" ->>>>>>> Re-record test for app service + - W/"adb7ac47-c765-4cda-a664-cf2580c64d0a" expires: - '-1' pragma: @@ -1196,24 +918,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - f8074a84-2c25-4359-aec8-b3681b7985b9 -======= - - ec3009e4-b841-4bad-bc6c-64508935b2b9 ->>>>>>> Re-record test for app service + - 94c5401f-4eee-40dd-822b-741590634952 status: code: 200 message: OK - request: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": -<<<<<<< HEAD "Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}, "name": - "endpoint-subnet", "etag": "W/\\"0b70db94-a938-449b-a14f-b3afb433442f\\""}''' -======= - "Microsoft.Web"}], "delegations": [], "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "endpoint-subnet"}''' ->>>>>>> Re-record test for app service + "endpoint-subnet", "etag": "W/\\"adb7ac47-c765-4cda-a664-cf2580c64d0a\\""}''' headers: Accept: - application/json @@ -1224,23 +937,14 @@ interactions: Connection: - keep-alive Content-Length: -<<<<<<< HEAD - '479' -======= - - '484' ->>>>>>> Re-record test for app service Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT @@ -1248,11 +952,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1fdc448d-9d41-4771-9ed8-4358eb217b4a\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"ee8fccb5-1675-41c3-83a2-60f29be31676\\\"\",\r\n \"properties\": ->>>>>>> Re-record test for app service + \ \"etag\": \"W/\\\"84f7cd24-b3dd-4fd2-8894-62dfa1462802\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1260,11 +960,7 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb24e96d-5bb7-445f-8816-354347d98de9?api-version=2019-02-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8339bd73-5ea7-4abd-807b-af6dd2365517?api-version=2019-09-01 ->>>>>>> Re-record test for app service + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0bbd744-0c32-4692-b29b-7d51e2590e31?api-version=2019-02-01 cache-control: - no-cache content-length: @@ -1272,11 +968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:46 GMT -======= - - Thu, 14 Nov 2019 01:40:50 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:37 GMT expires: - '-1' pragma: @@ -1293,15 +985,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 7b9b300d-967f-461a-afc5-0e5fab6bc96c - x-ms-ratelimit-remaining-subscription-writes: - - '1199' -======= - - 95902bc6-bc84-4007-9739-9f02eaf806f2 + - 86b14cc6-f22f-410c-8dba-eac615fb71f8 x-ms-ratelimit-remaining-subscription-writes: - - '1194' ->>>>>>> Re-record test for app service + - '1192' status: code: 200 message: OK @@ -1319,67 +1005,10 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb24e96d-5bb7-445f-8816-354347d98de9?api-version=2019-02-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 06:14:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 954695ed-7a69-419e-a4e4-a3c66196d1a6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config access-restriction add - Connection: - - keep-alive - ParameterSetName: - - -g -n --rule-name --action --vnet-name --subnet --priority - User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb24e96d-5bb7-445f-8816-354347d98de9?api-version=2019-02-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8339bd73-5ea7-4abd-807b-af6dd2365517?api-version=2019-09-01 ->>>>>>> Re-record test for app service + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0bbd744-0c32-4692-b29b-7d51e2590e31?api-version=2019-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1391,11 +1020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:15:00 GMT -======= - - Thu, 14 Nov 2019 01:40:55 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:41 GMT expires: - '-1' pragma: @@ -1412,11 +1037,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - ab74135f-07a1-4ce2-8954-6755d7afe989 -======= - - c20f5fdf-0052-4442-95b9-c21947f589ab ->>>>>>> Re-record test for app service + - 9571d499-20cd-4249-9a94-2f82adc12858 status: code: 200 message: OK @@ -1434,23 +1055,14 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet?api-version=2019-02-01 response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"dab39763-1529-46b5-848d-df0f25871bfa\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"d54173cb-bd38-443c-84ac-8871436e74a1\\\"\",\r\n \"properties\": ->>>>>>> Re-record test for app service + \ \"etag\": \"W/\\\"71577ef8-16d2-49a3-a9a9-5974a57861f5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1464,15 +1076,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:15:01 GMT + - Tue, 31 Dec 2019 02:24:41 GMT etag: - - W/"dab39763-1529-46b5-848d-df0f25871bfa" -======= - - Thu, 14 Nov 2019 01:40:55 GMT - etag: - - W/"d54173cb-bd38-443c-84ac-8871436e74a1" ->>>>>>> Re-record test for app service + - W/"71577ef8-16d2-49a3-a9a9-5974a57861f5" expires: - '-1' pragma: @@ -1489,16 +1095,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 59187f8c-38ff-48d4-983f-c2baf9685891 -======= - - ddc849f6-8232-4f23-9a58-90b8e755463f ->>>>>>> Re-record test for app service + - 5a9de09c-7e7c-4103-8e7b-8c17a8e4dc62 status: code: 200 message: OK - request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + body: 'b''{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": @@ -1506,11 +1108,17 @@ interactions: 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}, {"vnetSubnetResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet", + "action": "Allow", "tag": "Default", "priority": 150, "name": "vnet-integration"}], + "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "preWarmedInstanceCount": 0}}''' headers: Accept: - application/json @@ -1521,44 +1129,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1072' + - '1703' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3415' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:15:05 GMT - etag: - - '"1D599E98EBAC995"' -======= - - Thu, 14 Nov 2019 01:40:57 GMT + - Tue, 31 Dec 2019 02:24:46 GMT etag: - - '"1D59A8C7BD31E30"' ->>>>>>> Re-record test for app service + - '"1D5BF8161F41450"' expires: - '-1' pragma: @@ -1576,11 +1175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1198' ->>>>>>> Re-record test for app service + - '1195' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml index 647f2061f94..de8477c5785 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:17Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:46 GMT -======= - - Thu, 14 Nov 2019 01:40:20 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:07 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:48 GMT -======= - - Thu, 14 Nov 2019 01:40:22 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:08 GMT expires: - '-1' pragma: @@ -115,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -135,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:17Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -156,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:47 GMT -======= - - Thu, 14 Nov 2019 01:40:22 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:09 GMT expires: - '-1' pragma: @@ -193,27 +168,17 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":22809,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22809","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":23611,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23611","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":29046,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29046","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -222,11 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:57 GMT -======= - - Thu, 14 Nov 2019 01:40:29 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:16 GMT expires: - '-1' pragma: @@ -244,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> Re-record test for app service + - '1196' x-powered-by: - ASP.NET status: @@ -268,27 +225,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":22809,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22809","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":23611,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23611","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":29046,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29046","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -297,11 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:58 GMT -======= - - Thu, 14 Nov 2019 01:40:30 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:17 GMT expires: - '-1' pragma: @@ -342,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -364,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:59 GMT -======= - - Thu, 14 Nov 2019 01:40:31 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:17 GMT expires: - '-1' pragma: @@ -386,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -406,27 +340,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":22809,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22809","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":23611,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23611","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":29046,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29046","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -435,11 +359,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:59 GMT -======= - - Thu, 14 Nov 2019 01:40:32 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:18 GMT expires: - '-1' pragma: @@ -482,46 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:04.0333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AA6395449F105BEA12DDEC9C3E2E57FDC6553D0D1A34A3B3DDE9FC482CF0716F","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:37.4433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5B0C1A053459CA0BA8DBACFAE3A8037B91122E753111F39723E4B9E1342FA8C0","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:21.607","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6216E0CE5B2BF326D8FFB148D30C7064CA38FFE3AFD93E08B4DCF5D77C7C03B6","kind":"app","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3542' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 06:14:20 GMT - etag: - - '"1D599E98D6C9EB5"' -======= - - '3544' + - '3538' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:52 GMT + - Tue, 31 Dec 2019 02:24:38 GMT etag: - - '"1D59A8C8406C735"' ->>>>>>> Re-record test for app service + - '"1D5BF81699115A0"' expires: - '-1' pragma: @@ -539,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -563,44 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="RlXK6Bb1Lh7RipxTj5Ky3Ly11Eu28d3PkRmFeoA4FaLyqhXtwcztli85S4ve" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -608,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:22 GMT -======= - - Thu, 14 Nov 2019 01:40:52 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:40 GMT expires: - '-1' pragma: @@ -650,34 +532,27 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:23 GMT -======= - - Thu, 14 Nov 2019 01:40:54 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:41 GMT expires: - '-1' pragma: @@ -711,8 +586,13 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", + "action": "Allow", "tag": "Default", "priority": 200, "name": "developers"}], + "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -723,36 +603,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1072' + - '1465' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3206' + - '3177' content-type: - application/json date: - - Wed, 13 Nov 2019 06:14:26 GMT + - Tue, 31 Dec 2019 02:24:42 GMT etag: - - '"1D599E98D6C9EB5"' + - '"1D5BF81699115A0"' expires: - '-1' pragma: @@ -770,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' x-powered-by: - ASP.NET status: @@ -790,27 +669,27 @@ interactions: ParameterSetName: - -g -n --rule-name User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3224' + - '3195' content-type: - application/json date: - - Wed, 13 Nov 2019 06:14:26 GMT + - Tue, 31 Dec 2019 02:24:44 GMT expires: - '-1' pragma: @@ -837,7 +716,7 @@ interactions: "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", + false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": @@ -848,7 +727,7 @@ interactions: 2147483647, "name": "Deny all", "description": "Deny all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -860,43 +739,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1397' + - '1398' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3072' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:30 GMT - etag: - - '"1D599E9999876F5"' -======= - - Thu, 14 Nov 2019 01:40:56 GMT + - Tue, 31 Dec 2019 02:24:45 GMT etag: - - '"1D59A8C8406C735"' ->>>>>>> Re-record test for app service + - '"1D5BF8176252590"' expires: - '-1' pragma: @@ -914,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml index 2d8bfaf548e..68a6bc9e5c4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:57Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:46 GMT -======= - - Thu, 14 Nov 2019 01:40:00 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:48 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:47 GMT -======= - - Thu, 14 Nov 2019 01:40:00 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:47 GMT expires: - '-1' pragma: @@ -115,11 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - '1198' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -139,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:39:57Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -160,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:47 GMT -======= - - Thu, 14 Nov 2019 01:40:00 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:48 GMT expires: - '-1' pragma: @@ -197,27 +168,17 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":22810,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22810","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":24700,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24700","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":26039,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26039","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -226,11 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:57 GMT -======= - - Thu, 14 Nov 2019 01:40:08 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:59 GMT expires: - '-1' pragma: @@ -248,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1198' ->>>>>>> Re-record test for app service + - '1195' x-powered-by: - ASP.NET status: @@ -272,27 +225,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":22810,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22810","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":24700,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24700","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":26039,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26039","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -301,11 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:58 GMT -======= - - Thu, 14 Nov 2019 01:40:09 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:01 GMT expires: - '-1' pragma: @@ -346,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -368,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:59 GMT -======= - - Thu, 14 Nov 2019 01:40:09 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:02 GMT expires: - '-1' pragma: @@ -390,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -410,27 +340,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":22810,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22810","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":24700,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24700","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":26039,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26039","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -439,11 +359,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:00 GMT -======= - - Thu, 14 Nov 2019 01:40:10 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:03 GMT expires: - '-1' pragma: @@ -486,46 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:06.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"21124B1D3DC6AAFB8BAD11D122A6BD19D782E8C166429030314B9A2512771F81","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:14.043","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1F5C034A8D979EB2737D4AF1AE8A8B2446B9E40CE201BFA6B7972EAF37ECD45B","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:09.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3A4B62B1983057A0466DF259802E2FAA710F9A3EAEF7D5AAB53B4EE172E66AA4","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3537' + - '3577' content-type: - application/json date: - - Wed, 13 Nov 2019 06:14:21 GMT + - Tue, 31 Dec 2019 02:24:23 GMT etag: - - '"1D599E98DEF5640"' -======= - - '3524' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:40:32 GMT - etag: - - '"1D59A8C764D3D10"' ->>>>>>> Re-record test for app service + - '"1D5BF81622AF5CB"' expires: - '-1' pragma: @@ -567,44 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="ZMFzdpgCtgYobiyeXC7XEueuaDv2mwemvBp0L6h3myTMtoQhjn0mtleEydeh" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -612,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:22 GMT -======= - - Thu, 14 Nov 2019 01:40:33 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:24 GMT expires: - '-1' pragma: @@ -634,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -654,34 +532,27 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:23 GMT -======= - - Thu, 14 Nov 2019 01:40:34 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:26 GMT expires: - '-1' pragma: @@ -715,8 +586,13 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}, {"ipAddress": "130.220.0.0/27", "action": + "Allow", "tag": "Default", "priority": 200, "name": "developers"}], "scmIpSecurityRestrictionsUseMain": + false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -727,36 +603,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1072' + - '1465' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3206' + - '3177' content-type: - application/json date: - - Wed, 13 Nov 2019 06:14:24 GMT + - Tue, 31 Dec 2019 02:24:28 GMT etag: - - '"1D599E98DEF5640"' + - '"1D5BF81622AF5CB"' expires: - '-1' pragma: @@ -774,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -794,27 +669,27 @@ interactions: ParameterSetName: - -g -n --rule-name --scm-site User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3224' + - '3195' content-type: - application/json date: - - Wed, 13 Nov 2019 06:14:26 GMT + - Tue, 31 Dec 2019 02:24:28 GMT expires: - '-1' pragma: @@ -841,7 +716,7 @@ interactions: "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", + false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": @@ -853,7 +728,7 @@ interactions: [{"ipAddress": "Any", "action": "Deny", "priority": 2147483647, "name": "Deny all", "description": "Deny all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -864,43 +739,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1397' + - '1398' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --scm-site User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3072' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:29 GMT - etag: - - '"1D599E998F83F55"' -======= - - Thu, 14 Nov 2019 01:40:37 GMT + - Tue, 31 Dec 2019 02:24:30 GMT etag: - - '"1D59A8C764D3D10"' ->>>>>>> Re-record test for app service + - '"1D5BF816D6227D5"' expires: - '-1' pragma: @@ -918,11 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - '1194' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml index a96d56e1cbb..a357c1aa932 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:35Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:45 GMT -======= - - Wed, 13 Nov 2019 10:56:38 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:59 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:45 GMT -======= - - Wed, 13 Nov 2019 10:56:40 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:00 GMT expires: - '-1' pragma: @@ -115,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -135,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:35Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -156,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:46 GMT -======= - - Wed, 13 Nov 2019 10:56:40 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:01 GMT expires: - '-1' pragma: @@ -193,40 +168,26 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23642,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23642","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":50104,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_50104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":146888,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146888","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:55 GMT -======= - - Wed, 13 Nov 2019 10:56:47 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:11 GMT expires: - '-1' pragma: @@ -244,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1198' ->>>>>>> Re-record test for app service + - '1197' x-powered-by: - ASP.NET status: @@ -268,40 +225,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23642,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23642","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":50104,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_50104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":146888,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146888","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:57 GMT -======= - - Wed, 13 Nov 2019 10:56:48 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:13 GMT expires: - '-1' pragma: @@ -342,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -364,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:57 GMT -======= - - Wed, 13 Nov 2019 10:56:49 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:14 GMT expires: - '-1' pragma: @@ -386,11 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - '1197' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -410,40 +340,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23642,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23642","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":50104,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_50104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":146888,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146888","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:59 GMT -======= - - Wed, 13 Nov 2019 10:56:50 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:15 GMT expires: - '-1' pragma: @@ -486,42 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:05.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CAA165920CC1F7DEB5C4FF3058136D6A163E2BBEBBCFCB365D34DF829562871C","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:56:53.597","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCADAAFC83A98D40EA9C840AB681D24DE3D348F61EA08E0B6719A219015F23F3","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:19.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5B6F5BE3F92A4A55157A82EE5112B64309330FDDAC55A06BF8B00ACF7516E009","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3527' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:22 GMT - etag: - - '"1D599E98DAAAC20"' -======= - - Wed, 13 Nov 2019 10:57:09 GMT + - Tue, 31 Dec 2019 02:24:37 GMT etag: - - '"1D59A110F669400"' ->>>>>>> Re-record test for app service + - '"1D5BF816884FCD0"' expires: - '-1' pragma: @@ -563,44 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="lzpPXav1C50jN2nJpyA3j6yueebo7nnLWM3jQkhQxfABfkpsY2bhiJMqAnYf" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -608,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:25 GMT -======= - - Wed, 13 Nov 2019 10:57:10 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:38 GMT expires: - '-1' pragma: @@ -650,34 +532,27 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:25 GMT -======= - - Wed, 13 Nov 2019 10:57:11 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:40 GMT expires: - '-1' pragma: @@ -711,8 +586,12 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -723,50 +602,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1071' + - '1355' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2902' + - '3071' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:30 GMT - etag: - - '"1D599E98DAAAC20"' -======= - - Wed, 13 Nov 2019 10:57:13 GMT + - Tue, 31 Dec 2019 02:24:41 GMT etag: - - '"1D59A110F669400"' ->>>>>>> Re-record test for app service + - '"1D5BF816884FCD0"' expires: - '-1' pragma: @@ -784,11 +648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1190' ->>>>>>> Re-record test for app service + - '1198' x-powered-by: - ASP.NET status: @@ -808,40 +668,27 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2920' + - '3089' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:31 GMT -======= - - Wed, 13 Nov 2019 10:57:14 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:43 GMT expires: - '-1' pragma: @@ -875,8 +722,12 @@ interactions: "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -887,50 +738,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1108' + - '1392' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3072' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:38 GMT - etag: - - '"1D599E99C2919EB"' -======= - - Wed, 13 Nov 2019 10:57:16 GMT + - Tue, 31 Dec 2019 02:24:44 GMT etag: - - '"1D59A111B449A60"' ->>>>>>> Re-record test for app service + - '"1D5BF81755BBB10"' expires: - '-1' pragma: @@ -948,11 +784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1195' ->>>>>>> Re-record test for app service + - '1196' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml index ca721a02859..be7d0f25182 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:30Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:47 GMT -======= - - Wed, 13 Nov 2019 10:56:34 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:44 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:47 GMT -======= - - Wed, 13 Nov 2019 10:56:36 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:45 GMT expires: - '-1' pragma: @@ -115,11 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - '1197' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -139,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:56:30Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:41Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -160,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:48 GMT -======= - - Wed, 13 Nov 2019 10:56:36 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:45 GMT expires: - '-1' pragma: @@ -197,40 +168,26 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":145426,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145426","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":33283,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33283","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":23237,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23237","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1524' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:57 GMT -======= - - Wed, 13 Nov 2019 10:56:43 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:55 GMT expires: - '-1' pragma: @@ -248,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> Re-record test for app service + - '1194' x-powered-by: - ASP.NET status: @@ -272,40 +225,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":145426,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145426","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":33283,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33283","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":23237,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23237","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1524' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:58 GMT -======= - - Wed, 13 Nov 2019 10:56:45 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:55 GMT expires: - '-1' pragma: @@ -346,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -368,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:59 GMT -======= - - Wed, 13 Nov 2019 10:56:45 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:57 GMT expires: - '-1' pragma: @@ -390,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -410,40 +340,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":145426,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145426","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":33283,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33283","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":23237,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23237","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1524' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:59 GMT -======= - - Wed, 13 Nov 2019 10:56:45 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:23:58 GMT expires: - '-1' pragma: @@ -486,46 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:05.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BD497F33D097DD288B288ADBE7601C79AFB96AD949F9BF847594926077AFD3F3","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:56:49.427","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7A6D31E754AA072E70F0A6D0F27285583B70B3D50BEB5E3295B9F73669E1B07A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:01.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2F8E6BDE3A1BD0C335BE8B88BE587240245BD9680ABAF20A284215E5AECC2E6B","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3527' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 06:14:21 GMT - etag: - - '"1D599E98DABBD90"' -======= - - '3520' + - '3529' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:06 GMT + - Tue, 31 Dec 2019 02:24:19 GMT etag: - - '"1D59A110CE4A410"' ->>>>>>> Re-record test for app service + - '"1D5BF815DD7AE40"' expires: - '-1' pragma: @@ -567,44 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="qKKmdk3wHagldhEEdt7wiDyzHS4FxabBkhxzDb8SqSwKpC5cfq0kA5fFwdgG" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -612,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:22 GMT -======= - - Wed, 13 Nov 2019 10:57:07 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:20 GMT expires: - '-1' pragma: @@ -654,34 +532,27 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:23 GMT -======= - - Wed, 13 Nov 2019 10:57:07 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:22 GMT expires: - '-1' pragma: @@ -715,8 +586,12 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": true, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": + 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": true, + "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -727,44 +602,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1071' + - '1355' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2902' + - '3071' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:25 GMT + - Tue, 31 Dec 2019 02:24:23 GMT etag: - - '"1D599E98DABBD90"' -======= - - Wed, 13 Nov 2019 10:57:09 GMT - etag: - - '"1D59A110CE4A410"' ->>>>>>> Re-record test for app service + - '"1D5BF815DD7AE40"' expires: - '-1' pragma: @@ -782,11 +648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - '1191' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml index b60f83c32b3..03e05015a96 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:10Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:46 GMT -======= - - Thu, 14 Nov 2019 01:40:14 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:01 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:47 GMT -======= - - Thu, 14 Nov 2019 01:40:14 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:01 GMT expires: - '-1' pragma: @@ -115,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -135,19 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:13:37Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:10Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:57Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -156,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:46 GMT -======= - - Thu, 14 Nov 2019 01:40:15 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:02 GMT expires: - '-1' pragma: @@ -193,40 +168,26 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23979,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23979","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":24044,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24044","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":146889,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146889","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:54 GMT -======= - - Thu, 14 Nov 2019 01:40:21 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:09 GMT expires: - '-1' pragma: @@ -244,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> Re-record test for app service + - '1187' x-powered-by: - ASP.NET status: @@ -268,40 +225,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23979,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23979","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":24044,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24044","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":146889,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146889","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:55 GMT -======= - - Thu, 14 Nov 2019 01:40:21 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:10 GMT expires: - '-1' pragma: @@ -342,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -364,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:56 GMT -======= - - Thu, 14 Nov 2019 01:40:22 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:12 GMT expires: - '-1' pragma: @@ -386,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -406,40 +340,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":23979,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23979","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":24044,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24044","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":146889,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146889","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:13:57 GMT -======= - - Thu, 14 Nov 2019 01:40:23 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:14 GMT expires: - '-1' pragma: @@ -482,42 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:02.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1611A51A05298CA20BC74375BF6D4C1544AD2F409A22F468DA591817DD0480CA","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:26.1366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D488C807D15CBD5CF56F7358C6E9B423A2FC3D9A0E303AB6538B0A746AD544E5","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:20.223","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4CDB40E5D29C3FBA4EDC17D3D83A4B7A9B8F83F2BF7B4F05959B51A11048231D","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3530' + - '3528' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:19 GMT + - Tue, 31 Dec 2019 02:26:37 GMT etag: - - '"1D599E98C00718B"' -======= - - Thu, 14 Nov 2019 01:40:42 GMT - etag: - - '"1D59A8C7D4D9635"' ->>>>>>> Re-record test for app service + - '"1D5BF81B054C6D0"' expires: - '-1' pragma: @@ -559,43 +464,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + msdeploySite="cli-webapp-nwr000002" userName="$cli-webapp-nwr000002" userPWD="9lYWcBTbbDbLPc9ahF2PH0XWiiKZlWv28i3ESwbLxjFNxuyoXsaqheSoXg9t" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> Re-record test for app service + userPWD="9lYWcBTbbDbLPc9ahF2PH0XWiiKZlWv28i3ESwbLxjFNxuyoXsaqheSoXg9t" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -603,15 +494,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:20 GMT -======= - - Thu, 14 Nov 2019 01:40:43 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:37 GMT expires: - '-1' pragma: @@ -625,7 +512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -645,34 +532,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3086' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:21 GMT -======= - - Thu, 14 Nov 2019 01:40:44 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:26:39 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml index e0ae00ba3fd..25f25eced46 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:14:25Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:03Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:29 GMT -======= - - Thu, 14 Nov 2019 01:40:07 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:25 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:30 GMT -======= - - Thu, 14 Nov 2019 01:40:10 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:26 GMT expires: - '-1' pragma: @@ -115,11 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> Re-record test for app service + - '1196' x-powered-by: - ASP.NET status: @@ -139,19 +118,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:14:25Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:03Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -160,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:30 GMT -======= - - Thu, 14 Nov 2019 01:40:09 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:27 GMT expires: - '-1' pragma: @@ -197,27 +168,17 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":32309,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_32309","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":33329,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33329","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":25556,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25556","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -226,11 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:39 GMT -======= - - Thu, 14 Nov 2019 01:40:16 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:37 GMT expires: - '-1' pragma: @@ -248,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - '1199' -======= - - '1191' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -272,27 +225,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":32309,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_32309","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":33329,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33329","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":25556,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25556","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -301,11 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:39 GMT -======= - - Thu, 14 Nov 2019 01:40:17 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:39 GMT expires: - '-1' pragma: @@ -346,17 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -368,11 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:41 GMT -======= - - Thu, 14 Nov 2019 01:40:17 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:39 GMT expires: - '-1' pragma: @@ -390,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -410,27 +340,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":32309,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-047_32309","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":33329,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33329","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service + US","properties":{"serverFarmId":25556,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25556","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -439,11 +359,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:14:42 GMT -======= - - Thu, 14 Nov 2019 01:40:18 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:24:39 GMT expires: - '-1' pragma: @@ -469,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -480,52 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '538' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:46.507","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8CE8CD5EDCC160E2E73DD859174BA01E62DF620E0F112D45FF5011199B0C19AD","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:23.34","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5E9DB63FB1595CAF86BD1C0BCD6678788820CBD168B88926DEBF4DC3C0F26F1B","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:43.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EEA509D9672ABE9EBA3BE6DEDF0FD04077D6729FFDF5AD8C7C2171FC7AFD414D","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3531' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 06:15:03 GMT - etag: - - '"1D599E9A61C4D40"' -======= - - '3522' + - '3547' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:39 GMT + - Tue, 31 Dec 2019 02:25:02 GMT etag: - - '"1D59A8C7BB5AB20"' ->>>>>>> Re-record test for app service + - '"1D5BF817702F56B"' expires: - '-1' pragma: @@ -543,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -567,44 +465,29 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + userPWD="K5HLDexYStdc8blm7coZcvjRpS0viiyWsu8d3ns0eEzbuhhycJw92DvGr6aL" destinationAppUrl="http://cli-webapp-nwr000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -612,15 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:15:04 GMT -======= - - Thu, 14 Nov 2019 01:40:40 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:25:04 GMT expires: - '-1' pragma: @@ -654,46 +533,27 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:14:47.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8CE8CD5EDCC160E2E73DD859174BA01E62DF620E0F112D45FF5011199B0C19AD","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:23.89","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5E9DB63FB1595CAF86BD1C0BCD6678788820CBD168B88926DEBF4DC3C0F26F1B","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:44.5666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EEA509D9672ABE9EBA3BE6DEDF0FD04077D6729FFDF5AD8C7C2171FC7AFD414D","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3528' + - '3545' content-type: - application/json date: - - Wed, 13 Nov 2019 06:15:05 GMT + - Tue, 31 Dec 2019 02:25:06 GMT etag: - - '"1D599E9A61C4D40"' -======= - - '3520' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:40:42 GMT - etag: - - '"1D59A8C7BB5AB20"' ->>>>>>> Re-record test for app service + - '"1D5BF817702F56B"' expires: - '-1' pragma: @@ -736,46 +596,27 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage","name":"cli-webapp-nwr000002/stage","type":"Microsoft.Web/sites/slots","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"cli-webapp-nwr000002(stage)","state":"Running","hostNames":["cli-webapp-nwr000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002-stage.azurewebsites.net","cli-webapp-nwr000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:15:11.103","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002__24aa","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"38B0F4D14787492187AB3444DA497F12B15295931548AA2133829415FE3A24AB","kind":"app","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-webapp-nwr000002(stage)","state":"Running","hostNames":["cli-webapp-nwr000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002-stage.azurewebsites.net","cli-webapp-nwr000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:45.86","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002__1ebf","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"10E3A49F88036344667FFF31456B6D75B5EBF549E3C026E6D3CC83E55BA92523","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","properties":{"name":"cli-webapp-nwr000002(stage)","state":"Running","hostNames":["cli-webapp-nwr000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002-stage.azurewebsites.net","cli-webapp-nwr000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:12.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002__d65c","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F9A4C08A8E2B4AB51BA6E98240FC6B3319CD36EB5D5588168CD29419A4933AF1","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3604' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 06:15:28 GMT - etag: - - '"1D599E9A61C4D40"' -======= - - '3595' + - '3615' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:02 GMT + - Tue, 31 Dec 2019 02:25:28 GMT etag: - - '"1D59A8C7BB5AB20"' ->>>>>>> Re-record test for app service + - '"1D5BF817702F56B"' expires: - '-1' pragma: @@ -813,34 +654,27 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2936' + - '3105' content-type: - application/json date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:15:29 GMT -======= - - Thu, 14 Nov 2019 01:41:02 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:25:29 GMT expires: - '-1' pragma: @@ -862,7 +696,6 @@ interactions: status: code: 200 message: OK -<<<<<<< HEAD - request: body: null headers: @@ -877,27 +710,27 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --slot User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3134' + - '3105' content-type: - application/json date: - - Wed, 13 Nov 2019 06:15:31 GMT + - Tue, 31 Dec 2019 02:25:30 GMT expires: - '-1' pragma: @@ -937,7 +770,7 @@ interactions: "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -948,35 +781,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1471' + - '1472' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --rule-name --action --ip-address --priority --slot User-Agent: - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage","name":"cli-webapp-nwr000002/stage","type":"Microsoft.Web/sites/slots","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3237' + - '3208' content-type: - application/json date: - - Wed, 13 Nov 2019 06:15:33 GMT + - Tue, 31 Dec 2019 02:25:32 GMT etag: - - '"1D599E9B4B83B20"' + - '"1D5BF81880E76B5"' expires: - '-1' pragma: @@ -994,12 +827,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' x-powered-by: - ASP.NET status: code: 200 message: OK -======= ->>>>>>> Re-record test for app service version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml index b984bd0a71b..dc4b4b8581d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_assign_system_identity.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:09:32 GMT + - Tue, 31 Dec 2019 02:37:39 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:33 GMT + - Tue, 31 Dec 2019 02:37:40 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1192' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:09:34 GMT + - Tue, 31 Dec 2019 02:37:41 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","name":"web-msi-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":34972,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":25561,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25561","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:40 GMT + - Tue, 31 Dec 2019 02:37:49 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1170' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","name":"web-msi-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":34972,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":25561,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25561","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:42 GMT + - Tue, 31 Dec 2019 02:37:50 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:43 GMT + - Tue, 31 Dec 2019 02:37:51 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","name":"web-msi-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":34972,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34972","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":25561,"name":"web-msi-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25561","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:45 GMT + - Tue, 31 Dec 2019 02:37:53 GMT expires: - '-1' pragma: @@ -403,26 +403,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:48.313","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:57.7933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3602' + - '3492' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:04 GMT + - Tue, 31 Dec 2019 02:38:16 GMT etag: - - '"1D59A12DD44F370"' + - '"1D5BF835010D8C0"' expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '495' x-powered-by: - ASP.NET status: @@ -465,21 +465,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003/publishxml?api-version=2019-08-01 response: body: string: @@ -487,11 +492,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:10:05 GMT + - Tue, 31 Dec 2019 02:38:17 GMT expires: - '-1' pragma: @@ -526,26 +531,26 @@ interactions: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:48.967","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:58.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3600' + - '3485' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:07 GMT + - Tue, 31 Dec 2019 02:38:18 GMT etag: - - '"1D59A12DD44F370"' + - '"1D5BF835010D8C0"' expires: - '-1' pragma: @@ -582,26 +587,26 @@ interactions: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:48.967","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:58.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3600' + - '3485' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:08 GMT + - Tue, 31 Dec 2019 02:38:20 GMT etag: - - '"1D59A12DD44F370"' + - '"1D5BF835010D8C0"' expires: - '-1' pragma: @@ -649,26 +654,26 @@ interactions: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:25.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: cache-control: - no-cache content-length: - - '3742' + - '3627' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:15 GMT + - Tue, 31 Dec 2019 02:38:27 GMT etag: - - '"1D59A12DD44F370"' + - '"1D5BF835010D8C0"' expires: - '-1' pragma: @@ -686,7 +691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '498' x-powered-by: - ASP.NET status: @@ -707,7 +712,7 @@ interactions: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET @@ -724,7 +729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:10:16 GMT + - Tue, 31 Dec 2019 02:38:28 GMT expires: - '-1' pragma: @@ -746,115 +751,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp identity assign - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --role --scope - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 5ecd2914e53b4344ab84616fe65ea681 - does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:10:19 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 400 - message: Bad Request -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp identity assign - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -g -n --role --scope - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 5ecd2914e53b4344ab84616fe65ea681 - does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:10:25 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1181' - status: - code: 400 - message: Bad Request -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + "principalId": "1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: Accept: - application/json @@ -868,75 +765,18 @@ interactions: - '233' Content-Type: - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - -g -n --role --scope User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 5ecd2914e53b4344ab84616fe65ea681 - does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:10:32 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1186' - status: - code: 400 - message: Bad Request -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7", - "principalId": "5ecd2914-e53b-4344-ab84-616fe65ea681"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp identity assign - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -g -n --role --scope - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2018-09-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-11-13T11:10:38.2346686Z","updatedOn":"2019-11-13T11:10:38.2346686Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-12-31T02:38:29.6827111Z","updatedOn":"2019-12-31T02:38:29.6827111Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -945,21 +785,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:10:42 GMT + - Tue, 31 Dec 2019 02:38:50 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1175' + - '1177' x-ms-request-charge: - - '5' + - '21' status: code: 201 message: Created @@ -978,26 +818,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:25.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: cache-control: - no-cache content-length: - - '3740' + - '3625' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:45 GMT + - Tue, 31 Dec 2019 02:38:51 GMT etag: - - '"1D59A12EC596CB0"' + - '"1D5BF83602731A0"' expires: - '-1' pragma: @@ -1034,26 +874,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:25.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: cache-control: - no-cache content-length: - - '3740' + - '3625' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:45 GMT + - Tue, 31 Dec 2019 02:38:52 GMT etag: - - '"1D59A12EC596CB0"' + - '"1D5BF83602731A0"' expires: - '-1' pragma: @@ -1090,11 +930,11 @@ interactions: - -g --assignee User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%275ecd2914-e53b-4344-ab84-616fe65ea681%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271fb43c5b-e6e7-43c7-a883-f70686939775%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -1110,19 +950,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Nov 2019 11:10:50 GMT + - Tue, 31 Dec 2019 02:38:53 GMT duration: - - '2743469' + - '2846488' expires: - '-1' ocp-aad-diagnostics-server-name: - - qbmlHRZ24ikXGPs6iC16BeVhqxmVUI3e/2/YpQxlnao= + - xvWJHMWAHzosjXNMZ9eWLFLy/hDOFxHPaxgG2NiJKnA= ocp-aad-session-key: - - wGvcInqtQh2qbpg4U01UzgOn3MG8UfWbzwmzwH5PjC5am_SRyN61s_jbPA5HxJKC0p3JtI0S_Y3R1AavzH2VH5GPJheWBFhuV893s6Tqoo8hqsH5cpMprgB-3ExdaVu8.QiUJltgZ9tysJ6EdR1U0AJfBZW6_KDrsvXOmlmHQ6m4 + - xZkPvgkslU6sRy01qHd1lDW6iDxm6aJYUw5L-nysi5cx0x8sYCR2MOamFUTxVq68CRe2E0fsswCe0Y7mPlfB4fwWJkrlcm-7Ywmg3RW5LgxLBF22rQVToK0cQFXms4g4.E26lZvxRdKHQSKxAnNOh92dRpCesX1WJAhqkJCesUDo pragma: - no-cache request-id: - - d71862ee-e37a-452a-be4d-9b8fa8a2f5c2 + - 64c0caa9-0b08-48b1-b682-0d049f84ec79 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1135,7 +975,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["5ecd2914-e53b-4344-ab84-616fe65ea681"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["1fb43c5b-e6e7-43c7-a883-f70686939775"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1154,14 +994,14 @@ interactions: - -g --assignee User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"5ecd2914-e53b-4344-ab84-616fe65ea681","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"df00b496-4722-4299-8f88-30cc2b713222","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"6EC9660480DD5930B0760E7553F0A2CEB65045B9","endDate":"2020-02-11T11:05:00Z","keyId":"12a9be24-d8f3-4e72-9aa0-b1532e05744c","startDate":"2019-11-13T11:05:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["df00b496-4722-4299-8f88-30cc2b713222","https://identity.azure.net/2eIyKqtOVywRyzdWX0WtLdViF5Q2SQdCp8o81a8SIQI="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1fb43c5b-e6e7-43c7-a883-f70686939775","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"0712f81e-9acd-4bb1-b796-1c5b0ac4a076","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"475801FC06CCD53D42ABC01FF178295200557F15","endDate":"2020-03-30T02:33:00Z","keyId":"1e71fa57-aa1d-469b-881e-53a40822ceb9","startDate":"2019-12-31T02:33:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["0712f81e-9acd-4bb1-b796-1c5b0ac4a076","https://identity.azure.net/8VLZOYMnJUQg6wmCatxnEGD8H84eePHZEgkBGmUoRF4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1174,19 +1014,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Nov 2019 11:10:51 GMT + - Tue, 31 Dec 2019 02:38:55 GMT duration: - - '4403497' + - '4545282' expires: - '-1' ocp-aad-diagnostics-server-name: - - nnwm1rHUXNOC2HCdDk0/PkC/19HDnlsfx+Y5YAxupsE= + - mSLP0F096HcWgZ27mIj4ffYCwKZWjtsGTOzQkmYcskU= ocp-aad-session-key: - - Gp0zQOEkv3eIDH_dKAWaRPH7QwthOk5-XJ2bT9GHwUsWRri9qKB5qXM5A5uuxIIz0vHoeCubB2jcygjYPhcPtnK4b62W1htBNf6_UP1HdSNo-VopntxoGuiUACCcWBAJ.L8U2BjIvOgY-PgyNndX0FyDfls1zevasx0j_RnHhjA0 + - 2__BMD2Km0dCprAf_PVce9H2fH34fvpyW2Efr4DZA-7M-Brzrt_oTOpJamPFUiFVmm8OfUAN5r0y8U9JuHKWSQTQpq22Y5DwlL7q1am-c1tvkn_5J0UMPkI25qZY2AsQ.P98t8arzOZ0yo-WJzTNETq4a0BAjtkw6emCJGDd_wjI pragma: - no-cache request-id: - - 9619fdc0-07fd-4040-917f-98311273b3f9 + - afbe2e23-8a64-4978-87b2-a89134f7099c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1213,23 +1053,23 @@ interactions: - -g --assignee User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments?$filter=atScope%28%29&api-version=2018-09-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-11-13T11:10:42.4616986Z","updatedOn":"2019-11-13T11:10:42.4616986Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-12T09:15:08.3107297Z","updatedOn":"2019-11-12T09:15:08.3107297Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54647dc6-f6f0-4ba0-af42-9770ddce6c5a","type":"Microsoft.Authorization/roleAssignments","name":"54647dc6-f6f0-4ba0-af42-9770ddce6c5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"04682e4a-6d00-4431-a67d-27d364f3a0cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T22:54:45.4500699Z","updatedOn":"2018-09-12T22:54:45.4500699Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7d54a622-bff3-4d28-90b1-faa5119abc7a","type":"Microsoft.Authorization/roleAssignments","name":"7d54a622-bff3-4d28-90b1-faa5119abc7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"056cdcb7-07df-4329-a5c1-dd8b53c85a05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:13:40.1246854Z","updatedOn":"2018-09-27T17:13:40.1246854Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c5b2ade-0f33-4d4d-b841-df57ffa2d569","type":"Microsoft.Authorization/roleAssignments","name":"1c5b2ade-0f33-4d4d-b841-df57ffa2d569"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-22T14:58:56.7424484Z","updatedOn":"2019-09-22T14:58:56.7424484Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5d758f5-4ec2-4dd5-ba95-cee5405e367c","type":"Microsoft.Authorization/roleAssignments","name":"a5d758f5-4ec2-4dd5-ba95-cee5405e367c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0a592c45-613e-4f1b-9023-7c4414fd53bf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T01:47:13.5745250Z","updatedOn":"2019-08-08T01:47:13.5745250Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d320644f-c08b-47f4-ae3b-9df595a5c368","type":"Microsoft.Authorization/roleAssignments","name":"d320644f-c08b-47f4-ae3b-9df595a5c368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-26T04:16:43.3784273Z","updatedOn":"2019-07-26T04:16:43.3784273Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a567d42-8a33-4cad-9f7b-5299a16dc269","type":"Microsoft.Authorization/roleAssignments","name":"9a567d42-8a33-4cad-9f7b-5299a16dc269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:48:59.9741186Z","updatedOn":"2018-09-18T23:48:59.9741186Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4a780b4-840e-4552-8713-7ae0c353278b","type":"Microsoft.Authorization/roleAssignments","name":"d4a780b4-840e-4552-8713-7ae0c353278b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"12229a56-a139-4df5-9873-e2d6869d6978","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-15T05:21:34.7033579Z","updatedOn":"2018-08-15T05:21:34.7033579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61bffc28-7921-4fcf-942f-d164943c7274","type":"Microsoft.Authorization/roleAssignments","name":"61bffc28-7921-4fcf-942f-d164943c7274"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"128dbb12-dd4e-4a43-b589-7a5398d8de42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:05:37.8677974Z","updatedOn":"2018-10-05T05:05:37.8677974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5882a08d-d03f-4c3d-90e5-7c74b20e81c8","type":"Microsoft.Authorization/roleAssignments","name":"5882a08d-d03f-4c3d-90e5-7c74b20e81c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"14c2ec86-db00-410f-b94d-c58509ee45c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T20:10:56.8604982Z","updatedOn":"2018-10-29T20:10:56.8604982Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7feac640-4864-4c07-b7c3-f0fec44a5032","type":"Microsoft.Authorization/roleAssignments","name":"7feac640-4864-4c07-b7c3-f0fec44a5032"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"161e0821-5f23-4360-84b5-f6531dfcad35","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:04:54.7328846Z","updatedOn":"2018-10-20T05:04:54.7328846Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/411c470b-03f6-499a-b5bf-32e5c8447641","type":"Microsoft.Authorization/roleAssignments","name":"411c470b-03f6-499a-b5bf-32e5c8447641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"182c8534-f413-487c-91a3-7addc80e35d5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:37:05.6480940Z","updatedOn":"2017-09-06T13:37:05.6480940Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0560ab5-dd8d-4978-8c9b-84768b4a9467","type":"Microsoft.Authorization/roleAssignments","name":"d0560ab5-dd8d-4978-8c9b-84768b4a9467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"18f53146-1f6c-462a-96a5-d50e1293b770","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-24T02:53:04.7484734Z","updatedOn":"2019-05-24T02:53:04.7484734Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553a3d02-d0da-4b7c-a0f1-d1298f556001","type":"Microsoft.Authorization/roleAssignments","name":"553a3d02-d0da-4b7c-a0f1-d1298f556001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-09T20:12:14.4602372Z","updatedOn":"2018-04-09T20:12:14.4602372Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d5397a6-f185-4b65-bcba-6b9f2248093a","type":"Microsoft.Authorization/roleAssignments","name":"8d5397a6-f185-4b65-bcba-6b9f2248093a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1ccb1196-3b40-438f-9be8-fd41c1b34ae1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-16T05:27:16.5640748Z","updatedOn":"2018-08-16T05:27:16.5640748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24c834d4-dba5-4aea-a42d-439588a23b0a","type":"Microsoft.Authorization/roleAssignments","name":"24c834d4-dba5-4aea-a42d-439588a23b0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1e3d4fff-f4da-4a1f-bd9d-659362b7c77f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:04:46.9757932Z","updatedOn":"2018-10-24T05:04:46.9757932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac6cb278-853b-4fa6-a5b8-d92f06e24d34","type":"Microsoft.Authorization/roleAssignments","name":"ac6cb278-853b-4fa6-a5b8-d92f06e24d34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:38:20.6583041Z","updatedOn":"2019-07-10T06:38:20.6583041Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce176826-2e72-450a-8179-fb2b7aefaa86","type":"Microsoft.Authorization/roleAssignments","name":"ce176826-2e72-450a-8179-fb2b7aefaa86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2262dfe7-375f-4597-a47c-2766489ecbe7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T17:54:39.3919633Z","updatedOn":"2019-06-14T17:54:39.3919633Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f58856e-c1e1-4269-9055-f9fbe4cb6506","type":"Microsoft.Authorization/roleAssignments","name":"3f58856e-c1e1-4269-9055-f9fbe4cb6506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"29727caa-21b0-4904-8f6c-565fd2457d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T16:24:04.8955454Z","updatedOn":"2018-10-02T16:24:04.8955454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3297254c-b10b-46df-a887-113a0c7c0b4c","type":"Microsoft.Authorization/roleAssignments","name":"3297254c-b10b-46df-a887-113a0c7c0b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"31e600e0-d7ce-4e98-a927-19bb30042e44","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-17T08:29:55.3047288Z","updatedOn":"2019-09-17T08:29:55.3047288Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3591e24-669e-475f-a315-7d581996b864","type":"Microsoft.Authorization/roleAssignments","name":"e3591e24-669e-475f-a315-7d581996b864"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3284e562-f7b4-469f-8dd3-81f0cd66daf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:47.3915367Z","updatedOn":"2018-10-09T05:05:47.3915367Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b99516e-ea97-4832-9628-5eed31f1d98f","type":"Microsoft.Authorization/roleAssignments","name":"4b99516e-ea97-4832-9628-5eed31f1d98f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32a9067d-11d1-4c29-a12f-4bb485b6b600","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:05:05.8842957Z","updatedOn":"2018-10-25T05:05:05.8842957Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd454990-a77f-4341-8493-a5137ac5f440","type":"Microsoft.Authorization/roleAssignments","name":"cd454990-a77f-4341-8493-a5137ac5f440"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-06T03:03:50.0740099Z","updatedOn":"2019-09-06T03:03:50.0740099Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/01c1fcc9-4df3-4107-832f-42f245309750","type":"Microsoft.Authorization/roleAssignments","name":"01c1fcc9-4df3-4107-832f-42f245309750"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"35945435-5b36-48ce-a0fa-9f6a487b6d43","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T20:28:25.6841347Z","updatedOn":"2018-09-11T20:28:25.6841347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e38d95ce-a050-41c5-967c-92f9a62531e2","type":"Microsoft.Authorization/roleAssignments","name":"e38d95ce-a050-41c5-967c-92f9a62531e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"378df7ee-31fd-4c54-945e-a1ed4f025a28","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-08-10T19:00:33.4173527Z","updatedOn":"2017-08-10T19:00:33.4173527Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8","type":"Microsoft.Authorization/roleAssignments","name":"e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:21:28.6870688Z","updatedOn":"2019-02-25T22:21:28.6870688Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/185a89d4-23f9-4fb8-827c-6d7f8e26c49d","type":"Microsoft.Authorization/roleAssignments","name":"185a89d4-23f9-4fb8-827c-6d7f8e26c49d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:10:39.6892748Z","updatedOn":"2019-02-25T22:10:39.6892748Z","createdBy":"f61d140c-100f-4802-a259-065b338ab67d","updatedBy":"f61d140c-100f-4802-a259-065b338ab67d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ec022f0-b25f-41c1-93d9-4905814a6687","type":"Microsoft.Authorization/roleAssignments","name":"1ec022f0-b25f-41c1-93d9-4905814a6687"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3c2dbb98-feac-4fb1-8472-bd5e4dbaa814","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:05:50.5110946Z","updatedOn":"2018-10-13T05:05:50.5110946Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a57185c-8716-406b-954a-f9a271f84a65","type":"Microsoft.Authorization/roleAssignments","name":"4a57185c-8716-406b-954a-f9a271f84a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"45c545d2-3beb-4122-99e4-1d5a9baf875a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:00:49.4836748Z","updatedOn":"2018-10-12T11:00:49.4836748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2ae6c29-28a7-436c-8100-92d9fbff21ff","type":"Microsoft.Authorization/roleAssignments","name":"f2ae6c29-28a7-436c-8100-92d9fbff21ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"4b12a28b-33df-4b89-87f2-600465f47640","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T17:44:04.4033814Z","updatedOn":"2018-09-12T17:44:04.4033814Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a456f69e-0744-403d-8dca-4fd4cd170cf3","type":"Microsoft.Authorization/roleAssignments","name":"a456f69e-0744-403d-8dca-4fd4cd170cf3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"51b966ff-5680-4e37-a80d-0d79694df747","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-21T05:08:22.9928772Z","updatedOn":"2018-08-21T05:08:22.9928772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13ec9de0-0071-4461-8ae8-33c9b780c3fd","type":"Microsoft.Authorization/roleAssignments","name":"13ec9de0-0071-4461-8ae8-33c9b780c3fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"56b6b563-1341-4632-96cd-06252b81665d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:50:50.2703536Z","updatedOn":"2019-09-05T08:50:50.2703536Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e17d3c8b-26f3-4cdd-bcc1-211c3e490299","type":"Microsoft.Authorization/roleAssignments","name":"e17d3c8b-26f3-4cdd-bcc1-211c3e490299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"579e0702-a6e2-4caf-bdc8-200024269591","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:31:18.5085521Z","updatedOn":"2017-09-06T13:31:18.5085521Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a707eb24-17dd-426b-8d2a-9b3751c754db","type":"Microsoft.Authorization/roleAssignments","name":"a707eb24-17dd-426b-8d2a-9b3751c754db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5804b4e6-f975-4c75-9b1e-f28b311a9cfc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-28T10:36:01.4354692Z","updatedOn":"2018-08-28T10:36:01.4354692Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed4cb227-0f99-40a3-bd00-270f35ca8d72","type":"Microsoft.Authorization/roleAssignments","name":"ed4cb227-0f99-40a3-bd00-270f35ca8d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"596c247a-9db0-4c20-8ddb-d944102067ac","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T08:06:17.3145960Z","updatedOn":"2019-10-25T08:06:17.3145960Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5383f6ae-0e25-43d5-a448-2fd0d2699d72","type":"Microsoft.Authorization/roleAssignments","name":"5383f6ae-0e25-43d5-a448-2fd0d2699d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5accae2a-f109-44ba-8549-8c682acd4ad1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-11-06T23:33:48.6032970Z","updatedOn":"2017-11-06T23:33:48.6032970Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b35dfe77-4bb3-4956-b644-16d58904b1bf","type":"Microsoft.Authorization/roleAssignments","name":"b35dfe77-4bb3-4956-b644-16d58904b1bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T07:01:28.9578744Z","updatedOn":"2019-10-25T07:01:28.9578744Z","createdBy":"dca37046-82cf-4fbb-8088-faa399010380","updatedBy":"dca37046-82cf-4fbb-8088-faa399010380"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af2f762c-68cf-468f-9315-c241b4f59550","type":"Microsoft.Authorization/roleAssignments","name":"af2f762c-68cf-468f-9315-c241b4f59550"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5c1fffb7-0203-410b-a0b4-a6538fe530d7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-29T09:28:50.5217613Z","updatedOn":"2019-08-29T09:28:50.5217613Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ac73035-da41-4fbb-97a7-54f9d33ca407","type":"Microsoft.Authorization/roleAssignments","name":"0ac73035-da41-4fbb-97a7-54f9d33ca407"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5e1534ec-1e3f-459f-bf72-739eee5030bd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:06:28.3611111Z","updatedOn":"2018-09-20T06:06:28.3611111Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9989f5d7-d06c-4804-a03a-ac7723776f0e","type":"Microsoft.Authorization/roleAssignments","name":"9989f5d7-d06c-4804-a03a-ac7723776f0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"63b3e92c-3ea7-4c27-b592-ca676a4e83f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-10-02T18:19:26.0915573Z","updatedOn":"2017-10-02T18:19:26.0915573Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef32bbaf-c67a-452a-9f2b-cef46652bc12","type":"Microsoft.Authorization/roleAssignments","name":"ef32bbaf-c67a-452a-9f2b-cef46652bc12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"669ef724-96ef-462e-b760-a398c8d49f12","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T00:01:10.8880293Z","updatedOn":"2018-10-16T00:01:10.8880293Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1fb698ad-cef0-442e-8fa0-c5c4609b12ec","type":"Microsoft.Authorization/roleAssignments","name":"1fb698ad-cef0-442e-8fa0-c5c4609b12ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"69c8d308-8964-4372-9771-e22fa1b1d02e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:08:13.2132002Z","updatedOn":"2018-10-19T05:08:13.2132002Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8","type":"Microsoft.Authorization/roleAssignments","name":"5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6ba8d12f-faf3-4859-918b-80f93e471e38","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T07:42:22.6383489Z","updatedOn":"2019-09-05T07:42:22.6383489Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b0df1c0-baf0-41ed-9560-6495d40dfa06","type":"Microsoft.Authorization/roleAssignments","name":"1b0df1c0-baf0-41ed-9560-6495d40dfa06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c3a43fa-d321-44e9-9fc5-ef8dcf2c1a5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T15:52:57.6857263Z","updatedOn":"2018-09-12T15:52:57.6857263Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bec9dbb-f348-447b-8618-8d4cb0249bdd","type":"Microsoft.Authorization/roleAssignments","name":"2bec9dbb-f348-447b-8618-8d4cb0249bdd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6e95a7c2-c99b-428b-a560-d5227ba9f2e7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-18T05:08:25.6259727Z","updatedOn":"2018-08-18T05:08:25.6259727Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/065b148b-bfa7-4706-9ddd-42c1c7611365","type":"Microsoft.Authorization/roleAssignments","name":"065b148b-bfa7-4706-9ddd-42c1c7611365"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-10T06:36:08.0241793Z","updatedOn":"2019-09-10T06:36:08.0241793Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b1e634-f9af-4434-bd13-55eb43a57124","type":"Microsoft.Authorization/roleAssignments","name":"10b1e634-f9af-4434-bd13-55eb43a57124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b29ef09-268a-44a7-b1f8-094beba68028","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-05T17:27:17.7281001Z","updatedOn":"2018-04-05T17:27:17.7281001Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5c8a26b-80ac-421d-a137-2951374bca62","type":"Microsoft.Authorization/roleAssignments","name":"a5c8a26b-80ac-421d-a137-2951374bca62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-23T08:57:03.4127112Z","updatedOn":"2019-10-23T08:57:03.4127112Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec55b030-cffa-46ab-a296-78f606400df8","type":"Microsoft.Authorization/roleAssignments","name":"ec55b030-cffa-46ab-a296-78f606400df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8a7fb7ba-b9bd-4113-9e9e-402a39e517e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T17:17:13.6083568Z","updatedOn":"2018-09-11T17:17:13.6083568Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea9a91c-b1be-4310-809a-48f423c76ad7","type":"Microsoft.Authorization/roleAssignments","name":"2ea9a91c-b1be-4310-809a-48f423c76ad7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ae38a78-a9b0-481e-b77d-a68dadb46fd3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-30T18:43:04.7284681Z","updatedOn":"2018-08-30T18:43:04.7284681Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77cd24a-5806-46ca-8093-a73055cc5f92","type":"Microsoft.Authorization/roleAssignments","name":"f77cd24a-5806-46ca-8093-a73055cc5f92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8c19637c-da26-4745-9ca5-d9a35a0bfa25","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-20T17:35:36.0710301Z","updatedOn":"2017-12-20T17:35:36.0710301Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec","type":"Microsoft.Authorization/roleAssignments","name":"2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ccf8c17-bef7-43c5-8788-592c7645ce24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-21T00:49:38.5584710Z","updatedOn":"2017-12-21T00:49:38.5584710Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27f8c6c4-442c-42a6-8fb2-e086108e4d14","type":"Microsoft.Authorization/roleAssignments","name":"27f8c6c4-442c-42a6-8fb2-e086108e4d14"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8cecb614-1133-40e4-969a-87586a03bda9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:05:58.6187581Z","updatedOn":"2018-10-06T05:05:58.6187581Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d20cf58b-2e31-4d34-9235-26cd30301a5b","type":"Microsoft.Authorization/roleAssignments","name":"d20cf58b-2e31-4d34-9235-26cd30301a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8d594fee-5764-49c9-ad85-35d3ee728386","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-23T09:22:57.7278029Z","updatedOn":"2019-10-23T09:22:57.7278029Z","createdBy":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d","updatedBy":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66da1b82-8f84-41cc-995f-867498db9ae3","type":"Microsoft.Authorization/roleAssignments","name":"66da1b82-8f84-41cc-995f-867498db9ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"906cbae0-394a-4011-b211-faad4800e871","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-24T05:30:47.9362826Z","updatedOn":"2018-08-24T05:30:47.9362826Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aac320ff-138c-4993-984e-49a0d404201d","type":"Microsoft.Authorization/roleAssignments","name":"aac320ff-138c-4993-984e-49a0d404201d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"93a01e49-673a-4e15-8230-51214a737962","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-07-05T21:56:39.5905773Z","updatedOn":"2017-07-05T21:56:39.5905773Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d09787d-0a89-40a8-abf2-a7b60e95d24b","type":"Microsoft.Authorization/roleAssignments","name":"8d09787d-0a89-40a8-abf2-a7b60e95d24b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"94090f94-bf94-4844-9b8d-58a6e40ed46a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:08:58.4289607Z","updatedOn":"2018-10-26T05:08:58.4289607Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b62b648-5069-4ef7-8d02-dc21d3a1207a","type":"Microsoft.Authorization/roleAssignments","name":"5b62b648-5069-4ef7-8d02-dc21d3a1207a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:47:24.5464704Z","updatedOn":"2019-07-10T06:47:24.5464704Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83b44361-6e27-4ed1-923c-b10ce84b3926","type":"Microsoft.Authorization/roleAssignments","name":"83b44361-6e27-4ed1-923c-b10ce84b3926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-21T06:37:44.9936263Z","updatedOn":"2019-10-21T06:37:44.9936263Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e96cad1-9fe5-49d6-b754-cbe33ce49882","type":"Microsoft.Authorization/roleAssignments","name":"7e96cad1-9fe5-49d6-b754-cbe33ce49882"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a08a53ed-ef7e-4ed8-b65c-522fdc1b2374","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:22:17.1891332Z","updatedOn":"2018-09-19T16:22:17.1891332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8dfe2756-45d2-4d09-a662-41c458276604","type":"Microsoft.Authorization/roleAssignments","name":"8dfe2756-45d2-4d09-a662-41c458276604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a35eaf1c-1e5e-4827-bd3c-9568fca01796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:05:37.7879353Z","updatedOn":"2018-10-04T05:05:37.7879353Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bce0209a-399a-452d-9a4b-0802ab28adc5","type":"Microsoft.Authorization/roleAssignments","name":"bce0209a-399a-452d-9a4b-0802ab28adc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a59de285-3f0a-46ae-99f6-ea4ece052936","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T18:28:06.2409628Z","updatedOn":"2018-10-24T18:28:06.2409628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7616165-7871-4b83-969e-d2248d191e46","type":"Microsoft.Authorization/roleAssignments","name":"f7616165-7871-4b83-969e-d2248d191e46"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a6634063-9a62-41b2-a356-d946b267e5d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-23T05:08:09.0286948Z","updatedOn":"2018-08-23T05:08:09.0286948Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96411a82-7e4e-4e8f-a613-e301212c599c","type":"Microsoft.Authorization/roleAssignments","name":"96411a82-7e4e-4e8f-a613-e301212c599c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"aa646ec7-f68f-47b9-a690-dab01146c7ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:04:53.6239739Z","updatedOn":"2018-09-28T05:04:53.6239739Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546e9e9b-36ab-49cc-9bb7-bb1b367ad709","type":"Microsoft.Authorization/roleAssignments","name":"546e9e9b-36ab-49cc-9bb7-bb1b367ad709"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-20T02:31:32.7276952Z","updatedOn":"2019-09-20T02:31:32.7276952Z","createdBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","updatedBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4bf29019-3c72-44c1-97d4-58ef4d1a540f","type":"Microsoft.Authorization/roleAssignments","name":"4bf29019-3c72-44c1-97d4-58ef4d1a540f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"acb349e8-a7d3-4de0-89eb-868e32beda95","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-17T05:08:24.2918591Z","updatedOn":"2018-08-17T05:08:24.2918591Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71e9d1ca-3fbf-4d71-be0a-e1229399307e","type":"Microsoft.Authorization/roleAssignments","name":"71e9d1ca-3fbf-4d71-be0a-e1229399307e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"af1b30dc-fd64-4f5f-903e-47a57eba1a80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:05:31.0681976Z","updatedOn":"2018-10-03T05:05:31.0681976Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c868cde1-62a8-4b80-9542-ec7619ce8ee3","type":"Microsoft.Authorization/roleAssignments","name":"c868cde1-62a8-4b80-9542-ec7619ce8ee3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bd7e15cb-f6ab-4689-8c95-a16eb65d5150","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-22T05:08:15.4020971Z","updatedOn":"2018-08-22T05:08:15.4020971Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b0257fa-35d4-49af-84d8-5ab134225c83","type":"Microsoft.Authorization/roleAssignments","name":"2b0257fa-35d4-49af-84d8-5ab134225c83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c0526f76-a841-4a3a-bdee-59a5db599e34","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:18:19.9314682Z","updatedOn":"2018-12-11T19:18:19.9314682Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9e73a14-4984-4d89-8048-04773fb32344","type":"Microsoft.Authorization/roleAssignments","name":"d9e73a14-4984-4d89-8048-04773fb32344"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c26d5d62-502f-4038-87ba-be7e06fdc48d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-14T23:52:33.4597689Z","updatedOn":"2018-09-14T23:52:33.4597689Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66dda4b3-83ee-475f-abf8-c17018f6b225","type":"Microsoft.Authorization/roleAssignments","name":"66dda4b3-83ee-475f-abf8-c17018f6b225"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c6ff72c7-bf47-4965-8d74-833ded8973e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-02T00:31:04.8992786Z","updatedOn":"2018-09-02T00:31:04.8992786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed223d03-7f9e-41dc-904e-c99e443fec12","type":"Microsoft.Authorization/roleAssignments","name":"ed223d03-7f9e-41dc-904e-c99e443fec12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cc88e548-5268-49a5-a636-3b679af9d7fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:03:14.2856838Z","updatedOn":"2018-09-24T18:03:14.2856838Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9211dfe4-8a51-460f-8e5c-67a3154b4a16","type":"Microsoft.Authorization/roleAssignments","name":"9211dfe4-8a51-460f-8e5c-67a3154b4a16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cdc7828e-c6c1-4822-9b0b-ca54f3d92bcd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-03-15T23:45:46.1042773Z","updatedOn":"2018-03-15T23:45:46.1042773Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d194606-3a10-428a-9ce5-876fec5096c8","type":"Microsoft.Authorization/roleAssignments","name":"8d194606-3a10-428a-9ce5-876fec5096c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ce1d5a28-054d-4c0c-bad7-3788a49bf027","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T06:05:39.3181497Z","updatedOn":"2018-09-12T06:05:39.3181497Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b53a7f81-21e0-4a02-83e0-c4df9dceaa35","type":"Microsoft.Authorization/roleAssignments","name":"b53a7f81-21e0-4a02-83e0-c4df9dceaa35"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d3fb01c3-9c71-40f3-b2ca-c01c6d7a9baf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T06:17:53.9509659Z","updatedOn":"2018-09-17T06:17:53.9509659Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/461bbf31-8922-4888-9e75-abe0a1e5ee7f","type":"Microsoft.Authorization/roleAssignments","name":"461bbf31-8922-4888-9e75-abe0a1e5ee7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d56f8fbf-4fea-469c-9961-360947218f36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-29T15:30:43.9337895Z","updatedOn":"2018-08-29T15:30:43.9337895Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18a1d15a-a9ab-4941-9699-c400381ef454","type":"Microsoft.Authorization/roleAssignments","name":"18a1d15a-a9ab-4941-9699-c400381ef454"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"da372d6e-f966-46ee-b548-bfcf63350393","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:05:14.4655087Z","updatedOn":"2018-10-30T05:05:14.4655087Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/320a4b57-3cf4-478d-a8f2-e59c9a599d40","type":"Microsoft.Authorization/roleAssignments","name":"320a4b57-3cf4-478d-a8f2-e59c9a599d40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"db16b0e9-c67e-4105-90c6-810afbce9084","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T16:58:36.9636386Z","updatedOn":"2018-10-04T16:58:36.9636386Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf1a8a06-71a6-437a-88e6-bb5bb689adad","type":"Microsoft.Authorization/roleAssignments","name":"bf1a8a06-71a6-437a-88e6-bb5bb689adad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e060d9c7-8657-4d9f-9e4b-85d0a360c659","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-25T08:36:39.1785990Z","updatedOn":"2018-08-25T08:36:39.1785990Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f19577a-ca06-4a84-8a96-949b82174f32","type":"Microsoft.Authorization/roleAssignments","name":"5f19577a-ca06-4a84-8a96-949b82174f32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e4a14b69-da4e-4a61-b203-3ff37178eb4f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:06:24.7312535Z","updatedOn":"2018-10-16T05:06:24.7312535Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd3afd64-f181-41e9-bd06-8bebb2e2605c","type":"Microsoft.Authorization/roleAssignments","name":"fd3afd64-f181-41e9-bd06-8bebb2e2605c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-10T02:54:02.2514605Z","updatedOn":"2019-11-10T02:54:02.2514605Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de186952-0e06-4557-89b5-31257c33093b","type":"Microsoft.Authorization/roleAssignments","name":"de186952-0e06-4557-89b5-31257c33093b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e91ebcca-b62e-4bb4-ba0c-9aa32dc5cbfa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T18:09:27.2790772Z","updatedOn":"2018-10-26T18:09:27.2790772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fd31d35-bb00-4c2f-ac5e-9de69969f983","type":"Microsoft.Authorization/roleAssignments","name":"6fd31d35-bb00-4c2f-ac5e-9de69969f983"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed033ff2-c3db-4334-991a-8d3b716cdca2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T17:26:52.4677561Z","updatedOn":"2018-09-13T17:26:52.4677561Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a83e5dc-031f-4e20-8f30-b72bf7324a5e","type":"Microsoft.Authorization/roleAssignments","name":"5a83e5dc-031f-4e20-8f30-b72bf7324a5e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed871f1c-f497-4a85-860b-5314fbe98e27","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-14T05:08:34.9142312Z","updatedOn":"2018-08-14T05:08:34.9142312Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92163bb4-4c29-41dc-b75d-345a79ba7e0c","type":"Microsoft.Authorization/roleAssignments","name":"92163bb4-4c29-41dc-b75d-345a79ba7e0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"edf0e9e6-4721-417b-afdd-435ea1468d45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:06:17.6579190Z","updatedOn":"2018-10-11T05:06:17.6579190Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fc19d9e-95a7-4b59-bba7-c443af619749","type":"Microsoft.Authorization/roleAssignments","name":"3fc19d9e-95a7-4b59-bba7-c443af619749"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f0f844e0-d2fe-4aa3-8e2c-2e429618f305","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T03:28:22.7145389Z","updatedOn":"2019-09-24T03:28:22.7145389Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b3fb1c-befa-4dfd-8fbc-9838444af841","type":"Microsoft.Authorization/roleAssignments","name":"16b3fb1c-befa-4dfd-8fbc-9838444af841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f20c3436-e85f-4bf4-8775-9e46198564fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:05:24.1394548Z","updatedOn":"2018-10-23T05:05:24.1394548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a7783e-8fda-4715-8b08-36e399759834","type":"Microsoft.Authorization/roleAssignments","name":"91a7783e-8fda-4715-8b08-36e399759834"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f39b55e5-bd57-467c-bec9-42106f706d81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-31T21:42:06.9365791Z","updatedOn":"2018-08-31T21:42:06.9365791Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70a98d83-6caf-419a-b878-21d8ffe7a7eb","type":"Microsoft.Authorization/roleAssignments","name":"70a98d83-6caf-419a-b878-21d8ffe7a7eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f43f0615-bc95-4608-9ce9-34c2078e65a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:05:27.4406656Z","updatedOn":"2018-10-27T05:05:27.4406656Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07022e19-7251-4676-9365-3a5776f6db20","type":"Microsoft.Authorization/roleAssignments","name":"07022e19-7251-4676-9365-3a5776f6db20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T22:40:18.7672464Z","updatedOn":"2019-02-22T22:40:18.7672464Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1c96429-92c5-4d05-8003-e40b49483450","type":"Microsoft.Authorization/roleAssignments","name":"c1c96429-92c5-4d05-8003-e40b49483450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ffbb9ca1-43fc-498d-b8db-ca965f1684ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-18T23:20:41.1586895Z","updatedOn":"2017-12-18T23:20:41.1586895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e012250-6450-4432-b6dd-9e148ab64455","type":"Microsoft.Authorization/roleAssignments","name":"7e012250-6450-4432-b6dd-9e148ab64455"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/abec5297-d72c-4fbc-acaf-868482d345c2","principalId":"7a938a30-4226-420e-996f-4d48bca6d537","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-06-14T22:25:43.4944951Z","updatedOn":"2018-06-14T22:25:43.4944951Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3662714-8332-43d4-a2cf-836f9367c53d","type":"Microsoft.Authorization/roleAssignments","name":"a3662714-8332-43d4-a2cf-836f9367c53d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ec2fe215-4683-4df8-a738-83622f70819a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-05-23T20:36:37.8343857Z","updatedOn":"2018-05-23T20:36:37.8343857Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72d7967-c1bc-4510-9b4d-2efc272ad268","type":"Microsoft.Authorization/roleAssignments","name":"e72d7967-c1bc-4510-9b4d-2efc272ad268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00215dd3-8494-4737-8f44-47c950eee2a8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:15:56.7087145Z","updatedOn":"2019-05-14T05:15:56.7087145Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4290ea7b-9cca-414f-9f0d-eeb931cc9e40","type":"Microsoft.Authorization/roleAssignments","name":"4290ea7b-9cca-414f-9f0d-eeb931cc9e40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00b3fb8d-18f2-4cbb-9e33-ba8c247cd4d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T06:59:50.0920118Z","updatedOn":"2019-06-11T06:59:50.0920118Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e577045-4db2-49a7-a1f4-c94cb76d519c","type":"Microsoft.Authorization/roleAssignments","name":"1e577045-4db2-49a7-a1f4-c94cb76d519c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-28T02:17:47.3517737Z","updatedOn":"2019-10-28T02:17:47.3517737Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa59db41-bdc7-4934-9105-138c49aa3b25","type":"Microsoft.Authorization/roleAssignments","name":"fa59db41-bdc7-4934-9105-138c49aa3b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"014d30f5-2583-47dd-8b9a-be54a0b61c5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T03:39:35.1972368Z","updatedOn":"2019-03-08T03:39:35.1972368Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/962ad9d2-a9b8-4bd8-aead-8ad0effc0e19","type":"Microsoft.Authorization/roleAssignments","name":"962ad9d2-a9b8-4bd8-aead-8ad0effc0e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"025742e3-96b0-462b-92b8-c6f8a2467315","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:30:48.9213321Z","updatedOn":"2019-11-13T02:30:48.9213321Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e56fee5-34b2-4fda-94f5-4d16d0f316c9","type":"Microsoft.Authorization/roleAssignments","name":"8e56fee5-34b2-4fda-94f5-4d16d0f316c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0444ccf8-fddb-43c4-b42b-ea036211229f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T09:31:46.3880250Z","updatedOn":"2019-09-18T09:31:46.3880250Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e0e4be-da1c-4e63-8872-b2486e10fbaf","type":"Microsoft.Authorization/roleAssignments","name":"e7e0e4be-da1c-4e63-8872-b2486e10fbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"048c9bb6-913e-4ce6-99c5-35198246627b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T08:20:44.1467077Z","updatedOn":"2019-11-13T08:20:44.1467077Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee9a0273-478f-49c1-ab8b-c391f00ab24a","type":"Microsoft.Authorization/roleAssignments","name":"ee9a0273-478f-49c1-ab8b-c391f00ab24a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0519023a-68c7-467d-b06f-0d176fe7bf75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:15:15.6703869Z","updatedOn":"2019-05-03T05:15:15.6703869Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09d2a2b1-20ad-487c-98d0-e8335da536ca","type":"Microsoft.Authorization/roleAssignments","name":"09d2a2b1-20ad-487c-98d0-e8335da536ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0554b26b-97b8-4712-9428-96421f407817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-19T15:36:11.6893582Z","updatedOn":"2018-11-19T15:36:11.6893582Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd54ee13-f8bf-43ad-9ece-aadba49c6b3b","type":"Microsoft.Authorization/roleAssignments","name":"dd54ee13-f8bf-43ad-9ece-aadba49c6b3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T02:20:33.6180302Z","updatedOn":"2019-09-16T02:20:33.6180302Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd290ec1-928e-4be9-bf1a-5444db3c31a9","type":"Microsoft.Authorization/roleAssignments","name":"dd290ec1-928e-4be9-bf1a-5444db3c31a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05ec9ed3-1818-4d82-a393-9d886fe79eaf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:24:35.7005768Z","updatedOn":"2019-06-25T16:24:35.7005768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0438abe-75ec-4450-b99b-792ed9bb8ee0","type":"Microsoft.Authorization/roleAssignments","name":"a0438abe-75ec-4450-b99b-792ed9bb8ee0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"082034cd-624e-4652-99c9-89c02073cb54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T18:09:40.0546999Z","updatedOn":"2018-11-07T18:09:40.0546999Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5d7ff7-5a55-40b7-a547-d12bef073d24","type":"Microsoft.Authorization/roleAssignments","name":"aa5d7ff7-5a55-40b7-a547-d12bef073d24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"083e3bf5-90ee-44f9-a4ed-b43b6618cb68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:15:53.2923661Z","updatedOn":"2019-03-26T06:15:53.2923661Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22","type":"Microsoft.Authorization/roleAssignments","name":"b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"089feb4f-11a7-4088-a245-5d53edc49e2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T06:32:24.0038227Z","updatedOn":"2019-04-23T06:32:24.0038227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa131111-4125-4a5e-a8b6-a3165c319ce3","type":"Microsoft.Authorization/roleAssignments","name":"fa131111-4125-4a5e-a8b6-a3165c319ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0922515c-5011-41d9-85b8-468065dfe845","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T20:44:15.0368153Z","updatedOn":"2018-12-04T20:44:15.0368153Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c85da1d-a166-40d2-9118-4fe1c97f1ee6","type":"Microsoft.Authorization/roleAssignments","name":"8c85da1d-a166-40d2-9118-4fe1c97f1ee6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0936f825-b7a8-4d97-a53d-3b84d28a717e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T06:52:59.0134229Z","updatedOn":"2019-01-26T06:52:59.0134229Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e579b98e-87ba-42a4-9381-bca57eea911a","type":"Microsoft.Authorization/roleAssignments","name":"e579b98e-87ba-42a4-9381-bca57eea911a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"09bd05c8-0213-4c42-8943-172a8a17bb29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-28T06:49:07.4810461Z","updatedOn":"2018-12-28T06:49:07.4810461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1eea0837-88da-41fc-984c-b62f9c3c96d5","type":"Microsoft.Authorization/roleAssignments","name":"1eea0837-88da-41fc-984c-b62f9c3c96d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0907d8-b8f5-49dd-879a-ae1ccf72ee66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:48.6805573Z","updatedOn":"2018-10-09T05:36:48.6805573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/596f6422-88be-4a26-8449-cde19fc7139c","type":"Microsoft.Authorization/roleAssignments","name":"596f6422-88be-4a26-8449-cde19fc7139c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0e41c1-6cce-4da0-b2ef-6679d4b2adbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T23:41:56.1488980Z","updatedOn":"2018-09-25T23:41:56.1488980Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/995d178b-fe6d-4023-beec-7d86273d8258","type":"Microsoft.Authorization/roleAssignments","name":"995d178b-fe6d-4023-beec-7d86273d8258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0afa0fbe-4c34-49c6-94dc-2d25dde67804","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:48.4721330Z","updatedOn":"2019-04-16T06:34:48.4721330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cd81e06-c4a3-4186-92de-ce5dd9b02afc","type":"Microsoft.Authorization/roleAssignments","name":"4cd81e06-c4a3-4186-92de-ce5dd9b02afc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b122118-f5f2-4361-9540-75b2d16a6812","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T09:39:39.0217645Z","updatedOn":"2018-10-25T09:39:39.0217645Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6e564e9-62c4-48fa-94d1-f441bee3a600","type":"Microsoft.Authorization/roleAssignments","name":"f6e564e9-62c4-48fa-94d1-f441bee3a600"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b3f6114-fd2a-4b44-a718-e77c93313257","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T14:44:40.1474788Z","updatedOn":"2018-10-25T14:44:40.1474788Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22","type":"Microsoft.Authorization/roleAssignments","name":"78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b9debbf-74a2-4090-9e79-6f814c15c64f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T23:58:24.6590895Z","updatedOn":"2019-02-13T23:58:24.6590895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84210bda-8759-422b-b6ea-f95ba2a645cc","type":"Microsoft.Authorization/roleAssignments","name":"84210bda-8759-422b-b6ea-f95ba2a645cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0bc92e19-4e38-4150-80a3-c1e35927bdc1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T22:07:33.4526393Z","updatedOn":"2019-01-15T22:07:33.4526393Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5de283f2-6ed5-4e96-ab11-01da6b1030aa","type":"Microsoft.Authorization/roleAssignments","name":"5de283f2-6ed5-4e96-ab11-01da6b1030aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0befbead-6896-4f0f-ba06-727614a1d97e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T07:10:06.6112474Z","updatedOn":"2019-03-08T07:10:06.6112474Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553bec8e-319e-4a9a-91d6-434dfebe29bd","type":"Microsoft.Authorization/roleAssignments","name":"553bec8e-319e-4a9a-91d6-434dfebe29bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c1179ed-8b91-4a8f-b33d-30a78d4167b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:12:28.4643523Z","updatedOn":"2019-11-13T02:12:28.4643523Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e812069f-df2d-451a-bdc1-a73986bf8ff1","type":"Microsoft.Authorization/roleAssignments","name":"e812069f-df2d-451a-bdc1-a73986bf8ff1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c4c5914-127b-43c8-9185-be30ce8e97c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T14:47:52.4435973Z","updatedOn":"2018-09-27T14:47:52.4435973Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71a48867-ce43-4ff6-96f4-aac8c877c9f8","type":"Microsoft.Authorization/roleAssignments","name":"71a48867-ce43-4ff6-96f4-aac8c877c9f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c69d6a8-a1dc-4a34-8478-6aa7882a0f72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-15T06:10:54.7835545Z","updatedOn":"2019-03-15T06:10:54.7835545Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41260fbb-df80-43a1-aee0-f17d06596e19","type":"Microsoft.Authorization/roleAssignments","name":"41260fbb-df80-43a1-aee0-f17d06596e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c86c04d-4ab1-4af4-bc25-26fc5a73ab13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:42:04.8339359Z","updatedOn":"2018-10-19T15:42:04.8339359Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/111e9485-5c6f-40ee-b51b-b077e04b3f43","type":"Microsoft.Authorization/roleAssignments","name":"111e9485-5c6f-40ee-b51b-b077e04b3f43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0e5f94cd-941e-416f-bf5c-febf94928fdf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-17T20:20:24.5305703Z","updatedOn":"2018-12-17T20:20:24.5305703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9508c28-eb00-4a51-a224-34c36b527578","type":"Microsoft.Authorization/roleAssignments","name":"c9508c28-eb00-4a51-a224-34c36b527578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ea19d04-ed36-495e-b2f6-b514e2b68c33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T02:55:23.4287364Z","updatedOn":"2019-09-24T02:55:23.4287364Z","createdBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","updatedBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46308c2b-e860-4520-a289-b939b4a6080a","type":"Microsoft.Authorization/roleAssignments","name":"46308c2b-e860-4520-a289-b939b4a6080a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ef728c4-2201-4dad-932d-eefd44bc73b5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T09:49:11.3765450Z","updatedOn":"2018-10-26T09:49:11.3765450Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd","type":"Microsoft.Authorization/roleAssignments","name":"9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0f35f90d-6817-47cf-be1a-450afde5a251","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:44:57.7197480Z","updatedOn":"2019-06-08T05:44:57.7197480Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3755957-a5fa-4fa3-9866-99fffb77a6c7","type":"Microsoft.Authorization/roleAssignments","name":"a3755957-a5fa-4fa3-9866-99fffb77a6c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0fb0872a-13ac-40dc-92c0-bb65030b9141","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T15:42:18.7189325Z","updatedOn":"2018-11-16T15:42:18.7189325Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1acbce5d-ee4a-4792-9c13-77d2aefa7348","type":"Microsoft.Authorization/roleAssignments","name":"1acbce5d-ee4a-4792-9c13-77d2aefa7348"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ff295c0-7d9f-4b57-9465-f2f1521f616c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:22:36.7477043Z","updatedOn":"2018-10-10T22:22:36.7477043Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8877b05-2800-4d27-a180-d530688c1aaa","type":"Microsoft.Authorization/roleAssignments","name":"b8877b05-2800-4d27-a180-d530688c1aaa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"105237f3-66df-4225-b4f9-1731ba11259c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:48:36.7329197Z","updatedOn":"2018-10-03T21:48:36.7329197Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f73f30ed-04d2-4a53-81c9-47e71e5d0043","type":"Microsoft.Authorization/roleAssignments","name":"f73f30ed-04d2-4a53-81c9-47e71e5d0043"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10964e06-b1ac-4854-9a34-8fa11945d7e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-09T05:44:51.8581373Z","updatedOn":"2019-07-09T05:44:51.8581373Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed","type":"Microsoft.Authorization/roleAssignments","name":"84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10b044e7-d033-433b-8b4c-d8e9594f3c64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T21:30:39.3815031Z","updatedOn":"2019-04-30T21:30:39.3815031Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a50c952f-b47b-4f35-8763-b5aec9bd9ddb","type":"Microsoft.Authorization/roleAssignments","name":"a50c952f-b47b-4f35-8763-b5aec9bd9ddb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10db8d1f-13e4-4187-947d-8a0fc82eff94","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:24:36.7007006Z","updatedOn":"2018-10-10T22:24:36.7007006Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc","type":"Microsoft.Authorization/roleAssignments","name":"a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11952da9-440f-4270-9c72-9d5574be74a5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-19T06:51:54.9706907Z","updatedOn":"2019-01-19T06:51:54.9706907Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72048bb-0fa1-4058-bc2c-284a58e49ced","type":"Microsoft.Authorization/roleAssignments","name":"e72048bb-0fa1-4058-bc2c-284a58e49ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11c04de5-9b6f-4dc1-b382-77bac04d39c8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T06:47:36.2010728Z","updatedOn":"2019-05-29T06:47:36.2010728Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5274cb84-e8c2-4347-9f09-634cd5fb3744","type":"Microsoft.Authorization/roleAssignments","name":"5274cb84-e8c2-4347-9f09-634cd5fb3744"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12365830-cd40-4ae5-af8b-6309b4913a79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-15T07:05:30.8525898Z","updatedOn":"2019-02-15T07:05:30.8525898Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58db4ac3-cdfc-4491-9c08-46c8ee760700","type":"Microsoft.Authorization/roleAssignments","name":"58db4ac3-cdfc-4491-9c08-46c8ee760700"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12fdbdff-fee2-48de-a24d-b61e714438fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T06:51:04.6126539Z","updatedOn":"2018-11-21T06:51:04.6126539Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/202127bd-4575-41ac-b631-cda1cad5957d","type":"Microsoft.Authorization/roleAssignments","name":"202127bd-4575-41ac-b631-cda1cad5957d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"132b2863-4901-46dd-b050-23adf8a91212","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:20:59.4891986Z","updatedOn":"2019-06-28T05:20:59.4891986Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d78d8a0-b367-4b89-a0c9-f00dd91e04c1","type":"Microsoft.Authorization/roleAssignments","name":"9d78d8a0-b367-4b89-a0c9-f00dd91e04c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13733798-367b-41b4-ab70-c009ff810e61","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T06:56:16.0921597Z","updatedOn":"2019-01-31T06:56:16.0921597Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/87a1251f-b871-47ac-8903-992d3d12ab6d","type":"Microsoft.Authorization/roleAssignments","name":"87a1251f-b871-47ac-8903-992d3d12ab6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13dfd152-b3ee-45c7-ac21-a6d4bd9b1efe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-02T12:08:16.4864386Z","updatedOn":"2019-09-02T12:08:16.4864386Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4eacac3-0b1e-4a00-a813-57c1949d9339","type":"Microsoft.Authorization/roleAssignments","name":"d4eacac3-0b1e-4a00-a813-57c1949d9339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1406c023-f820-4b11-929d-240f81640bba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:35:49.8406728Z","updatedOn":"2019-02-22T07:35:49.8406728Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/850d6247-205a-4d7a-b88e-686aeb9e3419","type":"Microsoft.Authorization/roleAssignments","name":"850d6247-205a-4d7a-b88e-686aeb9e3419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1429ff6d-6811-4368-80b2-3d05bacfee79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T20:40:54.4009379Z","updatedOn":"2018-10-01T20:40:54.4009379Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cef91439-7637-4db6-b7b5-4d9dcda73ef7","type":"Microsoft.Authorization/roleAssignments","name":"cef91439-7637-4db6-b7b5-4d9dcda73ef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1496f758-36e1-4306-8f42-07d6f7fea1b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T06:51:44.8128708Z","updatedOn":"2018-11-23T06:51:44.8128708Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e9cddb-50c4-4663-9270-4b51557c66cb","type":"Microsoft.Authorization/roleAssignments","name":"a7e9cddb-50c4-4663-9270-4b51557c66cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"14e01ed5-dbac-4c5e-9136-8f26201570fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T15:44:08.6308346Z","updatedOn":"2018-11-08T15:44:08.6308346Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bd09a95-0f01-4e0d-979b-19a21c975a64","type":"Microsoft.Authorization/roleAssignments","name":"9bd09a95-0f01-4e0d-979b-19a21c975a64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"15e130d0-e547-439f-9ef4-700c15a51573","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:37:00.4858523Z","updatedOn":"2019-05-08T05:37:00.4858523Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ba1d251-96e3-4260-9941-9706f5bb9209","type":"Microsoft.Authorization/roleAssignments","name":"3ba1d251-96e3-4260-9941-9706f5bb9209"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"161342b0-aaa8-4694-924a-7ce80d2edb0d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:39:21.7984582Z","updatedOn":"2018-10-30T05:39:21.7984582Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67438a31-fcf6-441b-a316-4b059172e915","type":"Microsoft.Authorization/roleAssignments","name":"67438a31-fcf6-441b-a316-4b059172e915"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"16253a8a-cc24-475a-a5cf-e58491ffd350","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-30T10:22:53.8662664Z","updatedOn":"2019-10-30T10:22:53.8662664Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d7cca1c-37d2-492a-92ed-c9ae8323e2e2","type":"Microsoft.Authorization/roleAssignments","name":"0d7cca1c-37d2-492a-92ed-c9ae8323e2e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1676df9a-840e-41ae-bc0b-38d2a8028d7f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T06:55:15.7039662Z","updatedOn":"2019-02-02T06:55:15.7039662Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9d8f79-e7c9-4fe3-a114-a018a1fc3981","type":"Microsoft.Authorization/roleAssignments","name":"8d9d8f79-e7c9-4fe3-a114-a018a1fc3981"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a05e539-d61f-41be-859f-cfc5a604dd73","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-24T06:47:05.5194949Z","updatedOn":"2018-11-24T06:47:05.5194949Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2703a80d-0221-439f-b05e-01452ebd9982","type":"Microsoft.Authorization/roleAssignments","name":"2703a80d-0221-439f-b05e-01452ebd9982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a45b438-0323-4014-8929-8a4354cd86a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T00:13:54.9085305Z","updatedOn":"2018-09-20T00:13:54.9085305Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2efee97-c97c-4ed9-8f19-c2abf9bcc43e","type":"Microsoft.Authorization/roleAssignments","name":"e2efee97-c97c-4ed9-8f19-c2abf9bcc43e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1b5b3fa8-044d-475b-b238-ff5d2e19d77d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:59.4405634Z","updatedOn":"2018-10-09T05:36:59.4405634Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa37954d-99ea-435f-8d0e-561e9219beb6","type":"Microsoft.Authorization/roleAssignments","name":"aa37954d-99ea-435f-8d0e-561e9219beb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bc3132e-956b-4c49-adb5-54a388d07f98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T22:14:51.1000243Z","updatedOn":"2018-11-07T22:14:51.1000243Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3cab2d-8962-4a13-b473-fb50f33e47e7","type":"Microsoft.Authorization/roleAssignments","name":"2f3cab2d-8962-4a13-b473-fb50f33e47e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bce50d7-8e1e-41e3-97c9-5f0b5894be30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T09:46:00.8241958Z","updatedOn":"2018-11-02T09:46:00.8241958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70d95d36-d655-4e5d-b7c0-bd415764adbe","type":"Microsoft.Authorization/roleAssignments","name":"70d95d36-d655-4e5d-b7c0-bd415764adbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1c8ad9bd-21f3-4db6-b5e8-5fc1cb245796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T06:50:15.2358847Z","updatedOn":"2019-01-17T06:50:15.2358847Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3edb2abd-0bf8-49bb-9a01-47175035134e","type":"Microsoft.Authorization/roleAssignments","name":"3edb2abd-0bf8-49bb-9a01-47175035134e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1df69032-e361-4aec-9a6a-b11a1b520a0a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T06:47:43.5953324Z","updatedOn":"2019-05-30T06:47:43.5953324Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e40d233-f94a-4647-896e-1173156f8370","type":"Microsoft.Authorization/roleAssignments","name":"8e40d233-f94a-4647-896e-1173156f8370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f0529f4-caec-4e5e-9929-9accf07bc0a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T10:50:33.5684193Z","updatedOn":"2019-02-01T10:50:33.5684193Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e186033-3989-485f-83f3-5643307712d3","type":"Microsoft.Authorization/roleAssignments","name":"4e186033-3989-485f-83f3-5643307712d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f58bd4e-34b0-4b3f-8c6d-5a74d861b553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-27T07:09:51.7579083Z","updatedOn":"2019-09-27T07:09:51.7579083Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f349b785-162e-44b0-9bcc-6f32f4657471","type":"Microsoft.Authorization/roleAssignments","name":"f349b785-162e-44b0-9bcc-6f32f4657471"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f9960dc-ed2d-41c8-bc4c-753fb935c5bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:19:46.7691877Z","updatedOn":"2019-04-14T03:19:46.7691877Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e380dbd1-135b-4e5d-b8fd-1067fc314a53","type":"Microsoft.Authorization/roleAssignments","name":"e380dbd1-135b-4e5d-b8fd-1067fc314a53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fa11459-9edc-4b12-95b7-4af1db729fea","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T14:44:54.8928622Z","updatedOn":"2018-11-01T14:44:54.8928622Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea2feead-bf18-4cd0-9fb3-baa3e89c9147","type":"Microsoft.Authorization/roleAssignments","name":"ea2feead-bf18-4cd0-9fb3-baa3e89c9147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fe73bbc-d3e6-4149-a45b-71a7c64455d3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T09:45:15.4346754Z","updatedOn":"2018-11-01T09:45:15.4346754Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe17d25c-de8b-413b-940a-9b0eabe9fd7a","type":"Microsoft.Authorization/roleAssignments","name":"fe17d25c-de8b-413b-940a-9b0eabe9fd7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20a81344-97e8-4380-9232-ff5e2e2357dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:47.7973245Z","updatedOn":"2019-03-27T06:15:47.7973245Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee311f1d-948d-48c8-945a-daaa6c9c2bb6","type":"Microsoft.Authorization/roleAssignments","name":"ee311f1d-948d-48c8-945a-daaa6c9c2bb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20c3d19c-869b-4df3-a560-27bb3ec27259","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T06:51:17.1809226Z","updatedOn":"2019-06-18T06:51:17.1809226Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ebc369-e5bc-4696-a291-45b0d3c655db","type":"Microsoft.Authorization/roleAssignments","name":"c0ebc369-e5bc-4696-a291-45b0d3c655db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"22bb981f-2225-42a6-a92c-1513b98d1059","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:34:47.1182652Z","updatedOn":"2019-04-18T05:34:47.1182652Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/949f32b9-9a90-44da-9893-a626cbf255fe","type":"Microsoft.Authorization/roleAssignments","name":"949f32b9-9a90-44da-9893-a626cbf255fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2424df05-e09e-4b50-a144-34a5a7356356","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:15:24.8105554Z","updatedOn":"2019-04-26T05:15:24.8105554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96e1c119-4f12-4238-9f77-95a10ddf49ab","type":"Microsoft.Authorization/roleAssignments","name":"96e1c119-4f12-4238-9f77-95a10ddf49ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"24f54edc-4e4f-4a9a-bd65-6e946262fcc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T14:44:06.2164283Z","updatedOn":"2018-10-11T14:44:06.2164283Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/accd1466-cc34-4a91-8129-5504a5c66394","type":"Microsoft.Authorization/roleAssignments","name":"accd1466-cc34-4a91-8129-5504a5c66394"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25ac2b10-acd3-40aa-a872-88f1e9c4013b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T06:51:47.7700347Z","updatedOn":"2019-05-23T06:51:47.7700347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc","type":"Microsoft.Authorization/roleAssignments","name":"0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25c0b9c6-6039-435e-92a1-96f41e1d3b90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-12T14:54:16.0607354Z","updatedOn":"2019-03-12T14:54:16.0607354Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47a17234-3ed6-4788-b98b-ad99b024ad95","type":"Microsoft.Authorization/roleAssignments","name":"47a17234-3ed6-4788-b98b-ad99b024ad95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2652f837-f3c8-4378-b3e0-1407a1791c82","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T03:52:13.2726368Z","updatedOn":"2019-04-16T03:52:13.2726368Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ece4429e-5ad9-448b-89a6-55a6cb913269","type":"Microsoft.Authorization/roleAssignments","name":"ece4429e-5ad9-448b-89a6-55a6cb913269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"266f54be-0172-4b9c-ac7d-379382f47c68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T06:38:37.1824443Z","updatedOn":"2019-04-25T06:38:37.1824443Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ebbed54-2afd-4492-8113-79a5980bf1b7","type":"Microsoft.Authorization/roleAssignments","name":"8ebbed54-2afd-4492-8113-79a5980bf1b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2770540c-e142-49e7-927b-0a183c15b6da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:19:41.8631372Z","updatedOn":"2019-06-15T05:19:41.8631372Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/144279f9-5b67-48fb-a41a-a32f8f8f5db3","type":"Microsoft.Authorization/roleAssignments","name":"144279f9-5b67-48fb-a41a-a32f8f8f5db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"277f496f-1909-47b3-92ac-ec0fa7fb0177","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T06:44:59.1181039Z","updatedOn":"2019-05-28T06:44:59.1181039Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e29e35de-78d0-463d-83fd-5e0cf612ae81","type":"Microsoft.Authorization/roleAssignments","name":"e29e35de-78d0-463d-83fd-5e0cf612ae81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"27918e9c-70d2-41c6-bea4-d45e31bd2355","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:13:46.5798573Z","updatedOn":"2019-05-01T05:13:46.5798573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7c5d200-df84-4d35-a2f8-ccaf2a94a901","type":"Microsoft.Authorization/roleAssignments","name":"f7c5d200-df84-4d35-a2f8-ccaf2a94a901"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"287b9939-6a03-4276-966e-67035119e274","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-24T02:35:38.9762249Z","updatedOn":"2019-01-24T02:35:38.9762249Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83a13d3-1cfa-42b7-8f89-ae22d697ff0c","type":"Microsoft.Authorization/roleAssignments","name":"f83a13d3-1cfa-42b7-8f89-ae22d697ff0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"28bd66fd-85b2-4749-b439-006c9af1eff0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:15.2613209Z","updatedOn":"2018-10-09T05:05:15.2613209Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f398525-2cf3-41a3-a231-21f536d8d5ec","type":"Microsoft.Authorization/roleAssignments","name":"5f398525-2cf3-41a3-a231-21f536d8d5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"291b97eb-bdeb-4766-9cc0-9dbd56c450e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T07:14:13.3960092Z","updatedOn":"2019-02-23T07:14:13.3960092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1fc00bb-0243-4a81-a4a5-e099865ac6c8","type":"Microsoft.Authorization/roleAssignments","name":"a1fc00bb-0243-4a81-a4a5-e099865ac6c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"296501a5-a8b4-48c6-a06a-b6fde003a842","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:25:37.5138128Z","updatedOn":"2018-10-10T00:25:37.5138128Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3","type":"Microsoft.Authorization/roleAssignments","name":"2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2985330b-5538-47fe-867d-ef5c1b595ab5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:25:06.6333933Z","updatedOn":"2018-09-20T17:25:06.6333933Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/316cac7f-8452-41cc-b0e9-45b2c93f773d","type":"Microsoft.Authorization/roleAssignments","name":"316cac7f-8452-41cc-b0e9-45b2c93f773d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"29bd6401-5338-48bb-b82e-e9558cf486a2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:53.1283425Z","updatedOn":"2018-09-18T23:57:53.1283425Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe329617-f460-452b-beb6-3ec18aa08cd2","type":"Microsoft.Authorization/roleAssignments","name":"fe329617-f460-452b-beb6-3ec18aa08cd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2af0eee9-ba06-49d3-97da-6bd84f58c56b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T07:10:43.0213604Z","updatedOn":"2019-03-02T07:10:43.0213604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d40084c9-04e2-4966-9c08-3610f52ccc93","type":"Microsoft.Authorization/roleAssignments","name":"d40084c9-04e2-4966-9c08-3610f52ccc93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2c9a405a-6caf-4f3a-84f4-45dc7278ab53","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T05:12:22.6640626Z","updatedOn":"2019-04-17T05:12:22.6640626Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ccd833f-6576-4f24-8eb3-e36f2beacce2","type":"Microsoft.Authorization/roleAssignments","name":"6ccd833f-6576-4f24-8eb3-e36f2beacce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2cc30feb-0381-495e-a3e2-616ec5a1338d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:05.0223475Z","updatedOn":"2019-01-29T06:54:05.0223475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/243af6a8-ded0-4272-8bc0-8b4cc4e4e316","type":"Microsoft.Authorization/roleAssignments","name":"243af6a8-ded0-4272-8bc0-8b4cc4e4e316"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2ce42326-7862-4ee8-9db9-ce61f53d0509","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:39:38.6430404Z","updatedOn":"2019-05-03T05:39:38.6430404Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23df7e2b-55d2-41c7-8cce-a96c52e0d727","type":"Microsoft.Authorization/roleAssignments","name":"23df7e2b-55d2-41c7-8cce-a96c52e0d727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2dfd7675-8cec-449b-9cf5-8fb60462dcd7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T05:48:13.8023619Z","updatedOn":"2018-11-02T05:48:13.8023619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19730b6-b7db-43b1-acd6-25cd8bddde5a","type":"Microsoft.Authorization/roleAssignments","name":"b19730b6-b7db-43b1-acd6-25cd8bddde5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2e9d1611-5835-4eb2-843c-9957f451add4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T06:54:04.4629279Z","updatedOn":"2019-06-13T06:54:04.4629279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfbffec9-f53c-4234-9d90-4bde2bbd6375","type":"Microsoft.Authorization/roleAssignments","name":"cfbffec9-f53c-4234-9d90-4bde2bbd6375"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2f1fe7a4-cdda-4979-97ee-e1dc465c7487","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:32:12.4728749Z","updatedOn":"2018-10-10T00:32:12.4728749Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc7696b7-44c3-4a32-baa8-d22bf85e925f","type":"Microsoft.Authorization/roleAssignments","name":"bc7696b7-44c3-4a32-baa8-d22bf85e925f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2fdb0e9e-cf35-46d1-a84d-5872a774aeaa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-04T05:42:27.0197067Z","updatedOn":"2019-07-04T05:42:27.0197067Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf219e4-1fd6-414c-8d02-c632cd7e1dd6","type":"Microsoft.Authorization/roleAssignments","name":"fbf219e4-1fd6-414c-8d02-c632cd7e1dd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"302f2c06-6203-4115-9781-0dfb57c3ab33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-03T05:50:02.4338421Z","updatedOn":"2019-07-03T05:50:02.4338421Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0bdf9b6-1518-4a4e-a8d8-ae18995872a9","type":"Microsoft.Authorization/roleAssignments","name":"b0bdf9b6-1518-4a4e-a8d8-ae18995872a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"30672894-e0ff-4e17-9bb5-f990b00b2a75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T20:08:39.3899074Z","updatedOn":"2018-10-11T20:08:39.3899074Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96c44173-1847-41b5-8d19-72206147559e","type":"Microsoft.Authorization/roleAssignments","name":"96c44173-1847-41b5-8d19-72206147559e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3108a44b-0b99-4b88-8863-89d551752b86","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T20:12:47.4692498Z","updatedOn":"2018-11-22T20:12:47.4692498Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/464e210b-cb81-40bb-b304-d467ef32fc63","type":"Microsoft.Authorization/roleAssignments","name":"464e210b-cb81-40bb-b304-d467ef32fc63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31a2474d-ecb4-4369-ada4-1976f49b71b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-16T05:43:06.1659793Z","updatedOn":"2019-07-16T05:43:06.1659793Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/813a81bc-cc15-4c04-873c-e8ce3fc0e86a","type":"Microsoft.Authorization/roleAssignments","name":"813a81bc-cc15-4c04-873c-e8ce3fc0e86a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c083be-605f-4b0f-82c1-5502cfe98b54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:19.4550939Z","updatedOn":"2019-03-22T06:12:19.4550939Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24edaa89-724b-4ad5-9321-b4627ce18f4c","type":"Microsoft.Authorization/roleAssignments","name":"24edaa89-724b-4ad5-9321-b4627ce18f4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c89bb6-f072-4dba-aa7b-9204f8a0e57e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T15:34:05.0200789Z","updatedOn":"2018-12-07T15:34:05.0200789Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/154d396f-73a2-458e-b6ac-790d4c8dd160","type":"Microsoft.Authorization/roleAssignments","name":"154d396f-73a2-458e-b6ac-790d4c8dd160"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31fd3974-2d10-4926-b1e9-046b585409bb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T07:12:01.9875232Z","updatedOn":"2019-03-06T07:12:01.9875232Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0472cec-2839-4cd3-8521-a41fb32c2b88","type":"Microsoft.Authorization/roleAssignments","name":"c0472cec-2839-4cd3-8521-a41fb32c2b88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"338ba9d8-70ea-4d16-8817-c52bcb4195d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T06:42:13.5810238Z","updatedOn":"2019-05-15T06:42:13.5810238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fec1dffa-57a7-48d6-8265-6472486b70f9","type":"Microsoft.Authorization/roleAssignments","name":"fec1dffa-57a7-48d6-8265-6472486b70f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"33962949-fffb-44d6-98a8-d79b2cb70a15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T21:24:04.0700040Z","updatedOn":"2018-12-08T21:24:04.0700040Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd880d6c-3630-49dc-97f7-13930c8b98bb","type":"Microsoft.Authorization/roleAssignments","name":"cd880d6c-3630-49dc-97f7-13930c8b98bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"344b32fc-71cb-476e-9372-44e6da88be09","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:53:02.5831868Z","updatedOn":"2018-10-23T16:53:02.5831868Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d006fc62-cd5c-46ed-889e-517ce18950b6","type":"Microsoft.Authorization/roleAssignments","name":"d006fc62-cd5c-46ed-889e-517ce18950b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34d734a3-5d21-4858-9cf0-5f29418313ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T18:20:53.4971054Z","updatedOn":"2018-11-12T18:20:53.4971054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bd23f3b-eaad-43d6-a63a-210d75c07f36","type":"Microsoft.Authorization/roleAssignments","name":"0bd23f3b-eaad-43d6-a63a-210d75c07f36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34f592d2-e01e-47fd-b101-4f7f6df4d133","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:12:43.2633496Z","updatedOn":"2019-04-18T05:12:43.2633496Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3005cf87-d322-4c04-be7f-43f5e118e06a","type":"Microsoft.Authorization/roleAssignments","name":"3005cf87-d322-4c04-be7f-43f5e118e06a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"355ed94a-dda4-4736-b235-dc475c58ce72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T06:35:31.9062201Z","updatedOn":"2019-05-02T06:35:31.9062201Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b26fa985-092c-4189-9f8a-a94aaa13b726","type":"Microsoft.Authorization/roleAssignments","name":"b26fa985-092c-4189-9f8a-a94aaa13b726"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35cd7d38-80db-4616-ae5d-951a521ab05d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T17:39:58.9546435Z","updatedOn":"2018-10-04T17:39:58.9546435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a97d3db-f15e-43f2-91de-aea95f5b6f81","type":"Microsoft.Authorization/roleAssignments","name":"2a97d3db-f15e-43f2-91de-aea95f5b6f81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35ce1576-d892-4dee-9d8e-fc7686599ebb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:02:18.4864213Z","updatedOn":"2018-10-02T17:02:18.4864213Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1979c483-6ecb-4e16-87e0-4dedf1cdaf03","type":"Microsoft.Authorization/roleAssignments","name":"1979c483-6ecb-4e16-87e0-4dedf1cdaf03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35fc6ba9-80cf-48e2-874a-12a118ab91cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T07:05:40.9081153Z","updatedOn":"2019-03-01T07:05:40.9081153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f45ef5-db08-4120-9fc2-2663f34b2ce9","type":"Microsoft.Authorization/roleAssignments","name":"24f45ef5-db08-4120-9fc2-2663f34b2ce9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3634b51a-c74e-4a68-9e41-bfc2fe2160b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T18:34:53.7786399Z","updatedOn":"2019-04-15T18:34:53.7786399Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1f7f5d2-ed1b-4322-8058-be4ebfc11a42","type":"Microsoft.Authorization/roleAssignments","name":"a1f7f5d2-ed1b-4322-8058-be4ebfc11a42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"367664c8-b9a3-490e-9745-6c54b68388c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:17:16.5111674Z","updatedOn":"2019-05-23T05:17:16.5111674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcea031-4e08-4047-9655-eb42e0528690","type":"Microsoft.Authorization/roleAssignments","name":"8bcea031-4e08-4047-9655-eb42e0528690"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"374ac999-5f34-4404-bf61-041fb33500b2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T06:49:11.5399368Z","updatedOn":"2019-01-04T06:49:11.5399368Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/20daba39-a380-42a9-8e18-c8af08ebeb98","type":"Microsoft.Authorization/roleAssignments","name":"20daba39-a380-42a9-8e18-c8af08ebeb98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T18:58:20.9990189Z","updatedOn":"2019-01-08T18:58:20.9990189Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54925852-e514-4e06-9023-14b82e9060e7","type":"Microsoft.Authorization/roleAssignments","name":"54925852-e514-4e06-9023-14b82e9060e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"383cd9d9-b653-45c7-b664-8cab304bcf19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T06:48:47.0085566Z","updatedOn":"2019-06-04T06:48:47.0085566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5453f43-59b0-4d6e-bf33-16f3535418d8","type":"Microsoft.Authorization/roleAssignments","name":"b5453f43-59b0-4d6e-bf33-16f3535418d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"384e2def-4c41-448a-8c94-7347548db1eb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:48:12.8727674Z","updatedOn":"2019-06-14T05:48:12.8727674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/264fcc95-9b6f-4a6a-81d7-10c0453f1268","type":"Microsoft.Authorization/roleAssignments","name":"264fcc95-9b6f-4a6a-81d7-10c0453f1268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3948fa02-af62-47bf-b039-4acc6e1475ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:37:15.1035155Z","updatedOn":"2019-05-04T05:37:15.1035155Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b734984-c922-440f-a5b1-db59b7878918","type":"Microsoft.Authorization/roleAssignments","name":"6b734984-c922-440f-a5b1-db59b7878918"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"39e6bb0d-be2a-4538-9e72-abdc081216b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T06:32:15.5933238Z","updatedOn":"2019-04-18T06:32:15.5933238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf873e07-b909-4dd9-9e0c-18e64c8edd84","type":"Microsoft.Authorization/roleAssignments","name":"cf873e07-b909-4dd9-9e0c-18e64c8edd84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3a7e90aa-0adf-4bc6-9896-bba2c9a92768","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:17:06.8887559Z","updatedOn":"2019-11-13T02:17:06.8887559Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ced98d2-95b9-4034-a179-42f859768199","type":"Microsoft.Authorization/roleAssignments","name":"4ced98d2-95b9-4034-a179-42f859768199"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2bafee-ff4e-4b8b-a6cf-9691ecb3ea62","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-07T07:08:48.4217749Z","updatedOn":"2019-02-07T07:08:48.4217749Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3a19c27-5757-473e-b2b0-8db57e6b0e11","type":"Microsoft.Authorization/roleAssignments","name":"b3a19c27-5757-473e-b2b0-8db57e6b0e11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2f0a23-c535-4f56-989f-8d9e58b859c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:16:10.7403775Z","updatedOn":"2019-03-26T06:16:10.7403775Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/695c75ea-8543-4201-9232-89d155c26b4c","type":"Microsoft.Authorization/roleAssignments","name":"695c75ea-8543-4201-9232-89d155c26b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b5999d5-a1b5-450c-891c-489323d60c11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T05:45:54.9016146Z","updatedOn":"2019-07-10T05:45:54.9016146Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32ce51be-fa71-43ac-97f0-2ffceeb30f55","type":"Microsoft.Authorization/roleAssignments","name":"32ce51be-fa71-43ac-97f0-2ffceeb30f55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3bf88cd6-45dc-4a5c-be62-646c550c8c76","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T01:44:02.0905660Z","updatedOn":"2019-10-25T01:44:02.0905660Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a27b9525-f0f2-4f6a-aeba-9e1f92d4d600","type":"Microsoft.Authorization/roleAssignments","name":"a27b9525-f0f2-4f6a-aeba-9e1f92d4d600"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1a3e8e-e818-4f05-82de-682364ed92c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:57.8773096Z","updatedOn":"2019-04-05T06:36:57.8773096Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42dd6f44-4f5e-4766-b849-051039f765e0","type":"Microsoft.Authorization/roleAssignments","name":"42dd6f44-4f5e-4766-b849-051039f765e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1cfbb4-75da-4348-840f-5e5de85fc6f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T19:38:20.4035114Z","updatedOn":"2019-01-08T19:38:20.4035114Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff70724f-a33b-48f9-9312-5e04f56d9b43","type":"Microsoft.Authorization/roleAssignments","name":"ff70724f-a33b-48f9-9312-5e04f56d9b43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c83c51b-6dc3-4a52-b9ed-8d48ae2b1574","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T10:22:35.5153932Z","updatedOn":"2018-10-24T10:22:35.5153932Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e35d96ce-56b4-4030-8685-142f0c964419","type":"Microsoft.Authorization/roleAssignments","name":"e35d96ce-56b4-4030-8685-142f0c964419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3cc35563-ac01-4d1b-ab0d-0bc17560532c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:05:30.3277955Z","updatedOn":"2019-04-14T03:05:30.3277955Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f87c098-7837-4311-bebe-401fe51a184f","type":"Microsoft.Authorization/roleAssignments","name":"3f87c098-7837-4311-bebe-401fe51a184f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3d02ec0c-ae17-4bdf-a8db-b0b19c0e03e9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-11T14:43:04.1109719Z","updatedOn":"2019-03-11T14:43:04.1109719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb6cbad-7f4e-4d74-9027-91dc795244ae","type":"Microsoft.Authorization/roleAssignments","name":"9eb6cbad-7f4e-4d74-9027-91dc795244ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3daf8c04-9a2d-413c-a214-3e68b9543da7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-08T02:27:32.1442243Z","updatedOn":"2019-10-08T02:27:32.1442243Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aec41005-d32b-495a-8cb8-638432712cc3","type":"Microsoft.Authorization/roleAssignments","name":"aec41005-d32b-495a-8cb8-638432712cc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3dd8d42d-ed70-47cf-84da-821d1a939c83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T06:33:10.1124799Z","updatedOn":"2019-05-01T06:33:10.1124799Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07acfe61-f00b-47d8-baab-eedce96906f4","type":"Microsoft.Authorization/roleAssignments","name":"07acfe61-f00b-47d8-baab-eedce96906f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e3faccf-8d37-4b6f-88ee-af65c6231ea8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:36:08.1019453Z","updatedOn":"2019-05-02T05:36:08.1019453Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86fb46ae-5482-4ee2-bab9-0915b584594d","type":"Microsoft.Authorization/roleAssignments","name":"86fb46ae-5482-4ee2-bab9-0915b584594d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e8864ee-4bca-489b-bc88-de613bb99a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:47:09.6910104Z","updatedOn":"2018-09-26T19:47:09.6910104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/896bc3e9-96ce-4710-a27d-80d0ebca43a5","type":"Microsoft.Authorization/roleAssignments","name":"896bc3e9-96ce-4710-a27d-80d0ebca43a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f073272-9332-48fc-b068-50c5fdce1f8f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-13T05:44:37.3086687Z","updatedOn":"2019-07-13T05:44:37.3086687Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4825f547-8689-41aa-b9ae-02ab8a272df7","type":"Microsoft.Authorization/roleAssignments","name":"4825f547-8689-41aa-b9ae-02ab8a272df7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f615c1e-f896-4fd9-9cc7-d5681606a42c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:11:37.6304700Z","updatedOn":"2019-04-14T03:11:37.6304700Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2","type":"Microsoft.Authorization/roleAssignments","name":"bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3fff76c9-4537-43e9-9fa7-d6d58cb084e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:23.1321548Z","updatedOn":"2019-04-13T06:36:23.1321548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442992e2-de64-4aab-96dc-459680fd2222","type":"Microsoft.Authorization/roleAssignments","name":"442992e2-de64-4aab-96dc-459680fd2222"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4027db79-e003-4678-a7ee-1ae5e2b5eba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T06:49:01.7491823Z","updatedOn":"2019-01-09T06:49:01.7491823Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a36486c-9b6e-4149-a7a7-4d58d63626a9","type":"Microsoft.Authorization/roleAssignments","name":"1a36486c-9b6e-4149-a7a7-4d58d63626a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40a89fa8-85ce-479b-a6db-26eb17d19701","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T06:52:07.4698060Z","updatedOn":"2019-02-01T06:52:07.4698060Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fddc9248-2712-4624-8048-37c66ce08589","type":"Microsoft.Authorization/roleAssignments","name":"fddc9248-2712-4624-8048-37c66ce08589"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40b86c5e-9309-4905-ae7d-d78e9d11a364","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T22:59:10.0099024Z","updatedOn":"2018-09-25T22:59:10.0099024Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50333f8a-1bf4-4681-b541-fb21930b296e","type":"Microsoft.Authorization/roleAssignments","name":"50333f8a-1bf4-4681-b541-fb21930b296e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41438247-dd5d-4324-a76b-ccf944ac56d7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:41.8766621Z","updatedOn":"2019-04-13T06:36:41.8766621Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a256a5b-7de7-4dae-98ba-8846e4da6173","type":"Microsoft.Authorization/roleAssignments","name":"9a256a5b-7de7-4dae-98ba-8846e4da6173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"417738c9-0901-4c95-81fd-626e4d29c9f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T16:49:16.9620977Z","updatedOn":"2019-01-17T16:49:16.9620977Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da194327-d7ec-4e5d-baa3-bf5584c16304","type":"Microsoft.Authorization/roleAssignments","name":"da194327-d7ec-4e5d-baa3-bf5584c16304"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41928376-c102-419b-b028-b5396ffbfc3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T01:13:44.7610853Z","updatedOn":"2018-11-09T01:13:44.7610853Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dd98515-7927-4a0d-adee-96c8f07807d5","type":"Microsoft.Authorization/roleAssignments","name":"6dd98515-7927-4a0d-adee-96c8f07807d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42155c87-6909-4dda-86a7-fb4f75789b83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T10:59:12.8478371Z","updatedOn":"2018-09-28T10:59:12.8478371Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3222cb2a-916f-45ea-8281-8b16eba9bbaf","type":"Microsoft.Authorization/roleAssignments","name":"3222cb2a-916f-45ea-8281-8b16eba9bbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42f419bc-1783-482b-9faf-e1dc6f71cfe7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T06:54:35.5634168Z","updatedOn":"2019-01-25T06:54:35.5634168Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e93e2b8-cc6f-49db-b66b-7b628ab5466d","type":"Microsoft.Authorization/roleAssignments","name":"3e93e2b8-cc6f-49db-b66b-7b628ab5466d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43193797-910c-4f41-8250-52c9526a19b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:33.7167095Z","updatedOn":"2019-03-21T06:07:33.7167095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd8b57d1-9948-4594-b25c-ff29bf0f8d22","type":"Microsoft.Authorization/roleAssignments","name":"fd8b57d1-9948-4594-b25c-ff29bf0f8d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4359a177-0349-4bbe-8200-597a6b5988c4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T06:43:34.9542020Z","updatedOn":"2019-05-21T06:43:34.9542020Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475feb5a-afb2-4417-845b-91287f4df064","type":"Microsoft.Authorization/roleAssignments","name":"475feb5a-afb2-4417-845b-91287f4df064"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"436315a1-3487-4b5f-9451-9db950947774","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:24:08.0369897Z","updatedOn":"2019-05-29T05:24:08.0369897Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209b5f11-de0d-4481-80a2-daa9ec1332a9","type":"Microsoft.Authorization/roleAssignments","name":"209b5f11-de0d-4481-80a2-daa9ec1332a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43c23ded-3cb5-470e-bc6b-18ace2450f02","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T10:31:43.9680528Z","updatedOn":"2018-10-26T10:31:43.9680528Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a9ef605-c40e-4022-9892-7ff1571d42d1","type":"Microsoft.Authorization/roleAssignments","name":"6a9ef605-c40e-4022-9892-7ff1571d42d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"44612a17-dcf7-45aa-9746-e23b9efbc52e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-19T06:08:01.4727425Z","updatedOn":"2019-03-19T06:08:01.4727425Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4bda3a7-c31f-4785-87b9-7397c66c2a76","type":"Microsoft.Authorization/roleAssignments","name":"a4bda3a7-c31f-4785-87b9-7397c66c2a76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"446a2406-5e3c-426f-a11f-b2ae90d41b12","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T06:47:10.6709040Z","updatedOn":"2019-06-28T06:47:10.6709040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8526e15-cc60-485b-8fb7-2fc75d771680","type":"Microsoft.Authorization/roleAssignments","name":"c8526e15-cc60-485b-8fb7-2fc75d771680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4483f609-8063-445d-8fce-e9a0791d7743","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T06:38:36.9659286Z","updatedOn":"2019-05-04T06:38:36.9659286Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d8a96ba-af52-4ded-a174-fe4f5bd251ec","type":"Microsoft.Authorization/roleAssignments","name":"8d8a96ba-af52-4ded-a174-fe4f5bd251ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"450f70cc-8ddd-44bd-b4c8-6f4337fd615c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T13:40:33.9593357Z","updatedOn":"2019-02-05T13:40:33.9593357Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc6377ff-4ee9-4fe6-a603-aaf51634aed9","type":"Microsoft.Authorization/roleAssignments","name":"fc6377ff-4ee9-4fe6-a603-aaf51634aed9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4547f709-4e50-470c-8060-7812e3b8c3ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:49:48.5677574Z","updatedOn":"2019-06-25T16:49:48.5677574Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81b44c64-fa8b-46fe-b846-d6d828662047","type":"Microsoft.Authorization/roleAssignments","name":"81b44c64-fa8b-46fe-b846-d6d828662047"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4573f187-107b-42b9-a630-65afaed9dedc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:19:21.1503618Z","updatedOn":"2018-10-02T17:19:21.1503618Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b387a328-57de-470d-a725-e1b9851bb313","type":"Microsoft.Authorization/roleAssignments","name":"b387a328-57de-470d-a725-e1b9851bb313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45b3b38d-12b6-4661-a6aa-39ed5db0ec3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:47:31.4973975Z","updatedOn":"2018-10-16T05:47:31.4973975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a8697a7-5b39-467d-9a2f-6b252e8221f6","type":"Microsoft.Authorization/roleAssignments","name":"0a8697a7-5b39-467d-9a2f-6b252e8221f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bb20e3-e8a7-471c-8f35-a9b2a0d53eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:18:31.0524635Z","updatedOn":"2019-06-04T05:18:31.0524635Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05d587fc-47ba-4c32-8299-778af7caa3cb","type":"Microsoft.Authorization/roleAssignments","name":"05d587fc-47ba-4c32-8299-778af7caa3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bed781-9c44-47cd-9e3a-dcac823cb9b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-06T05:39:57.3761475Z","updatedOn":"2019-06-06T05:39:57.3761475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cadc56c7-a92c-48fa-be3a-7cb98623167f","type":"Microsoft.Authorization/roleAssignments","name":"cadc56c7-a92c-48fa-be3a-7cb98623167f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45c56eda-fe0e-4d34-89bf-28572cdac667","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:15:46.6902330Z","updatedOn":"2019-04-27T05:15:46.6902330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2993d37a-5072-45fb-b18e-b4ba8a081837","type":"Microsoft.Authorization/roleAssignments","name":"2993d37a-5072-45fb-b18e-b4ba8a081837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"460b4bac-41c6-4e2e-8bde-3b9db7715926","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T06:44:05.7543726Z","updatedOn":"2019-06-01T06:44:05.7543726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed","type":"Microsoft.Authorization/roleAssignments","name":"89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46544a73-6799-488b-a05f-d610bfb3fddc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-03T06:51:58.2053437Z","updatedOn":"2019-01-03T06:51:58.2053437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958","type":"Microsoft.Authorization/roleAssignments","name":"ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"469c2a14-0980-4a27-a5e6-b64da5278d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T10:22:25.8590170Z","updatedOn":"2018-10-29T10:22:25.8590170Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6304453a-dc6a-4566-aec9-0671e08478d1","type":"Microsoft.Authorization/roleAssignments","name":"6304453a-dc6a-4566-aec9-0671e08478d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46b8124c-0993-44ef-bcdd-59f8f909795a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T06:51:37.6673026Z","updatedOn":"2018-11-09T06:51:37.6673026Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e99aa592-ba65-4041-b875-1dc4fe439eb8","type":"Microsoft.Authorization/roleAssignments","name":"e99aa592-ba65-4041-b875-1dc4fe439eb8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"474cf59d-1867-42b8-afa4-94510b266143","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T17:10:30.5808563Z","updatedOn":"2018-09-19T17:10:30.5808563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de60d5e1-dd54-4d86-8627-19411fab3c55","type":"Microsoft.Authorization/roleAssignments","name":"de60d5e1-dd54-4d86-8627-19411fab3c55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4759ce24-1955-4c57-bc53-357a69cc065f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T05:42:58.0364828Z","updatedOn":"2019-09-11T05:42:58.0364828Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/096db8b9-6da1-41d6-91fc-a44386feca3f","type":"Microsoft.Authorization/roleAssignments","name":"096db8b9-6da1-41d6-91fc-a44386feca3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"478ac2b7-8882-45d7-b424-6d8339728ea9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-01T00:51:52.9057101Z","updatedOn":"2019-11-01T00:51:52.9057101Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb79b9d-a384-4d48-83b7-5b31896a4f92","type":"Microsoft.Authorization/roleAssignments","name":"9eb79b9d-a384-4d48-83b7-5b31896a4f92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"47ccb4ae-269f-4792-98ee-55462208ad1d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T10:26:14.6817565Z","updatedOn":"2018-10-30T10:26:14.6817565Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9091773-c7c6-4f4e-ab35-076a5cc4d5db","type":"Microsoft.Authorization/roleAssignments","name":"a9091773-c7c6-4f4e-ab35-076a5cc4d5db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48399d68-6db0-4c01-9dc9-28ca48f676bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:21:52.8692211Z","updatedOn":"2019-06-14T05:21:52.8692211Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503e317f-50ed-435e-b484-035819f25387","type":"Microsoft.Authorization/roleAssignments","name":"503e317f-50ed-435e-b484-035819f25387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4879bdd1-f8b6-4e5c-8742-c93c3d8eb6f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:11:37.0429548Z","updatedOn":"2019-02-22T07:11:37.0429548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1021e7fe-c7ea-4439-8d72-bae5333a00a6","type":"Microsoft.Authorization/roleAssignments","name":"1021e7fe-c7ea-4439-8d72-bae5333a00a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48c186d2-d564-483b-a78d-92746eb34908","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-21T17:13:17.9399323Z","updatedOn":"2018-10-21T17:13:17.9399323Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66bb1b23-5b07-447c-94c0-be5c991edacd","type":"Microsoft.Authorization/roleAssignments","name":"66bb1b23-5b07-447c-94c0-be5c991edacd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4971287f-7b3d-42b8-80df-f7de72239f6c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-21T06:51:31.8471566Z","updatedOn":"2018-12-21T06:51:31.8471566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a82e12c4-d611-415f-8bbd-aa3768178f9a","type":"Microsoft.Authorization/roleAssignments","name":"a82e12c4-d611-415f-8bbd-aa3768178f9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"49fea90c-711d-4fff-8586-9a0bcaf79778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:45:42.3797028Z","updatedOn":"2019-06-12T05:45:42.3797028Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35aaaa16-0910-42ac-a2c7-6575174a8b65","type":"Microsoft.Authorization/roleAssignments","name":"35aaaa16-0910-42ac-a2c7-6575174a8b65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b04df63-6c76-4cec-ae82-c5302b50f57f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:40:01.4067044Z","updatedOn":"2019-04-25T05:40:01.4067044Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf697e75-2154-4ca7-bf7c-6f32131ff63d","type":"Microsoft.Authorization/roleAssignments","name":"cf697e75-2154-4ca7-bf7c-6f32131ff63d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b5f89be-be88-448d-90bd-1148b6c6deb2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-23T02:16:34.2523880Z","updatedOn":"2019-07-23T02:16:34.2523880Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1da14562-3dee-4c97-a071-1b2937796647","type":"Microsoft.Authorization/roleAssignments","name":"1da14562-3dee-4c97-a071-1b2937796647"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b723d4d-39b5-46cf-b192-1b5e4be7d278","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:51:32.3314332Z","updatedOn":"2018-10-04T05:51:32.3314332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeebc9cd-f851-4d9e-8782-b06de99a7616","type":"Microsoft.Authorization/roleAssignments","name":"aeebc9cd-f851-4d9e-8782-b06de99a7616"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b77e5f1-f472-4281-b5ce-96c2039e4872","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.9578107Z","updatedOn":"2019-04-02T06:14:22.9578107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8cf185-da61-4600-97fa-a27d71653544","type":"Microsoft.Authorization/roleAssignments","name":"bd8cf185-da61-4600-97fa-a27d71653544"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c14e60a-74c8-43ef-a370-6a3bb799cdb4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T13:15:28.5283855Z","updatedOn":"2019-02-23T13:15:28.5283855Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc732667-a40b-4490-8800-b77748ad2f8a","type":"Microsoft.Authorization/roleAssignments","name":"bc732667-a40b-4490-8800-b77748ad2f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c4e9e90-6bdc-49a9-ae74-32c96bf3a94c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:44:13.0979261Z","updatedOn":"2018-09-20T06:44:13.0979261Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90c91b21-abb3-48db-ba76-e4a288b056ce","type":"Microsoft.Authorization/roleAssignments","name":"90c91b21-abb3-48db-ba76-e4a288b056ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d430ee7-bf2c-41be-9672-96777cb84779","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T05:11:12.7927693Z","updatedOn":"2019-04-03T05:11:12.7927693Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71de9f73-c4c5-4b06-8229-8c2b73aa268c","type":"Microsoft.Authorization/roleAssignments","name":"71de9f73-c4c5-4b06-8229-8c2b73aa268c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d9bae5e-34ea-40c5-a98f-39c324594d3a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T09:41:30.9298710Z","updatedOn":"2018-10-30T09:41:30.9298710Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1","type":"Microsoft.Authorization/roleAssignments","name":"a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ddddf7e-258e-46ab-b563-26d2add85795","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:56.1452795Z","updatedOn":"2019-03-23T06:12:56.1452795Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45364ae9-1f1f-4a3e-b120-12bab739fa23","type":"Microsoft.Authorization/roleAssignments","name":"45364ae9-1f1f-4a3e-b120-12bab739fa23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ee4448c-0fa1-4493-b654-4c05705d54aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T14:42:25.4875530Z","updatedOn":"2018-10-22T14:42:25.4875530Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9000edfd-747d-4670-8223-aa771430eb6b","type":"Microsoft.Authorization/roleAssignments","name":"9000edfd-747d-4670-8223-aa771430eb6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4fea67d3-9364-4671-b8e2-e01ff6852013","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:37:03.6862425Z","updatedOn":"2018-10-23T16:37:03.6862425Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f93c69-9a92-4bce-a218-ed965f3b1fa7","type":"Microsoft.Authorization/roleAssignments","name":"82f93c69-9a92-4bce-a218-ed965f3b1fa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"500b471d-6dd2-45c7-b50f-192bc099465b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-11T08:59:49.1091322Z","updatedOn":"2019-02-11T08:59:49.1091322Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d","type":"Microsoft.Authorization/roleAssignments","name":"0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"50d1b7ca-6643-4aac-a7b6-aba7bffecb30","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T21:23:34.5623608Z","updatedOn":"2019-05-30T21:23:34.5623608Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff3f8887-b570-4cd2-80d9-31c3c0d780aa","type":"Microsoft.Authorization/roleAssignments","name":"ff3f8887-b570-4cd2-80d9-31c3c0d780aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"511d8bff-40f9-4003-a398-1fabde903a4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:49.4826402Z","updatedOn":"2019-03-30T06:13:49.4826402Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ead5ca8-3ae1-47f7-99d4-e8553fc813d0","type":"Microsoft.Authorization/roleAssignments","name":"3ead5ca8-3ae1-47f7-99d4-e8553fc813d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52129afe-24ab-41b9-a540-887b859baaa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T18:23:27.1190689Z","updatedOn":"2018-11-21T18:23:27.1190689Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d6d4ecf-980e-4860-910b-134eaf2010cb","type":"Microsoft.Authorization/roleAssignments","name":"2d6d4ecf-980e-4860-910b-134eaf2010cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52f6a30a-8d0c-47da-a3a5-b84e88a614b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T09:40:56.6401023Z","updatedOn":"2018-10-23T09:40:56.6401023Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beab38c9-0315-4f4c-b271-3d273132fb1c","type":"Microsoft.Authorization/roleAssignments","name":"beab38c9-0315-4f4c-b271-3d273132fb1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52fe9977-36ab-49b5-92a4-e008c4388a78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:35:03.4984397Z","updatedOn":"2019-05-07T05:35:03.4984397Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f02d236b-9aa2-4b3a-b23f-79421d4a68b2","type":"Microsoft.Authorization/roleAssignments","name":"f02d236b-9aa2-4b3a-b23f-79421d4a68b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"540777ec-189c-4cbf-bac5-6e1f84406a6f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T06:47:47.5895654Z","updatedOn":"2019-05-09T06:47:47.5895654Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e825f950-8897-4264-a635-53ae9feedfb9","type":"Microsoft.Authorization/roleAssignments","name":"e825f950-8897-4264-a635-53ae9feedfb9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5409d5ca-8e03-4557-9e84-8665a083b067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:39:48.5422832Z","updatedOn":"2019-06-01T05:39:48.5422832Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f","type":"Microsoft.Authorization/roleAssignments","name":"bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54832b72-aac4-4083-93d5-846c2b6b45e8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:47:59.4896743Z","updatedOn":"2018-11-28T06:47:59.4896743Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ad3378a-c327-464e-9445-1879a1066af9","type":"Microsoft.Authorization/roleAssignments","name":"3ad3378a-c327-464e-9445-1879a1066af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54ec6555-72ef-4e8d-bf70-17a405718e5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T09:56:47.6916806Z","updatedOn":"2019-03-02T09:56:47.6916806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e843b4c5-043c-44ae-bd28-734e25051ef3","type":"Microsoft.Authorization/roleAssignments","name":"e843b4c5-043c-44ae-bd28-734e25051ef3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5513e966-698b-4802-8499-46d300e37b0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:22.8102306Z","updatedOn":"2019-04-04T06:36:22.8102306Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c","type":"Microsoft.Authorization/roleAssignments","name":"b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"56da69f6-625c-425c-906b-6ea65198ae49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:16:27.2709616Z","updatedOn":"2018-10-10T22:16:27.2709616Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/467f37f4-8892-4989-b43c-50b039603457","type":"Microsoft.Authorization/roleAssignments","name":"467f37f4-8892-4989-b43c-50b039603457"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"586b8b3a-47c2-481b-a253-e44113022fb8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T06:42:26.9020217Z","updatedOn":"2019-05-22T06:42:26.9020217Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e29fabe-5d12-42e5-b131-19e3370f33af","type":"Microsoft.Authorization/roleAssignments","name":"0e29fabe-5d12-42e5-b131-19e3370f33af"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"58c180ad-6259-4c01-a1c5-51198b9c9b9a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:00:17.5947515Z","updatedOn":"2018-10-19T15:00:17.5947515Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b49e2b-047e-42a9-a704-b5c2201303ad","type":"Microsoft.Authorization/roleAssignments","name":"e3b49e2b-047e-42a9-a704-b5c2201303ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"598b7be5-15a3-4908-92d8-06c0adcaaa00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:09.8827093Z","updatedOn":"2019-04-04T06:36:09.8827093Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73323681-1a8f-40aa-9031-5f02a21fe727","type":"Microsoft.Authorization/roleAssignments","name":"73323681-1a8f-40aa-9031-5f02a21fe727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59a9ced4-093d-4e07-8fe0-a4e51ffdea10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T21:25:05.4849641Z","updatedOn":"2018-11-09T21:25:05.4849641Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddd8ce04-ab66-494e-a2b2-5f757a43c4fa","type":"Microsoft.Authorization/roleAssignments","name":"ddd8ce04-ab66-494e-a2b2-5f757a43c4fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59f98a9e-db3e-4f6e-93d5-99623caf9553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T07:05:39.5135657Z","updatedOn":"2019-02-20T07:05:39.5135657Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc7d8a24-3934-451b-9feb-e075d7921420","type":"Microsoft.Authorization/roleAssignments","name":"fc7d8a24-3934-451b-9feb-e075d7921420"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b1c26a1-6561-412b-b4be-b0c17c3318fe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:57:15.5134809Z","updatedOn":"2018-10-05T00:57:15.5134809Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a96ae42-a747-4357-96fa-efd5e47c397c","type":"Microsoft.Authorization/roleAssignments","name":"3a96ae42-a747-4357-96fa-efd5e47c397c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3b4018-76a9-43bf-9f1c-24926c9a6103","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T06:39:33.1893579Z","updatedOn":"2019-05-25T06:39:33.1893579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db08177d-9064-4501-8eeb-4c3a02b254a2","type":"Microsoft.Authorization/roleAssignments","name":"db08177d-9064-4501-8eeb-4c3a02b254a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3bd66c-bd38-4565-aabe-0e6d10354596","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:15:19.7761488Z","updatedOn":"2019-05-28T05:15:19.7761488Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f641ca9-7e29-42c6-89f4-90e26c594902","type":"Microsoft.Authorization/roleAssignments","name":"0f641ca9-7e29-42c6-89f4-90e26c594902"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5c36cac2-e147-4997-a06c-596a42591a24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:15:50.4759690Z","updatedOn":"2019-05-11T05:15:50.4759690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72d79eff-8c00-4cd8-9cf4-e8a694596b3f","type":"Microsoft.Authorization/roleAssignments","name":"72d79eff-8c00-4cd8-9cf4-e8a694596b3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc1a360-1940-44a0-bc5e-29c604002d0b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:46:16.3494387Z","updatedOn":"2018-10-13T05:46:16.3494387Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e992eb54-5e47-4428-acd3-40c0265d2a40","type":"Microsoft.Authorization/roleAssignments","name":"e992eb54-5e47-4428-acd3-40c0265d2a40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc3a7f2-18dc-4c73-9d27-21c262e52c0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T16:19:42.5704417Z","updatedOn":"2019-06-15T16:19:42.5704417Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beb9ec14-f66a-498a-9812-89a9ec47b8e5","type":"Microsoft.Authorization/roleAssignments","name":"beb9ec14-f66a-498a-9812-89a9ec47b8e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5e414a46-57c9-4bad-9417-9cf6c3dc5a63","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:20:18.5626645Z","updatedOn":"2019-11-13T02:20:18.5626645Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96cf19f1-c252-46f6-905d-46bdbeaecc87","type":"Microsoft.Authorization/roleAssignments","name":"96cf19f1-c252-46f6-905d-46bdbeaecc87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5e69ef28-1db9-403c-8856-7d4e3ebbde4a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:02:04.8659613Z","updatedOn":"2019-11-13T09:02:04.8659613Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2261a61e-aa24-4c14-9afa-46297c364380","type":"Microsoft.Authorization/roleAssignments","name":"2261a61e-aa24-4c14-9afa-46297c364380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"607756a3-c971-467d-bce7-9267d8c01261","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:59:17.0515117Z","updatedOn":"2018-10-01T15:59:17.0515117Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4ca15bb-d013-4bf8-857f-4117c5db175c","type":"Microsoft.Authorization/roleAssignments","name":"d4ca15bb-d013-4bf8-857f-4117c5db175c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"613d5f03-41a8-4080-bdfc-a374e9f19988","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T10:22:26.9025135Z","updatedOn":"2018-10-22T10:22:26.9025135Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14bdb487-ccb9-4efb-bc90-104d135f8b29","type":"Microsoft.Authorization/roleAssignments","name":"14bdb487-ccb9-4efb-bc90-104d135f8b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"62af882c-540c-4f97-9ef6-17017da11708","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T07:04:26.8232762Z","updatedOn":"2019-02-05T07:04:26.8232762Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a54bd44-0912-4d8c-bc4d-c4ca672993d3","type":"Microsoft.Authorization/roleAssignments","name":"5a54bd44-0912-4d8c-bc4d-c4ca672993d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"63154abc-1cb7-47c9-98fe-5f0e6a108f59","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-21T13:56:59.6975946Z","updatedOn":"2019-10-21T13:56:59.6975946Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb4fc63b-fae5-4f01-a87c-b1d339da9039","type":"Microsoft.Authorization/roleAssignments","name":"cb4fc63b-fae5-4f01-a87c-b1d339da9039"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"64322757-c902-4fcb-8580-d53ec6a49733","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T09:58:18.8798266Z","updatedOn":"2019-03-07T09:58:18.8798266Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f","type":"Microsoft.Authorization/roleAssignments","name":"503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6453a293-3f49-42a0-953b-b954ad831b13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T06:36:20.6410975Z","updatedOn":"2019-04-27T06:36:20.6410975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9","type":"Microsoft.Authorization/roleAssignments","name":"3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"649ed1cc-32fd-4902-98ba-4ce661fe1b0e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:46:33.2506768Z","updatedOn":"2018-10-05T05:46:33.2506768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f653f0c1-a5d2-4e52-9cce-d9caa7a12948","type":"Microsoft.Authorization/roleAssignments","name":"f653f0c1-a5d2-4e52-9cce-d9caa7a12948"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66372353-a1d0-4b99-b9e3-b5b1f527d5c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T21:55:10.4318460Z","updatedOn":"2018-11-29T21:55:10.4318460Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4fedbf2e-17fb-46b5-8507-7b888fd819e4","type":"Microsoft.Authorization/roleAssignments","name":"4fedbf2e-17fb-46b5-8507-7b888fd819e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66da01d7-d0cd-4d5d-9daa-a6aac355e899","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.2380357Z","updatedOn":"2019-04-02T06:14:22.2380357Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95800b1b-cdac-4ba5-86a1-379016cd1dc6","type":"Microsoft.Authorization/roleAssignments","name":"95800b1b-cdac-4ba5-86a1-379016cd1dc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67404547-100a-42a8-8f2e-09b490634ea7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T05:09:36.0604037Z","updatedOn":"2019-03-22T05:09:36.0604037Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d","type":"Microsoft.Authorization/roleAssignments","name":"b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"679350fd-70c9-4f2f-b5f0-4d549ff59263","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:01:27.5039088Z","updatedOn":"2019-09-11T09:01:27.5039088Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0369f65-0715-45d4-a650-6f8f6a0175c3","type":"Microsoft.Authorization/roleAssignments","name":"a0369f65-0715-45d4-a650-6f8f6a0175c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67bfe2b8-c880-4fec-9fdf-a4865f955a30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-22T19:41:53.4008313Z","updatedOn":"2018-09-22T19:41:53.4008313Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d8de0a-74c3-40a9-b0cf-0343f2c62234","type":"Microsoft.Authorization/roleAssignments","name":"53d8de0a-74c3-40a9-b0cf-0343f2c62234"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67e33e41-2e5b-4a69-a3ef-6b5f3b167d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T15:44:49.1835703Z","updatedOn":"2018-11-13T15:44:49.1835703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a805b80-6b5c-4b23-ba48-60bc8a8a56ee","type":"Microsoft.Authorization/roleAssignments","name":"7a805b80-6b5c-4b23-ba48-60bc8a8a56ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"688639b0-ff93-4399-a3c3-5bf75676df74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-24T17:56:40.3800464Z","updatedOn":"2019-06-24T17:56:40.3800464Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af81c289-2651-4461-afd3-4b8b30e73b7f","type":"Microsoft.Authorization/roleAssignments","name":"af81c289-2651-4461-afd3-4b8b30e73b7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"692d387a-0a74-4f3c-84a4-ccc1aa564cc4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:23:56.9861355Z","updatedOn":"2019-03-28T06:23:56.9861355Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2dca01f-8b7c-456a-ba40-12c267516fa4","type":"Microsoft.Authorization/roleAssignments","name":"e2dca01f-8b7c-456a-ba40-12c267516fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"69ed4898-0851-4ea4-9813-dfc9864cbaf6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:26:34.1746649Z","updatedOn":"2018-12-11T19:26:34.1746649Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27564201-65a3-4a09-bdaf-70c08ecd1786","type":"Microsoft.Authorization/roleAssignments","name":"27564201-65a3-4a09-bdaf-70c08ecd1786"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6a2bd173-e6f2-4b0c-bd80-c3bc23afdd9b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-08T07:04:42.6974105Z","updatedOn":"2019-02-08T07:04:42.6974105Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/508ce624-c0ed-4246-9ace-6934f7c70f48","type":"Microsoft.Authorization/roleAssignments","name":"508ce624-c0ed-4246-9ace-6934f7c70f48"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ab640b3-0232-4412-b034-e0f6598d60cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:18:08.2083053Z","updatedOn":"2019-06-01T05:18:08.2083053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4190e61-7834-4128-ba57-9d1c881baba9","type":"Microsoft.Authorization/roleAssignments","name":"b4190e61-7834-4128-ba57-9d1c881baba9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6b111a75-d6f5-40f8-a713-2aff55c241bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T02:18:18.8000548Z","updatedOn":"2019-03-06T02:18:18.8000548Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7","type":"Microsoft.Authorization/roleAssignments","name":"33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c33ea0a-4309-494e-bb08-7c65d7732b2e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-02T05:41:29.5534504Z","updatedOn":"2019-07-02T05:41:29.5534504Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8905e9-16c6-40a6-9dbd-046aad713a25","type":"Microsoft.Authorization/roleAssignments","name":"bd8905e9-16c6-40a6-9dbd-046aad713a25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c4fbf1c-a382-44ed-881c-51962f3fd881","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T05:50:00.7096461Z","updatedOn":"2018-11-01T05:50:00.7096461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de49b46f-a02e-4836-80e3-219f97f087d4","type":"Microsoft.Authorization/roleAssignments","name":"de49b46f-a02e-4836-80e3-219f97f087d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c7e6aca-f52b-4eae-88a7-0b5d23020906","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:47:53.8404657Z","updatedOn":"2019-04-14T02:47:53.8404657Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8fc00c0-bf52-48fa-aff7-d7311f11bc19","type":"Microsoft.Authorization/roleAssignments","name":"e8fc00c0-bf52-48fa-aff7-d7311f11bc19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c9946ec-553a-48ce-ab04-aab7628afb1c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T02:10:55.9558958Z","updatedOn":"2018-12-01T02:10:55.9558958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fae0b28-b303-49a4-8054-3fbb15bc8947","type":"Microsoft.Authorization/roleAssignments","name":"9fae0b28-b303-49a4-8054-3fbb15bc8947"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6cb60ca7-ed56-47a6-9d38-4e01e7c9697d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T12:25:53.4854829Z","updatedOn":"2019-01-09T12:25:53.4854829Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396a79d2-fb2a-4bb1-b872-c77b7a4c13c6","type":"Microsoft.Authorization/roleAssignments","name":"396a79d2-fb2a-4bb1-b872-c77b7a4c13c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d36f33f-05a6-45f7-8209-089ee6b93a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:10.7409947Z","updatedOn":"2018-09-18T23:57:10.7409947Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29587e30-6cb4-4896-ac01-7592e243af86","type":"Microsoft.Authorization/roleAssignments","name":"29587e30-6cb4-4896-ac01-7592e243af86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d489fcb-a876-474e-baee-4b2c247066ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:00:59.6415842Z","updatedOn":"2019-04-14T03:00:59.6415842Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c771da9-9d8a-4071-b0d8-1c59d6e7266f","type":"Microsoft.Authorization/roleAssignments","name":"9c771da9-9d8a-4071-b0d8-1c59d6e7266f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d854209-9a54-4c9e-a159-e8d3094658d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:48:24.6364909Z","updatedOn":"2019-04-14T02:48:24.6364909Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edc12553-178b-4765-bf26-98f57a26fc02","type":"Microsoft.Authorization/roleAssignments","name":"edc12553-178b-4765-bf26-98f57a26fc02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6dc88d25-0c7b-42c6-8c91-a562a0b13006","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-13T06:05:50.2210833Z","updatedOn":"2019-03-13T06:05:50.2210833Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/399d0881-1788-435a-855b-3dd5157c360d","type":"Microsoft.Authorization/roleAssignments","name":"399d0881-1788-435a-855b-3dd5157c360d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6e4e17aa-d5b2-4bb4-9fd3-0fc44c929b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:46:47.0487850Z","updatedOn":"2019-05-29T05:46:47.0487850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fdd201e-75f6-4830-8925-b96202c67a56","type":"Microsoft.Authorization/roleAssignments","name":"8fdd201e-75f6-4830-8925-b96202c67a56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ec8f82c-9e32-48cc-85cc-e0e48defae11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T06:50:23.9583339Z","updatedOn":"2018-11-29T06:50:23.9583339Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c02193e-3c95-4479-adc6-9a75cfb573b8","type":"Microsoft.Authorization/roleAssignments","name":"1c02193e-3c95-4479-adc6-9a75cfb573b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ecd84c7-bbaa-48c4-98a6-6087ed3df64a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:14:56.9351550Z","updatedOn":"2019-04-25T05:14:56.9351550Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fa8e3ed-deef-4f08-b893-81ebe9acde0e","type":"Microsoft.Authorization/roleAssignments","name":"5fa8e3ed-deef-4f08-b893-81ebe9acde0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ef96f42-cd57-4e99-89e7-0e89f05cfede","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:38:59.3997604Z","updatedOn":"2019-04-26T05:38:59.3997604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fad55ac3-c806-49b8-97e9-c2b7f1acab16","type":"Microsoft.Authorization/roleAssignments","name":"fad55ac3-c806-49b8-97e9-c2b7f1acab16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6fe33150-178c-4a55-8ce7-f2e66551a121","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:00:17.0044164Z","updatedOn":"2019-11-13T09:00:17.0044164Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ef6f-e13b-4d15-9838-5334c3e6b391","type":"Microsoft.Authorization/roleAssignments","name":"d408ef6f-e13b-4d15-9838-5334c3e6b391"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"704e2404-42e9-4dd2-a0b2-672150eb02b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:22:13.0814390Z","updatedOn":"2019-06-26T05:22:13.0814390Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63aaafb2-482e-47e2-a1c4-8860726353ec","type":"Microsoft.Authorization/roleAssignments","name":"63aaafb2-482e-47e2-a1c4-8860726353ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"712a3ed3-322d-46bb-83c8-d283bf293f92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T15:48:15.6003613Z","updatedOn":"2018-11-15T15:48:15.6003613Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/211f4c48-7e4a-40b6-93cd-f3457de00cec","type":"Microsoft.Authorization/roleAssignments","name":"211f4c48-7e4a-40b6-93cd-f3457de00cec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"73b10201-9d86-47ba-a9c0-fb6262496596","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:19:16.0685947Z","updatedOn":"2019-11-13T09:19:16.0685947Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08251a7a-c5a5-4aa2-864a-e7240e2d3803","type":"Microsoft.Authorization/roleAssignments","name":"08251a7a-c5a5-4aa2-864a-e7240e2d3803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"73d4eb83-1fe6-46a2-ad7b-784756ff030b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T10:22:45.7824438Z","updatedOn":"2018-10-31T10:22:45.7824438Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94d225f7-9fa8-410e-8b04-f1fd0d94b71d","type":"Microsoft.Authorization/roleAssignments","name":"94d225f7-9fa8-410e-8b04-f1fd0d94b71d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"74294fda-1d88-4f11-b3ec-828c8f993e15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:20:42.8929893Z","updatedOn":"2019-06-29T05:20:42.8929893Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8","type":"Microsoft.Authorization/roleAssignments","name":"6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7548cbdb-a952-4df9-8444-40e9ce828000","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T06:54:57.2847495Z","updatedOn":"2018-12-01T06:54:57.2847495Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/928582a4-ecf3-4748-b1e0-11701e025432","type":"Microsoft.Authorization/roleAssignments","name":"928582a4-ecf3-4748-b1e0-11701e025432"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7609cd9b-efcb-493a-a026-225b7a9a0365","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:47:30.3923076Z","updatedOn":"2018-10-06T05:47:30.3923076Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4dca0a71-a984-4dda-876b-c4f024c10f8a","type":"Microsoft.Authorization/roleAssignments","name":"4dca0a71-a984-4dda-876b-c4f024c10f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"76776aa5-af1d-4b9e-a56e-1477a17cf070","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T17:38:33.7929610Z","updatedOn":"2019-02-02T17:38:33.7929610Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b712f421-681a-4cc0-b84d-64ab8b65802b","type":"Microsoft.Authorization/roleAssignments","name":"b712f421-681a-4cc0-b84d-64ab8b65802b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7683dc97-8db7-437f-8baf-fcd5df568a8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:15:03.9119281Z","updatedOn":"2019-05-08T05:15:03.9119281Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4083e34a-3fb9-4689-ab26-6287bd9fd9c2","type":"Microsoft.Authorization/roleAssignments","name":"4083e34a-3fb9-4689-ab26-6287bd9fd9c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"774f9cb3-e176-43ee-9b53-ac10e6db0778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T13:30:32.8137217Z","updatedOn":"2019-03-03T13:30:32.8137217Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/495be90f-ab00-4d1d-aecd-e024bec55393","type":"Microsoft.Authorization/roleAssignments","name":"495be90f-ab00-4d1d-aecd-e024bec55393"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77c092ea-ce78-458d-9f38-c17c2681438c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-12T07:07:29.9963220Z","updatedOn":"2019-02-12T07:07:29.9963220Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67304b6e-b8d9-415a-8f92-2562023fd837","type":"Microsoft.Authorization/roleAssignments","name":"67304b6e-b8d9-415a-8f92-2562023fd837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77f74980-f5ce-4484-a15a-20709e5e2547","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T01:08:23.2453424Z","updatedOn":"2019-05-04T01:08:23.2453424Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71538224-b885-4a3e-b178-5d73c4ec869d","type":"Microsoft.Authorization/roleAssignments","name":"71538224-b885-4a3e-b178-5d73c4ec869d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"780847de-4327-4f25-86e2-289447951d2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T06:50:07.1933427Z","updatedOn":"2019-05-17T06:50:07.1933427Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82eb6677-63a7-44f1-9d75-a991c5e669ac","type":"Microsoft.Authorization/roleAssignments","name":"82eb6677-63a7-44f1-9d75-a991c5e669ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"78641149-e93c-4ce4-8adb-7615b8830d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T09:40:18.7637943Z","updatedOn":"2018-10-29T09:40:18.7637943Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d50a36cf-7e26-41a9-b248-b2082b06df86","type":"Microsoft.Authorization/roleAssignments","name":"d50a36cf-7e26-41a9-b248-b2082b06df86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"794df39c-a438-4cba-ba1f-471684649cbd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T06:47:49.5030941Z","updatedOn":"2018-12-08T06:47:49.5030941Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8adc08be-35c7-4082-a97e-58495bf0633e","type":"Microsoft.Authorization/roleAssignments","name":"8adc08be-35c7-4082-a97e-58495bf0633e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"79d28f59-7371-4cc1-aa55-1637711f25c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-26T06:50:12.3943072Z","updatedOn":"2018-12-26T06:50:12.3943072Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f8d5b31-c70e-421e-9cda-f23d6d6514ac","type":"Microsoft.Authorization/roleAssignments","name":"0f8d5b31-c70e-421e-9cda-f23d6d6514ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ada01ed-fe33-41b9-b33c-fff421c40085","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T20:55:00.8548042Z","updatedOn":"2019-05-14T20:55:00.8548042Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5cf6ad-afcd-4a50-98bb-4bb0108775fa","type":"Microsoft.Authorization/roleAssignments","name":"ea5cf6ad-afcd-4a50-98bb-4bb0108775fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b450bc8-eda3-44ee-8469-fc5e877cc504","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-15T00:36:11.7693422Z","updatedOn":"2018-09-15T00:36:11.7693422Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bcb0d890-060d-4fc7-8113-9021bc1dfa56","type":"Microsoft.Authorization/roleAssignments","name":"bcb0d890-060d-4fc7-8113-9021bc1dfa56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b786a3d-6ce9-495d-8716-52ae82f5e2a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:11.0215326Z","updatedOn":"2019-04-03T06:11:11.0215326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b83528d1-e123-4edf-8ee6-ba5bd0bd6f47","type":"Microsoft.Authorization/roleAssignments","name":"b83528d1-e123-4edf-8ee6-ba5bd0bd6f47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bbf0190-840a-4e74-916d-fa4c01be297b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T18:03:45.6908682Z","updatedOn":"2018-10-02T18:03:45.6908682Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dcb8da1-75d1-4598-a61e-28b463c47f01","type":"Microsoft.Authorization/roleAssignments","name":"6dcb8da1-75d1-4598-a61e-28b463c47f01"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bfb0f39-e9bc-4acc-addb-479cb042834b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T14:38:29.7385082Z","updatedOn":"2018-10-30T14:38:29.7385082Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45e0d28f-cdde-4cdb-8edb-168c8f7590d2","type":"Microsoft.Authorization/roleAssignments","name":"45e0d28f-cdde-4cdb-8edb-168c8f7590d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5418b8-53e6-43ed-8e35-75d3d6dfb2e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T18:02:59.3895408Z","updatedOn":"2018-09-13T18:02:59.3895408Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6a0f050-1296-4798-908e-aaf195b4c798","type":"Microsoft.Authorization/roleAssignments","name":"d6a0f050-1296-4798-908e-aaf195b4c798"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5d633a-ec69-498a-92cf-55464c78670b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:16:38.1702958Z","updatedOn":"2019-05-15T05:16:38.1702958Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/741aa019-0fe3-403f-a882-0d05dffdfd2d","type":"Microsoft.Authorization/roleAssignments","name":"741aa019-0fe3-403f-a882-0d05dffdfd2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ca80fb2-737e-4e66-a3cd-b8a323d537cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:39:04.0585092Z","updatedOn":"2019-05-25T05:39:04.0585092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/638f44e3-8179-48c7-90c1-21f64a585aac","type":"Microsoft.Authorization/roleAssignments","name":"638f44e3-8179-48c7-90c1-21f64a585aac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7d4cdb41-c410-4a81-97e6-8caae8993d00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T07:18:44.3763561Z","updatedOn":"2018-12-06T07:18:44.3763561Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3b91d2bf-0026-4f91-95b4-cd0ed0f85173","type":"Microsoft.Authorization/roleAssignments","name":"3b91d2bf-0026-4f91-95b4-cd0ed0f85173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7df99738-7bfc-4895-a68f-50f8ed8f0505","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:42:35.5182437Z","updatedOn":"2018-10-23T05:42:35.5182437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17db1f19-acc1-49ba-a03c-dfbe611262b9","type":"Microsoft.Authorization/roleAssignments","name":"17db1f19-acc1-49ba-a03c-dfbe611262b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e22c332-3d2b-4de8-bf01-d64d23dc1b39","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T15:39:42.5789529Z","updatedOn":"2018-11-09T15:39:42.5789529Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a72e6191-bb9b-4169-b6cf-b31b214a627f","type":"Microsoft.Authorization/roleAssignments","name":"a72e6191-bb9b-4169-b6cf-b31b214a627f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e887460-65fd-40f5-ac81-f73deea466d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T05:14:55.7828522Z","updatedOn":"2019-05-10T05:14:55.7828522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cbbe3ce-9d21-477d-b178-b83e6442e99e","type":"Microsoft.Authorization/roleAssignments","name":"5cbbe3ce-9d21-477d-b178-b83e6442e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f100bfc-db5f-4309-bcec-2bb6df12c04a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T01:53:31.6719631Z","updatedOn":"2019-01-31T01:53:31.6719631Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/868dcee8-c116-4502-bc04-263d3ae53fd0","type":"Microsoft.Authorization/roleAssignments","name":"868dcee8-c116-4502-bc04-263d3ae53fd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f74ea17-fa4d-41c0-a543-a539c46210ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:52:07.3188509Z","updatedOn":"2018-09-27T17:52:07.3188509Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3","type":"Microsoft.Authorization/roleAssignments","name":"d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f758d4c-db29-4a18-a057-75efd8e79a74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T05:10:35.2296932Z","updatedOn":"2019-04-06T05:10:35.2296932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9cc64ce-73b9-446d-b99d-645c964fd426","type":"Microsoft.Authorization/roleAssignments","name":"e9cc64ce-73b9-446d-b99d-645c964fd426"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f9eb655-2f05-4a27-9fcd-280b43791ed6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T06:41:41.2203329Z","updatedOn":"2019-05-10T06:41:41.2203329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e35b736-0f88-4814-88d8-24e6854c819b","type":"Microsoft.Authorization/roleAssignments","name":"4e35b736-0f88-4814-88d8-24e6854c819b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"803b3279-b14b-4be3-bd41-ae1b259e37a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T22:17:06.9892206Z","updatedOn":"2018-10-23T22:17:06.9892206Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/619d9112-56a2-4801-b56e-e541a92a2da4","type":"Microsoft.Authorization/roleAssignments","name":"619d9112-56a2-4801-b56e-e541a92a2da4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8062a81a-b6f4-4c69-8c8e-9bbd301e41ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:50.2078671Z","updatedOn":"2019-03-30T06:13:50.2078671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d8161d-defe-484b-b0e8-f4c653252f16","type":"Microsoft.Authorization/roleAssignments","name":"a8d8161d-defe-484b-b0e8-f4c653252f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80b1b2c3-cdf2-4dae-a38b-a49a2f52eecd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-28T08:01:24.9654792Z","updatedOn":"2019-10-28T08:01:24.9654792Z","createdBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","updatedBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d30cdea5-4849-4685-994d-9f297f8fc2d2","type":"Microsoft.Authorization/roleAssignments","name":"d30cdea5-4849-4685-994d-9f297f8fc2d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80c1e693-93a1-4115-8610-6b67677e8fc0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-09T07:12:14.9103934Z","updatedOn":"2019-03-09T07:12:14.9103934Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3","type":"Microsoft.Authorization/roleAssignments","name":"c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"810d390f-64ed-40f9-89d6-3cceb7329ff5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T01:23:26.7885228Z","updatedOn":"2018-11-21T01:23:26.7885228Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8091748e-cc72-4082-8cfa-6ea8622b3625","type":"Microsoft.Authorization/roleAssignments","name":"8091748e-cc72-4082-8cfa-6ea8622b3625"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"829571ed-c3d7-4985-818f-b996ff7ef088","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:16:52.4886041Z","updatedOn":"2019-05-17T05:16:52.4886041Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef","type":"Microsoft.Authorization/roleAssignments","name":"d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:15:50.5935627Z","updatedOn":"2019-09-11T09:15:50.5935627Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/253c1f18-9f2b-490d-961d-520ba222a9b3","type":"Microsoft.Authorization/roleAssignments","name":"253c1f18-9f2b-490d-961d-520ba222a9b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8397a3ab-dcd0-4905-9dfc-406e9a5364d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T18:48:16.6057069Z","updatedOn":"2019-03-01T18:48:16.6057069Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/49d9706e-3f83-4afa-954e-1ca959f0ac99","type":"Microsoft.Authorization/roleAssignments","name":"49d9706e-3f83-4afa-954e-1ca959f0ac99"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"83f56332-63d8-4a04-a851-017a0414dbc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T06:49:20.3867553Z","updatedOn":"2018-12-18T06:49:20.3867553Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/735d41dc-d524-4686-acce-015022fb652a","type":"Microsoft.Authorization/roleAssignments","name":"735d41dc-d524-4686-acce-015022fb652a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"84874d5a-4130-4df0-96b1-6491c10e6354","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T11:39:38.8845443Z","updatedOn":"2018-09-28T11:39:38.8845443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/697d3373-5487-41d7-8535-17a047bee7e1","type":"Microsoft.Authorization/roleAssignments","name":"697d3373-5487-41d7-8535-17a047bee7e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"850cdb5c-03f2-45c6-b9d9-0f3a9c594ccf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:47.1967557Z","updatedOn":"2019-03-23T06:12:47.1967557Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5434eca1-b18b-4aaf-8063-ffd71f2ff773","type":"Microsoft.Authorization/roleAssignments","name":"5434eca1-b18b-4aaf-8063-ffd71f2ff773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"85137175-3916-4cb9-b552-9ad76eba2798","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T05:10:41.3063102Z","updatedOn":"2019-03-27T05:10:41.3063102Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cecdd3-d0e4-4a75-9254-f7b9ab550c04","type":"Microsoft.Authorization/roleAssignments","name":"70cecdd3-d0e4-4a75-9254-f7b9ab550c04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"859ad38c-b4ff-480a-9db1-366be15d50bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T06:48:58.5197973Z","updatedOn":"2018-11-10T06:48:58.5197973Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e798d79f-8086-428b-91ce-ad7ea651624f","type":"Microsoft.Authorization/roleAssignments","name":"e798d79f-8086-428b-91ce-ad7ea651624f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"860aaec5-bc98-4ba5-9edf-79e4c9fd8ded","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:45:59.7559326Z","updatedOn":"2019-06-11T05:45:59.7559326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2a43861-47d0-454f-a2e0-3d8f7b2d02e5","type":"Microsoft.Authorization/roleAssignments","name":"d2a43861-47d0-454f-a2e0-3d8f7b2d02e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8681181f-40ca-487a-8bc6-259755150aa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:20.7745983Z","updatedOn":"2019-04-16T06:34:20.7745983Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67e3e91b-1b88-44b0-991d-d3e26974afb5","type":"Microsoft.Authorization/roleAssignments","name":"67e3e91b-1b88-44b0-991d-d3e26974afb5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86bd3fff-bfc8-4e57-98ae-3e5bd84e30c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:40:51.5801241Z","updatedOn":"2019-05-30T05:40:51.5801241Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10e93af6-2d05-4e09-9cd8-d926a21b5f7e","type":"Microsoft.Authorization/roleAssignments","name":"10e93af6-2d05-4e09-9cd8-d926a21b5f7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86eddba4-f356-4ed6-ba86-fd1cbfe047bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:13:35.8229209Z","updatedOn":"2019-11-13T09:13:35.8229209Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/807e7f63-c8b6-4a73-ae0f-0a9db3f59da8","type":"Microsoft.Authorization/roleAssignments","name":"807e7f63-c8b6-4a73-ae0f-0a9db3f59da8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86fcac07-0a80-4464-ace0-0dd23eb4b528","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T20:51:53.2630989Z","updatedOn":"2018-11-28T20:51:53.2630989Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f598f88f-98f3-4cb2-99b6-bb53cfee4746","type":"Microsoft.Authorization/roleAssignments","name":"f598f88f-98f3-4cb2-99b6-bb53cfee4746"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"87ae5050-5dca-4740-bd43-aadd802d919e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T06:47:48.1709454Z","updatedOn":"2019-01-16T06:47:48.1709454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d85e0d-aaa3-4d7d-a661-5e123e470fc0","type":"Microsoft.Authorization/roleAssignments","name":"53d85e0d-aaa3-4d7d-a661-5e123e470fc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"885ee9c5-df35-4d21-bd29-33d930ef4721","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T07:30:25.7405858Z","updatedOn":"2019-08-08T07:30:25.7405858Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e1de6d0-412e-4425-8e11-897f4aa32d65","type":"Microsoft.Authorization/roleAssignments","name":"9e1de6d0-412e-4425-8e11-897f4aa32d65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"888287be-1758-492b-a9df-f99a65e928a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:39:19.6358987Z","updatedOn":"2019-05-23T05:39:19.6358987Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f6286d7-b327-4bc5-8515-b736e36aba87","type":"Microsoft.Authorization/roleAssignments","name":"3f6286d7-b327-4bc5-8515-b736e36aba87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88c9f7f7-c720-43b2-ac50-d7d5a76e7b9c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T06:48:42.2936439Z","updatedOn":"2018-11-22T06:48:42.2936439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44e14919-123f-4731-bf81-69e94a33fcc7","type":"Microsoft.Authorization/roleAssignments","name":"44e14919-123f-4731-bf81-69e94a33fcc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88cdf2e8-5bc2-4ca0-8e23-74e541c26422","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-12T06:50:17.5434069Z","updatedOn":"2018-12-12T06:50:17.5434069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09f95a7b-cede-4f56-8d5f-04b29960fa0a","type":"Microsoft.Authorization/roleAssignments","name":"09f95a7b-cede-4f56-8d5f-04b29960fa0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"89149cc0-7878-455f-8a31-96d855a63bdd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-14T06:45:38.8092576Z","updatedOn":"2018-11-14T06:45:38.8092576Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea25ecfd-48d0-476c-8f69-aabe91c96e47","type":"Microsoft.Authorization/roleAssignments","name":"ea25ecfd-48d0-476c-8f69-aabe91c96e47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a372213-3a4f-45a0-92b9-5fcc49fecfb0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-22T05:05:26.4372433Z","updatedOn":"2019-10-22T05:05:26.4372433Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da31c7fc-e844-42e7-aa7d-96332502f393","type":"Microsoft.Authorization/roleAssignments","name":"da31c7fc-e844-42e7-aa7d-96332502f393"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a41c179-d22b-43ae-83f0-1f5515bb245f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:19.2136302Z","updatedOn":"2019-04-09T06:35:19.2136302Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd39d246-f152-4e96-af84-3ac161b5aafa","type":"Microsoft.Authorization/roleAssignments","name":"fd39d246-f152-4e96-af84-3ac161b5aafa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a7045fa-9fee-486e-ba3e-33c1a9c89c2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:24.9082258Z","updatedOn":"2019-01-30T06:54:24.9082258Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacf3561-43a4-47d3-9b6c-fe09ab0e2484","type":"Microsoft.Authorization/roleAssignments","name":"cacf3561-43a4-47d3-9b6c-fe09ab0e2484"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a78addb-7a34-4e2f-8838-b6ec9b8b5628","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:35:55.7825128Z","updatedOn":"2019-09-05T08:35:55.7825128Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df98f1e4-c153-4ad2-b1eb-ae54fd649883","type":"Microsoft.Authorization/roleAssignments","name":"df98f1e4-c153-4ad2-b1eb-ae54fd649883"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b4a28be-63be-4e50-91ca-ab9f88d1e441","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:47:20.3790319Z","updatedOn":"2019-06-18T05:47:20.3790319Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aff8bc7d-a807-4428-aeb0-afc34fb52e93","type":"Microsoft.Authorization/roleAssignments","name":"aff8bc7d-a807-4428-aeb0-afc34fb52e93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b600b42-5019-4514-ad2e-14d3b20ff9df","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:39:34.9112754Z","updatedOn":"2018-10-11T05:39:34.9112754Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29789408-9895-46a1-acb1-664dec3c8872","type":"Microsoft.Authorization/roleAssignments","name":"29789408-9895-46a1-acb1-664dec3c8872"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cce118b-f45a-411d-b076-4f849efb6ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:20:31.2207711Z","updatedOn":"2019-06-27T05:20:31.2207711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c6637af-06cb-46b6-a62f-a9e2a62cad31","type":"Microsoft.Authorization/roleAssignments","name":"1c6637af-06cb-46b6-a62f-a9e2a62cad31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce13a5d-7120-4635-b792-8cc697798e81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-03T05:23:07.9499351Z","updatedOn":"2019-10-03T05:23:07.9499351Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7","type":"Microsoft.Authorization/roleAssignments","name":"ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce997ec-1f2a-4796-8b19-e02bf979ffa5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:39:53.3017512Z","updatedOn":"2019-05-18T05:39:53.3017512Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7059ba-fadd-47d2-a59a-ee611e3d77dd","type":"Microsoft.Authorization/roleAssignments","name":"7f7059ba-fadd-47d2-a59a-ee611e3d77dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cea47c6-3e90-4421-8cb2-d9c649b5c0ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-10T02:29:16.1041985Z","updatedOn":"2019-02-10T02:29:16.1041985Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c7b4a4-ec46-40e8-83cc-1d65e8b5d665","type":"Microsoft.Authorization/roleAssignments","name":"77c7b4a4-ec46-40e8-83cc-1d65e8b5d665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8d283b1c-4ca3-490f-8401-4b05f5b57656","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T07:22:15.2349889Z","updatedOn":"2019-01-04T07:22:15.2349889Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a8632df-430e-40c5-9ba8-531b084eb015","type":"Microsoft.Authorization/roleAssignments","name":"3a8632df-430e-40c5-9ba8-531b084eb015"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8dd7bd0c-715c-45e3-b5fe-a597edc16699","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T10:12:32.4633786Z","updatedOn":"2019-01-25T10:12:32.4633786Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d3a1780-6c4e-4c47-8f6d-edd8173e50ed","type":"Microsoft.Authorization/roleAssignments","name":"0d3a1780-6c4e-4c47-8f6d-edd8173e50ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8df306d5-4e1b-4510-840b-9c56ef056301","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T06:47:54.6022805Z","updatedOn":"2018-11-07T06:47:54.6022805Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfdc3356-78c4-408d-93ab-c2dffd9f4578","type":"Microsoft.Authorization/roleAssignments","name":"bfdc3356-78c4-408d-93ab-c2dffd9f4578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8e18e49b-6e52-4124-ac14-f42e6c82c512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:44:44.2494251Z","updatedOn":"2019-06-28T05:44:44.2494251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c9e2473-0b99-4449-93dd-5e74e5d7e3c1","type":"Microsoft.Authorization/roleAssignments","name":"3c9e2473-0b99-4449-93dd-5e74e5d7e3c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8eb60d07-7fb4-4d38-b600-9c7c398ea28b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:34:29.0093148Z","updatedOn":"2019-04-23T05:34:29.0093148Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff24f92f-f8b2-4d0c-a12d-5d3466a1f107","type":"Microsoft.Authorization/roleAssignments","name":"ff24f92f-f8b2-4d0c-a12d-5d3466a1f107"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8fc68847-fe15-4731-9c9c-1d440ec89270","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-26T07:09:45.8107484Z","updatedOn":"2019-02-26T07:09:45.8107484Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d06ea5ab-8242-445f-8edd-c50382796e81","type":"Microsoft.Authorization/roleAssignments","name":"d06ea5ab-8242-445f-8edd-c50382796e81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"902a11a4-40a1-4c17-9139-0070bb53eca4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:45:40.0344224Z","updatedOn":"2018-10-30T05:45:40.0344224Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7","type":"Microsoft.Authorization/roleAssignments","name":"6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9042fba9-7801-4f46-8c28-af4a76a10433","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:35:32.5787562Z","updatedOn":"2019-05-01T05:35:32.5787562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2947240-7bbf-4ab3-ba2b-457afe1f9083","type":"Microsoft.Authorization/roleAssignments","name":"e2947240-7bbf-4ab3-ba2b-457afe1f9083"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c32522-8d64-4774-85ee-3abd6d9cb372","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T06:48:31.8103069Z","updatedOn":"2018-12-20T06:48:31.8103069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66ab78c8-dc8e-410d-a387-d621e4037311","type":"Microsoft.Authorization/roleAssignments","name":"66ab78c8-dc8e-410d-a387-d621e4037311"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c3d926-9c03-4d90-86f4-12866a6da212","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T20:57:30.6864609Z","updatedOn":"2019-04-02T20:57:30.6864609Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bf3be37-b85e-49f9-ace5-e14c018302b5","type":"Microsoft.Authorization/roleAssignments","name":"6bf3be37-b85e-49f9-ace5-e14c018302b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90e83a65-4688-4dfd-93c3-210e9783e992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T07:08:13.7709623Z","updatedOn":"2019-02-21T07:08:13.7709623Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed92bed5-5125-4ac3-9c0e-5c751266239f","type":"Microsoft.Authorization/roleAssignments","name":"ed92bed5-5125-4ac3-9c0e-5c751266239f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"91350478-d2f8-41ef-9cb7-42545ea342c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T00:36:16.8902719Z","updatedOn":"2018-09-27T00:36:16.8902719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f03fbd61-1898-497e-b5b0-aa2def1286f8","type":"Microsoft.Authorization/roleAssignments","name":"f03fbd61-1898-497e-b5b0-aa2def1286f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92db2019-9cdc-4e7d-9249-9b069ca42081","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T05:11:10.3936053Z","updatedOn":"2019-04-04T05:11:10.3936053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5b439b9-3f5e-441a-ab53-af1d2385f640","type":"Microsoft.Authorization/roleAssignments","name":"a5b439b9-3f5e-441a-ab53-af1d2385f640"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92fd0c36-95b6-4540-9c6d-4cc1dba575ce","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T06:50:06.1336080Z","updatedOn":"2019-06-12T06:50:06.1336080Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09ba6b34-76e4-463c-9eec-e73b793f71e2","type":"Microsoft.Authorization/roleAssignments","name":"09ba6b34-76e4-463c-9eec-e73b793f71e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94b95a0b-b2a4-4641-892c-d78dd996e39e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T08:52:33.3535638Z","updatedOn":"2018-09-17T08:52:33.3535638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f3fafc1-9de7-4719-bd1b-9df30f1c574e","type":"Microsoft.Authorization/roleAssignments","name":"5f3fafc1-9de7-4719-bd1b-9df30f1c574e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94e0c796-2393-4338-86ca-ac74457a7d4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:39:29.3097032Z","updatedOn":"2019-05-16T05:39:29.3097032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f3529d-5eb5-4014-958d-048b3d6a3428","type":"Microsoft.Authorization/roleAssignments","name":"68f3529d-5eb5-4014-958d-048b3d6a3428"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9526235b-a8d3-4db5-94e2-2194761f04ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-29T21:05:48.1770851Z","updatedOn":"2019-04-29T21:05:48.1770851Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a400d86-7ca4-44d1-ab4d-c066fd01258f","type":"Microsoft.Authorization/roleAssignments","name":"2a400d86-7ca4-44d1-ab4d-c066fd01258f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"956a52f7-9996-4c8f-953a-66ecc7b451fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:23:11.9575182Z","updatedOn":"2018-09-20T17:23:11.9575182Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0066587c-01c9-479d-8340-55aafbe67b24","type":"Microsoft.Authorization/roleAssignments","name":"0066587c-01c9-479d-8340-55aafbe67b24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"95a583f2-61d2-4237-a127-c85658478534","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T10:26:39.0170505Z","updatedOn":"2018-11-02T10:26:39.0170505Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ed51071-ce4e-466c-bca6-629e2053b7a8","type":"Microsoft.Authorization/roleAssignments","name":"9ed51071-ce4e-466c-bca6-629e2053b7a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"966839c9-4964-4642-9c76-4eb430fbb0dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T06:35:32.5337994Z","updatedOn":"2019-04-30T06:35:32.5337994Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81eda284-d81f-48d8-84ef-cc4207c6e86d","type":"Microsoft.Authorization/roleAssignments","name":"81eda284-d81f-48d8-84ef-cc4207c6e86d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"96ce046c-a39e-4dcc-a9c7-26d1604294d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:33:20.5140104Z","updatedOn":"2018-10-10T00:33:20.5140104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b54cb9c8-c8e3-4adc-86b5-f6dd436a794e","type":"Microsoft.Authorization/roleAssignments","name":"b54cb9c8-c8e3-4adc-86b5-f6dd436a794e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"973fdd79-4ab9-438e-87c3-954cca1889e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T19:09:54.9071757Z","updatedOn":"2018-09-21T19:09:54.9071757Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4890276-7fa1-47a7-9d82-f0a4ceff9bd6","type":"Microsoft.Authorization/roleAssignments","name":"a4890276-7fa1-47a7-9d82-f0a4ceff9bd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"97a313c7-04c3-4f12-833e-7c3618d39fcf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T02:03:26.0775557Z","updatedOn":"2019-10-16T02:03:26.0775557Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/152b2f63-3360-4ab8-a651-02b6dd4a11cc","type":"Microsoft.Authorization/roleAssignments","name":"152b2f63-3360-4ab8-a651-02b6dd4a11cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99220f34-fe4d-4bb9-a54f-8cef2c114bec","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:24:15.1904918Z","updatedOn":"2019-11-13T02:24:15.1904918Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35b39af0-258c-488a-91d0-a744d937d7d0","type":"Microsoft.Authorization/roleAssignments","name":"35b39af0-258c-488a-91d0-a744d937d7d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99700559-cdad-4091-a4d3-7d3c7c00aa13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T23:46:59.6876593Z","updatedOn":"2018-10-22T23:46:59.6876593Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498ba808-50e6-458a-8424-7f2d7f2a7301","type":"Microsoft.Authorization/roleAssignments","name":"498ba808-50e6-458a-8424-7f2d7f2a7301"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99a420c5-4e79-4f11-8c23-32753b52724a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T05:09:11.0675968Z","updatedOn":"2019-03-23T05:09:11.0675968Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf2e130b-d004-4383-9804-06c2171b0288","type":"Microsoft.Authorization/roleAssignments","name":"bf2e130b-d004-4383-9804-06c2171b0288"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a6dc341-d468-44d6-94be-2d4821992bad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-03T05:43:48.8223435Z","updatedOn":"2018-11-03T05:43:48.8223435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21dcd364-1ea4-48fa-b1ae-0cd08879ce76","type":"Microsoft.Authorization/roleAssignments","name":"21dcd364-1ea4-48fa-b1ae-0cd08879ce76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a9bb0ad-706d-4fac-9148-ac7bafbed792","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:19:55.3235159Z","updatedOn":"2019-06-18T05:19:55.3235159Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b57ee67-74d0-4464-a426-91c542941aeb","type":"Microsoft.Authorization/roleAssignments","name":"7b57ee67-74d0-4464-a426-91c542941aeb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9ab4b53a-f653-4435-96a3-d3aefff7cb58","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T18:12:41.8499729Z","updatedOn":"2019-03-06T18:12:41.8499729Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f74c3436-bfae-4d2b-a166-4d0c02c0c4c6","type":"Microsoft.Authorization/roleAssignments","name":"f74c3436-bfae-4d2b-a166-4d0c02c0c4c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9aba653f-e80e-448b-afcd-1a47869d89f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:42:13.7118153Z","updatedOn":"2019-06-04T05:42:13.7118153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc4a8add-51e0-4d4c-8e77-c47ec8fd7175","type":"Microsoft.Authorization/roleAssignments","name":"cc4a8add-51e0-4d4c-8e77-c47ec8fd7175"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9afc95b9-edfd-448c-bb0b-1b7abf1c6fc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-10T06:48:45.7376251Z","updatedOn":"2019-01-10T06:48:45.7376251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7110ba81-9350-423e-92d4-28acbc736450","type":"Microsoft.Authorization/roleAssignments","name":"7110ba81-9350-423e-92d4-28acbc736450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b2c325b-5fe9-4e47-a282-fa1abcf8776a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T16:29:06.8822482Z","updatedOn":"2019-04-15T16:29:06.8822482Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/977d6039-fe49-4c53-86ac-b161e9dd6c8c","type":"Microsoft.Authorization/roleAssignments","name":"977d6039-fe49-4c53-86ac-b161e9dd6c8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b78ddbe-f951-4b54-8664-a1d1e733b57b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:45:44.9172054Z","updatedOn":"2019-06-13T05:45:44.9172054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee329a91-9efc-4ef8-a257-ea59b003c3c9","type":"Microsoft.Authorization/roleAssignments","name":"ee329a91-9efc-4ef8-a257-ea59b003c3c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9bab0d02-a25b-4b5e-b9be-4f9a49dadba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:18:36.3066640Z","updatedOn":"2018-10-01T15:18:36.3066640Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7d430e5-ff53-4dd4-ace1-379422b85604","type":"Microsoft.Authorization/roleAssignments","name":"c7d430e5-ff53-4dd4-ace1-379422b85604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c42adac-d61f-4d8f-8132-e31693de6e8e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-11T05:45:52.8300069Z","updatedOn":"2019-07-11T05:45:52.8300069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3795c22-f90a-4f8d-ac89-21f706d82187","type":"Microsoft.Authorization/roleAssignments","name":"c3795c22-f90a-4f8d-ac89-21f706d82187"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9da0e757-9f4e-4543-943c-6b16fe5f0f4c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T04:28:01.1738154Z","updatedOn":"2018-10-19T04:28:01.1738154Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ec5ac44-f810-40ad-9487-19d76f80cea6","type":"Microsoft.Authorization/roleAssignments","name":"7ec5ac44-f810-40ad-9487-19d76f80cea6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9dba7961-7957-481c-8051-8071dafadda8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:22:07.3061671Z","updatedOn":"2019-06-13T05:22:07.3061671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ced9f0b-a5bf-477c-af42-f9b39bceae30","type":"Microsoft.Authorization/roleAssignments","name":"9ced9f0b-a5bf-477c-af42-f9b39bceae30"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9f3b7506-275d-42ac-b3f0-6be0759f6b33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:21.5433604Z","updatedOn":"2019-04-06T06:34:21.5433604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cb49b8-5b1f-47c4-80ec-317954d04d9d","type":"Microsoft.Authorization/roleAssignments","name":"28cb49b8-5b1f-47c4-80ec-317954d04d9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fa4707d-784f-40ba-a6eb-42ee9334d0d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T04:45:06.2466603Z","updatedOn":"2019-04-14T04:45:06.2466603Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb46e4a6-a08b-4eca-a141-d72826228a9d","type":"Microsoft.Authorization/roleAssignments","name":"bb46e4a6-a08b-4eca-a141-d72826228a9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fdcac14-69e2-4d18-b9ed-ef5b07406baa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T04:07:17.7698444Z","updatedOn":"2019-02-21T04:07:17.7698444Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f34531c-c5ee-4068-9f91-c70364da9bd3","type":"Microsoft.Authorization/roleAssignments","name":"6f34531c-c5ee-4068-9f91-c70364da9bd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0101678-1509-4141-95fa-906232f58867","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T09:41:29.1946029Z","updatedOn":"2018-10-22T09:41:29.1946029Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/659bf497-76cb-48d2-985b-5eaa381210cf","type":"Microsoft.Authorization/roleAssignments","name":"659bf497-76cb-48d2-985b-5eaa381210cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0626b63-67c7-4a1f-bfa4-7a6aa4ef02af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-12T05:41:53.7995554Z","updatedOn":"2019-07-12T05:41:53.7995554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94316f4a-b82a-46d2-ae7d-c45081e1f975","type":"Microsoft.Authorization/roleAssignments","name":"94316f4a-b82a-46d2-ae7d-c45081e1f975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0a6bb6b-a1a1-44e2-a28e-92734bf9f1dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T00:41:50.9338611Z","updatedOn":"2018-11-10T00:41:50.9338611Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6da3558-59f7-4a94-b6da-b6e00a41f6ff","type":"Microsoft.Authorization/roleAssignments","name":"f6da3558-59f7-4a94-b6da-b6e00a41f6ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a181cdd4-c095-4eeb-b32a-2530da83e0be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-29T04:42:39.0364865Z","updatedOn":"2019-10-29T04:42:39.0364865Z","createdBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","updatedBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/996ff6f9-6439-4ecf-b98c-91e75e12a91e","type":"Microsoft.Authorization/roleAssignments","name":"996ff6f9-6439-4ecf-b98c-91e75e12a91e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2306cdc-0c7d-4856-8c8b-179afa5299a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T01:58:36.8350229Z","updatedOn":"2019-03-06T01:58:36.8350229Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb9abd22-00ae-4e62-9a4a-0afa7174c822","type":"Microsoft.Authorization/roleAssignments","name":"cb9abd22-00ae-4e62-9a4a-0afa7174c822"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a253c971-5961-4bf9-be61-111a0c28e80b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:40:41.4834850Z","updatedOn":"2018-10-12T11:40:41.4834850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3694ba0d-4c2f-4771-a037-7c5834e6b69e","type":"Microsoft.Authorization/roleAssignments","name":"3694ba0d-4c2f-4771-a037-7c5834e6b69e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a29cca37-9663-47fe-b567-0a47abbb526a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T06:40:53.5249439Z","updatedOn":"2019-05-08T06:40:53.5249439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96bbdfbe-163c-4416-99e3-2866d37e0d92","type":"Microsoft.Authorization/roleAssignments","name":"96bbdfbe-163c-4416-99e3-2866d37e0d92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2b121b2-3976-4aed-bba8-f42a287ff6b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:38:49.8441700Z","updatedOn":"2019-05-28T05:38:49.8441700Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d72e9c83-2cdd-4497-b4dc-7509eb31d664","type":"Microsoft.Authorization/roleAssignments","name":"d72e9c83-2cdd-4497-b4dc-7509eb31d664"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2e3d7a4-8bcd-4856-9576-c1054a68b3a1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T19:18:33.4597803Z","updatedOn":"2018-09-20T19:18:33.4597803Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6b3d842-ced5-432a-a22e-7d28edaa051b","type":"Microsoft.Authorization/roleAssignments","name":"b6b3d842-ced5-432a-a22e-7d28edaa051b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f21203-0d2d-4f60-bcbf-57c55014be3f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-14T06:08:24.5622596Z","updatedOn":"2019-03-14T06:08:24.5622596Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92dcf5f9-a801-4159-833c-48fa1c348ae4","type":"Microsoft.Authorization/roleAssignments","name":"92dcf5f9-a801-4159-833c-48fa1c348ae4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f8b5f1-cf81-4433-a02e-2f0b6b7d6b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T07:02:54.6808407Z","updatedOn":"2019-02-14T07:02:54.6808407Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0120b64-5a05-417c-b26f-37be79872dd3","type":"Microsoft.Authorization/roleAssignments","name":"e0120b64-5a05-417c-b26f-37be79872dd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a310e62b-99ed-420b-a7ba-bf30a913d91e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T14:41:08.7511374Z","updatedOn":"2018-10-26T14:41:08.7511374Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9054c42b-63f5-42ba-a381-d367de7e354a","type":"Microsoft.Authorization/roleAssignments","name":"9054c42b-63f5-42ba-a381-d367de7e354a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a382f1b1-29c8-4bcc-a54c-d02129d5fba9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-27T07:12:23.8891004Z","updatedOn":"2019-02-27T07:12:23.8891004Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb860114-3e39-4861-994f-91819fa0d3ca","type":"Microsoft.Authorization/roleAssignments","name":"eb860114-3e39-4861-994f-91819fa0d3ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a3b787f3-27c4-4fd7-ba42-4aa10378ac29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-01T06:47:45.9059562Z","updatedOn":"2019-01-01T06:47:45.9059562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/276ec128-d3f9-4699-82ab-a8ecc970352e","type":"Microsoft.Authorization/roleAssignments","name":"276ec128-d3f9-4699-82ab-a8ecc970352e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a46d0a52-9b2d-46b7-8096-0c6577440bca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-17T05:42:45.0314363Z","updatedOn":"2019-07-17T05:42:45.0314363Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9267a054-276b-4d49-99cd-898cbff82843","type":"Microsoft.Authorization/roleAssignments","name":"9267a054-276b-4d49-99cd-898cbff82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a4e6a3ef-370d-4b96-8484-0f0e7ae097cc","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T04:54:51.7233330Z","updatedOn":"2019-02-23T04:54:51.7233330Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44a09d24-8afc-4e6f-8194-92c41bc03d2c","type":"Microsoft.Authorization/roleAssignments","name":"44a09d24-8afc-4e6f-8194-92c41bc03d2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6135302-1245-4266-884a-c8d9c1022c42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:43:42.5439236Z","updatedOn":"2019-06-27T05:43:42.5439236Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f3c2ef7-2a5a-4527-918a-16ac5f0797c5","type":"Microsoft.Authorization/roleAssignments","name":"1f3c2ef7-2a5a-4527-918a-16ac5f0797c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6f922c4-fa7b-4e31-abd6-3a34d8905883","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:46:22.5737011Z","updatedOn":"2019-06-26T05:46:22.5737011Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6416b44d-2f30-4a3a-949b-2e1a26073698","type":"Microsoft.Authorization/roleAssignments","name":"6416b44d-2f30-4a3a-949b-2e1a26073698"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a903f6a3-0f17-47cb-a8b7-7413cce0ed00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:27.0632135Z","updatedOn":"2019-04-09T06:35:27.0632135Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13162400-f169-4077-8ffb-c55bbbf1f2c3","type":"Microsoft.Authorization/roleAssignments","name":"13162400-f169-4077-8ffb-c55bbbf1f2c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9b020ad-f332-44b8-a562-ba8932680ed0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T20:54:49.0099644Z","updatedOn":"2018-10-04T20:54:49.0099644Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ca46671-c580-41b2-a66a-04a97e0b8a12","type":"Microsoft.Authorization/roleAssignments","name":"4ca46671-c580-41b2-a66a-04a97e0b8a12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9ebdc3d-426a-4819-88be-d689e14e68af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:19:22.3698974Z","updatedOn":"2019-06-08T05:19:22.3698974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99e17d3e-d9f8-4981-af91-1ea73dfd9c19","type":"Microsoft.Authorization/roleAssignments","name":"99e17d3e-d9f8-4981-af91-1ea73dfd9c19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa32b4d6-51fb-47cf-89db-5343a594a408","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T07:05:00.8674238Z","updatedOn":"2019-03-07T07:05:00.8674238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56450ccf-742b-447c-8c94-c9fa0cccd67f","type":"Microsoft.Authorization/roleAssignments","name":"56450ccf-742b-447c-8c94-c9fa0cccd67f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa346cd7-57df-4ef3-84ef-2c6bf1a84147","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T21:02:16.5038162Z","updatedOn":"2019-01-16T21:02:16.5038162Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c447d599-ba07-4a39-97b7-c4f78abea945","type":"Microsoft.Authorization/roleAssignments","name":"c447d599-ba07-4a39-97b7-c4f78abea945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa49020e-081f-4e28-aa0f-ce32cf21192c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T06:53:09.1738065Z","updatedOn":"2019-01-05T06:53:09.1738065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9393c663-8793-462d-b7fc-7be4e5e910ac","type":"Microsoft.Authorization/roleAssignments","name":"9393c663-8793-462d-b7fc-7be4e5e910ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa585469-c348-4329-97ff-6685945d8f9f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T10:27:32.3398145Z","updatedOn":"2018-11-01T10:27:32.3398145Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb","type":"Microsoft.Authorization/roleAssignments","name":"fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa9f2ecf-86e4-4633-858e-4f06b9b2c674","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-12T06:50:19.0980758Z","updatedOn":"2019-01-12T06:50:19.0980758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98c8253a-98e0-43be-8515-01078e1b37a3","type":"Microsoft.Authorization/roleAssignments","name":"98c8253a-98e0-43be-8515-01078e1b37a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aaa8709f-51cc-4e4e-b04e-3eb5e6967aeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T17:13:59.1800159Z","updatedOn":"2018-10-09T17:13:59.1800159Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa399f79-9804-482f-b7b6-96e8bb4bcfe4","type":"Microsoft.Authorization/roleAssignments","name":"aa399f79-9804-482f-b7b6-96e8bb4bcfe4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ac49f0af-daf1-40c5-a7c5-976a80349806","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T19:29:43.0393638Z","updatedOn":"2019-02-25T19:29:43.0393638Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2990befc-9d32-467c-82e6-f6d4b9989731","type":"Microsoft.Authorization/roleAssignments","name":"2990befc-9d32-467c-82e6-f6d4b9989731"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"acb8599a-fee7-4e6b-89f0-755bb9235ca3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:55:35.7163035Z","updatedOn":"2018-11-28T06:55:35.7163035Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6795cd6-9bda-4c50-a653-8bf472745dbe","type":"Microsoft.Authorization/roleAssignments","name":"d6795cd6-9bda-4c50-a653-8bf472745dbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad22f583-cfed-469a-af2c-3a63adc692a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:17:52.1695867Z","updatedOn":"2019-05-30T05:17:52.1695867Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab733cd2-c79e-4ef1-8304-26236dd7b8e9","type":"Microsoft.Authorization/roleAssignments","name":"ab733cd2-c79e-4ef1-8304-26236dd7b8e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad2a4f4e-f5f5-436e-8a66-36782fc0d145","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-04T02:36:49.3740605Z","updatedOn":"2019-03-04T02:36:49.3740605Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2261f8b8-19c4-4ec2-9859-59873467d680","type":"Microsoft.Authorization/roleAssignments","name":"2261f8b8-19c4-4ec2-9859-59873467d680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae422a89-c704-46a4-a5f1-860067cd5639","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T09:39:57.1667198Z","updatedOn":"2018-10-24T09:39:57.1667198Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06","type":"Microsoft.Authorization/roleAssignments","name":"8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae5ed965-de4e-41c6-96ed-b1ac228ac3e0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T07:23:49.1957806Z","updatedOn":"2018-12-18T07:23:49.1957806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b946408-cb9c-48c3-bf88-4f958bd8bd8a","type":"Microsoft.Authorization/roleAssignments","name":"7b946408-cb9c-48c3-bf88-4f958bd8bd8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aeaa17a8-25b1-4bda-bdcf-6e2e71d8b8f3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-23T20:37:26.5606718Z","updatedOn":"2018-09-23T20:37:26.5606718Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48f82201-5bd1-4593-a8b4-39ecdb9a826b","type":"Microsoft.Authorization/roleAssignments","name":"48f82201-5bd1-4593-a8b4-39ecdb9a826b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af2835f4-355e-4f7a-8806-fa234f9602a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T01:01:05.9757195Z","updatedOn":"2019-03-03T01:01:05.9757195Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27300599-bdb3-4549-b0ee-af58cad290d7","type":"Microsoft.Authorization/roleAssignments","name":"27300599-bdb3-4549-b0ee-af58cad290d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af9ee309-627b-44ad-bea5-73549c125a36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T06:50:46.0224585Z","updatedOn":"2018-12-06T06:50:46.0224585Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38a72942-3dbe-41f3-ada7-bd13a2d71969","type":"Microsoft.Authorization/roleAssignments","name":"38a72942-3dbe-41f3-ada7-bd13a2d71969"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"afd97d40-49c6-45c4-b0e4-eb8d482b2254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:14:49.2526346Z","updatedOn":"2019-05-07T05:14:49.2526346Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/524ba7d7-94a1-4193-bd4e-d0a8d94dacca","type":"Microsoft.Authorization/roleAssignments","name":"524ba7d7-94a1-4193-bd4e-d0a8d94dacca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b0f12759-0161-43ef-8e8a-23e651dfc0af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-19T12:58:31.5231479Z","updatedOn":"2018-12-19T12:58:31.5231479Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a312231-26e4-487f-b4a9-ecbd34790339","type":"Microsoft.Authorization/roleAssignments","name":"6a312231-26e4-487f-b4a9-ecbd34790339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b14ede10-7826-45a2-b58c-318e681015b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-22T06:51:17.8639291Z","updatedOn":"2019-01-22T06:51:17.8639291Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f7af73d-d2e8-4551-883e-a1792a6a3a9f","type":"Microsoft.Authorization/roleAssignments","name":"3f7af73d-d2e8-4551-883e-a1792a6a3a9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b15e09ba-9556-4000-82b7-81dea127e876","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:43:50.8559602Z","updatedOn":"2018-09-24T18:43:50.8559602Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0182c1e-da2b-4fa2-91b4-51b44e8b83b8","type":"Microsoft.Authorization/roleAssignments","name":"e0182c1e-da2b-4fa2-91b4-51b44e8b83b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b1cea468-9832-4438-96fe-a593593bc811","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T05:11:57.6195736Z","updatedOn":"2019-04-16T05:11:57.6195736Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b1e04fb-4046-42e1-9b51-9bcfff506586","type":"Microsoft.Authorization/roleAssignments","name":"1b1e04fb-4046-42e1-9b51-9bcfff506586"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b261b198-dfa2-4c79-af2a-d9e337cfe5e2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-05T06:48:52.8231877Z","updatedOn":"2018-12-05T06:48:52.8231877Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22e72f12-e2e0-45eb-9e39-d06a80340c7f","type":"Microsoft.Authorization/roleAssignments","name":"22e72f12-e2e0-45eb-9e39-d06a80340c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b2808f7d-4a88-40f8-afe0-6effec977b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T05:37:58.2224362Z","updatedOn":"2019-05-10T05:37:58.2224362Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/175b452d-5cc7-44c4-8dcb-176c44f83e95","type":"Microsoft.Authorization/roleAssignments","name":"175b452d-5cc7-44c4-8dcb-176c44f83e95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b284265d-7d2d-4064-9730-d3fb6d49ffc8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:08:05.4405957Z","updatedOn":"2018-09-26T19:08:05.4405957Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee27c820-20f6-4010-9fe8-beb7dbfdd346","type":"Microsoft.Authorization/roleAssignments","name":"ee27c820-20f6-4010-9fe8-beb7dbfdd346"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3287717-53bc-443a-80c6-d6ce0f67d254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T10:48:29.2424188Z","updatedOn":"2019-02-20T10:48:29.2424188Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/884adc0d-4e9c-47c7-9a8e-6d796cef4b4a","type":"Microsoft.Authorization/roleAssignments","name":"884adc0d-4e9c-47c7-9a8e-6d796cef4b4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b356511a-3b5c-4810-9575-d4d703f34507","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T06:40:22.3394494Z","updatedOn":"2019-05-14T06:40:22.3394494Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1149e65-c253-4666-9bce-684b10a05773","type":"Microsoft.Authorization/roleAssignments","name":"a1149e65-c253-4666-9bce-684b10a05773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3c65970-4a68-4ca0-b390-f95b599302ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-28T07:12:36.6368711Z","updatedOn":"2019-02-28T07:12:36.6368711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa39d789-620c-486f-a0ee-6b865665ff63","type":"Microsoft.Authorization/roleAssignments","name":"fa39d789-620c-486f-a0ee-6b865665ff63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b40cfee1-4c2d-452a-b44f-575ae40a8e45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:44:08.3454638Z","updatedOn":"2018-10-20T05:44:08.3454638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8226950-1330-4e58-820d-72304e1c5646","type":"Microsoft.Authorization/roleAssignments","name":"e8226950-1330-4e58-820d-72304e1c5646"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4542d7d-6a56-4352-8b6c-c6559ced173e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T09:44:26.1478824Z","updatedOn":"2019-02-14T09:44:26.1478824Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23c74aca-09b5-476f-8bfe-53a2f186a2bf","type":"Microsoft.Authorization/roleAssignments","name":"23c74aca-09b5-476f-8bfe-53a2f186a2bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b46a50ce-6f5a-497c-8018-cc0a22b7af49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:16:15.6414516Z","updatedOn":"2019-05-18T05:16:15.6414516Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b0a6c82-8d5e-463b-9a0a-0928f8966048","type":"Microsoft.Authorization/roleAssignments","name":"8b0a6c82-8d5e-463b-9a0a-0928f8966048"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b48168c3-719a-4759-8136-7c968992d4c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:37:22.4586770Z","updatedOn":"2019-04-27T05:37:22.4586770Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a2f7cea1-332c-445c-80ed-5ce645ebbb3b","type":"Microsoft.Authorization/roleAssignments","name":"a2f7cea1-332c-445c-80ed-5ce645ebbb3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4b4e928-9dfb-4d4e-be44-edd40b30e54d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:41:28.2668758Z","updatedOn":"2019-05-17T05:41:28.2668758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e02c4cbe-82f7-46cc-a7a0-4e4fec122637","type":"Microsoft.Authorization/roleAssignments","name":"e02c4cbe-82f7-46cc-a7a0-4e4fec122637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b5a4a66a-cfd4-49d5-8176-3853f76f06b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:49:40.6763834Z","updatedOn":"2018-09-18T23:49:40.6763834Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/011b3c5e-fb1f-4e86-bd96-30484982ba84","type":"Microsoft.Authorization/roleAssignments","name":"011b3c5e-fb1f-4e86-bd96-30484982ba84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b6c26947-20b2-4a64-b80f-44f8290cd1bc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:45:21.9378726Z","updatedOn":"2018-10-27T05:45:21.9378726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80273883-944e-4a02-bf1c-ea766d25fd24","type":"Microsoft.Authorization/roleAssignments","name":"80273883-944e-4a02-bf1c-ea766d25fd24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b781bab2-120a-4856-bb2e-b09c8fea0830","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-24T16:33:25.4669072Z","updatedOn":"2019-02-24T16:33:25.4669072Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00ed8c7c-f210-4034-b75b-8d80362aa1bc","type":"Microsoft.Authorization/roleAssignments","name":"00ed8c7c-f210-4034-b75b-8d80362aa1bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7a5c9dc-d498-401a-9905-ca8aff22b5e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T05:10:34.8900726Z","updatedOn":"2019-03-30T05:10:34.8900726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9f5109-8847-41bd-b0d4-ab5e1d90283f","type":"Microsoft.Authorization/roleAssignments","name":"8d9f5109-8847-41bd-b0d4-ab5e1d90283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7b6c717-3e9b-4238-83be-88859e1af527","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-11T06:48:36.5214424Z","updatedOn":"2019-01-11T06:48:36.5214424Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a15106-be24-4076-8ddc-ff1516a902a8","type":"Microsoft.Authorization/roleAssignments","name":"80a15106-be24-4076-8ddc-ff1516a902a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b87eaab1-09df-43b9-94df-c48de3ca9fd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:13:34.4204279Z","updatedOn":"2019-05-02T05:13:34.4204279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9f44a37-d753-44f3-9558-fe38588b564b","type":"Microsoft.Authorization/roleAssignments","name":"e9f44a37-d753-44f3-9558-fe38588b564b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b93cb31a-c1af-40df-9de5-c323f7adf817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:48:18.5335575Z","updatedOn":"2018-10-19T05:48:18.5335575Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2972b8c-3494-4141-badc-de7508941ddf","type":"Microsoft.Authorization/roleAssignments","name":"d2972b8c-3494-4141-badc-de7508941ddf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"baa56935-952a-43ce-84f4-d3c01b700b5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:43:22.2691800Z","updatedOn":"2018-10-24T05:43:22.2691800Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3960217-4c25-4759-ab03-f8208524e7b4","type":"Microsoft.Authorization/roleAssignments","name":"e3960217-4c25-4759-ab03-f8208524e7b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bad1513e-0d0b-49b2-8a5b-be1d3f48ded5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T06:48:00.1454038Z","updatedOn":"2018-11-13T06:48:00.1454038Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47e10457-1640-4e72-8f8a-03f5981383d7","type":"Microsoft.Authorization/roleAssignments","name":"47e10457-1640-4e72-8f8a-03f5981383d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bb2a5902-4c8c-4af8-91f1-d7a8268e73ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T20:18:17.1387327Z","updatedOn":"2018-11-23T20:18:17.1387327Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eae11fff-74b2-4a75-a923-d4a825bdff7a","type":"Microsoft.Authorization/roleAssignments","name":"eae11fff-74b2-4a75-a923-d4a825bdff7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc7b6508-3587-43db-9af9-2b64c8409b51","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T06:47:46.8169414Z","updatedOn":"2018-12-11T06:47:46.8169414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d58e02e5-5169-469c-bbb1-a2ddb269b310","type":"Microsoft.Authorization/roleAssignments","name":"d58e02e5-5169-469c-bbb1-a2ddb269b310"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc9c773a-fbe4-4d5b-8058-c9689c349039","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T08:09:40.8547368Z","updatedOn":"2019-09-11T08:09:40.8547368Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f39e25c9-b227-48d2-9185-847dd33a9326","type":"Microsoft.Authorization/roleAssignments","name":"f39e25c9-b227-48d2-9185-847dd33a9326"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bf5ee090-115d-45c3-baaf-fb715aab751a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:29.6992040Z","updatedOn":"2019-03-22T06:12:29.6992040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5e3ac77-f857-4a7e-9516-bf5d6978a49c","type":"Microsoft.Authorization/roleAssignments","name":"c5e3ac77-f857-4a7e-9516-bf5d6978a49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c07f6b2d-2fe6-461d-ba0a-29781dabe187","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:55.8846964Z","updatedOn":"2019-04-06T06:34:55.8846964Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ade3299-524c-4863-ba51-99b80d12132b","type":"Microsoft.Authorization/roleAssignments","name":"0ade3299-524c-4863-ba51-99b80d12132b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c0fef8ec-7820-4513-aefb-185ee40ae942","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T06:49:15.9413629Z","updatedOn":"2018-11-06T06:49:15.9413629Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be8c0792-f3a0-4bde-a124-4839576984df","type":"Microsoft.Authorization/roleAssignments","name":"be8c0792-f3a0-4bde-a124-4839576984df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c115ca8d-290f-453d-a030-505970f12fac","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T14:46:51.4676579Z","updatedOn":"2018-10-29T14:46:51.4676579Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb","type":"Microsoft.Authorization/roleAssignments","name":"9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c11b39f7-26c3-4dfc-8d0f-20dde3187845","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T18:31:05.4586182Z","updatedOn":"2018-12-13T18:31:05.4586182Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4901f853-a3c6-47e4-9495-2aeb09fb4491","type":"Microsoft.Authorization/roleAssignments","name":"4901f853-a3c6-47e4-9495-2aeb09fb4491"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c1a5670d-1c96-40dc-a29e-3a89185addeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T06:50:23.4662065Z","updatedOn":"2018-11-15T06:50:23.4662065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4830cf2-e9fd-42a6-b102-c3370fb8bc0b","type":"Microsoft.Authorization/roleAssignments","name":"f4830cf2-e9fd-42a6-b102-c3370fb8bc0b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3764ce3-3e3d-439f-92d7-f9b18bb6ce4e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-22T06:49:36.0998904Z","updatedOn":"2018-12-22T06:49:36.0998904Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/861c254f-b71f-49ee-8cee-374230256f41","type":"Microsoft.Authorization/roleAssignments","name":"861c254f-b71f-49ee-8cee-374230256f41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3c00e31-02de-419f-8409-3725b3856427","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T11:21:51.7243563Z","updatedOn":"2018-11-06T11:21:51.7243563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36af12be-6859-4676-a8e5-c5dfbaa2cd2e","type":"Microsoft.Authorization/roleAssignments","name":"36af12be-6859-4676-a8e5-c5dfbaa2cd2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4189c03-f913-4b8c-a77d-34e1eb436eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:39:12.6811204Z","updatedOn":"2019-05-21T05:39:12.6811204Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d33c51c-1683-4dab-8586-879a8a34eea9","type":"Microsoft.Authorization/roleAssignments","name":"3d33c51c-1683-4dab-8586-879a8a34eea9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c483f600-93f7-4d56-8e3e-a40b50356821","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T10:24:13.6577236Z","updatedOn":"2018-10-25T10:24:13.6577236Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1","type":"Microsoft.Authorization/roleAssignments","name":"e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4fe9d36-16a8-42da-bb6c-2388ec72603c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T23:47:15.8860107Z","updatedOn":"2018-11-12T23:47:15.8860107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7628befb-5807-42c8-b66f-aabebae30fc1","type":"Microsoft.Authorization/roleAssignments","name":"7628befb-5807-42c8-b66f-aabebae30fc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c50540b9-3342-46de-894a-3dff2f639687","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-18T02:29:01.1918326Z","updatedOn":"2019-10-18T02:29:01.1918326Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f93f57-2d31-4a40-be24-bc1bcf23dd91","type":"Microsoft.Authorization/roleAssignments","name":"33f93f57-2d31-4a40-be24-bc1bcf23dd91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c54aad68-3150-44c3-802d-e7da8c47ea5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-06T07:05:12.9555216Z","updatedOn":"2019-02-06T07:05:12.9555216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16021127-cd72-4170-a1ac-2b70be097b9a","type":"Microsoft.Authorization/roleAssignments","name":"16021127-cd72-4170-a1ac-2b70be097b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c55cf64d-29d9-462d-8dbc-c0d2ab4716e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T20:11:57.5033211Z","updatedOn":"2019-02-25T20:11:57.5033211Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebc41276-3624-42d1-b5e8-427fd5a11e2b","type":"Microsoft.Authorization/roleAssignments","name":"ebc41276-3624-42d1-b5e8-427fd5a11e2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c5c34086-aa9d-4c49-a5c6-c29efe356fc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T16:45:58.2054394Z","updatedOn":"2019-10-16T16:45:58.2054394Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b5731b2-3473-4fab-a925-c6297bfd8a78","type":"Microsoft.Authorization/roleAssignments","name":"5b5731b2-3473-4fab-a925-c6297bfd8a78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c70747bf-a786-4775-ad07-573ca03f59f5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-17T16:10:29.3503311Z","updatedOn":"2018-10-17T16:10:29.3503311Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6cce06cd-c998-489e-bfa7-33a4fd344730","type":"Microsoft.Authorization/roleAssignments","name":"6cce06cd-c998-489e-bfa7-33a4fd344730"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c7df6fc6-dea8-49a2-a8d6-904134c67f5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T07:52:11.8559141Z","updatedOn":"2019-09-16T07:52:11.8559141Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d16c3b-9db6-4b40-a1b9-346950c6d9c6","type":"Microsoft.Authorization/roleAssignments","name":"99d16c3b-9db6-4b40-a1b9-346950c6d9c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c956a64b-5110-464a-a294-c8ea39864b5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T17:55:29.6021991Z","updatedOn":"2019-06-25T17:55:29.6021991Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6859b12a-1331-4c52-a51a-8b212a6feb33","type":"Microsoft.Authorization/roleAssignments","name":"6859b12a-1331-4c52-a51a-8b212a6feb33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9b95a3d-e5af-43f9-932f-7136b24dc30b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:17:02.3079210Z","updatedOn":"2019-05-25T05:17:02.3079210Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0b87fc2-39e3-4ba0-aca5-c5783946a35b","type":"Microsoft.Authorization/roleAssignments","name":"b0b87fc2-39e3-4ba0-aca5-c5783946a35b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9e6f60a-7fbf-44f6-8537-5b7904783220","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:49:22.7298911Z","updatedOn":"2019-04-14T03:49:22.7298911Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e70c3b-b156-40a6-9d4d-4382572ab74f","type":"Microsoft.Authorization/roleAssignments","name":"e7e70c3b-b156-40a6-9d4d-4382572ab74f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cb115a45-6550-4919-aae8-fab31a876b1f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T06:32:08.7018686Z","updatedOn":"2019-05-07T06:32:08.7018686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5428a65d-1272-46af-b893-42a3aaaaab3c","type":"Microsoft.Authorization/roleAssignments","name":"5428a65d-1272-46af-b893-42a3aaaaab3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ccfad4dc-6927-4ea8-a15f-19b3f62c8102","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T05:13:49.1299091Z","updatedOn":"2019-03-28T05:13:49.1299091Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21a964bf-3a3f-49c2-b915-9efd03f5d00f","type":"Microsoft.Authorization/roleAssignments","name":"21a964bf-3a3f-49c2-b915-9efd03f5d00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd271855-eae3-4fe2-bf46-a9d8ca0cd083","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T05:11:27.8036785Z","updatedOn":"2019-04-05T05:11:27.8036785Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc06830-88bb-4279-b1a2-ada28b215cbe","type":"Microsoft.Authorization/roleAssignments","name":"1dc06830-88bb-4279-b1a2-ada28b215cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd51dabe-4388-449e-86fc-3fdbd6399392","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:29.4661881Z","updatedOn":"2019-01-29T06:54:29.4661881Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c","type":"Microsoft.Authorization/roleAssignments","name":"c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ce80dfc4-7b3e-4dbd-8c3e-a49427659ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:12:08.2919766Z","updatedOn":"2019-04-23T05:12:08.2919766Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13dae34f-ca2b-4b90-89c6-4aac487b8bbc","type":"Microsoft.Authorization/roleAssignments","name":"13dae34f-ca2b-4b90-89c6-4aac487b8bbc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ceb1d174-81de-49ef-9b29-0ef1abed1597","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T14:39:32.1643609Z","updatedOn":"2018-10-23T14:39:32.1643609Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5be77404-46b2-4a32-aead-8ed887d17b04","type":"Microsoft.Authorization/roleAssignments","name":"5be77404-46b2-4a32-aead-8ed887d17b04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf24ed58-b70c-4c03-9244-498f59b66c71","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T05:11:34.2050879Z","updatedOn":"2019-03-26T05:11:34.2050879Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50121b1c-3060-452a-8932-4cb2f6924601","type":"Microsoft.Authorization/roleAssignments","name":"50121b1c-3060-452a-8932-4cb2f6924601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf97c4f2-3ee9-4b64-b784-6003cba2ac46","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T06:48:49.9299181Z","updatedOn":"2018-12-04T06:48:49.9299181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5f18a5-8c6f-4a9e-8294-413b58703d9a","type":"Microsoft.Authorization/roleAssignments","name":"aa5f18a5-8c6f-4a9e-8294-413b58703d9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfe54dea-a7e8-4a5b-b175-37dc88d8e99e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T05:49:13.7322169Z","updatedOn":"2018-10-31T05:49:13.7322169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a515592c-c6e5-47e4-9642-c9264fcfa9d7","type":"Microsoft.Authorization/roleAssignments","name":"a515592c-c6e5-47e4-9642-c9264fcfa9d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfed68c0-dc27-409e-90c9-db9b72a2d004","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:48:01.2890417Z","updatedOn":"2018-10-26T05:48:01.2890417Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baadff0c-524e-43e5-8fd3-0170420f39b1","type":"Microsoft.Authorization/roleAssignments","name":"baadff0c-524e-43e5-8fd3-0170420f39b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d00aa246-4e4d-4221-af66-822a1e403423","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:55:45.3557173Z","updatedOn":"2018-10-23T16:55:45.3557173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec341a9c-e726-45f9-9f84-7654eda2fdc2","type":"Microsoft.Authorization/roleAssignments","name":"ec341a9c-e726-45f9-9f84-7654eda2fdc2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d0770fbc-c9df-4c0c-aa80-4406d287e609","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:47:07.4610935Z","updatedOn":"2019-06-15T05:47:07.4610935Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac2ba190-6fc7-42c4-b3a9-cf21909118b5","type":"Microsoft.Authorization/roleAssignments","name":"ac2ba190-6fc7-42c4-b3a9-cf21909118b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d135367a-3a97-4582-8a81-d6b8e54df03e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T06:42:28.3289628Z","updatedOn":"2019-05-18T06:42:28.3289628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e456abce-82b7-4937-b118-0139e0022167","type":"Microsoft.Authorization/roleAssignments","name":"e456abce-82b7-4937-b118-0139e0022167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1432718-0865-47b5-924b-f51837471e90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:56:11.2493227Z","updatedOn":"2018-10-03T05:56:11.2493227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88950f0a-d656-4cd3-841d-b532fe88baa5","type":"Microsoft.Authorization/roleAssignments","name":"88950f0a-d656-4cd3-841d-b532fe88baa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1956391-fb64-4c80-baa5-f5b7c0fe4679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T21:42:54.5977945Z","updatedOn":"2018-10-10T21:42:54.5977945Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e762e6fe-78f3-43d4-ab13-e5a3f5316a3c","type":"Microsoft.Authorization/roleAssignments","name":"e762e6fe-78f3-43d4-ab13-e5a3f5316a3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1f87eac-9245-42d9-95b3-6a753661ab24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T10:40:51.7814881Z","updatedOn":"2018-11-07T10:40:51.7814881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2169a638-419f-4d7f-9258-29bfee8a0930","type":"Microsoft.Authorization/roleAssignments","name":"2169a638-419f-4d7f-9258-29bfee8a0930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2144bca-85ed-4c2b-b727-8460fb73417b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:24:15.8315406Z","updatedOn":"2019-03-28T06:24:15.8315406Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38784b28-8cf3-43ae-8dca-d49195e311bd","type":"Microsoft.Authorization/roleAssignments","name":"38784b28-8cf3-43ae-8dca-d49195e311bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d22a37ff-94a3-46b9-a549-e16b8b71a43c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T04:51:28.2854740Z","updatedOn":"2019-11-13T04:51:28.2854740Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b362e66e-bf5f-4ba5-adaf-88034544377b","type":"Microsoft.Authorization/roleAssignments","name":"b362e66e-bf5f-4ba5-adaf-88034544377b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d28c917f-58f1-4d8d-a8e7-abb3e204ffd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T06:49:00.8611630Z","updatedOn":"2019-06-15T06:49:00.8611630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80c3c956-9e75-4ce5-9eaa-41b67811e99e","type":"Microsoft.Authorization/roleAssignments","name":"80c3c956-9e75-4ce5-9eaa-41b67811e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2b54a4a-fbf6-4ebf-808a-f98e4bb2924f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T10:25:57.1411675Z","updatedOn":"2018-10-23T10:25:57.1411675Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fe54064-c5f3-407a-a9bf-41af2afe2158","type":"Microsoft.Authorization/roleAssignments","name":"3fe54064-c5f3-407a-a9bf-41af2afe2158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2caf3df-cb83-4cad-af2e-065d92cf15dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:46:12.6813036Z","updatedOn":"2018-10-25T05:46:12.6813036Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12d03ad0-cabe-45f0-89be-21efb56e60f9","type":"Microsoft.Authorization/roleAssignments","name":"12d03ad0-cabe-45f0-89be-21efb56e60f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3120b11-89d6-4a95-b3ad-0ddbd9f04050","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-02T06:46:21.7720780Z","updatedOn":"2019-01-02T06:46:21.7720780Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81aa865f-27f4-4fe4-83ef-c3c332521962","type":"Microsoft.Authorization/roleAssignments","name":"81aa865f-27f4-4fe4-83ef-c3c332521962"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d316bf5b-a379-42bd-b0fd-ac498ff40d5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-14T06:50:35.3194075Z","updatedOn":"2018-12-14T06:50:35.3194075Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9531353-1083-47c0-a4e9-b13ab59cb526","type":"Microsoft.Authorization/roleAssignments","name":"a9531353-1083-47c0-a4e9-b13ab59cb526"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3c21087-ec7b-4675-9408-07d911406146","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:17:17.6788395Z","updatedOn":"2019-06-12T05:17:17.6788395Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bcad36-08a2-4536-a4b3-9380f6c1e339","type":"Microsoft.Authorization/roleAssignments","name":"00bcad36-08a2-4536-a4b3-9380f6c1e339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d4010ae5-c45a-4823-84bc-b3e6d7e6e512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:13:19.4148382Z","updatedOn":"2019-04-20T05:13:19.4148382Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da7f98c9-4c59-452a-a735-eca30f73ede0","type":"Microsoft.Authorization/roleAssignments","name":"da7f98c9-4c59-452a-a735-eca30f73ede0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d6db91cb-0a63-4bdd-8877-a68c53221c5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:53:30.9944559Z","updatedOn":"2018-09-18T23:53:30.9944559Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6199caa4-ff24-46a6-b50a-be42fbe9478e","type":"Microsoft.Authorization/roleAssignments","name":"6199caa4-ff24-46a6-b50a-be42fbe9478e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d70637dc-50b3-4ebc-9bdb-aeaf6f192169","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:35:45.9011532Z","updatedOn":"2019-04-30T05:35:45.9011532Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d63f6e48-9e31-4013-9e53-d0d30190fd3f","type":"Microsoft.Authorization/roleAssignments","name":"d63f6e48-9e31-4013-9e53-d0d30190fd3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d7f4b0f6-5e47-4c68-8e89-c8d397368d6b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:26:03.4031173Z","updatedOn":"2018-10-23T16:26:03.4031173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b23e7be9-30d4-4062-9e62-1d5000a46165","type":"Microsoft.Authorization/roleAssignments","name":"b23e7be9-30d4-4062-9e62-1d5000a46165"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d8f4630b-5ae7-49a5-88d6-adc3ad7c5592","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:01:15.5460293Z","updatedOn":"2018-09-27T10:01:15.5460293Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf71afc3-8e72-46be-a917-f22bd591ff02","type":"Microsoft.Authorization/roleAssignments","name":"cf71afc3-8e72-46be-a917-f22bd591ff02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d9043f54-0a86-47c5-a740-4b39df39e0a0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:14:08.8126640Z","updatedOn":"2019-04-30T05:14:08.8126640Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/237d0f39-ba02-481a-a2b8-6b8c4e747958","type":"Microsoft.Authorization/roleAssignments","name":"237d0f39-ba02-481a-a2b8-6b8c4e747958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d948c009-fdab-48aa-a97c-165c07ec0b89","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:09.2424182Z","updatedOn":"2019-01-30T06:54:09.2424182Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baafb840-781c-4bb5-8d99-d29ac492192b","type":"Microsoft.Authorization/roleAssignments","name":"baafb840-781c-4bb5-8d99-d29ac492192b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d960f42f-fc88-4ad5-9353-885dce085fa7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:46:03.8410291Z","updatedOn":"2018-12-11T19:46:03.8410291Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b61345d-b407-4dfc-9d74-3bef26c4d451","type":"Microsoft.Authorization/roleAssignments","name":"4b61345d-b407-4dfc-9d74-3bef26c4d451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"da664414-ab1e-488f-a1c1-81d037f6a1b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:17:10.0928144Z","updatedOn":"2019-05-22T05:17:10.0928144Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab64211-52a4-44af-b9cd-07462f5763f6","type":"Microsoft.Authorization/roleAssignments","name":"8ab64211-52a4-44af-b9cd-07462f5763f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"da74796c-63b3-430c-ae1e-0681cf071fbd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-01T03:31:15.4303795Z","updatedOn":"2019-11-01T03:31:15.4303795Z","createdBy":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863","updatedBy":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea7067c6-7d10-4d6e-9614-f189a87de248","type":"Microsoft.Authorization/roleAssignments","name":"ea7067c6-7d10-4d6e-9614-f189a87de248"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"daaced77-675f-4356-9f87-e78986ff36a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T10:40:05.5875881Z","updatedOn":"2018-11-05T10:40:05.5875881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3c59aae-ad3b-4ff3-8d83-25aa27c4833d","type":"Microsoft.Authorization/roleAssignments","name":"b3c59aae-ad3b-4ff3-8d83-25aa27c4833d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db394df0-524d-4921-8630-d65d71f2165f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T09:42:50.8070319Z","updatedOn":"2018-10-31T09:42:50.8070319Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b65f540b-666d-40cf-a341-27ccb67c8c28","type":"Microsoft.Authorization/roleAssignments","name":"b65f540b-666d-40cf-a341-27ccb67c8c28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db4004a2-1161-4530-ac2f-3168ac1dbfba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T06:32:38.6934724Z","updatedOn":"2019-04-20T06:32:38.6934724Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e80d19b-ae41-44f6-926c-b902fd0c9158","type":"Microsoft.Authorization/roleAssignments","name":"7e80d19b-ae41-44f6-926c-b902fd0c9158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db65a597-9bd4-4259-9632-ffcbfd208b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T18:43:41.6069289Z","updatedOn":"2019-01-31T18:43:41.6069289Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa2a3117-6ca4-4ddf-83c7-511b370735dd","type":"Microsoft.Authorization/roleAssignments","name":"aa2a3117-6ca4-4ddf-83c7-511b370735dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc15c8e4-4230-4f90-b20d-268e196d1813","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:59:35.9649632Z","updatedOn":"2018-09-19T16:59:35.9649632Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c32e312c-7f12-47df-9cdb-eaf99db0df19","type":"Microsoft.Authorization/roleAssignments","name":"c32e312c-7f12-47df-9cdb-eaf99db0df19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc1a3549-229c-4971-93d1-dd2a12439b19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T02:46:17.6374569Z","updatedOn":"2019-09-18T02:46:17.6374569Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79ee6058-9515-427b-a19d-f9a245e4172b","type":"Microsoft.Authorization/roleAssignments","name":"79ee6058-9515-427b-a19d-f9a245e4172b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc7f9c47-a51a-46ba-80c8-fd054aab72cd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-06T20:51:24.1292868Z","updatedOn":"2019-01-06T20:51:24.1292868Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f518f831-d9ff-474a-b74a-632e7a06cf65","type":"Microsoft.Authorization/roleAssignments","name":"f518f831-d9ff-474a-b74a-632e7a06cf65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dd675716-2751-4705-922d-9837095097da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T05:11:12.7455369Z","updatedOn":"2019-04-09T05:11:12.7455369Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3b7cc13-094a-497d-a4cb-674c0889a93e","type":"Microsoft.Authorization/roleAssignments","name":"d3b7cc13-094a-497d-a4cb-674c0889a93e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dda0a530-d000-41b8-b403-828e589b4dda","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T04:20:44.5436786Z","updatedOn":"2018-10-25T04:20:44.5436786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c85da2-f98e-4e93-bf5f-d17bb106a771","type":"Microsoft.Authorization/roleAssignments","name":"77c85da2-f98e-4e93-bf5f-d17bb106a771"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df70f66e-810a-44ed-a81c-5e7fdb462469","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T16:29:57.6054123Z","updatedOn":"2019-05-14T16:29:57.6054123Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fda1a04-04b2-4bfc-a704-24c2cae69f78","type":"Microsoft.Authorization/roleAssignments","name":"6fda1a04-04b2-4bfc-a704-24c2cae69f78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df902ab3-f241-4bda-8260-b7673766f767","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-27T06:51:35.2235619Z","updatedOn":"2018-12-27T06:51:35.2235619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13272b7-22e4-491e-bb62-f1d3d50790eb","type":"Microsoft.Authorization/roleAssignments","name":"f13272b7-22e4-491e-bb62-f1d3d50790eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfa78316-eb12-44e4-837c-9acb8c5d0cf1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T19:10:43.6867523Z","updatedOn":"2019-01-26T19:10:43.6867523Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca533327-8eb3-4a0d-9c8c-65a19e8c87ef","type":"Microsoft.Authorization/roleAssignments","name":"ca533327-8eb3-4a0d-9c8c-65a19e8c87ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfcc4a66-9e66-4f59-a767-caa8e546fcf9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T06:33:13.7973771Z","updatedOn":"2019-04-17T06:33:13.7973771Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/842e8734-95b6-4039-82fb-39183f00b528","type":"Microsoft.Authorization/roleAssignments","name":"842e8734-95b6-4039-82fb-39183f00b528"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e00b75a6-6fc0-4f48-87b9-e8b639667c16","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-14T12:57:49.9426431Z","updatedOn":"2019-10-14T12:57:49.9426431Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be3fd0fe-438b-4b5e-9e4c-2dc04821da8a","type":"Microsoft.Authorization/roleAssignments","name":"be3fd0fe-438b-4b5e-9e4c-2dc04821da8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e037bfb5-59f7-42ac-9139-9636644cae6d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-05T05:39:11.8514441Z","updatedOn":"2019-07-05T05:39:11.8514441Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4","type":"Microsoft.Authorization/roleAssignments","name":"5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e06b0322-1992-45e2-be95-d10076e55ce4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:20.1895394Z","updatedOn":"2019-04-03T06:11:20.1895394Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec","type":"Microsoft.Authorization/roleAssignments","name":"80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e0e70e34-7c95-424d-8dcf-5a54a721cca7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T05:10:52.0339924Z","updatedOn":"2019-04-02T05:10:52.0339924Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1940e67f-5c1a-4075-9f95-be3dbc151994","type":"Microsoft.Authorization/roleAssignments","name":"1940e67f-5c1a-4075-9f95-be3dbc151994"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e107a9e2-2293-47cf-bfc7-0c68725a289a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T17:51:41.1140658Z","updatedOn":"2018-11-09T17:51:41.1140658Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94dc5859-b168-42bf-9561-a41827a21597","type":"Microsoft.Authorization/roleAssignments","name":"94dc5859-b168-42bf-9561-a41827a21597"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e19387a9-5b14-4049-b93e-1d8ecff6e421","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:18:24.9933280Z","updatedOn":"2019-05-09T05:18:24.9933280Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c62f4e2d-43ce-4c75-8c58-e2115666e53a","type":"Microsoft.Authorization/roleAssignments","name":"c62f4e2d-43ce-4c75-8c58-e2115666e53a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2c52a58-edac-4a9e-908c-070aaee677ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T14:41:40.9383041Z","updatedOn":"2018-10-31T14:41:40.9383041Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe79706d-4431-4c77-ac58-c542ebbb88bd","type":"Microsoft.Authorization/roleAssignments","name":"fe79706d-4431-4c77-ac58-c542ebbb88bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2f76937-0f09-4547-9df8-0af9621d773b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:38:51.0761001Z","updatedOn":"2019-05-14T05:38:51.0761001Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/888b2959-c9fb-406a-850f-9c898d01d2a3","type":"Microsoft.Authorization/roleAssignments","name":"888b2959-c9fb-406a-850f-9c898d01d2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e30dc24c-f495-4e89-8e2c-37415662502e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:41:41.0196120Z","updatedOn":"2018-09-27T10:41:41.0196120Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/574b48d4-e18d-4990-a10f-c11b59679b2c","type":"Microsoft.Authorization/roleAssignments","name":"574b48d4-e18d-4990-a10f-c11b59679b2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e34bede7-eff9-4901-a421-db8ea321021f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T22:28:30.9708597Z","updatedOn":"2018-09-21T22:28:30.9708597Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2661841d-d979-45ee-ac37-5438c3b68ce3","type":"Microsoft.Authorization/roleAssignments","name":"2661841d-d979-45ee-ac37-5438c3b68ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e3696682-bf2d-4945-977e-ef7248f2f841","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T20:11:58.1212576Z","updatedOn":"2018-10-10T20:11:58.1212576Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e95bb61d-eee2-482c-8b26-e63d68d8b7c9","type":"Microsoft.Authorization/roleAssignments","name":"e95bb61d-eee2-482c-8b26-e63d68d8b7c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4640f2b-484b-487c-b2eb-badc4c8b20be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:12:04.1728439Z","updatedOn":"2018-10-03T21:12:04.1728439Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/921f26e2-0616-4bcf-9ce1-367ffbffb91a","type":"Microsoft.Authorization/roleAssignments","name":"921f26e2-0616-4bcf-9ce1-367ffbffb91a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e49b9853-05d6-4483-8a13-09ab92649bf4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-17T06:52:09.8666638Z","updatedOn":"2018-11-17T06:52:09.8666638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f047a8be-5857-4a34-9b54-5162bb957cda","type":"Microsoft.Authorization/roleAssignments","name":"f047a8be-5857-4a34-9b54-5162bb957cda"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4acab8d-85f5-40d7-b435-fedb84e267d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T06:50:11.8734444Z","updatedOn":"2019-01-08T06:50:11.8734444Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c02a7cf-d6ee-41fb-ae36-78584d496fba","type":"Microsoft.Authorization/roleAssignments","name":"9c02a7cf-d6ee-41fb-ae36-78584d496fba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e51c59a1-2fc1-43a2-bb97-f1a8c3cfaa04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:45.3923768Z","updatedOn":"2018-10-09T05:36:45.3923768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b9876f4-77b2-4641-94c6-4841f60e4847","type":"Microsoft.Authorization/roleAssignments","name":"4b9876f4-77b2-4641-94c6-4841f60e4847"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e54b25df-e33e-4fc8-a902-47eb3e003393","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-04T06:40:59.1110452Z","updatedOn":"2019-09-04T06:40:59.1110452Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f29b1a13-bd85-46fb-86a9-7344625aae55","type":"Microsoft.Authorization/roleAssignments","name":"f29b1a13-bd85-46fb-86a9-7344625aae55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e54e05a4-bb09-4e57-883f-f6d293542c5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T14:19:08.0027870Z","updatedOn":"2019-01-05T14:19:08.0027870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/370a1221-368e-422a-aa9f-6fc9e44e6bca","type":"Microsoft.Authorization/roleAssignments","name":"370a1221-368e-422a-aa9f-6fc9e44e6bca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e6026d46-d4a8-4f87-bb3e-3baf9459af8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:16.5748095Z","updatedOn":"2019-01-29T06:54:16.5748095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e26fc3af-b00c-4769-915a-3617f01523bb","type":"Microsoft.Authorization/roleAssignments","name":"e26fc3af-b00c-4769-915a-3617f01523bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e62a5697-a15c-4334-99b8-ee4d71502723","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:38:10.0897377Z","updatedOn":"2019-05-11T05:38:10.0897377Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5da9f69-7824-4de7-8221-805a4abd98aa","type":"Microsoft.Authorization/roleAssignments","name":"a5da9f69-7824-4de7-8221-805a4abd98aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e643033e-2797-4cd1-bea0-6641e5b92e22","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:56:54.3184019Z","updatedOn":"2018-09-28T05:56:54.3184019Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf256161-a290-414b-b882-8124aee1d18f","type":"Microsoft.Authorization/roleAssignments","name":"cf256161-a290-414b-b882-8124aee1d18f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e675fccf-56c0-4ff7-8422-7ec61abb71aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T06:48:56.0895695Z","updatedOn":"2019-06-29T06:48:56.0895695Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/712b7791-9b32-4aea-b1ac-88dd09bcf21f","type":"Microsoft.Authorization/roleAssignments","name":"712b7791-9b32-4aea-b1ac-88dd09bcf21f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7b51e8c-e2bc-4995-9fd6-8fba299a697b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T21:21:29.0456925Z","updatedOn":"2018-10-16T21:21:29.0456925Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a676414b-de5c-4cdc-b12e-be7efd1c9201","type":"Microsoft.Authorization/roleAssignments","name":"a676414b-de5c-4cdc-b12e-be7efd1c9201"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7e8644a-035e-42fc-b884-94399a127f78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-25T06:04:36.9767266Z","updatedOn":"2019-09-25T06:04:36.9767266Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26b4ce18-5649-45f7-964f-36087586eb7c","type":"Microsoft.Authorization/roleAssignments","name":"26b4ce18-5649-45f7-964f-36087586eb7c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e82a88b9-378c-46e2-927c-5c31b169943a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-18T06:51:49.6591216Z","updatedOn":"2019-01-18T06:51:49.6591216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b5df3b6-1025-4123-b6eb-d0ff78511c3c","type":"Microsoft.Authorization/roleAssignments","name":"7b5df3b6-1025-4123-b6eb-d0ff78511c3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e979acbc-d9f3-4bc8-a577-d507f284fd64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T07:05:59.2701340Z","updatedOn":"2019-02-13T07:05:59.2701340Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d4036f4-9da4-4b75-b3cb-bea1e1587637","type":"Microsoft.Authorization/roleAssignments","name":"4d4036f4-9da4-4b75-b3cb-bea1e1587637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e97f382e-06de-4c02-ae49-1b472d457b5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T06:48:52.2100303Z","updatedOn":"2018-12-13T06:48:52.2100303Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e201ee26-fa57-484c-b996-e80d351409fd","type":"Microsoft.Authorization/roleAssignments","name":"e201ee26-fa57-484c-b996-e80d351409fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e9828cac-b36d-49c5-ac90-20be05e4d24d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T05:07:01.3282577Z","updatedOn":"2018-10-10T05:07:01.3282577Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff93b77-1a32-46d2-8560-f71cd70f1ebd","type":"Microsoft.Authorization/roleAssignments","name":"8ff93b77-1a32-46d2-8560-f71cd70f1ebd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ea36e992-4a2f-45a3-a912-a54a2d30fc0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T11:21:21.5808774Z","updatedOn":"2018-11-05T11:21:21.5808774Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc53456a-6608-4c33-9491-4d1a5afdea55","type":"Microsoft.Authorization/roleAssignments","name":"bc53456a-6608-4c33-9491-4d1a5afdea55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaa6ed61-48bf-43a3-9612-b2100b017464","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T06:51:17.2248433Z","updatedOn":"2018-11-16T06:51:17.2248433Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c6e9372-b60f-400a-923e-5bf10461039d","type":"Microsoft.Authorization/roleAssignments","name":"5c6e9372-b60f-400a-923e-5bf10461039d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab7796a-9356-4cc3-9013-b7b05f366e6e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T06:38:38.0393711Z","updatedOn":"2019-05-11T06:38:38.0393711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1bfee263-2d52-452f-8bc4-69506742a6dc","type":"Microsoft.Authorization/roleAssignments","name":"1bfee263-2d52-452f-8bc4-69506742a6dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab79c72-4ae1-418d-959c-3189fcd38f83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T06:47:15.3844106Z","updatedOn":"2019-06-27T06:47:15.3844106Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7570d9e5-b430-4887-beb7-248bb541fc0f","type":"Microsoft.Authorization/roleAssignments","name":"7570d9e5-b430-4887-beb7-248bb541fc0f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eade49e1-acfb-4ea4-ae49-a623f535fb18","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T06:45:44.1143351Z","updatedOn":"2019-05-03T06:45:44.1143351Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39c4676b-567c-4f1c-97d5-c3ed9daa362a","type":"Microsoft.Authorization/roleAssignments","name":"39c4676b-567c-4f1c-97d5-c3ed9daa362a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaeae412-d60d-4d7a-908c-145c6bf3fbf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T05:12:09.4309329Z","updatedOn":"2019-04-13T05:12:09.4309329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/efa03a0f-bc71-4070-bee7-3941291a7551","type":"Microsoft.Authorization/roleAssignments","name":"efa03a0f-bc71-4070-bee7-3941291a7551"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb21d0ed-cf9a-4e1a-91c6-fcbbe79087ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:23.0325690Z","updatedOn":"2019-04-05T06:36:23.0325690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfb5446f-1343-4c99-84ae-7e0d582fffe7","type":"Microsoft.Authorization/roleAssignments","name":"dfb5446f-1343-4c99-84ae-7e0d582fffe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb97db0b-0e80-43c9-bcc3-de7aeaf94664","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:59.8441024Z","updatedOn":"2019-03-27T06:15:59.8441024Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f","type":"Microsoft.Authorization/roleAssignments","name":"ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec57ccc5-2f42-431d-a500-a89f6b520a69","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-29T06:47:51.0639763Z","updatedOn":"2018-12-29T06:47:51.0639763Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3215167-e3e0-49d9-a7bf-9f2a630d3df8","type":"Microsoft.Authorization/roleAssignments","name":"b3215167-e3e0-49d9-a7bf-9f2a630d3df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec7af31f-8df5-41fc-8ce0-3e400f87b2f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T15:42:33.2721176Z","updatedOn":"2018-09-28T15:42:33.2721176Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/933415b4-7989-4967-9573-b3391a105890","type":"Microsoft.Authorization/roleAssignments","name":"933415b4-7989-4967-9573-b3391a105890"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ecd227f4-6172-4cb0-b71e-fc375b24890e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-05T07:09:55.8763875Z","updatedOn":"2019-03-05T07:09:55.8763875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33","type":"Microsoft.Authorization/roleAssignments","name":"6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"edc08fc8-a655-45cb-bc3a-dc7c6eb2276e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T22:49:39.8210549Z","updatedOn":"2018-11-08T22:49:39.8210549Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86afb984-5cee-4133-b945-19308dccc30e","type":"Microsoft.Authorization/roleAssignments","name":"86afb984-5cee-4133-b945-19308dccc30e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee02061f-5d48-4b61-a0ed-f021507f073a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:51:58.0601465Z","updatedOn":"2018-09-18T23:51:58.0601465Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442128eb-c84c-4bfd-aaf3-78461a82d37a","type":"Microsoft.Authorization/roleAssignments","name":"442128eb-c84c-4bfd-aaf3-78461a82d37a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee22eca7-314f-419d-8c4c-afb7dfdb067a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:47:10.4443784Z","updatedOn":"2019-06-29T05:47:10.4443784Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70da3654-07cc-498a-ae86-7b555af271fa","type":"Microsoft.Authorization/roleAssignments","name":"70da3654-07cc-498a-ae86-7b555af271fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ef2f674f-9168-4c63-b381-21b1274d486f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-10T02:45:50.4761292Z","updatedOn":"2018-12-10T02:45:50.4761292Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab1e45ce-6cb8-4f36-b317-a5e69c765de8","type":"Microsoft.Authorization/roleAssignments","name":"ab1e45ce-6cb8-4f36-b317-a5e69c765de8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f0ee7d27-b2cf-4fef-bffb-d053c7e525e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-15T06:50:10.0183556Z","updatedOn":"2018-12-15T06:50:10.0183556Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b05e83dd-0a32-4362-bf41-533eefec78fe","type":"Microsoft.Authorization/roleAssignments","name":"b05e83dd-0a32-4362-bf41-533eefec78fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f12d73d6-38bf-446c-bcf2-06cdf7c751f6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:17:31.1347008Z","updatedOn":"2018-10-05T00:17:31.1347008Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b75eb356-24bd-43ec-9924-8c1fec732b25","type":"Microsoft.Authorization/roleAssignments","name":"b75eb356-24bd-43ec-9924-8c1fec732b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1d2e61d-aff2-479c-8035-71de9c693170","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T06:50:50.2868298Z","updatedOn":"2019-06-26T06:50:50.2868298Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e33e46c8-32a7-4770-94d9-26ed006e5aa7","type":"Microsoft.Authorization/roleAssignments","name":"e33e46c8-32a7-4770-94d9-26ed006e5aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1e96e2a-03c6-48f5-b9b4-efa3f2f7c23a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T11:21:53.3901696Z","updatedOn":"2018-11-07T11:21:53.3901696Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87b0b81-c91b-47ab-ba6a-bc64bef90a96","type":"Microsoft.Authorization/roleAssignments","name":"c87b0b81-c91b-47ab-ba6a-bc64bef90a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2ce8704-eb58-4f53-a001-64706ff5f5cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:16:01.8990158Z","updatedOn":"2019-05-16T05:16:01.8990158Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c3963fb-821b-47ef-a9f3-8b608fcac94f","type":"Microsoft.Authorization/roleAssignments","name":"3c3963fb-821b-47ef-a9f3-8b608fcac94f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2dab8e8-6a37-4c10-8684-b199ed36f6af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:18:29.2774803Z","updatedOn":"2019-06-05T05:18:29.2774803Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eed7a551-3f2f-44ea-8529-f520a2c304bc","type":"Microsoft.Authorization/roleAssignments","name":"eed7a551-3f2f-44ea-8529-f520a2c304bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f34ec5dd-3c0a-41c9-becf-0376cfd68992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T21:29:31.5576007Z","updatedOn":"2019-03-08T21:29:31.5576007Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12b2f6b0-4811-436a-a8bd-5924b2ab21e5","type":"Microsoft.Authorization/roleAssignments","name":"12b2f6b0-4811-436a-a8bd-5924b2ab21e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f3e2492e-9ad2-42a3-847e-c150775639c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-04T01:32:07.5969769Z","updatedOn":"2019-02-04T01:32:07.5969769Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a964fbf-cc11-457c-8ec0-443d4bc1a630","type":"Microsoft.Authorization/roleAssignments","name":"6a964fbf-cc11-457c-8ec0-443d4bc1a630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f40c52bb-3174-418d-bb20-443a38784a98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:14:40.9925500Z","updatedOn":"2019-05-04T05:14:40.9925500Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c1a74f6-2f50-43e4-8041-f306168ecce2","type":"Microsoft.Authorization/roleAssignments","name":"7c1a74f6-2f50-43e4-8041-f306168ecce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f5198c63-8877-46d5-9c35-9c4c490a29ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T06:47:14.5768830Z","updatedOn":"2019-01-15T06:47:14.5768830Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a90e35-892f-42fe-9cc3-95303f8debf8","type":"Microsoft.Authorization/roleAssignments","name":"26a90e35-892f-42fe-9cc3-95303f8debf8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-16T01:33:17.9534350Z","updatedOn":"2019-02-16T01:33:17.9534350Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61ee390f-be86-4b4e-86f3-9e8bafaab2e1","type":"Microsoft.Authorization/roleAssignments","name":"61ee390f-be86-4b4e-86f3-9e8bafaab2e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f685c96d-aa5e-455b-af7d-2e7d94ede7d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-09T07:07:23.8043875Z","updatedOn":"2019-02-09T07:07:23.8043875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0786223d-65f3-40db-81aa-a17f34c9dc28","type":"Microsoft.Authorization/roleAssignments","name":"0786223d-65f3-40db-81aa-a17f34c9dc28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f6c2f6f7-1bbf-4c17-87c6-28c02d7c0637","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T18:01:59.1260407Z","updatedOn":"2018-11-08T18:01:59.1260407Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4b79dcb-c95a-44c2-82cd-e550faad8ac5","type":"Microsoft.Authorization/roleAssignments","name":"c4b79dcb-c95a-44c2-82cd-e550faad8ac5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f730bea3-2472-4fe3-80be-0a1445294eee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T06:35:01.7171966Z","updatedOn":"2019-04-26T06:35:01.7171966Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b6946b2-d0e9-4c65-a6fc-15737bff969d","type":"Microsoft.Authorization/roleAssignments","name":"0b6946b2-d0e9-4c65-a6fc-15737bff969d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f7b9dc01-e8a5-4dd6-a495-e5a60218fa54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T06:56:19.2723414Z","updatedOn":"2018-12-07T06:56:19.2723414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bac40000-696c-48ce-8d64-d164cc7c9584","type":"Microsoft.Authorization/roleAssignments","name":"bac40000-696c-48ce-8d64-d164cc7c9584"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8b44c55-cd62-4be2-9a7b-6f34c02102fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-15T06:39:44.9770992Z","updatedOn":"2019-10-15T06:39:44.9770992Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9f17e1c-8894-4b9f-8961-7e4c9ce0d42e","type":"Microsoft.Authorization/roleAssignments","name":"a9f17e1c-8894-4b9f-8961-7e4c9ce0d42e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8cfccf4-e5f4-4f03-92b0-4a7188d128e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:18:44.2822059Z","updatedOn":"2019-06-11T05:18:44.2822059Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/64f20b4f-a2bc-4e40-aaa6-0e38c6376805","type":"Microsoft.Authorization/roleAssignments","name":"64f20b4f-a2bc-4e40-aaa6-0e38c6376805"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8e79c26-a86d-4735-9eea-870bf9776bd8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T14:43:30.1825870Z","updatedOn":"2018-11-02T14:43:30.1825870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18dd5795-e181-4161-9c6d-9d4254b8cb5b","type":"Microsoft.Authorization/roleAssignments","name":"18dd5795-e181-4161-9c6d-9d4254b8cb5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8f4e1d2-5bfc-456e-b2b3-02be2b489975","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T01:07:10.2845079Z","updatedOn":"2019-04-13T01:07:10.2845079Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7b97d48-40ea-4a62-b945-4ecc788b349b","type":"Microsoft.Authorization/roleAssignments","name":"d7b97d48-40ea-4a62-b945-4ecc788b349b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f931cad8-70e4-4763-8a12-1e4de602ea7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T19:20:46.6973443Z","updatedOn":"2018-12-20T19:20:46.6973443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b5a984b-3400-4961-a40a-91edf9921515","type":"Microsoft.Authorization/roleAssignments","name":"2b5a984b-3400-4961-a40a-91edf9921515"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"facba42c-528c-43d4-a858-0bf72a82282a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:43.5905169Z","updatedOn":"2019-03-21T06:07:43.5905169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b490d9b4-0e66-47b8-84cb-b46c55e3e12a","type":"Microsoft.Authorization/roleAssignments","name":"b490d9b4-0e66-47b8-84cb-b46c55e3e12a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fae345f2-3525-4eee-91ed-aa3e7a0339a7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T19:02:36.1002522Z","updatedOn":"2018-10-26T19:02:36.1002522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98cbb4be-2890-41dd-add1-4ee878c60dd8","type":"Microsoft.Authorization/roleAssignments","name":"98cbb4be-2890-41dd-add1-4ee878c60dd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb081bc8-ed19-41cc-96a0-ea9ccd00ec90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:39:01.0101712Z","updatedOn":"2019-05-15T05:39:01.0101712Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8392ddf-11a2-46aa-9358-fdbe878e960c","type":"Microsoft.Authorization/roleAssignments","name":"c8392ddf-11a2-46aa-9358-fdbe878e960c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb37b8d0-4601-4b1f-b91d-8481ae1a64dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T06:38:25.6840193Z","updatedOn":"2019-06-05T06:38:25.6840193Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/393f99af-bba5-4e10-86e0-a516711c2610","type":"Microsoft.Authorization/roleAssignments","name":"393f99af-bba5-4e10-86e0-a516711c2610"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fbfb0f5c-126b-4ad5-b57a-fcde861f6ef5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:39:36.0023686Z","updatedOn":"2019-05-22T05:39:36.0023686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e387c6d-5025-47b3-9656-b34a4010b543","type":"Microsoft.Authorization/roleAssignments","name":"0e387c6d-5025-47b3-9656-b34a4010b543"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd456099-1753-4268-b008-b3f5efb95450","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T06:42:07.6153979Z","updatedOn":"2019-05-16T06:42:07.6153979Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c385c958-ab8b-4607-9c74-331b2b5c2a50","type":"Microsoft.Authorization/roleAssignments","name":"c385c958-ab8b-4607-9c74-331b2b5c2a50"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd88acad-daca-4266-85ef-2dd1913764b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-23T06:51:03.9457234Z","updatedOn":"2019-01-23T06:51:03.9457234Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae829a74-705b-4601-9244-b9c56a1c8c06","type":"Microsoft.Authorization/roleAssignments","name":"ae829a74-705b-4601-9244-b9c56a1c8c06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdac9577-7542-4784-acee-04438868444e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-25T06:49:39.2426384Z","updatedOn":"2018-12-25T06:49:39.2426384Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d786378a-55c6-422f-bead-e440c334f64e","type":"Microsoft.Authorization/roleAssignments","name":"d786378a-55c6-422f-bead-e440c334f64e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdcdb431-1889-489a-9ad3-78938a34f291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T05:09:58.6316471Z","updatedOn":"2019-03-21T05:09:58.6316471Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c","type":"Microsoft.Authorization/roleAssignments","name":"6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fde0da25-f6a4-4dfd-9668-adfe72c9b3d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T06:48:48.7139215Z","updatedOn":"2018-11-08T06:48:48.7139215Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77d93e9-ffc3-4bbc-9e41-d83ce42904dc","type":"Microsoft.Authorization/roleAssignments","name":"f77d93e9-ffc3-4bbc-9e41-d83ce42904dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe17c43a-7ba9-4c77-9a8a-786cb36b6ac7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T06:53:34.4612275Z","updatedOn":"2019-06-14T06:53:34.4612275Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e07738-648f-42d4-821e-44878849aa6a","type":"Microsoft.Authorization/roleAssignments","name":"90e07738-648f-42d4-821e-44878849aa6a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe19f84e-7f46-454e-89e4-4cbefe1ed4a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:34:36.0206593Z","updatedOn":"2019-04-20T05:34:36.0206593Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5553c590-af3a-49a1-a2f5-3f28018cbcc0","type":"Microsoft.Authorization/roleAssignments","name":"5553c590-af3a-49a1-a2f5-3f28018cbcc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe55b12a-b22b-425d-9823-d07edba98b05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T15:46:35.8826664Z","updatedOn":"2018-11-12T15:46:35.8826664Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a386f3b-f818-467e-b33b-ace3ccbee34c","type":"Microsoft.Authorization/roleAssignments","name":"0a386f3b-f818-467e-b33b-ace3ccbee34c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe6e08d1-3fe9-4fcd-8430-d10701a9d7ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:41:54.8887107Z","updatedOn":"2019-06-05T05:41:54.8887107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a76715-9dbd-4a18-92e5-d67600f59cce","type":"Microsoft.Authorization/roleAssignments","name":"55a76715-9dbd-4a18-92e5-d67600f59cce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fec576d4-426b-410d-9137-67f4a2dd0298","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:16:36.3049181Z","updatedOn":"2019-05-21T05:16:36.3049181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7a5108f-9ec2-4903-93a8-b4fbcb4c292c","type":"Microsoft.Authorization/roleAssignments","name":"b7a5108f-9ec2-4903-93a8-b4fbcb4c292c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff5beb60-1ab4-4725-b12e-20da05833516","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T06:39:43.4665630Z","updatedOn":"2019-06-08T06:39:43.4665630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce551e89-0244-4c14-9e46-4d0715368fd2","type":"Microsoft.Authorization/roleAssignments","name":"ce551e89-0244-4c14-9e46-4d0715368fd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff64b261-1aaa-4d2a-b37e-0c6f71ee5d41","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-19T07:05:24.6386936Z","updatedOn":"2019-02-19T07:05:24.6386936Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08f79e8e-7405-4fe6-b15e-fcf13f8af972","type":"Microsoft.Authorization/roleAssignments","name":"08f79e8e-7405-4fe6-b15e-fcf13f8af972"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ffafc31c-c957-481f-922f-6f38699fbba4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:41:51.9166032Z","updatedOn":"2019-05-09T05:41:51.9166032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c20ee64c-0ac0-4280-820b-1e515aa13c95","type":"Microsoft.Authorization/roleAssignments","name":"c20ee64c-0ac0-4280-820b-1e515aa13c95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:19:13.9288977Z","updatedOn":"2019-09-11T09:19:13.9288977Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b02d8e07-7398-4236-bf13-6293699c6862","type":"Microsoft.Authorization/roleAssignments","name":"b02d8e07-7398-4236-bf13-6293699c6862"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T19:47:09.8058411Z","updatedOn":"2018-10-25T19:47:09.8058411Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abd19ae1-8e0c-4e31-b1ab-25e85d987378","type":"Microsoft.Authorization/roleAssignments","name":"abd19ae1-8e0c-4e31-b1ab-25e85d987378"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:42.0835929Z","updatedOn":"2019-09-04T08:09:42.0835929Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/providers/Microsoft.Authorization/roleAssignments/9d0c9433-a2c8-403f-ba1c-6310772291a5","type":"Microsoft.Authorization/roleAssignments","name":"9d0c9433-a2c8-403f-ba1c-6310772291a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:00.2975238Z","updatedOn":"2019-09-04T08:09:00.2975238Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/providers/Microsoft.Authorization/roleAssignments/1170ebb2-2837-465d-87ea-0c13b2c951b4","type":"Microsoft.Authorization/roleAssignments","name":"1170ebb2-2837-465d-87ea-0c13b2c951b4"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001","createdOn":"2019-12-31T02:38:49.8372923Z","updatedOn":"2019-12-31T02:38:49.8372923Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"677a61e9-086e-4f13-986a-11aaedc31416","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-26T03:31:37.3848580Z","updatedOn":"2019-11-26T03:31:37.3848580Z","createdBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6","updatedBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aac8538d-8226-4b91-9232-03d3f3a40214","type":"Microsoft.Authorization/roleAssignments","name":"aac8538d-8226-4b91-9232-03d3f3a40214"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-12T09:15:08.3107297Z","updatedOn":"2019-11-12T09:15:08.3107297Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54647dc6-f6f0-4ba0-af42-9770ddce6c5a","type":"Microsoft.Authorization/roleAssignments","name":"54647dc6-f6f0-4ba0-af42-9770ddce6c5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"04682e4a-6d00-4431-a67d-27d364f3a0cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T22:54:45.4500699Z","updatedOn":"2018-09-12T22:54:45.4500699Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7d54a622-bff3-4d28-90b1-faa5119abc7a","type":"Microsoft.Authorization/roleAssignments","name":"7d54a622-bff3-4d28-90b1-faa5119abc7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"056cdcb7-07df-4329-a5c1-dd8b53c85a05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:13:40.1246854Z","updatedOn":"2018-09-27T17:13:40.1246854Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c5b2ade-0f33-4d4d-b841-df57ffa2d569","type":"Microsoft.Authorization/roleAssignments","name":"1c5b2ade-0f33-4d4d-b841-df57ffa2d569"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-22T14:58:56.7424484Z","updatedOn":"2019-09-22T14:58:56.7424484Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5d758f5-4ec2-4dd5-ba95-cee5405e367c","type":"Microsoft.Authorization/roleAssignments","name":"a5d758f5-4ec2-4dd5-ba95-cee5405e367c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-21T03:37:35.1867759Z","updatedOn":"2019-11-21T03:37:35.1867759Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f93778f-00f5-4efb-a56f-6aff1d668df7","type":"Microsoft.Authorization/roleAssignments","name":"6f93778f-00f5-4efb-a56f-6aff1d668df7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0a592c45-613e-4f1b-9023-7c4414fd53bf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T01:47:13.5745250Z","updatedOn":"2019-08-08T01:47:13.5745250Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d320644f-c08b-47f4-ae3b-9df595a5c368","type":"Microsoft.Authorization/roleAssignments","name":"d320644f-c08b-47f4-ae3b-9df595a5c368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-26T04:16:43.3784273Z","updatedOn":"2019-07-26T04:16:43.3784273Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a567d42-8a33-4cad-9f7b-5299a16dc269","type":"Microsoft.Authorization/roleAssignments","name":"9a567d42-8a33-4cad-9f7b-5299a16dc269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:48:59.9741186Z","updatedOn":"2018-09-18T23:48:59.9741186Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4a780b4-840e-4552-8713-7ae0c353278b","type":"Microsoft.Authorization/roleAssignments","name":"d4a780b4-840e-4552-8713-7ae0c353278b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"0ea19d04-ed36-495e-b2f6-b514e2b68c33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-26T09:11:49.5485508Z","updatedOn":"2019-11-26T09:11:49.5485508Z","createdBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","updatedBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a60cc20-d39c-4db8-b91a-a6eefc6da56e","type":"Microsoft.Authorization/roleAssignments","name":"8a60cc20-d39c-4db8-b91a-a6eefc6da56e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"12229a56-a139-4df5-9873-e2d6869d6978","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-15T05:21:34.7033579Z","updatedOn":"2018-08-15T05:21:34.7033579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61bffc28-7921-4fcf-942f-d164943c7274","type":"Microsoft.Authorization/roleAssignments","name":"61bffc28-7921-4fcf-942f-d164943c7274"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"128dbb12-dd4e-4a43-b589-7a5398d8de42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:05:37.8677974Z","updatedOn":"2018-10-05T05:05:37.8677974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5882a08d-d03f-4c3d-90e5-7c74b20e81c8","type":"Microsoft.Authorization/roleAssignments","name":"5882a08d-d03f-4c3d-90e5-7c74b20e81c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"14c2ec86-db00-410f-b94d-c58509ee45c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T20:10:56.8604982Z","updatedOn":"2018-10-29T20:10:56.8604982Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7feac640-4864-4c07-b7c3-f0fec44a5032","type":"Microsoft.Authorization/roleAssignments","name":"7feac640-4864-4c07-b7c3-f0fec44a5032"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"161e0821-5f23-4360-84b5-f6531dfcad35","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:04:54.7328846Z","updatedOn":"2018-10-20T05:04:54.7328846Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/411c470b-03f6-499a-b5bf-32e5c8447641","type":"Microsoft.Authorization/roleAssignments","name":"411c470b-03f6-499a-b5bf-32e5c8447641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"182c8534-f413-487c-91a3-7addc80e35d5","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:37:05.6480940Z","updatedOn":"2017-09-06T13:37:05.6480940Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0560ab5-dd8d-4978-8c9b-84768b4a9467","type":"Microsoft.Authorization/roleAssignments","name":"d0560ab5-dd8d-4978-8c9b-84768b4a9467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"18f53146-1f6c-462a-96a5-d50e1293b770","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-24T02:53:04.7484734Z","updatedOn":"2019-05-24T02:53:04.7484734Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553a3d02-d0da-4b7c-a0f1-d1298f556001","type":"Microsoft.Authorization/roleAssignments","name":"553a3d02-d0da-4b7c-a0f1-d1298f556001"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-09T20:12:14.4602372Z","updatedOn":"2018-04-09T20:12:14.4602372Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d5397a6-f185-4b65-bcba-6b9f2248093a","type":"Microsoft.Authorization/roleAssignments","name":"8d5397a6-f185-4b65-bcba-6b9f2248093a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1ccb1196-3b40-438f-9be8-fd41c1b34ae1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-16T05:27:16.5640748Z","updatedOn":"2018-08-16T05:27:16.5640748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24c834d4-dba5-4aea-a42d-439588a23b0a","type":"Microsoft.Authorization/roleAssignments","name":"24c834d4-dba5-4aea-a42d-439588a23b0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1e3d4fff-f4da-4a1f-bd9d-659362b7c77f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:04:46.9757932Z","updatedOn":"2018-10-24T05:04:46.9757932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac6cb278-853b-4fa6-a5b8-d92f06e24d34","type":"Microsoft.Authorization/roleAssignments","name":"ac6cb278-853b-4fa6-a5b8-d92f06e24d34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:38:20.6583041Z","updatedOn":"2019-07-10T06:38:20.6583041Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce176826-2e72-450a-8179-fb2b7aefaa86","type":"Microsoft.Authorization/roleAssignments","name":"ce176826-2e72-450a-8179-fb2b7aefaa86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2262dfe7-375f-4597-a47c-2766489ecbe7","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T17:54:39.3919633Z","updatedOn":"2019-06-14T17:54:39.3919633Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f58856e-c1e1-4269-9055-f9fbe4cb6506","type":"Microsoft.Authorization/roleAssignments","name":"3f58856e-c1e1-4269-9055-f9fbe4cb6506"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"29727caa-21b0-4904-8f6c-565fd2457d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T16:24:04.8955454Z","updatedOn":"2018-10-02T16:24:04.8955454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3297254c-b10b-46df-a887-113a0c7c0b4c","type":"Microsoft.Authorization/roleAssignments","name":"3297254c-b10b-46df-a887-113a0c7c0b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"2ed08755-e5b9-42ef-8638-38e95105e710","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-23T06:01:53.1357543Z","updatedOn":"2019-12-23T06:01:53.1357543Z","createdBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","updatedBy":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1986d758-ee67-4fc7-9eb2-c0d52d4a075d","type":"Microsoft.Authorization/roleAssignments","name":"1986d758-ee67-4fc7-9eb2-c0d52d4a075d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"31e600e0-d7ce-4e98-a927-19bb30042e44","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-17T08:29:55.3047288Z","updatedOn":"2019-09-17T08:29:55.3047288Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3591e24-669e-475f-a315-7d581996b864","type":"Microsoft.Authorization/roleAssignments","name":"e3591e24-669e-475f-a315-7d581996b864"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3284e562-f7b4-469f-8dd3-81f0cd66daf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:47.3915367Z","updatedOn":"2018-10-09T05:05:47.3915367Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b99516e-ea97-4832-9628-5eed31f1d98f","type":"Microsoft.Authorization/roleAssignments","name":"4b99516e-ea97-4832-9628-5eed31f1d98f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32a9067d-11d1-4c29-a12f-4bb485b6b600","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:05:05.8842957Z","updatedOn":"2018-10-25T05:05:05.8842957Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd454990-a77f-4341-8493-a5137ac5f440","type":"Microsoft.Authorization/roleAssignments","name":"cd454990-a77f-4341-8493-a5137ac5f440"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"32fe2882-ca97-44f9-8e0d-dfe916b9dfee","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-06T03:03:50.0740099Z","updatedOn":"2019-09-06T03:03:50.0740099Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/01c1fcc9-4df3-4107-832f-42f245309750","type":"Microsoft.Authorization/roleAssignments","name":"01c1fcc9-4df3-4107-832f-42f245309750"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"35945435-5b36-48ce-a0fa-9f6a487b6d43","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T20:28:25.6841347Z","updatedOn":"2018-09-11T20:28:25.6841347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e38d95ce-a050-41c5-967c-92f9a62531e2","type":"Microsoft.Authorization/roleAssignments","name":"e38d95ce-a050-41c5-967c-92f9a62531e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"378df7ee-31fd-4c54-945e-a1ed4f025a28","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-08-10T19:00:33.4173527Z","updatedOn":"2017-08-10T19:00:33.4173527Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8","type":"Microsoft.Authorization/roleAssignments","name":"e0ddb7cd-de16-42ce-bab6-6a0d4d3903d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:21:28.6870688Z","updatedOn":"2019-02-25T22:21:28.6870688Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/185a89d4-23f9-4fb8-827c-6d7f8e26c49d","type":"Microsoft.Authorization/roleAssignments","name":"185a89d4-23f9-4fb8-827c-6d7f8e26c49d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"39029da9-0fef-42a9-b478-2fe4e19b8c7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T22:10:39.6892748Z","updatedOn":"2019-02-25T22:10:39.6892748Z","createdBy":"f61d140c-100f-4802-a259-065b338ab67d","updatedBy":"f61d140c-100f-4802-a259-065b338ab67d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ec022f0-b25f-41c1-93d9-4905814a6687","type":"Microsoft.Authorization/roleAssignments","name":"1ec022f0-b25f-41c1-93d9-4905814a6687"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3c2dbb98-feac-4fb1-8472-bd5e4dbaa814","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:05:50.5110946Z","updatedOn":"2018-10-13T05:05:50.5110946Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a57185c-8716-406b-954a-f9a271f84a65","type":"Microsoft.Authorization/roleAssignments","name":"4a57185c-8716-406b-954a-f9a271f84a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"45c545d2-3beb-4122-99e4-1d5a9baf875a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:00:49.4836748Z","updatedOn":"2018-10-12T11:00:49.4836748Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2ae6c29-28a7-436c-8100-92d9fbff21ff","type":"Microsoft.Authorization/roleAssignments","name":"f2ae6c29-28a7-436c-8100-92d9fbff21ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"4b12a28b-33df-4b89-87f2-600465f47640","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T17:44:04.4033814Z","updatedOn":"2018-09-12T17:44:04.4033814Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a456f69e-0744-403d-8dca-4fd4cd170cf3","type":"Microsoft.Authorization/roleAssignments","name":"a456f69e-0744-403d-8dca-4fd4cd170cf3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"51b966ff-5680-4e37-a80d-0d79694df747","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-21T05:08:22.9928772Z","updatedOn":"2018-08-21T05:08:22.9928772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13ec9de0-0071-4461-8ae8-33c9b780c3fd","type":"Microsoft.Authorization/roleAssignments","name":"13ec9de0-0071-4461-8ae8-33c9b780c3fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"56b6b563-1341-4632-96cd-06252b81665d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:50:50.2703536Z","updatedOn":"2019-09-05T08:50:50.2703536Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e17d3c8b-26f3-4cdd-bcc1-211c3e490299","type":"Microsoft.Authorization/roleAssignments","name":"e17d3c8b-26f3-4cdd-bcc1-211c3e490299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"579e0702-a6e2-4caf-bdc8-200024269591","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-09-06T13:31:18.5085521Z","updatedOn":"2017-09-06T13:31:18.5085521Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a707eb24-17dd-426b-8d2a-9b3751c754db","type":"Microsoft.Authorization/roleAssignments","name":"a707eb24-17dd-426b-8d2a-9b3751c754db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5804b4e6-f975-4c75-9b1e-f28b311a9cfc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-28T10:36:01.4354692Z","updatedOn":"2018-08-28T10:36:01.4354692Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed4cb227-0f99-40a3-bd00-270f35ca8d72","type":"Microsoft.Authorization/roleAssignments","name":"ed4cb227-0f99-40a3-bd00-270f35ca8d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"596c247a-9db0-4c20-8ddb-d944102067ac","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T08:06:17.3145960Z","updatedOn":"2019-10-25T08:06:17.3145960Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5383f6ae-0e25-43d5-a448-2fd0d2699d72","type":"Microsoft.Authorization/roleAssignments","name":"5383f6ae-0e25-43d5-a448-2fd0d2699d72"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5accae2a-f109-44ba-8549-8c682acd4ad1","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-11-06T23:33:48.6032970Z","updatedOn":"2017-11-06T23:33:48.6032970Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b35dfe77-4bb3-4956-b644-16d58904b1bf","type":"Microsoft.Authorization/roleAssignments","name":"b35dfe77-4bb3-4956-b644-16d58904b1bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-25T07:01:28.9578744Z","updatedOn":"2019-10-25T07:01:28.9578744Z","createdBy":"dca37046-82cf-4fbb-8088-faa399010380","updatedBy":"dca37046-82cf-4fbb-8088-faa399010380"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af2f762c-68cf-468f-9315-c241b4f59550","type":"Microsoft.Authorization/roleAssignments","name":"af2f762c-68cf-468f-9315-c241b4f59550"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"5e1534ec-1e3f-459f-bf72-739eee5030bd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:06:28.3611111Z","updatedOn":"2018-09-20T06:06:28.3611111Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9989f5d7-d06c-4804-a03a-ac7723776f0e","type":"Microsoft.Authorization/roleAssignments","name":"9989f5d7-d06c-4804-a03a-ac7723776f0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"63b3e92c-3ea7-4c27-b592-ca676a4e83f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-10-02T18:19:26.0915573Z","updatedOn":"2017-10-02T18:19:26.0915573Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef32bbaf-c67a-452a-9f2b-cef46652bc12","type":"Microsoft.Authorization/roleAssignments","name":"ef32bbaf-c67a-452a-9f2b-cef46652bc12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"669ef724-96ef-462e-b760-a398c8d49f12","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T00:01:10.8880293Z","updatedOn":"2018-10-16T00:01:10.8880293Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1fb698ad-cef0-442e-8fa0-c5c4609b12ec","type":"Microsoft.Authorization/roleAssignments","name":"1fb698ad-cef0-442e-8fa0-c5c4609b12ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"69c8d308-8964-4372-9771-e22fa1b1d02e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:08:13.2132002Z","updatedOn":"2018-10-19T05:08:13.2132002Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8","type":"Microsoft.Authorization/roleAssignments","name":"5fdd6e72-fdbe-41ae-b2dd-3cb2572ecba8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6ba8d12f-faf3-4859-918b-80f93e471e38","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T07:42:22.6383489Z","updatedOn":"2019-09-05T07:42:22.6383489Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b0df1c0-baf0-41ed-9560-6495d40dfa06","type":"Microsoft.Authorization/roleAssignments","name":"1b0df1c0-baf0-41ed-9560-6495d40dfa06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6c3a43fa-d321-44e9-9fc5-ef8dcf2c1a5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T15:52:57.6857263Z","updatedOn":"2018-09-12T15:52:57.6857263Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bec9dbb-f348-447b-8618-8d4cb0249bdd","type":"Microsoft.Authorization/roleAssignments","name":"2bec9dbb-f348-447b-8618-8d4cb0249bdd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"6e95a7c2-c99b-428b-a560-d5227ba9f2e7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-18T05:08:25.6259727Z","updatedOn":"2018-08-18T05:08:25.6259727Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/065b148b-bfa7-4706-9ddd-42c1c7611365","type":"Microsoft.Authorization/roleAssignments","name":"065b148b-bfa7-4706-9ddd-42c1c7611365"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-10T06:36:08.0241793Z","updatedOn":"2019-09-10T06:36:08.0241793Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b1e634-f9af-4434-bd13-55eb43a57124","type":"Microsoft.Authorization/roleAssignments","name":"10b1e634-f9af-4434-bd13-55eb43a57124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7b29ef09-268a-44a7-b1f8-094beba68028","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-04-05T17:27:17.7281001Z","updatedOn":"2018-04-05T17:27:17.7281001Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5c8a26b-80ac-421d-a137-2951374bca62","type":"Microsoft.Authorization/roleAssignments","name":"a5c8a26b-80ac-421d-a137-2951374bca62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7c1f8589-d62d-4dc2-afb0-e94b22edf558","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-26T06:26:40.9453629Z","updatedOn":"2019-11-26T06:26:40.9453629Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ba40e27-d44f-48e7-9462-1561128bed69","type":"Microsoft.Authorization/roleAssignments","name":"2ba40e27-d44f-48e7-9462-1561128bed69"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-23T08:57:03.4127112Z","updatedOn":"2019-10-23T08:57:03.4127112Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec55b030-cffa-46ab-a296-78f606400df8","type":"Microsoft.Authorization/roleAssignments","name":"ec55b030-cffa-46ab-a296-78f606400df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7e58ddef-4719-4c36-a485-4c2a0a843a46","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-25T05:07:15.7863485Z","updatedOn":"2019-12-25T05:07:15.7863485Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/999c61a0-361b-416f-91ee-68f515f910ec","type":"Microsoft.Authorization/roleAssignments","name":"999c61a0-361b-416f-91ee-68f515f910ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"7f2b9f1e-23ea-4ef8-a76b-d1ff0fe05120","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-15T08:49:50.8762611Z","updatedOn":"2019-11-15T08:49:50.8762611Z","createdBy":"0a592c45-613e-4f1b-9023-7c4414fd53bf","updatedBy":"0a592c45-613e-4f1b-9023-7c4414fd53bf"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/233c612a-f4d8-41fb-bf58-8e2a587142df","type":"Microsoft.Authorization/roleAssignments","name":"233c612a-f4d8-41fb-bf58-8e2a587142df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"89f8b9bb-7e1f-4026-a2f1-2397bc515cb3","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-23T05:48:03.4970209Z","updatedOn":"2019-12-23T05:48:03.4970209Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8cbac001-17ff-4ba4-ade1-cbbb4924e6d6","type":"Microsoft.Authorization/roleAssignments","name":"8cbac001-17ff-4ba4-ade1-cbbb4924e6d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8a7fb7ba-b9bd-4113-9e9e-402a39e517e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-11T17:17:13.6083568Z","updatedOn":"2018-09-11T17:17:13.6083568Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea9a91c-b1be-4310-809a-48f423c76ad7","type":"Microsoft.Authorization/roleAssignments","name":"2ea9a91c-b1be-4310-809a-48f423c76ad7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ae38a78-a9b0-481e-b77d-a68dadb46fd3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-30T18:43:04.7284681Z","updatedOn":"2018-08-30T18:43:04.7284681Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77cd24a-5806-46ca-8093-a73055cc5f92","type":"Microsoft.Authorization/roleAssignments","name":"f77cd24a-5806-46ca-8093-a73055cc5f92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8c19637c-da26-4745-9ca5-d9a35a0bfa25","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-20T17:35:36.0710301Z","updatedOn":"2017-12-20T17:35:36.0710301Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec","type":"Microsoft.Authorization/roleAssignments","name":"2cf17c82-6a7e-4902-9949-9c7d1bd2e5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8ccf8c17-bef7-43c5-8788-592c7645ce24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-21T00:49:38.5584710Z","updatedOn":"2017-12-21T00:49:38.5584710Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27f8c6c4-442c-42a6-8fb2-e086108e4d14","type":"Microsoft.Authorization/roleAssignments","name":"27f8c6c4-442c-42a6-8fb2-e086108e4d14"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8cecb614-1133-40e4-969a-87586a03bda9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:05:58.6187581Z","updatedOn":"2018-10-06T05:05:58.6187581Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d20cf58b-2e31-4d34-9235-26cd30301a5b","type":"Microsoft.Authorization/roleAssignments","name":"d20cf58b-2e31-4d34-9235-26cd30301a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"8d594fee-5764-49c9-ad85-35d3ee728386","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-23T09:22:57.7278029Z","updatedOn":"2019-10-23T09:22:57.7278029Z","createdBy":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d","updatedBy":"7d80ae58-a9f9-44ce-b048-636b50d9ad1d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66da1b82-8f84-41cc-995f-867498db9ae3","type":"Microsoft.Authorization/roleAssignments","name":"66da1b82-8f84-41cc-995f-867498db9ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"906cbae0-394a-4011-b211-faad4800e871","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-24T05:30:47.9362826Z","updatedOn":"2018-08-24T05:30:47.9362826Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aac320ff-138c-4993-984e-49a0d404201d","type":"Microsoft.Authorization/roleAssignments","name":"aac320ff-138c-4993-984e-49a0d404201d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"93a01e49-673a-4e15-8230-51214a737962","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-07-05T21:56:39.5905773Z","updatedOn":"2017-07-05T21:56:39.5905773Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d09787d-0a89-40a8-abf2-a7b60e95d24b","type":"Microsoft.Authorization/roleAssignments","name":"8d09787d-0a89-40a8-abf2-a7b60e95d24b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"94090f94-bf94-4844-9b8d-58a6e40ed46a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:08:58.4289607Z","updatedOn":"2018-10-26T05:08:58.4289607Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b62b648-5069-4ef7-8d02-dc21d3a1207a","type":"Microsoft.Authorization/roleAssignments","name":"5b62b648-5069-4ef7-8d02-dc21d3a1207a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T06:47:24.5464704Z","updatedOn":"2019-07-10T06:47:24.5464704Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83b44361-6e27-4ed1-923c-b10ce84b3926","type":"Microsoft.Authorization/roleAssignments","name":"83b44361-6e27-4ed1-923c-b10ce84b3926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-21T06:37:44.9936263Z","updatedOn":"2019-10-21T06:37:44.9936263Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e96cad1-9fe5-49d6-b754-cbe33ce49882","type":"Microsoft.Authorization/roleAssignments","name":"7e96cad1-9fe5-49d6-b754-cbe33ce49882"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"9ac534f1-d577-4034-a32d-48de400dacbf","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-04T03:06:42.9265284Z","updatedOn":"2019-12-04T03:06:42.9265284Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe0b9591-410f-4229-a288-98d8bfb7ffe5","type":"Microsoft.Authorization/roleAssignments","name":"fe0b9591-410f-4229-a288-98d8bfb7ffe5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a08a53ed-ef7e-4ed8-b65c-522fdc1b2374","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:22:17.1891332Z","updatedOn":"2018-09-19T16:22:17.1891332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8dfe2756-45d2-4d09-a662-41c458276604","type":"Microsoft.Authorization/roleAssignments","name":"8dfe2756-45d2-4d09-a662-41c458276604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a35eaf1c-1e5e-4827-bd3c-9568fca01796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:05:37.7879353Z","updatedOn":"2018-10-04T05:05:37.7879353Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bce0209a-399a-452d-9a4b-0802ab28adc5","type":"Microsoft.Authorization/roleAssignments","name":"bce0209a-399a-452d-9a4b-0802ab28adc5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a59de285-3f0a-46ae-99f6-ea4ece052936","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T18:28:06.2409628Z","updatedOn":"2018-10-24T18:28:06.2409628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7616165-7871-4b83-969e-d2248d191e46","type":"Microsoft.Authorization/roleAssignments","name":"f7616165-7871-4b83-969e-d2248d191e46"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a6634063-9a62-41b2-a356-d946b267e5d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-23T05:08:09.0286948Z","updatedOn":"2018-08-23T05:08:09.0286948Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96411a82-7e4e-4e8f-a613-e301212c599c","type":"Microsoft.Authorization/roleAssignments","name":"96411a82-7e4e-4e8f-a613-e301212c599c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"a9668459-3905-4e76-a681-a1633c50f368","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-16T02:39:39.2120161Z","updatedOn":"2019-12-16T02:39:39.2120161Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/263dab0a-bf9f-4eec-9ff6-387f87ed056b","type":"Microsoft.Authorization/roleAssignments","name":"263dab0a-bf9f-4eec-9ff6-387f87ed056b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"aa646ec7-f68f-47b9-a690-dab01146c7ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:04:53.6239739Z","updatedOn":"2018-09-28T05:04:53.6239739Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546e9e9b-36ab-49cc-9bb7-bb1b367ad709","type":"Microsoft.Authorization/roleAssignments","name":"546e9e9b-36ab-49cc-9bb7-bb1b367ad709"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-20T02:31:32.7276952Z","updatedOn":"2019-09-20T02:31:32.7276952Z","createdBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a","updatedBy":"7b280dae-3c0b-48cf-ad89-c54f9181ba5a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4bf29019-3c72-44c1-97d4-58ef4d1a540f","type":"Microsoft.Authorization/roleAssignments","name":"4bf29019-3c72-44c1-97d4-58ef4d1a540f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"acb349e8-a7d3-4de0-89eb-868e32beda95","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-17T05:08:24.2918591Z","updatedOn":"2018-08-17T05:08:24.2918591Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71e9d1ca-3fbf-4d71-be0a-e1229399307e","type":"Microsoft.Authorization/roleAssignments","name":"71e9d1ca-3fbf-4d71-be0a-e1229399307e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"af1b30dc-fd64-4f5f-903e-47a57eba1a80","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:05:31.0681976Z","updatedOn":"2018-10-03T05:05:31.0681976Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c868cde1-62a8-4b80-9542-ec7619ce8ee3","type":"Microsoft.Authorization/roleAssignments","name":"c868cde1-62a8-4b80-9542-ec7619ce8ee3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"b5ed59e8-f00d-4396-af62-8297e36d8b52","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-03T09:04:20.9413623Z","updatedOn":"2019-12-03T09:04:20.9413623Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e6cc759-072e-47b8-b35d-ca5b95266e59","type":"Microsoft.Authorization/roleAssignments","name":"6e6cc759-072e-47b8-b35d-ca5b95266e59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"bd7e15cb-f6ab-4689-8c95-a16eb65d5150","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-22T05:08:15.4020971Z","updatedOn":"2018-08-22T05:08:15.4020971Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b0257fa-35d4-49af-84d8-5ab134225c83","type":"Microsoft.Authorization/roleAssignments","name":"2b0257fa-35d4-49af-84d8-5ab134225c83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c0526f76-a841-4a3a-bdee-59a5db599e34","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:18:19.9314682Z","updatedOn":"2018-12-11T19:18:19.9314682Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9e73a14-4984-4d89-8048-04773fb32344","type":"Microsoft.Authorization/roleAssignments","name":"d9e73a14-4984-4d89-8048-04773fb32344"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c26d5d62-502f-4038-87ba-be7e06fdc48d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-14T23:52:33.4597689Z","updatedOn":"2018-09-14T23:52:33.4597689Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66dda4b3-83ee-475f-abf8-c17018f6b225","type":"Microsoft.Authorization/roleAssignments","name":"66dda4b3-83ee-475f-abf8-c17018f6b225"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"c6ff72c7-bf47-4965-8d74-833ded8973e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-02T00:31:04.8992786Z","updatedOn":"2018-09-02T00:31:04.8992786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed223d03-7f9e-41dc-904e-c99e443fec12","type":"Microsoft.Authorization/roleAssignments","name":"ed223d03-7f9e-41dc-904e-c99e443fec12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cc88e548-5268-49a5-a636-3b679af9d7fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:03:14.2856838Z","updatedOn":"2018-09-24T18:03:14.2856838Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9211dfe4-8a51-460f-8e5c-67a3154b4a16","type":"Microsoft.Authorization/roleAssignments","name":"9211dfe4-8a51-460f-8e5c-67a3154b4a16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"cdc7828e-c6c1-4822-9b0b-ca54f3d92bcd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-03-15T23:45:46.1042773Z","updatedOn":"2018-03-15T23:45:46.1042773Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d194606-3a10-428a-9ce5-876fec5096c8","type":"Microsoft.Authorization/roleAssignments","name":"8d194606-3a10-428a-9ce5-876fec5096c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ce1d5a28-054d-4c0c-bad7-3788a49bf027","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-12T06:05:39.3181497Z","updatedOn":"2018-09-12T06:05:39.3181497Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b53a7f81-21e0-4a02-83e0-c4df9dceaa35","type":"Microsoft.Authorization/roleAssignments","name":"b53a7f81-21e0-4a02-83e0-c4df9dceaa35"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d3fb01c3-9c71-40f3-b2ca-c01c6d7a9baf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T06:17:53.9509659Z","updatedOn":"2018-09-17T06:17:53.9509659Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/461bbf31-8922-4888-9e75-abe0a1e5ee7f","type":"Microsoft.Authorization/roleAssignments","name":"461bbf31-8922-4888-9e75-abe0a1e5ee7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"d56f8fbf-4fea-469c-9961-360947218f36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-29T15:30:43.9337895Z","updatedOn":"2018-08-29T15:30:43.9337895Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18a1d15a-a9ab-4941-9699-c400381ef454","type":"Microsoft.Authorization/roleAssignments","name":"18a1d15a-a9ab-4941-9699-c400381ef454"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"da372d6e-f966-46ee-b548-bfcf63350393","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:05:14.4655087Z","updatedOn":"2018-10-30T05:05:14.4655087Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/320a4b57-3cf4-478d-a8f2-e59c9a599d40","type":"Microsoft.Authorization/roleAssignments","name":"320a4b57-3cf4-478d-a8f2-e59c9a599d40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"db16b0e9-c67e-4105-90c6-810afbce9084","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T16:58:36.9636386Z","updatedOn":"2018-10-04T16:58:36.9636386Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf1a8a06-71a6-437a-88e6-bb5bb689adad","type":"Microsoft.Authorization/roleAssignments","name":"bf1a8a06-71a6-437a-88e6-bb5bb689adad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e060d9c7-8657-4d9f-9e4b-85d0a360c659","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-25T08:36:39.1785990Z","updatedOn":"2018-08-25T08:36:39.1785990Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f19577a-ca06-4a84-8a96-949b82174f32","type":"Microsoft.Authorization/roleAssignments","name":"5f19577a-ca06-4a84-8a96-949b82174f32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e4a14b69-da4e-4a61-b203-3ff37178eb4f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:06:24.7312535Z","updatedOn":"2018-10-16T05:06:24.7312535Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd3afd64-f181-41e9-bd06-8bebb2e2605c","type":"Microsoft.Authorization/roleAssignments","name":"fd3afd64-f181-41e9-bd06-8bebb2e2605c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-10T02:54:02.2514605Z","updatedOn":"2019-11-10T02:54:02.2514605Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de186952-0e06-4557-89b5-31257c33093b","type":"Microsoft.Authorization/roleAssignments","name":"de186952-0e06-4557-89b5-31257c33093b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"e91ebcca-b62e-4bb4-ba0c-9aa32dc5cbfa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T18:09:27.2790772Z","updatedOn":"2018-10-26T18:09:27.2790772Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fd31d35-bb00-4c2f-ac5e-9de69969f983","type":"Microsoft.Authorization/roleAssignments","name":"6fd31d35-bb00-4c2f-ac5e-9de69969f983"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed033ff2-c3db-4334-991a-8d3b716cdca2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T17:26:52.4677561Z","updatedOn":"2018-09-13T17:26:52.4677561Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a83e5dc-031f-4e20-8f30-b72bf7324a5e","type":"Microsoft.Authorization/roleAssignments","name":"5a83e5dc-031f-4e20-8f30-b72bf7324a5e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ed871f1c-f497-4a85-860b-5314fbe98e27","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-14T05:08:34.9142312Z","updatedOn":"2018-08-14T05:08:34.9142312Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92163bb4-4c29-41dc-b75d-345a79ba7e0c","type":"Microsoft.Authorization/roleAssignments","name":"92163bb4-4c29-41dc-b75d-345a79ba7e0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"edf0e9e6-4721-417b-afdd-435ea1468d45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:06:17.6579190Z","updatedOn":"2018-10-11T05:06:17.6579190Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fc19d9e-95a7-4b59-bba7-c443af619749","type":"Microsoft.Authorization/roleAssignments","name":"3fc19d9e-95a7-4b59-bba7-c443af619749"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f0f844e0-d2fe-4aa3-8e2c-2e429618f305","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T03:28:22.7145389Z","updatedOn":"2019-09-24T03:28:22.7145389Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b3fb1c-befa-4dfd-8fbc-9838444af841","type":"Microsoft.Authorization/roleAssignments","name":"16b3fb1c-befa-4dfd-8fbc-9838444af841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f20c3436-e85f-4bf4-8775-9e46198564fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:05:24.1394548Z","updatedOn":"2018-10-23T05:05:24.1394548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a7783e-8fda-4715-8b08-36e399759834","type":"Microsoft.Authorization/roleAssignments","name":"91a7783e-8fda-4715-8b08-36e399759834"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f39b55e5-bd57-467c-bec9-42106f706d81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-08-31T21:42:06.9365791Z","updatedOn":"2018-08-31T21:42:06.9365791Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70a98d83-6caf-419a-b878-21d8ffe7a7eb","type":"Microsoft.Authorization/roleAssignments","name":"70a98d83-6caf-419a-b878-21d8ffe7a7eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f43f0615-bc95-4608-9ce9-34c2078e65a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:05:27.4406656Z","updatedOn":"2018-10-27T05:05:27.4406656Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07022e19-7251-4676-9365-3a5776f6db20","type":"Microsoft.Authorization/roleAssignments","name":"07022e19-7251-4676-9365-3a5776f6db20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T22:40:18.7672464Z","updatedOn":"2019-02-22T22:40:18.7672464Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1c96429-92c5-4d05-8003-e40b49483450","type":"Microsoft.Authorization/roleAssignments","name":"c1c96429-92c5-4d05-8003-e40b49483450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ffbb9ca1-43fc-498d-b8db-ca965f1684ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2017-12-18T23:20:41.1586895Z","updatedOn":"2017-12-18T23:20:41.1586895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e012250-6450-4432-b6dd-9e148ab64455","type":"Microsoft.Authorization/roleAssignments","name":"7e012250-6450-4432-b6dd-9e148ab64455"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/abec5297-d72c-4fbc-acaf-868482d345c2","principalId":"7a938a30-4226-420e-996f-4d48bca6d537","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-06-14T22:25:43.4944951Z","updatedOn":"2018-06-14T22:25:43.4944951Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3662714-8332-43d4-a2cf-836f9367c53d","type":"Microsoft.Authorization/roleAssignments","name":"a3662714-8332-43d4-a2cf-836f9367c53d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"ec2fe215-4683-4df8-a738-83622f70819a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-05-23T20:36:37.8343857Z","updatedOn":"2018-05-23T20:36:37.8343857Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72d7967-c1bc-4510-9b4d-2efc272ad268","type":"Microsoft.Authorization/roleAssignments","name":"e72d7967-c1bc-4510-9b4d-2efc272ad268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00215dd3-8494-4737-8f44-47c950eee2a8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:15:56.7087145Z","updatedOn":"2019-05-14T05:15:56.7087145Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4290ea7b-9cca-414f-9f0d-eeb931cc9e40","type":"Microsoft.Authorization/roleAssignments","name":"4290ea7b-9cca-414f-9f0d-eeb931cc9e40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00b3fb8d-18f2-4cbb-9e33-ba8c247cd4d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T06:59:50.0920118Z","updatedOn":"2019-06-11T06:59:50.0920118Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e577045-4db2-49a7-a1f4-c94cb76d519c","type":"Microsoft.Authorization/roleAssignments","name":"1e577045-4db2-49a7-a1f4-c94cb76d519c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-28T02:17:47.3517737Z","updatedOn":"2019-10-28T02:17:47.3517737Z","createdBy":"596c247a-9db0-4c20-8ddb-d944102067ac","updatedBy":"596c247a-9db0-4c20-8ddb-d944102067ac"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa59db41-bdc7-4934-9105-138c49aa3b25","type":"Microsoft.Authorization/roleAssignments","name":"fa59db41-bdc7-4934-9105-138c49aa3b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"014d30f5-2583-47dd-8b9a-be54a0b61c5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T03:39:35.1972368Z","updatedOn":"2019-03-08T03:39:35.1972368Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/962ad9d2-a9b8-4bd8-aead-8ad0effc0e19","type":"Microsoft.Authorization/roleAssignments","name":"962ad9d2-a9b8-4bd8-aead-8ad0effc0e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"025742e3-96b0-462b-92b8-c6f8a2467315","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:30:48.9213321Z","updatedOn":"2019-11-13T02:30:48.9213321Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e56fee5-34b2-4fda-94f5-4d16d0f316c9","type":"Microsoft.Authorization/roleAssignments","name":"8e56fee5-34b2-4fda-94f5-4d16d0f316c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0444ccf8-fddb-43c4-b42b-ea036211229f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T09:31:46.3880250Z","updatedOn":"2019-09-18T09:31:46.3880250Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e0e4be-da1c-4e63-8872-b2486e10fbaf","type":"Microsoft.Authorization/roleAssignments","name":"e7e0e4be-da1c-4e63-8872-b2486e10fbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"048c9bb6-913e-4ce6-99c5-35198246627b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T08:20:44.1467077Z","updatedOn":"2019-11-13T08:20:44.1467077Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee9a0273-478f-49c1-ab8b-c391f00ab24a","type":"Microsoft.Authorization/roleAssignments","name":"ee9a0273-478f-49c1-ab8b-c391f00ab24a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0519023a-68c7-467d-b06f-0d176fe7bf75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:15:15.6703869Z","updatedOn":"2019-05-03T05:15:15.6703869Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09d2a2b1-20ad-487c-98d0-e8335da536ca","type":"Microsoft.Authorization/roleAssignments","name":"09d2a2b1-20ad-487c-98d0-e8335da536ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0554b26b-97b8-4712-9428-96421f407817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-19T15:36:11.6893582Z","updatedOn":"2018-11-19T15:36:11.6893582Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd54ee13-f8bf-43ad-9ece-aadba49c6b3b","type":"Microsoft.Authorization/roleAssignments","name":"dd54ee13-f8bf-43ad-9ece-aadba49c6b3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05b1f982-1404-4e2d-b2e8-af3ee7a330b4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T02:20:33.6180302Z","updatedOn":"2019-09-16T02:20:33.6180302Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd290ec1-928e-4be9-bf1a-5444db3c31a9","type":"Microsoft.Authorization/roleAssignments","name":"dd290ec1-928e-4be9-bf1a-5444db3c31a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"05ec9ed3-1818-4d82-a393-9d886fe79eaf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:24:35.7005768Z","updatedOn":"2019-06-25T16:24:35.7005768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0438abe-75ec-4450-b99b-792ed9bb8ee0","type":"Microsoft.Authorization/roleAssignments","name":"a0438abe-75ec-4450-b99b-792ed9bb8ee0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"082034cd-624e-4652-99c9-89c02073cb54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T18:09:40.0546999Z","updatedOn":"2018-11-07T18:09:40.0546999Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5d7ff7-5a55-40b7-a547-d12bef073d24","type":"Microsoft.Authorization/roleAssignments","name":"aa5d7ff7-5a55-40b7-a547-d12bef073d24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"083e3bf5-90ee-44f9-a4ed-b43b6618cb68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:15:53.2923661Z","updatedOn":"2019-03-26T06:15:53.2923661Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22","type":"Microsoft.Authorization/roleAssignments","name":"b9b27fcb-66ee-4769-a6d6-d8b6f8f57d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"089feb4f-11a7-4088-a245-5d53edc49e2a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T06:32:24.0038227Z","updatedOn":"2019-04-23T06:32:24.0038227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa131111-4125-4a5e-a8b6-a3165c319ce3","type":"Microsoft.Authorization/roleAssignments","name":"fa131111-4125-4a5e-a8b6-a3165c319ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0922515c-5011-41d9-85b8-468065dfe845","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T20:44:15.0368153Z","updatedOn":"2018-12-04T20:44:15.0368153Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c85da1d-a166-40d2-9118-4fe1c97f1ee6","type":"Microsoft.Authorization/roleAssignments","name":"8c85da1d-a166-40d2-9118-4fe1c97f1ee6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0936f825-b7a8-4d97-a53d-3b84d28a717e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T06:52:59.0134229Z","updatedOn":"2019-01-26T06:52:59.0134229Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e579b98e-87ba-42a4-9381-bca57eea911a","type":"Microsoft.Authorization/roleAssignments","name":"e579b98e-87ba-42a4-9381-bca57eea911a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"09bd05c8-0213-4c42-8943-172a8a17bb29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-28T06:49:07.4810461Z","updatedOn":"2018-12-28T06:49:07.4810461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1eea0837-88da-41fc-984c-b62f9c3c96d5","type":"Microsoft.Authorization/roleAssignments","name":"1eea0837-88da-41fc-984c-b62f9c3c96d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0907d8-b8f5-49dd-879a-ae1ccf72ee66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:48.6805573Z","updatedOn":"2018-10-09T05:36:48.6805573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/596f6422-88be-4a26-8449-cde19fc7139c","type":"Microsoft.Authorization/roleAssignments","name":"596f6422-88be-4a26-8449-cde19fc7139c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0a0e41c1-6cce-4da0-b2ef-6679d4b2adbc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T23:41:56.1488980Z","updatedOn":"2018-09-25T23:41:56.1488980Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/995d178b-fe6d-4023-beec-7d86273d8258","type":"Microsoft.Authorization/roleAssignments","name":"995d178b-fe6d-4023-beec-7d86273d8258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0afa0fbe-4c34-49c6-94dc-2d25dde67804","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:48.4721330Z","updatedOn":"2019-04-16T06:34:48.4721330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cd81e06-c4a3-4186-92de-ce5dd9b02afc","type":"Microsoft.Authorization/roleAssignments","name":"4cd81e06-c4a3-4186-92de-ce5dd9b02afc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b122118-f5f2-4361-9540-75b2d16a6812","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T09:39:39.0217645Z","updatedOn":"2018-10-25T09:39:39.0217645Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6e564e9-62c4-48fa-94d1-f441bee3a600","type":"Microsoft.Authorization/roleAssignments","name":"f6e564e9-62c4-48fa-94d1-f441bee3a600"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b3f6114-fd2a-4b44-a718-e77c93313257","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T14:44:40.1474788Z","updatedOn":"2018-10-25T14:44:40.1474788Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22","type":"Microsoft.Authorization/roleAssignments","name":"78f3778f-3fe1-47ed-9e6f-4c7dea3e3a22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0b9debbf-74a2-4090-9e79-6f814c15c64f","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T23:58:24.6590895Z","updatedOn":"2019-02-13T23:58:24.6590895Z","createdBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28","updatedBy":"378df7ee-31fd-4c54-945e-a1ed4f025a28"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84210bda-8759-422b-b6ea-f95ba2a645cc","type":"Microsoft.Authorization/roleAssignments","name":"84210bda-8759-422b-b6ea-f95ba2a645cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0bc92e19-4e38-4150-80a3-c1e35927bdc1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T22:07:33.4526393Z","updatedOn":"2019-01-15T22:07:33.4526393Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5de283f2-6ed5-4e96-ab11-01da6b1030aa","type":"Microsoft.Authorization/roleAssignments","name":"5de283f2-6ed5-4e96-ab11-01da6b1030aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0befbead-6896-4f0f-ba06-727614a1d97e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T07:10:06.6112474Z","updatedOn":"2019-03-08T07:10:06.6112474Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/553bec8e-319e-4a9a-91d6-434dfebe29bd","type":"Microsoft.Authorization/roleAssignments","name":"553bec8e-319e-4a9a-91d6-434dfebe29bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c1179ed-8b91-4a8f-b33d-30a78d4167b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:12:28.4643523Z","updatedOn":"2019-11-13T02:12:28.4643523Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e812069f-df2d-451a-bdc1-a73986bf8ff1","type":"Microsoft.Authorization/roleAssignments","name":"e812069f-df2d-451a-bdc1-a73986bf8ff1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c4c5914-127b-43c8-9185-be30ce8e97c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T14:47:52.4435973Z","updatedOn":"2018-09-27T14:47:52.4435973Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71a48867-ce43-4ff6-96f4-aac8c877c9f8","type":"Microsoft.Authorization/roleAssignments","name":"71a48867-ce43-4ff6-96f4-aac8c877c9f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c69d6a8-a1dc-4a34-8478-6aa7882a0f72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-15T06:10:54.7835545Z","updatedOn":"2019-03-15T06:10:54.7835545Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41260fbb-df80-43a1-aee0-f17d06596e19","type":"Microsoft.Authorization/roleAssignments","name":"41260fbb-df80-43a1-aee0-f17d06596e19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0c86c04d-4ab1-4af4-bc25-26fc5a73ab13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:42:04.8339359Z","updatedOn":"2018-10-19T15:42:04.8339359Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/111e9485-5c6f-40ee-b51b-b077e04b3f43","type":"Microsoft.Authorization/roleAssignments","name":"111e9485-5c6f-40ee-b51b-b077e04b3f43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0e5f94cd-941e-416f-bf5c-febf94928fdf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-17T20:20:24.5305703Z","updatedOn":"2018-12-17T20:20:24.5305703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9508c28-eb00-4a51-a224-34c36b527578","type":"Microsoft.Authorization/roleAssignments","name":"c9508c28-eb00-4a51-a224-34c36b527578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ea19d04-ed36-495e-b2f6-b514e2b68c33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-24T02:55:23.4287364Z","updatedOn":"2019-09-24T02:55:23.4287364Z","createdBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c","updatedBy":"4a736eb4-0e8c-456d-a498-61fdeb66d94c"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46308c2b-e860-4520-a289-b939b4a6080a","type":"Microsoft.Authorization/roleAssignments","name":"46308c2b-e860-4520-a289-b939b4a6080a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ef728c4-2201-4dad-932d-eefd44bc73b5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T09:49:11.3765450Z","updatedOn":"2018-10-26T09:49:11.3765450Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd","type":"Microsoft.Authorization/roleAssignments","name":"9f2e8d29-ece7-4d5e-979b-e40c9dcb57bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0f35f90d-6817-47cf-be1a-450afde5a251","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:44:57.7197480Z","updatedOn":"2019-06-08T05:44:57.7197480Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3755957-a5fa-4fa3-9866-99fffb77a6c7","type":"Microsoft.Authorization/roleAssignments","name":"a3755957-a5fa-4fa3-9866-99fffb77a6c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0fb0872a-13ac-40dc-92c0-bb65030b9141","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T15:42:18.7189325Z","updatedOn":"2018-11-16T15:42:18.7189325Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1acbce5d-ee4a-4792-9c13-77d2aefa7348","type":"Microsoft.Authorization/roleAssignments","name":"1acbce5d-ee4a-4792-9c13-77d2aefa7348"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"0ff295c0-7d9f-4b57-9465-f2f1521f616c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:22:36.7477043Z","updatedOn":"2018-10-10T22:22:36.7477043Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8877b05-2800-4d27-a180-d530688c1aaa","type":"Microsoft.Authorization/roleAssignments","name":"b8877b05-2800-4d27-a180-d530688c1aaa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"105237f3-66df-4225-b4f9-1731ba11259c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:48:36.7329197Z","updatedOn":"2018-10-03T21:48:36.7329197Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f73f30ed-04d2-4a53-81c9-47e71e5d0043","type":"Microsoft.Authorization/roleAssignments","name":"f73f30ed-04d2-4a53-81c9-47e71e5d0043"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10964e06-b1ac-4854-9a34-8fa11945d7e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-09T05:44:51.8581373Z","updatedOn":"2019-07-09T05:44:51.8581373Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed","type":"Microsoft.Authorization/roleAssignments","name":"84fc1a2d-f1a6-4fc3-8c08-bab8b66f7fed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10b044e7-d033-433b-8b4c-d8e9594f3c64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T21:30:39.3815031Z","updatedOn":"2019-04-30T21:30:39.3815031Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a50c952f-b47b-4f35-8763-b5aec9bd9ddb","type":"Microsoft.Authorization/roleAssignments","name":"a50c952f-b47b-4f35-8763-b5aec9bd9ddb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"10db8d1f-13e4-4187-947d-8a0fc82eff94","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:24:36.7007006Z","updatedOn":"2018-10-10T22:24:36.7007006Z","createdBy":"45cb5653-298c-47a2-b0bf-defd264613b1","updatedBy":"45cb5653-298c-47a2-b0bf-defd264613b1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc","type":"Microsoft.Authorization/roleAssignments","name":"a8d4ae55-52c2-4f14-beaf-3f2ab1b21ffc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11952da9-440f-4270-9c72-9d5574be74a5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-19T06:51:54.9706907Z","updatedOn":"2019-01-19T06:51:54.9706907Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72048bb-0fa1-4058-bc2c-284a58e49ced","type":"Microsoft.Authorization/roleAssignments","name":"e72048bb-0fa1-4058-bc2c-284a58e49ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"11c04de5-9b6f-4dc1-b382-77bac04d39c8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T06:47:36.2010728Z","updatedOn":"2019-05-29T06:47:36.2010728Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5274cb84-e8c2-4347-9f09-634cd5fb3744","type":"Microsoft.Authorization/roleAssignments","name":"5274cb84-e8c2-4347-9f09-634cd5fb3744"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12365830-cd40-4ae5-af8b-6309b4913a79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-15T07:05:30.8525898Z","updatedOn":"2019-02-15T07:05:30.8525898Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58db4ac3-cdfc-4491-9c08-46c8ee760700","type":"Microsoft.Authorization/roleAssignments","name":"58db4ac3-cdfc-4491-9c08-46c8ee760700"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"12fdbdff-fee2-48de-a24d-b61e714438fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T06:51:04.6126539Z","updatedOn":"2018-11-21T06:51:04.6126539Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/202127bd-4575-41ac-b631-cda1cad5957d","type":"Microsoft.Authorization/roleAssignments","name":"202127bd-4575-41ac-b631-cda1cad5957d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"132b2863-4901-46dd-b050-23adf8a91212","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:20:59.4891986Z","updatedOn":"2019-06-28T05:20:59.4891986Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d78d8a0-b367-4b89-a0c9-f00dd91e04c1","type":"Microsoft.Authorization/roleAssignments","name":"9d78d8a0-b367-4b89-a0c9-f00dd91e04c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13733798-367b-41b4-ab70-c009ff810e61","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T06:56:16.0921597Z","updatedOn":"2019-01-31T06:56:16.0921597Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/87a1251f-b871-47ac-8903-992d3d12ab6d","type":"Microsoft.Authorization/roleAssignments","name":"87a1251f-b871-47ac-8903-992d3d12ab6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"13dfd152-b3ee-45c7-ac21-a6d4bd9b1efe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-02T12:08:16.4864386Z","updatedOn":"2019-09-02T12:08:16.4864386Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4eacac3-0b1e-4a00-a813-57c1949d9339","type":"Microsoft.Authorization/roleAssignments","name":"d4eacac3-0b1e-4a00-a813-57c1949d9339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1406c023-f820-4b11-929d-240f81640bba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:35:49.8406728Z","updatedOn":"2019-02-22T07:35:49.8406728Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/850d6247-205a-4d7a-b88e-686aeb9e3419","type":"Microsoft.Authorization/roleAssignments","name":"850d6247-205a-4d7a-b88e-686aeb9e3419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1429ff6d-6811-4368-80b2-3d05bacfee79","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T20:40:54.4009379Z","updatedOn":"2018-10-01T20:40:54.4009379Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cef91439-7637-4db6-b7b5-4d9dcda73ef7","type":"Microsoft.Authorization/roleAssignments","name":"cef91439-7637-4db6-b7b5-4d9dcda73ef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1496f758-36e1-4306-8f42-07d6f7fea1b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T06:51:44.8128708Z","updatedOn":"2018-11-23T06:51:44.8128708Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e9cddb-50c4-4663-9270-4b51557c66cb","type":"Microsoft.Authorization/roleAssignments","name":"a7e9cddb-50c4-4663-9270-4b51557c66cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"14e01ed5-dbac-4c5e-9136-8f26201570fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T15:44:08.6308346Z","updatedOn":"2018-11-08T15:44:08.6308346Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bd09a95-0f01-4e0d-979b-19a21c975a64","type":"Microsoft.Authorization/roleAssignments","name":"9bd09a95-0f01-4e0d-979b-19a21c975a64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"15e130d0-e547-439f-9ef4-700c15a51573","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:37:00.4858523Z","updatedOn":"2019-05-08T05:37:00.4858523Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ba1d251-96e3-4260-9941-9706f5bb9209","type":"Microsoft.Authorization/roleAssignments","name":"3ba1d251-96e3-4260-9941-9706f5bb9209"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"161342b0-aaa8-4694-924a-7ce80d2edb0d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:39:21.7984582Z","updatedOn":"2018-10-30T05:39:21.7984582Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67438a31-fcf6-441b-a316-4b059172e915","type":"Microsoft.Authorization/roleAssignments","name":"67438a31-fcf6-441b-a316-4b059172e915"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"16253a8a-cc24-475a-a5cf-e58491ffd350","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-30T10:22:53.8662664Z","updatedOn":"2019-10-30T10:22:53.8662664Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d7cca1c-37d2-492a-92ed-c9ae8323e2e2","type":"Microsoft.Authorization/roleAssignments","name":"0d7cca1c-37d2-492a-92ed-c9ae8323e2e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1676df9a-840e-41ae-bc0b-38d2a8028d7f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T06:55:15.7039662Z","updatedOn":"2019-02-02T06:55:15.7039662Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9d8f79-e7c9-4fe3-a114-a018a1fc3981","type":"Microsoft.Authorization/roleAssignments","name":"8d9d8f79-e7c9-4fe3-a114-a018a1fc3981"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a05e539-d61f-41be-859f-cfc5a604dd73","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-24T06:47:05.5194949Z","updatedOn":"2018-11-24T06:47:05.5194949Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2703a80d-0221-439f-b05e-01452ebd9982","type":"Microsoft.Authorization/roleAssignments","name":"2703a80d-0221-439f-b05e-01452ebd9982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1a45b438-0323-4014-8929-8a4354cd86a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T00:13:54.9085305Z","updatedOn":"2018-09-20T00:13:54.9085305Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2efee97-c97c-4ed9-8f19-c2abf9bcc43e","type":"Microsoft.Authorization/roleAssignments","name":"e2efee97-c97c-4ed9-8f19-c2abf9bcc43e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1b5b3fa8-044d-475b-b238-ff5d2e19d77d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:59.4405634Z","updatedOn":"2018-10-09T05:36:59.4405634Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa37954d-99ea-435f-8d0e-561e9219beb6","type":"Microsoft.Authorization/roleAssignments","name":"aa37954d-99ea-435f-8d0e-561e9219beb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bc3132e-956b-4c49-adb5-54a388d07f98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T22:14:51.1000243Z","updatedOn":"2018-11-07T22:14:51.1000243Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3cab2d-8962-4a13-b473-fb50f33e47e7","type":"Microsoft.Authorization/roleAssignments","name":"2f3cab2d-8962-4a13-b473-fb50f33e47e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1bce50d7-8e1e-41e3-97c9-5f0b5894be30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T09:46:00.8241958Z","updatedOn":"2018-11-02T09:46:00.8241958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70d95d36-d655-4e5d-b7c0-bd415764adbe","type":"Microsoft.Authorization/roleAssignments","name":"70d95d36-d655-4e5d-b7c0-bd415764adbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1c8ad9bd-21f3-4db6-b5e8-5fc1cb245796","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T06:50:15.2358847Z","updatedOn":"2019-01-17T06:50:15.2358847Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3edb2abd-0bf8-49bb-9a01-47175035134e","type":"Microsoft.Authorization/roleAssignments","name":"3edb2abd-0bf8-49bb-9a01-47175035134e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1df69032-e361-4aec-9a6a-b11a1b520a0a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T06:47:43.5953324Z","updatedOn":"2019-05-30T06:47:43.5953324Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e40d233-f94a-4647-896e-1173156f8370","type":"Microsoft.Authorization/roleAssignments","name":"8e40d233-f94a-4647-896e-1173156f8370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f0529f4-caec-4e5e-9929-9accf07bc0a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T10:50:33.5684193Z","updatedOn":"2019-02-01T10:50:33.5684193Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e186033-3989-485f-83f3-5643307712d3","type":"Microsoft.Authorization/roleAssignments","name":"4e186033-3989-485f-83f3-5643307712d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f58bd4e-34b0-4b3f-8c6d-5a74d861b553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-27T07:09:51.7579083Z","updatedOn":"2019-09-27T07:09:51.7579083Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f349b785-162e-44b0-9bcc-6f32f4657471","type":"Microsoft.Authorization/roleAssignments","name":"f349b785-162e-44b0-9bcc-6f32f4657471"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1f9960dc-ed2d-41c8-bc4c-753fb935c5bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:19:46.7691877Z","updatedOn":"2019-04-14T03:19:46.7691877Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e380dbd1-135b-4e5d-b8fd-1067fc314a53","type":"Microsoft.Authorization/roleAssignments","name":"e380dbd1-135b-4e5d-b8fd-1067fc314a53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fa11459-9edc-4b12-95b7-4af1db729fea","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T14:44:54.8928622Z","updatedOn":"2018-11-01T14:44:54.8928622Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea2feead-bf18-4cd0-9fb3-baa3e89c9147","type":"Microsoft.Authorization/roleAssignments","name":"ea2feead-bf18-4cd0-9fb3-baa3e89c9147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"1fe73bbc-d3e6-4149-a45b-71a7c64455d3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T09:45:15.4346754Z","updatedOn":"2018-11-01T09:45:15.4346754Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe17d25c-de8b-413b-940a-9b0eabe9fd7a","type":"Microsoft.Authorization/roleAssignments","name":"fe17d25c-de8b-413b-940a-9b0eabe9fd7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20a81344-97e8-4380-9232-ff5e2e2357dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:47.7973245Z","updatedOn":"2019-03-27T06:15:47.7973245Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee311f1d-948d-48c8-945a-daaa6c9c2bb6","type":"Microsoft.Authorization/roleAssignments","name":"ee311f1d-948d-48c8-945a-daaa6c9c2bb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"20c3d19c-869b-4df3-a560-27bb3ec27259","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T06:51:17.1809226Z","updatedOn":"2019-06-18T06:51:17.1809226Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ebc369-e5bc-4696-a291-45b0d3c655db","type":"Microsoft.Authorization/roleAssignments","name":"c0ebc369-e5bc-4696-a291-45b0d3c655db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"22a5ad3e-50c9-4c1b-84d1-68f16b8a8c36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-12T14:39:28.4585810Z","updatedOn":"2019-12-12T14:39:28.4585810Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/848736cd-2286-4401-b6da-89722c1c7966","type":"Microsoft.Authorization/roleAssignments","name":"848736cd-2286-4401-b6da-89722c1c7966"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"22bb981f-2225-42a6-a92c-1513b98d1059","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:34:47.1182652Z","updatedOn":"2019-04-18T05:34:47.1182652Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/949f32b9-9a90-44da-9893-a626cbf255fe","type":"Microsoft.Authorization/roleAssignments","name":"949f32b9-9a90-44da-9893-a626cbf255fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2424df05-e09e-4b50-a144-34a5a7356356","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:15:24.8105554Z","updatedOn":"2019-04-26T05:15:24.8105554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96e1c119-4f12-4238-9f77-95a10ddf49ab","type":"Microsoft.Authorization/roleAssignments","name":"96e1c119-4f12-4238-9f77-95a10ddf49ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"24a338ef-1eaa-4858-9278-8d2be94c4c7d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-18T05:21:53.2981276Z","updatedOn":"2019-11-18T05:21:53.2981276Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56c2b411-3b15-4e81-97a3-2b5ef3417576","type":"Microsoft.Authorization/roleAssignments","name":"56c2b411-3b15-4e81-97a3-2b5ef3417576"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"24f54edc-4e4f-4a9a-bd65-6e946262fcc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T14:44:06.2164283Z","updatedOn":"2018-10-11T14:44:06.2164283Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/accd1466-cc34-4a91-8129-5504a5c66394","type":"Microsoft.Authorization/roleAssignments","name":"accd1466-cc34-4a91-8129-5504a5c66394"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25ac2b10-acd3-40aa-a872-88f1e9c4013b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T06:51:47.7700347Z","updatedOn":"2019-05-23T06:51:47.7700347Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc","type":"Microsoft.Authorization/roleAssignments","name":"0b346a53-75d8-4f29-a9ef-d0e7b8eb1ccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"25c0b9c6-6039-435e-92a1-96f41e1d3b90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-12T14:54:16.0607354Z","updatedOn":"2019-03-12T14:54:16.0607354Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47a17234-3ed6-4788-b98b-ad99b024ad95","type":"Microsoft.Authorization/roleAssignments","name":"47a17234-3ed6-4788-b98b-ad99b024ad95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2652f837-f3c8-4378-b3e0-1407a1791c82","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T03:52:13.2726368Z","updatedOn":"2019-04-16T03:52:13.2726368Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ece4429e-5ad9-448b-89a6-55a6cb913269","type":"Microsoft.Authorization/roleAssignments","name":"ece4429e-5ad9-448b-89a6-55a6cb913269"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"266f54be-0172-4b9c-ac7d-379382f47c68","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T06:38:37.1824443Z","updatedOn":"2019-04-25T06:38:37.1824443Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ebbed54-2afd-4492-8113-79a5980bf1b7","type":"Microsoft.Authorization/roleAssignments","name":"8ebbed54-2afd-4492-8113-79a5980bf1b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2770540c-e142-49e7-927b-0a183c15b6da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:19:41.8631372Z","updatedOn":"2019-06-15T05:19:41.8631372Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/144279f9-5b67-48fb-a41a-a32f8f8f5db3","type":"Microsoft.Authorization/roleAssignments","name":"144279f9-5b67-48fb-a41a-a32f8f8f5db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"277f496f-1909-47b3-92ac-ec0fa7fb0177","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T06:44:59.1181039Z","updatedOn":"2019-05-28T06:44:59.1181039Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e29e35de-78d0-463d-83fd-5e0cf612ae81","type":"Microsoft.Authorization/roleAssignments","name":"e29e35de-78d0-463d-83fd-5e0cf612ae81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"27918e9c-70d2-41c6-bea4-d45e31bd2355","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:13:46.5798573Z","updatedOn":"2019-05-01T05:13:46.5798573Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7c5d200-df84-4d35-a2f8-ccaf2a94a901","type":"Microsoft.Authorization/roleAssignments","name":"f7c5d200-df84-4d35-a2f8-ccaf2a94a901"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"287b9939-6a03-4276-966e-67035119e274","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-24T02:35:38.9762249Z","updatedOn":"2019-01-24T02:35:38.9762249Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83a13d3-1cfa-42b7-8f89-ae22d697ff0c","type":"Microsoft.Authorization/roleAssignments","name":"f83a13d3-1cfa-42b7-8f89-ae22d697ff0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"28bd66fd-85b2-4749-b439-006c9af1eff0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:05:15.2613209Z","updatedOn":"2018-10-09T05:05:15.2613209Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f398525-2cf3-41a3-a231-21f536d8d5ec","type":"Microsoft.Authorization/roleAssignments","name":"5f398525-2cf3-41a3-a231-21f536d8d5ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"291b97eb-bdeb-4766-9cc0-9dbd56c450e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T07:14:13.3960092Z","updatedOn":"2019-02-23T07:14:13.3960092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1fc00bb-0243-4a81-a4a5-e099865ac6c8","type":"Microsoft.Authorization/roleAssignments","name":"a1fc00bb-0243-4a81-a4a5-e099865ac6c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"296501a5-a8b4-48c6-a06a-b6fde003a842","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:25:37.5138128Z","updatedOn":"2018-10-10T00:25:37.5138128Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3","type":"Microsoft.Authorization/roleAssignments","name":"2d25e1b7-bf42-4b03-a7e2-721a84fa3eb3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2985330b-5538-47fe-867d-ef5c1b595ab5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:25:06.6333933Z","updatedOn":"2018-09-20T17:25:06.6333933Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/316cac7f-8452-41cc-b0e9-45b2c93f773d","type":"Microsoft.Authorization/roleAssignments","name":"316cac7f-8452-41cc-b0e9-45b2c93f773d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"29bd6401-5338-48bb-b82e-e9558cf486a2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:53.1283425Z","updatedOn":"2018-09-18T23:57:53.1283425Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe329617-f460-452b-beb6-3ec18aa08cd2","type":"Microsoft.Authorization/roleAssignments","name":"fe329617-f460-452b-beb6-3ec18aa08cd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2af0eee9-ba06-49d3-97da-6bd84f58c56b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T07:10:43.0213604Z","updatedOn":"2019-03-02T07:10:43.0213604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d40084c9-04e2-4966-9c08-3610f52ccc93","type":"Microsoft.Authorization/roleAssignments","name":"d40084c9-04e2-4966-9c08-3610f52ccc93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2c9a405a-6caf-4f3a-84f4-45dc7278ab53","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T05:12:22.6640626Z","updatedOn":"2019-04-17T05:12:22.6640626Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ccd833f-6576-4f24-8eb3-e36f2beacce2","type":"Microsoft.Authorization/roleAssignments","name":"6ccd833f-6576-4f24-8eb3-e36f2beacce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2cc30feb-0381-495e-a3e2-616ec5a1338d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:05.0223475Z","updatedOn":"2019-01-29T06:54:05.0223475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/243af6a8-ded0-4272-8bc0-8b4cc4e4e316","type":"Microsoft.Authorization/roleAssignments","name":"243af6a8-ded0-4272-8bc0-8b4cc4e4e316"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2ce42326-7862-4ee8-9db9-ce61f53d0509","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T05:39:38.6430404Z","updatedOn":"2019-05-03T05:39:38.6430404Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23df7e2b-55d2-41c7-8cce-a96c52e0d727","type":"Microsoft.Authorization/roleAssignments","name":"23df7e2b-55d2-41c7-8cce-a96c52e0d727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2dfd7675-8cec-449b-9cf5-8fb60462dcd7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T05:48:13.8023619Z","updatedOn":"2018-11-02T05:48:13.8023619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19730b6-b7db-43b1-acd6-25cd8bddde5a","type":"Microsoft.Authorization/roleAssignments","name":"b19730b6-b7db-43b1-acd6-25cd8bddde5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2e9d1611-5835-4eb2-843c-9957f451add4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T06:54:04.4629279Z","updatedOn":"2019-06-13T06:54:04.4629279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfbffec9-f53c-4234-9d90-4bde2bbd6375","type":"Microsoft.Authorization/roleAssignments","name":"cfbffec9-f53c-4234-9d90-4bde2bbd6375"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2f1fe7a4-cdda-4979-97ee-e1dc465c7487","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:32:12.4728749Z","updatedOn":"2018-10-10T00:32:12.4728749Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc7696b7-44c3-4a32-baa8-d22bf85e925f","type":"Microsoft.Authorization/roleAssignments","name":"bc7696b7-44c3-4a32-baa8-d22bf85e925f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"2fdb0e9e-cf35-46d1-a84d-5872a774aeaa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-04T05:42:27.0197067Z","updatedOn":"2019-07-04T05:42:27.0197067Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf219e4-1fd6-414c-8d02-c632cd7e1dd6","type":"Microsoft.Authorization/roleAssignments","name":"fbf219e4-1fd6-414c-8d02-c632cd7e1dd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"302f2c06-6203-4115-9781-0dfb57c3ab33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-03T05:50:02.4338421Z","updatedOn":"2019-07-03T05:50:02.4338421Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0bdf9b6-1518-4a4e-a8d8-ae18995872a9","type":"Microsoft.Authorization/roleAssignments","name":"b0bdf9b6-1518-4a4e-a8d8-ae18995872a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"30672894-e0ff-4e17-9bb5-f990b00b2a75","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T20:08:39.3899074Z","updatedOn":"2018-10-11T20:08:39.3899074Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96c44173-1847-41b5-8d19-72206147559e","type":"Microsoft.Authorization/roleAssignments","name":"96c44173-1847-41b5-8d19-72206147559e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3108a44b-0b99-4b88-8863-89d551752b86","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T20:12:47.4692498Z","updatedOn":"2018-11-22T20:12:47.4692498Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/464e210b-cb81-40bb-b304-d467ef32fc63","type":"Microsoft.Authorization/roleAssignments","name":"464e210b-cb81-40bb-b304-d467ef32fc63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31a2474d-ecb4-4369-ada4-1976f49b71b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-16T05:43:06.1659793Z","updatedOn":"2019-07-16T05:43:06.1659793Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/813a81bc-cc15-4c04-873c-e8ce3fc0e86a","type":"Microsoft.Authorization/roleAssignments","name":"813a81bc-cc15-4c04-873c-e8ce3fc0e86a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c083be-605f-4b0f-82c1-5502cfe98b54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:19.4550939Z","updatedOn":"2019-03-22T06:12:19.4550939Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24edaa89-724b-4ad5-9321-b4627ce18f4c","type":"Microsoft.Authorization/roleAssignments","name":"24edaa89-724b-4ad5-9321-b4627ce18f4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31c89bb6-f072-4dba-aa7b-9204f8a0e57e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T15:34:05.0200789Z","updatedOn":"2018-12-07T15:34:05.0200789Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/154d396f-73a2-458e-b6ac-790d4c8dd160","type":"Microsoft.Authorization/roleAssignments","name":"154d396f-73a2-458e-b6ac-790d4c8dd160"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"31fd3974-2d10-4926-b1e9-046b585409bb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T07:12:01.9875232Z","updatedOn":"2019-03-06T07:12:01.9875232Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0472cec-2839-4cd3-8521-a41fb32c2b88","type":"Microsoft.Authorization/roleAssignments","name":"c0472cec-2839-4cd3-8521-a41fb32c2b88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3333a437-ad58-44f8-a9bd-3dc2b18380cd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-17T08:10:42.2660200Z","updatedOn":"2019-12-17T08:10:42.2660200Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbaabef5-1fae-4b7f-9739-07bed3811f6a","type":"Microsoft.Authorization/roleAssignments","name":"bbaabef5-1fae-4b7f-9739-07bed3811f6a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"338ba9d8-70ea-4d16-8817-c52bcb4195d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T06:42:13.5810238Z","updatedOn":"2019-05-15T06:42:13.5810238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fec1dffa-57a7-48d6-8265-6472486b70f9","type":"Microsoft.Authorization/roleAssignments","name":"fec1dffa-57a7-48d6-8265-6472486b70f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"33962949-fffb-44d6-98a8-d79b2cb70a15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T21:24:04.0700040Z","updatedOn":"2018-12-08T21:24:04.0700040Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd880d6c-3630-49dc-97f7-13930c8b98bb","type":"Microsoft.Authorization/roleAssignments","name":"cd880d6c-3630-49dc-97f7-13930c8b98bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"344b32fc-71cb-476e-9372-44e6da88be09","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:53:02.5831868Z","updatedOn":"2018-10-23T16:53:02.5831868Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d006fc62-cd5c-46ed-889e-517ce18950b6","type":"Microsoft.Authorization/roleAssignments","name":"d006fc62-cd5c-46ed-889e-517ce18950b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34d734a3-5d21-4858-9cf0-5f29418313ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T18:20:53.4971054Z","updatedOn":"2018-11-12T18:20:53.4971054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bd23f3b-eaad-43d6-a63a-210d75c07f36","type":"Microsoft.Authorization/roleAssignments","name":"0bd23f3b-eaad-43d6-a63a-210d75c07f36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"34f592d2-e01e-47fd-b101-4f7f6df4d133","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T05:12:43.2633496Z","updatedOn":"2019-04-18T05:12:43.2633496Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3005cf87-d322-4c04-be7f-43f5e118e06a","type":"Microsoft.Authorization/roleAssignments","name":"3005cf87-d322-4c04-be7f-43f5e118e06a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"355ed94a-dda4-4736-b235-dc475c58ce72","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T06:35:31.9062201Z","updatedOn":"2019-05-02T06:35:31.9062201Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b26fa985-092c-4189-9f8a-a94aaa13b726","type":"Microsoft.Authorization/roleAssignments","name":"b26fa985-092c-4189-9f8a-a94aaa13b726"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35cd7d38-80db-4616-ae5d-951a521ab05d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T17:39:58.9546435Z","updatedOn":"2018-10-04T17:39:58.9546435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a97d3db-f15e-43f2-91de-aea95f5b6f81","type":"Microsoft.Authorization/roleAssignments","name":"2a97d3db-f15e-43f2-91de-aea95f5b6f81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35ce1576-d892-4dee-9d8e-fc7686599ebb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:02:18.4864213Z","updatedOn":"2018-10-02T17:02:18.4864213Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1979c483-6ecb-4e16-87e0-4dedf1cdaf03","type":"Microsoft.Authorization/roleAssignments","name":"1979c483-6ecb-4e16-87e0-4dedf1cdaf03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"35fc6ba9-80cf-48e2-874a-12a118ab91cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T07:05:40.9081153Z","updatedOn":"2019-03-01T07:05:40.9081153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f45ef5-db08-4120-9fc2-2663f34b2ce9","type":"Microsoft.Authorization/roleAssignments","name":"24f45ef5-db08-4120-9fc2-2663f34b2ce9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3634b51a-c74e-4a68-9e41-bfc2fe2160b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T18:34:53.7786399Z","updatedOn":"2019-04-15T18:34:53.7786399Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1f7f5d2-ed1b-4322-8058-be4ebfc11a42","type":"Microsoft.Authorization/roleAssignments","name":"a1f7f5d2-ed1b-4322-8058-be4ebfc11a42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"367664c8-b9a3-490e-9745-6c54b68388c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:17:16.5111674Z","updatedOn":"2019-05-23T05:17:16.5111674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcea031-4e08-4047-9655-eb42e0528690","type":"Microsoft.Authorization/roleAssignments","name":"8bcea031-4e08-4047-9655-eb42e0528690"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"374ac999-5f34-4404-bf61-041fb33500b2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T06:49:11.5399368Z","updatedOn":"2019-01-04T06:49:11.5399368Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/20daba39-a380-42a9-8e18-c8af08ebeb98","type":"Microsoft.Authorization/roleAssignments","name":"20daba39-a380-42a9-8e18-c8af08ebeb98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"37aa63b3-0814-4c36-9641-d9c3120b1f1b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T18:58:20.9990189Z","updatedOn":"2019-01-08T18:58:20.9990189Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54925852-e514-4e06-9023-14b82e9060e7","type":"Microsoft.Authorization/roleAssignments","name":"54925852-e514-4e06-9023-14b82e9060e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"383cd9d9-b653-45c7-b664-8cab304bcf19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T06:48:47.0085566Z","updatedOn":"2019-06-04T06:48:47.0085566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5453f43-59b0-4d6e-bf33-16f3535418d8","type":"Microsoft.Authorization/roleAssignments","name":"b5453f43-59b0-4d6e-bf33-16f3535418d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"384e2def-4c41-448a-8c94-7347548db1eb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:48:12.8727674Z","updatedOn":"2019-06-14T05:48:12.8727674Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/264fcc95-9b6f-4a6a-81d7-10c0453f1268","type":"Microsoft.Authorization/roleAssignments","name":"264fcc95-9b6f-4a6a-81d7-10c0453f1268"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3948fa02-af62-47bf-b039-4acc6e1475ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:37:15.1035155Z","updatedOn":"2019-05-04T05:37:15.1035155Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b734984-c922-440f-a5b1-db59b7878918","type":"Microsoft.Authorization/roleAssignments","name":"6b734984-c922-440f-a5b1-db59b7878918"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"39e6bb0d-be2a-4538-9e72-abdc081216b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-18T06:32:15.5933238Z","updatedOn":"2019-04-18T06:32:15.5933238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf873e07-b909-4dd9-9e0c-18e64c8edd84","type":"Microsoft.Authorization/roleAssignments","name":"cf873e07-b909-4dd9-9e0c-18e64c8edd84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3a7e90aa-0adf-4bc6-9896-bba2c9a92768","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:17:06.8887559Z","updatedOn":"2019-11-13T02:17:06.8887559Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ced98d2-95b9-4034-a179-42f859768199","type":"Microsoft.Authorization/roleAssignments","name":"4ced98d2-95b9-4034-a179-42f859768199"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2bafee-ff4e-4b8b-a6cf-9691ecb3ea62","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-07T07:08:48.4217749Z","updatedOn":"2019-02-07T07:08:48.4217749Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3a19c27-5757-473e-b2b0-8db57e6b0e11","type":"Microsoft.Authorization/roleAssignments","name":"b3a19c27-5757-473e-b2b0-8db57e6b0e11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b2f0a23-c535-4f56-989f-8d9e58b859c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T06:16:10.7403775Z","updatedOn":"2019-03-26T06:16:10.7403775Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/695c75ea-8543-4201-9232-89d155c26b4c","type":"Microsoft.Authorization/roleAssignments","name":"695c75ea-8543-4201-9232-89d155c26b4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3b5999d5-a1b5-450c-891c-489323d60c11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-10T05:45:54.9016146Z","updatedOn":"2019-07-10T05:45:54.9016146Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32ce51be-fa71-43ac-97f0-2ffceeb30f55","type":"Microsoft.Authorization/roleAssignments","name":"32ce51be-fa71-43ac-97f0-2ffceeb30f55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1a3e8e-e818-4f05-82de-682364ed92c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:57.8773096Z","updatedOn":"2019-04-05T06:36:57.8773096Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42dd6f44-4f5e-4766-b849-051039f765e0","type":"Microsoft.Authorization/roleAssignments","name":"42dd6f44-4f5e-4766-b849-051039f765e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c1cfbb4-75da-4348-840f-5e5de85fc6f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T19:38:20.4035114Z","updatedOn":"2019-01-08T19:38:20.4035114Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff70724f-a33b-48f9-9312-5e04f56d9b43","type":"Microsoft.Authorization/roleAssignments","name":"ff70724f-a33b-48f9-9312-5e04f56d9b43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3c83c51b-6dc3-4a52-b9ed-8d48ae2b1574","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T10:22:35.5153932Z","updatedOn":"2018-10-24T10:22:35.5153932Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e35d96ce-56b4-4030-8685-142f0c964419","type":"Microsoft.Authorization/roleAssignments","name":"e35d96ce-56b4-4030-8685-142f0c964419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3cc35563-ac01-4d1b-ab0d-0bc17560532c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:05:30.3277955Z","updatedOn":"2019-04-14T03:05:30.3277955Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f87c098-7837-4311-bebe-401fe51a184f","type":"Microsoft.Authorization/roleAssignments","name":"3f87c098-7837-4311-bebe-401fe51a184f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3d02ec0c-ae17-4bdf-a8db-b0b19c0e03e9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-11T14:43:04.1109719Z","updatedOn":"2019-03-11T14:43:04.1109719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb6cbad-7f4e-4d74-9027-91dc795244ae","type":"Microsoft.Authorization/roleAssignments","name":"9eb6cbad-7f4e-4d74-9027-91dc795244ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3daf8c04-9a2d-413c-a214-3e68b9543da7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-08T02:27:32.1442243Z","updatedOn":"2019-10-08T02:27:32.1442243Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aec41005-d32b-495a-8cb8-638432712cc3","type":"Microsoft.Authorization/roleAssignments","name":"aec41005-d32b-495a-8cb8-638432712cc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3dd8d42d-ed70-47cf-84da-821d1a939c83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T06:33:10.1124799Z","updatedOn":"2019-05-01T06:33:10.1124799Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07acfe61-f00b-47d8-baab-eedce96906f4","type":"Microsoft.Authorization/roleAssignments","name":"07acfe61-f00b-47d8-baab-eedce96906f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e3faccf-8d37-4b6f-88ee-af65c6231ea8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:36:08.1019453Z","updatedOn":"2019-05-02T05:36:08.1019453Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86fb46ae-5482-4ee2-bab9-0915b584594d","type":"Microsoft.Authorization/roleAssignments","name":"86fb46ae-5482-4ee2-bab9-0915b584594d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3e8864ee-4bca-489b-bc88-de613bb99a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:47:09.6910104Z","updatedOn":"2018-09-26T19:47:09.6910104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/896bc3e9-96ce-4710-a27d-80d0ebca43a5","type":"Microsoft.Authorization/roleAssignments","name":"896bc3e9-96ce-4710-a27d-80d0ebca43a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f073272-9332-48fc-b068-50c5fdce1f8f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-13T05:44:37.3086687Z","updatedOn":"2019-07-13T05:44:37.3086687Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4825f547-8689-41aa-b9ae-02ab8a272df7","type":"Microsoft.Authorization/roleAssignments","name":"4825f547-8689-41aa-b9ae-02ab8a272df7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3f615c1e-f896-4fd9-9cc7-d5681606a42c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:11:37.6304700Z","updatedOn":"2019-04-14T03:11:37.6304700Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2","type":"Microsoft.Authorization/roleAssignments","name":"bc3915de-b1a8-4dd0-af4d-3e6e027eb8c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"3fff76c9-4537-43e9-9fa7-d6d58cb084e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:23.1321548Z","updatedOn":"2019-04-13T06:36:23.1321548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442992e2-de64-4aab-96dc-459680fd2222","type":"Microsoft.Authorization/roleAssignments","name":"442992e2-de64-4aab-96dc-459680fd2222"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4027db79-e003-4678-a7ee-1ae5e2b5eba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T06:49:01.7491823Z","updatedOn":"2019-01-09T06:49:01.7491823Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a36486c-9b6e-4149-a7a7-4d58d63626a9","type":"Microsoft.Authorization/roleAssignments","name":"1a36486c-9b6e-4149-a7a7-4d58d63626a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40a89fa8-85ce-479b-a6db-26eb17d19701","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-01T06:52:07.4698060Z","updatedOn":"2019-02-01T06:52:07.4698060Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fddc9248-2712-4624-8048-37c66ce08589","type":"Microsoft.Authorization/roleAssignments","name":"fddc9248-2712-4624-8048-37c66ce08589"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"40b86c5e-9309-4905-ae7d-d78e9d11a364","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-25T22:59:10.0099024Z","updatedOn":"2018-09-25T22:59:10.0099024Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50333f8a-1bf4-4681-b541-fb21930b296e","type":"Microsoft.Authorization/roleAssignments","name":"50333f8a-1bf4-4681-b541-fb21930b296e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41438247-dd5d-4324-a76b-ccf944ac56d7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T06:36:41.8766621Z","updatedOn":"2019-04-13T06:36:41.8766621Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a256a5b-7de7-4dae-98ba-8846e4da6173","type":"Microsoft.Authorization/roleAssignments","name":"9a256a5b-7de7-4dae-98ba-8846e4da6173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"417738c9-0901-4c95-81fd-626e4d29c9f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-17T16:49:16.9620977Z","updatedOn":"2019-01-17T16:49:16.9620977Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da194327-d7ec-4e5d-baa3-bf5584c16304","type":"Microsoft.Authorization/roleAssignments","name":"da194327-d7ec-4e5d-baa3-bf5584c16304"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"41928376-c102-419b-b028-b5396ffbfc3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T01:13:44.7610853Z","updatedOn":"2018-11-09T01:13:44.7610853Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dd98515-7927-4a0d-adee-96c8f07807d5","type":"Microsoft.Authorization/roleAssignments","name":"6dd98515-7927-4a0d-adee-96c8f07807d5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42155c87-6909-4dda-86a7-fb4f75789b83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T10:59:12.8478371Z","updatedOn":"2018-09-28T10:59:12.8478371Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3222cb2a-916f-45ea-8281-8b16eba9bbaf","type":"Microsoft.Authorization/roleAssignments","name":"3222cb2a-916f-45ea-8281-8b16eba9bbaf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"42f419bc-1783-482b-9faf-e1dc6f71cfe7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T06:54:35.5634168Z","updatedOn":"2019-01-25T06:54:35.5634168Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e93e2b8-cc6f-49db-b66b-7b628ab5466d","type":"Microsoft.Authorization/roleAssignments","name":"3e93e2b8-cc6f-49db-b66b-7b628ab5466d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43193797-910c-4f41-8250-52c9526a19b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:33.7167095Z","updatedOn":"2019-03-21T06:07:33.7167095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd8b57d1-9948-4594-b25c-ff29bf0f8d22","type":"Microsoft.Authorization/roleAssignments","name":"fd8b57d1-9948-4594-b25c-ff29bf0f8d22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4359a177-0349-4bbe-8200-597a6b5988c4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T06:43:34.9542020Z","updatedOn":"2019-05-21T06:43:34.9542020Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475feb5a-afb2-4417-845b-91287f4df064","type":"Microsoft.Authorization/roleAssignments","name":"475feb5a-afb2-4417-845b-91287f4df064"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"436315a1-3487-4b5f-9451-9db950947774","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:24:08.0369897Z","updatedOn":"2019-05-29T05:24:08.0369897Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209b5f11-de0d-4481-80a2-daa9ec1332a9","type":"Microsoft.Authorization/roleAssignments","name":"209b5f11-de0d-4481-80a2-daa9ec1332a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"43c23ded-3cb5-470e-bc6b-18ace2450f02","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T10:31:43.9680528Z","updatedOn":"2018-10-26T10:31:43.9680528Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a9ef605-c40e-4022-9892-7ff1571d42d1","type":"Microsoft.Authorization/roleAssignments","name":"6a9ef605-c40e-4022-9892-7ff1571d42d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"44612a17-dcf7-45aa-9746-e23b9efbc52e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-19T06:08:01.4727425Z","updatedOn":"2019-03-19T06:08:01.4727425Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4bda3a7-c31f-4785-87b9-7397c66c2a76","type":"Microsoft.Authorization/roleAssignments","name":"a4bda3a7-c31f-4785-87b9-7397c66c2a76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"446a2406-5e3c-426f-a11f-b2ae90d41b12","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T06:47:10.6709040Z","updatedOn":"2019-06-28T06:47:10.6709040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8526e15-cc60-485b-8fb7-2fc75d771680","type":"Microsoft.Authorization/roleAssignments","name":"c8526e15-cc60-485b-8fb7-2fc75d771680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4483f609-8063-445d-8fce-e9a0791d7743","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T06:38:36.9659286Z","updatedOn":"2019-05-04T06:38:36.9659286Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d8a96ba-af52-4ded-a174-fe4f5bd251ec","type":"Microsoft.Authorization/roleAssignments","name":"8d8a96ba-af52-4ded-a174-fe4f5bd251ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"450f70cc-8ddd-44bd-b4c8-6f4337fd615c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T13:40:33.9593357Z","updatedOn":"2019-02-05T13:40:33.9593357Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc6377ff-4ee9-4fe6-a603-aaf51634aed9","type":"Microsoft.Authorization/roleAssignments","name":"fc6377ff-4ee9-4fe6-a603-aaf51634aed9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4547f709-4e50-470c-8060-7812e3b8c3ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T16:49:48.5677574Z","updatedOn":"2019-06-25T16:49:48.5677574Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81b44c64-fa8b-46fe-b846-d6d828662047","type":"Microsoft.Authorization/roleAssignments","name":"81b44c64-fa8b-46fe-b846-d6d828662047"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4573f187-107b-42b9-a630-65afaed9dedc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T17:19:21.1503618Z","updatedOn":"2018-10-02T17:19:21.1503618Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b387a328-57de-470d-a725-e1b9851bb313","type":"Microsoft.Authorization/roleAssignments","name":"b387a328-57de-470d-a725-e1b9851bb313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45b3b38d-12b6-4661-a6aa-39ed5db0ec3c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T05:47:31.4973975Z","updatedOn":"2018-10-16T05:47:31.4973975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a8697a7-5b39-467d-9a2f-6b252e8221f6","type":"Microsoft.Authorization/roleAssignments","name":"0a8697a7-5b39-467d-9a2f-6b252e8221f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bb20e3-e8a7-471c-8f35-a9b2a0d53eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:18:31.0524635Z","updatedOn":"2019-06-04T05:18:31.0524635Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05d587fc-47ba-4c32-8299-778af7caa3cb","type":"Microsoft.Authorization/roleAssignments","name":"05d587fc-47ba-4c32-8299-778af7caa3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45bed781-9c44-47cd-9e3a-dcac823cb9b6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-06T05:39:57.3761475Z","updatedOn":"2019-06-06T05:39:57.3761475Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cadc56c7-a92c-48fa-be3a-7cb98623167f","type":"Microsoft.Authorization/roleAssignments","name":"cadc56c7-a92c-48fa-be3a-7cb98623167f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"45c56eda-fe0e-4d34-89bf-28572cdac667","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:15:46.6902330Z","updatedOn":"2019-04-27T05:15:46.6902330Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2993d37a-5072-45fb-b18e-b4ba8a081837","type":"Microsoft.Authorization/roleAssignments","name":"2993d37a-5072-45fb-b18e-b4ba8a081837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"460b4bac-41c6-4e2e-8bde-3b9db7715926","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T06:44:05.7543726Z","updatedOn":"2019-06-01T06:44:05.7543726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed","type":"Microsoft.Authorization/roleAssignments","name":"89ecec2e-11bc-44c6-8a5d-8b16b5dc23ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46544a73-6799-488b-a05f-d610bfb3fddc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-03T06:51:58.2053437Z","updatedOn":"2019-01-03T06:51:58.2053437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958","type":"Microsoft.Authorization/roleAssignments","name":"ba718fc9-f8a4-4c18-9cf0-5fd4bfc32958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"469c2a14-0980-4a27-a5e6-b64da5278d5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T10:22:25.8590170Z","updatedOn":"2018-10-29T10:22:25.8590170Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6304453a-dc6a-4566-aec9-0671e08478d1","type":"Microsoft.Authorization/roleAssignments","name":"6304453a-dc6a-4566-aec9-0671e08478d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"46b8124c-0993-44ef-bcdd-59f8f909795a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T06:51:37.6673026Z","updatedOn":"2018-11-09T06:51:37.6673026Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e99aa592-ba65-4041-b875-1dc4fe439eb8","type":"Microsoft.Authorization/roleAssignments","name":"e99aa592-ba65-4041-b875-1dc4fe439eb8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"474cf59d-1867-42b8-afa4-94510b266143","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T17:10:30.5808563Z","updatedOn":"2018-09-19T17:10:30.5808563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de60d5e1-dd54-4d86-8627-19411fab3c55","type":"Microsoft.Authorization/roleAssignments","name":"de60d5e1-dd54-4d86-8627-19411fab3c55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4759ce24-1955-4c57-bc53-357a69cc065f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T05:42:58.0364828Z","updatedOn":"2019-09-11T05:42:58.0364828Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/096db8b9-6da1-41d6-91fc-a44386feca3f","type":"Microsoft.Authorization/roleAssignments","name":"096db8b9-6da1-41d6-91fc-a44386feca3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"478ac2b7-8882-45d7-b424-6d8339728ea9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-01T00:51:52.9057101Z","updatedOn":"2019-11-01T00:51:52.9057101Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb79b9d-a384-4d48-83b7-5b31896a4f92","type":"Microsoft.Authorization/roleAssignments","name":"9eb79b9d-a384-4d48-83b7-5b31896a4f92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"47ccb4ae-269f-4792-98ee-55462208ad1d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T10:26:14.6817565Z","updatedOn":"2018-10-30T10:26:14.6817565Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9091773-c7c6-4f4e-ab35-076a5cc4d5db","type":"Microsoft.Authorization/roleAssignments","name":"a9091773-c7c6-4f4e-ab35-076a5cc4d5db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48399d68-6db0-4c01-9dc9-28ca48f676bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T05:21:52.8692211Z","updatedOn":"2019-06-14T05:21:52.8692211Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503e317f-50ed-435e-b484-035819f25387","type":"Microsoft.Authorization/roleAssignments","name":"503e317f-50ed-435e-b484-035819f25387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4879bdd1-f8b6-4e5c-8742-c93c3d8eb6f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-22T07:11:37.0429548Z","updatedOn":"2019-02-22T07:11:37.0429548Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1021e7fe-c7ea-4439-8d72-bae5333a00a6","type":"Microsoft.Authorization/roleAssignments","name":"1021e7fe-c7ea-4439-8d72-bae5333a00a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"48c186d2-d564-483b-a78d-92746eb34908","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-21T17:13:17.9399323Z","updatedOn":"2018-10-21T17:13:17.9399323Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66bb1b23-5b07-447c-94c0-be5c991edacd","type":"Microsoft.Authorization/roleAssignments","name":"66bb1b23-5b07-447c-94c0-be5c991edacd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4971287f-7b3d-42b8-80df-f7de72239f6c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-21T06:51:31.8471566Z","updatedOn":"2018-12-21T06:51:31.8471566Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a82e12c4-d611-415f-8bbd-aa3768178f9a","type":"Microsoft.Authorization/roleAssignments","name":"a82e12c4-d611-415f-8bbd-aa3768178f9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"49fea90c-711d-4fff-8586-9a0bcaf79778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:45:42.3797028Z","updatedOn":"2019-06-12T05:45:42.3797028Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35aaaa16-0910-42ac-a2c7-6575174a8b65","type":"Microsoft.Authorization/roleAssignments","name":"35aaaa16-0910-42ac-a2c7-6575174a8b65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b04df63-6c76-4cec-ae82-c5302b50f57f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:40:01.4067044Z","updatedOn":"2019-04-25T05:40:01.4067044Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf697e75-2154-4ca7-bf7c-6f32131ff63d","type":"Microsoft.Authorization/roleAssignments","name":"cf697e75-2154-4ca7-bf7c-6f32131ff63d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b5f89be-be88-448d-90bd-1148b6c6deb2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-23T02:16:34.2523880Z","updatedOn":"2019-07-23T02:16:34.2523880Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1da14562-3dee-4c97-a071-1b2937796647","type":"Microsoft.Authorization/roleAssignments","name":"1da14562-3dee-4c97-a071-1b2937796647"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b723d4d-39b5-46cf-b192-1b5e4be7d278","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T05:51:32.3314332Z","updatedOn":"2018-10-04T05:51:32.3314332Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeebc9cd-f851-4d9e-8782-b06de99a7616","type":"Microsoft.Authorization/roleAssignments","name":"aeebc9cd-f851-4d9e-8782-b06de99a7616"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4b77e5f1-f472-4281-b5ce-96c2039e4872","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.9578107Z","updatedOn":"2019-04-02T06:14:22.9578107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8cf185-da61-4600-97fa-a27d71653544","type":"Microsoft.Authorization/roleAssignments","name":"bd8cf185-da61-4600-97fa-a27d71653544"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4be5b831-fa83-4e61-948e-e4750504bdfc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-12T14:26:28.2907804Z","updatedOn":"2019-12-12T14:26:28.2907804Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/814a78f5-0f71-4918-8f3f-84f57bb55e2c","type":"Microsoft.Authorization/roleAssignments","name":"814a78f5-0f71-4918-8f3f-84f57bb55e2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c14e60a-74c8-43ef-a370-6a3bb799cdb4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T13:15:28.5283855Z","updatedOn":"2019-02-23T13:15:28.5283855Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc732667-a40b-4490-8800-b77748ad2f8a","type":"Microsoft.Authorization/roleAssignments","name":"bc732667-a40b-4490-8800-b77748ad2f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4c4e9e90-6bdc-49a9-ae74-32c96bf3a94c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T06:44:13.0979261Z","updatedOn":"2018-09-20T06:44:13.0979261Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90c91b21-abb3-48db-ba76-e4a288b056ce","type":"Microsoft.Authorization/roleAssignments","name":"90c91b21-abb3-48db-ba76-e4a288b056ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d430ee7-bf2c-41be-9672-96777cb84779","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T05:11:12.7927693Z","updatedOn":"2019-04-03T05:11:12.7927693Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71de9f73-c4c5-4b06-8229-8c2b73aa268c","type":"Microsoft.Authorization/roleAssignments","name":"71de9f73-c4c5-4b06-8229-8c2b73aa268c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4d9bae5e-34ea-40c5-a98f-39c324594d3a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T09:41:30.9298710Z","updatedOn":"2018-10-30T09:41:30.9298710Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1","type":"Microsoft.Authorization/roleAssignments","name":"a4a2b9f0-ad4f-4b40-9bdd-715ec16a8aa1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ddddf7e-258e-46ab-b563-26d2add85795","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:56.1452795Z","updatedOn":"2019-03-23T06:12:56.1452795Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45364ae9-1f1f-4a3e-b120-12bab739fa23","type":"Microsoft.Authorization/roleAssignments","name":"45364ae9-1f1f-4a3e-b120-12bab739fa23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4ee4448c-0fa1-4493-b654-4c05705d54aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T14:42:25.4875530Z","updatedOn":"2018-10-22T14:42:25.4875530Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9000edfd-747d-4670-8223-aa771430eb6b","type":"Microsoft.Authorization/roleAssignments","name":"9000edfd-747d-4670-8223-aa771430eb6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"4fea67d3-9364-4671-b8e2-e01ff6852013","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:37:03.6862425Z","updatedOn":"2018-10-23T16:37:03.6862425Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f93c69-9a92-4bce-a218-ed965f3b1fa7","type":"Microsoft.Authorization/roleAssignments","name":"82f93c69-9a92-4bce-a218-ed965f3b1fa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"500b471d-6dd2-45c7-b50f-192bc099465b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-11T08:59:49.1091322Z","updatedOn":"2019-02-11T08:59:49.1091322Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d","type":"Microsoft.Authorization/roleAssignments","name":"0aa4cea0-6a7a-4519-8ea7-43d4434a5a1d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"50d1b7ca-6643-4aac-a7b6-aba7bffecb30","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T21:23:34.5623608Z","updatedOn":"2019-05-30T21:23:34.5623608Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff3f8887-b570-4cd2-80d9-31c3c0d780aa","type":"Microsoft.Authorization/roleAssignments","name":"ff3f8887-b570-4cd2-80d9-31c3c0d780aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"511d8bff-40f9-4003-a398-1fabde903a4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:49.4826402Z","updatedOn":"2019-03-30T06:13:49.4826402Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ead5ca8-3ae1-47f7-99d4-e8553fc813d0","type":"Microsoft.Authorization/roleAssignments","name":"3ead5ca8-3ae1-47f7-99d4-e8553fc813d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52129afe-24ab-41b9-a540-887b859baaa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T18:23:27.1190689Z","updatedOn":"2018-11-21T18:23:27.1190689Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d6d4ecf-980e-4860-910b-134eaf2010cb","type":"Microsoft.Authorization/roleAssignments","name":"2d6d4ecf-980e-4860-910b-134eaf2010cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52f6a30a-8d0c-47da-a3a5-b84e88a614b8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T09:40:56.6401023Z","updatedOn":"2018-10-23T09:40:56.6401023Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beab38c9-0315-4f4c-b271-3d273132fb1c","type":"Microsoft.Authorization/roleAssignments","name":"beab38c9-0315-4f4c-b271-3d273132fb1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"52fe9977-36ab-49b5-92a4-e008c4388a78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:35:03.4984397Z","updatedOn":"2019-05-07T05:35:03.4984397Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f02d236b-9aa2-4b3a-b23f-79421d4a68b2","type":"Microsoft.Authorization/roleAssignments","name":"f02d236b-9aa2-4b3a-b23f-79421d4a68b2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"540777ec-189c-4cbf-bac5-6e1f84406a6f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T06:47:47.5895654Z","updatedOn":"2019-05-09T06:47:47.5895654Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e825f950-8897-4264-a635-53ae9feedfb9","type":"Microsoft.Authorization/roleAssignments","name":"e825f950-8897-4264-a635-53ae9feedfb9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5409d5ca-8e03-4557-9e84-8665a083b067","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:39:48.5422832Z","updatedOn":"2019-06-01T05:39:48.5422832Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f","type":"Microsoft.Authorization/roleAssignments","name":"bbcfe123-0d6b-4d38-9ec3-de5350a8fc3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54832b72-aac4-4083-93d5-846c2b6b45e8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:47:59.4896743Z","updatedOn":"2018-11-28T06:47:59.4896743Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ad3378a-c327-464e-9445-1879a1066af9","type":"Microsoft.Authorization/roleAssignments","name":"3ad3378a-c327-464e-9445-1879a1066af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"54ec6555-72ef-4e8d-bf70-17a405718e5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-02T09:56:47.6916806Z","updatedOn":"2019-03-02T09:56:47.6916806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e843b4c5-043c-44ae-bd28-734e25051ef3","type":"Microsoft.Authorization/roleAssignments","name":"e843b4c5-043c-44ae-bd28-734e25051ef3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5513e966-698b-4802-8499-46d300e37b0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:22.8102306Z","updatedOn":"2019-04-04T06:36:22.8102306Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c","type":"Microsoft.Authorization/roleAssignments","name":"b7fb0ffa-62ef-429d-b3f2-6f0cc435ba4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"56da69f6-625c-425c-906b-6ea65198ae49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T22:16:27.2709616Z","updatedOn":"2018-10-10T22:16:27.2709616Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/467f37f4-8892-4989-b43c-50b039603457","type":"Microsoft.Authorization/roleAssignments","name":"467f37f4-8892-4989-b43c-50b039603457"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"586b8b3a-47c2-481b-a253-e44113022fb8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T06:42:26.9020217Z","updatedOn":"2019-05-22T06:42:26.9020217Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e29fabe-5d12-42e5-b131-19e3370f33af","type":"Microsoft.Authorization/roleAssignments","name":"0e29fabe-5d12-42e5-b131-19e3370f33af"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"58c180ad-6259-4c01-a1c5-51198b9c9b9a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T15:00:17.5947515Z","updatedOn":"2018-10-19T15:00:17.5947515Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b49e2b-047e-42a9-a704-b5c2201303ad","type":"Microsoft.Authorization/roleAssignments","name":"e3b49e2b-047e-42a9-a704-b5c2201303ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"598b7be5-15a3-4908-92d8-06c0adcaaa00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T06:36:09.8827093Z","updatedOn":"2019-04-04T06:36:09.8827093Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73323681-1a8f-40aa-9031-5f02a21fe727","type":"Microsoft.Authorization/roleAssignments","name":"73323681-1a8f-40aa-9031-5f02a21fe727"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59a9ced4-093d-4e07-8fe0-a4e51ffdea10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T21:25:05.4849641Z","updatedOn":"2018-11-09T21:25:05.4849641Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddd8ce04-ab66-494e-a2b2-5f757a43c4fa","type":"Microsoft.Authorization/roleAssignments","name":"ddd8ce04-ab66-494e-a2b2-5f757a43c4fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"59f98a9e-db3e-4f6e-93d5-99623caf9553","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T07:05:39.5135657Z","updatedOn":"2019-02-20T07:05:39.5135657Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc7d8a24-3934-451b-9feb-e075d7921420","type":"Microsoft.Authorization/roleAssignments","name":"fc7d8a24-3934-451b-9feb-e075d7921420"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b1c26a1-6561-412b-b4be-b0c17c3318fe","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:57:15.5134809Z","updatedOn":"2018-10-05T00:57:15.5134809Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a96ae42-a747-4357-96fa-efd5e47c397c","type":"Microsoft.Authorization/roleAssignments","name":"3a96ae42-a747-4357-96fa-efd5e47c397c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3b4018-76a9-43bf-9f1c-24926c9a6103","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T06:39:33.1893579Z","updatedOn":"2019-05-25T06:39:33.1893579Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db08177d-9064-4501-8eeb-4c3a02b254a2","type":"Microsoft.Authorization/roleAssignments","name":"db08177d-9064-4501-8eeb-4c3a02b254a2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5b3bd66c-bd38-4565-aabe-0e6d10354596","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:15:19.7761488Z","updatedOn":"2019-05-28T05:15:19.7761488Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f641ca9-7e29-42c6-89f4-90e26c594902","type":"Microsoft.Authorization/roleAssignments","name":"0f641ca9-7e29-42c6-89f4-90e26c594902"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5bf71d98-b0d9-4538-9deb-35a8113116db","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-16T02:29:14.4864280Z","updatedOn":"2019-12-16T02:29:14.4864280Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3696942-5c76-42f2-a87d-e72dde6ed71f","type":"Microsoft.Authorization/roleAssignments","name":"c3696942-5c76-42f2-a87d-e72dde6ed71f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5c36cac2-e147-4997-a06c-596a42591a24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:15:50.4759690Z","updatedOn":"2019-05-11T05:15:50.4759690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72d79eff-8c00-4cd8-9cf4-e8a694596b3f","type":"Microsoft.Authorization/roleAssignments","name":"72d79eff-8c00-4cd8-9cf4-e8a694596b3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc1a360-1940-44a0-bc5e-29c604002d0b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-13T05:46:16.3494387Z","updatedOn":"2018-10-13T05:46:16.3494387Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e992eb54-5e47-4428-acd3-40c0265d2a40","type":"Microsoft.Authorization/roleAssignments","name":"e992eb54-5e47-4428-acd3-40c0265d2a40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5dc3a7f2-18dc-4c73-9d27-21c262e52c0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T16:19:42.5704417Z","updatedOn":"2019-06-15T16:19:42.5704417Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/beb9ec14-f66a-498a-9812-89a9ec47b8e5","type":"Microsoft.Authorization/roleAssignments","name":"beb9ec14-f66a-498a-9812-89a9ec47b8e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5e414a46-57c9-4bad-9417-9cf6c3dc5a63","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:20:18.5626645Z","updatedOn":"2019-11-13T02:20:18.5626645Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96cf19f1-c252-46f6-905d-46bdbeaecc87","type":"Microsoft.Authorization/roleAssignments","name":"96cf19f1-c252-46f6-905d-46bdbeaecc87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"5e69ef28-1db9-403c-8856-7d4e3ebbde4a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:02:04.8659613Z","updatedOn":"2019-11-13T09:02:04.8659613Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2261a61e-aa24-4c14-9afa-46297c364380","type":"Microsoft.Authorization/roleAssignments","name":"2261a61e-aa24-4c14-9afa-46297c364380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"607756a3-c971-467d-bce7-9267d8c01261","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:59:17.0515117Z","updatedOn":"2018-10-01T15:59:17.0515117Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4ca15bb-d013-4bf8-857f-4117c5db175c","type":"Microsoft.Authorization/roleAssignments","name":"d4ca15bb-d013-4bf8-857f-4117c5db175c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"613d5f03-41a8-4080-bdfc-a374e9f19988","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T10:22:26.9025135Z","updatedOn":"2018-10-22T10:22:26.9025135Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14bdb487-ccb9-4efb-bc90-104d135f8b29","type":"Microsoft.Authorization/roleAssignments","name":"14bdb487-ccb9-4efb-bc90-104d135f8b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"62af882c-540c-4f97-9ef6-17017da11708","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-05T07:04:26.8232762Z","updatedOn":"2019-02-05T07:04:26.8232762Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a54bd44-0912-4d8c-bc4d-c4ca672993d3","type":"Microsoft.Authorization/roleAssignments","name":"5a54bd44-0912-4d8c-bc4d-c4ca672993d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"63154abc-1cb7-47c9-98fe-5f0e6a108f59","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-21T13:56:59.6975946Z","updatedOn":"2019-10-21T13:56:59.6975946Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb4fc63b-fae5-4f01-a87c-b1d339da9039","type":"Microsoft.Authorization/roleAssignments","name":"cb4fc63b-fae5-4f01-a87c-b1d339da9039"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"64322757-c902-4fcb-8580-d53ec6a49733","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T09:58:18.8798266Z","updatedOn":"2019-03-07T09:58:18.8798266Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f","type":"Microsoft.Authorization/roleAssignments","name":"503efd8c-6169-4f3b-86ae-7a1b6bc4ef3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6453a293-3f49-42a0-953b-b954ad831b13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T06:36:20.6410975Z","updatedOn":"2019-04-27T06:36:20.6410975Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9","type":"Microsoft.Authorization/roleAssignments","name":"3dd6a47c-300c-49bc-90e5-2c7ffeb13cf9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"649ed1cc-32fd-4902-98ba-4ce661fe1b0e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T05:46:33.2506768Z","updatedOn":"2018-10-05T05:46:33.2506768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f653f0c1-a5d2-4e52-9cce-d9caa7a12948","type":"Microsoft.Authorization/roleAssignments","name":"f653f0c1-a5d2-4e52-9cce-d9caa7a12948"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66372353-a1d0-4b99-b9e3-b5b1f527d5c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T21:55:10.4318460Z","updatedOn":"2018-11-29T21:55:10.4318460Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4fedbf2e-17fb-46b5-8507-7b888fd819e4","type":"Microsoft.Authorization/roleAssignments","name":"4fedbf2e-17fb-46b5-8507-7b888fd819e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"66da01d7-d0cd-4d5d-9daa-a6aac355e899","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T06:14:22.2380357Z","updatedOn":"2019-04-02T06:14:22.2380357Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95800b1b-cdac-4ba5-86a1-379016cd1dc6","type":"Microsoft.Authorization/roleAssignments","name":"95800b1b-cdac-4ba5-86a1-379016cd1dc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"672e9774-0a9f-49a3-aab1-67e5fb315ead","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-12T04:23:40.2193515Z","updatedOn":"2019-12-12T04:23:40.2193515Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15109cb8-71cc-447e-85dc-73ca541040dd","type":"Microsoft.Authorization/roleAssignments","name":"15109cb8-71cc-447e-85dc-73ca541040dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67404547-100a-42a8-8f2e-09b490634ea7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T05:09:36.0604037Z","updatedOn":"2019-03-22T05:09:36.0604037Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d","type":"Microsoft.Authorization/roleAssignments","name":"b8ba2d39-f6fe-466c-ac03-3c0bc7f2609d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"679350fd-70c9-4f2f-b5f0-4d549ff59263","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:01:27.5039088Z","updatedOn":"2019-09-11T09:01:27.5039088Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a0369f65-0715-45d4-a650-6f8f6a0175c3","type":"Microsoft.Authorization/roleAssignments","name":"a0369f65-0715-45d4-a650-6f8f6a0175c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67bfe2b8-c880-4fec-9fdf-a4865f955a30","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-22T19:41:53.4008313Z","updatedOn":"2018-09-22T19:41:53.4008313Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d8de0a-74c3-40a9-b0cf-0343f2c62234","type":"Microsoft.Authorization/roleAssignments","name":"53d8de0a-74c3-40a9-b0cf-0343f2c62234"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"67e33e41-2e5b-4a69-a3ef-6b5f3b167d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T15:44:49.1835703Z","updatedOn":"2018-11-13T15:44:49.1835703Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a805b80-6b5c-4b23-ba48-60bc8a8a56ee","type":"Microsoft.Authorization/roleAssignments","name":"7a805b80-6b5c-4b23-ba48-60bc8a8a56ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"688639b0-ff93-4399-a3c3-5bf75676df74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-24T17:56:40.3800464Z","updatedOn":"2019-06-24T17:56:40.3800464Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af81c289-2651-4461-afd3-4b8b30e73b7f","type":"Microsoft.Authorization/roleAssignments","name":"af81c289-2651-4461-afd3-4b8b30e73b7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"692d387a-0a74-4f3c-84a4-ccc1aa564cc4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:23:56.9861355Z","updatedOn":"2019-03-28T06:23:56.9861355Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2dca01f-8b7c-456a-ba40-12c267516fa4","type":"Microsoft.Authorization/roleAssignments","name":"e2dca01f-8b7c-456a-ba40-12c267516fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"69ed4898-0851-4ea4-9813-dfc9864cbaf6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:26:34.1746649Z","updatedOn":"2018-12-11T19:26:34.1746649Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27564201-65a3-4a09-bdaf-70c08ecd1786","type":"Microsoft.Authorization/roleAssignments","name":"27564201-65a3-4a09-bdaf-70c08ecd1786"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6a2bd173-e6f2-4b0c-bd80-c3bc23afdd9b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-08T07:04:42.6974105Z","updatedOn":"2019-02-08T07:04:42.6974105Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/508ce624-c0ed-4246-9ace-6934f7c70f48","type":"Microsoft.Authorization/roleAssignments","name":"508ce624-c0ed-4246-9ace-6934f7c70f48"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ab640b3-0232-4412-b034-e0f6598d60cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-01T05:18:08.2083053Z","updatedOn":"2019-06-01T05:18:08.2083053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4190e61-7834-4128-ba57-9d1c881baba9","type":"Microsoft.Authorization/roleAssignments","name":"b4190e61-7834-4128-ba57-9d1c881baba9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6aef5178-c2d2-41f6-a180-a296155ddf40","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-21T05:12:34.7950106Z","updatedOn":"2019-11-21T05:12:34.7950106Z","createdBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6","updatedBy":"08cee9d4-f1ee-46a2-9dd1-7462196c9ac6"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5c83b39-f8a1-425f-984b-79e74f9ea79a","type":"Microsoft.Authorization/roleAssignments","name":"b5c83b39-f8a1-425f-984b-79e74f9ea79a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6b111a75-d6f5-40f8-a713-2aff55c241bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T02:18:18.8000548Z","updatedOn":"2019-03-06T02:18:18.8000548Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7","type":"Microsoft.Authorization/roleAssignments","name":"33f1c83d-4e5a-45cc-bc10-180c8a0ae1e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c33ea0a-4309-494e-bb08-7c65d7732b2e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-02T05:41:29.5534504Z","updatedOn":"2019-07-02T05:41:29.5534504Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd8905e9-16c6-40a6-9dbd-046aad713a25","type":"Microsoft.Authorization/roleAssignments","name":"bd8905e9-16c6-40a6-9dbd-046aad713a25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c4fbf1c-a382-44ed-881c-51962f3fd881","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T05:50:00.7096461Z","updatedOn":"2018-11-01T05:50:00.7096461Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de49b46f-a02e-4836-80e3-219f97f087d4","type":"Microsoft.Authorization/roleAssignments","name":"de49b46f-a02e-4836-80e3-219f97f087d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c7e6aca-f52b-4eae-88a7-0b5d23020906","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:47:53.8404657Z","updatedOn":"2019-04-14T02:47:53.8404657Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8fc00c0-bf52-48fa-aff7-d7311f11bc19","type":"Microsoft.Authorization/roleAssignments","name":"e8fc00c0-bf52-48fa-aff7-d7311f11bc19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6c9946ec-553a-48ce-ab04-aab7628afb1c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T02:10:55.9558958Z","updatedOn":"2018-12-01T02:10:55.9558958Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fae0b28-b303-49a4-8054-3fbb15bc8947","type":"Microsoft.Authorization/roleAssignments","name":"9fae0b28-b303-49a4-8054-3fbb15bc8947"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6cb60ca7-ed56-47a6-9d38-4e01e7c9697d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-09T12:25:53.4854829Z","updatedOn":"2019-01-09T12:25:53.4854829Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396a79d2-fb2a-4bb1-b872-c77b7a4c13c6","type":"Microsoft.Authorization/roleAssignments","name":"396a79d2-fb2a-4bb1-b872-c77b7a4c13c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d36f33f-05a6-45f7-8209-089ee6b93a66","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:57:10.7409947Z","updatedOn":"2018-09-18T23:57:10.7409947Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29587e30-6cb4-4896-ac01-7592e243af86","type":"Microsoft.Authorization/roleAssignments","name":"29587e30-6cb4-4896-ac01-7592e243af86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d489fcb-a876-474e-baee-4b2c247066ca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:00:59.6415842Z","updatedOn":"2019-04-14T03:00:59.6415842Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c771da9-9d8a-4071-b0d8-1c59d6e7266f","type":"Microsoft.Authorization/roleAssignments","name":"9c771da9-9d8a-4071-b0d8-1c59d6e7266f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d61a178-3216-4ba7-bdc3-0fbc62b65ac9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-18T14:13:16.1350734Z","updatedOn":"2019-11-18T14:13:16.1350734Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/951d7466-f489-49df-88a3-9790ad814153","type":"Microsoft.Authorization/roleAssignments","name":"951d7466-f489-49df-88a3-9790ad814153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6d854209-9a54-4c9e-a159-e8d3094658d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T02:48:24.6364909Z","updatedOn":"2019-04-14T02:48:24.6364909Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edc12553-178b-4765-bf26-98f57a26fc02","type":"Microsoft.Authorization/roleAssignments","name":"edc12553-178b-4765-bf26-98f57a26fc02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6dc88d25-0c7b-42c6-8c91-a562a0b13006","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-13T06:05:50.2210833Z","updatedOn":"2019-03-13T06:05:50.2210833Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/399d0881-1788-435a-855b-3dd5157c360d","type":"Microsoft.Authorization/roleAssignments","name":"399d0881-1788-435a-855b-3dd5157c360d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6e4e17aa-d5b2-4bb4-9fd3-0fc44c929b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-29T05:46:47.0487850Z","updatedOn":"2019-05-29T05:46:47.0487850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fdd201e-75f6-4830-8925-b96202c67a56","type":"Microsoft.Authorization/roleAssignments","name":"8fdd201e-75f6-4830-8925-b96202c67a56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ec8f82c-9e32-48cc-85cc-e0e48defae11","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-29T06:50:23.9583339Z","updatedOn":"2018-11-29T06:50:23.9583339Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c02193e-3c95-4479-adc6-9a75cfb573b8","type":"Microsoft.Authorization/roleAssignments","name":"1c02193e-3c95-4479-adc6-9a75cfb573b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ecd84c7-bbaa-48c4-98a6-6087ed3df64a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-25T05:14:56.9351550Z","updatedOn":"2019-04-25T05:14:56.9351550Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fa8e3ed-deef-4f08-b893-81ebe9acde0e","type":"Microsoft.Authorization/roleAssignments","name":"5fa8e3ed-deef-4f08-b893-81ebe9acde0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6ef96f42-cd57-4e99-89e7-0e89f05cfede","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T05:38:59.3997604Z","updatedOn":"2019-04-26T05:38:59.3997604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fad55ac3-c806-49b8-97e9-c2b7f1acab16","type":"Microsoft.Authorization/roleAssignments","name":"fad55ac3-c806-49b8-97e9-c2b7f1acab16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"6fe33150-178c-4a55-8ce7-f2e66551a121","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:00:17.0044164Z","updatedOn":"2019-11-13T09:00:17.0044164Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ef6f-e13b-4d15-9838-5334c3e6b391","type":"Microsoft.Authorization/roleAssignments","name":"d408ef6f-e13b-4d15-9838-5334c3e6b391"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"704e2404-42e9-4dd2-a0b2-672150eb02b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:22:13.0814390Z","updatedOn":"2019-06-26T05:22:13.0814390Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63aaafb2-482e-47e2-a1c4-8860726353ec","type":"Microsoft.Authorization/roleAssignments","name":"63aaafb2-482e-47e2-a1c4-8860726353ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"712a3ed3-322d-46bb-83c8-d283bf293f92","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T15:48:15.6003613Z","updatedOn":"2018-11-15T15:48:15.6003613Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/211f4c48-7e4a-40b6-93cd-f3457de00cec","type":"Microsoft.Authorization/roleAssignments","name":"211f4c48-7e4a-40b6-93cd-f3457de00cec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"73b10201-9d86-47ba-a9c0-fb6262496596","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:19:16.0685947Z","updatedOn":"2019-11-13T09:19:16.0685947Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08251a7a-c5a5-4aa2-864a-e7240e2d3803","type":"Microsoft.Authorization/roleAssignments","name":"08251a7a-c5a5-4aa2-864a-e7240e2d3803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"73d4eb83-1fe6-46a2-ad7b-784756ff030b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T10:22:45.7824438Z","updatedOn":"2018-10-31T10:22:45.7824438Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94d225f7-9fa8-410e-8b04-f1fd0d94b71d","type":"Microsoft.Authorization/roleAssignments","name":"94d225f7-9fa8-410e-8b04-f1fd0d94b71d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"74294fda-1d88-4f11-b3ec-828c8f993e15","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:20:42.8929893Z","updatedOn":"2019-06-29T05:20:42.8929893Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8","type":"Microsoft.Authorization/roleAssignments","name":"6ac6e7f2-9a5b-4ce1-ac05-c334b1f089c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7548cbdb-a952-4df9-8444-40e9ce828000","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-01T06:54:57.2847495Z","updatedOn":"2018-12-01T06:54:57.2847495Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/928582a4-ecf3-4748-b1e0-11701e025432","type":"Microsoft.Authorization/roleAssignments","name":"928582a4-ecf3-4748-b1e0-11701e025432"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7609cd9b-efcb-493a-a026-225b7a9a0365","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-06T05:47:30.3923076Z","updatedOn":"2018-10-06T05:47:30.3923076Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4dca0a71-a984-4dda-876b-c4f024c10f8a","type":"Microsoft.Authorization/roleAssignments","name":"4dca0a71-a984-4dda-876b-c4f024c10f8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"76776aa5-af1d-4b9e-a56e-1477a17cf070","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-02T17:38:33.7929610Z","updatedOn":"2019-02-02T17:38:33.7929610Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b712f421-681a-4cc0-b84d-64ab8b65802b","type":"Microsoft.Authorization/roleAssignments","name":"b712f421-681a-4cc0-b84d-64ab8b65802b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7683dc97-8db7-437f-8baf-fcd5df568a8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T05:15:03.9119281Z","updatedOn":"2019-05-08T05:15:03.9119281Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4083e34a-3fb9-4689-ab26-6287bd9fd9c2","type":"Microsoft.Authorization/roleAssignments","name":"4083e34a-3fb9-4689-ab26-6287bd9fd9c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"774f9cb3-e176-43ee-9b53-ac10e6db0778","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T13:30:32.8137217Z","updatedOn":"2019-03-03T13:30:32.8137217Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/495be90f-ab00-4d1d-aecd-e024bec55393","type":"Microsoft.Authorization/roleAssignments","name":"495be90f-ab00-4d1d-aecd-e024bec55393"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77c092ea-ce78-458d-9f38-c17c2681438c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-12T07:07:29.9963220Z","updatedOn":"2019-02-12T07:07:29.9963220Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67304b6e-b8d9-415a-8f92-2562023fd837","type":"Microsoft.Authorization/roleAssignments","name":"67304b6e-b8d9-415a-8f92-2562023fd837"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"77f74980-f5ce-4484-a15a-20709e5e2547","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T01:08:23.2453424Z","updatedOn":"2019-05-04T01:08:23.2453424Z","createdBy":"bed854bc-89d1-444b-914a-8984c7a9d73d","updatedBy":"bed854bc-89d1-444b-914a-8984c7a9d73d"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/71538224-b885-4a3e-b178-5d73c4ec869d","type":"Microsoft.Authorization/roleAssignments","name":"71538224-b885-4a3e-b178-5d73c4ec869d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"780847de-4327-4f25-86e2-289447951d2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T06:50:07.1933427Z","updatedOn":"2019-05-17T06:50:07.1933427Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82eb6677-63a7-44f1-9d75-a991c5e669ac","type":"Microsoft.Authorization/roleAssignments","name":"82eb6677-63a7-44f1-9d75-a991c5e669ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"78641149-e93c-4ce4-8adb-7615b8830d08","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T09:40:18.7637943Z","updatedOn":"2018-10-29T09:40:18.7637943Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d50a36cf-7e26-41a9-b248-b2082b06df86","type":"Microsoft.Authorization/roleAssignments","name":"d50a36cf-7e26-41a9-b248-b2082b06df86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"794df39c-a438-4cba-ba1f-471684649cbd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-08T06:47:49.5030941Z","updatedOn":"2018-12-08T06:47:49.5030941Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8adc08be-35c7-4082-a97e-58495bf0633e","type":"Microsoft.Authorization/roleAssignments","name":"8adc08be-35c7-4082-a97e-58495bf0633e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"79d28f59-7371-4cc1-aa55-1637711f25c3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-26T06:50:12.3943072Z","updatedOn":"2018-12-26T06:50:12.3943072Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f8d5b31-c70e-421e-9cda-f23d6d6514ac","type":"Microsoft.Authorization/roleAssignments","name":"0f8d5b31-c70e-421e-9cda-f23d6d6514ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"79dce728-1853-4b24-ba8b-186c1393b997","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-17T07:27:23.3542449Z","updatedOn":"2019-12-17T07:27:23.3542449Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2c10ed3-d545-45fc-990f-e93087620aa8","type":"Microsoft.Authorization/roleAssignments","name":"e2c10ed3-d545-45fc-990f-e93087620aa8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ada01ed-fe33-41b9-b33c-fff421c40085","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T20:55:00.8548042Z","updatedOn":"2019-05-14T20:55:00.8548042Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5cf6ad-afcd-4a50-98bb-4bb0108775fa","type":"Microsoft.Authorization/roleAssignments","name":"ea5cf6ad-afcd-4a50-98bb-4bb0108775fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b450bc8-eda3-44ee-8469-fc5e877cc504","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-15T00:36:11.7693422Z","updatedOn":"2018-09-15T00:36:11.7693422Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bcb0d890-060d-4fc7-8113-9021bc1dfa56","type":"Microsoft.Authorization/roleAssignments","name":"bcb0d890-060d-4fc7-8113-9021bc1dfa56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7b786a3d-6ce9-495d-8716-52ae82f5e2a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:11.0215326Z","updatedOn":"2019-04-03T06:11:11.0215326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b83528d1-e123-4edf-8ee6-ba5bd0bd6f47","type":"Microsoft.Authorization/roleAssignments","name":"b83528d1-e123-4edf-8ee6-ba5bd0bd6f47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bbf0190-840a-4e74-916d-fa4c01be297b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-02T18:03:45.6908682Z","updatedOn":"2018-10-02T18:03:45.6908682Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6dcb8da1-75d1-4598-a61e-28b463c47f01","type":"Microsoft.Authorization/roleAssignments","name":"6dcb8da1-75d1-4598-a61e-28b463c47f01"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7bfb0f39-e9bc-4acc-addb-479cb042834b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T14:38:29.7385082Z","updatedOn":"2018-10-30T14:38:29.7385082Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45e0d28f-cdde-4cdb-8edb-168c8f7590d2","type":"Microsoft.Authorization/roleAssignments","name":"45e0d28f-cdde-4cdb-8edb-168c8f7590d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c1f8589-d62d-4dc2-afb0-e94b22edf558","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-26T06:25:38.6656804Z","updatedOn":"2019-11-26T06:25:38.6656804Z","createdBy":"18f53146-1f6c-462a-96a5-d50e1293b770","updatedBy":"18f53146-1f6c-462a-96a5-d50e1293b770"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02287c55-f42c-4852-9b08-c20c8a3b7e3b","type":"Microsoft.Authorization/roleAssignments","name":"02287c55-f42c-4852-9b08-c20c8a3b7e3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5418b8-53e6-43ed-8e35-75d3d6dfb2e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-13T18:02:59.3895408Z","updatedOn":"2018-09-13T18:02:59.3895408Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6a0f050-1296-4798-908e-aaf195b4c798","type":"Microsoft.Authorization/roleAssignments","name":"d6a0f050-1296-4798-908e-aaf195b4c798"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7c5d633a-ec69-498a-92cf-55464c78670b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:16:38.1702958Z","updatedOn":"2019-05-15T05:16:38.1702958Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/741aa019-0fe3-403f-a882-0d05dffdfd2d","type":"Microsoft.Authorization/roleAssignments","name":"741aa019-0fe3-403f-a882-0d05dffdfd2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7ca80fb2-737e-4e66-a3cd-b8a323d537cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:39:04.0585092Z","updatedOn":"2019-05-25T05:39:04.0585092Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/638f44e3-8179-48c7-90c1-21f64a585aac","type":"Microsoft.Authorization/roleAssignments","name":"638f44e3-8179-48c7-90c1-21f64a585aac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7d4cdb41-c410-4a81-97e6-8caae8993d00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T07:18:44.3763561Z","updatedOn":"2018-12-06T07:18:44.3763561Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3b91d2bf-0026-4f91-95b4-cd0ed0f85173","type":"Microsoft.Authorization/roleAssignments","name":"3b91d2bf-0026-4f91-95b4-cd0ed0f85173"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7df99738-7bfc-4895-a68f-50f8ed8f0505","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T05:42:35.5182437Z","updatedOn":"2018-10-23T05:42:35.5182437Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17db1f19-acc1-49ba-a03c-dfbe611262b9","type":"Microsoft.Authorization/roleAssignments","name":"17db1f19-acc1-49ba-a03c-dfbe611262b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e22c332-3d2b-4de8-bf01-d64d23dc1b39","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T15:39:42.5789529Z","updatedOn":"2018-11-09T15:39:42.5789529Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a72e6191-bb9b-4169-b6cf-b31b214a627f","type":"Microsoft.Authorization/roleAssignments","name":"a72e6191-bb9b-4169-b6cf-b31b214a627f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7e887460-65fd-40f5-ac81-f73deea466d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T05:14:55.7828522Z","updatedOn":"2019-05-10T05:14:55.7828522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cbbe3ce-9d21-477d-b178-b83e6442e99e","type":"Microsoft.Authorization/roleAssignments","name":"5cbbe3ce-9d21-477d-b178-b83e6442e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f100bfc-db5f-4309-bcec-2bb6df12c04a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T01:53:31.6719631Z","updatedOn":"2019-01-31T01:53:31.6719631Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/868dcee8-c116-4502-bc04-263d3ae53fd0","type":"Microsoft.Authorization/roleAssignments","name":"868dcee8-c116-4502-bc04-263d3ae53fd0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f74ea17-fa4d-41c0-a543-a539c46210ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T17:52:07.3188509Z","updatedOn":"2018-09-27T17:52:07.3188509Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3","type":"Microsoft.Authorization/roleAssignments","name":"d6f786bd-bbb2-4cf5-a924-c9077ca1a0c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f758d4c-db29-4a18-a057-75efd8e79a74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T05:10:35.2296932Z","updatedOn":"2019-04-06T05:10:35.2296932Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9cc64ce-73b9-446d-b99d-645c964fd426","type":"Microsoft.Authorization/roleAssignments","name":"e9cc64ce-73b9-446d-b99d-645c964fd426"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"7f9eb655-2f05-4a27-9fcd-280b43791ed6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T06:41:41.2203329Z","updatedOn":"2019-05-10T06:41:41.2203329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e35b736-0f88-4814-88d8-24e6854c819b","type":"Microsoft.Authorization/roleAssignments","name":"4e35b736-0f88-4814-88d8-24e6854c819b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"803b3279-b14b-4be3-bd41-ae1b259e37a4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T22:17:06.9892206Z","updatedOn":"2018-10-23T22:17:06.9892206Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/619d9112-56a2-4801-b56e-e541a92a2da4","type":"Microsoft.Authorization/roleAssignments","name":"619d9112-56a2-4801-b56e-e541a92a2da4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8062a81a-b6f4-4c69-8c8e-9bbd301e41ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T06:13:50.2078671Z","updatedOn":"2019-03-30T06:13:50.2078671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8d8161d-defe-484b-b0e8-f4c653252f16","type":"Microsoft.Authorization/roleAssignments","name":"a8d8161d-defe-484b-b0e8-f4c653252f16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80b1b2c3-cdf2-4dae-a38b-a49a2f52eecd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-28T08:01:24.9654792Z","updatedOn":"2019-10-28T08:01:24.9654792Z","createdBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","updatedBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d30cdea5-4849-4685-994d-9f297f8fc2d2","type":"Microsoft.Authorization/roleAssignments","name":"d30cdea5-4849-4685-994d-9f297f8fc2d2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80c1e693-93a1-4115-8610-6b67677e8fc0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-09T07:12:14.9103934Z","updatedOn":"2019-03-09T07:12:14.9103934Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3","type":"Microsoft.Authorization/roleAssignments","name":"c5fff4e8-4fd9-49fa-9ab8-be6a741abcd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"810d390f-64ed-40f9-89d6-3cceb7329ff5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-21T01:23:26.7885228Z","updatedOn":"2018-11-21T01:23:26.7885228Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8091748e-cc72-4082-8cfa-6ea8622b3625","type":"Microsoft.Authorization/roleAssignments","name":"8091748e-cc72-4082-8cfa-6ea8622b3625"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"82236e2f-43ed-45ef-8135-347bf352639f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-04T02:08:56.7988534Z","updatedOn":"2019-12-04T02:08:56.7988534Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dde2fc07-f544-45fb-af0d-2a179af21e89","type":"Microsoft.Authorization/roleAssignments","name":"dde2fc07-f544-45fb-af0d-2a179af21e89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"829571ed-c3d7-4985-818f-b996ff7ef088","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:16:52.4886041Z","updatedOn":"2019-05-17T05:16:52.4886041Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef","type":"Microsoft.Authorization/roleAssignments","name":"d2d6ee5f-3eb5-45d5-9f7c-67d90acdb2ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:15:50.5935627Z","updatedOn":"2019-09-11T09:15:50.5935627Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/253c1f18-9f2b-490d-961d-520ba222a9b3","type":"Microsoft.Authorization/roleAssignments","name":"253c1f18-9f2b-490d-961d-520ba222a9b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8397a3ab-dcd0-4905-9dfc-406e9a5364d5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-01T18:48:16.6057069Z","updatedOn":"2019-03-01T18:48:16.6057069Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/49d9706e-3f83-4afa-954e-1ca959f0ac99","type":"Microsoft.Authorization/roleAssignments","name":"49d9706e-3f83-4afa-954e-1ca959f0ac99"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"83f56332-63d8-4a04-a851-017a0414dbc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T06:49:20.3867553Z","updatedOn":"2018-12-18T06:49:20.3867553Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/735d41dc-d524-4686-acce-015022fb652a","type":"Microsoft.Authorization/roleAssignments","name":"735d41dc-d524-4686-acce-015022fb652a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"84874d5a-4130-4df0-96b1-6491c10e6354","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T11:39:38.8845443Z","updatedOn":"2018-09-28T11:39:38.8845443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/697d3373-5487-41d7-8535-17a047bee7e1","type":"Microsoft.Authorization/roleAssignments","name":"697d3373-5487-41d7-8535-17a047bee7e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"850cdb5c-03f2-45c6-b9d9-0f3a9c594ccf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T06:12:47.1967557Z","updatedOn":"2019-03-23T06:12:47.1967557Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5434eca1-b18b-4aaf-8063-ffd71f2ff773","type":"Microsoft.Authorization/roleAssignments","name":"5434eca1-b18b-4aaf-8063-ffd71f2ff773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"85137175-3916-4cb9-b552-9ad76eba2798","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T05:10:41.3063102Z","updatedOn":"2019-03-27T05:10:41.3063102Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70cecdd3-d0e4-4a75-9254-f7b9ab550c04","type":"Microsoft.Authorization/roleAssignments","name":"70cecdd3-d0e4-4a75-9254-f7b9ab550c04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"859ad38c-b4ff-480a-9db1-366be15d50bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T06:48:58.5197973Z","updatedOn":"2018-11-10T06:48:58.5197973Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e798d79f-8086-428b-91ce-ad7ea651624f","type":"Microsoft.Authorization/roleAssignments","name":"e798d79f-8086-428b-91ce-ad7ea651624f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"860aaec5-bc98-4ba5-9edf-79e4c9fd8ded","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:45:59.7559326Z","updatedOn":"2019-06-11T05:45:59.7559326Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2a43861-47d0-454f-a2e0-3d8f7b2d02e5","type":"Microsoft.Authorization/roleAssignments","name":"d2a43861-47d0-454f-a2e0-3d8f7b2d02e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8681181f-40ca-487a-8bc6-259755150aa9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T06:34:20.7745983Z","updatedOn":"2019-04-16T06:34:20.7745983Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67e3e91b-1b88-44b0-991d-d3e26974afb5","type":"Microsoft.Authorization/roleAssignments","name":"67e3e91b-1b88-44b0-991d-d3e26974afb5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86bd3fff-bfc8-4e57-98ae-3e5bd84e30c2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:40:51.5801241Z","updatedOn":"2019-05-30T05:40:51.5801241Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10e93af6-2d05-4e09-9cd8-d926a21b5f7e","type":"Microsoft.Authorization/roleAssignments","name":"10e93af6-2d05-4e09-9cd8-d926a21b5f7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86eddba4-f356-4ed6-ba86-fd1cbfe047bf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T09:13:35.8229209Z","updatedOn":"2019-11-13T09:13:35.8229209Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/807e7f63-c8b6-4a73-ae0f-0a9db3f59da8","type":"Microsoft.Authorization/roleAssignments","name":"807e7f63-c8b6-4a73-ae0f-0a9db3f59da8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"86fcac07-0a80-4464-ace0-0dd23eb4b528","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T20:51:53.2630989Z","updatedOn":"2018-11-28T20:51:53.2630989Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f598f88f-98f3-4cb2-99b6-bb53cfee4746","type":"Microsoft.Authorization/roleAssignments","name":"f598f88f-98f3-4cb2-99b6-bb53cfee4746"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"87ae5050-5dca-4740-bd43-aadd802d919e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T06:47:48.1709454Z","updatedOn":"2019-01-16T06:47:48.1709454Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53d85e0d-aaa3-4d7d-a661-5e123e470fc0","type":"Microsoft.Authorization/roleAssignments","name":"53d85e0d-aaa3-4d7d-a661-5e123e470fc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"885ee9c5-df35-4d21-bd29-33d930ef4721","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-08-08T07:30:25.7405858Z","updatedOn":"2019-08-08T07:30:25.7405858Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e1de6d0-412e-4425-8e11-897f4aa32d65","type":"Microsoft.Authorization/roleAssignments","name":"9e1de6d0-412e-4425-8e11-897f4aa32d65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"888287be-1758-492b-a9df-f99a65e928a9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-23T05:39:19.6358987Z","updatedOn":"2019-05-23T05:39:19.6358987Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f6286d7-b327-4bc5-8515-b736e36aba87","type":"Microsoft.Authorization/roleAssignments","name":"3f6286d7-b327-4bc5-8515-b736e36aba87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88c9f7f7-c720-43b2-ac50-d7d5a76e7b9c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-22T06:48:42.2936439Z","updatedOn":"2018-11-22T06:48:42.2936439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44e14919-123f-4731-bf81-69e94a33fcc7","type":"Microsoft.Authorization/roleAssignments","name":"44e14919-123f-4731-bf81-69e94a33fcc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"88cdf2e8-5bc2-4ca0-8e23-74e541c26422","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-12T06:50:17.5434069Z","updatedOn":"2018-12-12T06:50:17.5434069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09f95a7b-cede-4f56-8d5f-04b29960fa0a","type":"Microsoft.Authorization/roleAssignments","name":"09f95a7b-cede-4f56-8d5f-04b29960fa0a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"89149cc0-7878-455f-8a31-96d855a63bdd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-14T06:45:38.8092576Z","updatedOn":"2018-11-14T06:45:38.8092576Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea25ecfd-48d0-476c-8f69-aabe91c96e47","type":"Microsoft.Authorization/roleAssignments","name":"ea25ecfd-48d0-476c-8f69-aabe91c96e47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a41c179-d22b-43ae-83f0-1f5515bb245f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:19.2136302Z","updatedOn":"2019-04-09T06:35:19.2136302Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd39d246-f152-4e96-af84-3ac161b5aafa","type":"Microsoft.Authorization/roleAssignments","name":"fd39d246-f152-4e96-af84-3ac161b5aafa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a7045fa-9fee-486e-ba3e-33c1a9c89c2c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:24.9082258Z","updatedOn":"2019-01-30T06:54:24.9082258Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacf3561-43a4-47d3-9b6c-fe09ab0e2484","type":"Microsoft.Authorization/roleAssignments","name":"cacf3561-43a4-47d3-9b6c-fe09ab0e2484"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8a78addb-7a34-4e2f-8838-b6ec9b8b5628","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-05T08:35:55.7825128Z","updatedOn":"2019-09-05T08:35:55.7825128Z","createdBy":"6ba8d12f-faf3-4859-918b-80f93e471e38","updatedBy":"6ba8d12f-faf3-4859-918b-80f93e471e38"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df98f1e4-c153-4ad2-b1eb-ae54fd649883","type":"Microsoft.Authorization/roleAssignments","name":"df98f1e4-c153-4ad2-b1eb-ae54fd649883"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b4a28be-63be-4e50-91ca-ab9f88d1e441","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:47:20.3790319Z","updatedOn":"2019-06-18T05:47:20.3790319Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aff8bc7d-a807-4428-aeb0-afc34fb52e93","type":"Microsoft.Authorization/roleAssignments","name":"aff8bc7d-a807-4428-aeb0-afc34fb52e93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8b600b42-5019-4514-ad2e-14d3b20ff9df","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-11T05:39:34.9112754Z","updatedOn":"2018-10-11T05:39:34.9112754Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29789408-9895-46a1-acb1-664dec3c8872","type":"Microsoft.Authorization/roleAssignments","name":"29789408-9895-46a1-acb1-664dec3c8872"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cce118b-f45a-411d-b076-4f849efb6ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:20:31.2207711Z","updatedOn":"2019-06-27T05:20:31.2207711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1c6637af-06cb-46b6-a62f-a9e2a62cad31","type":"Microsoft.Authorization/roleAssignments","name":"1c6637af-06cb-46b6-a62f-a9e2a62cad31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce13a5d-7120-4635-b792-8cc697798e81","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-03T05:23:07.9499351Z","updatedOn":"2019-10-03T05:23:07.9499351Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7","type":"Microsoft.Authorization/roleAssignments","name":"ca192630-0f9b-47ea-bc2a-0cc0f9dc27d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8ce997ec-1f2a-4796-8b19-e02bf979ffa5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:39:53.3017512Z","updatedOn":"2019-05-18T05:39:53.3017512Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7059ba-fadd-47d2-a59a-ee611e3d77dd","type":"Microsoft.Authorization/roleAssignments","name":"7f7059ba-fadd-47d2-a59a-ee611e3d77dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8cea47c6-3e90-4421-8cb2-d9c649b5c0ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-10T02:29:16.1041985Z","updatedOn":"2019-02-10T02:29:16.1041985Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c7b4a4-ec46-40e8-83cc-1d65e8b5d665","type":"Microsoft.Authorization/roleAssignments","name":"77c7b4a4-ec46-40e8-83cc-1d65e8b5d665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8d283b1c-4ca3-490f-8401-4b05f5b57656","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-04T07:22:15.2349889Z","updatedOn":"2019-01-04T07:22:15.2349889Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a8632df-430e-40c5-9ba8-531b084eb015","type":"Microsoft.Authorization/roleAssignments","name":"3a8632df-430e-40c5-9ba8-531b084eb015"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8dd7bd0c-715c-45e3-b5fe-a597edc16699","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-25T10:12:32.4633786Z","updatedOn":"2019-01-25T10:12:32.4633786Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d3a1780-6c4e-4c47-8f6d-edd8173e50ed","type":"Microsoft.Authorization/roleAssignments","name":"0d3a1780-6c4e-4c47-8f6d-edd8173e50ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8df306d5-4e1b-4510-840b-9c56ef056301","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T06:47:54.6022805Z","updatedOn":"2018-11-07T06:47:54.6022805Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfdc3356-78c4-408d-93ab-c2dffd9f4578","type":"Microsoft.Authorization/roleAssignments","name":"bfdc3356-78c4-408d-93ab-c2dffd9f4578"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8e18e49b-6e52-4124-ac14-f42e6c82c512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-28T05:44:44.2494251Z","updatedOn":"2019-06-28T05:44:44.2494251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c9e2473-0b99-4449-93dd-5e74e5d7e3c1","type":"Microsoft.Authorization/roleAssignments","name":"3c9e2473-0b99-4449-93dd-5e74e5d7e3c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8eb60d07-7fb4-4d38-b600-9c7c398ea28b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:34:29.0093148Z","updatedOn":"2019-04-23T05:34:29.0093148Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff24f92f-f8b2-4d0c-a12d-5d3466a1f107","type":"Microsoft.Authorization/roleAssignments","name":"ff24f92f-f8b2-4d0c-a12d-5d3466a1f107"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"8fc68847-fe15-4731-9c9c-1d440ec89270","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-26T07:09:45.8107484Z","updatedOn":"2019-02-26T07:09:45.8107484Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d06ea5ab-8242-445f-8edd-c50382796e81","type":"Microsoft.Authorization/roleAssignments","name":"d06ea5ab-8242-445f-8edd-c50382796e81"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"902a11a4-40a1-4c17-9139-0070bb53eca4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-30T05:45:40.0344224Z","updatedOn":"2018-10-30T05:45:40.0344224Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7","type":"Microsoft.Authorization/roleAssignments","name":"6252f8b0-3f8d-43c2-9bf0-8cdf5fed63e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9042fba9-7801-4f46-8c28-af4a76a10433","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-01T05:35:32.5787562Z","updatedOn":"2019-05-01T05:35:32.5787562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2947240-7bbf-4ab3-ba2b-457afe1f9083","type":"Microsoft.Authorization/roleAssignments","name":"e2947240-7bbf-4ab3-ba2b-457afe1f9083"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c32522-8d64-4774-85ee-3abd6d9cb372","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T06:48:31.8103069Z","updatedOn":"2018-12-20T06:48:31.8103069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66ab78c8-dc8e-410d-a387-d621e4037311","type":"Microsoft.Authorization/roleAssignments","name":"66ab78c8-dc8e-410d-a387-d621e4037311"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90c3d926-9c03-4d90-86f4-12866a6da212","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T20:57:30.6864609Z","updatedOn":"2019-04-02T20:57:30.6864609Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bf3be37-b85e-49f9-ace5-e14c018302b5","type":"Microsoft.Authorization/roleAssignments","name":"6bf3be37-b85e-49f9-ace5-e14c018302b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"90e83a65-4688-4dfd-93c3-210e9783e992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T07:08:13.7709623Z","updatedOn":"2019-02-21T07:08:13.7709623Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed92bed5-5125-4ac3-9c0e-5c751266239f","type":"Microsoft.Authorization/roleAssignments","name":"ed92bed5-5125-4ac3-9c0e-5c751266239f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"91350478-d2f8-41ef-9cb7-42545ea342c7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T00:36:16.8902719Z","updatedOn":"2018-09-27T00:36:16.8902719Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f03fbd61-1898-497e-b5b0-aa2def1286f8","type":"Microsoft.Authorization/roleAssignments","name":"f03fbd61-1898-497e-b5b0-aa2def1286f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92db2019-9cdc-4e7d-9249-9b069ca42081","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-04T05:11:10.3936053Z","updatedOn":"2019-04-04T05:11:10.3936053Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5b439b9-3f5e-441a-ab53-af1d2385f640","type":"Microsoft.Authorization/roleAssignments","name":"a5b439b9-3f5e-441a-ab53-af1d2385f640"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"92fd0c36-95b6-4540-9c6d-4cc1dba575ce","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T06:50:06.1336080Z","updatedOn":"2019-06-12T06:50:06.1336080Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09ba6b34-76e4-463c-9eec-e73b793f71e2","type":"Microsoft.Authorization/roleAssignments","name":"09ba6b34-76e4-463c-9eec-e73b793f71e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94b95a0b-b2a4-4641-892c-d78dd996e39e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-17T08:52:33.3535638Z","updatedOn":"2018-09-17T08:52:33.3535638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f3fafc1-9de7-4719-bd1b-9df30f1c574e","type":"Microsoft.Authorization/roleAssignments","name":"5f3fafc1-9de7-4719-bd1b-9df30f1c574e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"94e0c796-2393-4338-86ca-ac74457a7d4b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:39:29.3097032Z","updatedOn":"2019-05-16T05:39:29.3097032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f3529d-5eb5-4014-958d-048b3d6a3428","type":"Microsoft.Authorization/roleAssignments","name":"68f3529d-5eb5-4014-958d-048b3d6a3428"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9526235b-a8d3-4db5-94e2-2194761f04ab","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-29T21:05:48.1770851Z","updatedOn":"2019-04-29T21:05:48.1770851Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a400d86-7ca4-44d1-ab4d-c066fd01258f","type":"Microsoft.Authorization/roleAssignments","name":"2a400d86-7ca4-44d1-ab4d-c066fd01258f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"956a52f7-9996-4c8f-953a-66ecc7b451fd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T17:23:11.9575182Z","updatedOn":"2018-09-20T17:23:11.9575182Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0066587c-01c9-479d-8340-55aafbe67b24","type":"Microsoft.Authorization/roleAssignments","name":"0066587c-01c9-479d-8340-55aafbe67b24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"95a583f2-61d2-4237-a127-c85658478534","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T10:26:39.0170505Z","updatedOn":"2018-11-02T10:26:39.0170505Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ed51071-ce4e-466c-bca6-629e2053b7a8","type":"Microsoft.Authorization/roleAssignments","name":"9ed51071-ce4e-466c-bca6-629e2053b7a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"966839c9-4964-4642-9c76-4eb430fbb0dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T06:35:32.5337994Z","updatedOn":"2019-04-30T06:35:32.5337994Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81eda284-d81f-48d8-84ef-cc4207c6e86d","type":"Microsoft.Authorization/roleAssignments","name":"81eda284-d81f-48d8-84ef-cc4207c6e86d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"96ce046c-a39e-4dcc-a9c7-26d1604294d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T00:33:20.5140104Z","updatedOn":"2018-10-10T00:33:20.5140104Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b54cb9c8-c8e3-4adc-86b5-f6dd436a794e","type":"Microsoft.Authorization/roleAssignments","name":"b54cb9c8-c8e3-4adc-86b5-f6dd436a794e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"973fdd79-4ab9-438e-87c3-954cca1889e1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T19:09:54.9071757Z","updatedOn":"2018-09-21T19:09:54.9071757Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4890276-7fa1-47a7-9d82-f0a4ceff9bd6","type":"Microsoft.Authorization/roleAssignments","name":"a4890276-7fa1-47a7-9d82-f0a4ceff9bd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"97a313c7-04c3-4f12-833e-7c3618d39fcf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T02:03:26.0775557Z","updatedOn":"2019-10-16T02:03:26.0775557Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/152b2f63-3360-4ab8-a651-02b6dd4a11cc","type":"Microsoft.Authorization/roleAssignments","name":"152b2f63-3360-4ab8-a651-02b6dd4a11cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99220f34-fe4d-4bb9-a54f-8cef2c114bec","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T02:24:15.1904918Z","updatedOn":"2019-11-13T02:24:15.1904918Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35b39af0-258c-488a-91d0-a744d937d7d0","type":"Microsoft.Authorization/roleAssignments","name":"35b39af0-258c-488a-91d0-a744d937d7d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99700559-cdad-4091-a4d3-7d3c7c00aa13","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T23:46:59.6876593Z","updatedOn":"2018-10-22T23:46:59.6876593Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498ba808-50e6-458a-8424-7f2d7f2a7301","type":"Microsoft.Authorization/roleAssignments","name":"498ba808-50e6-458a-8424-7f2d7f2a7301"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"99a420c5-4e79-4f11-8c23-32753b52724a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-23T05:09:11.0675968Z","updatedOn":"2019-03-23T05:09:11.0675968Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf2e130b-d004-4383-9804-06c2171b0288","type":"Microsoft.Authorization/roleAssignments","name":"bf2e130b-d004-4383-9804-06c2171b0288"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a6dc341-d468-44d6-94be-2d4821992bad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-03T05:43:48.8223435Z","updatedOn":"2018-11-03T05:43:48.8223435Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21dcd364-1ea4-48fa-b1ae-0cd08879ce76","type":"Microsoft.Authorization/roleAssignments","name":"21dcd364-1ea4-48fa-b1ae-0cd08879ce76"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9a9bb0ad-706d-4fac-9148-ac7bafbed792","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-18T05:19:55.3235159Z","updatedOn":"2019-06-18T05:19:55.3235159Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b57ee67-74d0-4464-a426-91c542941aeb","type":"Microsoft.Authorization/roleAssignments","name":"7b57ee67-74d0-4464-a426-91c542941aeb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9ab4b53a-f653-4435-96a3-d3aefff7cb58","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T18:12:41.8499729Z","updatedOn":"2019-03-06T18:12:41.8499729Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f74c3436-bfae-4d2b-a166-4d0c02c0c4c6","type":"Microsoft.Authorization/roleAssignments","name":"f74c3436-bfae-4d2b-a166-4d0c02c0c4c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9aba653f-e80e-448b-afcd-1a47869d89f0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-04T05:42:13.7118153Z","updatedOn":"2019-06-04T05:42:13.7118153Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc4a8add-51e0-4d4c-8e77-c47ec8fd7175","type":"Microsoft.Authorization/roleAssignments","name":"cc4a8add-51e0-4d4c-8e77-c47ec8fd7175"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9afc95b9-edfd-448c-bb0b-1b7abf1c6fc9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-10T06:48:45.7376251Z","updatedOn":"2019-01-10T06:48:45.7376251Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7110ba81-9350-423e-92d4-28acbc736450","type":"Microsoft.Authorization/roleAssignments","name":"7110ba81-9350-423e-92d4-28acbc736450"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b2c325b-5fe9-4e47-a282-fa1abcf8776a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-15T16:29:06.8822482Z","updatedOn":"2019-04-15T16:29:06.8822482Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/977d6039-fe49-4c53-86ac-b161e9dd6c8c","type":"Microsoft.Authorization/roleAssignments","name":"977d6039-fe49-4c53-86ac-b161e9dd6c8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9b78ddbe-f951-4b54-8664-a1d1e733b57b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:45:44.9172054Z","updatedOn":"2019-06-13T05:45:44.9172054Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee329a91-9efc-4ef8-a257-ea59b003c3c9","type":"Microsoft.Authorization/roleAssignments","name":"ee329a91-9efc-4ef8-a257-ea59b003c3c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9bab0d02-a25b-4b5e-b9be-4f9a49dadba2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-01T15:18:36.3066640Z","updatedOn":"2018-10-01T15:18:36.3066640Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7d430e5-ff53-4dd4-ace1-379422b85604","type":"Microsoft.Authorization/roleAssignments","name":"c7d430e5-ff53-4dd4-ace1-379422b85604"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9c42adac-d61f-4d8f-8132-e31693de6e8e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-11T05:45:52.8300069Z","updatedOn":"2019-07-11T05:45:52.8300069Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3795c22-f90a-4f8d-ac89-21f706d82187","type":"Microsoft.Authorization/roleAssignments","name":"c3795c22-f90a-4f8d-ac89-21f706d82187"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9da0e757-9f4e-4543-943c-6b16fe5f0f4c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T04:28:01.1738154Z","updatedOn":"2018-10-19T04:28:01.1738154Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ec5ac44-f810-40ad-9487-19d76f80cea6","type":"Microsoft.Authorization/roleAssignments","name":"7ec5ac44-f810-40ad-9487-19d76f80cea6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9dba7961-7957-481c-8051-8071dafadda8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-13T05:22:07.3061671Z","updatedOn":"2019-06-13T05:22:07.3061671Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ced9f0b-a5bf-477c-af42-f9b39bceae30","type":"Microsoft.Authorization/roleAssignments","name":"9ced9f0b-a5bf-477c-af42-f9b39bceae30"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9f3b7506-275d-42ac-b3f0-6be0759f6b33","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:21.5433604Z","updatedOn":"2019-04-06T06:34:21.5433604Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cb49b8-5b1f-47c4-80ec-317954d04d9d","type":"Microsoft.Authorization/roleAssignments","name":"28cb49b8-5b1f-47c4-80ec-317954d04d9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fa4707d-784f-40ba-a6eb-42ee9334d0d0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T04:45:06.2466603Z","updatedOn":"2019-04-14T04:45:06.2466603Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb46e4a6-a08b-4eca-a141-d72826228a9d","type":"Microsoft.Authorization/roleAssignments","name":"bb46e4a6-a08b-4eca-a141-d72826228a9d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"9fdcac14-69e2-4d18-b9ed-ef5b07406baa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-21T04:07:17.7698444Z","updatedOn":"2019-02-21T04:07:17.7698444Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f34531c-c5ee-4068-9f91-c70364da9bd3","type":"Microsoft.Authorization/roleAssignments","name":"6f34531c-c5ee-4068-9f91-c70364da9bd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0101678-1509-4141-95fa-906232f58867","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-22T09:41:29.1946029Z","updatedOn":"2018-10-22T09:41:29.1946029Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/659bf497-76cb-48d2-985b-5eaa381210cf","type":"Microsoft.Authorization/roleAssignments","name":"659bf497-76cb-48d2-985b-5eaa381210cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0626b63-67c7-4a1f-bfa4-7a6aa4ef02af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-12T05:41:53.7995554Z","updatedOn":"2019-07-12T05:41:53.7995554Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94316f4a-b82a-46d2-ae7d-c45081e1f975","type":"Microsoft.Authorization/roleAssignments","name":"94316f4a-b82a-46d2-ae7d-c45081e1f975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a0a6bb6b-a1a1-44e2-a28e-92734bf9f1dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-10T00:41:50.9338611Z","updatedOn":"2018-11-10T00:41:50.9338611Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6da3558-59f7-4a94-b6da-b6e00a41f6ff","type":"Microsoft.Authorization/roleAssignments","name":"f6da3558-59f7-4a94-b6da-b6e00a41f6ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a181cdd4-c095-4eeb-b32a-2530da83e0be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-29T04:42:39.0364865Z","updatedOn":"2019-10-29T04:42:39.0364865Z","createdBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459","updatedBy":"5b5e6b07-55b8-419b-a446-20fe0aa5b459"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/996ff6f9-6439-4ecf-b98c-91e75e12a91e","type":"Microsoft.Authorization/roleAssignments","name":"996ff6f9-6439-4ecf-b98c-91e75e12a91e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2306cdc-0c7d-4856-8c8b-179afa5299a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-06T01:58:36.8350229Z","updatedOn":"2019-03-06T01:58:36.8350229Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb9abd22-00ae-4e62-9a4a-0afa7174c822","type":"Microsoft.Authorization/roleAssignments","name":"cb9abd22-00ae-4e62-9a4a-0afa7174c822"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a253c971-5961-4bf9-be61-111a0c28e80b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-12T11:40:41.4834850Z","updatedOn":"2018-10-12T11:40:41.4834850Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3694ba0d-4c2f-4771-a037-7c5834e6b69e","type":"Microsoft.Authorization/roleAssignments","name":"3694ba0d-4c2f-4771-a037-7c5834e6b69e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a29cca37-9663-47fe-b567-0a47abbb526a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-08T06:40:53.5249439Z","updatedOn":"2019-05-08T06:40:53.5249439Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96bbdfbe-163c-4416-99e3-2866d37e0d92","type":"Microsoft.Authorization/roleAssignments","name":"96bbdfbe-163c-4416-99e3-2866d37e0d92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2b121b2-3976-4aed-bba8-f42a287ff6b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-28T05:38:49.8441700Z","updatedOn":"2019-05-28T05:38:49.8441700Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d72e9c83-2cdd-4497-b4dc-7509eb31d664","type":"Microsoft.Authorization/roleAssignments","name":"d72e9c83-2cdd-4497-b4dc-7509eb31d664"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2e3d7a4-8bcd-4856-9576-c1054a68b3a1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-20T19:18:33.4597803Z","updatedOn":"2018-09-20T19:18:33.4597803Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6b3d842-ced5-432a-a22e-7d28edaa051b","type":"Microsoft.Authorization/roleAssignments","name":"b6b3d842-ced5-432a-a22e-7d28edaa051b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f21203-0d2d-4f60-bcbf-57c55014be3f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-14T06:08:24.5622596Z","updatedOn":"2019-03-14T06:08:24.5622596Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92dcf5f9-a801-4159-833c-48fa1c348ae4","type":"Microsoft.Authorization/roleAssignments","name":"92dcf5f9-a801-4159-833c-48fa1c348ae4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a2f8b5f1-cf81-4433-a02e-2f0b6b7d6b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T07:02:54.6808407Z","updatedOn":"2019-02-14T07:02:54.6808407Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0120b64-5a05-417c-b26f-37be79872dd3","type":"Microsoft.Authorization/roleAssignments","name":"e0120b64-5a05-417c-b26f-37be79872dd3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a310e62b-99ed-420b-a7ba-bf30a913d91e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T14:41:08.7511374Z","updatedOn":"2018-10-26T14:41:08.7511374Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9054c42b-63f5-42ba-a381-d367de7e354a","type":"Microsoft.Authorization/roleAssignments","name":"9054c42b-63f5-42ba-a381-d367de7e354a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a382f1b1-29c8-4bcc-a54c-d02129d5fba9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-27T07:12:23.8891004Z","updatedOn":"2019-02-27T07:12:23.8891004Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb860114-3e39-4861-994f-91819fa0d3ca","type":"Microsoft.Authorization/roleAssignments","name":"eb860114-3e39-4861-994f-91819fa0d3ca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a3b787f3-27c4-4fd7-ba42-4aa10378ac29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-01T06:47:45.9059562Z","updatedOn":"2019-01-01T06:47:45.9059562Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/276ec128-d3f9-4699-82ab-a8ecc970352e","type":"Microsoft.Authorization/roleAssignments","name":"276ec128-d3f9-4699-82ab-a8ecc970352e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a46d0a52-9b2d-46b7-8096-0c6577440bca","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-17T05:42:45.0314363Z","updatedOn":"2019-07-17T05:42:45.0314363Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9267a054-276b-4d49-99cd-898cbff82843","type":"Microsoft.Authorization/roleAssignments","name":"9267a054-276b-4d49-99cd-898cbff82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a4e6a3ef-370d-4b96-8484-0f0e7ae097cc","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-23T04:54:51.7233330Z","updatedOn":"2019-02-23T04:54:51.7233330Z","createdBy":"4a399fbb-7213-47d3-b6ad-59284286d50a","updatedBy":"4a399fbb-7213-47d3-b6ad-59284286d50a"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/44a09d24-8afc-4e6f-8194-92c41bc03d2c","type":"Microsoft.Authorization/roleAssignments","name":"44a09d24-8afc-4e6f-8194-92c41bc03d2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6135302-1245-4266-884a-c8d9c1022c42","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T05:43:42.5439236Z","updatedOn":"2019-06-27T05:43:42.5439236Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f3c2ef7-2a5a-4527-918a-16ac5f0797c5","type":"Microsoft.Authorization/roleAssignments","name":"1f3c2ef7-2a5a-4527-918a-16ac5f0797c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a6f922c4-fa7b-4e31-abd6-3a34d8905883","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T05:46:22.5737011Z","updatedOn":"2019-06-26T05:46:22.5737011Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6416b44d-2f30-4a3a-949b-2e1a26073698","type":"Microsoft.Authorization/roleAssignments","name":"6416b44d-2f30-4a3a-949b-2e1a26073698"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a903f6a3-0f17-47cb-a8b7-7413cce0ed00","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T06:35:27.0632135Z","updatedOn":"2019-04-09T06:35:27.0632135Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13162400-f169-4077-8ffb-c55bbbf1f2c3","type":"Microsoft.Authorization/roleAssignments","name":"13162400-f169-4077-8ffb-c55bbbf1f2c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9b020ad-f332-44b8-a562-ba8932680ed0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-04T20:54:49.0099644Z","updatedOn":"2018-10-04T20:54:49.0099644Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ca46671-c580-41b2-a66a-04a97e0b8a12","type":"Microsoft.Authorization/roleAssignments","name":"4ca46671-c580-41b2-a66a-04a97e0b8a12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"a9ebdc3d-426a-4819-88be-d689e14e68af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T05:19:22.3698974Z","updatedOn":"2019-06-08T05:19:22.3698974Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99e17d3e-d9f8-4981-af91-1ea73dfd9c19","type":"Microsoft.Authorization/roleAssignments","name":"99e17d3e-d9f8-4981-af91-1ea73dfd9c19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa32b4d6-51fb-47cf-89db-5343a594a408","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-07T07:05:00.8674238Z","updatedOn":"2019-03-07T07:05:00.8674238Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56450ccf-742b-447c-8c94-c9fa0cccd67f","type":"Microsoft.Authorization/roleAssignments","name":"56450ccf-742b-447c-8c94-c9fa0cccd67f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa346cd7-57df-4ef3-84ef-2c6bf1a84147","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-16T21:02:16.5038162Z","updatedOn":"2019-01-16T21:02:16.5038162Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c447d599-ba07-4a39-97b7-c4f78abea945","type":"Microsoft.Authorization/roleAssignments","name":"c447d599-ba07-4a39-97b7-c4f78abea945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa49020e-081f-4e28-aa0f-ce32cf21192c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T06:53:09.1738065Z","updatedOn":"2019-01-05T06:53:09.1738065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9393c663-8793-462d-b7fc-7be4e5e910ac","type":"Microsoft.Authorization/roleAssignments","name":"9393c663-8793-462d-b7fc-7be4e5e910ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa585469-c348-4329-97ff-6685945d8f9f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-01T10:27:32.3398145Z","updatedOn":"2018-11-01T10:27:32.3398145Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb","type":"Microsoft.Authorization/roleAssignments","name":"fdcfdb4d-acdd-4bfc-a98d-12fce99e9bbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aa9f2ecf-86e4-4633-858e-4f06b9b2c674","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-12T06:50:19.0980758Z","updatedOn":"2019-01-12T06:50:19.0980758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98c8253a-98e0-43be-8515-01078e1b37a3","type":"Microsoft.Authorization/roleAssignments","name":"98c8253a-98e0-43be-8515-01078e1b37a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aaa8709f-51cc-4e4e-b04e-3eb5e6967aeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T17:13:59.1800159Z","updatedOn":"2018-10-09T17:13:59.1800159Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa399f79-9804-482f-b7b6-96e8bb4bcfe4","type":"Microsoft.Authorization/roleAssignments","name":"aa399f79-9804-482f-b7b6-96e8bb4bcfe4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"abe86823-0d18-480f-a03e-9f6e577e5485","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-27T06:43:35.6391599Z","updatedOn":"2019-12-27T06:43:35.6391599Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e15572c-0582-4238-bdf5-233d0e565758","type":"Microsoft.Authorization/roleAssignments","name":"7e15572c-0582-4238-bdf5-233d0e565758"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ac49f0af-daf1-40c5-a7c5-976a80349806","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T19:29:43.0393638Z","updatedOn":"2019-02-25T19:29:43.0393638Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2990befc-9d32-467c-82e6-f6d4b9989731","type":"Microsoft.Authorization/roleAssignments","name":"2990befc-9d32-467c-82e6-f6d4b9989731"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"acb8599a-fee7-4e6b-89f0-755bb9235ca3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-28T06:55:35.7163035Z","updatedOn":"2018-11-28T06:55:35.7163035Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6795cd6-9bda-4c50-a653-8bf472745dbe","type":"Microsoft.Authorization/roleAssignments","name":"d6795cd6-9bda-4c50-a653-8bf472745dbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad22f583-cfed-469a-af2c-3a63adc692a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-30T05:17:52.1695867Z","updatedOn":"2019-05-30T05:17:52.1695867Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab733cd2-c79e-4ef1-8304-26236dd7b8e9","type":"Microsoft.Authorization/roleAssignments","name":"ab733cd2-c79e-4ef1-8304-26236dd7b8e9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ad2a4f4e-f5f5-436e-8a66-36782fc0d145","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-04T02:36:49.3740605Z","updatedOn":"2019-03-04T02:36:49.3740605Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2261f8b8-19c4-4ec2-9859-59873467d680","type":"Microsoft.Authorization/roleAssignments","name":"2261f8b8-19c4-4ec2-9859-59873467d680"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae422a89-c704-46a4-a5f1-860067cd5639","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T09:39:57.1667198Z","updatedOn":"2018-10-24T09:39:57.1667198Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06","type":"Microsoft.Authorization/roleAssignments","name":"8c3f6108-77a2-4f2a-ae1a-2fdf20e40e06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ae5ed965-de4e-41c6-96ed-b1ac228ac3e0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-18T07:23:49.1957806Z","updatedOn":"2018-12-18T07:23:49.1957806Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b946408-cb9c-48c3-bf88-4f958bd8bd8a","type":"Microsoft.Authorization/roleAssignments","name":"7b946408-cb9c-48c3-bf88-4f958bd8bd8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"aeaa17a8-25b1-4bda-bdcf-6e2e71d8b8f3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-23T20:37:26.5606718Z","updatedOn":"2018-09-23T20:37:26.5606718Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48f82201-5bd1-4593-a8b4-39ecdb9a826b","type":"Microsoft.Authorization/roleAssignments","name":"48f82201-5bd1-4593-a8b4-39ecdb9a826b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af2835f4-355e-4f7a-8806-fa234f9602a6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-03T01:01:05.9757195Z","updatedOn":"2019-03-03T01:01:05.9757195Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27300599-bdb3-4549-b0ee-af58cad290d7","type":"Microsoft.Authorization/roleAssignments","name":"27300599-bdb3-4549-b0ee-af58cad290d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"af9ee309-627b-44ad-bea5-73549c125a36","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-06T06:50:46.0224585Z","updatedOn":"2018-12-06T06:50:46.0224585Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38a72942-3dbe-41f3-ada7-bd13a2d71969","type":"Microsoft.Authorization/roleAssignments","name":"38a72942-3dbe-41f3-ada7-bd13a2d71969"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"afd97d40-49c6-45c4-b0e4-eb8d482b2254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T05:14:49.2526346Z","updatedOn":"2019-05-07T05:14:49.2526346Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/524ba7d7-94a1-4193-bd4e-d0a8d94dacca","type":"Microsoft.Authorization/roleAssignments","name":"524ba7d7-94a1-4193-bd4e-d0a8d94dacca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b0f12759-0161-43ef-8e8a-23e651dfc0af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-19T12:58:31.5231479Z","updatedOn":"2018-12-19T12:58:31.5231479Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a312231-26e4-487f-b4a9-ecbd34790339","type":"Microsoft.Authorization/roleAssignments","name":"6a312231-26e4-487f-b4a9-ecbd34790339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b14ede10-7826-45a2-b58c-318e681015b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-22T06:51:17.8639291Z","updatedOn":"2019-01-22T06:51:17.8639291Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f7af73d-d2e8-4551-883e-a1792a6a3a9f","type":"Microsoft.Authorization/roleAssignments","name":"3f7af73d-d2e8-4551-883e-a1792a6a3a9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b15e09ba-9556-4000-82b7-81dea127e876","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-24T18:43:50.8559602Z","updatedOn":"2018-09-24T18:43:50.8559602Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0182c1e-da2b-4fa2-91b4-51b44e8b83b8","type":"Microsoft.Authorization/roleAssignments","name":"e0182c1e-da2b-4fa2-91b4-51b44e8b83b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b1cea468-9832-4438-96fe-a593593bc811","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T05:11:57.6195736Z","updatedOn":"2019-04-16T05:11:57.6195736Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b1e04fb-4046-42e1-9b51-9bcfff506586","type":"Microsoft.Authorization/roleAssignments","name":"1b1e04fb-4046-42e1-9b51-9bcfff506586"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b261b198-dfa2-4c79-af2a-d9e337cfe5e2","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-05T06:48:52.8231877Z","updatedOn":"2018-12-05T06:48:52.8231877Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22e72f12-e2e0-45eb-9e39-d06a80340c7f","type":"Microsoft.Authorization/roleAssignments","name":"22e72f12-e2e0-45eb-9e39-d06a80340c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b26fb5b3-9f4a-4ac4-9796-29c6f896aaef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-18T06:43:57.8756064Z","updatedOn":"2019-11-18T06:43:57.8756064Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d577d4e8-7222-4591-9ccd-1cdaeb2f5dd8","type":"Microsoft.Authorization/roleAssignments","name":"d577d4e8-7222-4591-9ccd-1cdaeb2f5dd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b2808f7d-4a88-40f8-afe0-6effec977b10","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-10T05:37:58.2224362Z","updatedOn":"2019-05-10T05:37:58.2224362Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/175b452d-5cc7-44c4-8dcb-176c44f83e95","type":"Microsoft.Authorization/roleAssignments","name":"175b452d-5cc7-44c4-8dcb-176c44f83e95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b284265d-7d2d-4064-9730-d3fb6d49ffc8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-26T19:08:05.4405957Z","updatedOn":"2018-09-26T19:08:05.4405957Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee27c820-20f6-4010-9fe8-beb7dbfdd346","type":"Microsoft.Authorization/roleAssignments","name":"ee27c820-20f6-4010-9fe8-beb7dbfdd346"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3287717-53bc-443a-80c6-d6ce0f67d254","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-20T10:48:29.2424188Z","updatedOn":"2019-02-20T10:48:29.2424188Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/884adc0d-4e9c-47c7-9a8e-6d796cef4b4a","type":"Microsoft.Authorization/roleAssignments","name":"884adc0d-4e9c-47c7-9a8e-6d796cef4b4a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b356511a-3b5c-4810-9575-d4d703f34507","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T06:40:22.3394494Z","updatedOn":"2019-05-14T06:40:22.3394494Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1149e65-c253-4666-9bce-684b10a05773","type":"Microsoft.Authorization/roleAssignments","name":"a1149e65-c253-4666-9bce-684b10a05773"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b3c65970-4a68-4ca0-b390-f95b599302ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-28T07:12:36.6368711Z","updatedOn":"2019-02-28T07:12:36.6368711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa39d789-620c-486f-a0ee-6b865665ff63","type":"Microsoft.Authorization/roleAssignments","name":"fa39d789-620c-486f-a0ee-6b865665ff63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b40cfee1-4c2d-452a-b44f-575ae40a8e45","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-20T05:44:08.3454638Z","updatedOn":"2018-10-20T05:44:08.3454638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8226950-1330-4e58-820d-72304e1c5646","type":"Microsoft.Authorization/roleAssignments","name":"e8226950-1330-4e58-820d-72304e1c5646"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4542d7d-6a56-4352-8b6c-c6559ced173e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-14T09:44:26.1478824Z","updatedOn":"2019-02-14T09:44:26.1478824Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23c74aca-09b5-476f-8bfe-53a2f186a2bf","type":"Microsoft.Authorization/roleAssignments","name":"23c74aca-09b5-476f-8bfe-53a2f186a2bf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b46a50ce-6f5a-497c-8018-cc0a22b7af49","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T05:16:15.6414516Z","updatedOn":"2019-05-18T05:16:15.6414516Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b0a6c82-8d5e-463b-9a0a-0928f8966048","type":"Microsoft.Authorization/roleAssignments","name":"8b0a6c82-8d5e-463b-9a0a-0928f8966048"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b48168c3-719a-4759-8136-7c968992d4c5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-27T05:37:22.4586770Z","updatedOn":"2019-04-27T05:37:22.4586770Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a2f7cea1-332c-445c-80ed-5ce645ebbb3b","type":"Microsoft.Authorization/roleAssignments","name":"a2f7cea1-332c-445c-80ed-5ce645ebbb3b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b4b4e928-9dfb-4d4e-be44-edd40b30e54d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-17T05:41:28.2668758Z","updatedOn":"2019-05-17T05:41:28.2668758Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e02c4cbe-82f7-46cc-a7a0-4e4fec122637","type":"Microsoft.Authorization/roleAssignments","name":"e02c4cbe-82f7-46cc-a7a0-4e4fec122637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b5a4a66a-cfd4-49d5-8176-3853f76f06b9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:49:40.6763834Z","updatedOn":"2018-09-18T23:49:40.6763834Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/011b3c5e-fb1f-4e86-bd96-30484982ba84","type":"Microsoft.Authorization/roleAssignments","name":"011b3c5e-fb1f-4e86-bd96-30484982ba84"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b6c26947-20b2-4a64-b80f-44f8290cd1bc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-27T05:45:21.9378726Z","updatedOn":"2018-10-27T05:45:21.9378726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80273883-944e-4a02-bf1c-ea766d25fd24","type":"Microsoft.Authorization/roleAssignments","name":"80273883-944e-4a02-bf1c-ea766d25fd24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b781bab2-120a-4856-bb2e-b09c8fea0830","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-24T16:33:25.4669072Z","updatedOn":"2019-02-24T16:33:25.4669072Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00ed8c7c-f210-4034-b75b-8d80362aa1bc","type":"Microsoft.Authorization/roleAssignments","name":"00ed8c7c-f210-4034-b75b-8d80362aa1bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7a5c9dc-d498-401a-9905-ca8aff22b5e4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-30T05:10:34.8900726Z","updatedOn":"2019-03-30T05:10:34.8900726Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9f5109-8847-41bd-b0d4-ab5e1d90283f","type":"Microsoft.Authorization/roleAssignments","name":"8d9f5109-8847-41bd-b0d4-ab5e1d90283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7b6c717-3e9b-4238-83be-88859e1af527","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-11T06:48:36.5214424Z","updatedOn":"2019-01-11T06:48:36.5214424Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a15106-be24-4076-8ddc-ff1516a902a8","type":"Microsoft.Authorization/roleAssignments","name":"80a15106-be24-4076-8ddc-ff1516a902a8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b87eaab1-09df-43b9-94df-c48de3ca9fd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-02T05:13:34.4204279Z","updatedOn":"2019-05-02T05:13:34.4204279Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9f44a37-d753-44f3-9558-fe38588b564b","type":"Microsoft.Authorization/roleAssignments","name":"e9f44a37-d753-44f3-9558-fe38588b564b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b93cb31a-c1af-40df-9de5-c323f7adf817","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-19T05:48:18.5335575Z","updatedOn":"2018-10-19T05:48:18.5335575Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2972b8c-3494-4141-badc-de7508941ddf","type":"Microsoft.Authorization/roleAssignments","name":"d2972b8c-3494-4141-badc-de7508941ddf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"baa56935-952a-43ce-84f4-d3c01b700b5c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-24T05:43:22.2691800Z","updatedOn":"2018-10-24T05:43:22.2691800Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3960217-4c25-4759-ab03-f8208524e7b4","type":"Microsoft.Authorization/roleAssignments","name":"e3960217-4c25-4759-ab03-f8208524e7b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bad1513e-0d0b-49b2-8a5b-be1d3f48ded5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-13T06:48:00.1454038Z","updatedOn":"2018-11-13T06:48:00.1454038Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47e10457-1640-4e72-8f8a-03f5981383d7","type":"Microsoft.Authorization/roleAssignments","name":"47e10457-1640-4e72-8f8a-03f5981383d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bb2a5902-4c8c-4af8-91f1-d7a8268e73ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-23T20:18:17.1387327Z","updatedOn":"2018-11-23T20:18:17.1387327Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eae11fff-74b2-4a75-a923-d4a825bdff7a","type":"Microsoft.Authorization/roleAssignments","name":"eae11fff-74b2-4a75-a923-d4a825bdff7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc7b6508-3587-43db-9af9-2b64c8409b51","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T06:47:46.8169414Z","updatedOn":"2018-12-11T06:47:46.8169414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d58e02e5-5169-469c-bbb1-a2ddb269b310","type":"Microsoft.Authorization/roleAssignments","name":"d58e02e5-5169-469c-bbb1-a2ddb269b310"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bc9c773a-fbe4-4d5b-8058-c9689c349039","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T08:09:40.8547368Z","updatedOn":"2019-09-11T08:09:40.8547368Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f39e25c9-b227-48d2-9185-847dd33a9326","type":"Microsoft.Authorization/roleAssignments","name":"f39e25c9-b227-48d2-9185-847dd33a9326"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"bf5ee090-115d-45c3-baaf-fb715aab751a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-22T06:12:29.6992040Z","updatedOn":"2019-03-22T06:12:29.6992040Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5e3ac77-f857-4a7e-9516-bf5d6978a49c","type":"Microsoft.Authorization/roleAssignments","name":"c5e3ac77-f857-4a7e-9516-bf5d6978a49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c07f6b2d-2fe6-461d-ba0a-29781dabe187","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-06T06:34:55.8846964Z","updatedOn":"2019-04-06T06:34:55.8846964Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ade3299-524c-4863-ba51-99b80d12132b","type":"Microsoft.Authorization/roleAssignments","name":"0ade3299-524c-4863-ba51-99b80d12132b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c0fef8ec-7820-4513-aefb-185ee40ae942","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T06:49:15.9413629Z","updatedOn":"2018-11-06T06:49:15.9413629Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be8c0792-f3a0-4bde-a124-4839576984df","type":"Microsoft.Authorization/roleAssignments","name":"be8c0792-f3a0-4bde-a124-4839576984df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c115ca8d-290f-453d-a030-505970f12fac","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-29T14:46:51.4676579Z","updatedOn":"2018-10-29T14:46:51.4676579Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb","type":"Microsoft.Authorization/roleAssignments","name":"9eb16d0e-1169-4ada-9ef5-2a8d2e19bccb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c11b39f7-26c3-4dfc-8d0f-20dde3187845","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T18:31:05.4586182Z","updatedOn":"2018-12-13T18:31:05.4586182Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4901f853-a3c6-47e4-9495-2aeb09fb4491","type":"Microsoft.Authorization/roleAssignments","name":"4901f853-a3c6-47e4-9495-2aeb09fb4491"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c1a5670d-1c96-40dc-a29e-3a89185addeb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-15T06:50:23.4662065Z","updatedOn":"2018-11-15T06:50:23.4662065Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4830cf2-e9fd-42a6-b102-c3370fb8bc0b","type":"Microsoft.Authorization/roleAssignments","name":"f4830cf2-e9fd-42a6-b102-c3370fb8bc0b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3764ce3-3e3d-439f-92d7-f9b18bb6ce4e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-22T06:49:36.0998904Z","updatedOn":"2018-12-22T06:49:36.0998904Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/861c254f-b71f-49ee-8cee-374230256f41","type":"Microsoft.Authorization/roleAssignments","name":"861c254f-b71f-49ee-8cee-374230256f41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c3c00e31-02de-419f-8409-3725b3856427","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-06T11:21:51.7243563Z","updatedOn":"2018-11-06T11:21:51.7243563Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36af12be-6859-4676-a8e5-c5dfbaa2cd2e","type":"Microsoft.Authorization/roleAssignments","name":"36af12be-6859-4676-a8e5-c5dfbaa2cd2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4189c03-f913-4b8c-a77d-34e1eb436eb6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:39:12.6811204Z","updatedOn":"2019-05-21T05:39:12.6811204Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d33c51c-1683-4dab-8586-879a8a34eea9","type":"Microsoft.Authorization/roleAssignments","name":"3d33c51c-1683-4dab-8586-879a8a34eea9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c483f600-93f7-4d56-8e3e-a40b50356821","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T10:24:13.6577236Z","updatedOn":"2018-10-25T10:24:13.6577236Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1","type":"Microsoft.Authorization/roleAssignments","name":"e37931d4-66bb-4c41-a3f3-ac3ac9d95ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c4fe9d36-16a8-42da-bb6c-2388ec72603c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T23:47:15.8860107Z","updatedOn":"2018-11-12T23:47:15.8860107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7628befb-5807-42c8-b66f-aabebae30fc1","type":"Microsoft.Authorization/roleAssignments","name":"7628befb-5807-42c8-b66f-aabebae30fc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c50540b9-3342-46de-894a-3dff2f639687","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-18T02:29:01.1918326Z","updatedOn":"2019-10-18T02:29:01.1918326Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33f93f57-2d31-4a40-be24-bc1bcf23dd91","type":"Microsoft.Authorization/roleAssignments","name":"33f93f57-2d31-4a40-be24-bc1bcf23dd91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c54aad68-3150-44c3-802d-e7da8c47ea5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-06T07:05:12.9555216Z","updatedOn":"2019-02-06T07:05:12.9555216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16021127-cd72-4170-a1ac-2b70be097b9a","type":"Microsoft.Authorization/roleAssignments","name":"16021127-cd72-4170-a1ac-2b70be097b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c55cf64d-29d9-462d-8dbc-c0d2ab4716e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-25T20:11:57.5033211Z","updatedOn":"2019-02-25T20:11:57.5033211Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebc41276-3624-42d1-b5e8-427fd5a11e2b","type":"Microsoft.Authorization/roleAssignments","name":"ebc41276-3624-42d1-b5e8-427fd5a11e2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c5c34086-aa9d-4c49-a5c6-c29efe356fc7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-16T16:45:58.2054394Z","updatedOn":"2019-10-16T16:45:58.2054394Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b5731b2-3473-4fab-a925-c6297bfd8a78","type":"Microsoft.Authorization/roleAssignments","name":"5b5731b2-3473-4fab-a925-c6297bfd8a78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c70747bf-a786-4775-ad07-573ca03f59f5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-17T16:10:29.3503311Z","updatedOn":"2018-10-17T16:10:29.3503311Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6cce06cd-c998-489e-bfa7-33a4fd344730","type":"Microsoft.Authorization/roleAssignments","name":"6cce06cd-c998-489e-bfa7-33a4fd344730"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c73fc60e-3946-4f1d-8ad2-dae5476373a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-15T03:36:54.0793038Z","updatedOn":"2019-11-15T03:36:54.0793038Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c411e4fe-396b-4c57-96c3-9c6af8a33ed4","type":"Microsoft.Authorization/roleAssignments","name":"c411e4fe-396b-4c57-96c3-9c6af8a33ed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c7df6fc6-dea8-49a2-a8d6-904134c67f5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-16T07:52:11.8559141Z","updatedOn":"2019-09-16T07:52:11.8559141Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d16c3b-9db6-4b40-a1b9-346950c6d9c6","type":"Microsoft.Authorization/roleAssignments","name":"99d16c3b-9db6-4b40-a1b9-346950c6d9c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c956a64b-5110-464a-a294-c8ea39864b5d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-25T17:55:29.6021991Z","updatedOn":"2019-06-25T17:55:29.6021991Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6859b12a-1331-4c52-a51a-8b212a6feb33","type":"Microsoft.Authorization/roleAssignments","name":"6859b12a-1331-4c52-a51a-8b212a6feb33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9b95a3d-e5af-43f9-932f-7136b24dc30b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-25T05:17:02.3079210Z","updatedOn":"2019-05-25T05:17:02.3079210Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0b87fc2-39e3-4ba0-aca5-c5783946a35b","type":"Microsoft.Authorization/roleAssignments","name":"b0b87fc2-39e3-4ba0-aca5-c5783946a35b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"c9e6f60a-7fbf-44f6-8537-5b7904783220","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-14T03:49:22.7298911Z","updatedOn":"2019-04-14T03:49:22.7298911Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7e70c3b-b156-40a6-9d4d-4382572ab74f","type":"Microsoft.Authorization/roleAssignments","name":"e7e70c3b-b156-40a6-9d4d-4382572ab74f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cb115a45-6550-4919-aae8-fab31a876b1f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-07T06:32:08.7018686Z","updatedOn":"2019-05-07T06:32:08.7018686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5428a65d-1272-46af-b893-42a3aaaaab3c","type":"Microsoft.Authorization/roleAssignments","name":"5428a65d-1272-46af-b893-42a3aaaaab3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ccfad4dc-6927-4ea8-a15f-19b3f62c8102","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T05:13:49.1299091Z","updatedOn":"2019-03-28T05:13:49.1299091Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21a964bf-3a3f-49c2-b915-9efd03f5d00f","type":"Microsoft.Authorization/roleAssignments","name":"21a964bf-3a3f-49c2-b915-9efd03f5d00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd271855-eae3-4fe2-bf46-a9d8ca0cd083","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T05:11:27.8036785Z","updatedOn":"2019-04-05T05:11:27.8036785Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc06830-88bb-4279-b1a2-ada28b215cbe","type":"Microsoft.Authorization/roleAssignments","name":"1dc06830-88bb-4279-b1a2-ada28b215cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cd51dabe-4388-449e-86fc-3fdbd6399392","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:29.4661881Z","updatedOn":"2019-01-29T06:54:29.4661881Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c","type":"Microsoft.Authorization/roleAssignments","name":"c6e5c04a-ddcf-4a7e-ad7a-0791b9194e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ce80dfc4-7b3e-4dbd-8c3e-a49427659ad6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-23T05:12:08.2919766Z","updatedOn":"2019-04-23T05:12:08.2919766Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13dae34f-ca2b-4b90-89c6-4aac487b8bbc","type":"Microsoft.Authorization/roleAssignments","name":"13dae34f-ca2b-4b90-89c6-4aac487b8bbc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ceb1d174-81de-49ef-9b29-0ef1abed1597","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T14:39:32.1643609Z","updatedOn":"2018-10-23T14:39:32.1643609Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5be77404-46b2-4a32-aead-8ed887d17b04","type":"Microsoft.Authorization/roleAssignments","name":"5be77404-46b2-4a32-aead-8ed887d17b04"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf24ed58-b70c-4c03-9244-498f59b66c71","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-26T05:11:34.2050879Z","updatedOn":"2019-03-26T05:11:34.2050879Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50121b1c-3060-452a-8932-4cb2f6924601","type":"Microsoft.Authorization/roleAssignments","name":"50121b1c-3060-452a-8932-4cb2f6924601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cf97c4f2-3ee9-4b64-b784-6003cba2ac46","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-04T06:48:49.9299181Z","updatedOn":"2018-12-04T06:48:49.9299181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa5f18a5-8c6f-4a9e-8294-413b58703d9a","type":"Microsoft.Authorization/roleAssignments","name":"aa5f18a5-8c6f-4a9e-8294-413b58703d9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfe54dea-a7e8-4a5b-b175-37dc88d8e99e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T05:49:13.7322169Z","updatedOn":"2018-10-31T05:49:13.7322169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a515592c-c6e5-47e4-9642-c9264fcfa9d7","type":"Microsoft.Authorization/roleAssignments","name":"a515592c-c6e5-47e4-9642-c9264fcfa9d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"cfed68c0-dc27-409e-90c9-db9b72a2d004","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T05:48:01.2890417Z","updatedOn":"2018-10-26T05:48:01.2890417Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baadff0c-524e-43e5-8fd3-0170420f39b1","type":"Microsoft.Authorization/roleAssignments","name":"baadff0c-524e-43e5-8fd3-0170420f39b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d00aa246-4e4d-4221-af66-822a1e403423","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:55:45.3557173Z","updatedOn":"2018-10-23T16:55:45.3557173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ec341a9c-e726-45f9-9f84-7654eda2fdc2","type":"Microsoft.Authorization/roleAssignments","name":"ec341a9c-e726-45f9-9f84-7654eda2fdc2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d0770fbc-c9df-4c0c-aa80-4406d287e609","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T05:47:07.4610935Z","updatedOn":"2019-06-15T05:47:07.4610935Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac2ba190-6fc7-42c4-b3a9-cf21909118b5","type":"Microsoft.Authorization/roleAssignments","name":"ac2ba190-6fc7-42c4-b3a9-cf21909118b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d135367a-3a97-4582-8a81-d6b8e54df03e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-18T06:42:28.3289628Z","updatedOn":"2019-05-18T06:42:28.3289628Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e456abce-82b7-4937-b118-0139e0022167","type":"Microsoft.Authorization/roleAssignments","name":"e456abce-82b7-4937-b118-0139e0022167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1432718-0865-47b5-924b-f51837471e90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T05:56:11.2493227Z","updatedOn":"2018-10-03T05:56:11.2493227Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88950f0a-d656-4cd3-841d-b532fe88baa5","type":"Microsoft.Authorization/roleAssignments","name":"88950f0a-d656-4cd3-841d-b532fe88baa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1956391-fb64-4c80-baa5-f5b7c0fe4679","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T21:42:54.5977945Z","updatedOn":"2018-10-10T21:42:54.5977945Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e762e6fe-78f3-43d4-ab13-e5a3f5316a3c","type":"Microsoft.Authorization/roleAssignments","name":"e762e6fe-78f3-43d4-ab13-e5a3f5316a3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d1f87eac-9245-42d9-95b3-6a753661ab24","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T10:40:51.7814881Z","updatedOn":"2018-11-07T10:40:51.7814881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2169a638-419f-4d7f-9258-29bfee8a0930","type":"Microsoft.Authorization/roleAssignments","name":"2169a638-419f-4d7f-9258-29bfee8a0930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2144bca-85ed-4c2b-b727-8460fb73417b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-28T06:24:15.8315406Z","updatedOn":"2019-03-28T06:24:15.8315406Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38784b28-8cf3-43ae-8dca-d49195e311bd","type":"Microsoft.Authorization/roleAssignments","name":"38784b28-8cf3-43ae-8dca-d49195e311bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d22a37ff-94a3-46b9-a549-e16b8b71a43c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-13T04:51:28.2854740Z","updatedOn":"2019-11-13T04:51:28.2854740Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b362e66e-bf5f-4ba5-adaf-88034544377b","type":"Microsoft.Authorization/roleAssignments","name":"b362e66e-bf5f-4ba5-adaf-88034544377b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d28c917f-58f1-4d8d-a8e7-abb3e204ffd9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-15T06:49:00.8611630Z","updatedOn":"2019-06-15T06:49:00.8611630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80c3c956-9e75-4ce5-9eaa-41b67811e99e","type":"Microsoft.Authorization/roleAssignments","name":"80c3c956-9e75-4ce5-9eaa-41b67811e99e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2b54a4a-fbf6-4ebf-808a-f98e4bb2924f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T10:25:57.1411675Z","updatedOn":"2018-10-23T10:25:57.1411675Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fe54064-c5f3-407a-a9bf-41af2afe2158","type":"Microsoft.Authorization/roleAssignments","name":"3fe54064-c5f3-407a-a9bf-41af2afe2158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d2caf3df-cb83-4cad-af2e-065d92cf15dd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T05:46:12.6813036Z","updatedOn":"2018-10-25T05:46:12.6813036Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12d03ad0-cabe-45f0-89be-21efb56e60f9","type":"Microsoft.Authorization/roleAssignments","name":"12d03ad0-cabe-45f0-89be-21efb56e60f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3120b11-89d6-4a95-b3ad-0ddbd9f04050","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-02T06:46:21.7720780Z","updatedOn":"2019-01-02T06:46:21.7720780Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81aa865f-27f4-4fe4-83ef-c3c332521962","type":"Microsoft.Authorization/roleAssignments","name":"81aa865f-27f4-4fe4-83ef-c3c332521962"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d316bf5b-a379-42bd-b0fd-ac498ff40d5a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-14T06:50:35.3194075Z","updatedOn":"2018-12-14T06:50:35.3194075Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9531353-1083-47c0-a4e9-b13ab59cb526","type":"Microsoft.Authorization/roleAssignments","name":"a9531353-1083-47c0-a4e9-b13ab59cb526"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d3c21087-ec7b-4675-9408-07d911406146","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-12T05:17:17.6788395Z","updatedOn":"2019-06-12T05:17:17.6788395Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bcad36-08a2-4536-a4b3-9380f6c1e339","type":"Microsoft.Authorization/roleAssignments","name":"00bcad36-08a2-4536-a4b3-9380f6c1e339"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d4010ae5-c45a-4823-84bc-b3e6d7e6e512","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:13:19.4148382Z","updatedOn":"2019-04-20T05:13:19.4148382Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da7f98c9-4c59-452a-a735-eca30f73ede0","type":"Microsoft.Authorization/roleAssignments","name":"da7f98c9-4c59-452a-a735-eca30f73ede0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d6db91cb-0a63-4bdd-8877-a68c53221c5b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:53:30.9944559Z","updatedOn":"2018-09-18T23:53:30.9944559Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6199caa4-ff24-46a6-b50a-be42fbe9478e","type":"Microsoft.Authorization/roleAssignments","name":"6199caa4-ff24-46a6-b50a-be42fbe9478e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d70637dc-50b3-4ebc-9bdb-aeaf6f192169","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:35:45.9011532Z","updatedOn":"2019-04-30T05:35:45.9011532Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d63f6e48-9e31-4013-9e53-d0d30190fd3f","type":"Microsoft.Authorization/roleAssignments","name":"d63f6e48-9e31-4013-9e53-d0d30190fd3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d7f4b0f6-5e47-4c68-8e89-c8d397368d6b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-23T16:26:03.4031173Z","updatedOn":"2018-10-23T16:26:03.4031173Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b23e7be9-30d4-4062-9e62-1d5000a46165","type":"Microsoft.Authorization/roleAssignments","name":"b23e7be9-30d4-4062-9e62-1d5000a46165"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d8422fc6-cc80-4990-b5d9-15dfc33bd4ce","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-28T05:13:52.5233941Z","updatedOn":"2019-11-28T05:13:52.5233941Z","createdBy":"7c1f8589-d62d-4dc2-afb0-e94b22edf558","updatedBy":"7c1f8589-d62d-4dc2-afb0-e94b22edf558"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a2e5207-3e10-4ca2-9784-6e7bb8050194","type":"Microsoft.Authorization/roleAssignments","name":"9a2e5207-3e10-4ca2-9784-6e7bb8050194"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d8f4630b-5ae7-49a5-88d6-adc3ad7c5592","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:01:15.5460293Z","updatedOn":"2018-09-27T10:01:15.5460293Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf71afc3-8e72-46be-a917-f22bd591ff02","type":"Microsoft.Authorization/roleAssignments","name":"cf71afc3-8e72-46be-a917-f22bd591ff02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d9043f54-0a86-47c5-a740-4b39df39e0a0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-30T05:14:08.8126640Z","updatedOn":"2019-04-30T05:14:08.8126640Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/237d0f39-ba02-481a-a2b8-6b8c4e747958","type":"Microsoft.Authorization/roleAssignments","name":"237d0f39-ba02-481a-a2b8-6b8c4e747958"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d948c009-fdab-48aa-a97c-165c07ec0b89","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-30T06:54:09.2424182Z","updatedOn":"2019-01-30T06:54:09.2424182Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/baafb840-781c-4bb5-8d99-d29ac492192b","type":"Microsoft.Authorization/roleAssignments","name":"baafb840-781c-4bb5-8d99-d29ac492192b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"d960f42f-fc88-4ad5-9353-885dce085fa7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-11T19:46:03.8410291Z","updatedOn":"2018-12-11T19:46:03.8410291Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b61345d-b407-4dfc-9d74-3bef26c4d451","type":"Microsoft.Authorization/roleAssignments","name":"4b61345d-b407-4dfc-9d74-3bef26c4d451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"da664414-ab1e-488f-a1c1-81d037f6a1b0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:17:10.0928144Z","updatedOn":"2019-05-22T05:17:10.0928144Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab64211-52a4-44af-b9cd-07462f5763f6","type":"Microsoft.Authorization/roleAssignments","name":"8ab64211-52a4-44af-b9cd-07462f5763f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"da74796c-63b3-430c-ae1e-0681cf071fbd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-01T03:31:15.4303795Z","updatedOn":"2019-11-01T03:31:15.4303795Z","createdBy":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863","updatedBy":"ac47bda7-ff61-4451-9bb5-ad30ebcc2863"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea7067c6-7d10-4d6e-9614-f189a87de248","type":"Microsoft.Authorization/roleAssignments","name":"ea7067c6-7d10-4d6e-9614-f189a87de248"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"daaced77-675f-4356-9f87-e78986ff36a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T10:40:05.5875881Z","updatedOn":"2018-11-05T10:40:05.5875881Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3c59aae-ad3b-4ff3-8d83-25aa27c4833d","type":"Microsoft.Authorization/roleAssignments","name":"b3c59aae-ad3b-4ff3-8d83-25aa27c4833d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db394df0-524d-4921-8630-d65d71f2165f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T09:42:50.8070319Z","updatedOn":"2018-10-31T09:42:50.8070319Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b65f540b-666d-40cf-a341-27ccb67c8c28","type":"Microsoft.Authorization/roleAssignments","name":"b65f540b-666d-40cf-a341-27ccb67c8c28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db4004a2-1161-4530-ac2f-3168ac1dbfba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T06:32:38.6934724Z","updatedOn":"2019-04-20T06:32:38.6934724Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e80d19b-ae41-44f6-926c-b902fd0c9158","type":"Microsoft.Authorization/roleAssignments","name":"7e80d19b-ae41-44f6-926c-b902fd0c9158"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"db65a597-9bd4-4259-9632-ffcbfd208b04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-31T18:43:41.6069289Z","updatedOn":"2019-01-31T18:43:41.6069289Z","createdBy":"c0526f76-a841-4a3a-bdee-59a5db599e34","updatedBy":"c0526f76-a841-4a3a-bdee-59a5db599e34"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa2a3117-6ca4-4ddf-83c7-511b370735dd","type":"Microsoft.Authorization/roleAssignments","name":"aa2a3117-6ca4-4ddf-83c7-511b370735dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc15c8e4-4230-4f90-b20d-268e196d1813","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-19T16:59:35.9649632Z","updatedOn":"2018-09-19T16:59:35.9649632Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c32e312c-7f12-47df-9cdb-eaf99db0df19","type":"Microsoft.Authorization/roleAssignments","name":"c32e312c-7f12-47df-9cdb-eaf99db0df19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc1a3549-229c-4971-93d1-dd2a12439b19","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-18T02:46:17.6374569Z","updatedOn":"2019-09-18T02:46:17.6374569Z","createdBy":"31e600e0-d7ce-4e98-a927-19bb30042e44","updatedBy":"31e600e0-d7ce-4e98-a927-19bb30042e44"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79ee6058-9515-427b-a19d-f9a245e4172b","type":"Microsoft.Authorization/roleAssignments","name":"79ee6058-9515-427b-a19d-f9a245e4172b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dc7f9c47-a51a-46ba-80c8-fd054aab72cd","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-06T20:51:24.1292868Z","updatedOn":"2019-01-06T20:51:24.1292868Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f518f831-d9ff-474a-b74a-632e7a06cf65","type":"Microsoft.Authorization/roleAssignments","name":"f518f831-d9ff-474a-b74a-632e7a06cf65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dd675716-2751-4705-922d-9837095097da","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-09T05:11:12.7455369Z","updatedOn":"2019-04-09T05:11:12.7455369Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3b7cc13-094a-497d-a4cb-674c0889a93e","type":"Microsoft.Authorization/roleAssignments","name":"d3b7cc13-094a-497d-a4cb-674c0889a93e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dda0a530-d000-41b8-b403-828e589b4dda","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T04:20:44.5436786Z","updatedOn":"2018-10-25T04:20:44.5436786Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77c85da2-f98e-4e93-bf5f-d17bb106a771","type":"Microsoft.Authorization/roleAssignments","name":"77c85da2-f98e-4e93-bf5f-d17bb106a771"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df70f66e-810a-44ed-a81c-5e7fdb462469","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T16:29:57.6054123Z","updatedOn":"2019-05-14T16:29:57.6054123Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6fda1a04-04b2-4bfc-a704-24c2cae69f78","type":"Microsoft.Authorization/roleAssignments","name":"6fda1a04-04b2-4bfc-a704-24c2cae69f78"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"df902ab3-f241-4bda-8260-b7673766f767","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-27T06:51:35.2235619Z","updatedOn":"2018-12-27T06:51:35.2235619Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13272b7-22e4-491e-bb62-f1d3d50790eb","type":"Microsoft.Authorization/roleAssignments","name":"f13272b7-22e4-491e-bb62-f1d3d50790eb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfa78316-eb12-44e4-837c-9acb8c5d0cf1","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-26T19:10:43.6867523Z","updatedOn":"2019-01-26T19:10:43.6867523Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca533327-8eb3-4a0d-9c8c-65a19e8c87ef","type":"Microsoft.Authorization/roleAssignments","name":"ca533327-8eb3-4a0d-9c8c-65a19e8c87ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"dfcc4a66-9e66-4f59-a767-caa8e546fcf9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-17T06:33:13.7973771Z","updatedOn":"2019-04-17T06:33:13.7973771Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/842e8734-95b6-4039-82fb-39183f00b528","type":"Microsoft.Authorization/roleAssignments","name":"842e8734-95b6-4039-82fb-39183f00b528"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e00b75a6-6fc0-4f48-87b9-e8b639667c16","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-10-14T12:57:49.9426431Z","updatedOn":"2019-10-14T12:57:49.9426431Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be3fd0fe-438b-4b5e-9e4c-2dc04821da8a","type":"Microsoft.Authorization/roleAssignments","name":"be3fd0fe-438b-4b5e-9e4c-2dc04821da8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e037bfb5-59f7-42ac-9139-9636644cae6d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-07-05T05:39:11.8514441Z","updatedOn":"2019-07-05T05:39:11.8514441Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4","type":"Microsoft.Authorization/roleAssignments","name":"5b8f4bc4-3b37-4c23-a3bd-8d84c95a2ce4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e06b0322-1992-45e2-be95-d10076e55ce4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-03T06:11:20.1895394Z","updatedOn":"2019-04-03T06:11:20.1895394Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec","type":"Microsoft.Authorization/roleAssignments","name":"80a3ac38-a7ec-4e21-9f8f-75196ca0e6ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e0e70e34-7c95-424d-8dcf-5a54a721cca7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-02T05:10:52.0339924Z","updatedOn":"2019-04-02T05:10:52.0339924Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1940e67f-5c1a-4075-9f95-be3dbc151994","type":"Microsoft.Authorization/roleAssignments","name":"1940e67f-5c1a-4075-9f95-be3dbc151994"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e107a9e2-2293-47cf-bfc7-0c68725a289a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-09T17:51:41.1140658Z","updatedOn":"2018-11-09T17:51:41.1140658Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94dc5859-b168-42bf-9561-a41827a21597","type":"Microsoft.Authorization/roleAssignments","name":"94dc5859-b168-42bf-9561-a41827a21597"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e12f87e2-42fe-4081-a272-85eee50a8062","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-05T04:19:32.2862854Z","updatedOn":"2019-12-05T04:19:32.2862854Z","createdBy":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa","updatedBy":"9ac02ab3-5061-4ec6-a3d8-2cdaa5f29efa"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3076ac0b-96c1-40da-b47c-cc8b1a6f60d7","type":"Microsoft.Authorization/roleAssignments","name":"3076ac0b-96c1-40da-b47c-cc8b1a6f60d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e19387a9-5b14-4049-b93e-1d8ecff6e421","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:18:24.9933280Z","updatedOn":"2019-05-09T05:18:24.9933280Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c62f4e2d-43ce-4c75-8c58-e2115666e53a","type":"Microsoft.Authorization/roleAssignments","name":"c62f4e2d-43ce-4c75-8c58-e2115666e53a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2c52a58-edac-4a9e-908c-070aaee677ef","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-31T14:41:40.9383041Z","updatedOn":"2018-10-31T14:41:40.9383041Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe79706d-4431-4c77-ac58-c542ebbb88bd","type":"Microsoft.Authorization/roleAssignments","name":"fe79706d-4431-4c77-ac58-c542ebbb88bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e2f76937-0f09-4547-9df8-0af9621d773b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-14T05:38:51.0761001Z","updatedOn":"2019-05-14T05:38:51.0761001Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/888b2959-c9fb-406a-850f-9c898d01d2a3","type":"Microsoft.Authorization/roleAssignments","name":"888b2959-c9fb-406a-850f-9c898d01d2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e30dc24c-f495-4e89-8e2c-37415662502e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-27T10:41:41.0196120Z","updatedOn":"2018-09-27T10:41:41.0196120Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/574b48d4-e18d-4990-a10f-c11b59679b2c","type":"Microsoft.Authorization/roleAssignments","name":"574b48d4-e18d-4990-a10f-c11b59679b2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e34bede7-eff9-4901-a421-db8ea321021f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-21T22:28:30.9708597Z","updatedOn":"2018-09-21T22:28:30.9708597Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2661841d-d979-45ee-ac37-5438c3b68ce3","type":"Microsoft.Authorization/roleAssignments","name":"2661841d-d979-45ee-ac37-5438c3b68ce3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e3696682-bf2d-4945-977e-ef7248f2f841","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T20:11:58.1212576Z","updatedOn":"2018-10-10T20:11:58.1212576Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e95bb61d-eee2-482c-8b26-e63d68d8b7c9","type":"Microsoft.Authorization/roleAssignments","name":"e95bb61d-eee2-482c-8b26-e63d68d8b7c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e392a692-89cc-4f88-be8b-818dba9d4cbf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-12T14:34:47.7072777Z","updatedOn":"2019-12-12T14:34:47.7072777Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc03d313-e326-456c-9418-5d77b8b8489b","type":"Microsoft.Authorization/roleAssignments","name":"dc03d313-e326-456c-9418-5d77b8b8489b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4640f2b-484b-487c-b2eb-badc4c8b20be","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-03T21:12:04.1728439Z","updatedOn":"2018-10-03T21:12:04.1728439Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/921f26e2-0616-4bcf-9ce1-367ffbffb91a","type":"Microsoft.Authorization/roleAssignments","name":"921f26e2-0616-4bcf-9ce1-367ffbffb91a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e49b9853-05d6-4483-8a13-09ab92649bf4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-17T06:52:09.8666638Z","updatedOn":"2018-11-17T06:52:09.8666638Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f047a8be-5857-4a34-9b54-5162bb957cda","type":"Microsoft.Authorization/roleAssignments","name":"f047a8be-5857-4a34-9b54-5162bb957cda"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e4acab8d-85f5-40d7-b435-fedb84e267d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-08T06:50:11.8734444Z","updatedOn":"2019-01-08T06:50:11.8734444Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c02a7cf-d6ee-41fb-ae36-78584d496fba","type":"Microsoft.Authorization/roleAssignments","name":"9c02a7cf-d6ee-41fb-ae36-78584d496fba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e51c59a1-2fc1-43a2-bb97-f1a8c3cfaa04","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-09T05:36:45.3923768Z","updatedOn":"2018-10-09T05:36:45.3923768Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b9876f4-77b2-4641-94c6-4841f60e4847","type":"Microsoft.Authorization/roleAssignments","name":"4b9876f4-77b2-4641-94c6-4841f60e4847"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e54e05a4-bb09-4e57-883f-f6d293542c5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-05T14:19:08.0027870Z","updatedOn":"2019-01-05T14:19:08.0027870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/370a1221-368e-422a-aa9f-6fc9e44e6bca","type":"Microsoft.Authorization/roleAssignments","name":"370a1221-368e-422a-aa9f-6fc9e44e6bca"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e6026d46-d4a8-4f87-bb3e-3baf9459af8c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-29T06:54:16.5748095Z","updatedOn":"2019-01-29T06:54:16.5748095Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e26fc3af-b00c-4769-915a-3617f01523bb","type":"Microsoft.Authorization/roleAssignments","name":"e26fc3af-b00c-4769-915a-3617f01523bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e62a5697-a15c-4334-99b8-ee4d71502723","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T05:38:10.0897377Z","updatedOn":"2019-05-11T05:38:10.0897377Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5da9f69-7824-4de7-8221-805a4abd98aa","type":"Microsoft.Authorization/roleAssignments","name":"a5da9f69-7824-4de7-8221-805a4abd98aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e643033e-2797-4cd1-bea0-6641e5b92e22","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T05:56:54.3184019Z","updatedOn":"2018-09-28T05:56:54.3184019Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf256161-a290-414b-b882-8124aee1d18f","type":"Microsoft.Authorization/roleAssignments","name":"cf256161-a290-414b-b882-8124aee1d18f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e646b0d1-f60a-4e01-9db3-0d8aa2362c0b","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-12-03T05:13:01.9650491Z","updatedOn":"2019-12-03T05:13:01.9650491Z","createdBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e","updatedBy":"9a0f0a3f-b307-4ae3-bb6a-27a65244de7e"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf97e9ce-8a2e-494e-89c9-88fe534035ba","type":"Microsoft.Authorization/roleAssignments","name":"bf97e9ce-8a2e-494e-89c9-88fe534035ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e675fccf-56c0-4ff7-8422-7ec61abb71aa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T06:48:56.0895695Z","updatedOn":"2019-06-29T06:48:56.0895695Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/712b7791-9b32-4aea-b1ac-88dd09bcf21f","type":"Microsoft.Authorization/roleAssignments","name":"712b7791-9b32-4aea-b1ac-88dd09bcf21f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7b51e8c-e2bc-4995-9fd6-8fba299a697b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-16T21:21:29.0456925Z","updatedOn":"2018-10-16T21:21:29.0456925Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a676414b-de5c-4cdc-b12e-be7efd1c9201","type":"Microsoft.Authorization/roleAssignments","name":"a676414b-de5c-4cdc-b12e-be7efd1c9201"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e7e8644a-035e-42fc-b884-94399a127f78","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-25T06:04:36.9767266Z","updatedOn":"2019-09-25T06:04:36.9767266Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26b4ce18-5649-45f7-964f-36087586eb7c","type":"Microsoft.Authorization/roleAssignments","name":"26b4ce18-5649-45f7-964f-36087586eb7c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e82a88b9-378c-46e2-927c-5c31b169943a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-18T06:51:49.6591216Z","updatedOn":"2019-01-18T06:51:49.6591216Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b5df3b6-1025-4123-b6eb-d0ff78511c3c","type":"Microsoft.Authorization/roleAssignments","name":"7b5df3b6-1025-4123-b6eb-d0ff78511c3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e979acbc-d9f3-4bc8-a577-d507f284fd64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-13T07:05:59.2701340Z","updatedOn":"2019-02-13T07:05:59.2701340Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d4036f4-9da4-4b75-b3cb-bea1e1587637","type":"Microsoft.Authorization/roleAssignments","name":"4d4036f4-9da4-4b75-b3cb-bea1e1587637"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e97f382e-06de-4c02-ae49-1b472d457b5e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-13T06:48:52.2100303Z","updatedOn":"2018-12-13T06:48:52.2100303Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e201ee26-fa57-484c-b996-e80d351409fd","type":"Microsoft.Authorization/roleAssignments","name":"e201ee26-fa57-484c-b996-e80d351409fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"e9828cac-b36d-49c5-ac90-20be05e4d24d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-10T05:07:01.3282577Z","updatedOn":"2018-10-10T05:07:01.3282577Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff93b77-1a32-46d2-8560-f71cd70f1ebd","type":"Microsoft.Authorization/roleAssignments","name":"8ff93b77-1a32-46d2-8560-f71cd70f1ebd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ea36e992-4a2f-45a3-a912-a54a2d30fc0f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-05T11:21:21.5808774Z","updatedOn":"2018-11-05T11:21:21.5808774Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc53456a-6608-4c33-9491-4d1a5afdea55","type":"Microsoft.Authorization/roleAssignments","name":"bc53456a-6608-4c33-9491-4d1a5afdea55"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaa6ed61-48bf-43a3-9612-b2100b017464","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-16T06:51:17.2248433Z","updatedOn":"2018-11-16T06:51:17.2248433Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c6e9372-b60f-400a-923e-5bf10461039d","type":"Microsoft.Authorization/roleAssignments","name":"5c6e9372-b60f-400a-923e-5bf10461039d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab7796a-9356-4cc3-9013-b7b05f366e6e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-11T06:38:38.0393711Z","updatedOn":"2019-05-11T06:38:38.0393711Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1bfee263-2d52-452f-8bc4-69506742a6dc","type":"Microsoft.Authorization/roleAssignments","name":"1bfee263-2d52-452f-8bc4-69506742a6dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eab79c72-4ae1-418d-959c-3189fcd38f83","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-27T06:47:15.3844106Z","updatedOn":"2019-06-27T06:47:15.3844106Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7570d9e5-b430-4887-beb7-248bb541fc0f","type":"Microsoft.Authorization/roleAssignments","name":"7570d9e5-b430-4887-beb7-248bb541fc0f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eade49e1-acfb-4ea4-ae49-a623f535fb18","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-03T06:45:44.1143351Z","updatedOn":"2019-05-03T06:45:44.1143351Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39c4676b-567c-4f1c-97d5-c3ed9daa362a","type":"Microsoft.Authorization/roleAssignments","name":"39c4676b-567c-4f1c-97d5-c3ed9daa362a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eaeae412-d60d-4d7a-908c-145c6bf3fbf0","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T05:12:09.4309329Z","updatedOn":"2019-04-13T05:12:09.4309329Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/efa03a0f-bc71-4070-bee7-3941291a7551","type":"Microsoft.Authorization/roleAssignments","name":"efa03a0f-bc71-4070-bee7-3941291a7551"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb21d0ed-cf9a-4e1a-91c6-fcbbe79087ba","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-05T06:36:23.0325690Z","updatedOn":"2019-04-05T06:36:23.0325690Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfb5446f-1343-4c99-84ae-7e0d582fffe7","type":"Microsoft.Authorization/roleAssignments","name":"dfb5446f-1343-4c99-84ae-7e0d582fffe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"eb97db0b-0e80-43c9-bcc3-de7aeaf94664","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-27T06:15:59.8441024Z","updatedOn":"2019-03-27T06:15:59.8441024Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f","type":"Microsoft.Authorization/roleAssignments","name":"ae9d5ba0-9c9f-4c94-90c0-3533dfb21b8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec57ccc5-2f42-431d-a500-a89f6b520a69","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-29T06:47:51.0639763Z","updatedOn":"2018-12-29T06:47:51.0639763Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3215167-e3e0-49d9-a7bf-9f2a630d3df8","type":"Microsoft.Authorization/roleAssignments","name":"b3215167-e3e0-49d9-a7bf-9f2a630d3df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ec7af31f-8df5-41fc-8ce0-3e400f87b2f8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-28T15:42:33.2721176Z","updatedOn":"2018-09-28T15:42:33.2721176Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/933415b4-7989-4967-9573-b3391a105890","type":"Microsoft.Authorization/roleAssignments","name":"933415b4-7989-4967-9573-b3391a105890"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ecd227f4-6172-4cb0-b71e-fc375b24890e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-05T07:09:55.8763875Z","updatedOn":"2019-03-05T07:09:55.8763875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33","type":"Microsoft.Authorization/roleAssignments","name":"6822fb87-ab4b-46ea-b4fe-ed5c7dcc9f33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"edc08fc8-a655-45cb-bc3a-dc7c6eb2276e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T22:49:39.8210549Z","updatedOn":"2018-11-08T22:49:39.8210549Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86afb984-5cee-4133-b945-19308dccc30e","type":"Microsoft.Authorization/roleAssignments","name":"86afb984-5cee-4133-b945-19308dccc30e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee02061f-5d48-4b61-a0ed-f021507f073a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-09-18T23:51:58.0601465Z","updatedOn":"2018-09-18T23:51:58.0601465Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/442128eb-c84c-4bfd-aaf3-78461a82d37a","type":"Microsoft.Authorization/roleAssignments","name":"442128eb-c84c-4bfd-aaf3-78461a82d37a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee22eca7-314f-419d-8c4c-afb7dfdb067a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-29T05:47:10.4443784Z","updatedOn":"2019-06-29T05:47:10.4443784Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70da3654-07cc-498a-ae86-7b555af271fa","type":"Microsoft.Authorization/roleAssignments","name":"70da3654-07cc-498a-ae86-7b555af271fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ee684daa-ce3c-4db0-a092-01685d89cf50","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-15T03:37:38.1102867Z","updatedOn":"2019-11-15T03:37:38.1102867Z","createdBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de","updatedBy":"0143ff25-68ad-44d7-80ed-7deaff6bf9de"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5f1d513-53b3-48be-a9d9-77d9575c2721","type":"Microsoft.Authorization/roleAssignments","name":"a5f1d513-53b3-48be-a9d9-77d9575c2721"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ef2f674f-9168-4c63-b381-21b1274d486f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-10T02:45:50.4761292Z","updatedOn":"2018-12-10T02:45:50.4761292Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab1e45ce-6cb8-4f36-b317-a5e69c765de8","type":"Microsoft.Authorization/roleAssignments","name":"ab1e45ce-6cb8-4f36-b317-a5e69c765de8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f0ee7d27-b2cf-4fef-bffb-d053c7e525e3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-15T06:50:10.0183556Z","updatedOn":"2018-12-15T06:50:10.0183556Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b05e83dd-0a32-4362-bf41-533eefec78fe","type":"Microsoft.Authorization/roleAssignments","name":"b05e83dd-0a32-4362-bf41-533eefec78fe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f12d73d6-38bf-446c-bcf2-06cdf7c751f6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-05T00:17:31.1347008Z","updatedOn":"2018-10-05T00:17:31.1347008Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b75eb356-24bd-43ec-9924-8c1fec732b25","type":"Microsoft.Authorization/roleAssignments","name":"b75eb356-24bd-43ec-9924-8c1fec732b25"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1d2e61d-aff2-479c-8035-71de9c693170","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-26T06:50:50.2868298Z","updatedOn":"2019-06-26T06:50:50.2868298Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e33e46c8-32a7-4770-94d9-26ed006e5aa7","type":"Microsoft.Authorization/roleAssignments","name":"e33e46c8-32a7-4770-94d9-26ed006e5aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f1e96e2a-03c6-48f5-b9b4-efa3f2f7c23a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-07T11:21:53.3901696Z","updatedOn":"2018-11-07T11:21:53.3901696Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87b0b81-c91b-47ab-ba6a-bc64bef90a96","type":"Microsoft.Authorization/roleAssignments","name":"c87b0b81-c91b-47ab-ba6a-bc64bef90a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2ce8704-eb58-4f53-a001-64706ff5f5cf","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T05:16:01.8990158Z","updatedOn":"2019-05-16T05:16:01.8990158Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3c3963fb-821b-47ef-a9f3-8b608fcac94f","type":"Microsoft.Authorization/roleAssignments","name":"3c3963fb-821b-47ef-a9f3-8b608fcac94f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f2dab8e8-6a37-4c10-8684-b199ed36f6af","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:18:29.2774803Z","updatedOn":"2019-06-05T05:18:29.2774803Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eed7a551-3f2f-44ea-8529-f520a2c304bc","type":"Microsoft.Authorization/roleAssignments","name":"eed7a551-3f2f-44ea-8529-f520a2c304bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f34ec5dd-3c0a-41c9-becf-0376cfd68992","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-08T21:29:31.5576007Z","updatedOn":"2019-03-08T21:29:31.5576007Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12b2f6b0-4811-436a-a8bd-5924b2ab21e5","type":"Microsoft.Authorization/roleAssignments","name":"12b2f6b0-4811-436a-a8bd-5924b2ab21e5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f3e2492e-9ad2-42a3-847e-c150775639c6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-04T01:32:07.5969769Z","updatedOn":"2019-02-04T01:32:07.5969769Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a964fbf-cc11-457c-8ec0-443d4bc1a630","type":"Microsoft.Authorization/roleAssignments","name":"6a964fbf-cc11-457c-8ec0-443d4bc1a630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f40c52bb-3174-418d-bb20-443a38784a98","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-04T05:14:40.9925500Z","updatedOn":"2019-05-04T05:14:40.9925500Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c1a74f6-2f50-43e4-8041-f306168ecce2","type":"Microsoft.Authorization/roleAssignments","name":"7c1a74f6-2f50-43e4-8041-f306168ecce2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f5198c63-8877-46d5-9c35-9c4c490a29ae","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-15T06:47:14.5768830Z","updatedOn":"2019-01-15T06:47:14.5768830Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a90e35-892f-42fe-9cc3-95303f8debf8","type":"Microsoft.Authorization/roleAssignments","name":"26a90e35-892f-42fe-9cc3-95303f8debf8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f61d140c-100f-4802-a259-065b338ab67d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-16T01:33:17.9534350Z","updatedOn":"2019-02-16T01:33:17.9534350Z","createdBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952","updatedBy":"3b0ef8fb-e5c7-43b6-a594-013788cbd952"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61ee390f-be86-4b4e-86f3-9e8bafaab2e1","type":"Microsoft.Authorization/roleAssignments","name":"61ee390f-be86-4b4e-86f3-9e8bafaab2e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f685c96d-aa5e-455b-af7d-2e7d94ede7d4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-09T07:07:23.8043875Z","updatedOn":"2019-02-09T07:07:23.8043875Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0786223d-65f3-40db-81aa-a17f34c9dc28","type":"Microsoft.Authorization/roleAssignments","name":"0786223d-65f3-40db-81aa-a17f34c9dc28"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f6c2f6f7-1bbf-4c17-87c6-28c02d7c0637","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T18:01:59.1260407Z","updatedOn":"2018-11-08T18:01:59.1260407Z","createdBy":"5963f50c-7c43-405c-af7e-53294de76abd","updatedBy":"5963f50c-7c43-405c-af7e-53294de76abd"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4b79dcb-c95a-44c2-82cd-e550faad8ac5","type":"Microsoft.Authorization/roleAssignments","name":"c4b79dcb-c95a-44c2-82cd-e550faad8ac5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f730bea3-2472-4fe3-80be-0a1445294eee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-26T06:35:01.7171966Z","updatedOn":"2019-04-26T06:35:01.7171966Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b6946b2-d0e9-4c65-a6fc-15737bff969d","type":"Microsoft.Authorization/roleAssignments","name":"0b6946b2-d0e9-4c65-a6fc-15737bff969d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f7b9dc01-e8a5-4dd6-a495-e5a60218fa54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-07T06:56:19.2723414Z","updatedOn":"2018-12-07T06:56:19.2723414Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bac40000-696c-48ce-8d64-d164cc7c9584","type":"Microsoft.Authorization/roleAssignments","name":"bac40000-696c-48ce-8d64-d164cc7c9584"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8cfccf4-e5f4-4f03-92b0-4a7188d128e6","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-11T05:18:44.2822059Z","updatedOn":"2019-06-11T05:18:44.2822059Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/64f20b4f-a2bc-4e40-aaa6-0e38c6376805","type":"Microsoft.Authorization/roleAssignments","name":"64f20b4f-a2bc-4e40-aaa6-0e38c6376805"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8e79c26-a86d-4735-9eea-870bf9776bd8","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-02T14:43:30.1825870Z","updatedOn":"2018-11-02T14:43:30.1825870Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18dd5795-e181-4161-9c6d-9d4254b8cb5b","type":"Microsoft.Authorization/roleAssignments","name":"18dd5795-e181-4161-9c6d-9d4254b8cb5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f8f4e1d2-5bfc-456e-b2b3-02be2b489975","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-13T01:07:10.2845079Z","updatedOn":"2019-04-13T01:07:10.2845079Z","createdBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70","updatedBy":"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7b97d48-40ea-4a62-b945-4ecc788b349b","type":"Microsoft.Authorization/roleAssignments","name":"d7b97d48-40ea-4a62-b945-4ecc788b349b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"f931cad8-70e4-4763-8a12-1e4de602ea7b","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-20T19:20:46.6973443Z","updatedOn":"2018-12-20T19:20:46.6973443Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b5a984b-3400-4961-a40a-91edf9921515","type":"Microsoft.Authorization/roleAssignments","name":"2b5a984b-3400-4961-a40a-91edf9921515"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"facba42c-528c-43d4-a858-0bf72a82282a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T06:07:43.5905169Z","updatedOn":"2019-03-21T06:07:43.5905169Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b490d9b4-0e66-47b8-84cb-b46c55e3e12a","type":"Microsoft.Authorization/roleAssignments","name":"b490d9b4-0e66-47b8-84cb-b46c55e3e12a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fae345f2-3525-4eee-91ed-aa3e7a0339a7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-26T19:02:36.1002522Z","updatedOn":"2018-10-26T19:02:36.1002522Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98cbb4be-2890-41dd-add1-4ee878c60dd8","type":"Microsoft.Authorization/roleAssignments","name":"98cbb4be-2890-41dd-add1-4ee878c60dd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb081bc8-ed19-41cc-96a0-ea9ccd00ec90","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-15T05:39:01.0101712Z","updatedOn":"2019-05-15T05:39:01.0101712Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c8392ddf-11a2-46aa-9358-fdbe878e960c","type":"Microsoft.Authorization/roleAssignments","name":"c8392ddf-11a2-46aa-9358-fdbe878e960c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fb37b8d0-4601-4b1f-b91d-8481ae1a64dc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T06:38:25.6840193Z","updatedOn":"2019-06-05T06:38:25.6840193Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/393f99af-bba5-4e10-86e0-a516711c2610","type":"Microsoft.Authorization/roleAssignments","name":"393f99af-bba5-4e10-86e0-a516711c2610"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fbfb0f5c-126b-4ad5-b57a-fcde861f6ef5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-22T05:39:36.0023686Z","updatedOn":"2019-05-22T05:39:36.0023686Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e387c6d-5025-47b3-9656-b34a4010b543","type":"Microsoft.Authorization/roleAssignments","name":"0e387c6d-5025-47b3-9656-b34a4010b543"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd456099-1753-4268-b008-b3f5efb95450","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-16T06:42:07.6153979Z","updatedOn":"2019-05-16T06:42:07.6153979Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c385c958-ab8b-4607-9c74-331b2b5c2a50","type":"Microsoft.Authorization/roleAssignments","name":"c385c958-ab8b-4607-9c74-331b2b5c2a50"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fd88acad-daca-4266-85ef-2dd1913764b3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-01-23T06:51:03.9457234Z","updatedOn":"2019-01-23T06:51:03.9457234Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae829a74-705b-4601-9244-b9c56a1c8c06","type":"Microsoft.Authorization/roleAssignments","name":"ae829a74-705b-4601-9244-b9c56a1c8c06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdac9577-7542-4784-acee-04438868444e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-12-25T06:49:39.2426384Z","updatedOn":"2018-12-25T06:49:39.2426384Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d786378a-55c6-422f-bead-e440c334f64e","type":"Microsoft.Authorization/roleAssignments","name":"d786378a-55c6-422f-bead-e440c334f64e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fdcdb431-1889-489a-9ad3-78938a34f291","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-03-21T05:09:58.6316471Z","updatedOn":"2019-03-21T05:09:58.6316471Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c","type":"Microsoft.Authorization/roleAssignments","name":"6e586b4e-1f9e-41df-8e6f-53e60bd8dd3c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fde0da25-f6a4-4dfd-9668-adfe72c9b3d9","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-08T06:48:48.7139215Z","updatedOn":"2018-11-08T06:48:48.7139215Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f77d93e9-ffc3-4bbc-9e41-d83ce42904dc","type":"Microsoft.Authorization/roleAssignments","name":"f77d93e9-ffc3-4bbc-9e41-d83ce42904dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe17c43a-7ba9-4c77-9a8a-786cb36b6ac7","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-14T06:53:34.4612275Z","updatedOn":"2019-06-14T06:53:34.4612275Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e07738-648f-42d4-821e-44878849aa6a","type":"Microsoft.Authorization/roleAssignments","name":"90e07738-648f-42d4-821e-44878849aa6a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe19f84e-7f46-454e-89e4-4cbefe1ed4a3","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-20T05:34:36.0206593Z","updatedOn":"2019-04-20T05:34:36.0206593Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5553c590-af3a-49a1-a2f5-3f28018cbcc0","type":"Microsoft.Authorization/roleAssignments","name":"5553c590-af3a-49a1-a2f5-3f28018cbcc0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe55b12a-b22b-425d-9823-d07edba98b05","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-11-12T15:46:35.8826664Z","updatedOn":"2018-11-12T15:46:35.8826664Z","createdBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae","updatedBy":"0e521cb2-43c2-4c4b-ae14-122e11d12fae"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a386f3b-f818-467e-b33b-ace3ccbee34c","type":"Microsoft.Authorization/roleAssignments","name":"0a386f3b-f818-467e-b33b-ace3ccbee34c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fe6e08d1-3fe9-4fcd-8430-d10701a9d7ee","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-05T05:41:54.8887107Z","updatedOn":"2019-06-05T05:41:54.8887107Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a76715-9dbd-4a18-92e5-d67600f59cce","type":"Microsoft.Authorization/roleAssignments","name":"55a76715-9dbd-4a18-92e5-d67600f59cce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"fec576d4-426b-410d-9137-67f4a2dd0298","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-21T05:16:36.3049181Z","updatedOn":"2019-05-21T05:16:36.3049181Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7a5108f-9ec2-4903-93a8-b4fbcb4c292c","type":"Microsoft.Authorization/roleAssignments","name":"b7a5108f-9ec2-4903-93a8-b4fbcb4c292c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff5beb60-1ab4-4725-b12e-20da05833516","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-06-08T06:39:43.4665630Z","updatedOn":"2019-06-08T06:39:43.4665630Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce551e89-0244-4c14-9e46-4d0715368fd2","type":"Microsoft.Authorization/roleAssignments","name":"ce551e89-0244-4c14-9e46-4d0715368fd2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ff64b261-1aaa-4d2a-b37e-0c6f71ee5d41","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-02-19T07:05:24.6386936Z","updatedOn":"2019-02-19T07:05:24.6386936Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08f79e8e-7405-4fe6-b15e-fcf13f8af972","type":"Microsoft.Authorization/roleAssignments","name":"08f79e8e-7405-4fe6-b15e-fcf13f8af972"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"ffafc31c-c957-481f-922f-6f38699fbba4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-05-09T05:41:51.9166032Z","updatedOn":"2019-05-09T05:41:51.9166032Z","createdBy":"93a01e49-673a-4e15-8230-51214a737962","updatedBy":"93a01e49-673a-4e15-8230-51214a737962"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c20ee64c-0ac0-4280-820b-1e515aa13c95","type":"Microsoft.Authorization/roleAssignments","name":"c20ee64c-0ac0-4280-820b-1e515aa13c95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"838439dc-f0fa-4a37-ba56-daa13ff730ed","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-09-11T09:19:13.9288977Z","updatedOn":"2019-09-11T09:19:13.9288977Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b02d8e07-7398-4236-bf13-6293699c6862","type":"Microsoft.Authorization/roleAssignments","name":"b02d8e07-7398-4236-bf13-6293699c6862"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2018-10-25T19:47:09.8058411Z","updatedOn":"2018-10-25T19:47:09.8058411Z","createdBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","updatedBy":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abd19ae1-8e0c-4e31-b1ab-25e85d987378","type":"Microsoft.Authorization/roleAssignments","name":"abd19ae1-8e0c-4e31-b1ab-25e85d987378"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04","principalId":"e7e158d3-7cdc-47cd-8825-5859d7ab2b55","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-11-25T02:29:00.1905156Z","updatedOn":"2019-11-25T02:29:00.1905156Z","createdBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b","updatedBy":"89ed5be8-ff97-41b5-ab11-055e1e3cc34b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774d0387-22b2-41fb-9025-c689ab821fb0","type":"Microsoft.Authorization/roleAssignments","name":"774d0387-22b2-41fb-9025-c689ab821fb0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"0d504196-1423-4569-9a6e-15149656f0ee","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:42.0835929Z","updatedOn":"2019-09-04T08:09:42.0835929Z","createdBy":"0d504196-1423-4569-9a6e-15149656f0ee","updatedBy":"0d504196-1423-4569-9a6e-15149656f0ee"},"id":"/providers/Microsoft.Authorization/roleAssignments/9d0c9433-a2c8-403f-ba1c-6310772291a5","type":"Microsoft.Authorization/roleAssignments","name":"9d0c9433-a2c8-403f-ba1c-6310772291a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"21cd756e-e290-4a26-9547-93e8cc1a8923","principalType":"User","scope":"/","createdOn":"2019-09-04T08:09:00.2975238Z","updatedOn":"2019-09-04T08:09:00.2975238Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/providers/Microsoft.Authorization/roleAssignments/1170ebb2-2837-465d-87ea-0c13b2c951b4","type":"Microsoft.Authorization/roleAssignments","name":"1170ebb2-2837-465d-87ea-0c13b2c951b4"}]}' headers: cache-control: - no-cache content-length: - - '492519' + - '512043' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:10:51 GMT + - Tue, 31 Dec 2019 02:38:55 GMT expires: - '-1' pragma: @@ -1266,7 +1106,7 @@ interactions: - -g --assignee User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET @@ -1281,7 +1121,8 @@ interactions: monitor and restart virtual machines\",\"assignableScopes\":[\"/subscriptions/00000000-0000-0000-0000-000000000000\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/*\",\"Microsoft.Support/*\",\"Microsoft.ClassicCompute/virtualMachines/restart/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-14T22:25:04.1831924Z\",\"updatedOn\":\"2018-06-14T22:25:04.1831924Z\",\"createdBy\":\"5963f50c-7c43-405c-af7e-53294de76abd\",\"updatedBy\":\"5963f50c-7c43-405c-af7e-53294de76abd\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/abec5297-d72c-4fbc-acaf-868482d345c2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"abec5297-d72c-4fbc-acaf-868482d345c2\"},{\"properties\":{\"roleName\":\"cli-test-roleeducwmp\",\"type\":\"CustomRole\",\"description\":\"Can monitor compute, network and storage, and restart virtual machines\",\"assignableScopes\":[\"/subscriptions/00000000-0000-0000-0000-000000000000\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/*/read\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Network/*/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"],\"notDataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"]}],\"createdOn\":\"2019-06-25T21:15:59.1353763Z\",\"updatedOn\":\"2019-06-25T21:15:59.1353763Z\",\"createdBy\":\"e7e158d3-7cdc-47cd-8825-5859d7ab2b55\",\"updatedBy\":\"e7e158d3-7cdc-47cd-8825-5859d7ab2b55\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5afd2381-70fd-4736-a874-71f82ab2a20d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5afd2381-70fd-4736-a874-71f82ab2a20d\"},{\"properties\":{\"roleName\":\"Contoso On-call\",\"type\":\"CustomRole\",\"description\":\"Perform VM actions and - read storage and network information.\",\"assignableScopes\":[\"/subscriptions/00000000-0000-0000-0000-000000000000\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/*/read\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Network/*/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"],\"notDataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"]}],\"createdOn\":\"2019-10-08T06:07:11.1985017Z\",\"updatedOn\":\"2019-10-08T06:23:38.6628006Z\",\"createdBy\":\"0d504196-1423-4569-9a6e-15149656f0ee\",\"updatedBy\":\"0d504196-1423-4569-9a6e-15149656f0ee\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cf17b5ea-d74f-4511-bd7c-92cd33a3af0b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cf17b5ea-d74f-4511-bd7c-92cd33a3af0b\"},{\"properties\":{\"roleName\":\"AcrPush\",\"type\":\"BuiltInRole\",\"description\":\"acr + read storage and network information.\",\"assignableScopes\":[\"/subscriptions/00000000-0000-0000-0000-000000000000\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/*/read\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Network/*/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"],\"notDataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"]}],\"createdOn\":\"2019-10-08T06:07:11.1985017Z\",\"updatedOn\":\"2019-10-08T06:23:38.6628006Z\",\"createdBy\":\"0d504196-1423-4569-9a6e-15149656f0ee\",\"updatedBy\":\"0d504196-1423-4569-9a6e-15149656f0ee\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cf17b5ea-d74f-4511-bd7c-92cd33a3af0b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cf17b5ea-d74f-4511-bd7c-92cd33a3af0b\"},{\"properties\":{\"roleName\":\"ACR-YUGANGW-TEST\",\"type\":\"CustomRole\",\"description\":\"to + delemte me\",\"assignableScopes\":[\"/subscriptions/00000000-0000-0000-0000-000000000000\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDB/*\",\"Microsoft.ContainerRegistry/registries/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-19T17:22:27.9963663Z\",\"updatedOn\":\"2019-11-19T17:22:27.9963663Z\",\"createdBy\":\"89ed5be8-ff97-41b5-ab11-055e1e3cc34b\",\"updatedBy\":\"89ed5be8-ff97-41b5-ab11-055e1e3cc34b\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80c67efe-541b-4809-b6b3-3c807bdc81fc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80c67efe-541b-4809-b6b3-3c807bdc81fc\"},{\"properties\":{\"roleName\":\"AcrPush\",\"type\":\"BuiltInRole\",\"description\":\"acr push\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/pull/read\",\"Microsoft.ContainerRegistry/registries/push/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-29T17:52:32.5201177Z\",\"updatedOn\":\"2018-11-13T23:26:19.9749249Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8311e382-0749-4cb8-b61a-304f252e45ec\"},{\"properties\":{\"roleName\":\"API Management Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage service and the APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8650193Z\",\"updatedOn\":\"2019-02-05T21:24:17.7502607Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"312a565d-c81f-4fd8-895a-4e21e48d571c\"},{\"properties\":{\"roleName\":\"AcrPull\",\"type\":\"BuiltInRole\",\"description\":\"acr @@ -1319,13 +1160,13 @@ interactions: Stack Registration Owner\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Azure Stack registrations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStack/registrations/products/*/action\",\"Microsoft.AzureStack/registrations/products/read\",\"Microsoft.AzureStack/registrations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-13T23:42:06.2161827Z\",\"updatedOn\":\"2019-08-01T18:44:52.5331479Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"},{\"properties\":{\"roleName\":\"Backup Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage backup - service,but can't create vaults and give access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/*\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/Vaults/usages/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2019-06-03T04:25:42.1920450Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e467623-bb1f-42f4-a55d-6e525e11384b\"},{\"properties\":{\"roleName\":\"Billing + service,but can't create vaults and give access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/*\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/Vaults/usages/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2019-12-17T10:44:35.8361149Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e467623-bb1f-42f4-a55d-6e525e11384b\"},{\"properties\":{\"roleName\":\"Billing Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read access to billing data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Billing/*/read\",\"Microsoft.Commerce/*/read\",\"Microsoft.Consumption/*/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-25T02:13:38.9054151Z\",\"updatedOn\":\"2018-09-26T17:45:09.2227236Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"},{\"properties\":{\"roleName\":\"Backup Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage backup - services, except removal of backup, vault creation and giving access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2019-06-03T04:26:42.4271091Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00c29273-979b-4161-815c-10b084fb9324\"},{\"properties\":{\"roleName\":\"Backup + services, except removal of backup, vault creation and giving access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2019-12-17T11:02:43.9998686Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00c29273-979b-4161-815c-10b084fb9324\"},{\"properties\":{\"roleName\":\"Backup Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view backup services, - but can't make changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2019-06-03T04:27:36.4502980Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a795c7a0-d4a2-40c1-ae25-d81f01202912\"},{\"properties\":{\"roleName\":\"Blockchain + but can't make changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2019-12-17T11:03:21.9983620Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a795c7a0-d4a2-40c1-ae25-d81f01202912\"},{\"properties\":{\"roleName\":\"Blockchain Member Node Access (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows for access to Blockchain Member nodes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T10:33:01.9604839Z\",\"updatedOn\":\"2018-12-21T10:33:58.0042162Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"},{\"properties\":{\"roleName\":\"BizTalk Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage BizTalk @@ -1378,7 +1219,7 @@ interactions: Labs User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.Compute/virtualMachines/deallocate/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.DevTestLab/*/read\",\"Microsoft.DevTestLab/labs/claimAnyVm/action\",\"Microsoft.DevTestLab/labs/createEnvironment/action\",\"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\"Microsoft.DevTestLab/labs/formulas/delete\",\"Microsoft.DevTestLab/labs/formulas/read\",\"Microsoft.DevTestLab/labs/formulas/write\",\"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/networkInterfaces/*/read\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/publicIPAddresses/*/read\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"],\"notActions\":[\"Microsoft.Compute/virtualMachines/vmSizes/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-08T21:52:45.0657582Z\",\"updatedOn\":\"2019-05-08T11:27:34.8855476Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76283e04-6283-4c54-8f91-bcf1374a3c64\"},{\"properties\":{\"roleName\":\"DocumentDB Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage DocumentDB accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2019-02-05T21:24:22.5964810Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5bd9cd88-fe45-4216-938b-f97437e15450\"},{\"properties\":{\"roleName\":\"DNS + manage DocumentDB accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2019-11-21T01:38:32.0948484Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5bd9cd88-fe45-4216-938b-f97437e15450\"},{\"properties\":{\"roleName\":\"DNS Zone Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/dnsZones/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-15T23:33:25.9730842Z\",\"updatedOn\":\"2016-05-31T23:13:40.3710365Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"befefa01-2a29-4197-83a8-272ff33ce314\"},{\"properties\":{\"roleName\":\"EventGrid @@ -1445,9 +1286,8 @@ interactions: everything but will not let you delete or create a storage account or contained resource. It will also allow read/write access to all data contained in a storage account via access to storage account keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\"Microsoft.Storage/storageAccounts/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-27T23:20:46.1498906Z\",\"updatedOn\":\"2019-04-04T23:41:26.1056261Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c12c1c16-33a1-487b-954d-41c89c60f349\"},{\"properties\":{\"roleName\":\"Resource - Policy Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"(Preview) - Backfilled users from EA, with rights to create/modify resource policy, create - support ticket and read resources/hierarchy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/policyassignments/*\",\"Microsoft.Authorization/policydefinitions/*\",\"Microsoft.Authorization/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\",\"updatedOn\":\"2018-01-30T18:08:27.8272264Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36243c78-bf99-498c-9df9-86d9f8d28608\"},{\"properties\":{\"roleName\":\"Scheduler + Policy Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Users with + rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/policyassignments/*\",\"Microsoft.Authorization/policydefinitions/*\",\"Microsoft.Authorization/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\",\"updatedOn\":\"2019-11-20T20:26:12.8811365Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36243c78-bf99-498c-9df9-86d9f8d28608\"},{\"properties\":{\"roleName\":\"Scheduler Job Collections Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Scheduler job collections, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Scheduler/jobcollections/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2019-02-05T20:42:24.8360756Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"},{\"properties\":{\"roleName\":\"Search Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you @@ -1528,7 +1368,7 @@ interactions: and modify HDInsight cluster configurations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HDInsight/*/read\",\"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\"Microsoft.HDInsight/clusters/configurations/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-20T00:03:01.7110732Z\",\"updatedOn\":\"2019-04-28T02:34:17.4679314Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"61ed4efc-fab3-44fd-b111-e24485cc132a\"},{\"properties\":{\"roleName\":\"Cosmos DB Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Azure Cosmos DB accounts, but not access data in them. Prevents access to account - keys and connection strings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\",\"updatedOn\":\"2019-04-26T19:26:46.6326968Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"230815da-be43-4aae-9cb4-875f7bd000aa\"},{\"properties\":{\"roleName\":\"Hybrid + keys and connection strings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"],\"notActions\":[\"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\",\"updatedOn\":\"2019-11-21T01:34:13.3746345Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"230815da-be43-4aae-9cb4-875f7bd000aa\"},{\"properties\":{\"roleName\":\"Hybrid Server Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource Provider.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*\",\"Microsoft.HybridCompute/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-29T21:39:32.3132923Z\",\"updatedOn\":\"2019-05-06T20:08:25.3180258Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"},{\"properties\":{\"roleName\":\"Hybrid @@ -1562,11 +1402,11 @@ interactions: published blueprints, but cannot create new blueprints. NOTE: this only works if the assignment is done with a user-assigned managed identity.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Blueprint/blueprintAssignments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-14T21:56:48.7897875Z\",\"updatedOn\":\"2019-08-17T00:06:02.6509737Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"437d2ced-4a38-4302-8479-ed2bcb43d090\"},{\"properties\":{\"roleName\":\"Azure Sentinel Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Azure Sentinel - Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2019-09-16T10:21:42.8502958Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ab8e14d6-4a74-4a29-9ba8-549422addade\"},{\"properties\":{\"roleName\":\"Azure + Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2019-11-28T13:01:04.7575960Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ab8e14d6-4a74-4a29-9ba8-549422addade\"},{\"properties\":{\"roleName\":\"Azure Sentinel Responder\",\"type\":\"BuiltInRole\",\"description\":\"Azure Sentinel - Responder\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/cases/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2019-09-16T07:31:20.1685284Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"},{\"properties\":{\"roleName\":\"Azure + Responder\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/cases/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2019-11-28T13:02:33.8005599Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"},{\"properties\":{\"roleName\":\"Azure Sentinel Reader\",\"type\":\"BuiltInRole\",\"description\":\"Azure Sentinel - Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2019-09-16T07:36:26.5341326Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"},{\"properties\":{\"roleName\":\"Workbook + Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2019-11-28T12:51:42.4847204Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"},{\"properties\":{\"roleName\":\"Workbook Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.insights/workbooks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\",\"updatedOn\":\"2019-08-28T21:43:05.0202124Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"},{\"properties\":{\"roleName\":\"Workbook Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can save shared workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/workbooks/write\",\"Microsoft.Insights/workbooks/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2019-08-28T21:43:55.5802704Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"},{\"properties\":{\"roleName\":\"Policy Insights Data Writer (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows @@ -1586,16 +1426,26 @@ interactions: Configuration Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows full access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\",\"Microsoft.AppConfiguration/configurationStores/*/write\",\"Microsoft.AppConfiguration/configurationStores/*/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2019-10-25T18:41:40.1185063Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"},{\"properties\":{\"roleName\":\"App Configuration Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows - read access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:45:33.7975332Z\",\"updatedOn\":\"2019-10-25T18:45:33.7975332Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"516239f1-63e1-4d78-a4de-a74fb236a071\"}]}" + read access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:45:33.7975332Z\",\"updatedOn\":\"2019-10-25T18:45:33.7975332Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"516239f1-63e1-4d78-a4de-a74fb236a071\"},{\"properties\":{\"roleName\":\"Kubernetes + Cluster - Azure Arc Onborading\",\"type\":\"BuiltInRole\",\"description\":\"Role + definition to authorize any user/service to create connectedClusters resource\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/Write\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2019-12-12T16:30:43.4954208Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"},{\"properties\":{\"roleName\":\"MLC + Service Role\",\"type\":\"BuiltInRole\",\"description\":\"This role defines + permissions for control plane actions by the Machine Learning Compute (MLC) + service.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-25T21:22:50.7173949Z\",\"updatedOn\":\"2019-11-25T23:28:52.8743615Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b072326-6884-49b7-a53d-ae6aa62260ff\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0b072326-6884-49b7-a53d-ae6aa62260ff\"},{\"properties\":{\"roleName\":\"Experimentation + Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/managementGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/managementGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/managementGroups/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-13T00:08:08.6679591Z\",\"updatedOn\":\"2019-12-16T17:06:26.9735558Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"QnA + Maker Reader\",\"type\":\"BuiltInRole\",\"description\":null,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:26:12.3329439Z\",\"updatedOn\":\"2019-12-17T18:26:12.3329439Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"466ccd10-b268-4a11-b098-b4849f024126\"},{\"properties\":{\"roleName\":\"QnA + Maker Editor\",\"type\":\"BuiltInRole\",\"description\":null,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:27:30.6434556Z\",\"updatedOn\":\"2019-12-17T18:27:30.6434556Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"},{\"properties\":{\"roleName\":\"Experimentation + Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation + Administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/managementGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/managementGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/managementGroups/delete\",\"Microsoft.Experimentation/experimentWorkspaces/managementGroups/admin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-18T22:46:33.1116612Z\",\"updatedOn\":\"2019-12-18T22:46:33.1116612Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"}]}" headers: cache-control: - no-cache content-length: - - '164476' + - '170791' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:10:53 GMT + - Tue, 31 Dec 2019 02:38:57 GMT expires: - '-1' pragma: @@ -1616,7 +1466,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["5ecd2914-e53b-4344-ab84-616fe65ea681"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["1fb43c5b-e6e7-43c7-a883-f70686939775"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1635,14 +1485,14 @@ interactions: - -g --assignee User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"5ecd2914-e53b-4344-ab84-616fe65ea681","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"df00b496-4722-4299-8f88-30cc2b713222","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"6EC9660480DD5930B0760E7553F0A2CEB65045B9","endDate":"2020-02-11T11:05:00Z","keyId":"12a9be24-d8f3-4e72-9aa0-b1532e05744c","startDate":"2019-11-13T11:05:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["df00b496-4722-4299-8f88-30cc2b713222","https://identity.azure.net/2eIyKqtOVywRyzdWX0WtLdViF5Q2SQdCp8o81a8SIQI="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1fb43c5b-e6e7-43c7-a883-f70686939775","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003"],"appDisplayName":null,"appId":"0712f81e-9acd-4bb1-b796-1c5b0ac4a076","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"web-msi000003","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"475801FC06CCD53D42ABC01FF178295200557F15","endDate":"2020-03-30T02:33:00Z","keyId":"1e71fa57-aa1d-469b-881e-53a40822ceb9","startDate":"2019-12-31T02:33:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["0712f81e-9acd-4bb1-b796-1c5b0ac4a076","https://identity.azure.net/8VLZOYMnJUQg6wmCatxnEGD8H84eePHZEgkBGmUoRF4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1655,19 +1505,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 13 Nov 2019 11:10:54 GMT + - Tue, 31 Dec 2019 02:38:58 GMT duration: - - '5254345' + - '4520691' expires: - '-1' ocp-aad-diagnostics-server-name: - - qbmlHRZ24ikXGPs6iC16BeVhqxmVUI3e/2/YpQxlnao= + - +yfCmj1n+1eHAPAd/TBjXq50eQ4gCfe2KhNt1L+GpDc= ocp-aad-session-key: - - ZvGAiSgMU8BUpzGu6Tfxkw0eRaX_GZK2nwIZR5MMLqDaN6hijTnCQ8wPM00AcgO-Hd-JpZcMqgHGtfNSLbhi-wVvz-FUGyquiVOlfRJJ36xNjXwx61v1sV63QGoSTV7T.1fR7PDZD-JC07Neixcd8elcOo7fM45416Mc6u_tBjCk + - -dTej9n0d2Prv3aAm4x9ccNsgjUm370U7NJD0rS91P08q7jWUoEQPOp0kFPLrYk6RK-odBK1mvQzup5KyeY7QYLrKhOUrvi-yF0kXqELgbhVX9G62cK_G_CmdjZuJ3aZ.OL_1ekRQCZAHP2Ij7zDqUcYDwcGXsMEsXvK7wF-jI-Q pragma: - no-cache request-id: - - 202214de-4f82-46a4-8fa8-5885dd64238a + - 52737f9e-9f6f-48d2-85be-15017c30ddb0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1694,26 +1544,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:25.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: cache-control: - no-cache content-length: - - '3740' + - '3625' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:56 GMT + - Tue, 31 Dec 2019 02:39:00 GMT etag: - - '"1D59A12EC596CB0"' + - '"1D5BF83602731A0"' expires: - '-1' pragma: @@ -1750,26 +1600,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:25.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: cache-control: - no-cache content-length: - - '3740' + - '3625' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:56 GMT + - Tue, 31 Dec 2019 02:39:00 GMT etag: - - '"1D59A12EC596CB0"' + - '"1D5BF83602731A0"' expires: - '-1' pragma: @@ -1806,26 +1656,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:25.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: cache-control: - no-cache content-length: - - '3740' + - '3625' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:58 GMT + - Tue, 31 Dec 2019 02:39:03 GMT etag: - - '"1D59A12EC596CB0"' + - '"1D5BF83602731A0"' expires: - '-1' pragma: @@ -1862,26 +1712,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:14.267","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5ecd2914-e53b-4344-ab84-616fe65ea681"}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:25.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null},"identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"1fb43c5b-e6e7-43c7-a883-f70686939775"}}' headers: cache-control: - no-cache content-length: - - '3740' + - '3625' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:59 GMT + - Tue, 31 Dec 2019 02:39:04 GMT etag: - - '"1D59A12EC596CB0"' + - '"1D5BF83602731A0"' expires: - '-1' pragma: @@ -1929,26 +1779,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:04.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:08.73","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3601' + - '3487' content-type: - application/json date: - - Wed, 13 Nov 2019 11:11:05 GMT + - Tue, 31 Dec 2019 02:39:11 GMT etag: - - '"1D59A12EC596CB0"' + - '"1D5BF83602731A0"' expires: - '-1' pragma: @@ -1987,26 +1837,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:04.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:08.73","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3599' + - '3485' content-type: - application/json date: - - Wed, 13 Nov 2019 11:11:07 GMT + - Tue, 31 Dec 2019 02:39:12 GMT etag: - - '"1D59A130A073BC0"' + - '"1D5BF837A17D1A0"' expires: - '-1' pragma: @@ -2043,26 +1893,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-msi000003","name":"web-msi000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:04.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5CABA3DCAB265037E2062E325F4CB4FA5900A1021D93251CB16657346D945B8D","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-msi000003","state":"Running","hostNames":["web-msi000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-msi000003","repositorySiteName":"web-msi000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-msi000003.azurewebsites.net","web-msi000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-msi000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-msi000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/web-msi-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:08.73","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-msi000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"15B01E3A16A2AA46A23C4C112F235BC07648C32B2A71581B5A402C5FCEDAFD94","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-msi000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3599' + - '3485' content-type: - application/json date: - - Wed, 13 Nov 2019 11:11:08 GMT + - Tue, 31 Dec 2019 02:39:13 GMT etag: - - '"1D59A130A073BC0"' + - '"1D5BF837A17D1A0"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml index 2542ed2c8c3..b63bd9f38f7 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_authentication.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_authentication000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:08:03 GMT + - Tue, 31 Dec 2019 02:37:31 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:05 GMT + - Tue, 31 Dec 2019 02:37:31 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1188' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_authentication000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001","name":"cli_test_webapp_authentication000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:08:06 GMT + - Tue, 31 Dec 2019 02:37:33 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","name":"webapp-authentication-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21753,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21753","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":35423,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35423","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:14 GMT + - Tue, 31 Dec 2019 02:37:42 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1185' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","name":"webapp-authentication-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21753,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21753","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":35423,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35423","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:16 GMT + - Tue, 31 Dec 2019 02:37:44 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:17 GMT + - Tue, 31 Dec 2019 02:37:45 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1189' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","name":"webapp-authentication-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21753,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21753","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":35423,"name":"webapp-authentication-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_authentication000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35423","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:17 GMT + - Tue, 31 Dec 2019 02:37:46 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '536' + - '554' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002","name":"webapp-authentication-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-authentication-test000002","state":"Running","hostNames":["webapp-authentication-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_authentication000001-WestUSwebspace/sites/webapp-authentication-test000002","repositorySiteName":"webapp-authentication-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-authentication-test000002.azurewebsites.net","webapp-authentication-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-authentication-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-authentication-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:23.1566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-authentication-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1209A364036FA843CE2B3FE733BEEBA6C8AFC91AC424B0F83FBE90D9FB144100","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_authentication000001","defaultHostName":"webapp-authentication-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-authentication-test000002","state":"Running","hostNames":["webapp-authentication-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_authentication000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_authentication000001-WestUSwebspace/sites/webapp-authentication-test000002","repositorySiteName":"webapp-authentication-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-authentication-test000002.azurewebsites.net","webapp-authentication-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-authentication-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-authentication-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/serverfarms/webapp-authentication-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:53.687","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-authentication-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF340468155FF858736F218981ACE71EB3D28B83ADDA48B691725ED5B585906D","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_authentication000001","defaultHostName":"webapp-authentication-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3745' + - '3731' content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:37 GMT + - Tue, 31 Dec 2019 02:38:10 GMT etag: - - '"1D59A12AA8920A0"' + - '"1D5BF834DEF0A30"' expires: - '-1' pragma: @@ -465,23 +466,29 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/publishxml?api-version=2019-08-01 response: body: string: @@ -489,11 +496,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:08:40 GMT + - Tue, 31 Dec 2019 02:38:11 GMT expires: - '-1' pragma: @@ -507,7 +514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11998' x-powered-by: - ASP.NET status: @@ -530,11 +537,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings","name":"authsettings","type":"Microsoft.Web/sites/config","location":"West @@ -547,7 +554,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:43 GMT + - Tue, 31 Dec 2019 02:38:11 GMT expires: - '-1' pragma: @@ -565,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11995' x-powered-by: - ASP.NET status: @@ -590,11 +597,11 @@ interactions: --facebook-app-secret --facebook-oauth-scopes User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings","name":"authsettings","type":"Microsoft.Web/sites/config","location":"West @@ -607,7 +614,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:44 GMT + - Tue, 31 Dec 2019 02:38:14 GMT expires: - '-1' pragma: @@ -625,7 +632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11994' x-powered-by: - ASP.NET status: @@ -656,11 +663,11 @@ interactions: --facebook-app-secret --facebook-oauth-scopes User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_authentication000001/providers/Microsoft.Web/sites/webapp-authentication-test000002/config/authsettings","name":"authsettings","type":"Microsoft.Web/sites/config","location":"West @@ -673,9 +680,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:47 GMT + - Tue, 31 Dec 2019 02:38:15 GMT etag: - - '"1D59A12B83B98E0"' + - '"1D5BF835A44B190"' expires: - '-1' pragma: @@ -693,7 +700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1175' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index 5f0bc9dd132..268744289a2 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:05 GMT + - Tue, 31 Dec 2019 02:28:07 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:07 GMT + - Tue, 31 Dec 2019 02:28:08 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:49:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:49:07 GMT + - Tue, 31 Dec 2019 02:28:08 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":35421,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35421","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:16 GMT + - Tue, 31 Dec 2019 02:28:18 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1191' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":35421,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35421","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:17 GMT + - Tue, 31 Dec 2019 02:28:21 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:18 GMT + - Tue, 31 Dec 2019 02:28:21 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1196' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25305,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_25305","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":35421,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35421","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:19 GMT + - Tue, 31 Dec 2019 02:28:23 GMT expires: - '-1' pragma: @@ -404,26 +404,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-10-21T10:49:24.803","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BCD66C08AB0832EF1CDDE7810BEBF6BDCA3414CC63568C1AD09885ABB858DEC3","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:28.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B661C7A784139371677FA2AD470D196F56D2B4BEF9495A8F9DF72EFFD38FD165","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3723' + - '3731' content-type: - application/json date: - - Mon, 21 Oct 2019 10:49:41 GMT + - Tue, 31 Dec 2019 02:28:45 GMT etag: - - '"1D587FD348B7CD0"' + - '"1D5BF81FCD56EB0"' expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '497' x-powered-by: - ASP.NET status: @@ -466,29 +466,29 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/publishxml?api-version=2019-08-01 response: body: string: @@ -500,7 +500,7 @@ interactions: content-type: - application/xml date: - - Mon, 21 Oct 2019 10:49:42 GMT + - Tue, 31 Dec 2019 02:28:47 GMT expires: - '-1' pragma: @@ -535,2189 +535,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3161' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config set - Connection: - - keep-alive - ParameterSetName: - - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version - --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled - --min-tls-version --ftps-state - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3161' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", - "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", - "index.php", "hostingstart.html"], "netFrameworkVersion": "v3.5", "phpVersion": - "7.0", "pythonVersion": "3.4", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": - false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": - 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-config-test000002", - "scmType": "None", "use32BitWorkerProcess": false, "webSocketsEnabled": true, - "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", - "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": true, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": - [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", - "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": - "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": - "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.0", "ftpsState": "Disabled", "reservedInstanceCount": - 0}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config set - Connection: - - keep-alive - Content-Length: - - '1369' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version - --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled - --min-tls-version --ftps-state - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3147' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:48 GMT - etag: - - '"1D587FD348B7CD0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3165' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' - headers: - cache-control: - - no-cache - content-length: - - '373' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": - "10.14", "s1": "foo", "s2": "bar", "s3": "bar2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings set - Connection: - - keep-alive - Content-Length: - - '122' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '407' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:52 GMT - etag: - - '"1D587FD44EC9A50"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1156' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '407' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '407' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": - "10.14", "s3": "bar2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config appsettings delete - Connection: - - keep-alive - Content-Length: - - '96' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s3":"bar2"}}' - headers: - cache-control: - - no-cache - content-length: - - '385' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:58 GMT - etag: - - '"1D587FD4842A320"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1182' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config hostname list - Connection: - - keep-alive - ParameterSetName: - - -g --webapp-name - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings?api-version=2018-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings/webapp-config-test000002.azurewebsites.net","name":"webapp-config-test000002/webapp-config-test000002.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West - US","properties":{"siteName":"webapp-config-test000002","domainId":null,"hostNameType":"Verified"}}],"nextLink":null,"id":null}' - headers: - cache-control: - - no-cache - content-length: - - '623' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:49:59 GMT - etag: - - '"1D587FD4842A320"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --custom-id --storage-type --account-name --share-name --access-key - --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '344' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", - "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": - "/path/to/mount"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account add - Connection: - - keep-alive - Content-Length: - - '171' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --custom-id --storage-type --account-name --share-name --access-key - --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '500' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:02 GMT - etag: - - '"1D587FD4AA1EFE0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1186' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account update - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --custom-id --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '491' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", - "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": - "/different/path"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account update - Connection: - - keep-alive - Content-Length: - - '172' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --custom-id --mount-path - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '501' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:06 GMT - etag: - - '"1D587FD4D351DE0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1191' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '492' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '492' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --custom-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' - headers: - cache-control: - - no-cache - content-length: - - '492' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11992' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --custom-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config storage-account delete - Connection: - - keep-alive - Content-Length: - - '43' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --custom-id - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"West - US","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '353' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:16 GMT - etag: - - '"1D587FD52E54350"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1188' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{}}' - headers: - cache-control: - - no-cache - content-length: - - '347' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"c1": {"value": "conn1", "type": - "MySql"}, "c2": {"value": "conn2", "type": "MySql"}, "c3": {"value": "conn3", - "type": "MySql"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - Content-Length: - - '170' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '460' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:19 GMT - etag: - - '"1D587FD549F4F60"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1181' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '209' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"connectionStringNames": ["c3"]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string set - Connection: - - keep-alive - Content-Length: - - '49' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -t -g -n --settings --slot-settings - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '207' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1188' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '460' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '207' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '460' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '207' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"connectionStringNames": [], "appSettingNames": [], "azureStorageConfigNames": - []}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - Content-Length: - - '99' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '203' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1186' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"kind": "", "properties": {"c2": {"value": "conn2", "type": - "MySql"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string delete - Connection: - - keep-alive - Content-Length: - - '84' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --setting-names - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:28 GMT - etag: - - '"1D587FD59CBC5E0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp config connection-string list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '203' - content-type: - - application/json - date: - - Mon, 21 Oct 2019 10:50:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment user show - Connection: - - keep-alive - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"web","type":"Microsoft.Web/publishingUsers/web","properties":{"name":null,"publishingUserName":null,"publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '258' + - '3132' content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:34 GMT + - Tue, 31 Dec 2019 02:28:48 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml deleted file mode 100644 index d66eb7fee87..00000000000 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml +++ /dev/null @@ -1,385 +0,0 @@ -interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-05-28T19:56:17Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-28T19:56:17Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:19 GMT - expires: - - '-1' - pragma: - - no-cache - 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: - - webapp webjob continuous list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs?api-version=2018-02-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West - US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '763' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:22 GMT - etag: - - '"d6f53377"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous start - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/start?api-version=2018-02-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 28 May 2019 19:56:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous start - Connection: - - keep-alive - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West - US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '751' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous stop - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/stop?api-version=2018-02-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 28 May 2019 19:56:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp webjob continuous stop - Connection: - - keep-alive - ParameterSetName: - - -g -n -w - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West - US","properties":{"status":"Disabling","detailed_status":"e7b519 - Disabling\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' - headers: - cache-control: - - no-cache - content-length: - - '755' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 28 May 2019 19:56:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 28 May 2019 19:56:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdKS1laTkZLUFZUR1c1UVY3M1ZKWFRFRDM3QlpKUE5WMzZTWHw3OUEyRTg3NDg5MUU2OTM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml index 93e88dbb4ea..46bd62edb0a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_cors.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:02:00 GMT + - Tue, 31 Dec 2019 02:31:19 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:01 GMT + - Tue, 31 Dec 2019 02:31:19 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1187' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:02:02 GMT + - Tue, 31 Dec 2019 02:31:20 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":34969,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34969","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23811,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23811","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:11 GMT + - Tue, 31 Dec 2019 02:31:33 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1184' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":34969,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34969","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23811,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23811","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:13 GMT + - Tue, 31 Dec 2019 02:31:34 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:14 GMT + - Tue, 31 Dec 2019 02:31:35 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","name":"slot-traffic-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":34969,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_34969","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23811,"name":"slot-traffic-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23811","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:15 GMT + - Tue, 31 Dec 2019 02:31:37 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '538' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:19.223","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0EDBE9A5245921F49C2C9BEB73333BC85B910BD83201029740089D27489F319F","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:42.3266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AAFDC3A17B789C0F0A54B3F222FB453B4438B777C8E9EE78B723A8D176E3B093","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3657' + - '3592' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:35 GMT + - Tue, 31 Dec 2019 02:31:59 GMT etag: - - '"1D59A11D17DC5E0"' + - '"1D5BF82704736EB"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '497' x-powered-by: - ASP.NET status: @@ -465,22 +466,28 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/publishxml?api-version=2019-08-01 response: body: string: @@ -488,11 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:02:36 GMT + - Tue, 31 Dec 2019 02:32:01 GMT expires: - '-1' pragma: @@ -506,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -527,24 +534,26 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3084' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:37 GMT + - Tue, 31 Dec 2019 02:32:02 GMT expires: - '-1' pragma: @@ -574,13 +583,16 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": - ["https://msdn.com", "https://msn.com"]}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://msdn.com", + "https://msn.com"]}, "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": + "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], + "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -591,33 +603,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1141' + - '1423' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2983' + - '3150' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:40 GMT + - Tue, 31 Dec 2019 02:32:04 GMT etag: - - '"1D59A11D17DC5E0"' + - '"1D5BF82704736EB"' expires: - '-1' pragma: @@ -635,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1181' x-powered-by: - ASP.NET status: @@ -656,24 +670,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3001' + - '3168' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:40 GMT + - Tue, 31 Dec 2019 02:32:06 GMT expires: - '-1' pragma: @@ -710,24 +726,26 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3001' + - '3168' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:41 GMT + - Tue, 31 Dec 2019 02:32:07 GMT expires: - '-1' pragma: @@ -757,13 +775,17 @@ interactions: false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-traffic-web000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": + true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": - ["https://msdn.com"], "supportCredentials": false}, "localMySqlEnabled": false, - "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://msdn.com"], + "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -774,33 +796,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1187' + - '1469' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2965' + - '3132' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:43 GMT + - Tue, 31 Dec 2019 02:32:11 GMT etag: - - '"1D59A11DD77B8B0"' + - '"1D5BF827D7B8B80"' expires: - '-1' pragma: @@ -818,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1191' x-powered-by: - ASP.NET status: @@ -839,24 +863,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://msdn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2983' + - '3150' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:46 GMT + - Tue, 31 Dec 2019 02:32:12 GMT expires: - '-1' pragma: @@ -893,26 +919,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003","name":"slot-traffic-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:43.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0EDBE9A5245921F49C2C9BEB73333BC85B910BD83201029740089D27489F319F","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003","state":"Running","hostNames":["slot-traffic-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003.azurewebsites.net","slot-traffic-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:11.2466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AAFDC3A17B789C0F0A54B3F222FB453B4438B777C8E9EE78B723A8D176E3B093","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3654' + - '3590' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:47 GMT + - Tue, 31 Dec 2019 02:32:13 GMT etag: - - '"1D59A11DFDB2420"' + - '"1D5BF828140EAEB"' expires: - '-1' pragma: @@ -956,26 +982,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1","name":"slot-traffic-web000003/slot1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-traffic-web000003(slot1)","state":"Running","hostNames":["slot-traffic-web000003-slot1.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-slot1.azurewebsites.net","slot-traffic-web000003-slot1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-slot1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-slot1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:52.457","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__30cd","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1E04D4D8557E169E4B9E01796AAEF0F80FF2C0686665E09E5CA696D3515BF998","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-slot1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-traffic-web000003(slot1)","state":"Running","hostNames":["slot-traffic-web000003-slot1.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000003","repositorySiteName":"slot-traffic-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000003-slot1.azurewebsites.net","slot-traffic-web000003-slot1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000003-slot1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000003-slot1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:19.9766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000003__228a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DD29C5524DED5C11993D80CA8BDF3DFE770C8214204513E849F3FC49497BBFA4","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000003-slot1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3730' + - '3665' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:08 GMT + - Tue, 31 Dec 2019 02:32:37 GMT etag: - - '"1D59A11DFDB2420"' + - '"1D5BF828140EAEB"' expires: - '-1' pragma: @@ -1014,24 +1040,26 @@ interactions: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2936' + - '3105' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:10 GMT + - Tue, 31 Dec 2019 02:32:40 GMT expires: - '-1' pragma: @@ -1065,9 +1093,13 @@ interactions: "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": - ["https://foo.com"]}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + ["https://foo.com"]}, "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1078,33 +1110,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1128' + - '1412' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1","name":"slot-traffic-web000003/slot1","type":"Microsoft.Web/sites/slots","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2995' + - '3164' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:13 GMT + - Tue, 31 Dec 2019 02:32:42 GMT etag: - - '"1D59A11E55370B0"' + - '"1D5BF8286DE4BAB"' expires: - '-1' pragma: @@ -1122,7 +1156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1182' x-powered-by: - ASP.NET status: @@ -1143,24 +1177,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3001' + - '3170' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:14 GMT + - Tue, 31 Dec 2019 02:32:46 GMT expires: - '-1' pragma: @@ -1197,24 +1233,26 @@ interactions: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://foo.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3001' + - '3170' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:16 GMT + - Tue, 31 Dec 2019 02:32:46 GMT expires: - '-1' pragma: @@ -1249,9 +1287,12 @@ interactions: [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": [], "supportCredentials": - false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": false, - "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 0}}' + false}, "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": + "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], + "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": + "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: - application/json @@ -1262,33 +1303,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1176' + - '1460' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1","name":"slot-traffic-web000003/slot1","type":"Microsoft.Web/sites/slots","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2978' + - '3147' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:19 GMT + - Tue, 31 Dec 2019 02:32:50 GMT etag: - - '"1D59A11F13372E0"' + - '"1D5BF8294681340"' expires: - '-1' pragma: @@ -1306,7 +1349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1193' x-powered-by: - ASP.NET status: @@ -1327,24 +1370,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000003/slots/slot1/config/web","name":"slot-traffic-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000003__slot1","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":[],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2984' + - '3153' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:19 GMT + - Tue, 31 Dec 2019 02:32:52 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml index afe253550f7..8df08a2605b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_linux_free.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_linux_free000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T11:02:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 11:02:14 GMT + - Tue, 31 Dec 2019 02:38:23 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 11:02:15 GMT + - Tue, 31 Dec 2019 02:38:24 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_linux_free000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T11:02:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001","name":"cli_test_webapp_linux_free000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 11:02:16 GMT + - Tue, 31 Dec 2019 02:38:24 GMT expires: - '-1' pragma: @@ -170,16 +170,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":2658,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_2658","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' + US","properties":{"serverFarmId":4303,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_4303","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' headers: cache-control: - no-cache @@ -188,7 +188,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 11:02:43 GMT + - Tue, 31 Dec 2019 02:38:51 GMT expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1187' x-powered-by: - ASP.NET status: @@ -227,16 +227,16 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":2658,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_2658","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' + US","properties":{"serverFarmId":4303,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_4303","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' headers: cache-control: - no-cache @@ -245,7 +245,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 11:02:44 GMT + - Tue, 31 Dec 2019 02:38:52 GMT expires: - '-1' pragma: @@ -287,11 +287,11 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -303,7 +303,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 11:02:44 GMT + - Tue, 31 Dec 2019 02:38:53 GMT expires: - '-1' pragma: @@ -321,7 +321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1187' x-powered-by: - ASP.NET status: @@ -342,16 +342,16 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","name":"plan-linux-free000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":2658,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_2658","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' + US","properties":{"serverFarmId":4303,"name":"plan-linux-free000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_linux_free000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_4303","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":1}}' headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 11:02:46 GMT + - Tue, 31 Dec 2019 02:38:53 GMT expires: - '-1' pragma: @@ -397,11 +397,11 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 @@ -427,7 +427,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 11:02:46 GMT + - Tue, 31 Dec 2019 02:38:55 GMT expires: - '-1' pragma: @@ -471,26 +471,26 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002","name":"webapp-linux-free000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"West - US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-139.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T11:02:51.7533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF9C51A2B7033C2BE7C2762226B802B7F79AB3DDE9D91C442603C213528465A0","kind":"app,linux","inboundIpAddress":"40.112.243.7","possibleInboundIpAddresses":"40.112.243.7","outboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150","possibleOutboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150,13.64.91.216,13.64.94.144,13.91.124.136,13.91.125.204,40.118.239.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-139","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-139.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:58.62","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D033DE5C139BDE2FFF5F25B6DEEE6B32F19A0F0679CF2FE5C971F97AEF2A85D7","kind":"app,linux","inboundIpAddress":"40.112.243.7","possibleInboundIpAddresses":"40.112.243.7","outboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150","possibleOutboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150,13.64.91.216,13.64.94.144,13.91.124.136,13.91.125.204,40.118.239.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-139","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3649' + - '3644' content-type: - application/json date: - - Tue, 19 Nov 2019 11:03:08 GMT + - Tue, 31 Dec 2019 02:39:14 GMT etag: - - '"1D59EC8E3862C4B"' + - '"1D5BF83744DAE8B"' expires: - '-1' pragma: @@ -508,7 +508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '496' x-powered-by: - ASP.NET status: @@ -529,15 +529,15 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002","name":"webapp-linux-free000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"West - US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-139.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T11:02:52.5166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF9C51A2B7033C2BE7C2762226B802B7F79AB3DDE9D91C442603C213528465A0","kind":"app,linux","inboundIpAddress":"40.112.243.7","possibleInboundIpAddresses":"40.112.243.7","outboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150","possibleOutboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150,13.64.91.216,13.64.94.144,13.91.124.136,13.91.125.204,40.118.239.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-139","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux-free000002","state":"Running","hostNames":["webapp-linux-free000002.azurewebsites.net"],"webSpace":"cli_test_webapp_linux_free000001-WestUSwebspace","selfLink":"https://waws-prod-bay-139.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_linux_free000001-WestUSwebspace/sites/webapp-linux-free000002","repositorySiteName":"webapp-linux-free000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-free000002.azurewebsites.net","webapp-linux-free000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|10.14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-free000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-free000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/serverfarms/plan-linux-free000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:59.0166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux-free000002","trafficManagerHostNames":null,"sku":"Free","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D033DE5C139BDE2FFF5F25B6DEEE6B32F19A0F0679CF2FE5C971F97AEF2A85D7","kind":"app,linux","inboundIpAddress":"40.112.243.7","possibleInboundIpAddresses":"40.112.243.7","outboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150","possibleOutboundIpAddresses":"40.112.243.7,40.118.229.231,13.64.89.216,40.78.16.175,52.160.111.150,13.64.91.216,13.64.94.144,13.91.124.136,13.91.125.204,40.118.239.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-139","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_linux_free000001","defaultHostName":"webapp-linux-free000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -546,9 +546,9 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 11:03:09 GMT + - Tue, 31 Dec 2019 02:39:15 GMT etag: - - '"1D59EC8E3862C4B"' + - '"1D5BF83744DAE8B"' expires: - '-1' pragma: @@ -590,26 +590,26 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '535' + - '558' content-type: - application/json date: - - Tue, 19 Nov 2019 11:03:35 GMT + - Tue, 31 Dec 2019 02:39:41 GMT etag: - - '"1D59EC8FD3E572B"' + - '"1D5BF838D78F5B5"' expires: - '-1' pragma: @@ -623,7 +623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1176' x-powered-by: - ASP.NET status: @@ -644,25 +644,25 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-19T11:04:01.6180133 - http://webapp-linux-free000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-11-19_11-04-00Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:40:04.3924653 + http://webapp-linux-free000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-40-03Z"}}' headers: cache-control: - no-cache content-length: - - '709' + - '732' content-type: - application/json date: - - Tue, 19 Nov 2019 11:04:07 GMT + - Tue, 31 Dec 2019 02:40:12 GMT etag: - - '"1D59EC8FD3E572B"' + - '"1D5BF838D78F5B5"' expires: - '-1' pragma: @@ -699,25 +699,25 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-19T11:04:34.0466094 - http://webapp-linux-free000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-11-19_11-04-00Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:40:36.4703940 + http://webapp-linux-free000002.scm.azurewebsites.net:80/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-40-03Z"}}' headers: cache-control: - no-cache content-length: - - '709' + - '732' content-type: - application/json date: - - Tue, 19 Nov 2019 11:04:37 GMT + - Tue, 31 Dec 2019 02:40:42 GMT etag: - - '"1D59EC8FD3E572B"' + - '"1D5BF838D78F5B5"' expires: - '-1' pragma: @@ -754,24 +754,24 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/sourcecontrols/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '534' + - '557' content-type: - application/json date: - - Tue, 19 Nov 2019 11:05:09 GMT + - Tue, 31 Dec 2019 02:41:14 GMT etag: - - '"1D59EC8FD3E572B"' + - '"1D5BF838D78F5B5"' expires: - '-1' pragma: @@ -812,23 +812,29 @@ interactions: - -g -n --plan -u -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/publishxml?api-version=2019-08-01 response: body: string: @@ -836,11 +842,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Tue, 19 Nov 2019 11:05:11 GMT + - Tue, 31 Dec 2019 02:41:16 GMT expires: - '-1' pragma: @@ -854,7 +860,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11992' x-powered-by: - ASP.NET status: @@ -875,24 +881,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_linux_free000001/providers/Microsoft.Web/sites/webapp-linux-free000002/config/web","name":"webapp-linux-free000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-free000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"ExternalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|10.14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-linux-free000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"ExternalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2931' + - '3100' content-type: - application/json date: - - Tue, 19 Nov 2019 11:05:12 GMT + - Tue, 31 Dec 2019 02:41:17 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml index a28c08f5e14..ead07947829 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_create_noAlwaysOn.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_alwaysOn000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:08:57 GMT + - Tue, 31 Dec 2019 02:37:40 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:08:58 GMT + - Tue, 31 Dec 2019 02:37:41 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1191' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_alwaysOn000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001","name":"cli_test_webapp_alwaysOn000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:08:59 GMT + - Tue, 31 Dec 2019 02:37:43 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","name":"plan-create-alwaysOn-e2e000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29493,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29493","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":35424,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35424","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:05 GMT + - Tue, 31 Dec 2019 02:37:49 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1181' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","name":"plan-create-alwaysOn-e2e000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29493,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29493","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":35424,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35424","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:06 GMT + - Tue, 31 Dec 2019 02:37:51 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:07 GMT + - Tue, 31 Dec 2019 02:37:52 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1189' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","name":"plan-create-alwaysOn-e2e000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29493,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29493","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":35424,"name":"plan-create-alwaysOn-e2e000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_alwaysOn000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35424","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:09 GMT + - Tue, 31 Dec 2019 02:37:53 GMT expires: - '-1' pragma: @@ -403,26 +403,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002","name":"webapp-create-alwaysOn-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-create-alwaysOn-e2e000002","state":"Running","hostNames":["webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net"],"webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_alwaysOn000001-WestUSwebspace/sites/webapp-create-alwaysOn-e2e000002","repositorySiteName":"webapp-create-alwaysOn-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net","webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:14.697","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-create-alwaysOn-e2e000002","trafficManagerHostNames":null,"sku":"Shared","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"056615558DCED89A874A1E8F09F06032B839D189347EE2112A1B4645FFEBD1C1","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_alwaysOn000001","defaultHostName":"webapp-create-alwayson-e2eexyjhg5b7tg7b72zug.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-create-alwaysOn-e2e000002","state":"Running","hostNames":["webapp-create-alwayson-e2ekpoizwnbmvr6xiied6.azurewebsites.net"],"webSpace":"cli_test_webapp_alwaysOn000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_alwaysOn000001-WestUSwebspace/sites/webapp-create-alwaysOn-e2e000002","repositorySiteName":"webapp-create-alwaysOn-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-create-alwayson-e2ekpoizwnbmvr6xiied6.azurewebsites.net","webapp-create-alwayson-e2ekpoizwnbmvr6xiied6.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-create-alwayson-e2ekpoizwnbmvr6xiied6.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-create-alwayson-e2ekpoizwnbmvr6xiied6.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/serverfarms/plan-create-alwaysOn-e2e000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:56.92","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-create-alwaysOn-e2e000002","trafficManagerHostNames":null,"sku":"Shared","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A3D7397817379F24D80F6CC1303CFBC63417F112548B86F4ED2C3FB76F6E77E4","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_alwaysOn000001","defaultHostName":"webapp-create-alwayson-e2ekpoizwnbmvr6xiied6.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3789' + - '3780' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:31 GMT + - Tue, 31 Dec 2019 02:38:15 GMT etag: - - '"1D59A12C936D380"' + - '"1D5BF834FC10B10"' expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -465,23 +465,29 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/publishxml?api-version=2019-08-01 response: body: string: @@ -489,11 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1330' + - '1990' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:09:33 GMT + - Tue, 31 Dec 2019 02:38:16 GMT expires: - '-1' pragma: @@ -507,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11998' x-powered-by: - ASP.NET status: @@ -528,24 +534,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_alwaysOn000001/providers/Microsoft.Web/sites/webapp-create-alwaysOn-e2e000002/config/web","name":"webapp-create-alwaysOn-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-create-alwaysOn-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-create-alwaysOn-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2977' + - '3146' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:34 GMT + - Tue, 31 Dec 2019 02:38:18 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml index c9c3f6168aa..7309fd7e833 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_deleted_list.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku --tags User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:33:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:40:52 GMT + - Tue, 31 Dec 2019 02:33:35 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku --tags User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:53 GMT + - Tue, 31 Dec 2019 02:33:36 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku --tags User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:49Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:33:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:40:54 GMT + - Tue, 31 Dec 2019 02:33:36 GMT expires: - '-1' pragma: @@ -170,16 +170,16 @@ interactions: - -g -n --sku --tags User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","name":"delete-me-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":24045,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24045","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":37235,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_37235","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -188,7 +188,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:00 GMT + - Tue, 31 Dec 2019 02:33:45 GMT expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1186' x-powered-by: - ASP.NET status: @@ -227,16 +227,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","name":"delete-me-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":24045,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24045","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":37235,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_37235","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -245,7 +245,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:00 GMT + - Tue, 31 Dec 2019 02:33:46 GMT expires: - '-1' pragma: @@ -287,11 +287,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -303,7 +303,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:00 GMT + - Tue, 31 Dec 2019 02:33:47 GMT expires: - '-1' pragma: @@ -321,7 +321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1190' x-powered-by: - ASP.NET status: @@ -342,16 +342,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","name":"delete-me-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":24045,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_24045","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":37235,"name":"delete-me-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_37235","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -360,7 +360,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:02 GMT + - Tue, 31 Dec 2019 02:33:47 GMT expires: - '-1' pragma: @@ -404,26 +404,26 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003","name":"delete-me-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:05.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35B42FBB9B1C45E56B06AE1616FA92C5B1CB1650387B665CCF53900959C6312C","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:51.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E60A8F4E3591F2799959822BF48C5A2A5D859B2D0EDEDBF35CACD313F206B441","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3525' + - '3653' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:21 GMT + - Tue, 31 Dec 2019 02:34:08 GMT etag: - - '"1D59A8C9486EB6B"' + - '"1D5BF82BD608250"' expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '495' x-powered-by: - ASP.NET status: @@ -466,22 +466,28 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003/publishxml?api-version=2019-08-01 response: body: string: @@ -489,11 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Thu, 14 Nov 2019 01:41:21 GMT + - Tue, 31 Dec 2019 02:34:09 GMT expires: - '-1' pragma: @@ -507,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11995' x-powered-by: - ASP.NET status: @@ -528,26 +534,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003","name":"delete-me-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:41:05.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35B42FBB9B1C45E56B06AE1616FA92C5B1CB1650387B665CCF53900959C6312C","kind":"app","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"delete-me-web000003","state":"Running","hostNames":["delete-me-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/delete-me-web000003","repositorySiteName":"delete-me-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["delete-me-web000003.azurewebsites.net","delete-me-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"delete-me-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"delete-me-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/delete-me-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:52.117","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"delete-me-web000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E60A8F4E3591F2799959822BF48C5A2A5D859B2D0EDEDBF35CACD313F206B441","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"delete-me-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3652' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:23 GMT + - Tue, 31 Dec 2019 02:34:11 GMT etag: - - '"1D59A8C9486EB6B"' + - '"1D5BF82BD608250"' expires: - '-1' pragma: @@ -586,11 +592,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/delete-me-web000003?api-version=2019-08-01 response: body: string: '' @@ -600,9 +606,9 @@ interactions: content-length: - '0' date: - - Thu, 14 Nov 2019 01:41:27 GMT + - Tue, 31 Dec 2019 02:34:17 GMT etag: - - '"1D59A8C9486EB6B"' + - '"1D5BF82BD608250"' expires: - '-1' pragma: @@ -616,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14995' x-powered-by: - ASP.NET status: @@ -637,7 +643,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET @@ -710,37 +716,37 @@ interactions: Central","West Central US","East Asia (Stage)","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/networkConfig","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/networkConfig","locations":["North + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/networkConfig","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/hostNameBindings","locations":["North + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/hostNameBindings","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/hostNameBindings","locations":["North + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/slots/hostNameBindings","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["Central + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-08-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -750,59 +756,59 @@ interactions: US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"certificates","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","East US 2 EUAP","Central - US EUAP","West US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossSubscriptionResourceMove, + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","East US 2 EUAP","Central US EUAP","West + US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serverFarms","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP","West US","Central US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East US 2 EUAP","Central US EUAP","West US","Central + US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sites","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East US 2 EUAP","Central US - EUAP","West US","Central US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East US 2 EUAP","Central US EUAP","West US","Central + US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"sites/slots","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central US","South - Central US","Brazil South","Australia East","Australia Southeast","South India","Canada - Central","Canada East","UK West","UK South","MSFT West US","MSFT East US","MSFT - East Asia","MSFT North Europe","East US 2 (Stage)","Central US (Stage)","North - Central US (Stage)","France Central","South Africa North","Japan West","Central - India","Korea Central","West India","Australia Central","Korea South","West - Central US","East Asia (Stage)","East US 2 EUAP","Central US EUAP","West US","Central - US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central US","Brazil South","Canada Central","Canada East","UK West","UK South","MSFT + West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central + US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia + East","Japan West","Central India","Korea Central","West India","Australia + Central","Australia Southeast","Korea South","South India","West Central US","East + Asia (Stage)","East US 2 EUAP","Central US EUAP","West US","Central US","West + US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"runtimes","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"recommendations","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"resourceHealthMetadata","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"georegions","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"sites/premieraddons","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","East US 2 EUAP","Central - US EUAP","West US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","East US 2 EUAP","Central US EUAP","West + US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2016-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"hostingEnvironments","locations":["North - Central US","South Central US","Brazil South","Australia East","Australia - Southeast","South India","Canada Central","Canada East","UK West","MSFT West - US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","South Africa North","East US 2","UK - South","Southeast Asia","North Europe","Japan East","West Europe","Japan West","Central - India","Korea Central","France Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central + Central US","South Central US","Brazil South","Canada Central","Canada East","UK + West","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","South Africa + North","East US 2","UK South","Southeast Asia","North Europe","Japan East","West + Europe","Australia East","Japan West","Central India","Korea Central","France + Central","West India","Australia Central","Australia Southeast","Korea South","South + India","West Central US","East Asia (Stage)","East Asia","West US","Central US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2019-01-01","2018-11-01","2018-08-01","2018-05-01-preview","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"}],"zoneMappings":[{"location":"East US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central @@ -813,21 +819,21 @@ interactions: East","zones":[]},{"location":"South Africa North","zones":[]},{"location":"South Central US","zones":[]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostingEnvironments/multiRolePools","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"hostingEnvironments/workerPools","locations":["North + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"hostingEnvironments/workerPools","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"deploymentLocations","locations":["Central + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2019-02-01","2018-11-01","2018-08-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"deploymentLocations","locations":["Central US","North Europe","West Europe","Southeast Asia","Korea Central","Korea South","West US","East US","Japan West","Japan East","East Asia","East US 2","North Central US","South Central US","Brazil South","Australia East","Australia Southeast","West @@ -844,29 +850,29 @@ interactions: US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"deletedSites","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deletedSites","locations":["North + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deletedSites","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","Japan - West","Central India","Korea Central","West India","Australia Central","Korea - South","West Central US","East Asia (Stage)","East Asia","West US","Central - US","West US 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["North + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East Asia","West US","Central US","West US + 2","East US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"ishostingenvironmentnameavailable","locations":[],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["North Europe","West Europe","Southeast Asia","Japan East","East US 2","North Central - US","South Central US","Brazil South","Australia East","Australia Southeast","South - India","Canada Central","Canada East","UK West","UK South","MSFT West US","MSFT - East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","Central - US (Stage)","North Central US (Stage)","France Central","South Africa North","East - Asia","Japan West","Central India","Korea Central","West India","Australia - Central","Korea South","West Central US","East Asia (Stage)","East US 2 EUAP","Central - US EUAP","West US","Central US","West US 2","East US"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-11-01","2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"connections","locations":["North + US","South Central US","Brazil South","Canada Central","Canada East","UK West","UK + South","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East + US 2 (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South + Africa North","Australia East","Japan West","Central India","Korea Central","West + India","Australia Central","Australia Southeast","Korea South","South India","West + Central US","East Asia (Stage)","East US 2 EUAP","Central US EUAP","West US","Central + US","West US 2","East US","East Asia"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-11-01","2016-08-01","2016-03-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"defaultApiVersion":"2018-02-01","apiProfiles":[{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"connections","locations":["North Central US","Central US","South Central US","North Europe","West Europe","East Asia","Southeast Asia","West US","East US","East US 2","Japan West","Japan East","Brazil South","Australia East","Australia Southeast","South India","Central @@ -956,18 +962,21 @@ interactions: Central US","UK West","UK South","West US 2","MSFT West US","MSFT East US","MSFT East Asia","MSFT North Europe","East US 2 (Stage)","East Asia (Stage)","Central US (Stage)","North Central US (Stage)","France Central","South Africa North","Australia - Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East + Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-03-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"serverFarms/eventGridFilters","locations":["South + India"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-03-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"None"},{"resourceType":"sites/eventGridFilters","locations":["South + India"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01-preview","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"None"},{"resourceType":"sites/slots/eventGridFilters","locations":["South + India"],"apiVersions":["2019-08-01","2018-11-01","2018-02-01","2017-08-01","2016-09-01","2016-08-01","2016-03-01","2015-11-01","2015-08-01","2015-07-01","2015-06-01","2015-05-01","2015-04-01","2015-02-01","2015-01-01","2014-11-01","2014-06-01","2014-04-01-preview","2014-04-01"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East US 2 EUAP"],"apiVersions":["2019-08-01","2019-01-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2019-01-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["East US 2 EUAP"],"apiVersions":["2019-08-01","2019-01-01","2018-02-01","2016-08-01"],"defaultApiVersion":"2019-01-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-08-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-08-01"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-02-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2018-02-01"}],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '47684' + - '48767' content-type: - application/json; charset=utf-8 date: - - Thu, 14 Nov 2019 01:41:28 GMT + - Tue, 31 Dec 2019 02:34:17 GMT expires: - '-1' pragma: @@ -996,11 +1005,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Europe/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Europe/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -1047,16 +1056,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:29 GMT + - Tue, 31 Dec 2019 02:34:19 GMT expires: - '-1' pragma: @@ -1093,67 +1112,25 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Europe/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Europe/deletedSites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + Europe/deletedSites/1005676","name":"web-ssl-test24kluila","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":1005676,"deletedTimestamp":"2019-12-31T02:33:53.2378390","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgu2vgv5hcmqd4lojp25hakbkh2c4ygam5sqcvldojdf4mmc6scqvkallk26dox4dg2","webSpace":"clitest.rgu2vgv5hcmqd4lojp25hakbkh2c4ygam5sqcvldojdf4mmc6scqvkallk26dox4dg2-WestEuropewebspace","stamp":"waws-prod-am2-219","deletedSiteName":"web-ssl-test24kluila","slot":"Production","kind":"app","geoRegionName":"West + Europe","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '738' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:29 GMT + - Tue, 31 Dec 2019 02:34:19 GMT expires: - '-1' pragma: @@ -1190,67 +1167,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast%20Asia/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast%20Asia/deletedSites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '38' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:30 GMT + - Tue, 31 Dec 2019 02:34:19 GMT expires: - '-1' pragma: @@ -1287,11 +1220,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20East/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20East/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -1338,16 +1271,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:31 GMT + - Tue, 31 Dec 2019 02:34:20 GMT expires: - '-1' pragma: @@ -1384,11 +1327,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -1435,16 +1378,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:32 GMT + - Tue, 31 Dec 2019 02:34:21 GMT expires: - '-1' pragma: @@ -1481,11 +1434,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -1532,16 +1485,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:32 GMT + - Tue, 31 Dec 2019 02:34:21 GMT expires: - '-1' pragma: @@ -1578,11 +1541,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Central%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -1629,16 +1592,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:33 GMT + - Tue, 31 Dec 2019 02:34:22 GMT expires: - '-1' pragma: @@ -1675,11 +1648,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Brazil%20South/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Brazil%20South/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -1726,16 +1699,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:34 GMT + - Tue, 31 Dec 2019 02:34:23 GMT expires: - '-1' pragma: @@ -1772,67 +1755,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20East/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20Central/deletedSites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '38' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:34 GMT + - Tue, 31 Dec 2019 02:34:24 GMT expires: - '-1' pragma: @@ -1869,11 +1808,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Southeast/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20East/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -1920,16 +1859,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:35 GMT + - Tue, 31 Dec 2019 02:34:26 GMT expires: - '-1' pragma: @@ -1966,11 +1915,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20India/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20West/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2017,16 +1966,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:35 GMT + - Tue, 31 Dec 2019 02:34:26 GMT expires: - '-1' pragma: @@ -2063,67 +2022,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20South/deletedSites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '38' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:36 GMT + - Tue, 31 Dec 2019 02:34:27 GMT expires: - '-1' pragma: @@ -2160,11 +2075,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Canada%20East/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20West%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2211,16 +2126,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:37 GMT + - Tue, 31 Dec 2019 02:34:27 GMT expires: - '-1' pragma: @@ -2257,11 +2182,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20West/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2308,16 +2233,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:38 GMT + - Tue, 31 Dec 2019 02:34:28 GMT expires: - '-1' pragma: @@ -2354,11 +2289,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/UK%20South/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20Asia/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2405,16 +2340,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:38 GMT + - Tue, 31 Dec 2019 02:34:29 GMT expires: - '-1' pragma: @@ -2451,11 +2396,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20West%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20North%20Europe/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2502,16 +2447,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:39 GMT + - Tue, 31 Dec 2019 02:34:29 GMT expires: - '-1' pragma: @@ -2548,11 +2503,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202%20%28Stage%29/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2599,16 +2554,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:39 GMT + - Tue, 31 Dec 2019 02:34:30 GMT expires: - '-1' pragma: @@ -2645,11 +2610,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20East%20Asia/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US%20%28Stage%29/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2696,16 +2661,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:40 GMT + - Tue, 31 Dec 2019 02:34:31 GMT expires: - '-1' pragma: @@ -2742,11 +2717,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/MSFT%20North%20Europe/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US%20%28Stage%29/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2793,16 +2768,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:41 GMT + - Tue, 31 Dec 2019 02:34:31 GMT expires: - '-1' pragma: @@ -2839,11 +2824,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/France%20Central/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2890,16 +2875,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:41 GMT + - Tue, 31 Dec 2019 02:34:32 GMT expires: - '-1' pragma: @@ -2936,11 +2931,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Africa%20North/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan @@ -2987,16 +2982,26 @@ interactions: Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28608667","name":"webapp-quick-linuxx5bhk4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28608667,"deletedTimestamp":"2019-11-14T01:43:05.5111319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar","webSpace":"clitest.rgqlgwfjujmgfqea6tpbz2gskytacm6ev4iqqaaxodtbaxvfxssqtqb33oz2gvhqtar-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxx5bhk4","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28651760","name":"webassignment115095","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28651760,"deletedTimestamp":"2019-11-18T02:49:37.9805225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgassignment115095","webSpace":"rgassignment115095-SouthCentralUSwebspace","stamp":"waws-prod-sn1-087","deletedSiteName":"webassignment115095","slot":"Production","kind":"app","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28982998","name":"functionapp-linuxjcwx2fg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28982998,"deletedTimestamp":"2019-12-27T14:01:57.7354780","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7","webSpace":"clitest.rgbhhje2yxqdkeddyt3o37aprxtim4b7zzvdmh5gy2wgfmlldlv62jfbq44ywie5ke7-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxjcwx2fg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South + Central US/deletedSites/28983001","name":"functionapp-linux5idypfx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28983001,"deletedTimestamp":"2019-12-27T14:04:21.9946741","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs","webSpace":"clitest.rgexcteqwuh4wb5wwtxwnuyadpitnftn3czp3624fhqwjdadqyz54sqb4kbtwxgw2hs-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux5idypfx","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South + Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + East/deletedSites/28992765","name":"webapp-quick-linuxo4zdw6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28992765,"deletedTimestamp":"2019-12-31T02:28:37.6697795","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt","webSpace":"clitest.rgvvkyrzvega4oytjeu56cpu4gx7ntc7damdfvv7pmvvpeqz24e3aqlz4gbre5nfdqt-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxo4zdw6","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan East","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '18683' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:42 GMT + - Tue, 31 Dec 2019 02:34:33 GMT expires: - '-1' pragma: @@ -3033,67 +3038,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North%20Central%20US%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20East/deletedSites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '38' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:43 GMT + - Tue, 31 Dec 2019 02:34:34 GMT expires: - '-1' pragma: @@ -3130,67 +3091,167 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/France%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20West/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + West/deletedSites/13476","name":"webapp-sshfky2rmu5635fc4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13476,"deletedTimestamp":"2019-10-13T13:36:21.6711495","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o","webSpace":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfky2rmu5635fc4","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13508","name":"webapp-sshiajwp7wwwj3on3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13508,"deletedTimestamp":"2019-10-14T01:44:58.3941665","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl","webSpace":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshiajwp7wwwj3on3","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13773","name":"functionappacrteste7miik","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13773,"deletedTimestamp":"2019-10-15T16:56:57.6587881","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk","webSpace":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrteste7miik","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13774","name":"webapp-ssh6kvkw57g3hxlny","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13774,"deletedTimestamp":"2019-10-15T16:57:08.2048746","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg","webSpace":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh6kvkw57g3hxlny","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13807","name":"webapp-sshnshfjlgtkim5wv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13807,"deletedTimestamp":"2019-10-16T01:46:32.4929084","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4","webSpace":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshnshfjlgtkim5wv","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13878","name":"functionappacrtestdxbtmk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13878,"deletedTimestamp":"2019-10-16T14:42:10.2464912","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo","webSpace":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestdxbtmk","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13879","name":"webapp-ssha34b7ezk76fsfo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13879,"deletedTimestamp":"2019-10-16T14:43:00.7584897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf","webSpace":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssha34b7ezk76fsfo","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13880","name":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13880,"deletedTimestamp":"2019-10-16T14:43:13.3798625","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb","webSpace":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13881","name":"webapp-linuxrzcgts3ymw2s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13881,"deletedTimestamp":"2019-10-16T14:43:25.0216897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd","webSpace":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxrzcgts3ymw2s","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13882","name":"functionappacrtest2rdvti","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13882,"deletedTimestamp":"2019-10-16T14:44:21.4198621","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6","webSpace":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtest2rdvti","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13883","name":"webapp-linux-cdh77kdjwau","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13883,"deletedTimestamp":"2019-10-16T14:44:50.3346601","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7","webSpace":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdh77kdjwau","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13884","name":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13884,"deletedTimestamp":"2019-10-16T14:45:21.4984144","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz","webSpace":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13885","name":"functionappacrtestodfzuo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13885,"deletedTimestamp":"2019-10-16T14:46:23.3000850","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f","webSpace":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestodfzuo","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13886","name":"webappacrtestyr4oo56w2lt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13886,"deletedTimestamp":"2019-10-16T14:46:52.3362228","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc","webSpace":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestyr4oo56w2lt","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/13982","name":"webapp-sshfhbgybwfb5cifj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13982,"deletedTimestamp":"2019-10-17T15:45:16.5838004","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv","webSpace":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfhbgybwfb5cifj","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14013","name":"webapp-sshkpyzkf3b63w55g","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14013,"deletedTimestamp":"2019-10-18T01:00:24.5790866","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li","webSpace":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshkpyzkf3b63w55g","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14238","name":"webapp-sshus2lnn7vghnfwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14238,"deletedTimestamp":"2019-10-21T10:49:17.5568001","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq","webSpace":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshus2lnn7vghnfwv","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14239","name":"functionappacrtestz5ug5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14239,"deletedTimestamp":"2019-10-21T10:49:19.8886025","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu","webSpace":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestz5ug5m","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14240","name":"webapp-linuxn5ntn6b5npst","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14240,"deletedTimestamp":"2019-10-21T10:50:31.6241074","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd","webSpace":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxn5ntn6b5npst","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14241","name":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14241,"deletedTimestamp":"2019-10-21T10:50:33.8144602","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m","webSpace":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14242","name":"webapp-linux-cd52vpyrcun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14242,"deletedTimestamp":"2019-10-21T10:51:21.2190451","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat","webSpace":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cd52vpyrcun","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14243","name":"functionappacrtestr24kun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14243,"deletedTimestamp":"2019-10-21T10:51:31.3042873","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d","webSpace":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestr24kun","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14244","name":"webappacrtestnglwtz4yzjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14244,"deletedTimestamp":"2019-10-21T10:52:33.0589224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl","webSpace":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestnglwtz4yzjh","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14245","name":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14245,"deletedTimestamp":"2019-10-21T10:52:56.8455622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr","webSpace":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14246","name":"functionappacrtestmmqghy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14246,"deletedTimestamp":"2019-10-21T10:53:25.5490713","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdwwbxgbwaejajkk7xefch5nohctdd5tpebblufm7h7r7t67p5tm5hb7pc4kf37nzj","webSpace":"clitest.rgdwwbxgbwaejajkk7xefch5nohctdd5tpebblufm7h7r7t67p5tm5hb7pc4kf37nzj-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestmmqghy","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/14344","name":"webapp-sshnzbpn2fqofphxm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14344,"deletedTimestamp":"2019-10-23T01:46:12.7213184","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgp66zh5r3lr4cdgkwv6wk4y26ja5s7r57z2lwrd32pu6hzqg4ppl4udxf5bhroz5sr","webSpace":"clitest.rgp66zh5r3lr4cdgkwv6wk4y26ja5s7r57z2lwrd32pu6hzqg4ppl4udxf5bhroz5sr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshnzbpn2fqofphxm","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/15083","name":"functionappacrtestd6x5yi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":15083,"deletedTimestamp":"2019-10-30T02:16:41.5756452","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrig2h2j4smjsenqmec5zwbkmd4mwhrc5z5tj5cco4kmyhjsywld6rs2qca5wjg4m6","webSpace":"clitest.rgrig2h2j4smjsenqmec5zwbkmd4mwhrc5z5tj5cco4kmyhjsywld6rs2qca5wjg4m6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestd6x5yi","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16293","name":"webapp-linuxi7ocazwjyy2e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16293,"deletedTimestamp":"2019-11-11T08:57:43.0698988","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5kjfuhyc3alvuhagkk4rniphw27gehdbicwugjyytnjehmxhrodc4wf2qutp7mcbf","webSpace":"clitest.rg5kjfuhyc3alvuhagkk4rniphw27gehdbicwugjyytnjehmxhrodc4wf2qutp7mcbf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxi7ocazwjyy2e","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16294","name":"webapp-linux-cdysmlg2oei","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16294,"deletedTimestamp":"2019-11-11T08:59:12.0635735","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgokeursyyz5g4uuk47bojdtk5252iu2ck5pl6fycfhodg3ckj3xhgeikpmkf4blv2t","webSpace":"clitest.rgokeursyyz5g4uuk47bojdtk5252iu2ck5pl6fycfhodg3ckj3xhgeikpmkf4blv2t-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdysmlg2oei","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16295","name":"functionappacrtestn2alk2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16295,"deletedTimestamp":"2019-11-11T08:59:37.7313529","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmffiu2iud2du6ucaaspnhyondlciw76y57mtydxfwmuiuo4qipuhmbmrmjg7zi6gr","webSpace":"clitest.rgmffiu2iud2du6ucaaspnhyondlciw76y57mtydxfwmuiuo4qipuhmbmrmjg7zi6gr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestn2alk2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16296","name":"functionappacrtestcaf6lr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16296,"deletedTimestamp":"2019-11-11T08:59:49.2059253","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgo5irhet5dliy2qpgxr3j5lsdkgexn24w25xwo7t4vnglphng2klee44ppvtrukvjc","webSpace":"clitest.rgo5irhet5dliy2qpgxr3j5lsdkgexn24w25xwo7t4vnglphng2klee44ppvtrukvjc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestcaf6lr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16297","name":"webapp-ssh5zvvpszgomlxhk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16297,"deletedTimestamp":"2019-11-11T08:59:53.5897288","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5b6g64qfaehfaxqbmruke6i3castwpxjdnx524xgyqbuztj42jmxwrw2qrh52bopl","webSpace":"clitest.rg5b6g64qfaehfaxqbmruke6i3castwpxjdnx524xgyqbuztj42jmxwrw2qrh52bopl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh5zvvpszgomlxhk","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16298","name":"webapp-remote-sshgmmp67qv6sm565dydoqo6rq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16298,"deletedTimestamp":"2019-11-11T09:00:19.3029674","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtdfzjoj3oxe4rux5y7kkyvnanoe3hzwg5mnmrp7ewdzubi74qixtgimi23uvfiah5","webSpace":"clitest.rgtdfzjoj3oxe4rux5y7kkyvnanoe3hzwg5mnmrp7ewdzubi74qixtgimi23uvfiah5-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshgmmp67qv6sm565dydoqo6rq","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16299","name":"webappacrtesttw6nfqxmljn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16299,"deletedTimestamp":"2019-11-11T09:01:13.6832336","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggcwquib2cj77c3jw7u5pshk7tmvhejfm7hd3fjarewpz2j2czqr7cxenkqmr3ba5j","webSpace":"clitest.rggcwquib2cj77c3jw7u5pshk7tmvhejfm7hd3fjarewpz2j2czqr7cxenkqmr3ba5j-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtesttw6nfqxmljn","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16300","name":"webapp-remote-debugigugbd3u52uawc2frzamw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16300,"deletedTimestamp":"2019-11-11T09:02:56.0066883","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmjnxr2il2fcow2rubxodpsq35vfzchujjzoadsjz4yoplxasvuvzxokfsovpalwdv","webSpace":"clitest.rgmjnxr2il2fcow2rubxodpsq35vfzchujjzoadsjz4yoplxasvuvzxokfsovpalwdv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugigugbd3u52uawc2frzamw","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16581","name":"functionappacrtestyl5rwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16581,"deletedTimestamp":"2019-11-13T11:00:07.1055791","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3ku2m2y2sxqtcwtbllwlxsisjoyp3ybmh5owypl5i7r4fcotnhzb4ju2gkkpqdsm6","webSpace":"clitest.rg3ku2m2y2sxqtcwtbllwlxsisjoyp3ybmh5owypl5i7r4fcotnhzb4ju2gkkpqdsm6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestyl5rwv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16582","name":"webapp-sshae4lztgihz4oh5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16582,"deletedTimestamp":"2019-11-13T11:01:29.3959610","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghzifeul34djrbvghvzqwehdheeuwn5n2ruze2gctl6ckqjjwdkigtiwvf5frq73sz","webSpace":"clitest.rghzifeul34djrbvghvzqwehdheeuwn5n2ruze2gctl6ckqjjwdkigtiwvf5frq73sz-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshae4lztgihz4oh5","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16583","name":"webapp-linux-cdgozrldcx6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16583,"deletedTimestamp":"2019-11-13T11:02:21.1486304","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgppnv7npym7gk5f6utwqoeqcl4voege2osbi2w6am5gj56towxbss37qg77nyxohna","webSpace":"clitest.rgppnv7npym7gk5f6utwqoeqcl4voege2osbi2w6am5gj56towxbss37qg77nyxohna-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdgozrldcx6","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16584","name":"webapp-linuxldbodr744foh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16584,"deletedTimestamp":"2019-11-13T11:03:32.0918588","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk3rt4dxwyow4hmr2hnpefyt4wdwinhtkiix5jpsfsfc22isqul5ijoucpjjdyi7cm","webSpace":"clitest.rgk3rt4dxwyow4hmr2hnpefyt4wdwinhtkiix5jpsfsfc22isqul5ijoucpjjdyi7cm-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxldbodr744foh","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16585","name":"webapp-remote-sshuutkqgghcbj5wyom57e7y6y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16585,"deletedTimestamp":"2019-11-13T11:04:48.9356781","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7pubwgdhzz34n5doiqdonh7evxg4rfyi3axbbh2cqjdk6gcuaz6lmy7xtakzdgshc","webSpace":"clitest.rg7pubwgdhzz34n5doiqdonh7evxg4rfyi3axbbh2cqjdk6gcuaz6lmy7xtakzdgshc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshuutkqgghcbj5wyom57e7y6y","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16586","name":"functionappacrtestay4dem","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16586,"deletedTimestamp":"2019-11-13T11:04:49.8167869","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcvhboedpg6vfdlbmdqsgl54l2ju7e5cdh4me6ssvc2tszutynoa36i3ka4fdqlxax","webSpace":"clitest.rgcvhboedpg6vfdlbmdqsgl54l2ju7e5cdh4me6ssvc2tszutynoa36i3ka4fdqlxax-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestay4dem","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16587","name":"webappacrtesthu3blgsxame","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16587,"deletedTimestamp":"2019-11-13T11:06:09.4784394","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtghiul7zqxwxaau3t4gybhsavbt7gjvljr7yaclbobpwmrkfpv7owofino52n3uil","webSpace":"clitest.rgtghiul7zqxwxaau3t4gybhsavbt7gjvljr7yaclbobpwmrkfpv7owofino52n3uil-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtesthu3blgsxame","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16590","name":"webapp-remote-debugfpywuaxihhm2uyf2rwcqq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16590,"deletedTimestamp":"2019-11-13T11:08:07.9633172","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwbcpvyy3a5fo2woo2u2s3kcyonecm3zi4dy7foi4yd4x2ij3md6gsblzg3s2srmml","webSpace":"clitest.rgwbcpvyy3a5fo2woo2u2s3kcyonecm3zi4dy7foi4yd4x2ij3md6gsblzg3s2srmml-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugfpywuaxihhm2uyf2rwcqq","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16593","name":"webappacrtestjdk4sy6taah","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16593,"deletedTimestamp":"2019-11-13T11:27:25.1444919","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc4uhlubyvuou6gytrjye6nqbtvy5iunkm4hy73fuiragrxkzxqpcop34gbvcftp6y","webSpace":"clitest.rgc4uhlubyvuou6gytrjye6nqbtvy5iunkm4hy73fuiragrxkzxqpcop34gbvcftp6y-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestjdk4sy6taah","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16594","name":"functionappacrtestqzhlcu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16594,"deletedTimestamp":"2019-11-13T11:27:36.6924552","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfebwp2endjabsqdcmgoezb23drv3c4q3t2lcy7rstnynfoybtyf2zbxysk724kwgu","webSpace":"clitest.rgfebwp2endjabsqdcmgoezb23drv3c4q3t2lcy7rstnynfoybtyf2zbxysk724kwgu-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestqzhlcu","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16595","name":"webapp-sshzbkk7hdrlmei2s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16595,"deletedTimestamp":"2019-11-13T11:28:31.9159546","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqt27y34in573fqpyb24g7t2um7cxyxxdtd45cq46olqazpgr7xqdkb4hiid52at6a","webSpace":"clitest.rgqt27y34in573fqpyb24g7t2um7cxyxxdtd45cq46olqazpgr7xqdkb4hiid52at6a-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshzbkk7hdrlmei2s","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16639","name":"webappacrtest4vl5u7lcgae","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16639,"deletedTimestamp":"2019-11-14T01:42:19.8634902","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg76yz7n6wkrt4qnycbtr46emjor7s2jvofszg4fg27ew4lfcawuvfttzm34lyfyvm7","webSpace":"clitest.rg76yz7n6wkrt4qnycbtr46emjor7s2jvofszg4fg27ew4lfcawuvfttzm34lyfyvm7-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtest4vl5u7lcgae","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16640","name":"functionappacrtesti6y5h3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16640,"deletedTimestamp":"2019-11-14T01:42:56.6944937","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg33lvmjteyohwebu32xdhqkdted3dz3ljoob3ymedt5wseuxg2flozswwln6adofob","webSpace":"clitest.rg33lvmjteyohwebu32xdhqkdted3dz3ljoob3ymedt5wseuxg2flozswwln6adofob-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtesti6y5h3","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/16641","name":"webapp-sshhttezeqyklq3op","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16641,"deletedTimestamp":"2019-11-14T01:43:29.7358419","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmioxkc6u6szh34un4udyty6f7psdmxiyugylbzezknvvlagzamrfm2l3xvlje2ew6","webSpace":"clitest.rgmioxkc6u6szh34un4udyty6f7psdmxiyugylbzezknvvlagzamrfm2l3xvlje2ew6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshhttezeqyklq3op","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17220","name":"webapp-sshn43rtxxv4k3qtj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17220,"deletedTimestamp":"2019-11-19T03:07:17.4472818","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgd2zvpwkbyk74znzkalq7ieutvjdrfttg5efoiugzcuyrraxv7fozanefpuco5viex","webSpace":"clitest.rgd2zvpwkbyk74znzkalq7ieutvjdrfttg5efoiugzcuyrraxv7fozanefpuco5viex-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshn43rtxxv4k3qtj","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17221","name":"functionappacrtestcekg22","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17221,"deletedTimestamp":"2019-11-19T03:07:21.9848782","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2pqwxtcspl7gbewzobfjquts4q4vrlyeepujbadaw4hlafoyy7xeicrppl2tjqtpl","webSpace":"clitest.rg2pqwxtcspl7gbewzobfjquts4q4vrlyeepujbadaw4hlafoyy7xeicrppl2tjqtpl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestcekg22","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17222","name":"webappacrtestwyefq33xcol","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17222,"deletedTimestamp":"2019-11-19T03:08:20.9923453","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghpgswx6gbuchwokdy2nrftlgrm5pgrbsgrlq2lt537wxy2sv6lhoi3flqtwckvxex","webSpace":"clitest.rghpgswx6gbuchwokdy2nrftlgrm5pgrbsgrlq2lt537wxy2sv6lhoi3flqtwckvxex-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestwyefq33xcol","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17239","name":"functionappacrtestmhkmry","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17239,"deletedTimestamp":"2019-11-19T05:50:02.0930962","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfefvdj42hvbegp57ymd3x7wswvwpfnmihaodr5i5hja6gahhmrxqn7dz4igoqix2o","webSpace":"clitest.rgfefvdj42hvbegp57ymd3x7wswvwpfnmihaodr5i5hja6gahhmrxqn7dz4igoqix2o-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestmhkmry","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17243","name":"functionappacrtestrgccws","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17243,"deletedTimestamp":"2019-11-19T06:04:14.6364824","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg23f7yls22fpy6e6uoddrauc64bwbbi67eu5adl2fdd5rl7i5rctrr3ywqlbpar26h","webSpace":"clitest.rg23f7yls22fpy6e6uoddrauc64bwbbi67eu5adl2fdd5rl7i5rctrr3ywqlbpar26h-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestrgccws","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17244","name":"functionappacrtest7xwzli","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17244,"deletedTimestamp":"2019-11-19T06:07:46.8591715","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg66gnrvonjx732m5q666loqcdv5hhv5kqqfoui3fe7t2vtsh7esqebfdp3eum7kmcn","webSpace":"clitest.rg66gnrvonjx732m5q666loqcdv5hhv5kqqfoui3fe7t2vtsh7esqebfdp3eum7kmcn-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtest7xwzli","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17246","name":"functionappacrtestjple24","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17246,"deletedTimestamp":"2019-11-19T06:22:40.1160949","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmgqngda7lunq5n7i7h3xkqtn6btjn5gg254rsapwuf2keht2fo3a7cyedaduonysk","webSpace":"clitest.rgmgqngda7lunq5n7i7h3xkqtn6btjn5gg254rsapwuf2keht2fo3a7cyedaduonysk-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestjple24","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17247","name":"webappacrtestueotaljmcrs","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17247,"deletedTimestamp":"2019-11-19T06:27:32.0299250","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6rizghswvukm7623asbjerip2s5vsyp6mwv2t7m3t6iculb7os7atltsflcqdloz3","webSpace":"clitest.rg6rizghswvukm7623asbjerip2s5vsyp6mwv2t7m3t6iculb7os7atltsflcqdloz3-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestueotaljmcrs","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/17377","name":"webapp-config-testrapzpd6f7kc4ecq6r5qrco","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":17377,"deletedTimestamp":"2019-11-20T07:40:37.4215834","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configxj2nucrbj57t5dmbf5g7kp7ddd2kuyd4nebawel4taq32s5x6z4do","webSpace":"cli_test_webapp_configxj2nucrbj57t5dmbf5g7kp7ddd2kuyd4nebawel4taq32s5x6z4do-JapanWestwebspace","stamp":"waws-prod-os1-003","deletedSiteName":"webapp-config-testrapzpd6f7kc4ecq6r5qrco","slot":"Production","kind":"app","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21030","name":"functionappacrtestmlrcel","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21030,"deletedTimestamp":"2019-12-27T13:58:43.4143517","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglplchoujaebmh2yq2poi4e7aq57a3bn3lfprsb6sakl5vtfjw6eqw2k5fac7w5dbv","webSpace":"clitest.rglplchoujaebmh2yq2poi4e7aq57a3bn3lfprsb6sakl5vtfjw6eqw2k5fac7w5dbv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestmlrcel","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21031","name":"functionappacrtest2deqyn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21031,"deletedTimestamp":"2019-12-27T13:58:50.9252319","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtaxukv52qe62framiki27mbioow56xau3bvxuiyxigul6yogk4ib5eqpgwasfb7ei","webSpace":"clitest.rgtaxukv52qe62framiki27mbioow56xau3bvxuiyxigul6yogk4ib5eqpgwasfb7ei-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtest2deqyn","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21032","name":"functionappacrtestjj5sex","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21032,"deletedTimestamp":"2019-12-27T13:59:21.3860336","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq","webSpace":"clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestjj5sex","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21033","name":"webapp-ssh3qimuceub5igps","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21033,"deletedTimestamp":"2019-12-27T14:00:29.2245569","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkrq7zpoft2rfz23iszgyfjhe42vlu33kivep2yoe5qp6gatfk73oxeqcxz23y4s5c","webSpace":"clitest.rgkrq7zpoft2rfz23iszgyfjhe42vlu33kivep2yoe5qp6gatfk73oxeqcxz23y4s5c-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh3qimuceub5igps","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21098","name":"webapp-ssh64bbaeb5dric3o","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21098,"deletedTimestamp":"2019-12-29T06:02:38.0298765","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgskwuseidaje7zy4unce7qln76yo4gbpz5uptnnlcxzuvml2eeejzt7t5cm7msdh4g","webSpace":"clitest.rgskwuseidaje7zy4unce7qln76yo4gbpz5uptnnlcxzuvml2eeejzt7t5cm7msdh4g-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh64bbaeb5dric3o","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21194","name":"webappacrtest2fnhjwpfze5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21194,"deletedTimestamp":"2019-12-31T02:28:39.3740662","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgffnzftsta7mmfioxmqkqasckmkhsaye4eyjayynhrp7k2jcj7o6qc36snrq26mpvf","webSpace":"clitest.rgffnzftsta7mmfioxmqkqasckmkhsaye4eyjayynhrp7k2jcj7o6qc36snrq26mpvf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtest2fnhjwpfze5","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21195","name":"webapp-linux-cdz5ojiryqp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21195,"deletedTimestamp":"2019-12-31T02:29:11.9272217","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgthz4ja2a6c4uo6kn4bum5nbs2rc437rp5svsp4zxaamlweo6rifkb6t2emyisy6vd","webSpace":"clitest.rgthz4ja2a6c4uo6kn4bum5nbs2rc437rp5svsp4zxaamlweo6rifkb6t2emyisy6vd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdz5ojiryqp","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21196","name":"functionappacrtesthejnvl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21196,"deletedTimestamp":"2019-12-31T02:29:53.6484031","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3szdoo5rnykqwgousyrv7l6jvxxiksbnj4xcdmsdswy5ovc2xhnwzajg4n3sfxe3e","webSpace":"clitest.rg3szdoo5rnykqwgousyrv7l6jvxxiksbnj4xcdmsdswy5ovc2xhnwzajg4n3sfxe3e-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtesthejnvl","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21197","name":"functionappacrtestngx6pk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21197,"deletedTimestamp":"2019-12-31T02:29:54.8243130","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgi2tn2nfhgyprqlsmzfr7lp6bgkeqqhlj2pb76zu52o6zgwccvj7axgfz2b6nw267c","webSpace":"clitest.rgi2tn2nfhgyprqlsmzfr7lp6bgkeqqhlj2pb76zu52o6zgwccvj7axgfz2b6nw267c-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestngx6pk","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21198","name":"webapp-remote-debugrr7qa4hpeceaixkn2j5pc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21198,"deletedTimestamp":"2019-12-31T02:30:05.3755793","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgabqlijqiu34ptrs2ot5c7qypamo74ryvyvw4ar2vsqw2kr3cqc3lv5lvd7svucqjn","webSpace":"clitest.rgabqlijqiu34ptrs2ot5c7qypamo74ryvyvw4ar2vsqw2kr3cqc3lv5lvd7svucqjn-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugrr7qa4hpeceaixkn2j5pc","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21199","name":"webapp-sshkqgdisnp6vgulz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21199,"deletedTimestamp":"2019-12-31T02:30:10.5725178","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsxise3klxubia4hyxx3fa42gkgpry5oamcoqx35z7gswzozknvxfyni2f43iksq5x","webSpace":"clitest.rgsxise3klxubia4hyxx3fa42gkgpry5oamcoqx35z7gswzozknvxfyni2f43iksq5x-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshkqgdisnp6vgulz","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21200","name":"webapp-linuxjs3croyciclb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21200,"deletedTimestamp":"2019-12-31T02:30:25.4266871","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg35r7jokfveejmnbj55rm63o3q76tgdwomhzlleel3w2o43dye7wpkp5cycztim4xp","webSpace":"clitest.rg35r7jokfveejmnbj55rm63o3q76tgdwomhzlleel3w2o43dye7wpkp5cycztim4xp-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxjs3croyciclb","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21201","name":"functionappacrtestxkfhxa","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21201,"deletedTimestamp":"2019-12-31T02:31:08.7417481","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5ghfp2rkpnw526i2oot6i2e63pm2dacjt7576hg5bykdbmsv3e7q2d4fjsm2xv5lg","webSpace":"clitest.rg5ghfp2rkpnw526i2oot6i2e63pm2dacjt7576hg5bykdbmsv3e7q2d4fjsm2xv5lg-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestxkfhxa","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan + West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan + West/deletedSites/21202","name":"webapp-remote-sshdojxnve2rn5ozupvyosetnv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":21202,"deletedTimestamp":"2019-12-31T02:34:03.9075425","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3sqfnkdiise62qy6wieh7xvyepithxl65lppz2kepsbpgsugzgtw7vlkwc5dt53sr","webSpace":"clitest.rg3sqfnkdiise62qy6wieh7xvyepithxl65lppz2kepsbpgsugzgtw7vlkwc5dt53sr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshdojxnve2rn5ozupvyosetnv","slot":"Production","kind":"app,linux","geoRegionName":"Japan + West","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '51729' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:43 GMT + - Tue, 31 Dec 2019 02:34:34 GMT expires: - '-1' pragma: @@ -3227,67 +3288,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20Africa%20North/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20India/deletedSites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28263675","name":"webapp-quick-linux7uloo7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263675,"deletedTimestamp":"2019-10-16T14:44:33.5720347","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw","webSpace":"clitest.rgn2ejvxlcacdtzjdfzvu6lr55244zzciqrol7lhlytcp42pvhbnkozyhkywluirvaw-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linux7uloo7","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28263692","name":"functionapp-linux3juhpg2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28263692,"deletedTimestamp":"2019-10-16T14:45:13.9566991","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts","webSpace":"clitest.rgewclr7u4h4tjdvl5pa3y2samf3m7wgr6bcug5g233g4qmukp4ll3jgn3glsmljcts-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linux3juhpg2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28284704","name":"webapp-quick-linuxtevp7r","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28284704,"deletedTimestamp":"2019-10-17T15:48:32.0630442","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv","webSpace":"clitest.rgjc22xl3bp4jjmn3wtvegi6ujnlym7eszsopdxb6eaqu4aui6sh5rinhpi5hlmqcuv-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxtevp7r","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28328633","name":"webapp-quick-linuxvo5wvx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328633,"deletedTimestamp":"2019-10-21T10:49:34.0952985","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod","webSpace":"clitest.rg47joj3qatl7cykwc7ouqzm5esyaqkkxhmx5k7udhlzrco2ab7surt6nohoweurdod-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxvo5wvx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328683","name":"functionapp-linuxhfrznqg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328683,"deletedTimestamp":"2019-10-21T10:53:39.4291822","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y","webSpace":"clitest.rgsioy4j4yamt6gguztur57g3tsdanu3wlohko4nynblvelggl6vxr3eyuydhn3oy3y-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxhfrznqg","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28328707","name":"functionapp-linuxamwiq5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28328707,"deletedTimestamp":"2019-10-21T10:54:49.1036103","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey","webSpace":"clitest.rgdagsqgwgeevoekh7t4wgrzo3aykcdvstlgzbvhsj3wah3an2ctpjysglwcsj7o5ey-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxamwiq5m","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357347","name":"webapp1-b82962093d","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357347,"deletedTimestamp":"2019-10-23T01:46:34.2685589","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp1-b82962093d","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East - US 2/deletedSites/28357348","name":"webapp2-03899534bf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28357348,"deletedTimestamp":"2019-10-23T01:46:38.4357739","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_57260666e65c","webSpace":"rgnemv_57260666e65c-EastUS2webspace","stamp":"waws-prod-bn1-001","deletedSiteName":"webapp2-03899534bf","slot":"Production","kind":"app","geoRegionName":"East - US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421187","name":"webapp2-9b15520509","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421187,"deletedTimestamp":"2019-10-29T04:24:52.4271973","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-WestEuropewebspace","stamp":"waws-prod-am2-167","deletedSiteName":"webapp2-9b15520509","slot":"Production","kind":"app,linux","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Southeast - Asia/deletedSites/28421188","name":"webapp3-4a11532497","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421188,"deletedTimestamp":"2019-10-29T04:25:02.8779571","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-SoutheastAsiawebspace","stamp":"waws-prod-sg1-019","deletedSiteName":"webapp3-4a11532497","slot":"Production","kind":"app,linux","geoRegionName":"Southeast - Asia","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421189","name":"webapp1-611550185a","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421189,"deletedTimestamp":"2019-10-29T04:25:06.0245470","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp1-611550185a","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421192","name":"webapp4-6e8593038b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421192,"deletedTimestamp":"2019-10-29T04:25:23.5142149","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp4-6e8593038b","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/North - Central US/deletedSites/28421201","name":"webapp5-ca49410178","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421201,"deletedTimestamp":"2019-10-29T04:26:32.2240846","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_b3325198f4e2","webSpace":"rgnemv_b3325198f4e2-NorthCentralUSwebspace","stamp":"waws-prod-ch1-029","deletedSiteName":"webapp5-ca49410178","slot":"Production","kind":"app,linux","geoRegionName":"North - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - Europe/deletedSites/28421355","name":"webapp2-33811198c7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28421355,"deletedTimestamp":"2019-10-29T05:08:57.1250439","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"rgnemv_09b6169072a2","webSpace":"rgnemv_09b6169072a2-WestEuropewebspace","stamp":"waws-prod-am2-237","deletedSiteName":"webapp2-33811198c7","slot":"Production","kind":"app","geoRegionName":"West - Europe","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28434243","name":"functionapp-linuxtjj2skr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28434243,"deletedTimestamp":"2019-10-30T02:17:26.8681766","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr","webSpace":"clitest.rgr4hyg6ife3owx2ubrpy4snzlrp24o2ht4uldpuy6pn3tp26pgjslnnch5s5adlgyr-SouthCentralUSwebspace","stamp":"waws-prod-sn1-147","deletedSiteName":"functionapp-linuxtjj2skr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28570004","name":"webapp-quick-linuxuuidrb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570004,"deletedTimestamp":"2019-11-11T08:59:45.2464165","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7","webSpace":"clitest.rgdiitnvrodmg6nkl25yilmrjl4kaoe772mw4b2wjjfqxq5vzj32dpoq646nesjzzv7-JapanEastwebspace","stamp":"waws-prod-ty1-011","deletedSiteName":"webapp-quick-linuxuuidrb","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570048","name":"functionapp-linux64hzutk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570048,"deletedTimestamp":"2019-11-11T09:04:55.4385976","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky","webSpace":"clitest.rgkipb6guarpebtreuhqenoiybqq2lmv3seqp57b3jvc3dzjrj3mjdnvcmfpkfnqiky-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linux64hzutk","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28570056","name":"functionapp-linuxgorzioy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28570056,"deletedTimestamp":"2019-11-11T09:05:41.0627153","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km","webSpace":"clitest.rgdhumgpw37pywtxrdt4tqj7awgieyfrbil4tkyeurzxo7fowyq6qemompq475ft3km-SouthCentralUSwebspace","stamp":"waws-prod-sn1-163","deletedSiteName":"functionapp-linuxgorzioy","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599039","name":"webapp-quick-linuxvgtlns","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599039,"deletedTimestamp":"2019-11-13T11:03:20.3456636","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq","webSpace":"clitest.rgxymmknrmecj4hdquchc3z6hcycqjraugjoelt4krr2giytuxht6b2xc6gekepndiq-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxvgtlns","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599094","name":"functionapp-linuxcf4d2um","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599094,"deletedTimestamp":"2019-11-13T11:08:43.9123287","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p","webSpace":"clitest.rg4kxfxjlrje557qe3greuae54etb5rfvxzt4r3gyl644ocuvvmnfhvddwokd726b5p-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxcf4d2um","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South - Central US/deletedSites/28599097","name":"functionapp-linuxnplksrv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599097,"deletedTimestamp":"2019-11-13T11:09:37.0133864","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq","webSpace":"clitest.rgz5vtkycpqbgdj7kntoptnrs5vdekkkgu5vyeltxyfttwq7eoa55ebhj7uzuhwpqlq-SouthCentralUSwebspace","stamp":"waws-prod-sn1-161","deletedSiteName":"functionapp-linuxnplksrv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"South - Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - East/deletedSites/28599327","name":"webapp-quick-linuxybqlcx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":28599327,"deletedTimestamp":"2019-11-13T11:30:03.6147430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb","webSpace":"clitest.rgob5gt7nxfgktunidpnluiphrywu7qccl5wa55q4v2fgi6ozjntnwlnyz26v3jufjb-JapanEastwebspace","stamp":"waws-prod-ty1-023","deletedSiteName":"webapp-quick-linuxybqlcx","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - East","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '15136' + - '38' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:44 GMT + - Tue, 31 Dec 2019 02:34:34 GMT expires: - '-1' pragma: @@ -3324,115 +3341,23 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan%20West/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20Central/deletedSites?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13476","name":"webapp-sshfky2rmu5635fc4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13476,"deletedTimestamp":"2019-10-13T13:36:21.6711495","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o","webSpace":"clitest.rgk4wbjuma6imunxzs3z3r7k4pzfxwpyxibxgwc53i6o2mjpbkqqywuhxtov53sns4o-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfky2rmu5635fc4","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13508","name":"webapp-sshiajwp7wwwj3on3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13508,"deletedTimestamp":"2019-10-14T01:44:58.3941665","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl","webSpace":"clitest.rgnom4adg3tvr5hmbwsrmbunmgkh65l4cbk6hf7qz6cpuzssllxzv654ezbrjsvb5fl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshiajwp7wwwj3on3","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13773","name":"functionappacrteste7miik","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13773,"deletedTimestamp":"2019-10-15T16:56:57.6587881","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk","webSpace":"clitest.rgmxgbw5xoonz4obbedqwyhx6kzirxf2cq3aetjnvzi5evl4yimwp4ve5thxgog3ddk-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrteste7miik","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13774","name":"webapp-ssh6kvkw57g3hxlny","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13774,"deletedTimestamp":"2019-10-15T16:57:08.2048746","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg","webSpace":"clitest.rg7ccqv4xpwhk23str6vlvyg7soj3pxvpbb6hahvctavkid243hf2bqv7v4jg477evg-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh6kvkw57g3hxlny","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13807","name":"webapp-sshnshfjlgtkim5wv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13807,"deletedTimestamp":"2019-10-16T01:46:32.4929084","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4","webSpace":"clitest.rg7qrxjhexphj5gy4ymeup5fiu5mu6xskycnqvezkqyoz45ygmlewzov3bshesduzc4-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshnshfjlgtkim5wv","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13878","name":"functionappacrtestdxbtmk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13878,"deletedTimestamp":"2019-10-16T14:42:10.2464912","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo","webSpace":"clitest.rgzcflypqrdg76cigowe3xwolhdtj2jb3n56gfmgo3bea35wpub4gmbm4l6qlrlwodo-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestdxbtmk","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13879","name":"webapp-ssha34b7ezk76fsfo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13879,"deletedTimestamp":"2019-10-16T14:43:00.7584897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf","webSpace":"clitest.rg6sm2m36yoycrcx2eiffd4cuhv5gxbsjkdje6uifxobi7efs4dueg5bhuhcm5jzvuf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssha34b7ezk76fsfo","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13880","name":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13880,"deletedTimestamp":"2019-10-16T14:43:13.3798625","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb","webSpace":"clitest.rgxgglfr5tozux4ul5scllpgbqcr4vryhykyehgwpsyclshmvhdrhktppdctcixg4zb-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugwzdt3j6meh2bwgs3j6pai","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13881","name":"webapp-linuxrzcgts3ymw2s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13881,"deletedTimestamp":"2019-10-16T14:43:25.0216897","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd","webSpace":"clitest.rgtls2hgbuiklwjtmsfusvmai3zfou3u2iidlhchygmy7rpgxewyvmt7hum7q53cwcd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxrzcgts3ymw2s","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13882","name":"functionappacrtest2rdvti","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13882,"deletedTimestamp":"2019-10-16T14:44:21.4198621","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6","webSpace":"clitest.rgg62hwutgmcu647osrzgcd5gpxz33fahd3rzh226crqx5dhqqnm3hxswytlopatir6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtest2rdvti","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13883","name":"webapp-linux-cdh77kdjwau","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13883,"deletedTimestamp":"2019-10-16T14:44:50.3346601","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7","webSpace":"clitest.rgovssvnhlgjlfnivkttsvpfeibek5rcbhdydrto2biltbfous4vwysoubrsrrican7-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdh77kdjwau","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13884","name":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13884,"deletedTimestamp":"2019-10-16T14:45:21.4984144","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz","webSpace":"clitest.rgp67yks5hbpbwra7b3ewwjndbbn2lvppxqa35iel465i5mhinvqzpttmqsx5ebjqxz-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshzqjnjwfpw3fklnrbqfq7wne","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13885","name":"functionappacrtestodfzuo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13885,"deletedTimestamp":"2019-10-16T14:46:23.3000850","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f","webSpace":"clitest.rg33ny4tuch7mp27jlerkhmxlalovsbxgva4uvbbpyc65h3yu33x3nqzj5gtpwq5j5f-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestodfzuo","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13886","name":"webappacrtestyr4oo56w2lt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13886,"deletedTimestamp":"2019-10-16T14:46:52.3362228","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc","webSpace":"clitest.rg72fdbqkxtmpumm6ov7e75lr55gs7t2nxiux7wepar6xqlrcf3g5nyp3biy6x6h2uc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestyr4oo56w2lt","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/13982","name":"webapp-sshfhbgybwfb5cifj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":13982,"deletedTimestamp":"2019-10-17T15:45:16.5838004","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv","webSpace":"clitest.rgn5bqq2wx675soqm7q7uporanuywgqga34t7seigl7wxtnko5u6kue34pkoovlv2kv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshfhbgybwfb5cifj","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14013","name":"webapp-sshkpyzkf3b63w55g","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14013,"deletedTimestamp":"2019-10-18T01:00:24.5790866","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li","webSpace":"clitest.rgy6jd7qknofrbx3y5qmsavbbtm33fcscccidb3smrojw37n3fs7ls6cyxbuerd54li-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshkpyzkf3b63w55g","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14238","name":"webapp-sshus2lnn7vghnfwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14238,"deletedTimestamp":"2019-10-21T10:49:17.5568001","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq","webSpace":"clitest.rgm4c47f5fhy4gq7to4babiqa6otxjoks2wjyizhl47lmzbetv5vstqudvpzjdxpadq-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshus2lnn7vghnfwv","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14239","name":"functionappacrtestz5ug5m","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14239,"deletedTimestamp":"2019-10-21T10:49:19.8886025","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu","webSpace":"clitest.rgdf532romzzext562lgkccvqgcbhxniovnsxgvqwbjjyaokgxudkbuuuwgoqqrwsdu-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestz5ug5m","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14240","name":"webapp-linuxn5ntn6b5npst","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14240,"deletedTimestamp":"2019-10-21T10:50:31.6241074","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd","webSpace":"clitest.rgfzsgbfp66q3o26evhj6cxl4zc74lrjw4hj5wsbnflbspgp4lyqf64kq2qwontrzzd-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxn5ntn6b5npst","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14241","name":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14241,"deletedTimestamp":"2019-10-21T10:50:33.8144602","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m","webSpace":"clitest.rgyfifwkinqgmhowsezn4k4bpkin67fls3bofb6olkeqp5ilplm5xxj3neamlx4425m-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugis5bpe4egdvu7uvuqhxxh","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14242","name":"webapp-linux-cd52vpyrcun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14242,"deletedTimestamp":"2019-10-21T10:51:21.2190451","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat","webSpace":"clitest.rg6aqhhj2um67yzaz5vsg2ia6d6rvalnjyrnexzaqefq3mq6ghycf4zjv4nbvs5zbat-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cd52vpyrcun","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14243","name":"functionappacrtestr24kun","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14243,"deletedTimestamp":"2019-10-21T10:51:31.3042873","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d","webSpace":"clitest.rgoijj32n6vsxj6nm73wc7j74ehb5cghb6lsgedimmyelqn5rkbgkan56kq2xkbxz7d-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestr24kun","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14244","name":"webappacrtestnglwtz4yzjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14244,"deletedTimestamp":"2019-10-21T10:52:33.0589224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl","webSpace":"clitest.rgc2jekqyybsh7onb6bwqgrsknt4o2uzwxsrfrdnwl7tvyhdwk3fpx7e3uorimdhgzl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestnglwtz4yzjh","slot":"Production","kind":"app,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14245","name":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14245,"deletedTimestamp":"2019-10-21T10:52:56.8455622","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr","webSpace":"clitest.rgiq525plj432kxgcaucygjth3mvg4tght4wruyenhrupltkpnrvasa6xz65b3w2lwr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshim5hs3ixymlbpzcnzq5w6nf","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14246","name":"functionappacrtestmmqghy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14246,"deletedTimestamp":"2019-10-21T10:53:25.5490713","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdwwbxgbwaejajkk7xefch5nohctdd5tpebblufm7h7r7t67p5tm5hb7pc4kf37nzj","webSpace":"clitest.rgdwwbxgbwaejajkk7xefch5nohctdd5tpebblufm7h7r7t67p5tm5hb7pc4kf37nzj-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestmmqghy","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/14344","name":"webapp-sshnzbpn2fqofphxm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":14344,"deletedTimestamp":"2019-10-23T01:46:12.7213184","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgp66zh5r3lr4cdgkwv6wk4y26ja5s7r57z2lwrd32pu6hzqg4ppl4udxf5bhroz5sr","webSpace":"clitest.rgp66zh5r3lr4cdgkwv6wk4y26ja5s7r57z2lwrd32pu6hzqg4ppl4udxf5bhroz5sr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshnzbpn2fqofphxm","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/15083","name":"functionappacrtestd6x5yi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":15083,"deletedTimestamp":"2019-10-30T02:16:41.5756452","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrig2h2j4smjsenqmec5zwbkmd4mwhrc5z5tj5cco4kmyhjsywld6rs2qca5wjg4m6","webSpace":"clitest.rgrig2h2j4smjsenqmec5zwbkmd4mwhrc5z5tj5cco4kmyhjsywld6rs2qca5wjg4m6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestd6x5yi","slot":"Production","kind":"functionapp,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16293","name":"webapp-linuxi7ocazwjyy2e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16293,"deletedTimestamp":"2019-11-11T08:57:43.0698988","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5kjfuhyc3alvuhagkk4rniphw27gehdbicwugjyytnjehmxhrodc4wf2qutp7mcbf","webSpace":"clitest.rg5kjfuhyc3alvuhagkk4rniphw27gehdbicwugjyytnjehmxhrodc4wf2qutp7mcbf-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxi7ocazwjyy2e","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16294","name":"webapp-linux-cdysmlg2oei","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16294,"deletedTimestamp":"2019-11-11T08:59:12.0635735","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgokeursyyz5g4uuk47bojdtk5252iu2ck5pl6fycfhodg3ckj3xhgeikpmkf4blv2t","webSpace":"clitest.rgokeursyyz5g4uuk47bojdtk5252iu2ck5pl6fycfhodg3ckj3xhgeikpmkf4blv2t-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdysmlg2oei","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16295","name":"functionappacrtestn2alk2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16295,"deletedTimestamp":"2019-11-11T08:59:37.7313529","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmffiu2iud2du6ucaaspnhyondlciw76y57mtydxfwmuiuo4qipuhmbmrmjg7zi6gr","webSpace":"clitest.rgmffiu2iud2du6ucaaspnhyondlciw76y57mtydxfwmuiuo4qipuhmbmrmjg7zi6gr-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestn2alk2","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16296","name":"functionappacrtestcaf6lr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16296,"deletedTimestamp":"2019-11-11T08:59:49.2059253","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgo5irhet5dliy2qpgxr3j5lsdkgexn24w25xwo7t4vnglphng2klee44ppvtrukvjc","webSpace":"clitest.rgo5irhet5dliy2qpgxr3j5lsdkgexn24w25xwo7t4vnglphng2klee44ppvtrukvjc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestcaf6lr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16297","name":"webapp-ssh5zvvpszgomlxhk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16297,"deletedTimestamp":"2019-11-11T08:59:53.5897288","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5b6g64qfaehfaxqbmruke6i3castwpxjdnx524xgyqbuztj42jmxwrw2qrh52bopl","webSpace":"clitest.rg5b6g64qfaehfaxqbmruke6i3castwpxjdnx524xgyqbuztj42jmxwrw2qrh52bopl-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-ssh5zvvpszgomlxhk","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16298","name":"webapp-remote-sshgmmp67qv6sm565dydoqo6rq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16298,"deletedTimestamp":"2019-11-11T09:00:19.3029674","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtdfzjoj3oxe4rux5y7kkyvnanoe3hzwg5mnmrp7ewdzubi74qixtgimi23uvfiah5","webSpace":"clitest.rgtdfzjoj3oxe4rux5y7kkyvnanoe3hzwg5mnmrp7ewdzubi74qixtgimi23uvfiah5-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshgmmp67qv6sm565dydoqo6rq","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16299","name":"webappacrtesttw6nfqxmljn","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16299,"deletedTimestamp":"2019-11-11T09:01:13.6832336","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggcwquib2cj77c3jw7u5pshk7tmvhejfm7hd3fjarewpz2j2czqr7cxenkqmr3ba5j","webSpace":"clitest.rggcwquib2cj77c3jw7u5pshk7tmvhejfm7hd3fjarewpz2j2czqr7cxenkqmr3ba5j-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtesttw6nfqxmljn","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16300","name":"webapp-remote-debugigugbd3u52uawc2frzamw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16300,"deletedTimestamp":"2019-11-11T09:02:56.0066883","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmjnxr2il2fcow2rubxodpsq35vfzchujjzoadsjz4yoplxasvuvzxokfsovpalwdv","webSpace":"clitest.rgmjnxr2il2fcow2rubxodpsq35vfzchujjzoadsjz4yoplxasvuvzxokfsovpalwdv-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugigugbd3u52uawc2frzamw","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16581","name":"functionappacrtestyl5rwv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16581,"deletedTimestamp":"2019-11-13T11:00:07.1055791","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3ku2m2y2sxqtcwtbllwlxsisjoyp3ybmh5owypl5i7r4fcotnhzb4ju2gkkpqdsm6","webSpace":"clitest.rg3ku2m2y2sxqtcwtbllwlxsisjoyp3ybmh5owypl5i7r4fcotnhzb4ju2gkkpqdsm6-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestyl5rwv","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16582","name":"webapp-sshae4lztgihz4oh5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16582,"deletedTimestamp":"2019-11-13T11:01:29.3959610","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghzifeul34djrbvghvzqwehdheeuwn5n2ruze2gctl6ckqjjwdkigtiwvf5frq73sz","webSpace":"clitest.rghzifeul34djrbvghvzqwehdheeuwn5n2ruze2gctl6ckqjjwdkigtiwvf5frq73sz-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshae4lztgihz4oh5","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16583","name":"webapp-linux-cdgozrldcx6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16583,"deletedTimestamp":"2019-11-13T11:02:21.1486304","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgppnv7npym7gk5f6utwqoeqcl4voege2osbi2w6am5gj56towxbss37qg77nyxohna","webSpace":"clitest.rgppnv7npym7gk5f6utwqoeqcl4voege2osbi2w6am5gj56towxbss37qg77nyxohna-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linux-cdgozrldcx6","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16584","name":"webapp-linuxldbodr744foh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16584,"deletedTimestamp":"2019-11-13T11:03:32.0918588","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk3rt4dxwyow4hmr2hnpefyt4wdwinhtkiix5jpsfsfc22isqul5ijoucpjjdyi7cm","webSpace":"clitest.rgk3rt4dxwyow4hmr2hnpefyt4wdwinhtkiix5jpsfsfc22isqul5ijoucpjjdyi7cm-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-linuxldbodr744foh","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16585","name":"webapp-remote-sshuutkqgghcbj5wyom57e7y6y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16585,"deletedTimestamp":"2019-11-13T11:04:48.9356781","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7pubwgdhzz34n5doiqdonh7evxg4rfyi3axbbh2cqjdk6gcuaz6lmy7xtakzdgshc","webSpace":"clitest.rg7pubwgdhzz34n5doiqdonh7evxg4rfyi3axbbh2cqjdk6gcuaz6lmy7xtakzdgshc-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-sshuutkqgghcbj5wyom57e7y6y","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16586","name":"functionappacrtestay4dem","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16586,"deletedTimestamp":"2019-11-13T11:04:49.8167869","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcvhboedpg6vfdlbmdqsgl54l2ju7e5cdh4me6ssvc2tszutynoa36i3ka4fdqlxax","webSpace":"clitest.rgcvhboedpg6vfdlbmdqsgl54l2ju7e5cdh4me6ssvc2tszutynoa36i3ka4fdqlxax-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestay4dem","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16587","name":"webappacrtesthu3blgsxame","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16587,"deletedTimestamp":"2019-11-13T11:06:09.4784394","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtghiul7zqxwxaau3t4gybhsavbt7gjvljr7yaclbobpwmrkfpv7owofino52n3uil","webSpace":"clitest.rgtghiul7zqxwxaau3t4gybhsavbt7gjvljr7yaclbobpwmrkfpv7owofino52n3uil-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtesthu3blgsxame","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16590","name":"webapp-remote-debugfpywuaxihhm2uyf2rwcqq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16590,"deletedTimestamp":"2019-11-13T11:08:07.9633172","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwbcpvyy3a5fo2woo2u2s3kcyonecm3zi4dy7foi4yd4x2ij3md6gsblzg3s2srmml","webSpace":"clitest.rgwbcpvyy3a5fo2woo2u2s3kcyonecm3zi4dy7foi4yd4x2ij3md6gsblzg3s2srmml-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-remote-debugfpywuaxihhm2uyf2rwcqq","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16593","name":"webappacrtestjdk4sy6taah","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16593,"deletedTimestamp":"2019-11-13T11:27:25.1444919","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc4uhlubyvuou6gytrjye6nqbtvy5iunkm4hy73fuiragrxkzxqpcop34gbvcftp6y","webSpace":"clitest.rgc4uhlubyvuou6gytrjye6nqbtvy5iunkm4hy73fuiragrxkzxqpcop34gbvcftp6y-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webappacrtestjdk4sy6taah","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16594","name":"functionappacrtestqzhlcu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16594,"deletedTimestamp":"2019-11-13T11:27:36.6924552","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfebwp2endjabsqdcmgoezb23drv3c4q3t2lcy7rstnynfoybtyf2zbxysk724kwgu","webSpace":"clitest.rgfebwp2endjabsqdcmgoezb23drv3c4q3t2lcy7rstnynfoybtyf2zbxysk724kwgu-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"functionappacrtestqzhlcu","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"Japan - West","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Japan - West/deletedSites/16595","name":"webapp-sshzbkk7hdrlmei2s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":16595,"deletedTimestamp":"2019-11-13T11:28:31.9159546","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqt27y34in573fqpyb24g7t2um7cxyxxdtd45cq46olqazpgr7xqdkb4hiid52at6a","webSpace":"clitest.rgqt27y34in573fqpyb24g7t2um7cxyxxdtd45cq46olqazpgr7xqdkb4hiid52at6a-JapanWestwebspace","stamp":"waws-prod-os1-009","deletedSiteName":"webapp-sshzbkk7hdrlmei2s","slot":"Production","kind":"app,linux","geoRegionName":"Japan - West","correlationId":null}}],"nextLink":null,"id":null}' + string: '{"value":[],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '33055' + - '38' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:45 GMT + - Tue, 31 Dec 2019 02:34:35 GMT expires: - '-1' pragma: @@ -3469,11 +3394,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20India/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20India/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3485,7 +3410,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:45 GMT + - Tue, 31 Dec 2019 02:34:35 GMT expires: - '-1' pragma: @@ -3522,11 +3447,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Central/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3538,7 +3463,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:46 GMT + - Tue, 31 Dec 2019 02:34:36 GMT expires: - '-1' pragma: @@ -3575,11 +3500,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20India/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Southeast/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3591,7 +3516,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:46 GMT + - Tue, 31 Dec 2019 02:34:36 GMT expires: - '-1' pragma: @@ -3628,11 +3553,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Australia%20Central/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20South/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3644,7 +3569,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:47 GMT + - Tue, 31 Dec 2019 02:34:37 GMT expires: - '-1' pragma: @@ -3681,11 +3606,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Korea%20South/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/South%20India/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3697,7 +3622,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:48 GMT + - Tue, 31 Dec 2019 02:34:38 GMT expires: - '-1' pragma: @@ -3734,11 +3659,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20Central%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3750,7 +3675,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:49 GMT + - Tue, 31 Dec 2019 02:34:38 GMT expires: - '-1' pragma: @@ -3787,11 +3712,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia%20%28Stage%29/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia%20%28Stage%29/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -3803,7 +3728,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:49 GMT + - Tue, 31 Dec 2019 02:34:38 GMT expires: - '-1' pragma: @@ -3840,11 +3765,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20Asia/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East @@ -3858,7 +3783,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:49 GMT + - Tue, 31 Dec 2019 02:34:39 GMT expires: - '-1' pragma: @@ -3895,18 +3820,14 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3386","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3386,"deletedTimestamp":"2019-09-25T12:16:27.5183483","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_create37ufy23rtu3hee35hu7efxp44jdx74s4gvdy7oigonmdsfvwan2","webSpace":"cli_test_resource_create37ufy23rtu3hee35hu7efxp44jdx74s4gvdy7oigonmdsfvwan2-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/3387","name":"clirescreateweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3387,"deletedTimestamp":"2019-09-26T07:10:01.3454277","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_resource_createawfa4ssvlmqr2vegoy42mn6myrqrytlbk7irgz5txczostq7de7","webSpace":"cli_test_resource_createawfa4ssvlmqr2vegoy42mn6myrqrytlbk7irgz5txczostq7de7-WestUSwebspace","stamp":"waws-prod-bay-133","deletedSiteName":"clirescreateweb","slot":"Production","kind":"app","geoRegionName":"West - US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West US/deletedSites/3388","name":"swiftwebappn33o7lfe3gbqh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3388,"deletedTimestamp":"2019-10-13T13:35:28.0870100","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgbgkcu5nn7dk72dgfjjomzqov4cya774zefd3eria7vn6pz56nl4gbevdylgxck6w7","webSpace":"clitest.rgbgkcu5nn7dk72dgfjjomzqov4cya774zefd3eria7vn6pz56nl4gbevdylgxck6w7-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"swiftwebappn33o7lfe3gbqh","slot":"Production","kind":"app","geoRegionName":"West US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West US/deletedSites/3389","name":"swiftwebappk3f6xmyq4ng2f","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":3389,"deletedTimestamp":"2019-10-14T01:44:07.3458908","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnm3lrjxxmnamxpxjmqkd7zzz63shcmmxnmp3qu3ifjamr7nagkeuirgrsj4yzlqn6","webSpace":"clitest.rgnm3lrjxxmnamxpxjmqkd7zzz63shcmmxnmp3qu3ifjamr7nagkeuirgrsj4yzlqn6-WestUSwebspace","stamp":"waws-prod-bay-047","deletedSiteName":"swiftwebappk3f6xmyq4ng2f","slot":"Production","kind":"app","geoRegionName":"West @@ -4557,7 +4478,7 @@ interactions: US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West US/deletedSites/88588","name":"cli-webapp-nwrflt7avifau","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88588,"deletedTimestamp":"2019-11-14T01:41:21.7082829","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqpmub5bo76w7hubiwrkdcdskw6lqyyf2lhrlkvviytsiguyo4ikm3t2ofaerdvl7z","webSpace":"clitest.rgqpmub5bo76w7hubiwrkdcdskw6lqyyf2lhrlkvviytsiguyo4ikm3t2ofaerdvl7z-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-webapp-nwrflt7avifau","slot":"Production","kind":"app","geoRegionName":"West US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West - US/deletedSites/88589","name":"delete-me-web000003","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88589,"deletedTimestamp":"2019-11-14T01:41:26.4159535","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001","webSpace":"clitest.rg000001-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"delete-me-web000003","slot":"Production","kind":"app","geoRegionName":"West + US/deletedSites/88589","name":"delete-me-webbhvuepck5g2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88589,"deletedTimestamp":"2019-11-14T01:41:26.4159535","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg45zrvj243nl7e2ckesjmq64bhrivu7dh4k37yb5bwu7uxh5xwbpevmkcnekd3x7l2","webSpace":"clitest.rg45zrvj243nl7e2ckesjmq64bhrivu7dh4k37yb5bwu7uxh5xwbpevmkcnekd3x7l2-WestUSwebspace","stamp":"waws-prod-bay-069","deletedSiteName":"delete-me-webbhvuepck5g2","slot":"Production","kind":"app","geoRegionName":"West US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West US/deletedSites/88590","name":"cli-webapp-nwra4icsrtesu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88590,"deletedTimestamp":"2019-11-14T01:41:30.7047545","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggwezdmc6uitftml4n5n4t7iilvp3scmrnmw7y57wrw6hsmukkes25z4q3gujli7sl","webSpace":"clitest.rggwezdmc6uitftml4n5n4t7iilvp3scmrnmw7y57wrw6hsmukkes25z4q3gujli7sl-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"cli-webapp-nwra4icsrtesu","slot":"Production","kind":"app","geoRegionName":"West US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West @@ -4570,16 +4491,304 @@ interactions: US/deletedSites/88594","name":"cli-webapp-nwrcoo2bvrbmr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88594,"deletedTimestamp":"2019-11-14T01:41:37.7645092","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgexzi4bd2tmkyuudhe7k2hxhli3jhnfshmagqpluxsgmopl5oukz4vm65altpuh3tb","webSpace":"clitest.rgexzi4bd2tmkyuudhe7k2hxhli3jhnfshmagqpluxsgmopl5oukz4vm65altpuh3tb-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrcoo2bvrbmr","slot":"stage","kind":"app","geoRegionName":"West US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West US/deletedSites/88595","name":"cli-webapp-nwro26pdvhqde","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88595,"deletedTimestamp":"2019-11-14T01:41:45.3796506","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgiad56lmalf54bywtksnquctsno4sofpnxlqqxd4ckozu32fhslki3aktzdfxy6evt","webSpace":"clitest.rgiad56lmalf54bywtksnquctsno4sofpnxlqqxd4ckozu32fhslki3aktzdfxy6evt-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwro26pdvhqde","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88601","name":"webapp-config-testgktbbtf2embxynms2qywdg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88601,"deletedTimestamp":"2019-11-14T01:43:47.7720509","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_config2h5p77asgqi5k7ravindbr7hazkpym2byqfwgmszdh63r2gbwjfsz","webSpace":"cli_test_webapp_config2h5p77asgqi5k7ravindbr7hazkpym2byqfwgmszdh63r2gbwjfsz-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"webapp-config-testgktbbtf2embxynms2qywdg","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/88795","name":"cli-funcapp-nwrjpoirzdni","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":88795,"deletedTimestamp":"2019-11-14T04:42:11.7089015","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2goopdjzpe4qrfzbyp7wsmbj7lc7kz3r5gimwjwm7v4b7rmsdlrpk2g73w6esgxjc","webSpace":"clitest.rg2goopdjzpe4qrfzbyp7wsmbj7lc7kz3r5gimwjwm7v4b7rmsdlrpk2g73w6esgxjc-WestUSwebspace","stamp":"waws-prod-bay-013","deletedSiteName":"cli-funcapp-nwrjpoirzdni","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91135","name":"faremotebuildappgltoqst7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91135,"deletedTimestamp":"2019-11-15T02:51:24.1865599","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4vekq42d635sanj63ygefif2jmn4xump3vuizasoirod6j747nhvwxvm6nu6obnge","webSpace":"clitest.rg4vekq42d635sanj63ygefif2jmn4xump3vuizasoirod6j747nhvwxvm6nu6obnge-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"faremotebuildappgltoqst7","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91219","name":"faremotebuildapp76ruzodq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91219,"deletedTimestamp":"2019-11-15T04:26:49.5385288","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdyg4qq7mdygxgx6q2q7ejbqvuxxyutofpkgapkmn3chr2if6kitlfuc4iljzoksp7","webSpace":"clitest.rgdyg4qq7mdygxgx6q2q7ejbqvuxxyutofpkgapkmn3chr2if6kitlfuc4iljzoksp7-WestUSwebspace","stamp":"waws-prod-bay-139","deletedSiteName":"faremotebuildapp76ruzodq","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91287","name":"cli-funcapp-nwrpifuvl3hk","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91287,"deletedTimestamp":"2019-11-15T05:49:38.8874138","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5zm4vb6kust7gts27svyfhtphdxzy52kcaddrucvredxhqf2zg3u5qkjv67sh7gmw","webSpace":"clitest.rg5zm4vb6kust7gts27svyfhtphdxzy52kcaddrucvredxhqf2zg3u5qkjv67sh7gmw-WestUSwebspace","stamp":"waws-prod-bay-091","deletedSiteName":"cli-funcapp-nwrpifuvl3hk","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91315","name":"zuhfunc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91315,"deletedTimestamp":"2019-11-15T06:16:52.5065476","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh2","webSpace":"zuh2-WestUSwebspace","stamp":"waws-prod-bay-107","deletedSiteName":"zuhfunc","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91374","name":"cli-funcapp-nwr4xdmc53my","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91374,"deletedTimestamp":"2019-11-15T07:11:21.4780168","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgua4nhgn5ms3hinez4fqkg4arzumiucwjohhgpvfhrrlawpnp3vkufhqo6yjci7qro","webSpace":"clitest.rgua4nhgn5ms3hinez4fqkg4arzumiucwjohhgpvfhrrlawpnp3vkufhqo6yjci7qro-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-funcapp-nwr4xdmc53my","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91385","name":"faremotebuildappl4xvst7f","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91385,"deletedTimestamp":"2019-11-15T07:33:06.8301679","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgk3uqkg4f546cm2kouztpoz4hypc7hi462cya6tluti63pvs5bni2dguyjyog5zvhw","webSpace":"clitest.rgk3uqkg4f546cm2kouztpoz4hypc7hi462cya6tluti63pvs5bni2dguyjyog5zvhw-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"faremotebuildappl4xvst7f","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91388","name":"faremotebuildappnixucdxl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91388,"deletedTimestamp":"2019-11-15T07:37:19.2899931","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4to6sav3wc62jvrxrguzr6yq6zudej6znk3n4poq3rb7pmqwx47gs4txhuk6475k3","webSpace":"clitest.rg4to6sav3wc62jvrxrguzr6yq6zudej6znk3n4poq3rb7pmqwx47gs4txhuk6475k3-WestUSwebspace","stamp":"waws-prod-bay-081","deletedSiteName":"faremotebuildappnixucdxl","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/91425","name":"faremotebuildapprp24adhd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":91425,"deletedTimestamp":"2019-11-15T08:09:20.0822474","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpre3qnus4qxdgcvl56cxq4a3bcq4id5feglchg5pp3vbbqrj6ap5gmiz6gf6czdnt","webSpace":"clitest.rgpre3qnus4qxdgcvl56cxq4a3bcq4id5feglchg5pp3vbbqrj6ap5gmiz6gf6czdnt-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"faremotebuildapprp24adhd","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/94359","name":"faremotebuildappdqrdshes","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":94359,"deletedTimestamp":"2019-11-18T01:54:21.2895174","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3frfma2hyd74m422lltfjydv2bokzep2mlgybqoooaf2yh57u2kvgqy73owg2hetl","webSpace":"clitest.rg3frfma2hyd74m422lltfjydv2bokzep2mlgybqoooaf2yh57u2kvgqy73owg2hetl-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"faremotebuildappdqrdshes","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/94365","name":"faremotebuildappvvcspkkc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":94365,"deletedTimestamp":"2019-11-18T02:05:43.8439735","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsep6lvr374l6gop6bn4iiu2jn4wrpnvbhxf6cvaed45sxnd5jvmkfuc7b2pxknnmm","webSpace":"clitest.rgsep6lvr374l6gop6bn4iiu2jn4wrpnvbhxf6cvaed45sxnd5jvmkfuc7b2pxknnmm-WestUSwebspace","stamp":"waws-prod-bay-129","deletedSiteName":"faremotebuildappvvcspkkc","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/94411","name":"hcwebappbli2fztsql3353pb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":94411,"deletedTimestamp":"2019-11-18T02:48:08.7688322","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyk7rc5d5ettr65sj7oyjeewy2z3e454hko6fd3f7kvmokgpuq3d3qh3bda2xuqjhg","webSpace":"clitest.rgyk7rc5d5ettr65sj7oyjeewy2z3e454hko6fd3f7kvmokgpuq3d3qh3bda2xuqjhg-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"hcwebappbli2fztsql3353pb","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/94413","name":"zuhwebapptest","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":94413,"deletedTimestamp":"2019-11-18T02:51:01.6439687","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Linux_westus","webSpace":"zuh_rg_Linux_westus-WestUSwebspace","stamp":"waws-prod-bay-139","deletedSiteName":"zuhwebapptest","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/94414","name":"zuheducation2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":94414,"deletedTimestamp":"2019-11-18T02:51:05.2953833","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Windows_westus","webSpace":"zuh_rg_Windows_westus-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"zuheducation2","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/94415","name":"zuheducation","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":94415,"deletedTimestamp":"2019-11-18T02:51:15.8951479","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Windows_westus","webSpace":"zuh_rg_Windows_westus-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"zuheducation","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96746","name":"cli-webapp-nwrljms5bpikf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96746,"deletedTimestamp":"2019-11-19T03:04:16.6053531","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvzjgi2pmocpeef3lipsnlyoqoys25ofwfamwuopzy2llez7wm3a4janhqx2usvxey","webSpace":"clitest.rgvzjgi2pmocpeef3lipsnlyoqoys25ofwfamwuopzy2llez7wm3a4janhqx2usvxey-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-webapp-nwrljms5bpikf","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96747","name":"cli-funcapp-nwrclqptba43","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96747,"deletedTimestamp":"2019-11-19T03:04:44.8633352","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnpatedonmp3c66hswr52tqu3nkmfmlntiik2pdkk6ytdlrnn6kdenjxd67oruuhdb","webSpace":"clitest.rgnpatedonmp3c66hswr52tqu3nkmfmlntiik2pdkk6ytdlrnn6kdenjxd67oruuhdb-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"cli-funcapp-nwrclqptba43","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96748","name":"cli-funcapp-nwrdhwczb5cd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96748,"deletedTimestamp":"2019-11-19T03:04:48.7157409","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmohwvwzun4a2fquf5w6fu2bvlrj5gxeaqxnpokdvdzye3xei75oanhbvuwg3hoolu","webSpace":"clitest.rgmohwvwzun4a2fquf5w6fu2bvlrj5gxeaqxnpokdvdzye3xei75oanhbvuwg3hoolu-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"cli-funcapp-nwrdhwczb5cd","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96749","name":"cli-funcapp-nwr4fsimqorl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96749,"deletedTimestamp":"2019-11-19T03:04:49.7081700","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5jjvz7yy7llrhzqvxqycwhmkmlsn6bayseswd7nnmqmgtygd2aajjava3mnu3c5z5","webSpace":"clitest.rg5jjvz7yy7llrhzqvxqycwhmkmlsn6bayseswd7nnmqmgtygd2aajjava3mnu3c5z5-WestUSwebspace","stamp":"waws-prod-bay-141","deletedSiteName":"cli-funcapp-nwr4fsimqorl","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96750","name":"webapp-config-testn4db62zrmk2ra5hl55t4ss","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96750,"deletedTimestamp":"2019-11-19T03:04:52.9286380","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configcktnfs4suc5olsxuhornemrepmr4nzyqgvlroqdmm6lqny5h44aq6","webSpace":"cli_test_webapp_configcktnfs4suc5olsxuhornemrepmr4nzyqgvlroqdmm6lqny5h44aq6-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"webapp-config-testn4db62zrmk2ra5hl55t4ss","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96751","name":"cli-funcapp-nwrkb2xh4mjb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96751,"deletedTimestamp":"2019-11-19T03:05:02.5352731","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgru4tmsupy3lslkrdz2kux3ejq3ry634vmfexroeowdhxc4ppw232hm25mfleyn4il","webSpace":"clitest.rgru4tmsupy3lslkrdz2kux3ejq3ry634vmfexroeowdhxc4ppw232hm25mfleyn4il-WestUSwebspace","stamp":"waws-prod-bay-127","deletedSiteName":"cli-funcapp-nwrkb2xh4mjb","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96752","name":"cli-funcapp-nwradxgmiuwu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96752,"deletedTimestamp":"2019-11-19T03:05:02.7821176","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7egnyvsfk6xn5jga43lm3a6kscl3oj323stnjj7q3imx5dgbg3ezd2kgeskvicyp7","webSpace":"clitest.rg7egnyvsfk6xn5jga43lm3a6kscl3oj323stnjj7q3imx5dgbg3ezd2kgeskvicyp7-WestUSwebspace","stamp":"waws-prod-bay-115","deletedSiteName":"cli-funcapp-nwradxgmiuwu","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96753","name":"cli-funcapp-nwracv4puzw5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96753,"deletedTimestamp":"2019-11-19T03:05:20.2931670","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc5o6ekyuomd3zv47ybngpiwxkrnxhortmbkdb76loxgifpcr66kksxdxpedwf3boa","webSpace":"clitest.rgc5o6ekyuomd3zv47ybngpiwxkrnxhortmbkdb76loxgifpcr66kksxdxpedwf3boa-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-funcapp-nwracv4puzw5","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96754","name":"cli-funcapp-nwracv4puzw5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96754,"deletedTimestamp":"2019-11-19T03:05:20.5900226","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc5o6ekyuomd3zv47ybngpiwxkrnxhortmbkdb76loxgifpcr66kksxdxpedwf3boa","webSpace":"clitest.rgc5o6ekyuomd3zv47ybngpiwxkrnxhortmbkdb76loxgifpcr66kksxdxpedwf3boa-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-funcapp-nwracv4puzw5","slot":"stage","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96755","name":"cli-webapp-nwryqxfgtfp62","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96755,"deletedTimestamp":"2019-11-19T03:05:30.7874496","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfls44xoqib7awtfqlbv4tutp3yn2x4qgkcdenrq5del7x7eva5gufvac4nyziua75","webSpace":"clitest.rgfls44xoqib7awtfqlbv4tutp3yn2x4qgkcdenrq5del7x7eva5gufvac4nyziua75-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-webapp-nwryqxfgtfp62","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96756","name":"cli-webapp-nwrik3h6kkrz2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96756,"deletedTimestamp":"2019-11-19T03:05:31.8837971","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgonmeneubv2l4yu6dj6bopbd4nvyapdgtamuv7dqqts72zxu32qxsspkdtl3cvfnlx","webSpace":"clitest.rgonmeneubv2l4yu6dj6bopbd4nvyapdgtamuv7dqqts72zxu32qxsspkdtl3cvfnlx-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"cli-webapp-nwrik3h6kkrz2","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96757","name":"cli-funcapp-nwruqgemyv56","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96757,"deletedTimestamp":"2019-11-19T03:05:34.1046703","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg62xpda7dwlkd5cb7skgjmdse7s63di47zczyt3a7cm3e6dvzgx6wb6wx3l5h3gket","webSpace":"clitest.rg62xpda7dwlkd5cb7skgjmdse7s63di47zczyt3a7cm3e6dvzgx6wb6wx3l5h3gket-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-funcapp-nwruqgemyv56","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96758","name":"cli-webapp-nwrn6jzdgyjba","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96758,"deletedTimestamp":"2019-11-19T03:05:40.1550768","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggkakimeza5ftchisw7nbs2pojjkrq5yrgi3ntmddetfzv6ulx7iqxlyq3gwhd4fea","webSpace":"clitest.rggkakimeza5ftchisw7nbs2pojjkrq5yrgi3ntmddetfzv6ulx7iqxlyq3gwhd4fea-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-webapp-nwrn6jzdgyjba","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96759","name":"cli-webapp-nwrntfrdd273z","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96759,"deletedTimestamp":"2019-11-19T03:05:55.6690040","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh2w5hda7klxg3rpf6fzxn2vw6qzkzf35sbzlfhtl6i4qifihyfdb3bvk4nuvrdkgi","webSpace":"clitest.rgh2w5hda7klxg3rpf6fzxn2vw6qzkzf35sbzlfhtl6i4qifihyfdb3bvk4nuvrdkgi-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwrntfrdd273z","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96760","name":"cli-webapp-nwrntfrdd273z","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96760,"deletedTimestamp":"2019-11-19T03:05:55.9658798","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh2w5hda7klxg3rpf6fzxn2vw6qzkzf35sbzlfhtl6i4qifihyfdb3bvk4nuvrdkgi","webSpace":"clitest.rgh2w5hda7klxg3rpf6fzxn2vw6qzkzf35sbzlfhtl6i4qifihyfdb3bvk4nuvrdkgi-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-webapp-nwrntfrdd273z","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96761","name":"cli-webapp-nwrey2u35kirr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96761,"deletedTimestamp":"2019-11-19T03:05:57.8734324","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcwmgvsrykim3qnjgg66weit4ryttlyodpyhihqudozwnvp3y6n22sq2ddkzofaanv","webSpace":"clitest.rgcwmgvsrykim3qnjgg66weit4ryttlyodpyhihqudozwnvp3y6n22sq2ddkzofaanv-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"cli-webapp-nwrey2u35kirr","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96763","name":"cli-webapp-nwryikiegbj26","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96763,"deletedTimestamp":"2019-11-19T03:06:08.4942914","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg7yjejxbdbztrwfgcxuu3l5grcnib2g67qqztyysqru5aoaqdjyi3v6od423vgt5qk","webSpace":"clitest.rg7yjejxbdbztrwfgcxuu3l5grcnib2g67qqztyysqru5aoaqdjyi3v6od423vgt5qk-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"cli-webapp-nwryikiegbj26","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96769","name":"webapp-linux-freeicpxekp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96769,"deletedTimestamp":"2019-11-19T03:09:22.8732176","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_linux_freen3jfyniit6zuyk2qqrxjlecviagcisap5cidpgezkhw2oha5u","webSpace":"cli_test_webapp_linux_freen3jfyniit6zuyk2qqrxjlecviagcisap5cidpgezkhw2oha5u-WestUSwebspace","stamp":"waws-prod-bay-139","deletedSiteName":"webapp-linux-freeicpxekp","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/96772","name":"cli-funcapp-nwro2ewzbdhz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":96772,"deletedTimestamp":"2019-11-19T03:11:57.8414902","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxlq4k2nzwiicxdkl6huef4puavl5dtwfuf3q7mr663iw5oy5iubciwkbkislclod5","webSpace":"clitest.rgxlq4k2nzwiicxdkl6huef4puavl5dtwfuf3q7mr663iw5oy5iubciwkbkislclod5-WestUSwebspace","stamp":"waws-prod-bay-121","deletedSiteName":"cli-funcapp-nwro2ewzbdhz","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/97080","name":"cli-funcapp-nwrs434dndob","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":97080,"deletedTimestamp":"2019-11-19T05:27:53.5950143","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3dx2syta63wbxgxjmrykss65ngdvilleew5hvchsnyczxq5n3wavu5iumktmbqh2p","webSpace":"clitest.rg3dx2syta63wbxgxjmrykss65ngdvilleew5hvchsnyczxq5n3wavu5iumktmbqh2p-WestUSwebspace","stamp":"waws-prod-bay-093","deletedSiteName":"cli-funcapp-nwrs434dndob","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/97100","name":"cli-funcapp-nwrhufsksn3c","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":97100,"deletedTimestamp":"2019-11-19T05:33:48.6526159","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgeqkyzsgwafqnmizx3zvpxpqkl6vthxnq4rrw6qxjguflvrck4v5pewy3tye5cbjs7","webSpace":"clitest.rgeqkyzsgwafqnmizx3zvpxpqkl6vthxnq4rrw6qxjguflvrck4v5pewy3tye5cbjs7-WestUSwebspace","stamp":"waws-prod-bay-013","deletedSiteName":"cli-funcapp-nwrhufsksn3c","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/97134","name":"cli-funcapp-nwrxlkxrjycl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":97134,"deletedTimestamp":"2019-11-19T05:46:53.1487013","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghpda6aypens6qxb3kdb3gvebzkjsi6yizqjxeahn736napo43baojmcbzajnwvxry","webSpace":"clitest.rghpda6aypens6qxb3kdb3gvebzkjsi6yizqjxeahn736napo43baojmcbzajnwvxry-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"cli-funcapp-nwrxlkxrjycl","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/97207","name":"cli-webapp-nwrkz7xf73zhf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":97207,"deletedTimestamp":"2019-11-19T06:10:57.6417056","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwfl2oc4fkealgtfrk7wnqodsflj236e7t3mbifc7dibvkfwwdlcniffpando3o6iz","webSpace":"clitest.rgwfl2oc4fkealgtfrk7wnqodsflj236e7t3mbifc7dibvkfwwdlcniffpando3o6iz-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"cli-webapp-nwrkz7xf73zhf","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/97564","name":"webapp-hyperv-e2ettuf2c6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":97564,"deletedTimestamp":"2019-11-19T09:39:37.2489274","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgetyl5dk6izscnnwtxr6yphwj4gnswxhwjnuhmsznovnfjwmqxloslqkrg6qqd2tuu","webSpace":"clitest.rgetyl5dk6izscnnwtxr6yphwj4gnswxhwjnuhmsznovnfjwmqxloslqkrg6qqd2tuu-WestUSwebspace","stamp":"waws-prod-bay-099","deletedSiteName":"webapp-hyperv-e2ettuf2c6","slot":"Production","kind":"app,container,windows","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/97724","name":"webapp-linux-freepd3lmji","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":97724,"deletedTimestamp":"2019-11-19T11:05:50.5620234","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_linux_free5zejy6q2xf4efz2wowlt44ts3sfr2ubbol6x4iyv4ciptganh","webSpace":"cli_test_webapp_linux_free5zejy6q2xf4efz2wowlt44ts3sfr2ubbol6x4iyv4ciptganh-WestUSwebspace","stamp":"waws-prod-bay-139","deletedSiteName":"webapp-linux-freepd3lmji","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99059","name":"cli-funcapp-nwrttzrwcyu4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99059,"deletedTimestamp":"2019-11-20T01:55:24.9661205","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgy47n67hmd3bub25eoa7mrej443sqkcmjzb65urzft7vpumglh3vnh6jb5zvxbqydf","webSpace":"clitest.rgy47n67hmd3bub25eoa7mrej443sqkcmjzb65urzft7vpumglh3vnh6jb5zvxbqydf-WestUSwebspace","stamp":"waws-prod-bay-009","deletedSiteName":"cli-funcapp-nwrttzrwcyu4","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99062","name":"faremotebuildappfunlpdxr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99062,"deletedTimestamp":"2019-11-20T02:01:11.3407299","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrutnurx2itzimwb43duexfqt7uvjgzqfvsypprobqmitvxh2wvw55uisv2bajkaxo","webSpace":"clitest.rgrutnurx2itzimwb43duexfqt7uvjgzqfvsypprobqmitvxh2wvw55uisv2bajkaxo-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"faremotebuildappfunlpdxr","slot":"Production","kind":"functionapp,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99063","name":"zuhfunction","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99063,"deletedTimestamp":"2019-11-20T02:03:49.7444775","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"zuhfunction","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99067","name":"webapp-e2euvmaynbxfw5oyp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99067,"deletedTimestamp":"2019-11-20T02:06:47.7700648","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4hjgpjmb2qfaiionzzmunhtc5xw4w3h6vtz5udlxuiodg55t2utfnovrl3rz5xjut","webSpace":"clitest.rg4hjgpjmb2qfaiionzzmunhtc5xw4w3h6vtz5udlxuiodg55t2utfnovrl3rz5xjut-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"webapp-e2euvmaynbxfw5oyp","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99070","name":"webapp-config-testbguhcnphdl7ctj524f7xli","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99070,"deletedTimestamp":"2019-11-20T02:16:40.7747872","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_confign35oermpvqqpqt422tlkvcycyj5xiukjpfaepgcjvesgacw4ttkja","webSpace":"cli_test_webapp_confign35oermpvqqpqt422tlkvcycyj5xiukjpfaepgcjvesgacw4ttkja-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"webapp-config-testbguhcnphdl7ctj524f7xli","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99077","name":"webapp-config-testvuwjcq2gruw273fwvooyvc","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99077,"deletedTimestamp":"2019-11-20T02:29:57.1121133","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configr3vnc4r4ft3sxwflqqcybhmq367245h6erlryu34tk55wqpm542kx","webSpace":"cli_test_webapp_configr3vnc4r4ft3sxwflqqcybhmq367245h6erlryu34tk55wqpm542kx-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"webapp-config-testvuwjcq2gruw273fwvooyvc","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99078","name":"webapp-config-test5hl3bo3jcbpnxgl5caoeeo","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99078,"deletedTimestamp":"2019-11-20T02:35:06.9698909","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configvax6i7va2dabxflqtzujlzclaxszvahkpfoyuyxgcj6cko2zhye4q","webSpace":"cli_test_webapp_configvax6i7va2dabxflqtzujlzclaxszvahkpfoyuyxgcj6cko2zhye4q-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"webapp-config-test5hl3bo3jcbpnxgl5caoeeo","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99104","name":"webapp-config-testhgh7o6o7e5tbsbe5pkatv5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99104,"deletedTimestamp":"2019-11-20T02:43:29.6363191","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configzouuhc3tyreampz5mthji6a5zcep5r5qocbnif4xx3rfcgli73g5f","webSpace":"cli_test_webapp_configzouuhc3tyreampz5mthji6a5zcep5r5qocbnif4xx3rfcgli73g5f-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"webapp-config-testhgh7o6o7e5tbsbe5pkatv5","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99438","name":"webapp-linuxqel5a5ecrumm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99438,"deletedTimestamp":"2019-11-20T07:10:48.2806289","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configowxb7qbep3lq3qgefyrwepfcx3xkk5z7tg2jtms44gvmnmjwhf4x5","webSpace":"cli_test_webapp_configowxb7qbep3lq3qgefyrwepfcx3xkk5z7tg2jtms44gvmnmjwhf4x5-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"webapp-linuxqel5a5ecrumm","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99443","name":"webapp-linux5fxxsiea5fgx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99443,"deletedTimestamp":"2019-11-20T07:13:21.8654805","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configv7c42k5dgzdz25ehiu5mrhrwvbvkq6kjbdgls6zi5ljgjwx2f5dnt","webSpace":"cli_test_webapp_configv7c42k5dgzdz25ehiu5mrhrwvbvkq6kjbdgls6zi5ljgjwx2f5dnt-WestUSwebspace","stamp":"waws-prod-bay-081","deletedSiteName":"webapp-linux5fxxsiea5fgx","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99447","name":"webapp-linuxx4hq5jhtlihm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99447,"deletedTimestamp":"2019-11-20T07:15:42.2384195","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configulax2xfirmxkih2k2pgxahltamrw4fk3qxj4cldcnamrmdqzsnbfd","webSpace":"cli_test_webapp_configulax2xfirmxkih2k2pgxahltamrw4fk3qxj4cldcnamrmdqzsnbfd-WestUSwebspace","stamp":"waws-prod-bay-081","deletedSiteName":"webapp-linuxx4hq5jhtlihm","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99460","name":"webapp-linuxnrv2glgxbmcy","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99460,"deletedTimestamp":"2019-11-20T07:28:19.9677166","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configkcfxray4mlh5l2w727id46yg3aa5ppwcas6pnqrxvweg46tf6pizi","webSpace":"cli_test_webapp_configkcfxray4mlh5l2w727id46yg3aa5ppwcas6pnqrxvweg46tf6pizi-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"webapp-linuxnrv2glgxbmcy","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99464","name":"webapp-linuxteldza2vqkt4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99464,"deletedTimestamp":"2019-11-20T07:31:08.7967167","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_config4suyuwgi5gnmybaa3iwpnzblskbsj5u3dldznsqp7jseh2yrnp3fw","webSpace":"cli_test_webapp_config4suyuwgi5gnmybaa3iwpnzblskbsj5u3dldznsqp7jseh2yrnp3fw-WestUSwebspace","stamp":"waws-prod-bay-109","deletedSiteName":"webapp-linuxteldza2vqkt4","slot":"Production","kind":"app,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99469","name":"webapp-config-test5zdaykzxdjsluiafggqqf6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99469,"deletedTimestamp":"2019-11-20T07:37:08.0545418","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configex5jdfakrpfqikx2qrcloxxxiixtgoc3b55uf4alvem5fizon22am","webSpace":"cli_test_webapp_configex5jdfakrpfqikx2qrcloxxxiixtgoc3b55uf4alvem5fizon22am-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"webapp-config-test5zdaykzxdjsluiafggqqf6","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99474","name":"webapp-config-testvtae6vn32uwar5qqxdrck4","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99474,"deletedTimestamp":"2019-11-20T07:45:50.0343932","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configc77tsb2cp7d7sfwumn472mkarphp2g4z5g6qauiamtsnvu63atykn","webSpace":"cli_test_webapp_configc77tsb2cp7d7sfwumn472mkarphp2g4z5g6qauiamtsnvu63atykn-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"webapp-config-testvtae6vn32uwar5qqxdrck4","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/99497","name":"webapp-config-test6i2b3doj43fdysmcwb6xcz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":99497,"deletedTimestamp":"2019-11-20T07:50:36.2293535","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configkpxog63ylwzzt7sv2kcncgvks3owjlplndfaz3w6btkf6j2fcmgxb","webSpace":"cli_test_webapp_configkpxog63ylwzzt7sv2kcncgvks3owjlplndfaz3w6btkf6j2fcmgxb-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"webapp-config-test6i2b3doj43fdysmcwb6xcz","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/107879","name":"yugangw-events","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":107879,"deletedTimestamp":"2019-11-25T02:32:15.7683731","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"yugangw","webSpace":"yugangw-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"yugangw-events","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110010","name":"java-webapp-559662","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110010,"deletedTimestamp":"2019-11-26T08:06:49.3114749","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg856374663","webSpace":"javacsmrg856374663-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"java-webapp-559662","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110011","name":"java-webapp-30717c","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110011,"deletedTimestamp":"2019-11-26T08:08:11.4790522","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrge68860531","webSpace":"javacsmrge68860531-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"java-webapp-30717c","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110014","name":"java-webapp-04400c","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110014,"deletedTimestamp":"2019-11-26T08:13:18.9181090","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrgb75517648","webSpace":"javacsmrgb75517648-WestUSwebspace","stamp":"waws-prod-bay-075","deletedSiteName":"java-webapp-04400c","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110016","name":"java-webapp-44329f","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110016,"deletedTimestamp":"2019-11-26T08:15:58.9100925","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg98245694f","webSpace":"javacsmrg98245694f-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"java-webapp-44329f","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110019","name":"java-webapp-701052","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110019,"deletedTimestamp":"2019-11-26T08:18:00.0361032","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrgad3249372","webSpace":"javacsmrgad3249372-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"java-webapp-701052","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110028","name":"java-webapp-808728","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110028,"deletedTimestamp":"2019-11-26T08:26:13.4810730","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg43632042d","webSpace":"javacsmrg43632042d-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"java-webapp-808728","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110061","name":"java-webapp-550784","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110061,"deletedTimestamp":"2019-11-26T08:43:40.9761676","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg695063919","webSpace":"javacsmrg695063919-WestUSwebspace","stamp":"waws-prod-bay-083","deletedSiteName":"java-webapp-550784","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110082","name":"java-webapp-052135","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110082,"deletedTimestamp":"2019-11-26T08:51:57.7418009","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg26a162937","webSpace":"javacsmrg26a162937-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"java-webapp-052135","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110086","name":"java-webapp-965712","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110086,"deletedTimestamp":"2019-11-26T08:54:56.8872127","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg0f5064321","webSpace":"javacsmrg0f5064321-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"java-webapp-965712","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110094","name":"java-webapp-52480b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110094,"deletedTimestamp":"2019-11-26T09:04:39.5292260","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg79b763411","webSpace":"javacsmrg79b763411-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"java-webapp-52480b","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110098","name":"java-webapp-395317","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110098,"deletedTimestamp":"2019-11-26T09:08:31.1772492","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrgf0d079296","webSpace":"javacsmrgf0d079296-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"java-webapp-395317","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110117","name":"java-webapp-859546","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110117,"deletedTimestamp":"2019-11-26T09:15:51.4270576","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrgbff494597","webSpace":"javacsmrgbff494597-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"java-webapp-859546","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/110142","name":"java-webapp-681550","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":110142,"deletedTimestamp":"2019-11-26T09:20:39.5015256","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"javacsmrg92468046a","webSpace":"javacsmrg92468046a-WestUSwebspace","stamp":"waws-prod-bay-071","deletedSiteName":"java-webapp-681550","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/111913","name":"cli-funcapp-nwrgfjx5mxhj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":111913,"deletedTimestamp":"2019-11-27T07:33:36.5562703","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzf6orcf65i7tjdrlaleehlui5pmxswxjxcpv62mwm6ejyyr6trviumrglkt7y5xbx","webSpace":"clitest.rgzf6orcf65i7tjdrlaleehlui5pmxswxjxcpv62mwm6ejyyr6trviumrglkt7y5xbx-WestUSwebspace","stamp":"waws-prod-bay-025","deletedSiteName":"cli-funcapp-nwrgfjx5mxhj","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/111915","name":"cli-funcapp-nwrcpyerwhzl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":111915,"deletedTimestamp":"2019-11-27T07:37:17.8215965","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtnivwr7ja4rqjex4qeptlkahjqwdmj3gsliszba2btnx47dnvjulptec6oj5uzps6","webSpace":"clitest.rgtnivwr7ja4rqjex4qeptlkahjqwdmj3gsliszba2btnx47dnvjulptec6oj5uzps6-WestUSwebspace","stamp":"waws-prod-bay-009","deletedSiteName":"cli-funcapp-nwrcpyerwhzl","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/111916","name":"zuhfunction","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":111916,"deletedTimestamp":"2019-11-27T07:37:51.6327861","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-WestUSwebspace","stamp":"waws-prod-bay-009","deletedSiteName":"zuhfunction","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/116205","name":"yugangw-web","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":116205,"deletedTimestamp":"2019-12-01T17:14:01.5753772","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"yugangw","webSpace":"yugangw-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"yugangw-web","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150712","name":"cli-funcapp-nwr7qauzqv45","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150712,"deletedTimestamp":"2019-12-27T13:57:30.6606162","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmrrqqqjyesiudmk35tzjqapteqgbddxy4byjt7qwfjex4pvo6rqn56auuhnl3j4c2","webSpace":"clitest.rgmrrqqqjyesiudmk35tzjqapteqgbddxy4byjt7qwfjex4pvo6rqn56auuhnl3j4c2-WestUSwebspace","stamp":"waws-prod-bay-045","deletedSiteName":"cli-funcapp-nwr7qauzqv45","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150713","name":"cli-funcapp-nwrrgdpzsr6y","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150713,"deletedTimestamp":"2019-12-27T13:57:32.1997242","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg37us52bftdki5skvgeycn5xdaa7rbcp452o2r4creof7nx256oeyjefwamznehoto","webSpace":"clitest.rg37us52bftdki5skvgeycn5xdaa7rbcp452o2r4creof7nx256oeyjefwamznehoto-WestUSwebspace","stamp":"waws-prod-bay-079","deletedSiteName":"cli-funcapp-nwrrgdpzsr6y","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150714","name":"cli-funcapp-nwrpxp3dgkpt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150714,"deletedTimestamp":"2019-12-27T13:57:37.5708441","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgy7o2qcgbsxl5ztcuu5vdypprg3ie3csk2pi7mscwoq5srmhxbl7lwlcg6fdhjsljh","webSpace":"clitest.rgy7o2qcgbsxl5ztcuu5vdypprg3ie3csk2pi7mscwoq5srmhxbl7lwlcg6fdhjsljh-WestUSwebspace","stamp":"waws-prod-bay-055","deletedSiteName":"cli-funcapp-nwrpxp3dgkpt","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150715","name":"cli-funcapp-nwr3byoz7mhq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150715,"deletedTimestamp":"2019-12-27T13:57:45.4336361","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdlg5r4rr3sv3zwjhgkpeitylgmw5eyzcarn6fykqpk7rpykw33xdbvdn4votv43a2","webSpace":"clitest.rgdlg5r4rr3sv3zwjhgkpeitylgmw5eyzcarn6fykqpk7rpykw33xdbvdn4votv43a2-WestUSwebspace","stamp":"waws-prod-bay-115","deletedSiteName":"cli-funcapp-nwr3byoz7mhq","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150716","name":"cli-funcapp-nwryhw547g3q","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150716,"deletedTimestamp":"2019-12-27T13:57:46.2880786","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3myhzmlyni2y6gjtdpsfzxwdtkww3rji7iooxebd46jiffp5up2kcw2jyxwc46fb5","webSpace":"clitest.rg3myhzmlyni2y6gjtdpsfzxwdtkww3rji7iooxebd46jiffp5up2kcw2jyxwc46fb5-WestUSwebspace","stamp":"waws-prod-bay-101","deletedSiteName":"cli-funcapp-nwryhw547g3q","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150717","name":"cli-funcapp-nwrnrpso6hsp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150717,"deletedTimestamp":"2019-12-27T13:57:48.7329044","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgf2zscryx4ip7x46ssonm6ys2bql5te2y7doofbb2tws5wnte6vmgg6yraibagj5lz","webSpace":"clitest.rgf2zscryx4ip7x46ssonm6ys2bql5te2y7doofbb2tws5wnte6vmgg6yraibagj5lz-WestUSwebspace","stamp":"waws-prod-bay-009","deletedSiteName":"cli-funcapp-nwrnrpso6hsp","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150718","name":"functionappwithreservedinstance32g5cile7","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150718,"deletedTimestamp":"2019-12-27T13:58:37.6368228","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgvoga2aywwnfawre3fuy2prk75c4d5elb6ofjcsbjd7jc3y4suipxcgbh4ffjmefoc","webSpace":"clitest.rgvoga2aywwnfawre3fuy2prk75c4d5elb6ofjcsbjd7jc3y4suipxcgbh4ffjmefoc-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionappwithreservedinstance32g5cile7","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150719","name":"cli-funcapp-nwrsrup65eky","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150719,"deletedTimestamp":"2019-12-27T13:58:38.4339155","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzuj5vvnjhawhlzkwltrjogli23qugbbklkq5fwzwmf5m6ol6k23gs3stytnbm7pbi","webSpace":"clitest.rgzuj5vvnjhawhlzkwltrjogli23qugbbklkq5fwzwmf5m6ol6k23gs3stytnbm7pbi-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"cli-funcapp-nwrsrup65eky","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150720","name":"cli-funcapp-nwrzi3a5w7gi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150720,"deletedTimestamp":"2019-12-27T13:59:44.9025954","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrlr3yyzayr3txnuojq7672mq5apzl76exzgwb6kzpe74uc3y6vg43zve27mpxblhm","webSpace":"clitest.rgrlr3yyzayr3txnuojq7672mq5apzl76exzgwb6kzpe74uc3y6vg43zve27mpxblhm-WestUSwebspace","stamp":"waws-prod-bay-083","deletedSiteName":"cli-funcapp-nwrzi3a5w7gi","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150721","name":"cli-funcapp-nwrzi3a5w7gi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150721,"deletedTimestamp":"2019-12-27T13:59:45.2463402","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrlr3yyzayr3txnuojq7672mq5apzl76exzgwb6kzpe74uc3y6vg43zve27mpxblhm","webSpace":"clitest.rgrlr3yyzayr3txnuojq7672mq5apzl76exzgwb6kzpe74uc3y6vg43zve27mpxblhm-WestUSwebspace","stamp":"waws-prod-bay-083","deletedSiteName":"cli-funcapp-nwrzi3a5w7gi","slot":"stage","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150722","name":"functionapplinuxconsumptionho4nigwx2r4tj","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150722,"deletedTimestamp":"2019-12-27T13:59:58.4782611","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-linuxilekzfmsjr2h3m7mircfm2e2kusjwkkcld54evxyxxp2rx2zd","webSpace":"azurecli-functionapp-linuxilekzfmsjr2h3m7mircfm2e2kusjwkkcld54evxyxxp2rx2zd-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"functionapplinuxconsumptionho4nigwx2r4tj","slot":"Production","kind":"functionapp,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150723","name":"slot-traffic-webwlowwulb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150723,"deletedTimestamp":"2019-12-27T14:00:03.9253484","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqljy3f2injyo3m6x3alrg5sonrtpqf77h5vevz4qsuc5treukbbibbvudlizbkqvv","webSpace":"clitest.rgqljy3f2injyo3m6x3alrg5sonrtpqf77h5vevz4qsuc5treukbbibbvudlizbkqvv-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"slot-traffic-webwlowwulb","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150724","name":"functionappwindowsruntime5exypfyzq2uwavq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150724,"deletedTimestamp":"2019-12-27T14:00:18.0129536","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg4uvqm266yl2m45svurut3m2epw24wbf5zctaorshqfei32433dnhso5d4vtsrpwkg","webSpace":"clitest.rg4uvqm266yl2m45svurut3m2epw24wbf5zctaorshqfei32433dnhso5d4vtsrpwkg-WestUSwebspace","stamp":"waws-prod-bay-091","deletedSiteName":"functionappwindowsruntime5exypfyzq2uwavq","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150726","name":"functionappconsumptionxj5vdhz5pu67d3q5dg","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150726,"deletedTimestamp":"2019-12-27T14:01:15.5427498","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-c-e2e-ragrsp4426nnnjtogxjab273yvpvbs6wpmmxtqbnsvhceluk","webSpace":"azurecli-functionapp-c-e2e-ragrsp4426nnnjtogxjab273yvpvbs6wpmmxtqbnsvhceluk-WestUSwebspace","stamp":"waws-prod-bay-113","deletedSiteName":"functionappconsumptionxj5vdhz5pu67d3q5dg","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150727","name":"functionappwindowsruntimegve5efceeef5oyp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150727,"deletedTimestamp":"2019-12-27T14:01:27.6732217","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdqmhr6obxqww6ljbxsfdsixw2zes6aupuxwbnon7ptrlpv3af22rymt24tr2nj4qw","webSpace":"clitest.rgdqmhr6obxqww6ljbxsfdsixw2zes6aupuxwbnon7ptrlpv3af22rymt24tr2nj4qw-WestUSwebspace","stamp":"waws-prod-bay-117","deletedSiteName":"functionappwindowsruntimegve5efceeef5oyp","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150728","name":"functionappwindowswithoutruntime6f5qod3s","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150728,"deletedTimestamp":"2019-12-27T14:01:46.4501226","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgndc43s7p3pofw3kac4eeaacuao3i7lq4taqaavlpafgvqlx42mtk364ovj4cjdmkq","webSpace":"clitest.rgndc43s7p3pofw3kac4eeaacuao3i7lq4taqaavlpafgvqlx42mtk364ovj4cjdmkq-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"functionappwindowswithoutruntime6f5qod3s","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150729","name":"functionappwithappinsightsoh4463vk6yu4wf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150729,"deletedTimestamp":"2019-12-27T14:01:59.3657710","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgd6a6anibhernbv6fydyq7xfchnmppmw777oy3fka7wbxtomnwti2lmcj4rtarhrbi","webSpace":"clitest.rgd6a6anibhernbv6fydyq7xfchnmppmw777oy3fka7wbxtomnwti2lmcj4rtarhrbi-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"functionappwithappinsightsoh4463vk6yu4wf","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150730","name":"functionappconsumptionqsgtk52bj4kavnsa7b","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150730,"deletedTimestamp":"2019-12-27T14:02:01.6001275","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"azurecli-functionapp-c-e2ebeex7csj5r46rrpqnsdxgzt6262brksyr5cp652rva2krc43y","webSpace":"azurecli-functionapp-c-e2ebeex7csj5r46rrpqnsdxgzt6262brksyr5cp652rva2krc43y-WestUSwebspace","stamp":"waws-prod-bay-107","deletedSiteName":"functionappconsumptionqsgtk52bj4kavnsa7b","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150731","name":"functionapp-slotyarbtq6x","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150731,"deletedTimestamp":"2019-12-27T14:02:17.6785647","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggvhpuro5mo33yclrk5sobckivicqdlddvpdb433fvkalqnnhuwpvsuqge6lp6zcum","webSpace":"clitest.rggvhpuro5mo33yclrk5sobckivicqdlddvpdb433fvkalqnnhuwpvsuqge6lp6zcum-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionapp-slotyarbtq6x","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150732","name":"functionapp-slotyarbtq6x","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150732,"deletedTimestamp":"2019-12-27T14:02:17.9764119","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggvhpuro5mo33yclrk5sobckivicqdlddvpdb433fvkalqnnhuwpvsuqge6lp6zcum","webSpace":"clitest.rggvhpuro5mo33yclrk5sobckivicqdlddvpdb433fvkalqnnhuwpvsuqge6lp6zcum-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"functionapp-slotyarbtq6x","slot":"slotnameast3harxfh7zgsvc","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150733","name":"functionapp-sloth7ogbxxe","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150733,"deletedTimestamp":"2019-12-27T14:04:09.3032430","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtfdmkqx7qasdvpwtmpijuobgzqocsfyoivflf5u2mgc2xbqdtwtm3jmwlrysjtrnd","webSpace":"clitest.rgtfdmkqx7qasdvpwtmpijuobgzqocsfyoivflf5u2mgc2xbqdtwtm3jmwlrysjtrnd-WestUSwebspace","stamp":"waws-prod-bay-091","deletedSiteName":"functionapp-sloth7ogbxxe","slot":"slotnameb67hay5vabrpa3da","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150734","name":"functionapp-sloth7ogbxxe","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150734,"deletedTimestamp":"2019-12-27T14:04:20.4006675","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgtfdmkqx7qasdvpwtmpijuobgzqocsfyoivflf5u2mgc2xbqdtwtm3jmwlrysjtrnd","webSpace":"clitest.rgtfdmkqx7qasdvpwtmpijuobgzqocsfyoivflf5u2mgc2xbqdtwtm3jmwlrysjtrnd-WestUSwebspace","stamp":"waws-prod-bay-091","deletedSiteName":"functionapp-sloth7ogbxxe","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150735","name":"functionappwithappinsightszyxa32ncjtgnp6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150735,"deletedTimestamp":"2019-12-27T14:04:42.3717946","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgdhh2kjoaytslygmcwlqnih5krb5wkq362ze5fgsv56mkkdy4uqzzytq4ni2mne3cp","webSpace":"clitest.rgdhh2kjoaytslygmcwlqnih5krb5wkq362ze5fgsv56mkkdy4uqzzytq4ni2mne3cp-WestUSwebspace","stamp":"waws-prod-bay-011","deletedSiteName":"functionappwithappinsightszyxa32ncjtgnp6","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150736","name":"functionapp-linux6ghkwc5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150736,"deletedTimestamp":"2019-12-27T14:05:41.0040579","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rguobfcq2awzkrx5gclk7mdhac4y6q3cnmz4ggjbahyx7lipk2wch7zkgyxijrewjxi","webSpace":"clitest.rguobfcq2awzkrx5gclk7mdhac4y6q3cnmz4ggjbahyx7lipk2wch7zkgyxijrewjxi-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"functionapp-linux6ghkwc5","slot":"Production","kind":"functionapp,linux","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150737","name":"functionapp-slot6yocz7sp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150737,"deletedTimestamp":"2019-12-27T14:08:03.4484120","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpd7gv2hmgwhhdezjhb25ue5alpeg4meqcnv5w6ocapthvgk4ajfa2ai4s2qpz3hub","webSpace":"clitest.rgpd7gv2hmgwhhdezjhb25ue5alpeg4meqcnv5w6ocapthvgk4ajfa2ai4s2qpz3hub-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"functionapp-slot6yocz7sp","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150738","name":"functionapp-slot6yocz7sp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150738,"deletedTimestamp":"2019-12-27T14:08:03.7921329","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpd7gv2hmgwhhdezjhb25ue5alpeg4meqcnv5w6ocapthvgk4ajfa2ai4s2qpz3hub","webSpace":"clitest.rgpd7gv2hmgwhhdezjhb25ue5alpeg4meqcnv5w6ocapthvgk4ajfa2ai4s2qpz3hub-WestUSwebspace","stamp":"waws-prod-bay-033","deletedSiteName":"functionapp-slot6yocz7sp","slot":"slotnameog4hw6ryxilconal","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150751","name":"cli-funcapp-nwrlt2epvget","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150751,"deletedTimestamp":"2019-12-27T14:47:05.7882884","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgqvbiu4wubmsnvd2ugiyegx6bujz26kfbxtl4ujqmyabcqbvnojendz6sbdn4v2k3m","webSpace":"clitest.rgqvbiu4wubmsnvd2ugiyegx6bujz26kfbxtl4ujqmyabcqbvnojendz6sbdn4v2k3m-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-funcapp-nwrlt2epvget","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150753","name":"func-e2eazkraxokzsviynpd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150753,"deletedTimestamp":"2019-12-27T14:48:31.8207281","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrpmkngzdg2maaxabazyexka7qqhgz7mynv2fw4xiet2pwft7gr4psgfssnpfnul2w","webSpace":"clitest.rgrpmkngzdg2maaxabazyexka7qqhgz7mynv2fw4xiet2pwft7gr4psgfssnpfnul2w-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"func-e2eazkraxokzsviynpd","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/150755","name":"func-e2epyctwh2xzxla4kdi","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":150755,"deletedTimestamp":"2019-12-27T14:49:12.9400484","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrpmkngzdg2maaxabazyexka7qqhgz7mynv2fw4xiet2pwft7gr4psgfssnpfnul2w","webSpace":"clitest.rgrpmkngzdg2maaxabazyexka7qqhgz7mynv2fw4xiet2pwft7gr4psgfssnpfnul2w-WestUSwebspace","stamp":"waws-prod-bay-073","deletedSiteName":"func-e2epyctwh2xzxla4kdi","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153024","name":"cli-funcapp-nwr4lr6xh2qw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153024,"deletedTimestamp":"2019-12-31T02:24:11.6227861","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgwuyc4xmtmibopyxkc5v2dewm3mimyzdnhrzvlyincuizqbhmqibbd3u4crvrkwjaa","webSpace":"clitest.rgwuyc4xmtmibopyxkc5v2dewm3mimyzdnhrzvlyincuizqbhmqibbd3u4crvrkwjaa-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-funcapp-nwr4lr6xh2qw","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153025","name":"cli-funcapp-nwrtbvb2cnxm","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153025,"deletedTimestamp":"2019-12-31T02:24:13.3318566","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgm3xec7omn7do3q7ycuvdtxsn6avpfqxu4w3gqyfh3lwsg6km5aawc7c3cujikhdae","webSpace":"clitest.rgm3xec7omn7do3q7ycuvdtxsn6avpfqxu4w3gqyfh3lwsg6km5aawc7c3cujikhdae-WestUSwebspace","stamp":"waws-prod-bay-041","deletedSiteName":"cli-funcapp-nwrtbvb2cnxm","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153026","name":"cli-funcapp-nwr35dce4af6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153026,"deletedTimestamp":"2019-12-31T02:24:30.1674961","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgrevijuumlvyahl2ioogu6pyl4ktiebwbmuihse5753dvjmnwjaks6zbcmsdwjcest","webSpace":"clitest.rgrevijuumlvyahl2ioogu6pyl4ktiebwbmuihse5753dvjmnwjaks6zbcmsdwjcest-WestUSwebspace","stamp":"waws-prod-bay-085","deletedSiteName":"cli-funcapp-nwr35dce4af6","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153027","name":"cli-funcapp-nwrojy4rjx6p","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153027,"deletedTimestamp":"2019-12-31T02:24:33.2105569","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgj47lfvvmzahgf6svhhewkx667lnr2xoy74jw4yptvairjibzzi25jgbomwj2366yd","webSpace":"clitest.rgj47lfvvmzahgf6svhhewkx667lnr2xoy74jw4yptvairjibzzi25jgbomwj2366yd-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-funcapp-nwrojy4rjx6p","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153028","name":"cli-funcapp-nwr3qlrcfi7q","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153028,"deletedTimestamp":"2019-12-31T02:24:35.6918742","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxd5xtw7hdvez66nyvrf3e4bb3y4b2pkxkyq2biwrxo6w7k2jv5jajhxqcr74g3o57","webSpace":"clitest.rgxd5xtw7hdvez66nyvrf3e4bb3y4b2pkxkyq2biwrxo6w7k2jv5jajhxqcr74g3o57-WestUSwebspace","stamp":"waws-prod-bay-121","deletedSiteName":"cli-funcapp-nwr3qlrcfi7q","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153029","name":"cli-funcapp-nwrvwnravaav","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153029,"deletedTimestamp":"2019-12-31T02:24:37.4796089","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyqaagc5tzcnyoddux5zzhskknsg5trp2eyhofpb6byb2efq3pixpckkpt5y3un65a","webSpace":"clitest.rgyqaagc5tzcnyoddux5zzhskknsg5trp2eyhofpb6byb2efq3pixpckkpt5y3un65a-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"cli-funcapp-nwrvwnravaav","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153030","name":"cli-funcapp-nwrxh3vnanqz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153030,"deletedTimestamp":"2019-12-31T02:24:44.4185246","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggu4tmgzq73hggc5npg7zhcrds7yiw4brwa7nfrjr4wdbp34c7skksge2cdradycgq","webSpace":"clitest.rggu4tmgzq73hggc5npg7zhcrds7yiw4brwa7nfrjr4wdbp34c7skksge2cdradycgq-WestUSwebspace","stamp":"waws-prod-bay-057","deletedSiteName":"cli-funcapp-nwrxh3vnanqz","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153031","name":"cli-webapp-nwrbekewfn56e","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153031,"deletedTimestamp":"2019-12-31T02:25:00.7555653","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rggzbandjw55bm6klww7kpbwtuuyplh7btrdtns35hlx6dj4j4t6whm5mfchra4iz4v","webSpace":"clitest.rggzbandjw55bm6klww7kpbwtuuyplh7btrdtns35hlx6dj4j4t6whm5mfchra4iz4v-WestUSwebspace","stamp":"waws-prod-bay-067","deletedSiteName":"cli-webapp-nwrbekewfn56e","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153032","name":"cli-funcapp-nwrukxlma6m6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153032,"deletedTimestamp":"2019-12-31T02:25:07.0030146","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglzkmflmdmrm72b5uuhm6ytra42c4hbzzccj7mrb6k6yz5a3fpjm6yvy6sbmbewc2x","webSpace":"clitest.rglzkmflmdmrm72b5uuhm6ytra42c4hbzzccj7mrb6k6yz5a3fpjm6yvy6sbmbewc2x-WestUSwebspace","stamp":"waws-prod-bay-119","deletedSiteName":"cli-funcapp-nwrukxlma6m6","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153033","name":"cli-webapp-nwr47awdvhdf2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153033,"deletedTimestamp":"2019-12-31T02:25:07.0811179","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgzsixzczsz5jn357ehcrr33cbw2iyx2bae5i53kbbsma454nvvcygwbzwdode3nwz3","webSpace":"clitest.rgzsixzczsz5jn357ehcrr33cbw2iyx2bae5i53kbbsma454nvvcygwbzwdode3nwz3-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"cli-webapp-nwr47awdvhdf2","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153034","name":"cli-webapp-nwr7uz6gwznxw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153034,"deletedTimestamp":"2019-12-31T02:25:12.9396401","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgd7w46fvnrku4fnmly4nxtalu42u4yocujftvciidmqek4hrgnoad4hewt23vyxnsf","webSpace":"clitest.rgd7w46fvnrku4fnmly4nxtalu42u4yocujftvciidmqek4hrgnoad4hewt23vyxnsf-WestUSwebspace","stamp":"waws-prod-bay-059","deletedSiteName":"cli-webapp-nwr7uz6gwznxw","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153035","name":"cli-webapp-nwrp7t7osnvrl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153035,"deletedTimestamp":"2019-12-31T02:25:19.4242596","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgmg63leb7sgso7eneggu74i2v5aem2fsivmemvprcwe7unywjqmpxlq2ach6ienreb","webSpace":"clitest.rgmg63leb7sgso7eneggu74i2v5aem2fsivmemvprcwe7unywjqmpxlq2ach6ienreb-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwrp7t7osnvrl","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153036","name":"cli-webapp-nwrvaeumjefkr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153036,"deletedTimestamp":"2019-12-31T02:25:19.5712960","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgw6akkibekrs2bzhk5jxom74ogq3hphinmw3lqv6rhbdrbj5e2gbxgnqef36k56bza","webSpace":"clitest.rgw6akkibekrs2bzhk5jxom74ogq3hphinmw3lqv6rhbdrbj5e2gbxgnqef36k56bza-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"cli-webapp-nwrvaeumjefkr","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153037","name":"cli-webapp-nwr2mbkv3hry5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153037,"deletedTimestamp":"2019-12-31T02:25:19.8460911","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgxbgcpl4scqr476tgshis3kxyb4257tryvypuilsvnli6kfb5mvbewt42ftdezqw3u","webSpace":"clitest.rgxbgcpl4scqr476tgshis3kxyb4257tryvypuilsvnli6kfb5mvbewt42ftdezqw3u-WestUSwebspace","stamp":"waws-prod-bay-061","deletedSiteName":"cli-webapp-nwr2mbkv3hry5","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153038","name":"cli-webapp-nwrvojhekjlcl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153038,"deletedTimestamp":"2019-12-31T02:25:33.2061468","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgkqhj2voza2a4zhbyje7hxrvm4qbcvjjvyii2wsxeq52ogpe7vswch2f65og3incb2","webSpace":"clitest.rgkqhj2voza2a4zhbyje7hxrvm4qbcvjjvyii2wsxeq52ogpe7vswch2f65og3incb2-WestUSwebspace","stamp":"waws-prod-bay-083","deletedSiteName":"cli-webapp-nwrvojhekjlcl","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153039","name":"cli-webapp-nwr7xhtg4gs4v","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153039,"deletedTimestamp":"2019-12-31T02:26:12.2175617","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgo34jnxu5dm2lpv6cmd7hk7yr4uwmipolc44tesfnhjjnhpbwm6lrt25k7xkkmdcea","webSpace":"clitest.rgo34jnxu5dm2lpv6cmd7hk7yr4uwmipolc44tesfnhjjnhpbwm6lrt25k7xkkmdcea-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"cli-webapp-nwr7xhtg4gs4v","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153040","name":"cli-webapp-nwr7xhtg4gs4v","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153040,"deletedTimestamp":"2019-12-31T02:26:12.5144677","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgo34jnxu5dm2lpv6cmd7hk7yr4uwmipolc44tesfnhjjnhpbwm6lrt25k7xkkmdcea","webSpace":"clitest.rgo34jnxu5dm2lpv6cmd7hk7yr4uwmipolc44tesfnhjjnhpbwm6lrt25k7xkkmdcea-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"cli-webapp-nwr7xhtg4gs4v","slot":"stage","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153041","name":"web7uayi7kqhiok3sn74n52p","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153041,"deletedTimestamp":"2019-12-31T02:26:21.8628174","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgsn6ikaibifavhpsh5hvmf6pzuymdi47viqzkywjfl4crs77dctqy7wf7pwbxk6ash","webSpace":"clitest.rgsn6ikaibifavhpsh5hvmf6pzuymdi47viqzkywjfl4crs77dctqy7wf7pwbxk6ash-WestUSwebspace","stamp":"waws-prod-bay-089","deletedSiteName":"web7uayi7kqhiok3sn74n52p","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153042","name":"webapp-quickx3wlkbztkt54","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153042,"deletedTimestamp":"2019-12-31T02:26:22.0763905","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg5u5ey7bpq6vybbmjfo3kyfqkgib7tzcpt4ahnno7n53eov4ojhx5bsyt6kp3mqba5","webSpace":"clitest.rg5u5ey7bpq6vybbmjfo3kyfqkgib7tzcpt4ahnno7n53eov4ojhx5bsyt6kp3mqba5-WestUSwebspace","stamp":"waws-prod-bay-083","deletedSiteName":"webapp-quickx3wlkbztkt54","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153043","name":"webInOtherRG","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153043,"deletedTimestamp":"2019-12-31T02:26:22.9938944","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgknohljepyhhd6346sb52oxf7iwmz46xfa6h3xo4m2ocga4ymrgafsfpiz5dfrag6f","webSpace":"clitest.rgknohljepyhhd6346sb52oxf7iwmz46xfa6h3xo4m2ocga4ymrgafsfpiz5dfrag6f-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"webInOtherRG","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153044","name":"cli-funcapp-nwrfgdqfalpv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153044,"deletedTimestamp":"2019-12-31T02:26:34.4039086","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgimiuxk4pc76vehf4afom2qia4c6qix3w3l2vnhfjzbsahyzrfgb2whgq6nyhq5ofm","webSpace":"clitest.rgimiuxk4pc76vehf4afom2qia4c6qix3w3l2vnhfjzbsahyzrfgb2whgq6nyhq5ofm-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-funcapp-nwrfgdqfalpv","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153045","name":"cli-funcapp-nwrfgdqfalpv","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153045,"deletedTimestamp":"2019-12-31T02:26:34.7320415","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgimiuxk4pc76vehf4afom2qia4c6qix3w3l2vnhfjzbsahyzrfgb2whgq6nyhq5ofm","webSpace":"clitest.rgimiuxk4pc76vehf4afom2qia4c6qix3w3l2vnhfjzbsahyzrfgb2whgq6nyhq5ofm-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"cli-funcapp-nwrfgdqfalpv","slot":"stage","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153046","name":"webapp-e2ekbmth6wagsfqgx","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153046,"deletedTimestamp":"2019-12-31T02:27:06.9168568","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rguvrf6nfpv5tfutpvbhllvbsz33mstlfp7euzjyzqbcajgk5cac3h653qucxoedgup","webSpace":"clitest.rguvrf6nfpv5tfutpvbhllvbsz33mstlfp7euzjyzqbcajgk5cac3h653qucxoedgup-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"webapp-e2ekbmth6wagsfqgx","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153047","name":"webapp-linux-multicuiuft","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153047,"deletedTimestamp":"2019-12-31T02:27:08.6441718","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg2aec5ejwfznkl5i2brosv7lt3tri4ertbnhdcvinv5pjagjhbcu5dc5bwoy2nk2vo","webSpace":"clitest.rg2aec5ejwfznkl5i2brosv7lt3tri4ertbnhdcvinv5pjagjhbcu5dc5bwoy2nk2vo-WestUSwebspace","stamp":"waws-prod-bay-063","deletedSiteName":"webapp-linux-multicuiuft","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153048","name":"cli-webapp-nwrs7paeek3nr","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153048,"deletedTimestamp":"2019-12-31T02:27:13.9224126","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyupiixgo2ereudvxouwlnmrsg4gczvnx3oafgjvqwaqwwmzbvvkqrw3jugcmvmabg","webSpace":"clitest.rgyupiixgo2ereudvxouwlnmrsg4gczvnx3oafgjvqwaqwwmzbvvkqrw3jugcmvmabg-WestUSwebspace","stamp":"waws-prod-bay-015","deletedSiteName":"cli-webapp-nwrs7paeek3nr","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153049","name":"webapp-config-testyjtkzrhrprph53kkdfgp6j","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153049,"deletedTimestamp":"2019-12-31T02:27:57.3852566","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_jsonyv4632vrnsjuiyv3ggifptwfjmi7hxpcdewk3scxzizky2zh3r2c25l","webSpace":"cli_test_webapp_jsonyv4632vrnsjuiyv3ggifptwfjmi7hxpcdewk3scxzizky2zh3r2c25l-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"webapp-config-testyjtkzrhrprph53kkdfgp6j","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153051","name":"web-error2dhrtric3ris4rw","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153051,"deletedTimestamp":"2019-12-31T02:28:23.7030177","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgyabruxpvi2kgpsaab2fnuoamsbratcqkz3xfc6d2ivycxnuduonlprdkqaitk2pat","webSpace":"clitest.rgyabruxpvi2kgpsaab2fnuoamsbratcqkz3xfc6d2ivycxnuduonlprdkqaitk2pat-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"web-error2dhrtric3ris4rw","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153052","name":"webapp-win-logiljugmy3wq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153052,"deletedTimestamp":"2019-12-31T02:28:46.7019428","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgim4bu2blfzklkbrtqsla5rbodntixhmgsv7s3l4gtbtlqxg7kkf25tnmxu5taqokg","webSpace":"clitest.rgim4bu2blfzklkbrtqsla5rbodntixhmgsv7s3l4gtbtlqxg7kkf25tnmxu5taqokg-WestUSwebspace","stamp":"waws-prod-bay-077","deletedSiteName":"webapp-win-logiljugmy3wq","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153053","name":"web-del-test63snqeftnch5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153053,"deletedTimestamp":"2019-12-31T02:29:10.3141197","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rglgxq7vrs5wwcfu7n6hdnnua6uptqaft4kr6iynq5q5gjw2l246tvog7o4f2vvgulo","webSpace":"clitest.rglgxq7vrs5wwcfu7n6hdnnua6uptqaft4kr6iynq5q5gjw2l246tvog7o4f2vvgulo-WestUSwebspace","stamp":"waws-prod-bay-089","deletedSiteName":"web-del-test63snqeftnch5","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153054","name":"webapp-config-testjmv2l3sxg4xtotchpgjbkl","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153054,"deletedTimestamp":"2019-12-31T02:29:22.6806858","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configdukd7fkss5lffgamaeovnyrrva4u4ur2nqm3ngd27nl4xwvbya63l","webSpace":"cli_test_webapp_configdukd7fkss5lffgamaeovnyrrva4u4ur2nqm3ngd27nl4xwvbya63l-WestUSwebspace","stamp":"waws-prod-bay-051","deletedSiteName":"webapp-config-testjmv2l3sxg4xtotchpgjbkl","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153055","name":"webapp-quickshs3czhzs2ar","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153055,"deletedTimestamp":"2019-12-31T02:30:11.0568620","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgnzajbqy7k6svay2tz2okimvpbeigglf6imosw4pg77mppww66ukktbyksrtjsscka","webSpace":"clitest.rgnzajbqy7k6svay2tz2okimvpbeigglf6imosw4pg77mppww66ukktbyksrtjsscka-WestUSwebspace","stamp":"waws-prod-bay-075","deletedSiteName":"webapp-quickshs3czhzs2ar","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153056","name":"slot-traffic-webxyxzfp75","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153056,"deletedTimestamp":"2019-12-31T02:31:43.9976303","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn4u6o5bxhfylelpefd3dgjduw7tcabhtmew5j4mglv5wfm3c5xd5lx2f2fqiqathl","webSpace":"clitest.rgn4u6o5bxhfylelpefd3dgjduw7tcabhtmew5j4mglv5wfm3c5xd5lx2f2fqiqathl-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-traffic-webxyxzfp75","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153057","name":"slot-traffic-webxyxzfp75","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153057,"deletedTimestamp":"2019-12-31T02:31:44.2945072","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgn4u6o5bxhfylelpefd3dgjduw7tcabhtmew5j4mglv5wfm3c5xd5lx2f2fqiqathl","webSpace":"clitest.rgn4u6o5bxhfylelpefd3dgjduw7tcabhtmew5j4mglv5wfm3c5xd5lx2f2fqiqathl-WestUSwebspace","stamp":"waws-prod-bay-049","deletedSiteName":"slot-traffic-webxyxzfp75","slot":"staging","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153058","name":"functionappwithreservedinstancean4mmf5yz","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153058,"deletedTimestamp":"2019-12-31T02:32:17.2859336","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3d7iozzm7dfqtzqnl3mizp56wwwjnskhj3qvhs454m4u3uyudtmdmjkurq6225bvf","webSpace":"clitest.rg3d7iozzm7dfqtzqnl3mizp56wwwjnskhj3qvhs454m4u3uyudtmdmjkurq6225bvf-WestUSwebspace","stamp":"waws-prod-bay-137","deletedSiteName":"functionappwithreservedinstancean4mmf5yz","slot":"Production","kind":"functionapp","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153059","name":"webapp-quick-cdmorfb3lxt","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153059,"deletedTimestamp":"2019-12-31T02:32:52.3763631","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rghh3pxdx2w3s5llngm2fr2es2ysjdnu6ihr63kizdh6nmrvb4kvibtmhjfjqbikhag","webSpace":"clitest.rghh3pxdx2w3s5llngm2fr2es2ysjdnu6ihr63kizdh6nmrvb4kvibtmhjfjqbikhag-WestUSwebspace","stamp":"waws-prod-bay-043","deletedSiteName":"webapp-quick-cdmorfb3lxt","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153060","name":"web-git-test2oovhuiwoo6i","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153060,"deletedTimestamp":"2019-12-31T02:33:20.3468715","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgh5kz43mvy5pnunj3lkw6mmwvjfyexatbja5h2t7oqaqfp3zddl6766y32nr7ffvn6","webSpace":"clitest.rgh5kz43mvy5pnunj3lkw6mmwvjfyexatbja5h2t7oqaqfp3zddl6766y32nr7ffvn6-WestUSwebspace","stamp":"waws-prod-bay-053","deletedSiteName":"web-git-test2oovhuiwoo6i","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153061","name":"slot-traffic-webyw53tuwd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153061,"deletedTimestamp":"2019-12-31T02:33:40.4847724","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc3rtr3b4lfo65lri5izr2nlvvkhxfzienw7zdkp7y6wcgndi4wmgcgk4o2uoudkip","webSpace":"clitest.rgc3rtr3b4lfo65lri5izr2nlvvkhxfzienw7zdkp7y6wcgndi4wmgcgk4o2uoudkip-WestUSwebspace","stamp":"waws-prod-bay-113","deletedSiteName":"slot-traffic-webyw53tuwd","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153062","name":"slot-traffic-webyw53tuwd","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153062,"deletedTimestamp":"2019-12-31T02:33:40.7819688","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgc3rtr3b4lfo65lri5izr2nlvvkhxfzienw7zdkp7y6wcgndi4wmgcgk4o2uoudkip","webSpace":"clitest.rgc3rtr3b4lfo65lri5izr2nlvvkhxfzienw7zdkp7y6wcgndi4wmgcgk4o2uoudkip-WestUSwebspace","stamp":"waws-prod-bay-113","deletedSiteName":"slot-traffic-webyw53tuwd","slot":"slot1","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153063","name":"delete-me-web000003","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153063,"deletedTimestamp":"2019-12-31T02:34:14.3764093","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001","webSpace":"clitest.rg000001-WestUSwebspace","stamp":"waws-prod-bay-027","deletedSiteName":"delete-me-web000003","slot":"Production","kind":"app","geoRegionName":"West + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US/deletedSites/153064","name":"func-e2ex76qi6wtvar7jwoq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":153064,"deletedTimestamp":"2019-12-31T02:34:14.8146593","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgttooho3dq6kkcjjucqn7yypoereetx6bqv5xe74njg4strvlqxobxiobcy4ojizaz","webSpace":"clitest.rgttooho3dq6kkcjjucqn7yypoereetx6bqv5xe74njg4strvlqxobxiobcy4ojizaz-WestUSwebspace","stamp":"waws-prod-bay-065","deletedSiteName":"func-e2ex76qi6wtvar7jwoq","slot":"Production","kind":"functionapp","geoRegionName":"West US","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '231456' + - '328647' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:52 GMT + - Tue, 31 Dec 2019 02:34:40 GMT expires: - '-1' pragma: @@ -4616,11 +4825,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central @@ -4699,16 +4908,36 @@ interactions: US/deletedSites/135014","name":"functionappelasticykka2nuscubn4gyl2mozjh","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":135014,"deletedTimestamp":"2019-11-13T11:10:07.0861890","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg5fuwhzrtcnrs4dfwjjgeaj3dszmezu2hbixbzy2i5ktb32yiroefwzjknfk76cuw","webSpace":"clitest.rgg5fuwhzrtcnrs4dfwjjgeaj3dszmezu2hbixbzy2i5ktb32yiroefwzjknfk76cuw-CentralUSwebspace","stamp":"waws-prod-dm1-105","deletedSiteName":"functionappelasticykka2nuscubn4gyl2mozjh","slot":"Production","kind":"functionapp","geoRegionName":"Central US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central US/deletedSites/135043","name":"functionappelasticj5i4g66ic3nmayuo6cmgqu","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":135043,"deletedTimestamp":"2019-11-13T11:28:54.1874939","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgipjbiejfcq3azzai5hz6mderyjnslkwm74t3ukb7oslz2djo7spo4sdr2syrqcmdt","webSpace":"clitest.rgipjbiejfcq3azzai5hz6mderyjnslkwm74t3ukb7oslz2djo7spo4sdr2syrqcmdt-CentralUSwebspace","stamp":"waws-prod-dm1-131","deletedSiteName":"functionappelasticj5i4g66ic3nmayuo6cmgqu","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/136991","name":"functionappelasticbocqcct43s4pw7pb5btkbf","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":136991,"deletedTimestamp":"2019-11-14T01:43:58.7814348","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgpumpl7vrkj5egvcw44gndceft2olh7vo2qyp45qa4ddsnqqc45hx6f54pmgwe7oxk","webSpace":"clitest.rgpumpl7vrkj5egvcw44gndceft2olh7vo2qyp45qa4ddsnqqc45hx6f54pmgwe7oxk-CentralUSwebspace","stamp":"waws-prod-dm1-137","deletedSiteName":"functionappelasticbocqcct43s4pw7pb5btkbf","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/146647","name":"functionappelastica77ybx5wfbqh3qmebj6pbs","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":146647,"deletedTimestamp":"2019-11-19T03:07:37.6784236","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgg34v46yzivoaek7j5p7mf4ggphlkbq3avrhdwc6ljahkjdwz627fe2n4uezdfg3vc","webSpace":"clitest.rgg34v46yzivoaek7j5p7mf4ggphlkbq3avrhdwc6ljahkjdwz627fe2n4uezdfg3vc-CentralUSwebspace","stamp":"waws-prod-dm1-087","deletedSiteName":"functionappelastica77ybx5wfbqh3qmebj6pbs","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/146994","name":"functionappelasticzgzyepzrufb55noetpktc5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":146994,"deletedTimestamp":"2019-11-19T06:32:49.7599384","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgokjpvdxe67fqlacnzow5ckpqpsx7j36dvjg6v2q6nn5m7ihl5jlidxcrb2axuzhtu","webSpace":"clitest.rgokjpvdxe67fqlacnzow5ckpqpsx7j36dvjg6v2q6nn5m7ihl5jlidxcrb2axuzhtu-CentralUSwebspace","stamp":"waws-prod-dm1-101","deletedSiteName":"functionappelasticzgzyepzrufb55noetpktc5","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/149216","name":"zuhweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":149216,"deletedTimestamp":"2019-11-20T02:03:46.5869302","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-CentralUSwebspace","stamp":"waws-prod-dm1-043","deletedSiteName":"zuhweb","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/149217","name":"zuhfunction3","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":149217,"deletedTimestamp":"2019-11-20T02:03:52.7258873","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh2","webSpace":"zuh2-CentralUSwebspace","stamp":"waws-prod-dm1-139","deletedSiteName":"zuhfunction3","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/149218","name":"zuheductiaonaa","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":149218,"deletedTimestamp":"2019-11-20T02:03:55.1603988","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh_rg_Windows_centralus","webSpace":"zuh_rg_Windows_centralus-CentralUSwebspace","stamp":"waws-prod-dm1-053","deletedSiteName":"zuheductiaonaa","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/149219","name":"zuhfunction2","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":149219,"deletedTimestamp":"2019-11-20T02:04:01.7509689","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh2","webSpace":"zuh2-CentralUSwebspace","stamp":"waws-prod-dm1-139","deletedSiteName":"zuhfunction2","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/245315","name":"zuhwebapp","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":245315,"deletedTimestamp":"2019-12-08T17:15:31.4972130","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-CentralUSwebspace","stamp":"waws-prod-dm1-097","deletedSiteName":"zuhwebapp","slot":"Production","kind":"app","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/328178","name":"functionappelasticedmrj4scl5l6oa7i7efaja","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":328178,"deletedTimestamp":"2019-12-27T14:02:18.3441224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgr3jq5ge6c2qjy2mbbtrcnltivs6xfmpfkmutpbg2v424vuqinowaurrqvgblc5cl4","webSpace":"clitest.rgr3jq5ge6c2qjy2mbbtrcnltivs6xfmpfkmutpbg2v424vuqinowaurrqvgblc5cl4-CentralUSwebspace","stamp":"waws-prod-dm1-141","deletedSiteName":"functionappelasticedmrj4scl5l6oa7i7efaja","slot":"Production","kind":"functionapp","geoRegionName":"Central + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central + US/deletedSites/328180","name":"functionappwithappinsightsnhzjrjkrfz7z6j","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":328180,"deletedTimestamp":"2019-12-27T14:05:40.5371641","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgfalsim6r3aygkoin7buxq5s7akjsogpte53uvzmb5i4n6jhv2nsa7muu5ckr77zau","webSpace":"clitest.rgfalsim6r3aygkoin7buxq5s7akjsogpte53uvzmb5i4n6jhv2nsa7muu5ckr77zau-CentralUSwebspace","stamp":"waws-prod-dm1-043","deletedSiteName":"functionappwithappinsightsnhzjrjkrfz7z6j","slot":"Production","kind":"functionapp","geoRegionName":"Central US","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '23003' + - '29451' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:54 GMT + - Tue, 31 Dec 2019 02:34:40 GMT expires: - '-1' pragma: @@ -4745,11 +4974,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US%202/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West%20US%202/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West @@ -4768,16 +4997,22 @@ interactions: US 2/deletedSites/27976","name":"webapp-linux-multigv5yp5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":27976,"deletedTimestamp":"2019-11-13T11:05:06.7926224","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf","webSpace":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multigv5yp5","slot":"Production","kind":"app,linux,container","geoRegionName":"West US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West US 2/deletedSites/27977","name":"webapp-linux-multigv5yp5","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":27977,"deletedTimestamp":"2019-11-13T11:05:07.1841615","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf","webSpace":"clitest.rgcrkve2qy2sr3yl62wyeygcdjz4vpc3h7akzg2gory455o6oyiskvz42hdjolbtswf-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"webapp-linux-multigv5yp5","slot":"stage","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/32424","name":"emerald-city-bookstore","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":32424,"deletedTimestamp":"2019-11-21T17:10:39.0295225","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"emerald-city-bookstore","webSpace":"emerald-city-bookstore-WestUS2webspace","stamp":"waws-prod-mwh-029","deletedSiteName":"emerald-city-bookstore","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/62817","name":"webapp-linux-multi4nkwaq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":62817,"deletedTimestamp":"2019-12-31T02:33:04.3727283","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3biuzr6tjuxear5dzk2a4oyp32c64eptzht3yrbr6gijvuh6i4jrz7dvugvycdaxe","webSpace":"clitest.rg3biuzr6tjuxear5dzk2a4oyp32c64eptzht3yrbr6gijvuh6i4jrz7dvugvycdaxe-WestUS2webspace","stamp":"waws-prod-mwh-041","deletedSiteName":"webapp-linux-multi4nkwaq","slot":"Production","kind":"app,linux,container","geoRegionName":"West + US 2","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/West + US 2/deletedSites/62818","name":"webapp-linux-multi4nkwaq","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":62818,"deletedTimestamp":"2019-12-31T02:33:04.7321006","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg3biuzr6tjuxear5dzk2a4oyp32c64eptzht3yrbr6gijvuh6i4jrz7dvugvycdaxe","webSpace":"clitest.rg3biuzr6tjuxear5dzk2a4oyp32c64eptzht3yrbr6gijvuh6i4jrz7dvugvycdaxe-WestUS2webspace","stamp":"waws-prod-mwh-041","deletedSiteName":"webapp-linux-multi4nkwaq","slot":"stage","kind":"app,linux,container","geoRegionName":"West US 2","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '5725' + - '7752' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:56 GMT + - Tue, 31 Dec 2019 02:34:41 GMT expires: - '-1' pragma: @@ -4814,25 +5049,33 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East US/deletedSites/133950","name":"zuheducation","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":133950,"deletedTimestamp":"2019-11-13T06:12:48.0357118","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-EastUSwebspace","stamp":"waws-prod-blu-143","deletedSiteName":"zuheducation","slot":"Production","kind":"app","geoRegionName":"East + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US/deletedSites/152365","name":"webapp-linuxjvrbslg5hpha","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":152365,"deletedTimestamp":"2019-11-20T07:45:53.8509261","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configc77tsb2cp7d7sfwumn472mkarphp2g4z5g6qauiamtsnvu63atykn","webSpace":"cli_test_webapp_configc77tsb2cp7d7sfwumn472mkarphp2g4z5g6qauiamtsnvu63atykn-EastUSwebspace","stamp":"waws-prod-blu-089","deletedSiteName":"webapp-linuxjvrbslg5hpha","slot":"Production","kind":"app,linux","geoRegionName":"East + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US/deletedSites/152372","name":"webapp-linuxczfzla77dwq6","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":152372,"deletedTimestamp":"2019-11-20T07:50:39.6335542","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"cli_test_webapp_configkpxog63ylwzzt7sv2kcncgvks3owjlplndfaz3w6btkf6j2fcmgxb","webSpace":"cli_test_webapp_configkpxog63ylwzzt7sv2kcncgvks3owjlplndfaz3w6btkf6j2fcmgxb-EastUSwebspace","stamp":"waws-prod-blu-137","deletedSiteName":"webapp-linuxczfzla77dwq6","slot":"Production","kind":"app,linux","geoRegionName":"East + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US/deletedSites/199406","name":"zuhlinux","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":199406,"deletedTimestamp":"2019-12-08T17:15:33.6384354","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-EastUSwebspace","stamp":"waws-prod-blu-147","deletedSiteName":"zuhlinux","slot":"Production","kind":"app,linux","geoRegionName":"East + US","correlationId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East + US/deletedSites/199407","name":"zuhlinuxweb","type":"Microsoft.Web/locations/deletedSites","properties":{"deletedSiteId":199407,"deletedTimestamp":"2019-12-08T17:15:44.1849712","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"zuh","webSpace":"zuh-EastUSwebspace","stamp":"waws-prod-blu-147","deletedSiteName":"zuhlinuxweb","slot":"Production","kind":"app,linux,container","geoRegionName":"East US","correlationId":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '564' + - '3032' content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:57 GMT + - Tue, 31 Dec 2019 02:34:41 GMT expires: - '-1' pragma: @@ -4869,11 +5112,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202%20EUAP/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/East%20US%202%20EUAP/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -4885,7 +5128,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:41:59 GMT + - Tue, 31 Dec 2019 02:34:45 GMT expires: - '-1' pragma: @@ -4922,11 +5165,11 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US%20EUAP/deletedSites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/locations/Central%20US%20EUAP/deletedSites?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -4938,7 +5181,7 @@ interactions: content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:00 GMT + - Tue, 31 Dec 2019 02:34:46 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml index b89e8c5dbcc..83f8880e979 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml @@ -18,19 +18,27 @@ interactions: azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -39,11 +47,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:22 GMT ======= - Thu, 14 Nov 2019 01:40:48 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:45 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -81,12 +93,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -98,11 +114,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:23 GMT ======= - Thu, 14 Nov 2019 01:40:49 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:45 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -120,11 +140,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1199' ======= - '1196' >>>>>>> Re-record test for app service +======= + - '1195' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -149,19 +173,27 @@ interactions: azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -170,11 +202,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:22 GMT ======= - Thu, 14 Nov 2019 01:40:49 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -212,15 +248,20 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' @@ -228,6 +269,10 @@ interactions: US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -236,11 +281,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT ======= - Thu, 14 Nov 2019 01:40:55 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -258,7 +307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' x-powered-by: - ASP.NET status: @@ -283,15 +332,20 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' @@ -299,6 +353,10 @@ interactions: US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache @@ -307,11 +365,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT ======= - Thu, 14 Nov 2019 01:40:56 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:55 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -352,19 +414,27 @@ interactions: azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -373,11 +443,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT ======= - Thu, 14 Nov 2019 01:40:57 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:55 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -415,12 +489,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -432,11 +510,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:29 GMT ======= - Thu, 14 Nov 2019 01:40:57 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:56 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -454,7 +536,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1197' +======= + - '1195' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -479,19 +565,27 @@ interactions: azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -500,11 +594,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:30 GMT ======= - Thu, 14 Nov 2019 01:40:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:24:57 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -542,14 +640,19 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' @@ -557,6 +660,10 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -565,11 +672,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:32 GMT ======= - Thu, 14 Nov 2019 01:41:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:25:00 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -587,11 +698,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1199' ======= - '1191' >>>>>>> Re-record test for app service +======= + - '1194' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -616,15 +731,20 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' @@ -632,6 +752,10 @@ interactions: US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache @@ -640,11 +764,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 09 Dec 2019 21:27:33 GMT ======= - Thu, 14 Nov 2019 01:41:01 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:25:01 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -678,6 +806,7 @@ interactions: Connection: - keep-alive User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 @@ -738,6 +867,19 @@ interactions: Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":2,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-177_26058","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Web/serverfarms/allisonm_asp_Linux_westeurope_0","name":"allisonm_asp_Linux_westeurope_0","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West Europe","properties":{"serverFarmId":397989,"name":"allisonm_asp_Linux_westeurope_0","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-cee-WestEuropewebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":3,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"allisonm-cee","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-125_18741","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}]}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache @@ -746,7 +888,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:34 GMT +======= + - Tue, 31 Dec 2019 02:25:03 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -781,17 +927,27 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -800,7 +956,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:35 GMT +======= + - Tue, 31 Dec 2019 02:25:05 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -836,17 +996,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -855,7 +1025,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:35 GMT +======= + - Tue, 31 Dec 2019 02:25:06 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -896,12 +1070,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -913,7 +1092,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:35 GMT +======= + - Tue, 31 Dec 2019 02:25:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -931,7 +1114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -955,22 +1138,35 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 +>>>>>>> live test response: body: <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ======= string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group ''westus'' could not be found."}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -980,7 +1176,11 @@ interactions: <<<<<<< HEAD - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:35 GMT +======= + - Tue, 31 Dec 2019 02:25:10 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1024,6 +1224,7 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -1034,10 +1235,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:38.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:13.423","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3524' content-type: - application/json @@ -1050,6 +1264,15 @@ interactions: date: - Thu, 14 Nov 2019 01:41:02 GMT >>>>>>> Re-record test for app service +======= + - '3520' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:30 GMT + etag: + - '"1D5BF8188BE7FD0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1058,8 +1281,15 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff +<<<<<<< HEAD x-ms-failure-cause: - gateway +======= + x-ms-ratelimit-remaining-subscription-resource-requests: + - '498' + x-powered-by: + - ASP.NET +>>>>>>> live test status: <<<<<<< HEAD code: 200 @@ -1082,16 +1312,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 +>>>>>>> live test response: body: string: >>>>>> live test destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1114,7 +1367,11 @@ interactions: content-type: - application/xml date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:55 GMT +======= + - Tue, 31 Dec 2019 02:25:32 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1128,7 +1385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1148,17 +1405,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1167,7 +1434,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:56 GMT +======= + - Tue, 31 Dec 2019 02:25:33 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1208,12 +1479,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -1225,7 +1501,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:56 GMT +======= + - Tue, 31 Dec 2019 02:25:33 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1243,7 +1523,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1195' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1263,17 +1547,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +======= + US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1282,7 +1576,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:56 GMT +======= + - Tue, 31 Dec 2019 02:25:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1326,6 +1624,7 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -1336,10 +1635,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3524' content-type: - application/json @@ -1347,6 +1659,15 @@ interactions: - Mon, 09 Dec 2019 21:27:59 GMT etag: - '"1D5AED77B6F6FC0"' +======= + - '3520' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:39 GMT + etag: + - '"1D5BF8188BE7FD0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1388,16 +1709,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 +>>>>>>> live test response: body: string: >>>>>> live test destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1420,7 +1764,11 @@ interactions: content-type: - application/xml date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:27:59 GMT +======= + - Tue, 31 Dec 2019 02:25:40 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1434,7 +1782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1454,6 +1802,7 @@ interactions: ParameterSetName: - -g User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -1464,15 +1813,35 @@ interactions: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3562' content-type: - application/json date: - Mon, 09 Dec 2019 21:28:00 GMT +======= + - '3558' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1508,6 +1877,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -1518,10 +1888,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3522' content-type: - application/json @@ -1529,6 +1912,15 @@ interactions: - Mon, 09 Dec 2019 21:28:01 GMT etag: - '"1D5AED78724B870"' +======= + - '3518' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:43 GMT + etag: + - '"1D5BF8196A2B670"' +>>>>>>> live test expires: - '-1' pragma: @@ -1564,6 +1956,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -1574,10 +1967,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3522' content-type: - application/json @@ -1585,6 +1991,15 @@ interactions: - Mon, 09 Dec 2019 21:28:01 GMT etag: - '"1D5AED78724B870"' +======= + - '3518' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:45 GMT + etag: + - '"1D5BF8196A2B670"' +>>>>>>> live test expires: - '-1' pragma: @@ -1624,16 +2039,26 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 +>>>>>>> live test response: body: string: >>>>>> live test destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1656,7 +2094,11 @@ interactions: content-type: - application/xml date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:01 GMT +======= + - Tue, 31 Dec 2019 02:25:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1690,6 +2132,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -1700,10 +2143,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test + headers: + cache-control: - no-cache content-length: +<<<<<<< HEAD - '3522' content-type: - application/json @@ -1711,6 +2167,15 @@ interactions: - Mon, 09 Dec 2019 21:28:02 GMT etag: - '"1D5AED78724B870"' +======= + - '3518' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:47 GMT + etag: + - '"1D5BF8196A2B670"' +>>>>>>> live test expires: - '-1' pragma: @@ -1751,22 +2216,36 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3101' content-type: - application/json @@ -1774,6 +2253,15 @@ interactions: - Mon, 09 Dec 2019 21:28:03 GMT etag: - '"1D5AED78724B870"' +======= + - '3072' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:49 GMT + etag: + - '"1D5BF8196A2B670"' +>>>>>>> live test expires: - '-1' pragma: @@ -1791,7 +2279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1189' x-powered-by: - ASP.NET status: @@ -1811,12 +2299,17 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2019-08-01 response: body: string: '{"id":null,"name":"web","type":"Microsoft.Web/publishingUsers/web","properties":{"name":null,"publishingUserName":null,"publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' @@ -1828,7 +2321,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:03 GMT +======= + - Tue, 31 Dec 2019 02:25:49 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1864,27 +2361,42 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web","name":"webapp-e2e000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://webapp-e2e000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://webapp-e2e000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '534' + - '557' content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:04 GMT etag: - '"1D5AED78A1B1510"' +======= + - Tue, 31 Dec 2019 02:25:51 GMT + etag: + - '"1D5BF819DDB2990"' +>>>>>>> live test expires: - '-1' pragma: @@ -1920,27 +2432,42 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web","name":"webapp-e2e000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://webapp-e2e000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://webapp-e2e000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '534' + - '557' content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:05 GMT etag: - '"1D5AED78A1B1510"' +======= + - Tue, 31 Dec 2019 02:25:51 GMT + etag: + - '"1D5BF819DDB2990"' +>>>>>>> live test expires: - '-1' pragma: @@ -1977,6 +2504,7 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -1987,10 +2515,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:03.553","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:49.737","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3522' content-type: - application/json @@ -1998,6 +2539,15 @@ interactions: - Mon, 09 Dec 2019 21:28:05 GMT etag: - '"1D5AED78A1B1510"' +======= + - '3518' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:52 GMT + etag: + - '"1D5BF819DDB2990"' +>>>>>>> live test expires: - '-1' pragma: @@ -2034,6 +2584,7 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2044,10 +2595,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:03.553","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:49.737","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3522' content-type: - application/json @@ -2055,6 +2619,15 @@ interactions: - Mon, 09 Dec 2019 21:28:05 GMT etag: - '"1D5AED78A1B1510"' +======= + - '3518' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:54 GMT + etag: + - '"1D5BF819DDB2990"' +>>>>>>> live test expires: - '-1' pragma: @@ -2098,12 +2671,21 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"West @@ -2116,9 +2698,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:06 GMT etag: - '"1D5AED78C236830"' +======= + - Tue, 31 Dec 2019 02:25:55 GMT + etag: + - '"1D5BF81A1A18060"' +>>>>>>> live test expires: - '-1' pragma: @@ -2136,7 +2724,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1193' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2156,6 +2748,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2166,10 +2759,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:06.963","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:56.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3522' content-type: - application/json @@ -2177,6 +2783,15 @@ interactions: - Mon, 09 Dec 2019 21:28:07 GMT etag: - '"1D5AED78C236830"' +======= + - '3517' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:56 GMT + etag: + - '"1D5BF81A1A18060"' +>>>>>>> live test expires: - '-1' pragma: @@ -2212,12 +2827,21 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"West @@ -2230,7 +2854,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:08 GMT +======= + - Tue, 31 Dec 2019 02:25:58 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2266,27 +2894,48 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web?api-version=2019-08-01 +>>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web","name":"webapp-e2e000002","type":"Microsoft.Web/sites/config","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":true,"requestTracingExpirationTime":"9999-12-31T23:59:00Z","remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":true,"publishingUsername":"$webapp-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow +<<<<<<< HEAD all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +======= + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3171' content-type: - application/json date: - Mon, 09 Dec 2019 21:28:08 GMT +======= + - '3142' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:25:59 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2326,16 +2975,26 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 +>>>>>>> live test response: body: string: >>>>>> live test destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2358,7 +3030,11 @@ interactions: content-type: - application/xml date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:09 GMT +======= + - Tue, 31 Dec 2019 02:26:00 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2372,7 +3048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2392,6 +3068,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2402,10 +3079,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:06.963","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:56.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3522' content-type: - application/json @@ -2413,6 +3103,15 @@ interactions: - Mon, 09 Dec 2019 21:28:09 GMT etag: - '"1D5AED78C236830"' +======= + - '3517' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:26:01 GMT + etag: + - '"1D5BF81A1A18060"' +>>>>>>> live test expires: - '-1' pragma: @@ -2450,12 +3149,21 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/stop?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/stop?api-version=2019-08-01 +>>>>>>> live test response: body: string: '' @@ -2465,7 +3173,11 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:09 GMT +======= + - Tue, 31 Dec 2019 02:26:03 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2479,7 +3191,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1199' +======= + - '1194' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2499,6 +3215,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2509,10 +3226,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:10.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:03.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -2520,6 +3250,15 @@ interactions: - Mon, 09 Dec 2019 21:28:10 GMT etag: - '"1D5AED78E578640"' +======= + - '3517' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:26:04 GMT + etag: + - '"1D5BF81A636E700"' +>>>>>>> live test expires: - '-1' pragma: @@ -2555,6 +3294,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2565,10 +3305,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:10.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:03.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -2576,6 +3329,15 @@ interactions: - Mon, 09 Dec 2019 21:28:10 GMT etag: - '"1D5AED78E578640"' +======= + - '3517' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:26:05 GMT + etag: + - '"1D5BF81A636E700"' +>>>>>>> live test expires: - '-1' pragma: @@ -2615,16 +3377,26 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 +>>>>>>> live test response: body: string: >>>>>> live test destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2647,7 +3432,11 @@ interactions: content-type: - application/xml date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:11 GMT +======= + - Tue, 31 Dec 2019 02:26:06 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2661,7 +3450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2681,6 +3470,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2691,10 +3481,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:10.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:03.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -2702,6 +3505,15 @@ interactions: - Mon, 09 Dec 2019 21:28:11 GMT etag: - '"1D5AED78E578640"' +======= + - '3517' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:26:07 GMT + etag: + - '"1D5BF81A636E700"' +>>>>>>> live test expires: - '-1' pragma: @@ -2739,12 +3551,21 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/start?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/start?api-version=2019-08-01 +>>>>>>> live test response: body: string: '' @@ -2754,7 +3575,11 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:12 GMT +======= + - Tue, 31 Dec 2019 02:26:08 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2768,7 +3593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -2788,6 +3613,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2798,10 +3624,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:13.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:08.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -2809,6 +3648,15 @@ interactions: - Mon, 09 Dec 2019 21:28:13 GMT etag: - '"1D5AED78FD377E0"' +======= + - '3518' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:26:09 GMT + etag: + - '"1D5BF81A9316250"' +>>>>>>> live test expires: - '-1' pragma: @@ -2844,6 +3692,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2854,10 +3703,23 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:13.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:08.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3521' content-type: - application/json @@ -2865,6 +3727,15 @@ interactions: - Mon, 09 Dec 2019 21:28:13 GMT etag: - '"1D5AED78FD377E0"' +======= + - '3518' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:26:10 GMT + etag: + - '"1D5BF81A9316250"' +>>>>>>> live test expires: - '-1' pragma: @@ -2904,16 +3775,26 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 +>>>>>>> live test response: body: string: >>>>>> live test destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2936,7 +3830,11 @@ interactions: content-type: - application/xml date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:13 GMT +======= + - Tue, 31 Dec 2019 02:26:12 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2972,6 +3870,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: @@ -2982,6 +3881,18 @@ interactions: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishingcredentials/$webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West US","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"qqSglxDczbKtp2dA5cahAxdufW3S5cvi38STKEgtXYiTfipzzikgsanfqYGh","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:qqSglxDczbKtp2dA5cahAxdufW3S5cvi38STKEgtXYiTfipzzikgsanfqYGh@webapp-e2e000002.scm.azurewebsites.net"}}' +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishingcredentials/$webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West + US","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"vxe97uWQBCvjCnjZflGtJc7zBKg7b2xXhXg8KM2leNMmHa0yWNTJJsYssscf","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:vxe97uWQBCvjCnjZflGtJc7zBKg7b2xXhXg8KM2leNMmHa0yWNTJJsYssscf@webapp-e2e000002.scm.azurewebsites.net"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -2990,6 +3901,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 09 Dec 2019 21:28:14 GMT expires: - '-1' @@ -3049,6 +3961,9 @@ interactions: - Mon, 09 Dec 2019 21:28:14 GMT etag: - '"1D5AED78FD377E0"' +======= + - Tue, 31 Dec 2019 02:26:13 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -3190,7 +4105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml index c8d1978b0af..1173405fd95 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_git.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:30:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:59:35 GMT + - Tue, 31 Dec 2019 02:30:03 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:36 GMT + - Tue, 31 Dec 2019 02:30:04 GMT expires: - '-1' pragma: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:59:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:30:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:59:36 GMT + - Tue, 31 Dec 2019 02:30:04 GMT expires: - '-1' pragma: @@ -169,25 +169,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","name":"webapp-git-plan5000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":145437,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145437","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23239,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23239","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1530' + - '1528' content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:44 GMT + - Tue, 31 Dec 2019 02:30:11 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1183' x-powered-by: - ASP.NET status: @@ -226,25 +226,25 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","name":"webapp-git-plan5000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":145437,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145437","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23239,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23239","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1530' + - '1528' content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:45 GMT + - Tue, 31 Dec 2019 02:30:13 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:45 GMT + - Tue, 31 Dec 2019 02:30:14 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' x-powered-by: - ASP.NET status: @@ -341,25 +341,25 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","name":"webapp-git-plan5000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":145437,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145437","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23239,"name":"webapp-git-plan5000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23239","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1530' + - '1528' content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:47 GMT + - Tue, 31 Dec 2019 02:30:14 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '538' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003","name":"web-git-test2000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:52.287","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86E320A8AF4F1E8A2A3B2ADCBA3AEF23562718E8691B4C0D9980A0A136FF4B39","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:19.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CE6673CF506A9B15AD47576289B6B598605838E4037E60373D6CABA853328D5D","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3531' + - '3532' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:08 GMT + - Tue, 31 Dec 2019 02:30:35 GMT etag: - - '"1D59A1179E37910"' + - '"1D5BF823EE2C3C0"' expires: - '-1' pragma: @@ -465,22 +466,28 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/publishxml?api-version=2019-08-01 response: body: string: @@ -488,11 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:00:09 GMT + - Tue, 31 Dec 2019 02:30:36 GMT expires: - '-1' pragma: @@ -506,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -527,15 +534,15 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003","name":"web-git-test2000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:52.737","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86E320A8AF4F1E8A2A3B2ADCBA3AEF23562718E8691B4C0D9980A0A136FF4B39","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-git-test2000003","state":"Running","hostNames":["web-git-test2000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-git-test2000003","repositorySiteName":"web-git-test2000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-git-test2000003.azurewebsites.net","web-git-test2000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-git-test2000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-git-test2000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-git-plan5000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:19.9","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-git-test2000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CE6673CF506A9B15AD47576289B6B598605838E4037E60373D6CABA853328D5D","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-git-test2000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -544,9 +551,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:10 GMT + - Tue, 31 Dec 2019 02:30:37 GMT etag: - - '"1D59A1179E37910"' + - '"1D5BF823EE2C3C0"' expires: - '-1' pragma: @@ -588,26 +595,26 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '531' + - '554' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:21 GMT + - Tue, 31 Dec 2019 02:30:42 GMT etag: - - '"1D59A118B888840"' + - '"1D5BF824C8165E0"' expires: - '-1' pragma: @@ -621,7 +628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1183' x-powered-by: - ASP.NET status: @@ -642,25 +649,80 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:31:07.1751533 + https://web-git-test2000003.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-30-56Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '726' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:31:14 GMT + etag: + - '"1D5BF824C8165E0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp deployment source config + Connection: + - keep-alive + ParameterSetName: + - -g -n --repo-url --branch --manual-integration + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T11:00:43.3355935 - https://web-git-test2000003.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_11-00-32Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:31:38.7833443 + https://web-git-test2000003.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-30-56Z"}}' headers: cache-control: - no-cache content-length: - - '703' + - '726' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:52 GMT + - Tue, 31 Dec 2019 02:31:44 GMT etag: - - '"1D59A118B888840"' + - '"1D5BF824C8165E0"' expires: - '-1' pragma: @@ -697,24 +759,24 @@ interactions: - -g -n --repo-url --branch --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '530' + - '553' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:23 GMT + - Tue, 31 Dec 2019 02:32:14 GMT etag: - - '"1D59A118B888840"' + - '"1D5BF824C8165E0"' expires: - '-1' pragma: @@ -751,26 +813,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '530' + - '553' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:25 GMT + - Tue, 31 Dec 2019 02:32:17 GMT etag: - - '"1D59A118B888840"' + - '"1D5BF824C8165E0"' expires: - '-1' pragma: @@ -809,11 +871,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2019-08-01 response: body: string: '' @@ -823,9 +885,9 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:01:37 GMT + - Tue, 31 Dec 2019 02:32:35 GMT etag: - - '"1D59A11B29AAB20"' + - '"1D5BF8285D9E100"' expires: - '-1' pragma: @@ -860,26 +922,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-git-test2000003/sourcecontrols/web","name":"web-git-test2000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":null,"branch":null,"isManualIntegration":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":null,"branch":null,"isManualIntegration":false,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '482' + - '505' content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:37 GMT + - Tue, 31 Dec 2019 02:32:37 GMT etag: - - '"1D59A11B29AAB20"' + - '"1D5BF8285D9E100"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml index 81bceebb481..e5d46d159c4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml @@ -13,7 +13,11 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -21,11 +25,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:35Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -34,11 +42,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:15 GMT ======= - Wed, 13 Nov 2019 11:20:05 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -76,12 +88,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +109,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:15 GMT ======= - Wed, 13 Nov 2019 11:20:06 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -115,7 +135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1184' x-powered-by: - ASP.NET status: @@ -135,7 +155,11 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -143,11 +167,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:35Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -156,11 +184,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:16 GMT ======= - Wed, 13 Nov 2019 11:20:07 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -198,15 +230,20 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -214,6 +251,10 @@ interactions: US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":33767,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -222,11 +263,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:21 GMT ======= - Wed, 13 Nov 2019 11:20:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:51 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -244,11 +289,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1179' >>>>>>> Re-record test for app service +======= + - '1181' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -273,15 +322,20 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -289,6 +343,10 @@ interactions: US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":33767,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -297,11 +355,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:22 GMT ======= - Wed, 13 Nov 2019 11:20:16 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:52 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -347,12 +409,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -364,11 +430,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:22 GMT ======= - Wed, 13 Nov 2019 11:20:17 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:54 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -386,7 +456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1188' x-powered-by: - ASP.NET status: @@ -411,15 +481,20 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' @@ -427,6 +502,10 @@ interactions: US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":33767,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -435,11 +514,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:22 GMT ======= - Wed, 13 Nov 2019 11:20:18 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:37:55 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -465,12 +548,17 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], +<<<<<<< HEAD <<<<<<< HEAD "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}''' ======= "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' >>>>>>> Re-record test for app service +======= + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' +>>>>>>> live test headers: Accept: - application/json @@ -481,11 +569,15 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD <<<<<<< HEAD - '558' ======= - '520' >>>>>>> Re-record test for app service +======= + - '538' +>>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -496,24 +588,33 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:25.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:20:23.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:59.0666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3523' content-type: @@ -524,13 +625,20 @@ interactions: - '"1D5BF4F68F86AD0"' ======= - '3540' +======= + - '3582' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:20:38 GMT + - Tue, 31 Dec 2019 02:38:16 GMT etag: +<<<<<<< HEAD - '"1D59A145774640B"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8350DED720"' +>>>>>>> live test expires: - '-1' pragma: @@ -548,7 +656,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -577,16 +685,21 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service +======= + msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" + destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" + mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" + webSystem="WebSites">>>>>>> live test destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -614,15 +740,19 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:42 GMT ======= - Wed, 13 Nov 2019 11:20:39 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:18 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -636,11 +766,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11998' ======= - '11992' >>>>>>> Re-record test for app service +======= + - '11994' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -660,7 +794,11 @@ interactions: ParameterSetName: - -g --name User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -668,11 +806,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' ======= string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:35Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -681,11 +823,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:42 GMT ======= - Wed, 13 Nov 2019 11:20:40 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:20 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -717,7 +863,11 @@ interactions: ParameterSetName: - -g --name User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -726,11 +876,15 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","tags":{},"properties":{"provisioningState":"Created","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:26:44.457Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' ======= US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:20:44.08Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' >>>>>>> Re-record test for app service +======= + US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:38:24.13Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -739,11 +893,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:44 GMT ======= - Wed, 13 Nov 2019 11:20:44 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:25 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -762,11 +920,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1197' ======= - '1184' >>>>>>> Re-record test for app service +======= + - '1180' +>>>>>>> live test status: code: 200 message: OK @@ -786,7 +948,11 @@ interactions: ParameterSetName: - -g --name User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -795,11 +961,15 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","tags":{},"properties":{"provisioningState":"Created","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:26:44.457Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' ======= US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:20:44.08Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' >>>>>>> Re-record test for app service +======= + US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:38:24.13Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -808,11 +978,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:14 GMT ======= - Wed, 13 Nov 2019 11:21:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:56 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -849,7 +1023,11 @@ interactions: ParameterSetName: - -g --name User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -858,11 +1036,15 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:27:26.667Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' ======= US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:21:29.333Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' >>>>>>> Re-record test for app service +======= + US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:39:26.063Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -871,11 +1053,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:44 GMT ======= - Wed, 13 Nov 2019 11:21:47 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:27 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -914,7 +1100,11 @@ interactions: ParameterSetName: - -g --namespace-name --name --user-metadata User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -923,24 +1113,32 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005","name":"hcname000005","type":"Microsoft.Relay/Namespaces/HybridConnections","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"createdAt":"2019-12-30T20:27:48.0033426Z","updatedAt":"2019-12-30T20:27:48.0033426Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' ======= US","properties":{"createdAt":"2019-11-13T11:21:51.0016942Z","updatedAt":"2019-11-13T11:21:51.0016942Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"createdAt":"2019-12-31T02:39:31.691979Z","updatedAt":"2019-12-31T02:39:31.691979Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '584' + - '582' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:47 GMT ======= - Wed, 13 Nov 2019 11:21:50 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:32 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -959,11 +1157,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1199' ======= - '1179' >>>>>>> Re-record test for app service +======= + - '1176' +>>>>>>> live test status: code: 200 message: OK @@ -986,24 +1188,33 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:26.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:20:23.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:59.57","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3521' content-type: @@ -1014,13 +1225,20 @@ interactions: - '"1D5BF4F68F86AD0"' ======= - '3543' +======= + - '3575' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:21:53 GMT + - Tue, 31 Dec 2019 02:39:33 GMT etag: +<<<<<<< HEAD - '"1D59A145774640B"' >>>>>>> Re-record test for app service +======= + - '"1D5BF8350DED720"' +>>>>>>> live test expires: - '-1' pragma: @@ -1065,16 +1283,21 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service +======= + msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" + destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" + mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" + webSystem="WebSites">>>>>>> live test destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1102,15 +1338,19 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:49 GMT ======= - Wed, 13 Nov 2019 11:21:54 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:33 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1124,7 +1364,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -1146,7 +1386,11 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1154,6 +1398,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Relay/namespaces?api-version=2017-04-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Relay/namespaces/allisonm-test-migration-091619-d1b1","name":"allisonm-test-migration-091619-d1b1","type":"Microsoft.Relay/Namespaces","location":"West Europe","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:allisonm-test-migration-091619-d1b1","createdAt":"2019-09-16T13:53:45.15Z","updatedAt":"2019-09-16T13:54:30.377Z","serviceBusEndpoint":"https://allisonm-test-migration-091619-d1b1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West @@ -1163,10 +1408,15 @@ interactions: US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespaceh56n4phx22mx4","createdAt":"2019-11-13T11:12:29.497Z","updatedAt":"2019-11-13T11:13:11.733Z","serviceBusEndpoint":"https://hcnamespaceh56n4phx22mx4.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:21:29.333Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' >>>>>>> Re-record test for app service +======= + string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West + US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:39:26.063Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '1320' content-type: @@ -1180,6 +1430,13 @@ interactions: date: - Wed, 13 Nov 2019 11:21:56 GMT >>>>>>> Re-record test for app service +======= + - '671' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:39:35 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1216,7 +1473,11 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1225,24 +1486,32 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005","name":"hcname000005","type":"Microsoft.Relay/Namespaces/HybridConnections","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"createdAt":"2019-12-30T20:27:48.0033426Z","updatedAt":"2019-12-30T20:27:48.0033426Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' ======= US","properties":{"createdAt":"2019-11-13T11:21:51.0016942Z","updatedAt":"2019-11-13T11:21:51.0016942Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' >>>>>>> Re-record test for app service +======= + US","properties":{"createdAt":"2019-12-31T02:39:31.691979Z","updatedAt":"2019-12-31T02:39:31.691979Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: - - '584' + - '582' content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:48 GMT ======= - Wed, 13 Nov 2019 11:21:58 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1279,7 +1548,11 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1296,11 +1569,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:48 GMT ======= - Wed, 13 Nov 2019 11:21:59 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:38 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1339,7 +1616,11 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1357,11 +1638,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:48 GMT ======= - Wed, 13 Nov 2019 11:22:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:39 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1380,7 +1665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1174' + - '1176' status: code: 200 message: OK @@ -1402,7 +1687,11 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1410,11 +1699,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005/authorizationRules/defaultSender/listKeys?api-version=2017-04-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=zL9MjD3KnTjd5+AxxOgqvC49Kxf79F83rC69afOyJnI=;EntityPath=hcname000005","primaryKey":"gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=","secondaryKey":"zL9MjD3KnTjd5+AxxOgqvC49Kxf79F83rC69afOyJnI=","keyName":"defaultSender"}' ======= string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=NQkNzq82SR7wNOhrLVtIWH3586JKV5veGYS+aVPpJXk=;EntityPath=hcname000005","primaryKey":"IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=","secondaryKey":"NQkNzq82SR7wNOhrLVtIWH3586JKV5veGYS+aVPpJXk=","keyName":"defaultSender"}' >>>>>>> Re-record test for app service +======= + string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=rcbFfwIyjhHi9xceVkPpwWDIvh3n6T7P0xpBQIhhA/U=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=kGFvDmxrqRKZpE/j7k4tukIMBPFmlbKMsn/HcliFxls=;EntityPath=hcname000005","primaryKey":"rcbFfwIyjhHi9xceVkPpwWDIvh3n6T7P0xpBQIhhA/U=","secondaryKey":"kGFvDmxrqRKZpE/j7k4tukIMBPFmlbKMsn/HcliFxls=","keyName":"defaultSender"}' +>>>>>>> live test headers: cache-control: - no-cache @@ -1423,11 +1716,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:49 GMT ======= - Wed, 13 Nov 2019 11:22:00 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:40 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1446,11 +1743,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1190' >>>>>>> Re-record test for app service +======= + - '1187' +>>>>>>> live test status: code: 200 message: OK @@ -1458,11 +1759,15 @@ interactions: body: 'b''{"properties": {"serviceBusNamespace": "hcnamespace000004", "relayName": "hcname000005", "relayArmUri": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005", "hostname": "vmsq1", "port": 80, "sendKeyName": "defaultSender", "sendKeyValue": +<<<<<<< HEAD <<<<<<< HEAD "gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=", "serviceBusSuffix": ".servicebus.windows.net"}}''' ======= "IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=", "serviceBusSuffix": ".servicebus.windows.net"}}''' >>>>>>> Re-record test for app service +======= + "rcbFfwIyjhHi9xceVkPpwWDIvh3n6T7P0xpBQIhhA/U=", "serviceBusSuffix": ".servicebus.windows.net"}}''' +>>>>>>> live test headers: Accept: - application/json @@ -1484,12 +1789,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005","name":"hcname000005","type":"Microsoft.Web/sites/hybridConnectionNamespaces/relays","location":"West @@ -1502,11 +1811,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:51 GMT ======= - Wed, 13 Nov 2019 11:22:02 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:41 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1524,11 +1837,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= - '1173' >>>>>>> Re-record test for app service +======= + - '1183' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1553,24 +1870,33 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:51.773","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:02.8933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:42.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3521' content-type: @@ -1581,13 +1907,20 @@ interactions: - '"1D5BF4F9BFDF0D0"' ======= - '3543' +======= + - '3575' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:22:04 GMT + - Tue, 31 Dec 2019 02:39:43 GMT etag: +<<<<<<< HEAD - '"1D59A1492B938D5"' >>>>>>> Re-record test for app service +======= + - '"1D5BF838DFEBA80"' +>>>>>>> live test expires: - '-1' pragma: @@ -1632,16 +1965,21 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service +======= + msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" + destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" + mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" + webSystem="WebSites">>>>>>> live test destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1669,15 +2020,19 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:51 GMT ======= - Wed, 13 Nov 2019 11:22:06 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:45 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1691,7 +2046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11993' + - '11997' x-powered-by: - ASP.NET status: @@ -1716,12 +2071,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005","name":"hcname000005","type":"Microsoft.Web/sites/hybridConnectionNamespaces/relays","location":"West @@ -1734,11 +2093,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:52 GMT ======= - Wed, 13 Nov 2019 11:22:07 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:46 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1779,24 +2142,33 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:51.773","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:02.8933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:42.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3521' content-type: @@ -1807,13 +2179,20 @@ interactions: - '"1D5BF4F9BFDF0D0"' ======= - '3543' +======= + - '3575' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:22:09 GMT + - Tue, 31 Dec 2019 02:39:47 GMT etag: +<<<<<<< HEAD - '"1D59A1492B938D5"' >>>>>>> Re-record test for app service +======= + - '"1D5BF838DFEBA80"' +>>>>>>> live test expires: - '-1' pragma: @@ -1858,16 +2237,21 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service +======= + msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" + destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" + mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" + webSystem="WebSites">>>>>>> live test destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1895,15 +2292,19 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:53 GMT ======= - Wed, 13 Nov 2019 11:22:10 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:48 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1917,7 +2318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -1944,12 +2345,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionNamespaces/hcnamespace000004/relays/hcname000005?api-version=2019-08-01 response: body: string: '' @@ -1959,11 +2364,15 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:54 GMT ======= - Wed, 13 Nov 2019 11:22:11 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1977,7 +2386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14994' x-powered-by: - ASP.NET status: @@ -2002,24 +2411,33 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:54.417","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:11.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service +======= + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3521' content-type: @@ -2030,13 +2448,20 @@ interactions: - '"1D5BF4F9D916210"' ======= - '3537' +======= + - '3575' +>>>>>>> live test content-type: - application/json date: - - Wed, 13 Nov 2019 11:22:13 GMT + - Tue, 31 Dec 2019 02:39:52 GMT etag: +<<<<<<< HEAD - '"1D59A1497E9C100"' >>>>>>> Re-record test for app service +======= + - '"1D5BF83935C0500"' +>>>>>>> live test expires: - '-1' pragma: @@ -2081,16 +2506,21 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service +======= + msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" + destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" + mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" + webSystem="WebSites">>>>>>> live test destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2118,15 +2561,19 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:54 GMT ======= - Wed, 13 Nov 2019 11:22:14 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:53 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2140,11 +2587,15 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD <<<<<<< HEAD - '11999' ======= - '11991' >>>>>>> Re-record test for app service +======= + - '11994' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -2169,12 +2620,16 @@ interactions: azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +<<<<<<< HEAD azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service +======= + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002/hybridConnectionRelays?api-version=2019-08-01 response: body: string: '{"value":[],"nextLink":null,"id":null}' @@ -2186,11 +2641,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:55 GMT ======= - Wed, 13 Nov 2019 11:22:15 GMT >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:54 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml index 7cf9ace57db..76296d71ca5 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hyperv_e2e.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --hyper-v --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T09:37:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:39:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 09:37:50 GMT + - Tue, 31 Dec 2019 02:39:23 GMT expires: - '-1' pragma: @@ -65,11 +65,11 @@ interactions: - -g -n --hyper-v --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 09:37:50 GMT + - Tue, 31 Dec 2019 02:39:24 GMT expires: - '-1' pragma: @@ -99,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1189' x-powered-by: - ASP.NET status: @@ -120,14 +120,14 @@ interactions: - -g -n --hyper-v --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T09:37:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:39:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Nov 2019 09:37:51 GMT + - Tue, 31 Dec 2019 02:39:24 GMT expires: - '-1' pragma: @@ -171,25 +171,25 @@ interactions: - -g -n --hyper-v --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + US","properties":{"serverFarmId":10016,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_10016","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1543' + - '1545' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:11 GMT + - Tue, 31 Dec 2019 02:39:33 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1177' x-powered-by: - ASP.NET status: @@ -228,25 +228,25 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":10016,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_10016","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '1581' + - '1583' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:13 GMT + - Tue, 31 Dec 2019 02:39:35 GMT expires: - '-1' pragma: @@ -283,25 +283,25 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":10016,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_10016","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '1581' + - '1583' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:15 GMT + - Tue, 31 Dec 2019 02:39:37 GMT expires: - '-1' pragma: @@ -338,25 +338,25 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + US","properties":{"serverFarmId":10016,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_10016","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1543' + - '1545' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:17 GMT + - Tue, 31 Dec 2019 02:39:38 GMT expires: - '-1' pragma: @@ -393,25 +393,25 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + US","properties":{"serverFarmId":10016,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_10016","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1543' + - '1545' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:18 GMT + - Tue, 31 Dec 2019 02:39:40 GMT expires: - '-1' pragma: @@ -453,11 +453,11 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -469,7 +469,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:20 GMT + - Tue, 31 Dec 2019 02:39:40 GMT expires: - '-1' pragma: @@ -487,7 +487,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1189' x-powered-by: - ASP.NET status: @@ -508,25 +508,25 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","name":"webapp-hyperv-plan000003","type":"Microsoft.Web/serverfarms","kind":"windows","location":"West - US","properties":{"serverFarmId":8758,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_8758","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' + US","properties":{"serverFarmId":10016,"name":"webapp-hyperv-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"windows","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":true,"hyperV":true,"mdmId":"waws-prod-bay-099_10016","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"PC2","tier":"PremiumContainer","size":"PC2","family":"PC","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1543' + - '1545' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:21 GMT + - Tue, 31 Dec 2019 02:39:41 GMT expires: - '-1' pragma: @@ -552,7 +552,7 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "windowsFxVersion": "DOCKER|microsoft/iis:nanoserver-sac2016", "appSettings": - [], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + [], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: @@ -564,22 +564,22 @@ interactions: Connection: - keep-alive Content-Length: - - '525' + - '543' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West - US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-11-19T09:38:25.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9D6EA1ABF72838E3C5AEB0DE2D8796018AF3A27BDD57A5ACBB53DAFA50CD930D","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-12-31T02:39:47.0333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"44BD319F97BD88139004EE41ED52C7D2E627EFBAE45A7A99F315590EE6696F03","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -588,9 +588,9 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:43 GMT + - Tue, 31 Dec 2019 02:40:05 GMT etag: - - '"1D59EBD1AF6FF20"' + - '"1D5BF8391ECCA95"' expires: - '-1' pragma: @@ -633,23 +633,29 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/publishxml?api-version=2019-08-01 response: body: string: @@ -657,11 +663,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Tue, 19 Nov 2019 09:38:43 GMT + - Tue, 31 Dec 2019 02:40:07 GMT expires: - '-1' pragma: @@ -675,7 +681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11993' x-powered-by: - ASP.NET status: @@ -696,26 +702,26 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West - US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-11-19T09:38:31.57","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9D6EA1ABF72838E3C5AEB0DE2D8796018AF3A27BDD57A5ACBB53DAFA50CD930D","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-12-31T02:39:48.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"44BD319F97BD88139004EE41ED52C7D2E627EFBAE45A7A99F315590EE6696F03","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3743' + - '3748' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:45 GMT + - Tue, 31 Dec 2019 02:40:09 GMT etag: - - '"1D59EBD1AF6FF20"' + - '"1D5BF8391ECCA95"' expires: - '-1' pragma: @@ -752,24 +758,26 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2952' + - '3119' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:47 GMT + - Tue, 31 Dec 2019 02:40:11 GMT expires: - '-1' pragma: @@ -799,13 +807,17 @@ interactions: "DOCKER|microsoft/iis:nanoserver-sac2016", "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-hyperv-e2e000002", "scmType": "None", - "use32BitWorkerProcess": false, "webSocketsEnabled": false, "alwaysOn": false, + "use32BitWorkerProcess": false, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": - [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": false}], + [{"virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": - false, "vnetName": "", "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' + false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -816,33 +828,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1133' + - '1415' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2938' + - '3105' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:49 GMT + - Tue, 31 Dec 2019 02:40:13 GMT etag: - - '"1D59EBD1AF6FF20"' + - '"1D5BF8391ECCA95"' expires: - '-1' pragma: @@ -860,7 +874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1183' x-powered-by: - ASP.NET status: @@ -883,11 +897,11 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -900,7 +914,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:50 GMT + - Tue, 31 Dec 2019 02:40:14 GMT expires: - '-1' pragma: @@ -918,7 +932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11990' x-powered-by: - ASP.NET status: @@ -939,11 +953,11 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West @@ -956,7 +970,7 @@ interactions: content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:51 GMT + - Tue, 31 Dec 2019 02:40:14 GMT expires: - '-1' pragma: @@ -993,24 +1007,26 @@ interactions: - -g -n --plan --deployment-container-image-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2956' + - '3123' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:52 GMT + - Tue, 31 Dec 2019 02:40:16 GMT expires: - '-1' pragma: @@ -1047,24 +1063,24 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","kind":"app,container,windows","location":"West - US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-11-19T09:38:50.17","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9D6EA1ABF72838E3C5AEB0DE2D8796018AF3A27BDD57A5ACBB53DAFA50CD930D","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' + US","properties":{"name":"webapp-hyperv-e2e000002","state":"Running","hostNames":["webapp-hyperv-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-099.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-hyperv-e2e000002","repositorySiteName":"webapp-hyperv-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-hyperv-e2e000002.azurewebsites.net","webapp-hyperv-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":"DOCKER|microsoft/iis:nanoserver-sac2016"}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-hyperv-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-hyperv-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-hyperv-plan000003","reserved":false,"isXenon":true,"hyperV":true,"lastModifiedTimeUtc":"2019-12-31T02:40:13.2566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-hyperv-e2e000002","trafficManagerHostNames":null,"sku":"PremiumContainer","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"44BD319F97BD88139004EE41ED52C7D2E627EFBAE45A7A99F315590EE6696F03","kind":"app,container,windows","inboundIpAddress":"40.112.165.44","possibleInboundIpAddresses":"40.112.165.44","outboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41","possibleOutboundIpAddresses":"40.112.165.44,104.42.180.82,104.42.170.46,104.42.178.117,104.42.41.195,104.42.171.126,104.42.171.41,104.42.181.196,104.42.182.217,104.42.179.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-099","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-hyperv-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3783' + - '3788' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:53 GMT + - Tue, 31 Dec 2019 02:40:17 GMT expires: - '-1' pragma: @@ -1101,24 +1117,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2956' + - '3123' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:55 GMT + - Tue, 31 Dec 2019 02:40:19 GMT expires: - '-1' pragma: @@ -1155,24 +1173,26 @@ interactions: - -g -n --windows-fx-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis:nanoserver-sac2016","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2956' + - '3123' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:56 GMT + - Tue, 31 Dec 2019 02:40:21 GMT expires: - '-1' pragma: @@ -1203,12 +1223,16 @@ interactions: false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-hyperv-e2e000002", "scmType": "None", "use32BitWorkerProcess": false, "webSocketsEnabled": false, - "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1219,33 +1243,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1150' + - '1432' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --windows-fx-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2919' + - '3086' content-type: - application/json date: - - Tue, 19 Nov 2019 09:38:58 GMT + - Tue, 31 Dec 2019 02:40:24 GMT etag: - - '"1D59EBD260D21A0"' + - '"1D5BF83A08DCE8B"' expires: - '-1' pragma: @@ -1263,7 +1289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1172' x-powered-by: - ASP.NET status: @@ -1284,24 +1310,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-hyperv-e2e000002/config/web","name":"webapp-hyperv-e2e000002","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":"DOCKER|microsoft/iis","requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-hyperv-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2937' + - '3104' content-type: - application/json date: - - Tue, 19 Nov 2019 09:39:01 GMT + - Tue, 31 Dec 2019 02:40:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_list_locations_free_sku.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_list_locations_free_sku.yaml index 6201b16d64a..92b8dba7b82 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_list_locations_free_sku.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_list_locations_free_sku.yaml @@ -1,54 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-03-25T23:36:25Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.7.0 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_list-locations-free-sku-test000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_list-locations-free-sku-test000001","name":"cli_test_webapp_list-locations-free-sku-test000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-03-25T23:36:25Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 25 Mar 2019 23:36:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created - request: body: null headers: @@ -63,89 +13,86 @@ interactions: ParameterSetName: - --sku User-Agent: - - python/3.7.0 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.40.0 - Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=FREE&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=FREE&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central US","name":"Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"Central - US","description":null,"sortOrder":0,"displayName":"Central US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + US","description":null,"sortOrder":0,"displayName":"Central US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North Europe","name":"North Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"North - Europe","description":null,"sortOrder":1,"displayName":"North Europe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + Europe","description":"","sortOrder":1,"displayName":"North Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West Europe","name":"West Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"West - Europe","description":null,"sortOrder":2,"displayName":"West Europe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Southeast + Europe","description":null,"sortOrder":2,"displayName":"West Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Southeast Asia","name":"Southeast Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"Southeast - Asia","description":null,"sortOrder":3,"displayName":"Southeast Asia"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia","description":"","sortOrder":3,"displayName":"Southeast Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East - Asia","description":null,"sortOrder":4,"displayName":"East Asia"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West - US","description":null,"sortOrder":5,"displayName":"West US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East - US","description":null,"sortOrder":6,"displayName":"East US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan + US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan - West","description":null,"sortOrder":7,"displayName":"Japan West"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan + West","description":null,"sortOrder":7,"displayName":"Japan West","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan East","name":"Japan East","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan - East","description":null,"sortOrder":8,"displayName":"Japan East"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + East","description":null,"sortOrder":8,"displayName":"Japan East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US 2","name":"East US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"East - US 2","description":null,"sortOrder":9,"displayName":"East US 2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + US 2","description":"","sortOrder":9,"displayName":"East US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North Central US","name":"North Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"North Central US","description":null,"sortOrder":10,"displayName":"North Central - US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South Central US","name":"South Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"South - Central US","description":null,"sortOrder":11,"displayName":"South Central - US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Central US","description":"","sortOrder":11,"displayName":"South Central US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil South","name":"Brazil South","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil - South","description":null,"sortOrder":12,"displayName":"Brazil South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia + South","description":null,"sortOrder":12,"displayName":"Brazil South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia East","name":"Australia East","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia - East","description":null,"sortOrder":13,"displayName":"Australia East"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia + East","description":"","sortOrder":13,"displayName":"Australia East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia Southeast","name":"Australia Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia - Southeast","description":null,"sortOrder":14,"displayName":"Australia Southeast"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central + Southeast","description":null,"sortOrder":14,"displayName":"Australia Southeast","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central India","name":"Central India","type":"Microsoft.Web/geoRegions","properties":{"name":"Central - India","description":null,"sortOrder":2147483647,"displayName":"Central India"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + India","description":null,"sortOrder":2147483647,"displayName":"Central India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West India","name":"West India","type":"Microsoft.Web/geoRegions","properties":{"name":"West - India","description":null,"sortOrder":2147483647,"displayName":"West India"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + India","description":null,"sortOrder":2147483647,"displayName":"West India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South India","name":"South India","type":"Microsoft.Web/geoRegions","properties":{"name":"South - India","description":null,"sortOrder":2147483647,"displayName":"South India"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada + India","description":null,"sortOrder":2147483647,"displayName":"South India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada Central","name":"Canada Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada - Central","description":null,"sortOrder":2147483647,"displayName":"Canada Central"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada + Central","description":null,"sortOrder":2147483647,"displayName":"Canada Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada East","name":"Canada East","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada - East","description":null,"sortOrder":2147483647,"displayName":"Canada East"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West - Central US","name":"West Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"West - Central US","description":null,"sortOrder":2147483647,"displayName":"West - Central US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + East","description":null,"sortOrder":2147483647,"displayName":"Canada East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US 2","name":"West US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"West - US 2","description":null,"sortOrder":2147483647,"displayName":"West US 2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK + US 2","description":null,"sortOrder":2147483647,"displayName":"West US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK West","name":"UK West","type":"Microsoft.Web/geoRegions","properties":{"name":"UK - West","description":null,"sortOrder":2147483647,"displayName":"UK West"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK + West","description":null,"sortOrder":2147483647,"displayName":"UK West","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK South","name":"UK South","type":"Microsoft.Web/geoRegions","properties":{"name":"UK - South","description":null,"sortOrder":2147483647,"displayName":"UK South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + South","description":null,"sortOrder":2147483647,"displayName":"UK South","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US 2 EUAP","name":"East US 2 EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"East US 2 EUAP","description":null,"sortOrder":2147483647,"displayName":"East US - 2 EUAP"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central + 2 EUAP","orgDomain":"EUAP;XENON;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central US EUAP","name":"Central US EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"Central US EUAP","description":null,"sortOrder":2147483647,"displayName":"Central - US EUAP"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea + US EUAP","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea South","name":"Korea South","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea - South","description":null,"sortOrder":2147483647,"displayName":"Korea South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea + South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea Central","name":"Korea Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea - Central","description":null,"sortOrder":2147483647,"displayName":"Korea Central"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France - South","name":"France South","type":"Microsoft.Web/geoRegions","properties":{"name":"France - South","description":null,"sortOrder":2147483647,"displayName":"France South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France + Central","description":null,"sortOrder":2147483647,"displayName":"Korea Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France Central","name":"France Central","type":"Microsoft.Web/geoRegions","properties":{"name":"France - Central","description":null,"sortOrder":2147483647,"displayName":"France Central"}}],"nextLink":null,"id":null}' + Central","description":null,"sortOrder":2147483647,"displayName":"France Central","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa North","name":"South Africa North","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa North","description":null,"sortOrder":2147483647,"displayName":"South + Africa North","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES"}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '8069' + - '11114' content-type: - application/json date: - - Mon, 25 Mar 2019 23:36:25 GMT + - Tue, 31 Dec 2019 02:37:30 GMT expires: - '-1' pragma: @@ -181,89 +128,86 @@ interactions: ParameterSetName: - --sku User-Agent: - - python/3.7.0 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.40.0 - Azure-SDK-For-Python AZURECLI/2.0.60 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=FREE&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=FREE&api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central US","name":"Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"Central - US","description":null,"sortOrder":0,"displayName":"Central US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + US","description":null,"sortOrder":0,"displayName":"Central US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North Europe","name":"North Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"North - Europe","description":null,"sortOrder":1,"displayName":"North Europe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + Europe","description":"","sortOrder":1,"displayName":"North Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West Europe","name":"West Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"West - Europe","description":null,"sortOrder":2,"displayName":"West Europe"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Southeast + Europe","description":null,"sortOrder":2,"displayName":"West Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Southeast Asia","name":"Southeast Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"Southeast - Asia","description":null,"sortOrder":3,"displayName":"Southeast Asia"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + Asia","description":"","sortOrder":3,"displayName":"Southeast Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East - Asia","description":null,"sortOrder":4,"displayName":"East Asia"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West - US","description":null,"sortOrder":5,"displayName":"West US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East - US","description":null,"sortOrder":6,"displayName":"East US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan + US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan - West","description":null,"sortOrder":7,"displayName":"Japan West"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan + West","description":null,"sortOrder":7,"displayName":"Japan West","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan East","name":"Japan East","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan - East","description":null,"sortOrder":8,"displayName":"Japan East"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + East","description":null,"sortOrder":8,"displayName":"Japan East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US 2","name":"East US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"East - US 2","description":null,"sortOrder":9,"displayName":"East US 2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North + US 2","description":"","sortOrder":9,"displayName":"East US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North Central US","name":"North Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"North Central US","description":null,"sortOrder":10,"displayName":"North Central - US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South Central US","name":"South Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"South - Central US","description":null,"sortOrder":11,"displayName":"South Central - US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil + Central US","description":"","sortOrder":11,"displayName":"South Central US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil South","name":"Brazil South","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil - South","description":null,"sortOrder":12,"displayName":"Brazil South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia + South","description":null,"sortOrder":12,"displayName":"Brazil South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia East","name":"Australia East","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia - East","description":null,"sortOrder":13,"displayName":"Australia East"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia + East","description":"","sortOrder":13,"displayName":"Australia East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia Southeast","name":"Australia Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia - Southeast","description":null,"sortOrder":14,"displayName":"Australia Southeast"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central + Southeast","description":null,"sortOrder":14,"displayName":"Australia Southeast","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central India","name":"Central India","type":"Microsoft.Web/geoRegions","properties":{"name":"Central - India","description":null,"sortOrder":2147483647,"displayName":"Central India"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + India","description":null,"sortOrder":2147483647,"displayName":"Central India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West India","name":"West India","type":"Microsoft.Web/geoRegions","properties":{"name":"West - India","description":null,"sortOrder":2147483647,"displayName":"West India"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + India","description":null,"sortOrder":2147483647,"displayName":"West India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South India","name":"South India","type":"Microsoft.Web/geoRegions","properties":{"name":"South - India","description":null,"sortOrder":2147483647,"displayName":"South India"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada + India","description":null,"sortOrder":2147483647,"displayName":"South India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada Central","name":"Canada Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada - Central","description":null,"sortOrder":2147483647,"displayName":"Canada Central"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada + Central","description":null,"sortOrder":2147483647,"displayName":"Canada Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada East","name":"Canada East","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada - East","description":null,"sortOrder":2147483647,"displayName":"Canada East"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West - Central US","name":"West Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"West - Central US","description":null,"sortOrder":2147483647,"displayName":"West - Central US"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West + East","description":null,"sortOrder":2147483647,"displayName":"Canada East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US 2","name":"West US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"West - US 2","description":null,"sortOrder":2147483647,"displayName":"West US 2"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK + US 2","description":null,"sortOrder":2147483647,"displayName":"West US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK West","name":"UK West","type":"Microsoft.Web/geoRegions","properties":{"name":"UK - West","description":null,"sortOrder":2147483647,"displayName":"UK West"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK + West","description":null,"sortOrder":2147483647,"displayName":"UK West","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK South","name":"UK South","type":"Microsoft.Web/geoRegions","properties":{"name":"UK - South","description":null,"sortOrder":2147483647,"displayName":"UK South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East + South","description":null,"sortOrder":2147483647,"displayName":"UK South","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East US 2 EUAP","name":"East US 2 EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"East US 2 EUAP","description":null,"sortOrder":2147483647,"displayName":"East US - 2 EUAP"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central + 2 EUAP","orgDomain":"EUAP;XENON;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central US EUAP","name":"Central US EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"Central US EUAP","description":null,"sortOrder":2147483647,"displayName":"Central - US EUAP"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea + US EUAP","orgDomain":"EUAP;LINUX;DSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea South","name":"Korea South","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea - South","description":null,"sortOrder":2147483647,"displayName":"Korea South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea + South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea Central","name":"Korea Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea - Central","description":null,"sortOrder":2147483647,"displayName":"Korea Central"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France - South","name":"France South","type":"Microsoft.Web/geoRegions","properties":{"name":"France - South","description":null,"sortOrder":2147483647,"displayName":"France South"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France + Central","description":null,"sortOrder":2147483647,"displayName":"Korea Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France Central","name":"France Central","type":"Microsoft.Web/geoRegions","properties":{"name":"France - Central","description":null,"sortOrder":2147483647,"displayName":"France Central"}}],"nextLink":null,"id":null}' + Central","description":null,"sortOrder":2147483647,"displayName":"France Central","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South + Africa North","name":"South Africa North","type":"Microsoft.Web/geoRegions","properties":{"name":"South + Africa North","description":null,"sortOrder":2147483647,"displayName":"South + Africa North","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES"}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '8069' + - '11114' content-type: - application/json date: - - Mon, 25 Mar 2019 23:36:26 GMT + - Tue, 31 Dec 2019 02:37:32 GMT expires: - '-1' pragma: @@ -285,51 +229,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.0 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.60 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_list-locations-free-sku-test000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 25 Mar 2019 23:36:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGV0VCQVBQOjVGTElTVDoyRExPQ0FUSU9OUzoyREZSRUU6MnwzRkI4RUU2MTU0MDQ3QkZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_scale.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_scale.yaml index 6346e23a5c7..561e1e548e4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_scale.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_scale.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:52 GMT + - Tue, 31 Dec 2019 02:28:56 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:53 GMT + - Tue, 31 Dec 2019 02:28:57 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1191' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-10-21T10:50:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 21 Oct 2019 10:50:54 GMT + - Tue, 31 Dec 2019 02:28:57 GMT expires: - '-1' pragma: @@ -169,25 +169,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json date: - - Mon, 21 Oct 2019 10:50:59 GMT + - Tue, 31 Dec 2019 02:29:04 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1192' x-powered-by: - ASP.NET status: @@ -226,25 +226,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:01 GMT + - Tue, 31 Dec 2019 02:29:06 GMT expires: - '-1' pragma: @@ -281,25 +281,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Basic","geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"D1","tier":"Shared","size":"D1","family":"D","capacity":0}}' headers: cache-control: - no-cache content-length: - - '1525' + - '1527' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:02 GMT + - Tue, 31 Dec 2019 02:29:06 GMT expires: - '-1' pragma: @@ -344,27 +344,27 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","sku":{"name":"S2","tier":"Standard","size":"S2","capacity":1},"workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","sku":{"name":"S2","tier":"Standard","size":"S2","capacity":1},"workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1569' + - '1571' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:08 GMT + - Tue, 31 Dec 2019 02:29:14 GMT etag: - - '"1D587FD71789060"' + - '"1D5BF8215AE5D20"' expires: - '-1' pragma: @@ -382,7 +382,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1186' x-powered-by: - ASP.NET status: @@ -403,25 +403,25 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1528' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:09 GMT + - Tue, 31 Dec 2019 02:29:14 GMT expires: - '-1' pragma: @@ -458,25 +458,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1528' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:12 GMT + - Tue, 31 Dec 2019 02:29:16 GMT expires: - '-1' pragma: @@ -513,25 +513,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Medium","workerSizeId":1,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Medium","currentWorkerSizeId":1,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S2","tier":"Standard","size":"S2","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1526' + - '1528' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:13 GMT + - Tue, 31 Dec 2019 02:29:17 GMT expires: - '-1' pragma: @@ -575,25 +575,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1564' + - '1566' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:17 GMT + - Tue, 31 Dec 2019 02:29:22 GMT expires: - '-1' pragma: @@ -611,7 +611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1185' x-powered-by: - ASP.NET status: @@ -632,25 +632,25 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:19 GMT + - Tue, 31 Dec 2019 02:29:23 GMT expires: - '-1' pragma: @@ -687,25 +687,25 @@ interactions: - -g -n --number-of-workers User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:21 GMT + - Tue, 31 Dec 2019 02:29:24 GMT expires: - '-1' pragma: @@ -742,25 +742,25 @@ interactions: - -g -n --number-of-workers User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:22 GMT + - Tue, 31 Dec 2019 02:29:26 GMT expires: - '-1' pragma: @@ -804,25 +804,25 @@ interactions: - -g -n --number-of-workers User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":2},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":2,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":2,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":2}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":2},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":2,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":2,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":2}}' headers: cache-control: - no-cache content-length: - - '1564' + - '1566' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:25 GMT + - Tue, 31 Dec 2019 02:29:29 GMT expires: - '-1' pragma: @@ -840,7 +840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1179' + - '1184' x-powered-by: - ASP.NET status: @@ -861,25 +861,25 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/scale-plan000002","name":"scale-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":28413,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":2,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":2,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_28413","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":2}}' + US","properties":{"serverFarmId":146890,"name":"scale-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":2,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":2,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_146890","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":2}}' headers: cache-control: - no-cache content-length: - - '1524' + - '1526' content-type: - application/json date: - - Mon, 21 Oct 2019 10:51:27 GMT + - Tue, 31 Dec 2019 02:29:30 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml index df0523eaa6b..385d1a8ab72 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:46 GMT + - Tue, 31 Dec 2019 02:29:22 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:46 GMT + - Tue, 31 Dec 2019 02:29:23 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1198' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:01:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:01:48 GMT + - Tue, 31 Dec 2019 02:29:24 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","name":"slot-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23655,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25559,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25559","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:53 GMT + - Tue, 31 Dec 2019 02:29:33 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1187' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","name":"slot-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23655,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25559,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25559","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:55 GMT + - Tue, 31 Dec 2019 02:29:34 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:55 GMT + - Tue, 31 Dec 2019 02:29:35 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","name":"slot-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23655,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_23655","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":25559,"name":"slot-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25559","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:01:56 GMT + - Tue, 31 Dec 2019 02:29:37 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '538' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:00.9933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:39.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BF228E85AAE8144EF577DD6EC291785F8D3379C5E5440E7741D824604D99E5F","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3545' + - '3547' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:19 GMT + - Tue, 31 Dec 2019 02:29:57 GMT etag: - - '"1D59A11C6C023A0"' + - '"1D5BF82270F516B"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '491' + - '497' x-powered-by: - ASP.NET status: @@ -465,22 +466,28 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/publishxml?api-version=2019-08-01 response: body: string: @@ -488,11 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:02:20 GMT + - Tue, 31 Dec 2019 02:29:59 GMT expires: - '-1' pragma: @@ -506,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' x-powered-by: - ASP.NET status: @@ -529,11 +536,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -546,7 +553,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:21 GMT + - Tue, 31 Dec 2019 02:30:00 GMT expires: - '-1' pragma: @@ -564,7 +571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11994' x-powered-by: - ASP.NET status: @@ -590,11 +597,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -607,9 +614,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:22 GMT + - Tue, 31 Dec 2019 02:30:03 GMT etag: - - '"1D59A11D3585240"' + - '"1D5BF823522EF75"' expires: - '-1' pragma: @@ -627,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1190' x-powered-by: - ASP.NET status: @@ -648,11 +655,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -665,7 +672,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:23 GMT + - Tue, 31 Dec 2019 02:30:05 GMT expires: - '-1' pragma: @@ -706,11 +713,11 @@ interactions: - -g -n --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -723,7 +730,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:23 GMT + - Tue, 31 Dec 2019 02:30:08 GMT expires: - '-1' pragma: @@ -741,7 +748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1189' x-powered-by: - ASP.NET status: @@ -762,26 +769,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:22.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:03.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BF228E85AAE8144EF577DD6EC291785F8D3379C5E5440E7741D824604D99E5F","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3538' + - '3545' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:25 GMT + - Tue, 31 Dec 2019 02:30:09 GMT etag: - - '"1D59A11D3585240"' + - '"1D5BF823522EF75"' expires: - '-1' pragma: @@ -825,26 +832,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:32.29","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__03f3","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"876A0788163347A8DEFF7327D06D58D16B7E1BAC916EA8737F50B264DC386E2D","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:14.7233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__4aec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"279AE2CC84361BDD15F2BCBF55DA872FAB4E3A427419AB24EC4612F78C770232","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3631' + - '3638' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:48 GMT + - Tue, 31 Dec 2019 02:30:33 GMT etag: - - '"1D59A11D3585240"' + - '"1D5BF823522EF75"' expires: - '-1' pragma: @@ -883,26 +890,26 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:02:22.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:03.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BF228E85AAE8144EF577DD6EC291785F8D3379C5E5440E7741D824604D99E5F","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3538' + - '3545' content-type: - application/json date: - - Wed, 13 Nov 2019 11:02:49 GMT + - Tue, 31 Dec 2019 02:30:35 GMT etag: - - '"1D59A11D3585240"' + - '"1D5BF823522EF75"' expires: - '-1' pragma: @@ -944,26 +951,26 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '546' + - '569' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:14 GMT + - Tue, 31 Dec 2019 02:30:42 GMT etag: - - '"1D59A11F238E1F5"' + - '"1D5BF824C806175"' expires: - '-1' pragma: @@ -977,7 +984,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1183' x-powered-by: - ASP.NET status: @@ -998,25 +1005,25 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T11:03:36.3264183 - https://slot-test-web000003-staging.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_11-03-24Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:31:09.3024515 + https://slot-test-web000003-staging.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-30-52Z"}}' headers: cache-control: - no-cache content-length: - - '726' + - '749' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:44 GMT + - Tue, 31 Dec 2019 02:31:14 GMT etag: - - '"1D59A11F238E1F5"' + - '"1D5BF824C806175"' expires: - '-1' pragma: @@ -1053,24 +1060,24 @@ interactions: - -g -n --repo-url --branch -s --manual-integration User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/sourcecontrols/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test","branch":"staging","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '545' + - '568' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:15 GMT + - Tue, 31 Dec 2019 02:31:44 GMT etag: - - '"1D59A11F238E1F5"' + - '"1D5BF824C806175"' expires: - '-1' pragma: @@ -1111,11 +1118,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2019-08-01 response: body: string: '' @@ -1125,13 +1132,13 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:04:20 GMT + - Tue, 31 Dec 2019 02:31:47 GMT etag: - - '"1D59A12195C4FEB"' + - '"1D5BF8272DCEFF5"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 pragma: - no-cache server: @@ -1143,7 +1150,101 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1186' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp deployment slot swap + Connection: + - keep-alive + ParameterSetName: + - -g -n -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 31 Dec 2019 02:32:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp deployment slot swap + Connection: + - keep-alive + ParameterSetName: + - -g -n -s + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 31 Dec 2019 02:32:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff x-powered-by: - ASP.NET status: @@ -1164,9 +1265,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 response: body: string: '' @@ -1176,11 +1277,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:04:37 GMT + - Tue, 31 Dec 2019 02:32:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 pragma: - no-cache server: @@ -1211,9 +1312,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 response: body: string: '' @@ -1223,11 +1324,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:04:52 GMT + - Tue, 31 Dec 2019 02:32:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 pragma: - no-cache server: @@ -1258,9 +1359,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 response: body: string: '' @@ -1270,11 +1371,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:05:07 GMT + - Tue, 31 Dec 2019 02:33:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 pragma: - no-cache server: @@ -1305,24 +1406,24 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/e09897d4-8fdb-4cb0-98bb-507d3dc3e789?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/8925a023-e99b-40a7-9db4-b1f1d5227211?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:15.9066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:05:15.95Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:12.51","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BF228E85AAE8144EF577DD6EC291785F8D3379C5E5440E7741D824604D99E5F","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:33:12.542Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3728' + - '3726' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:24 GMT + - Tue, 31 Dec 2019 02:33:21 GMT etag: - - '"1D59A123A83402B"' + - '"1D5BF82A5C4F5E0"' expires: - '-1' pragma: @@ -1361,11 +1462,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1378,7 +1479,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:25 GMT + - Tue, 31 Dec 2019 02:33:24 GMT expires: - '-1' pragma: @@ -1417,11 +1518,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -1434,7 +1535,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:28 GMT + - Tue, 31 Dec 2019 02:33:25 GMT expires: - '-1' pragma: @@ -1471,24 +1572,26 @@ interactions: - -g -n --php-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2917' + - '3084' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:30 GMT + - Tue, 31 Dec 2019 02:33:26 GMT expires: - '-1' pragma: @@ -1518,12 +1621,16 @@ interactions: false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-test-web000003", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false, - "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated", + "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1534,33 +1641,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1072' + - '1354' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --php-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3070' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:33 GMT + - Tue, 31 Dec 2019 02:33:29 GMT etag: - - '"1D59A1219F3E200"' + - '"1D5BF82733C8F20"' expires: - '-1' pragma: @@ -1578,7 +1687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1181' + - '1182' x-powered-by: - ASP.NET status: @@ -1599,26 +1708,26 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003","name":"slot-test-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:33.99","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__03f3","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"876A0788163347A8DEFF7327D06D58D16B7E1BAC916EA8737F50B264DC386E2D","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:05:15.95Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003","state":"Running","hostNames":["slot-test-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003.azurewebsites.net","slot-test-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:29.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__4aec","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"279AE2CC84361BDD15F2BCBF55DA872FAB4E3A427419AB24EC4612F78C770232","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:33:12.542Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3644' + - '3652' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:34 GMT + - Tue, 31 Dec 2019 02:33:31 GMT etag: - - '"1D59A12454A8C60"' + - '"1D5BF82B015BF8B"' expires: - '-1' pragma: @@ -1662,26 +1771,26 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:40.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__0276","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E26A825E4E40375E93C56F364257D4B83F7F0F60C3760AA55D213316FFA45338","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:36.2133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__968c","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DEC2DDCF22CF940C0100684315B747FE7BC4A1E27CE7E6CD0E38D2BB874C5816","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3595' + - '3602' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:57 GMT + - Tue, 31 Dec 2019 02:33:53 GMT etag: - - '"1D59A12454A8C60"' + - '"1D5BF82B015BF8B"' expires: - '-1' pragma: @@ -1699,7 +1808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -1720,24 +1829,26 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2921' + - '3088' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:58 GMT + - Tue, 31 Dec 2019 02:33:55 GMT expires: - '-1' pragma: @@ -1767,12 +1878,16 @@ interactions: false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$slot-test-web000003", "scmType": "None", "use32BitWorkerProcess": - true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": + true, "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": - {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": - false, "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": true, "minTlsVersion": - "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": 0}}' + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": false, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": + 0}}' headers: Accept: - application/json @@ -1783,33 +1898,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1108' + - '1390' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2928' + - '3095' content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:00 GMT + - Tue, 31 Dec 2019 02:33:57 GMT etag: - - '"1D59A124992A355"' + - '"1D5BF82B41AB300"' expires: - '-1' pragma: @@ -1827,7 +1944,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1180' x-powered-by: - ASP.NET status: @@ -1848,11 +1965,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -1865,7 +1982,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:01 GMT + - Tue, 31 Dec 2019 02:33:57 GMT expires: - '-1' pragma: @@ -1904,11 +2021,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1921,7 +2038,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:01 GMT + - Tue, 31 Dec 2019 02:33:58 GMT expires: - '-1' pragma: @@ -1939,7 +2056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11997' x-powered-by: - ASP.NET status: @@ -1962,11 +2079,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/connectionstrings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/connectionstrings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -1979,7 +2096,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:02 GMT + - Tue, 31 Dec 2019 02:33:59 GMT expires: - '-1' pragma: @@ -1997,7 +2114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11994' x-powered-by: - ASP.NET status: @@ -2023,11 +2140,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -2040,9 +2157,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:03 GMT + - Tue, 31 Dec 2019 02:34:00 GMT etag: - - '"1D59A1256E5FEA0"' + - '"1D5BF82C23A03D5"' expires: - '-1' pragma: @@ -2060,7 +2177,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1178' + - '1187' x-powered-by: - ASP.NET status: @@ -2085,11 +2202,11 @@ interactions: - -g -n --slot --configuration-source User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -2102,9 +2219,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:04 GMT + - Tue, 31 Dec 2019 02:34:00 GMT etag: - - '"1D59A12574BB84B"' + - '"1D5BF82C29CB040"' expires: - '-1' pragma: @@ -2122,7 +2239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1177' + - '1186' x-powered-by: - ASP.NET status: @@ -2143,24 +2260,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/web","name":"slot-test-web000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-test-web000003__dev","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2936' + - '3103' content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:04 GMT + - Tue, 31 Dec 2019 02:34:01 GMT expires: - '-1' pragma: @@ -2199,11 +2318,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -2216,7 +2335,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:06 GMT + - Tue, 31 Dec 2019 02:34:02 GMT expires: - '-1' pragma: @@ -2234,7 +2353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2260,11 +2379,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -2277,9 +2396,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:08 GMT + - Tue, 31 Dec 2019 02:34:04 GMT etag: - - '"1D59A1259C2ECD5"' + - '"1D5BF82C4BCEB2B"' expires: - '-1' pragma: @@ -2297,7 +2416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1179' x-powered-by: - ASP.NET status: @@ -2318,11 +2437,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2335,7 +2454,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:09 GMT + - Tue, 31 Dec 2019 02:34:04 GMT expires: - '-1' pragma: @@ -2377,11 +2496,11 @@ interactions: - -g -n --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2394,7 +2513,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:09 GMT + - Tue, 31 Dec 2019 02:34:05 GMT expires: - '-1' pragma: @@ -2412,7 +2531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1181' + - '1178' x-powered-by: - ASP.NET status: @@ -2435,11 +2554,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -2452,7 +2571,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:10 GMT + - Tue, 31 Dec 2019 02:34:06 GMT expires: - '-1' pragma: @@ -2470,7 +2589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2496,11 +2615,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -2513,9 +2632,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:11 GMT + - Tue, 31 Dec 2019 02:34:08 GMT etag: - - '"1D59A125BF26A00"' + - '"1D5BF82C6CBDB00"' expires: - '-1' pragma: @@ -2554,11 +2673,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2571,7 +2690,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:11 GMT + - Tue, 31 Dec 2019 02:34:08 GMT expires: - '-1' pragma: @@ -2613,11 +2732,11 @@ interactions: - -g -n -t --slot --settings --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2630,7 +2749,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:06:12 GMT + - Tue, 31 Dec 2019 02:34:09 GMT expires: - '-1' pragma: @@ -2673,11 +2792,11 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/slotsswap?api-version=2019-08-01 response: body: string: '' @@ -2687,13 +2806,13 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:06:16 GMT + - Tue, 31 Dec 2019 02:34:11 GMT etag: - - '"1D59A12454A8C60"' + - '"1D5BF82B015BF8B"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 pragma: - no-cache server: @@ -2705,7 +2824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1187' x-powered-by: - ASP.NET status: @@ -2726,9 +2845,9 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 response: body: string: '' @@ -2738,11 +2857,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:06:32 GMT + - Tue, 31 Dec 2019 02:34:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 pragma: - no-cache server: @@ -2773,9 +2892,9 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 response: body: string: '' @@ -2785,11 +2904,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:06:48 GMT + - Tue, 31 Dec 2019 02:34:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 pragma: - no-cache server: @@ -2820,9 +2939,9 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 response: body: string: '' @@ -2832,11 +2951,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:07:04 GMT + - Tue, 31 Dec 2019 02:34:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 pragma: - no-cache server: @@ -2867,24 +2986,24 @@ interactions: - -g -n --slot --target-slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/14570755-70df-44ab-b41d-79ebca910ab4?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/operationresults/7225363a-08e9-47c5-b007-3f0c124d8bec?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:05.2066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__0276","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E26A825E4E40375E93C56F364257D4B83F7F0F60C3760AA55D213316FFA45338","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:11.1233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__968c","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DEC2DDCF22CF940C0100684315B747FE7BC4A1E27CE7E6CD0E38D2BB874C5816","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:35:11.147Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3728' + - '3730' content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:20 GMT + - Tue, 31 Dec 2019 02:35:13 GMT etag: - - '"1D59A127BA91B6B"' + - '"1D5BF82EC77EB35"' expires: - '-1' pragma: @@ -2923,11 +3042,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -2940,7 +3059,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:20 GMT + - Tue, 31 Dec 2019 02:35:16 GMT expires: - '-1' pragma: @@ -2979,11 +3098,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -2996,7 +3115,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:21 GMT + - Tue, 31 Dec 2019 02:35:18 GMT expires: - '-1' pragma: @@ -3035,11 +3154,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -3052,7 +3171,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:22 GMT + - Tue, 31 Dec 2019 02:35:20 GMT expires: - '-1' pragma: @@ -3070,7 +3189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -3091,11 +3210,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -3108,7 +3227,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:23 GMT + - Tue, 31 Dec 2019 02:35:20 GMT expires: - '-1' pragma: @@ -3147,11 +3266,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -3164,7 +3283,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:24 GMT + - Tue, 31 Dec 2019 02:35:22 GMT expires: - '-1' pragma: @@ -3182,7 +3301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -3203,11 +3322,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -3220,7 +3339,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:25 GMT + - Tue, 31 Dec 2019 02:35:24 GMT expires: - '-1' pragma: @@ -3259,11 +3378,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/connectionstrings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/connectionstrings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"West @@ -3276,7 +3395,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:26 GMT + - Tue, 31 Dec 2019 02:35:26 GMT expires: - '-1' pragma: @@ -3315,11 +3434,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-test-web000003","type":"Microsoft.Web/sites","location":"West @@ -3332,7 +3451,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:27 GMT + - Tue, 31 Dec 2019 02:35:26 GMT expires: - '-1' pragma: @@ -3369,27 +3488,27 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging","name":"slot-test-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:05.2066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__0276","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E26A825E4E40375E93C56F364257D4B83F7F0F60C3760AA55D213316FFA45338","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:16.9966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' + US","properties":{"name":"slot-test-web000003(staging)","state":"Running","hostNames":["slot-test-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-staging.azurewebsites.net","slot-test-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:11.1233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003__968c","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DEC2DDCF22CF940C0100684315B747FE7BC4A1E27CE7E6CD0E38D2BB874C5816","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:35:11.147Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West + US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:11.4433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BF228E85AAE8144EF577DD6EC291785F8D3379C5E5440E7741D824604D99E5F","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:35:11.147Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '7481' + - '7485' content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:29 GMT + - Tue, 31 Dec 2019 02:35:27 GMT etag: - - '"1D59A125EECD84B"' + - '"1D5BF82C8E57935"' expires: - '-1' pragma: @@ -3428,11 +3547,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/staging?api-version=2019-08-01 response: body: string: '' @@ -3442,9 +3561,9 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:07:33 GMT + - Tue, 31 Dec 2019 02:35:32 GMT etag: - - '"1D59A127BA91B6B"' + - '"1D5BF82EC77EB35"' expires: - '-1' pragma: @@ -3479,26 +3598,26 @@ interactions: - -g -n --slot --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev","name":"slot-test-web000003/dev","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:16.9966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E1F77112D9004A0AC7DC5A282E66AE9900C7EF94FEFFDA1D9843158291A0D848","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:07:05.224Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-test-web000003(dev)","state":"Running","hostNames":["slot-test-web000003-dev.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-test-web000003","repositorySiteName":"slot-test-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-test-web000003-dev.azurewebsites.net","slot-test-web000003-dev.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-test-web000003-dev.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-test-web000003-dev.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:11.4433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-test-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BF228E85AAE8144EF577DD6EC291785F8D3379C5E5440E7741D824604D99E5F","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-test-web000003-dev.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:35:11.147Z","sourceSlotName":"staging","destinationSlotName":"dev"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3686' + - '3688' content-type: - application/json date: - - Wed, 13 Nov 2019 11:07:35 GMT + - Tue, 31 Dec 2019 02:35:34 GMT etag: - - '"1D59A125EECD84B"' + - '"1D5BF82C8E57935"' expires: - '-1' pragma: @@ -3537,11 +3656,11 @@ interactions: - -g -n --slot --keep-dns-registration --keep-empty-plan --keep-metrics User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-test-web000003/slots/dev?deleteMetrics=false&deleteEmptyServerFarm=false&api-version=2019-08-01 response: body: string: '' @@ -3551,9 +3670,9 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:07:39 GMT + - Tue, 31 Dec 2019 02:35:39 GMT etag: - - '"1D59A125EECD84B"' + - '"1D5BF82C8E57935"' expires: - '-1' pragma: @@ -3567,7 +3686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14991' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml index 20fe9ae0146..dd81d62c2db 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_slot_swap.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:23Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:30 GMT + - Tue, 31 Dec 2019 02:32:26 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:31 GMT + - Tue, 31 Dec 2019 02:32:28 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1191' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:23Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:03:32 GMT + - Tue, 31 Dec 2019 02:32:28 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","name":"slot-swap-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":40798,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_40798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":29816,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-057_29816","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:40 GMT + - Tue, 31 Dec 2019 02:32:38 GMT expires: - '-1' pragma: @@ -226,16 +226,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","name":"slot-swap-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":40798,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_40798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":29816,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-057_29816","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:41 GMT + - Tue, 31 Dec 2019 02:32:40 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:43 GMT + - Tue, 31 Dec 2019 02:32:40 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1195' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","name":"slot-swap-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":40798,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_40798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":29816,"name":"slot-swap-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-057_29816","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:43 GMT + - Tue, 31 Dec 2019 02:32:41 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '538' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003","name":"slot-swap-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:48.293","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B95DD9E267254A5712C9B70CE4B23B60AAB41D9FAC1C8C07BC511F5E784DE31","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-057.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:44.627","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"596897C016D0E8A12833618A06359AF53D27823BE9F4792A537A26906CC0147E","kind":"app","inboundIpAddress":"13.91.40.166","possibleInboundIpAddresses":"13.91.40.166","outboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","possibleOutboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-057","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3543' + - '3525' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:05 GMT + - Tue, 31 Dec 2019 02:33:01 GMT etag: - - '"1D59A1206A08690"' + - '"1D5BF82956E1190"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '496' x-powered-by: - ASP.NET status: @@ -465,22 +466,28 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/publishxml?api-version=2019-08-01 response: body: string: @@ -488,11 +495,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:04:05 GMT + - Tue, 31 Dec 2019 02:33:03 GMT expires: - '-1' pragma: @@ -506,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -529,11 +536,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -546,7 +553,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:06 GMT + - Tue, 31 Dec 2019 02:33:04 GMT expires: - '-1' pragma: @@ -590,11 +597,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -607,9 +614,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:08 GMT + - Tue, 31 Dec 2019 02:33:06 GMT etag: - - '"1D59A12125AD850"' + - '"1D5BF82A1F04730"' expires: - '-1' pragma: @@ -627,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1191' x-powered-by: - ASP.NET status: @@ -648,11 +655,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -665,7 +672,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:09 GMT + - Tue, 31 Dec 2019 02:33:06 GMT expires: - '-1' pragma: @@ -706,11 +713,11 @@ interactions: - -g -n --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -723,7 +730,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:09 GMT + - Tue, 31 Dec 2019 02:33:06 GMT expires: - '-1' pragma: @@ -741,7 +748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1190' x-powered-by: - ASP.NET status: @@ -762,26 +769,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003","name":"slot-swap-web000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:08.533","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B95DD9E267254A5712C9B70CE4B23B60AAB41D9FAC1C8C07BC511F5E784DE31","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003","state":"Running","hostNames":["slot-swap-web000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-057.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003.azurewebsites.net","slot-swap-web000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:06.083","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"596897C016D0E8A12833618A06359AF53D27823BE9F4792A537A26906CC0147E","kind":"app","inboundIpAddress":"13.91.40.166","possibleInboundIpAddresses":"13.91.40.166","outboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","possibleOutboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-057","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3541' + - '3523' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:10 GMT + - Tue, 31 Dec 2019 02:33:08 GMT etag: - - '"1D59A12125AD850"' + - '"1D5BF82A1F04730"' expires: - '-1' pragma: @@ -825,26 +832,26 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging","name":"slot-swap-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:15.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003__aeaf","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B2B8B48A1BA429E2651C817462BBBB00E5218B8B83E6528A884AE84E562D7648","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-057.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:14.313","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003__0f6e","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"127C30B0C3C884CC97D43C6BA39BB3703902A5AB1E1ABAFD481DC3DC296A5911","kind":"app","inboundIpAddress":"13.91.40.166","possibleInboundIpAddresses":"13.91.40.166","outboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","possibleOutboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-057","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3633' + - '3616' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:32 GMT + - Tue, 31 Dec 2019 02:33:32 GMT etag: - - '"1D59A12125AD850"' + - '"1D5BF82A1F04730"' expires: - '-1' pragma: @@ -862,7 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -885,11 +892,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -902,7 +909,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:34 GMT + - Tue, 31 Dec 2019 02:33:32 GMT expires: - '-1' pragma: @@ -946,11 +953,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -963,9 +970,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:37 GMT + - Tue, 31 Dec 2019 02:33:34 GMT etag: - - '"1D59A1223711500"' + - '"1D5BF82B2B72B60"' expires: - '-1' pragma: @@ -983,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1178' + - '1181' x-powered-by: - ASP.NET status: @@ -1004,11 +1011,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1021,7 +1028,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:37 GMT + - Tue, 31 Dec 2019 02:33:34 GMT expires: - '-1' pragma: @@ -1063,11 +1070,11 @@ interactions: - -g -n --slot-settings --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1080,7 +1087,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:38 GMT + - Tue, 31 Dec 2019 02:33:35 GMT expires: - '-1' pragma: @@ -1098,7 +1105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1177' + - '1180' x-powered-by: - ASP.NET status: @@ -1123,11 +1130,11 @@ interactions: - -g -n -s --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/applySlotConfig?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/applySlotConfig?api-version=2019-08-01 response: body: string: '' @@ -1137,9 +1144,9 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:04:41 GMT + - Tue, 31 Dec 2019 02:33:37 GMT etag: - - '"1D59A1225D60710"' + - '"1D5BF82B4E41D80"' expires: - '-1' pragma: @@ -1153,7 +1160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1188' x-powered-by: - ASP.NET status: @@ -1176,11 +1183,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1193,7 +1200,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:43 GMT + - Tue, 31 Dec 2019 02:33:38 GMT expires: - '-1' pragma: @@ -1211,7 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1232,11 +1239,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1249,7 +1256,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:44 GMT + - Tue, 31 Dec 2019 02:33:39 GMT expires: - '-1' pragma: @@ -1290,11 +1297,11 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/slotsswap?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/slotsswap?api-version=2019-08-01 response: body: string: '' @@ -1304,13 +1311,13 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:04:45 GMT + - Tue, 31 Dec 2019 02:33:42 GMT etag: - - '"1D59A12125AD850"' + - '"1D5BF82A1F04730"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/3404359b-1c3e-4fee-aa61-e170618f6ef7?api-version=2019-08-01 pragma: - no-cache server: @@ -1322,54 +1329,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp deployment slot swap - Connection: - - keep-alive - ParameterSetName: - - -g -n -s - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 13 Nov 2019 11:05:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff + - '1190' x-powered-by: - ASP.NET status: @@ -1390,9 +1350,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/3404359b-1c3e-4fee-aa61-e170618f6ef7?api-version=2019-08-01 response: body: string: '' @@ -1402,11 +1362,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:05:16 GMT + - Tue, 31 Dec 2019 02:33:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/3404359b-1c3e-4fee-aa61-e170618f6ef7?api-version=2019-08-01 pragma: - no-cache server: @@ -1437,9 +1397,9 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/3404359b-1c3e-4fee-aa61-e170618f6ef7?api-version=2019-08-01 response: body: string: '' @@ -1449,11 +1409,11 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:05:32 GMT + - Tue, 31 Dec 2019 02:34:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/3404359b-1c3e-4fee-aa61-e170618f6ef7?api-version=2019-08-01 pragma: - no-cache server: @@ -1484,24 +1444,24 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/5505fca6-910f-4566-b734-9099c7cc675f?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/operationresults/3404359b-1c3e-4fee-aa61-e170618f6ef7?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging","name":"slot-swap-web000003/staging","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:34.613","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4B95DD9E267254A5712C9B70CE4B23B60AAB41D9FAC1C8C07BC511F5E784DE31","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:05:34.659Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"slot-swap-web000003(staging)","state":"Running","hostNames":["slot-swap-web000003-staging.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-057.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-swap-web000003","repositorySiteName":"slot-swap-web000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-swap-web000003-staging.azurewebsites.net","slot-swap-web000003-staging.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-swap-web000003-staging.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-swap-web000003-staging.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-swap-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:24.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-swap-web000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"596897C016D0E8A12833618A06359AF53D27823BE9F4792A537A26906CC0147E","kind":"app","inboundIpAddress":"13.91.40.166","possibleInboundIpAddresses":"13.91.40.166","outboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","possibleOutboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-057","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-swap-web000003-staging.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:34:24.409Z","sourceSlotName":"staging","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3727' + - '3708' content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:48 GMT + - Tue, 31 Dec 2019 02:34:30 GMT etag: - - '"1D59A1245A99C50"' + - '"1D5BF82D099ED20"' expires: - '-1' pragma: @@ -1540,11 +1500,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1557,7 +1517,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:49 GMT + - Tue, 31 Dec 2019 02:34:31 GMT expires: - '-1' pragma: @@ -1575,7 +1535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -1596,11 +1556,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1613,7 +1573,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:51 GMT + - Tue, 31 Dec 2019 02:34:32 GMT expires: - '-1' pragma: @@ -1652,11 +1612,11 @@ interactions: - -g -n -s --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/resetSlotConfig?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/resetSlotConfig?api-version=2019-08-01 response: body: string: '' @@ -1666,9 +1626,9 @@ interactions: content-length: - '0' date: - - Wed, 13 Nov 2019 11:05:52 GMT + - Tue, 31 Dec 2019 02:34:34 GMT etag: - - '"1D59A1225F61230"' + - '"1D5BF82B5031730"' expires: - '-1' pragma: @@ -1682,7 +1642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1193' x-powered-by: - ASP.NET status: @@ -1705,11 +1665,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/slots/staging/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -1722,7 +1682,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:55 GMT + - Tue, 31 Dec 2019 02:34:35 GMT expires: - '-1' pragma: @@ -1761,11 +1721,11 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-swap-web000003/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"slot-swap-web000003","type":"Microsoft.Web/sites","location":"West @@ -1778,7 +1738,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:05:56 GMT + - Tue, 31 Dec 2019 02:34:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml index 609be3763b1..e79362729e4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl.yaml @@ -13,19 +13,15 @@ interactions: ParameterSetName: - -g -n --sku --tags User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-06T00:10:14Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:58Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:16 GMT -======= - - Wed, 13 Nov 2019 11:03:01 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:23 GMT expires: - '-1' pragma: @@ -71,17 +63,12 @@ interactions: ParameterSetName: - -g -n --sku --tags User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -93,11 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:17 GMT -======= - - Wed, 13 Nov 2019 11:03:03 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:25 GMT expires: - '-1' pragma: @@ -115,11 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - '1196' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -139,19 +118,15 @@ interactions: ParameterSetName: - -g -n --sku --tags User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-06T00:10:14Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:58Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:20Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -160,11 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:16 GMT -======= - - Wed, 13 Nov 2019 11:03:03 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:25 GMT expires: - '-1' pragma: @@ -198,27 +169,17 @@ interactions: ParameterSetName: - -g -n --sku --tags User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":42815,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42815","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -227,11 +188,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:21 GMT -======= - - Wed, 13 Nov 2019 11:03:12 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:32 GMT expires: - '-1' pragma: @@ -249,11 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1180' ->>>>>>> Re-record test for app service + - '1181' x-powered-by: - ASP.NET status: @@ -273,27 +226,17 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":42815,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42815","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -302,11 +245,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:21 GMT -======= - - Wed, 13 Nov 2019 11:03:14 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:34 GMT expires: - '-1' pragma: @@ -342,27 +281,17 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":42815,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42815","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -371,11 +300,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:22 GMT -======= - - Wed, 13 Nov 2019 11:03:16 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:35 GMT expires: - '-1' pragma: @@ -416,17 +341,12 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -438,11 +358,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:23 GMT -======= - - Wed, 13 Nov 2019 11:03:16 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:36 GMT expires: - '-1' pragma: @@ -460,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1191' x-powered-by: - ASP.NET status: @@ -480,27 +396,17 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22650,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_22650","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","tags":{"plan":"plan1"},"properties":{"serverFarmId":22827,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22827","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service + US","tags":{"plan":"plan1"},"properties":{"serverFarmId":42815,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":{"plan":"plan1"},"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42815","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -509,11 +415,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:24 GMT -======= - - Wed, 13 Nov 2019 11:03:17 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:32:37 GMT expires: - '-1' pragma: @@ -558,46 +460,27 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:26.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:43.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3516' + - '3527' content-type: - application/json date: - - Fri, 06 Dec 2019 00:10:42 GMT + - Tue, 31 Dec 2019 02:33:01 GMT etag: - - '"1D5ABC9903890A0"' -======= - - '3521' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:03:39 GMT - etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -615,7 +498,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '497' x-powered-by: - ASP.NET status: @@ -639,41 +522,27 @@ interactions: ParameterSetName: - -g -n --plan --tags User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-033dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="web-ssl-test000003\$web-ssl-test000003" userPWD="JbrmWnSL8obiXBqH9ZaKkf7YhZ5gduvZm262lPdGdy3hYxoghvtG1TLYSCqD" destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -681,15 +550,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:42 GMT -======= - - Wed, 13 Nov 2019 11:03:40 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:02 GMT expires: - '-1' pragma: @@ -703,11 +568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11999' -======= - - '11996' ->>>>>>> Re-record test for app service + - '11995' x-powered-by: - ASP.NET status: @@ -727,46 +588,27 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:43.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:42 GMT - etag: - - '"1D5ABC9903890A0"' -======= - '3524' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:42 GMT + - Tue, 31 Dec 2019 02:33:04 GMT etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -802,46 +644,27 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:43.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:43 GMT - etag: - - '"1D5ABC9903890A0"' -======= - '3524' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:43 GMT + - Tue, 31 Dec 2019 02:33:05 GMT etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -882,17 +705,12 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -907,11 +725,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:44 GMT -======= - - Wed, 13 Nov 2019 11:03:47 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:10 GMT expires: - '-1' pragma: @@ -932,11 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1190' ->>>>>>> Re-record test for app service + - '1188' x-powered-by: - ASP.NET status: @@ -956,46 +766,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:43.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:45 GMT - etag: - - '"1D5ABC9903890A0"' -======= - '3524' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:48 GMT + - Tue, 31 Dec 2019 02:33:11 GMT etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -1031,46 +822,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:43.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:46 GMT - etag: - - '"1D5ABC9903890A0"' -======= - '3524' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:49 GMT + - Tue, 31 Dec 2019 02:33:12 GMT etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -1110,41 +882,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-033dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="web-ssl-test000003\$web-ssl-test000003" userPWD="JbrmWnSL8obiXBqH9ZaKkf7YhZ5gduvZm262lPdGdy3hYxoghvtG1TLYSCqD" destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1152,15 +910,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:48 GMT -======= - - Wed, 13 Nov 2019 11:03:50 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:13 GMT expires: - '-1' pragma: @@ -1174,11 +928,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11999' -======= - - '11997' ->>>>>>> Re-record test for app service + - '11994' x-powered-by: - ASP.NET status: @@ -1198,46 +948,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:43.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:48 GMT - etag: - - '"1D5ABC9903890A0"' -======= - '3524' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:51 GMT + - Tue, 31 Dec 2019 02:33:14 GMT etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -1273,46 +1004,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:27.37","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:22.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:43.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:49 GMT - etag: - - '"1D5ABC9903890A0"' -======= - '3524' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:52 GMT + - Tue, 31 Dec 2019 02:33:15 GMT etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -1348,17 +1060,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -1373,11 +1080,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:49 GMT -======= - - Wed, 13 Nov 2019 11:03:53 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:16 GMT expires: - '-1' pragma: @@ -1413,17 +1116,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings/web-ssl-test000003.azurewebsites.net","name":"web-ssl-test000003/web-ssl-test000003.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West @@ -1436,15 +1134,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:49 GMT + - Tue, 31 Dec 2019 02:33:18 GMT etag: - - '"1D5ABC9903890A0"' -======= - - Wed, 13 Nov 2019 11:03:53 GMT - etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -1488,46 +1180,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:21.817","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3561' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:52 GMT - etag: - - '"1D5ABC9903890A0"' -======= - - '3566' + - '3567' content-type: - application/json date: - - Wed, 13 Nov 2019 11:03:57 GMT + - Tue, 31 Dec 2019 02:33:22 GMT etag: - - '"1D59A11F6F90215"' ->>>>>>> Re-record test for app service + - '"1D5BF82948697C0"' expires: - '-1' pragma: @@ -1545,11 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '499' -======= - - '498' ->>>>>>> Re-record test for app service + - '497' x-powered-by: - ASP.NET status: @@ -1569,46 +1238,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:21.817","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3559' + - '3565' content-type: - application/json date: - - Fri, 06 Dec 2019 00:10:52 GMT + - Tue, 31 Dec 2019 02:33:23 GMT etag: - - '"1D5ABC99EB6FE6B"' -======= - - '3564' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:03:59 GMT - etag: - - '"1D59A120B7D1555"' ->>>>>>> Re-record test for app service + - '"1D5BF82AB511890"' expires: - '-1' pragma: @@ -1648,41 +1298,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-033dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="web-ssl-test000003\$web-ssl-test000003" userPWD="JbrmWnSL8obiXBqH9ZaKkf7YhZ5gduvZm262lPdGdy3hYxoghvtG1TLYSCqD" destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1690,15 +1326,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:53 GMT -======= - - Wed, 13 Nov 2019 11:04:00 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:24 GMT expires: - '-1' pragma: @@ -1712,7 +1344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -1732,46 +1364,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:21.817","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3559' + - '3565' content-type: - application/json date: - - Fri, 06 Dec 2019 00:10:55 GMT + - Tue, 31 Dec 2019 02:33:26 GMT etag: - - '"1D5ABC99EB6FE6B"' -======= - - '3564' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:04:01 GMT - etag: - - '"1D59A120B7D1555"' ->>>>>>> Re-record test for app service + - '"1D5BF82AB511890"' expires: - '-1' pragma: @@ -1807,46 +1420,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:21.817","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3559' + - '3565' content-type: - application/json date: - - Fri, 06 Dec 2019 00:10:56 GMT + - Tue, 31 Dec 2019 02:33:26 GMT etag: - - '"1D5ABC99EB6FE6B"' -======= - - '3564' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:04:03 GMT - etag: - - '"1D59A120B7D1555"' ->>>>>>> Re-record test for app service + - '"1D5BF82AB511890"' expires: - '-1' pragma: @@ -1886,41 +1480,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-033dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="web-ssl-test000003\$web-ssl-test000003" userPWD="JbrmWnSL8obiXBqH9ZaKkf7YhZ5gduvZm262lPdGdy3hYxoghvtG1TLYSCqD" destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1928,15 +1508,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:56 GMT -======= - - Wed, 13 Nov 2019 11:04:04 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:28 GMT expires: - '-1' pragma: @@ -1950,7 +1526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11994' x-powered-by: - ASP.NET status: @@ -1970,46 +1546,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:21.817","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3559' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:56 GMT - etag: - - '"1D5ABC99EB6FE6B"' -======= - - '3564' + - '3565' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:05 GMT + - Tue, 31 Dec 2019 02:33:30 GMT etag: - - '"1D59A120B7D1555"' ->>>>>>> Re-record test for app service + - '"1D5BF82AB511890"' expires: - '-1' pragma: @@ -2045,46 +1602,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:10:51.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:57.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:21.817","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3559' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:10:56 GMT - etag: - - '"1D5ABC99EB6FE6B"' -======= - - '3564' + - '3565' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:06 GMT + - Tue, 31 Dec 2019 02:33:30 GMT etag: - - '"1D59A120B7D1555"' ->>>>>>> Re-record test for app service + - '"1D5BF82AB511890"' expires: - '-1' pragma: @@ -2120,17 +1658,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -2145,11 +1678,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:57 GMT -======= - - Wed, 13 Nov 2019 11:04:06 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:31 GMT expires: - '-1' pragma: @@ -2185,17 +1714,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings/web-ssl-test000003.azurewebsites.net","name":"web-ssl-test000003/web-ssl-test000003.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West @@ -2208,15 +1732,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:10:57 GMT + - Tue, 31 Dec 2019 02:33:31 GMT etag: - - '"1D5ABC99EB6FE6B"' -======= - - Wed, 13 Nov 2019 11:04:07 GMT - etag: - - '"1D59A120B7D1555"' ->>>>>>> Re-record test for app service + - '"1D5BF82AB511890"' expires: - '-1' pragma: @@ -2259,46 +1777,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3516' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:11:01 GMT - etag: - - '"1D5ABC99EB6FE6B"' -======= - - '3526' + - '3527' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:10 GMT + - Tue, 31 Dec 2019 02:33:35 GMT etag: - - '"1D59A120B7D1555"' ->>>>>>> Re-record test for app service + - '"1D5BF82AB511890"' expires: - '-1' pragma: @@ -2316,11 +1815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '499' -======= - - '497' ->>>>>>> Re-record test for app service + - '496' x-powered-by: - ASP.NET status: @@ -2340,46 +1835,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' + - '3525' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:02 GMT + - Tue, 31 Dec 2019 02:33:37 GMT etag: - - '"1D5ABC9A44725C0"' -======= - - '3524' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:04:11 GMT - etag: - - '"1D59A1212E3352B"' ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -2419,41 +1895,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-033dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="web-ssl-test000003\$web-ssl-test000003" userPWD="JbrmWnSL8obiXBqH9ZaKkf7YhZ5gduvZm262lPdGdy3hYxoghvtG1TLYSCqD" destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2461,15 +1923,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:11:03 GMT -======= - - Wed, 13 Nov 2019 11:04:12 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:39 GMT expires: - '-1' pragma: @@ -2483,11 +1941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11999' -======= - '11995' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -2507,46 +1961,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' + - '3525' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:03 GMT + - Tue, 31 Dec 2019 02:33:40 GMT etag: - - '"1D5ABC9A44725C0"' -======= - - '3524' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:04:13 GMT - etag: - - '"1D59A1212E3352B"' ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -2582,46 +2017,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:11:05 GMT - etag: - - '"1D5ABC9A44725C0"' -======= - - '3524' + - '3525' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:15 GMT + - Tue, 31 Dec 2019 02:33:41 GMT etag: - - '"1D59A1212E3352B"' ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -2661,41 +2077,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-033dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="web-ssl-test000003\$web-ssl-test000003" userPWD="JbrmWnSL8obiXBqH9ZaKkf7YhZ5gduvZm262lPdGdy3hYxoghvtG1TLYSCqD" destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2703,15 +2105,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:11:04 GMT -======= - - Wed, 13 Nov 2019 11:04:16 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:42 GMT expires: - '-1' pragma: @@ -2725,11 +2123,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11999' -======= - - '11996' ->>>>>>> Re-record test for app service + - '11997' x-powered-by: - ASP.NET status: @@ -2749,17 +2143,12 @@ interactions: ParameterSetName: - -g --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -2774,11 +2163,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:11:05 GMT -======= - - Wed, 13 Nov 2019 11:04:17 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:43 GMT expires: - '-1' pragma: @@ -2816,17 +2201,12 @@ interactions: ParameterSetName: - -g --certificate-thumbprint User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2019-08-01 response: body: string: '' @@ -2836,11 +2216,7 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:11:06 GMT -======= - - Wed, 13 Nov 2019 11:04:32 GMT ->>>>>>> Re-record test for app service + - Tue, 31 Dec 2019 02:33:47 GMT expires: - '-1' pragma: @@ -2854,11 +2230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD - - '14999' -======= - - '14996' ->>>>>>> Re-record test for app service + - '14995' x-powered-by: - ASP.NET status: @@ -2878,46 +2250,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:11:06 GMT - etag: - - '"1D5ABC9A44725C0"' -======= - - '3524' + - '3525' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:34 GMT + - Tue, 31 Dec 2019 02:33:48 GMT etag: - - '"1D59A1212E3352B"' ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -2953,46 +2306,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:11:07 GMT - etag: - - '"1D5ABC9A44725C0"' -======= - - '3524' + - '3525' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:34 GMT + - Tue, 31 Dec 2019 02:33:48 GMT etag: - - '"1D59A1212E3352B"' ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -3032,41 +2366,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-033dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="web-ssl-test000003\$web-ssl-test000003" userPWD="JbrmWnSL8obiXBqH9ZaKkf7YhZ5gduvZm262lPdGdy3hYxoghvtG1TLYSCqD" destinationAppUrl="http://web-ssl-test000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -3074,12 +2394,11 @@ interactions: cache-control: - no-cache content-length: - - '1114' + - '1678' content-type: - application/xml date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:11:07 GMT + - Tue, 31 Dec 2019 02:33:49 GMT expires: - '-1' pragma: @@ -3093,7 +2412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -3113,27 +2432,27 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3514' + - '3525' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:08 GMT + - Tue, 31 Dec 2019 02:33:51 GMT etag: - - '"1D5ABC9A44725C0"' + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -3176,30 +2495,27 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:11.5933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:55.29","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3697' + - '3702' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:28 GMT + - Tue, 31 Dec 2019 02:34:13 GMT etag: - - '"1D5ABC9A44725C0"' -======= - - Wed, 13 Nov 2019 11:04:36 GMT ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -3217,7 +2533,6 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - '499' x-powered-by: - ASP.NET @@ -3238,27 +2553,27 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3514' + - '3525' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:28 GMT + - Tue, 31 Dec 2019 02:34:14 GMT etag: - - '"1D5ABC9A44725C0"' + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -3294,27 +2609,27 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:12.2633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:55.727","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3695' + - '3701' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:31 GMT + - Tue, 31 Dec 2019 02:34:14 GMT etag: - - '"1D5ABC9AAFABE75"' + - '"1D5BF82BF8759F0"' expires: - '-1' pragma: @@ -3355,12 +2670,12 @@ interactions: ParameterSetName: - -g -n --certificate-file --certificate-password -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -3375,7 +2690,7 @@ interactions: content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:32 GMT + - Tue, 31 Dec 2019 02:34:19 GMT expires: - '-1' pragma: @@ -3396,7 +2711,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1181' x-powered-by: - ASP.NET status: @@ -3416,27 +2731,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:12.2633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:55.727","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3695' + - '3701' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:34 GMT + - Tue, 31 Dec 2019 02:34:21 GMT etag: - - '"1D5ABC9AAFABE75"' + - '"1D5BF82BF8759F0"' expires: - '-1' pragma: @@ -3472,27 +2787,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:12.2633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:55.727","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3695' + - '3701' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:34 GMT + - Tue, 31 Dec 2019 02:34:22 GMT etag: - - '"1D5ABC9AAFABE75"' + - '"1D5BF82BF8759F0"' expires: - '-1' pragma: @@ -3532,30 +2847,30 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2019-08-01 response: body: string: @@ -3567,7 +2882,7 @@ interactions: content-type: - application/xml date: - - Fri, 06 Dec 2019 00:11:34 GMT + - Tue, 31 Dec 2019 02:34:23 GMT expires: - '-1' pragma: @@ -3581,7 +2896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' x-powered-by: - ASP.NET status: @@ -3601,27 +2916,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:12.2633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:55.727","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3695' + - '3701' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:35 GMT + - Tue, 31 Dec 2019 02:34:24 GMT etag: - - '"1D5ABC9AAFABE75"' + - '"1D5BF82BF8759F0"' expires: - '-1' pragma: @@ -3657,27 +2972,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3514' + - '3525' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:35 GMT + - Tue, 31 Dec 2019 02:34:25 GMT etag: - - '"1D5ABC9A44725C0"' + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -3713,12 +3028,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -3733,7 +3048,7 @@ interactions: content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:35 GMT + - Tue, 31 Dec 2019 02:34:26 GMT expires: - '-1' pragma: @@ -3769,12 +3084,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/hostNameBindings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/hostNameBindings?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/hostNameBindings/web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","name":"web-ssl-test000003/slot-ssl-test000004/web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West @@ -3787,9 +3102,9 @@ interactions: content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:36 GMT + - Tue, 31 Dec 2019 02:34:28 GMT etag: - - '"1D5ABC9AAFABE75"' + - '"1D5BF82BF8759F0"' expires: - '-1' pragma: @@ -3833,27 +3148,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:37.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:30.443","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3769' + - '3775' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:37 GMT + - Tue, 31 Dec 2019 02:34:32 GMT etag: - - '"1D5ABC9AAFABE75"' + - '"1D5BF82BF8759F0"' expires: - '-1' pragma: @@ -3871,7 +3186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -3891,27 +3206,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:37.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:30.443","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3767' + - '3773' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:38 GMT + - Tue, 31 Dec 2019 02:34:32 GMT etag: - - '"1D5ABC9BA261B15"' + - '"1D5BF82D43897B0"' expires: - '-1' pragma: @@ -3951,30 +3266,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2019-08-01 response: body: string: @@ -3986,7 +3301,7 @@ interactions: content-type: - application/xml date: - - Fri, 06 Dec 2019 00:11:39 GMT + - Tue, 31 Dec 2019 02:34:34 GMT expires: - '-1' pragma: @@ -4000,7 +3315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1186' x-powered-by: - ASP.NET status: @@ -4020,27 +3335,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:37.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:30.443","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3767' + - '3773' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:39 GMT + - Tue, 31 Dec 2019 02:34:36 GMT etag: - - '"1D5ABC9BA261B15"' + - '"1D5BF82D43897B0"' expires: - '-1' pragma: @@ -4076,27 +3391,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:37.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:30.443","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3767' + - '3773' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:39 GMT + - Tue, 31 Dec 2019 02:34:37 GMT etag: - - '"1D5ABC9BA261B15"' + - '"1D5BF82D43897B0"' expires: - '-1' pragma: @@ -4136,30 +3451,30 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2019-08-01 response: body: string: @@ -4171,7 +3486,7 @@ interactions: content-type: - application/xml date: - - Fri, 06 Dec 2019 00:11:40 GMT + - Tue, 31 Dec 2019 02:34:38 GMT expires: - '-1' pragma: @@ -4185,7 +3500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' x-powered-by: - ASP.NET status: @@ -4205,27 +3520,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:37.7133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:30.443","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3767' + - '3773' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:40 GMT + - Tue, 31 Dec 2019 02:34:39 GMT etag: - - '"1D5ABC9BA261B15"' + - '"1D5BF82D43897B0"' expires: - '-1' pragma: @@ -4261,27 +3576,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3514' + - '3525' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:41 GMT + - Tue, 31 Dec 2019 02:34:39 GMT etag: - - '"1D5ABC9A44725C0"' + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -4317,12 +3632,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -4337,7 +3652,7 @@ interactions: content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:41 GMT + - Tue, 31 Dec 2019 02:34:40 GMT expires: - '-1' pragma: @@ -4373,12 +3688,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/hostNameBindings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/hostNameBindings?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/hostNameBindings/web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","name":"web-ssl-test000003/slot-ssl-test000004/web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West @@ -4391,9 +3706,9 @@ interactions: content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:41 GMT + - Tue, 31 Dec 2019 02:34:42 GMT etag: - - '"1D5ABC9BA261B15"' + - '"1D5BF82D43897B0"' expires: - '-1' pragma: @@ -4437,27 +3752,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:43.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3729' + - '3735' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:44 GMT + - Tue, 31 Dec 2019 02:34:45 GMT etag: - - '"1D5ABC9BA261B15"' + - '"1D5BF82D43897B0"' expires: - '-1' pragma: @@ -4495,27 +3810,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:43.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3727' + - '3733' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:44 GMT + - Tue, 31 Dec 2019 02:34:46 GMT etag: - - '"1D5ABC9BD9A192B"' + - '"1D5BF82DCA237D0"' expires: - '-1' pragma: @@ -4555,30 +3870,30 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2019-08-01 response: body: string: @@ -4590,7 +3905,7 @@ interactions: content-type: - application/xml date: - - Fri, 06 Dec 2019 00:11:45 GMT + - Tue, 31 Dec 2019 02:34:47 GMT expires: - '-1' pragma: @@ -4604,7 +3919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1185' x-powered-by: - ASP.NET status: @@ -4624,27 +3939,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:43.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3727' + - '3733' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:45 GMT + - Tue, 31 Dec 2019 02:34:49 GMT etag: - - '"1D5ABC9BD9A192B"' + - '"1D5BF82DCA237D0"' expires: - '-1' pragma: @@ -4680,27 +3995,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:43.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3727' + - '3733' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:46 GMT + - Tue, 31 Dec 2019 02:34:50 GMT etag: - - '"1D5ABC9BD9A192B"' + - '"1D5BF82DCA237D0"' expires: - '-1' pragma: @@ -4740,30 +4055,30 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2019-08-01 response: body: string: @@ -4775,7 +4090,7 @@ interactions: content-type: - application/xml date: - - Fri, 06 Dec 2019 00:11:46 GMT + - Tue, 31 Dec 2019 02:34:52 GMT expires: - '-1' pragma: @@ -4789,7 +4104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' x-powered-by: - ASP.NET status: @@ -4809,12 +4124,12 @@ interactions: ParameterSetName: - -g --certificate-thumbprint User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West @@ -4829,7 +4144,7 @@ interactions: content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:47 GMT + - Tue, 31 Dec 2019 02:34:54 GMT expires: - '-1' pragma: @@ -4867,12 +4182,12 @@ interactions: ParameterSetName: - -g --certificate-thumbprint User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/9E9735C45C792B03B3FFCCA614852B32EE71AD6B__West%20US_clitest.rg000001?api-version=2019-08-01 response: body: string: '' @@ -4882,7 +4197,7 @@ interactions: content-length: - '0' date: - - Fri, 06 Dec 2019 00:11:48 GMT + - Tue, 31 Dec 2019 02:34:57 GMT expires: - '-1' pragma: @@ -4896,7 +4211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -4916,27 +4231,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:43.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3727' + - '3733' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:48 GMT + - Tue, 31 Dec 2019 02:34:59 GMT etag: - - '"1D5ABC9BD9A192B"' + - '"1D5BF82DCA237D0"' expires: - '-1' pragma: @@ -4972,27 +4287,27 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004","name":"web-ssl-test000003/slot-ssl-test000004","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:43.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__a4a9","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"586E6E1866BA02B3BFC7A0171F571E110B0FAA664E9F0E6783A2A809259752CE","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003(slot-ssl-test000004)","state":"Running","hostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003-slot-ssl-test000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003__9185","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"350373795FC80018C7EA9ED8AC710172688C3EFD393E5FF07F6056EE322C6C5A","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003-slot-ssl-test000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3727' + - '3733' content-type: - application/json date: - - Fri, 06 Dec 2019 00:11:50 GMT + - Tue, 31 Dec 2019 02:35:00 GMT etag: - - '"1D5ABC9BD9A192B"' + - '"1D5BF82DCA237D0"' expires: - '-1' pragma: @@ -5032,30 +4347,30 @@ interactions: ParameterSetName: - -g -n -s User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/slots/slot-ssl-test000004/publishxml?api-version=2019-08-01 response: body: string: @@ -5067,7 +4382,7 @@ interactions: content-type: - application/xml date: - - Fri, 06 Dec 2019 00:11:50 GMT + - Tue, 31 Dec 2019 02:35:05 GMT expires: - '-1' pragma: @@ -5081,10 +4396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' -======= - - '11998' ->>>>>>> Re-record test for app service + - '1189' x-powered-by: - ASP.NET status: @@ -5104,46 +4416,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-06T00:11:01.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4C94A6B9D2AFC2B1CD7CA613763B0F79AADDE23EB1B4DE5213DC2640C33EFE32","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:09.4266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF433C517906EC0B9EE5DF811C087E6519DB6E9CFF2CA1CA58FD1EB81E6E25D7","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service + US","tags":{"web":"web1"},"properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:34.323","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25074B99EC3F2D486EF4647B049176C5E7587669AA1AE16AD113363642370C01","kind":"app","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"web":"web1"},"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3514' - content-type: - - application/json - date: - - Fri, 06 Dec 2019 00:11:51 GMT - etag: - - '"1D5ABC9A44725C0"' -======= - - '3524' + - '3525' content-type: - application/json date: - - Wed, 13 Nov 2019 11:04:37 GMT + - Tue, 31 Dec 2019 02:35:07 GMT etag: - - '"1D59A1212E3352B"' ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -5181,17 +4474,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '' @@ -5201,15 +4489,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Fri, 06 Dec 2019 00:11:57 GMT - etag: - - '"1D5ABC9A44725C0"' -======= - - Wed, 13 Nov 2019 11:04:44 GMT + - Tue, 31 Dec 2019 02:35:13 GMT etag: - - '"1D59A1212E3352B"' ->>>>>>> Re-record test for app service + - '"1D5BF82B2C55C30"' expires: - '-1' pragma: @@ -5223,11 +4505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD - - '14998' -======= - '14994' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml index e0a6d399305..2e4a5745d55 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-04T20:15:29Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:15:45 GMT + - Tue, 31 Dec 2019 02:31:06 GMT expires: - '-1' pragma: @@ -63,12 +63,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:15:46 GMT + - Tue, 31 Dec 2019 02:31:08 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' x-powered-by: - ASP.NET status: @@ -118,15 +118,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-04T20:15:29Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:15:46 GMT + - Tue, 31 Dec 2019 02:31:08 GMT expires: - '-1' pragma: @@ -168,17 +168,17 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - Europe","properties":{"serverFarmId":24501,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-217_24501","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + Europe","properties":{"serverFarmId":32869,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-219_32869","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:15:57 GMT + - Tue, 31 Dec 2019 02:31:23 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1182' x-powered-by: - ASP.NET status: @@ -225,17 +225,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - Europe","properties":{"serverFarmId":24501,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-217_24501","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + Europe","properties":{"serverFarmId":32869,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-219_32869","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:15:59 GMT + - Tue, 31 Dec 2019 02:31:24 GMT expires: - '-1' pragma: @@ -285,12 +285,12 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:15:59 GMT + - Tue, 31 Dec 2019 02:31:25 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -340,17 +340,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - Europe","properties":{"serverFarmId":24501,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-217_24501","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + Europe","properties":{"serverFarmId":32869,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-219_32869","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:15:59 GMT + - Tue, 31 Dec 2019 02:31:26 GMT expires: - '-1' pragma: @@ -402,27 +402,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-04T20:16:09.2733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63FB5634EE85CDC1234270D3438998F2618E81F68C098BD16994FDCE8EF2E6EE","kind":"app","inboundIpAddress":"137.117.218.101","possibleInboundIpAddresses":"137.117.218.101","outboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13","possibleOutboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13,137.117.208.108,137.117.208.41,137.117.211.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:34.6633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3595' + - '3574' content-type: - application/json date: - - Wed, 04 Dec 2019 20:16:26 GMT + - Tue, 31 Dec 2019 02:31:53 GMT etag: - - '"1D5AADFAB031835"' + - '"1D5BF826C26CC35"' expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '495' x-powered-by: - ASP.NET status: @@ -464,27 +464,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: @@ -496,7 +496,7 @@ interactions: content-type: - application/xml date: - - Wed, 04 Dec 2019 20:16:26 GMT + - Tue, 31 Dec 2019 02:31:53 GMT expires: - '-1' pragma: @@ -510,7 +510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11995' x-powered-by: - ASP.NET status: @@ -530,15 +530,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-04T20:15:29Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -547,7 +547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:16:27 GMT + - Tue, 31 Dec 2019 02:31:54 GMT expires: - '-1' pragma: @@ -571,7 +571,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -579,47 +579,33 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"0b9188a0-540d-4262-9311-61bb1a0235ef","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["2f442157-a11c-46b9-ae5b-6e39ff4e5849","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"dcb1a3ae-b33f-4487-846a-a640262fadf4"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"87bbbc60-4754-4998-8c88-227dca264858"}],"assignedPlans":[{"assignedTimestamp":"2019-11-24T23:36:32Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-24T23:36:32Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-24T23:36:32Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-24T23:36:32Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-11-04T20:02:03Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T04:17:14Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T04:17:14Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-08-08T23:29:37Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-23T01:47:36Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-09T22:32:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-02T05:38:04Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-02T05:38:04Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-02T05:38:04Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-18T17:43:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"d20bfa21-e9ae-43fc-93c2-20783f0840c3"},{"assignedTimestamp":"2018-11-18T17:43:28Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"d5368ca3-357e-4acb-9c21-8495fb025d1f"},{"assignedTimestamp":"2018-11-17T17:45:51Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-17T17:45:51Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-10-11T18:25:27Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-10-11T18:25:26Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2018-10-11T18:25:25Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-10-11T18:25:25Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-10-11T18:25:25Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-08-29T07:16:06Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-29T07:16:06Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-26T17:45:50Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-04-26T17:45:50Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-04-24T03:21:47Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T03:21:47Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T03:21:47Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T03:21:47Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-20T15:10:18Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T08:10:29Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T08:10:29Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-03-17T02:35:48Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-02-24T03:21:01Z","capabilityStatus":"Deleted","service":"CRM","servicePlanId":"bf36ca64-95c6-4918-9275-eb9f4ce2c04f"},{"assignedTimestamp":"2018-02-24T03:21:01Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"874fc546-6efe-4d22-90b8-5c4e7aa59f4b"},{"assignedTimestamp":"2018-02-24T03:21:01Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2018-01-09T00:28:58Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2017-12-31T23:10:50Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2017-12-31T23:10:50Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T06:32:41Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-16T19:57:33Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-16T19:57:33Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-12T20:20:22Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-10-07T01:41:03Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-07T01:41:03Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2017-06-26T10:50:26Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-11T20:26:15Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-06-11T20:26:15Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-06-11T20:26:15Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-05-13T01:11:22Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2017-02-21T21:53:31Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2016-12-02T08:00:06Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2016-12-02T08:00:06Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2016-12-02T08:00:06Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2016-10-27T10:37:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2012-10-18T11:17:30Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2015-12-14T08:31:18Z","capabilityStatus":"Enabled","service":"KratosAppsService","servicePlanId":"e61a2945-1d4e-4523-b6e7-30ba39d20f32"},{"assignedTimestamp":"2016-06-30T05:43:33Z","capabilityStatus":"Enabled","service":"KratosAppsService","servicePlanId":"2c4ec2dc-c62d-4167-a966-52a3e6374015"},{"assignedTimestamp":"2016-06-30T05:43:33Z","capabilityStatus":"Enabled","service":"KratosAppsService","servicePlanId":"0b4346bb-8dc3-4079-9dfc-513696f56039"}],"city":"Kongens - Lyngby","companyName":"DENMARK","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"DK-EPG - COGS Solution Architect-Azure","dirSyncEnabled":true,"displayName":"Mads Damg\u00e5rd","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Mads","immutableId":"301328","isCompromised":null,"jobTitle":"SR - CLOUD SOLUTION ARCHITECT","lastDirSyncTime":"2019-12-03T10:02:31Z","legalAgeGroupClassification":null,"mail":"madsd@microsoft.com","mailNickname":"madsd","mobile":"+4551578136","onPremisesDistinguishedName":"CN=Mads - Damg\u00e5rd,OU=UserAccounts,DC=europe,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-1721254763-462695806-1538882281-2655010","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"LYNGBY/Mobile","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Adallom"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"microsoftcommunicationsonline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=user01a2850e","SMTP:madsd@microsoft.com","x500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=userff21d3b0","x500:/o=SDF/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=madsd_microsoft.comc37e77e4","x500:/o=SDF/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=user31cebcc7e1b7241a","X500:/o=MMS/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=user77aa8516","x500:/o=microsoft/ou=First - Administrative Group/cn=Recipients/cn=madsd","x500:/o=SDF/ou=Exchange Administrative - Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=contact46dc0812","x500:/o=ExchangeLabs/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=madsddf0a188e10","x500:/O=microsoft/OU=europe/cn=Recipients/cn=madsd","x500:/O=Nokia/OU=HUB/cn=Recipients/cn=madsd","x500:/o=SDF/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=51490-madsd_9845154d95","x500:/o=MSNBC/ou=Servers/cn=Recipients/cn=madsd","smtp:MADSD@service.microsoft.com","smtp:MMT_madsd177502503012014@064d.mgd.microsoft.com","smtp:madsd@064d.mgd.microsoft.com"],"refreshTokensValidFromDateTime":"2019-11-16T08:17:12Z","showInAddressList":true,"signInNames":[],"sipProxyAddress":"madsd@microsoft.com","state":null,"streetAddress":null,"surname":"Damg\u00e5rd","telephoneNumber":"+45 - (45) 678476","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/0b9188a0-540d-4262-9311-61bb1a0235ef/Microsoft.DirectoryServices.User/thumbnailPhoto","thumbnailPhoto@odata.mediaContentType":"image/Jpeg","usageLocation":"DK","userIdentities":[],"userPrincipalName":"madsd@microsoft.com","userState":null,"userStateChangedOn":null,"userType":null,"extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"250611","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Linacre, - Christian A","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"CHRISLS","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"MOBILE","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"99998","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10084905","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10084905","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1023","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"DK","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"301328","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"49025387"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-06-21T01:32:03Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Zunli + Hu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zuh@microsoft.com","mailNickname":"zuh_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zuh@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zuh@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-21T01:32:03Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/21cd756e-e290-4a26-9547-93e8cc1a8923/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zuh_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-06-24T01:43:59Z","userType":"Guest"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '18824' + - '1670' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 04 Dec 2019 20:16:28 GMT + - Tue, 31 Dec 2019 02:31:58 GMT duration: - - '1528667' + - '2827994' expires: - '-1' ocp-aad-diagnostics-server-name: - - /NtEgZUZd+wP7jWSrDYgeIT+rUlfDWAtBVfze/ynjcQ= + - LYzAcq7V3eLxMoJD8VBflwEorAlQCAHjPijhfeZyV1w= ocp-aad-session-key: - - DopGsag0Uy4U9DfcbpGHMn5xCb19rlzWyMZPsSiYMB1Qo_aPv_tO5J4Loc5rBXfyelN5CxOk1A8M1iEcRfiChP0kTc4uJAFxVKvcUnZxD7Q_7Bg88aFRDBKmiDEVHN3I.AeTxVxxrH6VsuIrvOYAFn8zVUJomD4lfjySQzZjHOHE + - BbZ6vBi3vI8LYXKdS5fgx_zC4Q0vWHYqFSI6i6AMWmDPBiVcajRK_58S40uDGS5LbG_SPqg-LGXHTA7nJwYhsCGHCpn7cRyFfpl7VH1-NXl9MQbAIbiOAGR0r1gNlR3f.n5ZqbWXIzhZC_GlFaDSGVfLddP26v_hP3wPw-lhy9Yk pragma: - no-cache request-id: - - 50bd922a-740b-424a-a8fb-c04f07871ab2 + - 5db573c1-07ba-487d-b5c6-16e4a1d18026 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -632,9 +618,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westeurope", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + body: '{"location": "westeurope", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "0b9188a0-540d-4262-9311-61bb1a0235ef", + "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", @@ -657,15 +643,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"0b9188a0-540d-4262-9311-61bb1a0235ef","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache @@ -674,7 +660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:16:36 GMT + - Tue, 31 Dec 2019 02:32:11 GMT expires: - '-1' pragma: @@ -692,9 +678,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.261 + - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1187' x-powered-by: - ASP.NET status: @@ -714,13 +700,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"0b9188a0-540d-4262-9311-61bb1a0235ef","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -729,7 +715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:17:07 GMT + - Tue, 31 Dec 2019 02:32:43 GMT expires: - '-1' pragma: @@ -747,7 +733,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.261 + - 1.1.0.269 x-powered-by: - ASP.NET status: @@ -769,24 +755,24 @@ interactions: ParameterSetName: - --name --spn --secret-permissions User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/certs/providers/Microsoft.KeyVault/vaults/tb-certs","name":"tb-certs","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tbsbwe-integration/providers/Microsoft.KeyVault/vaults/apim-certs","name":"apim-certs","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/webapp-global/providers/Microsoft.KeyVault/vaults/madsd-cert","name":"madsd-cert","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.KeyVault/vaults/yugangwcu-kv","name":"yugangwcu-kv","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.KeyVault/vaults/yugangwcu2-kv","name":"yugangwcu2-kv","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '990' + - '1887' content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:17:09 GMT + - Tue, 31 Dec 2019 02:32:43 GMT expires: - '-1' pragma: @@ -810,7 +796,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -818,37 +804,38 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27Microsoft.Azure.WebSites%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"f8daea97-62e7-4026-becf-13c2ea98e8b4","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Microsoft - Azure App Service","appId":"abfa0a7c-a6b6-4736-8310-5855508787cd","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"Microsoft.Azure.WebSites","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"559f925e-c126-4b02-a759-f0b2f5d999fe","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Microsoft + Azure App Service","appId":"abfa0a7c-a6b6-4736-8310-5855508787cd","applicationTemplateId":null,"appOwnerTenantId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"Microsoft + Azure App Service","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access all the APIs registered with App Service","adminConsentDisplayName":"Access APIs registered with App Service","id":"e0ea806b-d128-49dc-ac08-2bf18f7874d8","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access all the APIs registered with App Service","userConsentDisplayName":"Access - APIs registered with App Service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["Microsoft.Azure.WebSites","abfa0a7c-a6b6-4736-8310-5855508787cd"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}]}' + APIs registered with App Service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":["https://trywebsites.azurewebsites.net/","https://trywebsitesstaging.azurewebsites.net/","https://resources-staging.azure.com","https://resources.azure.com","https://deploy.azure.com","https://deploy-staging.azure.com","https://tryappservice.azure.com","https://tryappservice-staging.azure.com","https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://scratch.botframework.com/","https://ppe.botframework.com/","https://functions-release.azure.com","https://dev.botframework.com/"],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["https://appservice.azure.com","Microsoft.Azure.WebSites","abfa0a7c-a6b6-4736-8310-5855508787cd"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1677' + - '2280' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 04 Dec 2019 20:17:09 GMT + - Tue, 31 Dec 2019 02:32:45 GMT duration: - - '738869' + - '2403305' expires: - '-1' ocp-aad-diagnostics-server-name: - - bLgwXkOhOVEk3vC8NHPdSIeFqRoOWvrUxR2wO1wjuQ4= + - ZtjrL6855/1nWsQgXw4059xGL7CEBjwxyLJieTbtGTs= ocp-aad-session-key: - - Ee8U1MQUaj3m5cqu0DmZU9Yg79FCF1y9pIu5SCgtS9OpohNqHQlgStX_CTFPwkA-BoWc081UorpqJRPGRyQQ5CLoe7w9cWzTYjG9NYCSRVg1IMBTyj4e9q-EFcec4KMC.yG880oDxbjeHQPXcmjFtcuD_u9KnOPKLWcDwI5EneG4 + - QrDLcCLbH8UNqdWVo35B4prSmturxuJ0VqxAnhlo6SPLEGzy8K90uMuUryTyaFuerur7CJqW5IWCtShB4QM2rW41pec7dBp25DEhPFbne0NGS5NTdW4lukoR9_pkda1m.akqmFHePWc64Y6Be5LkNEB9Be8incY9k5w0YYJ75rRA pragma: - no-cache request-id: - - 43aefa64-4b3d-47bf-ac98-ba2da6b7f304 + - ff7acca7-0aaf-402f-844c-ab0f56808cd5 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -876,15 +863,15 @@ interactions: ParameterSetName: - --name --spn --secret-permissions User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"0b9188a0-540d-4262-9311-61bb1a0235ef","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -893,7 +880,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:17:10 GMT + - Tue, 31 Dec 2019 02:32:46 GMT expires: - '-1' pragma: @@ -911,23 +898,23 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.261 + - 1.1.0.269 x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"location": "westeurope", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + body: '{"location": "westeurope", "tags": {}, "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "0b9188a0-540d-4262-9311-61bb1a0235ef", + "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, - {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "f8daea97-62e7-4026-becf-13c2ea98e8b4", + {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "559f925e-c126-4b02-a759-f0b2f5d999fe", "permissions": {"secrets": ["get"]}}], "vaultUri": "https://kv-ssl-test000004.vault.azure.net/", "enabledForDeployment": false}}' headers: @@ -946,15 +933,15 @@ interactions: ParameterSetName: - --name --spn --secret-permissions User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"0b9188a0-540d-4262-9311-61bb1a0235ef","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"f8daea97-62e7-4026-becf-13c2ea98e8b4","permissions":{"secrets":["get"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"559f925e-c126-4b02-a759-f0b2f5d999fe","permissions":{"secrets":["get"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -963,7 +950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:17:11 GMT + - Tue, 31 Dec 2019 02:32:47 GMT expires: - '-1' pragma: @@ -981,9 +968,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.261 + - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1183' x-powered-by: - ASP.NET status: @@ -1003,7 +990,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -1021,7 +1008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:17:12 GMT + - Tue, 31 Dec 2019 02:32:49 GMT expires: - '-1' pragma: @@ -1031,18 +1018,18 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.174.245;act_addr_fam=InterNetwork; + - addr=167.220.255.115;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westeurope x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -1064,7 +1051,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -1072,7 +1059,7 @@ interactions: uri: https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/import?api-version=7.0 response: body: - string: '{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/095b66b60094434ba2a27db39aaedd05","kid":"https://kv-ssl-test000004.vault.azure.net/keys/test-cert/095b66b60094434ba2a27db39aaedd05","sid":"https://kv-ssl-test000004.vault.azure.net/secrets/test-cert/095b66b60094434ba2a27db39aaedd05","x5t":"npc1xFx5KwOz_8ymFIUrMu5xrWs","cer":"MIIDYTCCAk2gAwIBAgIQLVKvAHY+rqVB+C7Wbh24QDAJBgUrDgMCHQUAMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0MCAXDTE4MDEwMTA3MDAwMFoYDzIxMTgxMjMxMDcwMDAwWjAxMS8wLQYDVQQDHiYAKgAuAGEAegB1AHIAZQB3AGUAYgBzAGkAdABlAHMALgBuAGUAdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKcqVpT4O7YwltwNd/XSTqITNrpb1lxkLE5r0CpummRxDtjSKbY/vrA7cnHByZS0lRnVPgnZFSyTR0qU0XhGQxedMx+uLGnaDfvDtbCzElsrH4yaMU/dU4959liNYccV//OZOOfr8AB5xnD3k1ix/ssMphIE7sdZx2Icr9TGZzE6Ckm0afEdp7SdwUpXvOjxfB6tFtqyhN5Gtgm1f1rhugCb1QA1UCM1b0Af2XTHbhW057BmUppNI6rzYr3RPed0pXTryeI1/5U3a9ZJ2XFW3VXTXw9Wo+qv8I+9DWIUj0JdoYJ2XkTcZJEeo3woJSBx1yCv2bggR3OUM0wG7/n4HykCAwEAAaN7MHkwEwYDVR0lBAwwCgYIKwYBBQUHAwEwYgYDVR0BBFswWYAQ3sdVft+h9rOb7gSClEWvkaEzMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0ghAtUq8Adj6upUH4LtZuHbhAMAkGBSsOAwIdBQADggEBAB+08jsd9CeKCX4qeEUNx3i1uklsTAdwoEkK6xQqF4LuHsV9J8NEkQnJow1w2wsg/lULbm+k6LJmM7qCP0NquYOQra3/sdWZvPQflhFM8awpBkIOWO9/wS1oQWhyUHFCwSWUOhJ218bNxBLwIjX6bjCEVNQWNNOFooPz3/dNNVfxqXggqgWXBQ11LuZha+zvU7G82zCttImywZUFcKK3dcvdYPAU9POWQvuuvUqBBdKzPcNCnJAFyXPpJPegW+3ycwphRKxBjYUATe7aP+ulc+/YkyK19dLdUqxBkx2ElJ2HKTcUo6eEXgAuyjQ/jQejZI+fG2FV4NxGEoSned4BKng=","attributes":{"enabled":true,"nbf":1514790000,"exp":4701913200,"created":1575490632,"updated":1575490632,"recoveryLevel":"Purgeable"},"policy":{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=*.azurewebsites.net","ekus":["1.3.6.1.5.5.7.3.1"],"key_usage":[],"validity_months":1200,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"EmailContacts"}}],"issuer":{"name":"Unknown"},"attributes":{"enabled":true,"created":1575490632,"updated":1575490632}}}' + string: '{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/a7ef500a19b846bcb611b369949548e2","kid":"https://kv-ssl-test000004.vault.azure.net/keys/test-cert/a7ef500a19b846bcb611b369949548e2","sid":"https://kv-ssl-test000004.vault.azure.net/secrets/test-cert/a7ef500a19b846bcb611b369949548e2","x5t":"npc1xFx5KwOz_8ymFIUrMu5xrWs","cer":"MIIDYTCCAk2gAwIBAgIQLVKvAHY+rqVB+C7Wbh24QDAJBgUrDgMCHQUAMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0MCAXDTE4MDEwMTA3MDAwMFoYDzIxMTgxMjMxMDcwMDAwWjAxMS8wLQYDVQQDHiYAKgAuAGEAegB1AHIAZQB3AGUAYgBzAGkAdABlAHMALgBuAGUAdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKcqVpT4O7YwltwNd/XSTqITNrpb1lxkLE5r0CpummRxDtjSKbY/vrA7cnHByZS0lRnVPgnZFSyTR0qU0XhGQxedMx+uLGnaDfvDtbCzElsrH4yaMU/dU4959liNYccV//OZOOfr8AB5xnD3k1ix/ssMphIE7sdZx2Icr9TGZzE6Ckm0afEdp7SdwUpXvOjxfB6tFtqyhN5Gtgm1f1rhugCb1QA1UCM1b0Af2XTHbhW057BmUppNI6rzYr3RPed0pXTryeI1/5U3a9ZJ2XFW3VXTXw9Wo+qv8I+9DWIUj0JdoYJ2XkTcZJEeo3woJSBx1yCv2bggR3OUM0wG7/n4HykCAwEAAaN7MHkwEwYDVR0lBAwwCgYIKwYBBQUHAwEwYgYDVR0BBFswWYAQ3sdVft+h9rOb7gSClEWvkaEzMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0ghAtUq8Adj6upUH4LtZuHbhAMAkGBSsOAwIdBQADggEBAB+08jsd9CeKCX4qeEUNx3i1uklsTAdwoEkK6xQqF4LuHsV9J8NEkQnJow1w2wsg/lULbm+k6LJmM7qCP0NquYOQra3/sdWZvPQflhFM8awpBkIOWO9/wS1oQWhyUHFCwSWUOhJ218bNxBLwIjX6bjCEVNQWNNOFooPz3/dNNVfxqXggqgWXBQ11LuZha+zvU7G82zCttImywZUFcKK3dcvdYPAU9POWQvuuvUqBBdKzPcNCnJAFyXPpJPegW+3ycwphRKxBjYUATe7aP+ulc+/YkyK19dLdUqxBkx2ElJ2HKTcUo6eEXgAuyjQ/jQejZI+fG2FV4NxGEoSned4BKng=","attributes":{"enabled":true,"nbf":1514790000,"exp":4701913200,"created":1577759572,"updated":1577759572,"recoveryLevel":"Purgeable"},"policy":{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=*.azurewebsites.net","ekus":["1.3.6.1.5.5.7.3.1"],"key_usage":[],"validity_months":1200,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"EmailContacts"}}],"issuer":{"name":"Unknown"},"attributes":{"enabled":true,"created":1577759572,"updated":1577759572}}}' headers: cache-control: - no-cache @@ -1081,7 +1068,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:17:12 GMT + - Tue, 31 Dec 2019 02:32:52 GMT expires: - '-1' pragma: @@ -1095,11 +1082,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.174.245;act_addr_fam=InterNetwork; + - addr=167.220.255.115;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westeurope x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -1119,27 +1106,27 @@ interactions: ParameterSetName: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-04T20:16:10.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63FB5634EE85CDC1234270D3438998F2618E81F68C098BD16994FDCE8EF2E6EE","kind":"app","inboundIpAddress":"137.117.218.101","possibleInboundIpAddresses":"137.117.218.101","outboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13","possibleOutboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13,137.117.208.108,137.117.208.41,137.117.211.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:35.8433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3593' + - '3572' content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:12 GMT + - Tue, 31 Dec 2019 02:32:54 GMT etag: - - '"1D5AADFAB031835"' + - '"1D5BF826C26CC35"' expires: - '-1' pragma: @@ -1177,15 +1164,15 @@ interactions: ParameterSetName: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"0b9188a0-540d-4262-9311-61bb1a0235ef","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"f8daea97-62e7-4026-becf-13c2ea98e8b4","permissions":{"secrets":["get"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"559f925e-c126-4b02-a759-f0b2f5d999fe","permissions":{"secrets":["get"]}}],"enabledForDeployment":false,"vaultUri":"https://kv-ssl-test000004.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1194,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 04 Dec 2019 20:17:14 GMT + - Tue, 31 Dec 2019 02:32:55 GMT expires: - '-1' pragma: @@ -1212,7 +1199,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.261 + - 1.1.0.269 x-powered-by: - ASP.NET status: @@ -1232,17 +1219,17 @@ interactions: ParameterSetName: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/0b9188a0-540d-4262-9311-61bb1a0235ef?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/21cd756e-e290-4a26-9547-93e8cc1a8923?api-version=1.6 response: body: string: '{"odata.error":{"code":"Request_ResourceNotFound","message":{"lang":"en","value":"Resource - ''0b9188a0-540d-4262-9311-61bb1a0235ef'' does not exist or one of its queried - reference-property objects are not present."},"requestId":"80cb19ff-b009-4a2f-afbb-2fce996282f4","date":"2019-12-04T20:17:15"}}' + ''21cd756e-e290-4a26-9547-93e8cc1a8923'' does not exist or one of its queried + reference-property objects are not present."},"requestId":"0c336413-b117-4f9d-8341-85c07687cb32","date":"2019-12-31T02:32:56"}}' headers: access-control-allow-origin: - '*' @@ -1255,19 +1242,19 @@ interactions: dataserviceversion: - 3.0; date: - - Wed, 04 Dec 2019 20:17:14 GMT + - Tue, 31 Dec 2019 02:32:56 GMT duration: - - '760604' + - '2457869' expires: - '-1' ocp-aad-diagnostics-server-name: - - nz/XGp5Lt3UpE9jJSAaQvlkMcNgkH4RQOBn3fI2s7Mc= + - hYcM8xGo3UDnolVC93y3QsXQUHmcq33QIFHDssXymn4= ocp-aad-session-key: - - piT6VRRfArvmdlNhI7PfmFEWmJhBYceOXhREq84UFjdr9mvg01FHZ9XnQBAtoW0ELXF1en-7TgO3Um430J0MiJTr9sUgX9Td1UTjtKh-2MxjNc0z9fVQorNhzPE6lm54.PVrA2AcOjzA1GWDPQTimHMDxzZ8xTnLPak8QLYDr0Qc + - aZXzWdm2-tPrckchx2NXT3T2iNxYBl5aGofZroivDOTjXLmDzgXCBxmzYt048LSAjWgpTRqg9ucXVRz5WXJER7TWjx4ckxFYNpAsjAbfPRT6qqTVudRQQ3W9qbTQ_KDx.Xp_fGElpzv0JVcCFxxc_I5c7r3EA1WJzD3gbl4Fiu00 pragma: - no-cache request-id: - - 80cb19ff-b009-4a2f-afbb-2fce996282f4 + - 0c336413-b117-4f9d-8341-85c07687cb32 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1293,45 +1280,46 @@ interactions: ParameterSetName: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/f8daea97-62e7-4026-becf-13c2ea98e8b4?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals/559f925e-c126-4b02-a759-f0b2f5d999fe?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"f8daea97-62e7-4026-becf-13c2ea98e8b4","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Microsoft - Azure App Service","appId":"abfa0a7c-a6b6-4736-8310-5855508787cd","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"Microsoft.Azure.WebSites","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"559f925e-c126-4b02-a759-f0b2f5d999fe","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Microsoft + Azure App Service","appId":"abfa0a7c-a6b6-4736-8310-5855508787cd","applicationTemplateId":null,"appOwnerTenantId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"Microsoft + Azure App Service","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access all the APIs registered with App Service","adminConsentDisplayName":"Access APIs registered with App Service","id":"e0ea806b-d128-49dc-ac08-2bf18f7874d8","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access all the APIs registered with App Service","userConsentDisplayName":"Access - APIs registered with App Service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["Microsoft.Azure.WebSites","abfa0a7c-a6b6-4736-8310-5855508787cd"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}' + APIs registered with App Service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":["https://trywebsites.azurewebsites.net/","https://trywebsitesstaging.azurewebsites.net/","https://resources-staging.azure.com","https://resources.azure.com","https://deploy.azure.com","https://deploy-staging.azure.com","https://tryappservice.azure.com","https://tryappservice-staging.azure.com","https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://scratch.botframework.com/","https://ppe.botframework.com/","https://functions-release.azure.com","https://dev.botframework.com/"],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["https://appservice.azure.com","Microsoft.Azure.WebSites","abfa0a7c-a6b6-4736-8310-5855508787cd"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1674' + - '2277' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Wed, 04 Dec 2019 20:17:14 GMT + - Tue, 31 Dec 2019 02:32:57 GMT duration: - - '822948' + - '2519966' expires: - '-1' ocp-aad-diagnostics-server-name: - - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= + - 08YU0IxZ9gKU1vId0ceklYsBswf3+92fGse+Uu+6oFI= ocp-aad-session-key: - - dMalc7rla1VTYecOgyyvOhjpQo2KK60rb_rkziMwRakw90Ql-Juz7ZD0J4kcU4NrUO9VyBIlif0yVQn0Qz-DMx_m-_aQlJoi1p31H2jo4X5N3FVoZop_qSGHcQGH9nDz.hV5G8OefU61qWSBQy6UvkCLS6dJwBSbWh21kvJnqaLE + - IVGMARMNBf7dtdlXZHjaASaxRhxG7zvVcoj-2IPMMVkRGLBNmNRxGFbv3kUA1lzEx0lF9a7OM76P-wN6Op4hYV_8QTYZczN5TIT3RsBFCaVevv4zzXYSCAMet__ziYNa.ca1ufTdAptdULjhuJKODqDtkB4AFi7zU2IDHQdU5rhs pragma: - no-cache request-id: - - cedc9b85-c4ca-4eba-b501-6ab1dee38ed5 + - 21f6bc80-7325-4302-b668-84fc131f95f9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1363,12 +1351,12 @@ interactions: ParameterSetName: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/clitest.rg000001-kv-ssl-test000004-test-cert?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/clitest.rg000001-kv-ssl-test000004-test-cert?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/clitest.rg000001-kv-ssl-test000004-test-cert","name":"clitest.rg000001-kv-ssl-test000004-test-cert","type":"Microsoft.Web/certificates","location":"West @@ -1381,7 +1369,7 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:22 GMT + - Tue, 31 Dec 2019 02:33:05 GMT expires: - '-1' pragma: @@ -1402,7 +1390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1180' x-powered-by: - ASP.NET status: @@ -1422,27 +1410,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-04T20:16:10.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63FB5634EE85CDC1234270D3438998F2618E81F68C098BD16994FDCE8EF2E6EE","kind":"app","inboundIpAddress":"137.117.218.101","possibleInboundIpAddresses":"137.117.218.101","outboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13","possibleOutboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13,137.117.208.108,137.117.208.41,137.117.211.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:35.8433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3593' + - '3572' content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:23 GMT + - Tue, 31 Dec 2019 02:33:08 GMT etag: - - '"1D5AADFAB031835"' + - '"1D5BF826C26CC35"' expires: - '-1' pragma: @@ -1478,27 +1466,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-04T20:16:10.0833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63FB5634EE85CDC1234270D3438998F2618E81F68C098BD16994FDCE8EF2E6EE","kind":"app","inboundIpAddress":"137.117.218.101","possibleInboundIpAddresses":"137.117.218.101","outboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13","possibleOutboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13,137.117.208.108,137.117.208.41,137.117.211.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:35.8433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3593' + - '3572' content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:24 GMT + - Tue, 31 Dec 2019 02:33:09 GMT etag: - - '"1D5AADFAB031835"' + - '"1D5BF826C26CC35"' expires: - '-1' pragma: @@ -1534,12 +1522,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/certificates/clitest.rg000001-kv-ssl-test000004-test-cert","name":"clitest.rg000001-kv-ssl-test000004-test-cert","type":"Microsoft.Web/certificates","location":"West @@ -1552,7 +1540,7 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:25 GMT + - Tue, 31 Dec 2019 02:33:09 GMT expires: - '-1' pragma: @@ -1588,12 +1576,12 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings?api-version=2019-08-01 response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/hostNameBindings/web-ssl-test000003.azurewebsites.net","name":"web-ssl-test000003/web-ssl-test000003.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West @@ -1606,9 +1594,9 @@ interactions: content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:26 GMT + - Tue, 31 Dec 2019 02:33:10 GMT etag: - - '"1D5AADFAB031835"' + - '"1D5BF826C26CC35"' expires: - '-1' pragma: @@ -1651,27 +1639,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-04T20:17:29.7766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63FB5634EE85CDC1234270D3438998F2618E81F68C098BD16994FDCE8EF2E6EE","kind":"app","inboundIpAddress":"137.117.218.101","possibleInboundIpAddresses":"137.117.218.101","outboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13","possibleOutboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13,137.117.208.108,137.117.208.41,137.117.211.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:13.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3635' + - '3609' content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:33 GMT + - Tue, 31 Dec 2019 02:33:16 GMT etag: - - '"1D5AADFAB031835"' + - '"1D5BF826C26CC35"' expires: - '-1' pragma: @@ -1689,7 +1677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -1709,27 +1697,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-04T20:17:29.7766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63FB5634EE85CDC1234270D3438998F2618E81F68C098BD16994FDCE8EF2E6EE","kind":"app","inboundIpAddress":"137.117.218.101","possibleInboundIpAddresses":"137.117.218.101","outboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13","possibleOutboundIpAddresses":"137.117.218.101,137.117.210.101,137.117.214.210,137.117.214.88,137.117.212.13,137.117.208.108,137.117.208.41,137.117.211.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:13.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3633' + - '3607' content-type: - application/json date: - - Wed, 04 Dec 2019 20:17:34 GMT + - Tue, 31 Dec 2019 02:33:17 GMT etag: - - '"1D5AADFDA83550B"' + - '"1D5BF82A6208360"' expires: - '-1' pragma: @@ -1769,27 +1757,27 @@ interactions: ParameterSetName: - -g -n --certificate-thumbprint --ssl-type User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003/publishxml?api-version=2019-08-01 response: body: string: @@ -1801,7 +1789,7 @@ interactions: content-type: - application/xml date: - - Wed, 04 Dec 2019 20:17:35 GMT + - Tue, 31 Dec 2019 02:33:17 GMT expires: - '-1' pragma: @@ -1815,7 +1803,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11994' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml deleted file mode 100644 index 53ac3a25aa1..00000000000 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml +++ /dev/null @@ -1,162 +0,0 @@ -interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-05-27T16:37:17Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-27T16:37:17Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 May 2019 16:37:18 GMT - expires: - - '-1' - pragma: - - no-cache - 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: - - webapp webjob triggered list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs?api-version=2018-02-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs/test-triggered","name":"cliTestApp/test-triggered","type":"Microsoft.Web/sites/triggeredwebjobs","location":"West - US","properties":{"latest_run":{"id":"201905152138309173","name":"201905152138309173","status":"Aborted","start_time":"2019-05-15T21:38:30.9173992Z","end_time":"0001-01-01T00:00:00","duration":"11.18:58:50.9297920","output_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/201905152138309173/output_log.txt","error_url":null,"url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history/201905152138309173","job_name":"test-triggered","trigger":"Schedule - - 0 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58 - * * * *"},"history_url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history","scheduler_logs_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/job_scheduler.log","name":"test-triggered","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/triggered/test-triggered","type":"triggered","error":null,"using_sdk":false,"settings":{"schedule":"0 - 0/2 * * * *"}}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1437' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 27 May 2019 16:37:21 GMT - etag: - - '"6ab79922"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.65 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 27 May 2019 16:37:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHT1VZVEYyVzJWUFEyNkVPV09XSFBHTk9CUTdHUVJQWVFUTnwxMjA5NDk1NzEwNEQyM0ZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted -version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml index 005467dcc3f..4d87f2e74e8 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_update.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_update000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:09:25 GMT + - Tue, 31 Dec 2019 02:38:07 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:26 GMT + - Tue, 31 Dec 2019 02:38:08 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1191' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_update000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001","name":"cli_test_webapp_update000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:09:26 GMT + - Tue, 31 Dec 2019 02:38:08 GMT expires: - '-1' pragma: @@ -169,25 +169,25 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","name":"webapp-update-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":145438,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145438","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":37237,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_37237","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1578' + - '1576' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:33 GMT + - Tue, 31 Dec 2019 02:38:17 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1172' + - '1170' x-powered-by: - ASP.NET status: @@ -226,25 +226,25 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","name":"webapp-update-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":145438,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145438","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":37237,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_37237","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1578' + - '1576' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:36 GMT + - Tue, 31 Dec 2019 02:38:18 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:37 GMT + - Tue, 31 Dec 2019 02:38:19 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1190' x-powered-by: - ASP.NET status: @@ -341,25 +341,25 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","name":"webapp-update-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":145438,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-015_145438","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":37237,"name":"webapp-update-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_update000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_update000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-027_37237","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1578' + - '1576' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:38 GMT + - Tue, 31 Dec 2019 02:38:21 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' headers: Accept: - application/json @@ -396,33 +397,33 @@ interactions: Connection: - keep-alive Content-Length: - - '536' + - '554' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:41.82","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:27.367","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5E4CD195D6FD394C16FBBC00CB4BF5FACBE1FD631C604810C04F0204351DBEA","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3738' + - '3865' content-type: - application/json date: - - Wed, 13 Nov 2019 11:09:58 GMT + - Tue, 31 Dec 2019 02:38:45 GMT etag: - - '"1D59A12D94A9450"' + - '"1D5BF8361B99170"' expires: - '-1' pragma: @@ -465,23 +466,29 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/publishxml?api-version=2019-08-01 response: body: string: @@ -489,11 +496,11 @@ interactions: cache-control: - no-cache content-length: - - '1294' + - '1938' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:09:58 GMT + - Tue, 31 Dec 2019 02:38:46 GMT expires: - '-1' pragma: @@ -507,7 +514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11992' x-powered-by: - ASP.NET status: @@ -528,26 +535,26 @@ interactions: - -g -n --client-affinity-enabled --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:42.293","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:27.847","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5E4CD195D6FD394C16FBBC00CB4BF5FACBE1FD631C604810C04F0204351DBEA","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3737' + - '3863' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:01 GMT + - Tue, 31 Dec 2019 02:38:47 GMT etag: - - '"1D59A12D94A9450"' + - '"1D5BF8361B99170"' expires: - '-1' pragma: @@ -595,26 +602,26 @@ interactions: - -g -n --client-affinity-enabled --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:03.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:49.663","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5E4CD195D6FD394C16FBBC00CB4BF5FACBE1FD631C604810C04F0204351DBEA","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3769' + - '3896' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:04 GMT + - Tue, 31 Dec 2019 02:38:50 GMT etag: - - '"1D59A12D94A9450"' + - '"1D5BF8361B99170"' expires: - '-1' pragma: @@ -632,7 +639,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -653,26 +660,26 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002","name":"webapp-update-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:03.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"09F60D9715BB39AECA36484B83EA47D17C68ED4430F43E530523E40676D6EA57","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","tags":{"foo":"bar"},"properties":{"name":"webapp-update-test000002","state":"Running","hostNames":["webapp-update-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002.azurewebsites.net","webapp-update-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:49.663","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A5E4CD195D6FD394C16FBBC00CB4BF5FACBE1FD631C604810C04F0204351DBEA","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3767' + - '3894' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:06 GMT + - Tue, 31 Dec 2019 02:38:53 GMT etag: - - '"1D59A12E5D184E0"' + - '"1D5BF836EBA6CF0"' expires: - '-1' pragma: @@ -716,26 +723,26 @@ interactions: - -g -n -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1","name":"webapp-update-test000002/s1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:09.953","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__c39d","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF221DBBA07FD890E331725B298F968774B74689419E10060E1DB5F4FE413BFE","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:57.777","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__7a2b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6F018F4A05C0E1BFE22323780A49F86531DBCD1E0B8EC12AD7A7B1FC85994D8B","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3786' + - '3912' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:25 GMT + - Tue, 31 Dec 2019 02:39:15 GMT etag: - - '"1D59A12E5D184E0"' + - '"1D5BF836EBA6CF0"' expires: - '-1' pragma: @@ -753,7 +760,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -774,26 +781,26 @@ interactions: - -g -n -s --client-affinity-enabled User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1","name":"webapp-update-test000002/s1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:10.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__c39d","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF221DBBA07FD890E331725B298F968774B74689419E10060E1DB5F4FE413BFE","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:58.353","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__7a2b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6F018F4A05C0E1BFE22323780A49F86531DBCD1E0B8EC12AD7A7B1FC85994D8B","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3784' + - '3910' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:27 GMT + - Tue, 31 Dec 2019 02:39:16 GMT etag: - - '"1D59A12EA110350"' + - '"1D5BF8373E86A10"' expires: - '-1' pragma: @@ -841,26 +848,26 @@ interactions: - -g -n -s --client-affinity-enabled User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/sites/webapp-update-test000002/slots/s1","name":"webapp-update-test000002/s1","type":"Microsoft.Web/sites/slots","kind":"app","location":"West - US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:28.1","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__c39d","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BF221DBBA07FD890E331725B298F968774B74689419E10060E1DB5F4FE413BFE","kind":"app","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-update-test000002(s1)","state":"Running","hostNames":["webapp-update-test000002-s1.azurewebsites.net"],"webSpace":"cli_test_webapp_update000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_update000001-WestUSwebspace/sites/webapp-update-test000002","repositorySiteName":"webapp-update-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-update-test000002-s1.azurewebsites.net","webapp-update-test000002-s1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-update-test000002-s1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-update-test000002-s1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_update000001/providers/Microsoft.Web/serverfarms/webapp-update-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:18.403","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-update-test000002__7a2b","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6F018F4A05C0E1BFE22323780A49F86531DBCD1E0B8EC12AD7A7B1FC85994D8B","kind":"app","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_update000001","defaultHostName":"webapp-update-test000002-s1.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3783' + - '3911' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:28 GMT + - Tue, 31 Dec 2019 02:39:18 GMT etag: - - '"1D59A12EA110350"' + - '"1D5BF8373E86A10"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml index 5ee28f546e0..e221139433b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml @@ -13,7 +13,11 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -21,7 +25,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:40:01Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -30,7 +38,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:14 GMT +======= + - Tue, 31 Dec 2019 02:40:05 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -64,7 +76,11 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -73,15 +89,26 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"79f98f63-b77e-485e-a72c-27415795f23e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"resourceGuid\": \"50cf3bf9-75fb-4385-8541-80ede97bd3a3\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"b5ba0a19-110f-4b5f-918e-60b61169b475\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"1426d6a2-ef58-4434-8581-8f9d7244bb25\",\r\n \"addressSpace\": +>>>>>>> live test {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"79f98f63-b77e-485e-a72c-27415795f23e\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"b5ba0a19-110f-4b5f-918e-60b61169b475\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -90,7 +117,11 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bce31015-dc48-41f4-849f-dfceb74e1d63?api-version=2019-09-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5e2fd1c5-f4a2-434e-aa1d-0045f00c8fd8?api-version=2019-09-01 +>>>>>>> live test cache-control: - no-cache content-length: @@ -98,7 +129,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:15 GMT +======= + - Tue, 31 Dec 2019 02:40:11 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -111,9 +146,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 4a89b813-7cc1-43b2-af16-1361cfe93858 +======= + - 1c48666c-5bc9-46ea-a7b9-d76ae09970f3 +>>>>>>> live test x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1172' status: code: 201 message: Created @@ -131,10 +170,17 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bce31015-dc48-41f4-849f-dfceb74e1d63?api-version=2019-09-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5e2fd1c5-f4a2-434e-aa1d-0045f00c8fd8?api-version=2019-09-01 +>>>>>>> live test response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -146,7 +192,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT +======= + - Tue, 31 Dec 2019 02:40:16 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -163,7 +213,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 5322d706-5064-428d-b731-1061bd997e2d +======= + - cc9e2aa3-a261-4bf6-8991-3526ce975108 +>>>>>>> live test status: code: 200 message: OK @@ -181,22 +235,37 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"52945149-8073-4f79-be56-e8ddf915e877\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"resourceGuid\": \"50cf3bf9-75fb-4385-8541-80ede97bd3a3\",\r\n \"addressSpace\": +======= + \ \"etag\": \"W/\\\"3aecbac4-ead4-4f2e-a396-d97a4f4049ff\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"1426d6a2-ef58-4434-8581-8f9d7244bb25\",\r\n \"addressSpace\": +>>>>>>> live test {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"52945149-8073-4f79-be56-e8ddf915e877\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"3aecbac4-ead4-4f2e-a396-d97a4f4049ff\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -211,9 +280,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT etag: - W/"52945149-8073-4f79-be56-e8ddf915e877" +======= + - Tue, 31 Dec 2019 02:40:17 GMT + etag: + - W/"3aecbac4-ead4-4f2e-a396-d97a4f4049ff" +>>>>>>> live test expires: - '-1' pragma: @@ -230,7 +305,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 845c78be-98d6-48ba-b213-1703f58a8eb3 +======= + - 0e94fb8a-cd9c-4ba8-98f3-2ec66f8e545c +>>>>>>> live test status: code: 200 message: OK @@ -248,7 +327,11 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -257,7 +340,11 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"52945149-8073-4f79-be56-e8ddf915e877\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"3aecbac4-ead4-4f2e-a396-d97a4f4049ff\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -270,9 +357,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT etag: - W/"52945149-8073-4f79-be56-e8ddf915e877" +======= + - Tue, 31 Dec 2019 02:40:18 GMT + etag: + - W/"3aecbac4-ead4-4f2e-a396-d97a4f4049ff" +>>>>>>> live test expires: - '-1' pragma: @@ -289,7 +382,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - fb8ae1b3-5eca-4e9b-9624-b64f6fd41969 +======= + - 7d28148d-55f5-4b9a-9573-4506aa5b1ab4 +>>>>>>> live test status: code: 200 message: OK @@ -315,7 +412,11 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -324,14 +425,22 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"3a1246d1-ffb9-4af3-84c4-b49fd19e6816\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"d15c40b5-e6ce-4c79-ac99-bf014fc69682\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"3a1246d1-ffb9-4af3-84c4-b49fd19e6816\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"d15c40b5-e6ce-4c79-ac99-bf014fc69682\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -341,7 +450,11 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fa3d376b-cf99-4371-9de6-1d7786a6a6d8?api-version=2019-09-01 +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79ce4cad-bb48-4bd3-a017-6341a53dce3d?api-version=2019-09-01 +>>>>>>> live test cache-control: - no-cache content-length: @@ -349,7 +462,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT +======= + - Tue, 31 Dec 2019 02:40:19 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -366,9 +483,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - a46aea3b-66da-4e1c-af56-1050f0c8b95f x-ms-ratelimit-remaining-subscription-writes: - '1198' +======= + - fcb29143-9768-4707-a21c-30876c41aa38 + x-ms-ratelimit-remaining-subscription-writes: + - '1180' +>>>>>>> live test status: code: 200 message: OK @@ -386,10 +509,17 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fa3d376b-cf99-4371-9de6-1d7786a6a6d8?api-version=2019-09-01 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79ce4cad-bb48-4bd3-a017-6341a53dce3d?api-version=2019-09-01 +>>>>>>> live test response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +531,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:23 GMT +======= + - Tue, 31 Dec 2019 02:40:24 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -418,7 +552,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - fd197ef3-16b2-4997-94a5-78515737e875 +======= + - bcf81ec7-4cf2-4ec0-9bb6-d6256b016c2c +>>>>>>> live test status: code: 200 message: OK @@ -436,21 +574,33 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -466,9 +616,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:23 GMT etag: - W/"1ecb1752-ae35-4918-a641-e75d80c49d0f" +======= + - Tue, 31 Dec 2019 02:40:25 GMT + etag: + - W/"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6" +>>>>>>> live test expires: - '-1' pragma: @@ -485,7 +641,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - e0f9611b-c9fc-4369-bd9a-3da68041071e +======= + - 9da7f909-7a3c-49b1-b386-56b72d995f64 +>>>>>>> live test status: code: 200 message: OK @@ -503,7 +663,11 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -511,7 +675,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:40:01Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -520,7 +688,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:25 GMT +======= + - Tue, 31 Dec 2019 02:40:25 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -553,12 +725,17 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -570,7 +747,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:24 GMT +======= + - Tue, 31 Dec 2019 02:40:27 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -588,7 +769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1188' x-powered-by: - ASP.NET status: @@ -608,7 +789,11 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -616,7 +801,11 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:40:01Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -625,7 +814,11 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:25 GMT +======= + - Tue, 31 Dec 2019 02:40:28 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -658,17 +851,27 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":21664,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-119_21664","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= + US","properties":{"serverFarmId":24837,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24837","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -677,7 +880,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:30 GMT +======= + - Tue, 31 Dec 2019 02:40:38 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -695,7 +902,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD - '1198' +======= + - '1185' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -715,17 +926,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":21664,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-119_21664","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= + US","properties":{"serverFarmId":24837,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24837","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -734,7 +955,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:31 GMT +======= + - Tue, 31 Dec 2019 02:40:40 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -775,12 +1000,17 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -792,7 +1022,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:31 GMT +======= + - Tue, 31 Dec 2019 02:40:40 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -810,7 +1044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1187' x-powered-by: - ASP.NET status: @@ -830,17 +1064,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"serverFarmId":21664,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-119_21664","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +======= + US","properties":{"serverFarmId":24837,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24837","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -849,7 +1093,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:32 GMT +======= + - Tue, 31 Dec 2019 02:40:42 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -893,20 +1141,30 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:34.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7E22EBD4559F934019ECB3BD03C1E8CE3F851A52DE1D098FFA233510B8C2ADE5","kind":"app","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.0.244,157.56.167.87,157.56.164.95","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:40:46.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B67C4869D9FE9894233E3FF05FC57B20535BB0D2F3473026D51D42B49DECF258","kind":"app","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.193.168,40.78.1.240,40.78.1.3","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3580' content-type: - application/json @@ -914,6 +1172,15 @@ interactions: - Mon, 30 Dec 2019 20:26:51 GMT etag: - '"1D5BF4F6E0AFDB5"' +======= + - '3569' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:41:03 GMT + etag: + - '"1D5BF83B4A38295"' +>>>>>>> live test expires: - '-1' pragma: @@ -931,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -955,16 +1222,22 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> live test destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -987,7 +1273,11 @@ interactions: content-type: - application/xml date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:51 GMT +======= + - Tue, 31 Dec 2019 02:41:05 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1001,7 +1291,11 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: +<<<<<<< HEAD - '11998' +======= + - '11996' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -1021,7 +1315,11 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1029,16 +1327,28 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 response: body: +<<<<<<< HEAD string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnamewws6wmkj7codp7y","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetsfjpou6bbq3ri","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceAssociationLinks":[{"name":"AppServiceLink","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/serviceAssociationLinks/AppServiceLink","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/serverfarms","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Web/serverfarms/swiftplanchgzn53tkl6z3pz","allowDelete":false,"locations":[]}}],"delegations":[{"name":"delegation","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/delegations/delegation","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverFarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +======= + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1426d6a2-ef58-4434-8581-8f9d7244bb25","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '18351' content-type: - application/json; charset=utf-8 date: - Mon, 30 Dec 2019 20:26:52 GMT +======= + - '17238' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:41:07 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1050,9 +1360,18 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: +<<<<<<< HEAD - dbd3b331-fb99-4861-b8da-acc28f143fb0 - ecea0f3b-17c0-4b9e-a150-c6bd664b5557 - 7b76307e-da15-4655-8228-9b4659a20a44 +======= + - c980b40b-5978-4a0e-9a82-96111e231dcf + - ed3e43bc-4592-4e6c-9262-0af19c7e52cb + - 495400df-5009-4dd5-8fc9-a42f8b0364ca + - c2f6aa26-6124-40bd-b882-93c78c703e42 + - e724b199-442d-4b6f-92bc-ac29f9060386 + - 85517542-fb98-4b00-8d32-4d527a1f87cd +>>>>>>> live test status: code: 200 message: OK @@ -1070,20 +1389,30 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:34.6833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7E22EBD4559F934019ECB3BD03C1E8CE3F851A52DE1D098FFA233510B8C2ADE5","kind":"app","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.0.244,157.56.167.87,157.56.164.95","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +======= + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:40:46.9533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B67C4869D9FE9894233E3FF05FC57B20535BB0D2F3473026D51D42B49DECF258","kind":"app","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.193.168,40.78.1.240,40.78.1.3","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '3578' content-type: - application/json @@ -1091,6 +1420,15 @@ interactions: - Mon, 30 Dec 2019 20:26:52 GMT etag: - '"1D5BF4F6E0AFDB5"' +======= + - '3567' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:41:09 GMT + etag: + - '"1D5BF83B4A38295"' +>>>>>>> live test expires: - '-1' pragma: @@ -1126,7 +1464,11 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1134,16 +1476,28 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 response: body: +<<<<<<< HEAD string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnamewws6wmkj7codp7y","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetsfjpou6bbq3ri","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceAssociationLinks":[{"name":"AppServiceLink","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/serviceAssociationLinks/AppServiceLink","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/serverfarms","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Web/serverfarms/swiftplanchgzn53tkl6z3pz","allowDelete":false,"locations":[]}}],"delegations":[{"name":"delegation","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/delegations/delegation","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverFarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +======= + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1426d6a2-ef58-4434-8581-8f9d7244bb25","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD - '18351' content-type: - application/json; charset=utf-8 date: - Mon, 30 Dec 2019 20:26:52 GMT +======= + - '17238' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:41:11 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1155,9 +1509,18 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: +<<<<<<< HEAD - 15a31fb1-4d27-42a9-bd01-f52afed7a944 - 0bb7e8a0-cbb9-42db-83aa-68ce2bc62da4 - 5919040e-9a32-4a80-9826-2ca1bb663e78 +======= + - 1a2e8faa-4665-4771-a6dd-774e774e3c72 + - 075672d7-6207-4eaf-90ed-925a1f006a45 + - f2950287-8a68-41b4-a42d-8de2e1ed8e61 + - a141dd37-8f6c-44cf-aaa7-cbdd493b5ac6 + - 0085e497-0541-470e-bb2c-ad3e0272c8ab + - 18d950c3-070b-4353-b2fa-44341d11a86e +>>>>>>> live test status: code: 200 message: OK @@ -1175,12 +1538,17 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/config/virtualNetwork","name":"virtualNetwork","type":"Microsoft.Web/sites/config","location":"West @@ -1193,9 +1561,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:52 GMT etag: - '"1D5BF4F6E0AFDB5"' +======= + - Tue, 31 Dec 2019 02:41:12 GMT + etag: + - '"1D5BF83B4A38295"' +>>>>>>> live test expires: - '-1' pragma: @@ -1231,7 +1605,11 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1240,14 +1618,22 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1263,9 +1649,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:52 GMT etag: - W/"1ecb1752-ae35-4918-a641-e75d80c49d0f" +======= + - Tue, 31 Dec 2019 02:41:13 GMT + etag: + - W/"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6" +>>>>>>> live test expires: - '-1' pragma: @@ -1282,7 +1674,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 23f19c95-face-4a55-93d3-de0473cc684f +======= + - 3c85bfcb-dbf2-46d0-ab42-1034237d9ff2 +>>>>>>> live test status: code: 200 message: OK @@ -1300,7 +1696,11 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1309,14 +1709,22 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n \"properties\": +======= + \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1332,9 +1740,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:52 GMT etag: - W/"1ecb1752-ae35-4918-a641-e75d80c49d0f" +======= + - Tue, 31 Dec 2019 02:41:14 GMT + etag: + - W/"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6" +>>>>>>> live test expires: - '-1' pragma: @@ -1351,7 +1765,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - b7e293fa-7175-421e-818e-0e89600dfe61 +======= + - ddb0f071-dd1f-4594-aa57-ec1255ba7516 +>>>>>>> live test status: code: 200 message: OK @@ -1374,12 +1792,17 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/config/virtualNetwork","name":"virtualNetwork","type":"Microsoft.Web/sites/config","location":"West @@ -1392,9 +1815,15 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:54 GMT etag: - '"1D5BF4F6E0AFDB5"' +======= + - Tue, 31 Dec 2019 02:41:16 GMT + etag: + - '"1D5BF83B4A38295"' +>>>>>>> live test expires: - '-1' pragma: @@ -1412,7 +1841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1167' x-powered-by: - ASP.NET status: @@ -1432,15 +1861,24 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2019-08-01 response: body: +<<<<<<< HEAD string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/50cf3bf9-75fb-4385-8541-80ede97bd3a3_swiftsubnet000004","name":"50cf3bf9-75fb-4385-8541-80ede97bd3a3_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West +======= + string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/1426d6a2-ef58-4434-8581-8f9d7244bb25_swiftsubnet000004","name":"1426d6a2-ef58-4434-8581-8f9d7244bb25_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West +>>>>>>> live test US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' headers: cache-control: @@ -1450,7 +1888,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:54 GMT +======= + - Tue, 31 Dec 2019 02:41:19 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1486,7 +1928,11 @@ interactions: ParameterSetName: - -g -n --vnet-name User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -1495,11 +1941,19 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"59f00cc1-a08f-484e-900e-8d30b94ab1af\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n \ \"etag\": \"W/\\\"59f00cc1-a08f-484e-900e-8d30b94ab1af\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"83dea230-35e4-4414-a2c7-9dd5c3de014d\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n + \ \"etag\": \"W/\\\"83dea230-35e4-4414-a2c7-9dd5c3de014d\\\"\",\r\n +>>>>>>> live test \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"linkedResourceType\": \"Microsoft.Web/serverfarms\",\r\n \"link\": @@ -1510,7 +1964,11 @@ interactions: [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n +<<<<<<< HEAD \ \"etag\": \"W/\\\"59f00cc1-a08f-484e-900e-8d30b94ab1af\\\"\",\r\n +======= + \ \"etag\": \"W/\\\"83dea230-35e4-4414-a2c7-9dd5c3de014d\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1526,9 +1984,15 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:26:55 GMT etag: - W/"59f00cc1-a08f-484e-900e-8d30b94ab1af" +======= + - Tue, 31 Dec 2019 02:41:20 GMT + etag: + - W/"83dea230-35e4-4414-a2c7-9dd5c3de014d" +>>>>>>> live test expires: - '-1' pragma: @@ -1545,7 +2009,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD - 01a7ab9d-ed6c-4430-877b-5f5234d07b17 +======= + - f0cc0781-692f-4add-a238-98500182dcd1 +>>>>>>> live test status: code: 200 message: OK @@ -1565,12 +2033,17 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2019-08-01 response: body: string: '' @@ -1580,7 +2053,11 @@ interactions: content-length: - '0' date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:43 GMT +======= + - Tue, 31 Dec 2019 02:42:09 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1594,7 +2071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14992' x-powered-by: - ASP.NET status: @@ -1614,12 +2091,17 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2019-08-01 response: body: string: '[]' @@ -1631,7 +2113,11 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD - Mon, 30 Dec 2019 20:27:44 GMT +======= + - Tue, 31 Dec 2019 02:42:11 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml index d3c7788e04f..6f06c2f23b3 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml @@ -13,7 +13,11 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -21,6 +25,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' ======= @@ -30,6 +35,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:23Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -38,6 +46,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:14 GMT ======= @@ -47,6 +56,9 @@ interactions: - Wed, 13 Nov 2019 11:09:23 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:26 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -80,6 +92,7 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -91,6 +104,10 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT @@ -98,6 +115,7 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"1223359a-3691-4865-ad41-b55ae59d3abf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n @@ -116,10 +134,17 @@ interactions: \ \"resourceGuid\": \"f8015ce3-c97a-4ceb-92c5-520f6c0f7226\",\r\n \"addressSpace\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"33185099-a536-403c-8bd9-4069e969e909\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"75cf66da-cb29-42f4-83c2-dc9ef51e9af0\",\r\n \"addressSpace\": +>>>>>>> live test {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"1223359a-3691-4865-ad41-b55ae59d3abf\\\"\",\r\n ======= @@ -129,6 +154,9 @@ interactions: \ \"etag\": \"W/\\\"b437b93b-b720-40ca-af73-59b824ddd2c0\\\"\",\r\n >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"33185099-a536-403c-8bd9-4069e969e909\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -137,6 +165,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD <<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f67ff03-8bef-427f-9be3-11233d5b57ea?api-version=2019-09-01 ======= @@ -146,6 +175,9 @@ interactions: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1392e8eb-deae-46b2-b081-33c421060832?api-version=2019-09-01 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/359da5e2-4ea7-46c2-af21-da4b0b576580?api-version=2019-09-01 +>>>>>>> live test cache-control: - no-cache content-length: @@ -153,6 +185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:16 GMT ======= @@ -162,6 +195,9 @@ interactions: - Wed, 13 Nov 2019 11:09:27 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:30 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -174,6 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - a0ecb030-d8d3-48e1-baa3-84e00e729bf4 x-ms-ratelimit-remaining-subscription-writes: @@ -189,6 +226,11 @@ interactions: - '1181' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 3a3ef8de-6c72-4606-814d-09b61423af90 + x-ms-ratelimit-remaining-subscription-writes: + - '1173' +>>>>>>> live test status: code: 201 message: Created @@ -206,6 +248,7 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 @@ -215,12 +258,18 @@ interactions: ======= uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac3a76b6-c475-46e7-bbe6-b9a7b44d4b5c?api-version=2019-09-01 ======= +======= +>>>>>>> live test - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET +<<<<<<< HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1392e8eb-deae-46b2-b081-33c421060832?api-version=2019-09-01 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/359da5e2-4ea7-46c2-af21-da4b0b576580?api-version=2019-09-01 +>>>>>>> live test response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -232,6 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT ======= @@ -241,6 +291,9 @@ interactions: - Wed, 13 Nov 2019 11:09:31 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:34 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -257,6 +310,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 8eba40dc-b129-4d6f-92fe-cdf7d5a77e93 ======= @@ -266,6 +320,9 @@ interactions: - 565d2be0-bebf-4103-8e9b-d8cb83381cd1 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 415a1cee-1219-40d1-9490-b7da4692adfb +>>>>>>> live test status: code: 200 message: OK @@ -283,6 +340,7 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -294,11 +352,16 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n @@ -317,10 +380,17 @@ interactions: \ \"resourceGuid\": \"f8015ce3-c97a-4ceb-92c5-520f6c0f7226\",\r\n \"addressSpace\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"75cf66da-cb29-42f4-83c2-dc9ef51e9af0\",\r\n \"addressSpace\": +>>>>>>> live test {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n ======= @@ -330,6 +400,9 @@ interactions: \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -344,6 +417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:19 GMT etag: @@ -359,6 +433,11 @@ interactions: - W/"9a5b08a2-353f-44f9-b7eb-041f1b697afb" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:34 GMT + etag: + - W/"4c9eb9b9-54b8-44ac-ab25-22d37cc86054" +>>>>>>> live test expires: - '-1' pragma: @@ -375,6 +454,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 9e161d45-e18d-489e-818c-88c8681140d5 ======= @@ -384,6 +464,9 @@ interactions: - 0e81574b-96e4-43ee-90ec-3a0a10fac0d7 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 615f96fd-a64f-4a2a-9a06-30631c57100e +>>>>>>> live test status: code: 200 message: OK @@ -401,7 +484,11 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -409,6 +496,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' ======= @@ -418,6 +506,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:23Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -426,6 +517,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:20 GMT ======= @@ -435,6 +527,9 @@ interactions: - Wed, 13 Nov 2019 11:09:33 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -467,6 +562,7 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -478,10 +574,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -493,6 +593,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:21 GMT ======= @@ -502,6 +603,9 @@ interactions: - Wed, 13 Nov 2019 11:09:34 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:36 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -519,7 +623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1187' x-powered-by: - ASP.NET status: @@ -539,7 +643,11 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US @@ -547,6 +655,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' ======= @@ -556,6 +665,9 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:23Z"},"properties":{"provisioningState":"Succeeded"}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -564,6 +676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:20 GMT ======= @@ -573,6 +686,9 @@ interactions: - Wed, 13 Nov 2019 11:09:34 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:37 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -605,6 +721,7 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -616,13 +733,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' @@ -635,6 +757,10 @@ interactions: US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":25217,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-095_25217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -643,6 +769,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:26 GMT ======= @@ -652,6 +779,9 @@ interactions: - Wed, 13 Nov 2019 11:09:45 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:47 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -669,6 +799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: +<<<<<<< HEAD <<<<<<< HEAD - '1198' ======= @@ -678,6 +809,9 @@ interactions: - '1186' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '1174' +>>>>>>> live test x-powered-by: - ASP.NET status: @@ -697,6 +831,7 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -708,13 +843,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' @@ -727,6 +867,10 @@ interactions: US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":25217,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-095_25217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -735,6 +879,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:26 GMT ======= @@ -744,6 +889,9 @@ interactions: - Wed, 13 Nov 2019 11:09:46 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -784,6 +932,7 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -795,10 +944,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -810,6 +963,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:27 GMT ======= @@ -819,6 +973,9 @@ interactions: - Wed, 13 Nov 2019 11:09:47 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:50 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -836,11 +993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1190' ->>>>>>> Re-record test for app service + - '1189' x-powered-by: - ASP.NET status: @@ -860,6 +1013,7 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -871,13 +1025,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' @@ -890,6 +1049,10 @@ interactions: US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"serverFarmId":25217,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-095_25217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' +>>>>>>> live test headers: cache-control: - no-cache @@ -898,6 +1061,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:27 GMT ======= @@ -907,6 +1071,9 @@ interactions: - Wed, 13 Nov 2019 11:09:48 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:38:52 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -932,12 +1099,17 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], +<<<<<<< HEAD <<<<<<< HEAD "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}''' ======= "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' >>>>>>> Re-record test for app service +======= + "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": + false}}''' +>>>>>>> live test headers: Accept: - application/json @@ -948,16 +1120,21 @@ interactions: Connection: - keep-alive Content-Length: +<<<<<<< HEAD <<<<<<< HEAD - '558' ======= - '520' >>>>>>> Re-record test for app service +======= + - '538' +>>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -969,13 +1146,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:30.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"47DDC8D312FD4E7B4E131F59B3F5252FCF54C49F046B76F2C89DF9011F56BFD0","kind":"app","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"13.91.97.179,13.91.103.21,13.91.99.109","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -985,10 +1167,14 @@ interactions: US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:51.85","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7EB61A8421B57265091B3591B6F91C39F567A54318A335173483E8039FB65F5","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"13.64.105.5,13.64.108.146","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:56.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0B38AEEEC4DD03D989E148D11CBB00368F0AA5BD5319A1BAFD610F21440DB75D","kind":"app","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.64.75.221,13.64.78.152","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3569' ======= @@ -1014,6 +1200,15 @@ interactions: - '"1D59A12DF430D60"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3538' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:39:14 GMT + etag: + - '"1D5BF8372D3C5C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1031,7 +1226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '495' x-powered-by: - ASP.NET status: @@ -1055,6 +1250,7 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1066,14 +1262,19 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/publishxml?api-version=2019-08-01 response: body: string: >>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + msdeploySite="swiftwebapp000002" userName="$swiftwebapp000002" userPWD="bhnAKQrt8R4kY66xPMcqk6SuS0nkoB2LNhc3vioPzXQfQMWFGip8Tnvx3vM4" + destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" + mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" + webSystem="WebSites">>>>>>> live test destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1110,10 +1324,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:46 GMT ======= @@ -1123,6 +1338,9 @@ interactions: - Wed, 13 Nov 2019 11:10:11 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:14 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1136,7 +1354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11997' x-powered-by: - ASP.NET status: @@ -1156,6 +1374,7 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1167,12 +1386,17 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnameg4ued677fgugi2h","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetage4k2a5osssu","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ======= @@ -1182,10 +1406,14 @@ interactions: string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmyerjgVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"e1506c1e-de72-4fc4-94a9-8e2848212088","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmyerjgSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET/subnets/clitest-vmyerjgSubnet","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/networkInterfaces/clitest-vmyerjgVMNic/ipConfigurations/ipconfigclitest-vmyerjg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vm7iwncVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ce8c76a2-8bc7-436f-ba35-6f0314704350","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vm7iwncSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET/subnets/clitest-vm7iwncSubnet","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/networkInterfaces/clitest-vm7iwncVMNic/ipConfigurations/ipconfigclitest-vm7iwnc"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmp2c42VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ec0373e6-fdb6-4d6a-aa0b-a2d756bb4651","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmp2c42Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET/subnets/clitest-vmp2c42Subnet","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/networkInterfaces/clitest-vmp2c42VMNic/ipConfigurations/ipconfigclitest-vmp2c42"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"477e2cdb-b50d-4829-bfa6-f82cb1c3bf33","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":["10.0.0.4"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"efdc4136-b9bf-4894-b8c3-b30b98bdb97f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmmqas2VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"386ac8b2-f17e-499b-beb3-454b89cb8f4c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmmqas2Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET/subnets/clitest-vmmqas2Subnet","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/networkInterfaces/clitest-vmmqas2VMNic/ipConfigurations/ipconfigclitest-vmmqas2"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"my-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b939522c-51ed-46f3-9947-5c46cc2c709a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"my-subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet1","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/networkInterfaces/my-nic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm4s3yyw5VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"84e38c1c-bf5d-40d3-8285-44aee940dec4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm4s3yyw5Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET/subnets/clisqlvm4s3yyw5Subnet","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvm4s3yyw5VMNic/ipConfigurations/ipconfigclisqlvm4s3yyw5"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvmxkluncgVMNic/ipConfigurations/ipconfigclisqlvmxkluncg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm2jizpe4VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b8115f8e-6c00-46ff-beed-9b5e74c2ac69","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm2jizpe4Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET/subnets/clisqlvm2jizpe4Subnet","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm2jizpe4VMNic/ipConfigurations/ipconfigclisqlvm2jizpe4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvmmlvodkmVMNic/ipConfigurations/ipconfigclisqlvmmlvodkm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm4ctxzwhVMNic/ipConfigurations/ipconfigclisqlvm4ctxzwh"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ddsfsfee","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/ddsfsfee","etag":"W/\"5fd2815d-f428-40fc-b33b-08af9909f094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90bf8295-7548-4a89-b09c-a1f84a266d8f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"75cf66da-cb29-42f4-83c2-dc9ef51e9af0","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '16972' content-type: @@ -1207,6 +1435,13 @@ interactions: - Wed, 13 Nov 2019 11:10:12 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '16463' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:39:17 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1218,6 +1453,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: +<<<<<<< HEAD <<<<<<< HEAD - 6dd3fbd8-5b0b-4ca4-94bf-f8f65e1db865 - d5a493a6-35cd-4577-b8fb-0d8e888cdbdf @@ -1234,6 +1470,14 @@ interactions: - 1082c626-0d98-4439-9ba6-b1e845e631ce >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - d5855927-ca84-491e-bf9b-c7f761be1aa7 + - 66db2bf2-37df-4987-bc0b-c659fe8f6a6c + - 66ff6311-881d-4a10-9dc8-12cbb11afbce + - 16852053-2769-459e-a590-ed66742454ba + - 27c3a74d-556c-471f-b282-0895eb9a74c4 + - 08f8567e-117c-4c1d-b5bc-3481a2761e31 +>>>>>>> live test status: code: 200 message: OK @@ -1251,6 +1495,7 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1262,13 +1507,18 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West +<<<<<<< HEAD <<<<<<< HEAD US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:30.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"47DDC8D312FD4E7B4E131F59B3F5252FCF54C49F046B76F2C89DF9011F56BFD0","kind":"app","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"13.91.97.179,13.91.103.21,13.91.99.109","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ======= @@ -1278,10 +1528,14 @@ interactions: US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:52.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7EB61A8421B57265091B3591B6F91C39F567A54318A335173483E8039FB65F5","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"13.64.105.5,13.64.108.146","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:56.54","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0B38AEEEC4DD03D989E148D11CBB00368F0AA5BD5319A1BAFD610F21440DB75D","kind":"app","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.64.75.221,13.64.78.152","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '3572' ======= @@ -1307,6 +1561,15 @@ interactions: - '"1D59A12DF430D60"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '3536' + content-type: + - application/json + date: + - Tue, 31 Dec 2019 02:39:17 GMT + etag: + - '"1D5BF8372D3C5C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1342,6 +1605,7 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1353,12 +1617,17 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 response: body: +<<<<<<< HEAD <<<<<<< HEAD string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnameg4ued677fgugi2h","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetage4k2a5osssu","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ======= @@ -1368,10 +1637,14 @@ interactions: string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmyerjgVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"e1506c1e-de72-4fc4-94a9-8e2848212088","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmyerjgSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET/subnets/clitest-vmyerjgSubnet","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/networkInterfaces/clitest-vmyerjgVMNic/ipConfigurations/ipconfigclitest-vmyerjg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vm7iwncVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ce8c76a2-8bc7-436f-ba35-6f0314704350","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vm7iwncSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET/subnets/clitest-vm7iwncSubnet","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/networkInterfaces/clitest-vm7iwncVMNic/ipConfigurations/ipconfigclitest-vm7iwnc"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmp2c42VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ec0373e6-fdb6-4d6a-aa0b-a2d756bb4651","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmp2c42Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET/subnets/clitest-vmp2c42Subnet","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/networkInterfaces/clitest-vmp2c42VMNic/ipConfigurations/ipconfigclitest-vmp2c42"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"477e2cdb-b50d-4829-bfa6-f82cb1c3bf33","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":["10.0.0.4"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"efdc4136-b9bf-4894-b8c3-b30b98bdb97f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmmqas2VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"386ac8b2-f17e-499b-beb3-454b89cb8f4c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmmqas2Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET/subnets/clitest-vmmqas2Subnet","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/networkInterfaces/clitest-vmmqas2VMNic/ipConfigurations/ipconfigclitest-vmmqas2"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"my-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b939522c-51ed-46f3-9947-5c46cc2c709a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"my-subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet1","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/networkInterfaces/my-nic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm4s3yyw5VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"84e38c1c-bf5d-40d3-8285-44aee940dec4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm4s3yyw5Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET/subnets/clisqlvm4s3yyw5Subnet","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvm4s3yyw5VMNic/ipConfigurations/ipconfigclisqlvm4s3yyw5"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvmxkluncgVMNic/ipConfigurations/ipconfigclisqlvmxkluncg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm2jizpe4VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b8115f8e-6c00-46ff-beed-9b5e74c2ac69","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm2jizpe4Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET/subnets/clisqlvm2jizpe4Subnet","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm2jizpe4VMNic/ipConfigurations/ipconfigclisqlvm2jizpe4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvmmlvodkmVMNic/ipConfigurations/ipconfigclisqlvmmlvodkm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm4ctxzwhVMNic/ipConfigurations/ipconfigclisqlvm4ctxzwh"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ddsfsfee","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/ddsfsfee","etag":"W/\"5fd2815d-f428-40fc-b33b-08af9909f094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90bf8295-7548-4a89-b09c-a1f84a266d8f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"75cf66da-cb29-42f4-83c2-dc9ef51e9af0","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '16972' content-type: @@ -1393,6 +1666,13 @@ interactions: - Wed, 13 Nov 2019 11:10:15 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - '16463' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 31 Dec 2019 02:39:19 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1404,6 +1684,7 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: +<<<<<<< HEAD <<<<<<< HEAD - ac1aaf15-2601-47ed-9d04-5392ebdefbbb - 5f64a3d5-b35b-49b1-87a4-69e9f8a15e68 @@ -1420,6 +1701,14 @@ interactions: - 733ebe11-4106-49f2-9f18-4ac067019c61 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 5b51cad5-9970-493a-b2b1-9221dc7ac62c + - 41ed7d9f-8e08-4826-a6ff-b9397d6d8fec + - 79d2e7eb-1414-4123-b0b5-166c868a80e3 + - e66be145-9a15-451f-b962-7da91ce496b3 + - 9869625d-7bbc-42b7-ba43-c629519c9e61 + - 6b696db4-254a-4262-af9c-615a897425f1 +>>>>>>> live test status: code: 200 message: OK @@ -1437,6 +1726,7 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1448,10 +1738,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/config/virtualNetwork","name":"virtualNetwork","type":"Microsoft.Web/sites/config","location":"West @@ -1464,6 +1758,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:48 GMT etag: @@ -1477,6 +1772,11 @@ interactions: - Wed, 13 Nov 2019 11:10:16 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:20 GMT + etag: + - '"1D5BF8372D3C5C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1512,6 +1812,7 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1523,6 +1824,10 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET @@ -1530,6 +1835,7 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n \"properties\": ======= @@ -1539,6 +1845,9 @@ interactions: \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n \"properties\": >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\\\"\",\r\n \"properties\": +>>>>>>> live test {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1551,6 +1860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:48 GMT etag: @@ -1566,6 +1876,11 @@ interactions: - W/"9a5b08a2-353f-44f9-b7eb-041f1b697afb" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:20 GMT + etag: + - W/"4c9eb9b9-54b8-44ac-ab25-22d37cc86054" +>>>>>>> live test expires: - '-1' pragma: @@ -1582,6 +1897,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 93d69467-9d70-4aca-a2ce-be7b931350c8 ======= @@ -1591,6 +1907,9 @@ interactions: - 620a2ba0-87b1-450e-97dd-33175b99e76c >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - bb034a92-8969-48c5-8600-debadb786080 +>>>>>>> live test status: code: 200 message: OK @@ -1615,6 +1934,7 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1626,6 +1946,10 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT @@ -1633,6 +1957,7 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"805dfad2-4003-4f7d-9d03-ec788db80d13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n @@ -1654,6 +1979,13 @@ interactions: \ \"etag\": \"W/\\\"96855493-ffc7-4874-a8ea-2561ac442265\\\"\",\r\n >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"5931d4dd-a445-41e3-8c6e-14f7f0fd4c10\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"5931d4dd-a445-41e3-8c6e-14f7f0fd4c10\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1663,6 +1995,7 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: +<<<<<<< HEAD <<<<<<< HEAD - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc28c162-5a9a-4cd2-9ab7-57e256f3e529?api-version=2019-09-01 ======= @@ -1672,6 +2005,9 @@ interactions: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38fdbae2-df71-44a0-b050-033cec22411f?api-version=2019-09-01 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6a49213-0530-464f-983a-1e04a23c8b68?api-version=2019-09-01 +>>>>>>> live test cache-control: - no-cache content-length: @@ -1679,6 +2015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:49 GMT ======= @@ -1688,6 +2025,9 @@ interactions: - Wed, 13 Nov 2019 11:10:17 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:21 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -1704,6 +2044,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - a460f621-4479-4c87-8b37-3e7bcf561a0d x-ms-ratelimit-remaining-subscription-writes: @@ -1719,6 +2060,11 @@ interactions: - '1176' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 7cf0e2d7-3170-4941-8cb5-681bbf70b0df + x-ms-ratelimit-remaining-subscription-writes: + - '1186' +>>>>>>> live test status: code: 200 message: OK @@ -1736,6 +2082,7 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1747,6 +2094,10 @@ interactions: azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET @@ -1754,6 +2105,7 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n +<<<<<<< HEAD <<<<<<< HEAD \ \"etag\": \"W/\\\"5c844416-9fd8-4961-98e2-5a591a97f97b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n @@ -1775,6 +2127,13 @@ interactions: \ \"etag\": \"W/\\\"805eb4c1-f487-4ecf-a654-263b4cc8ba4d\\\"\",\r\n >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + \ \"etag\": \"W/\\\"845102bb-4941-4dab-9cf6-0e1e6659b39a\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"845102bb-4941-4dab-9cf6-0e1e6659b39a\\\"\",\r\n +>>>>>>> live test \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1790,6 +2149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:49 GMT etag: @@ -1805,6 +2165,11 @@ interactions: - W/"805eb4c1-f487-4ecf-a654-263b4cc8ba4d" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:21 GMT + etag: + - W/"845102bb-4941-4dab-9cf6-0e1e6659b39a" +>>>>>>> live test expires: - '-1' pragma: @@ -1821,6 +2186,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 42f40ac0-b45f-403d-83fe-8ad318576ba1 ======= @@ -1830,6 +2196,9 @@ interactions: - d778e867-d6d0-4360-9519-b08c9c875168 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - 7bca83d4-7551-4cb5-8f85-40c66acfb93e +>>>>>>> live test status: code: 200 message: OK @@ -1852,19 +2221,18 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-11-01 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38fdbae2-df71-44a0-b050-033cec22411f?api-version=2019-09-01 ->>>>>>> Re-record test for app service + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/config/virtualNetwork","name":"virtualNetwork","type":"Microsoft.Web/sites/config","location":"West @@ -1877,6 +2245,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:51 GMT etag: @@ -1890,6 +2259,11 @@ interactions: - Wed, 13 Nov 2019 11:10:22 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:23 GMT + etag: + - '"1D5BF8372D3C5C0"' +>>>>>>> live test expires: - '-1' pragma: @@ -1906,15 +2280,10 @@ interactions: - 4.0.30319 x-content-type-options: - nosniff -<<<<<<< HEAD x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1173' x-powered-by: - ASP.NET -======= - x-ms-arm-service-request-id: - - b9a844bf-8790-4457-91eb-a6f18dead0b8 ->>>>>>> Re-record test for app service status: code: 200 message: OK @@ -1932,6 +2301,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -1979,10 +2349,23 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2019-08-01 + response: + body: + string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/75cf66da-cb29-42f4-83c2-dc9ef51e9af0_swiftsubnet000004","name":"75cf66da-cb29-42f4-83c2-dc9ef51e9af0_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West + US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' +>>>>>>> live test headers: cache-control: - no-cache content-length: +<<<<<<< HEAD <<<<<<< HEAD - '830' ======= @@ -1998,14 +2381,21 @@ interactions: - Tue, 17 Dec 2019 23:11:52 GMT ======= - '2329' +======= + - '830' +>>>>>>> live test content-type: - - application/json; charset=utf-8 + - application/json date: +<<<<<<< HEAD - Wed, 13 Nov 2019 11:10:22 GMT etag: - W/"36fde0fa-02cb-4a59-a8ff-796dad1b13d1" >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:25 GMT +>>>>>>> live test expires: - '-1' pragma: @@ -2022,6 +2412,7 @@ interactions: - 4.0.30319 x-content-type-options: - nosniff +<<<<<<< HEAD <<<<<<< HEAD x-powered-by: - ASP.NET @@ -2033,6 +2424,10 @@ interactions: - 22dd1baa-86d4-42b1-becf-500dc647ed43 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + x-powered-by: + - ASP.NET +>>>>>>> live test status: code: 200 message: OK @@ -2050,14 +2445,19 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 +>>>>>>> live test azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET <<<<<<< HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc28c162-5a9a-4cd2-9ab7-57e256f3e529?api-version=2019-09-01 ======= uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004?api-version=2019-09-01 +<<<<<<< HEAD ======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 @@ -2070,6 +2470,31 @@ interactions: response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" +======= + response: + body: + string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n + \ \"etag\": \"W/\\\"1c73553b-dcf4-4ee2-ad25-bf7e243b5820\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n + \ \"etag\": \"W/\\\"1c73553b-dcf4-4ee2-ad25-bf7e243b5820\\\"\",\r\n + \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"linkedResourceType\": \"Microsoft.Web/serverfarms\",\r\n \"link\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003\",\r\n + \ \"allowDelete\": false,\r\n \"locations\": []\r\n }\r\n + \ }\r\n ],\r\n \"delegations\": [\r\n {\r\n \"name\": + \"delegation\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n + \ \"etag\": \"W/\\\"1c73553b-dcf4-4ee2-ad25-bf7e243b5820\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": + [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n + \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n + \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" +>>>>>>> live test headers: cache-control: - no-cache @@ -2078,6 +2503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:26:52 GMT ======= @@ -2091,6 +2517,11 @@ interactions: - '"1D59A12DF430D60"' >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:39:26 GMT + etag: + - W/"1c73553b-dcf4-4ee2-ad25-bf7e243b5820" +>>>>>>> live test expires: - '-1' pragma: @@ -2106,8 +2537,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff -<<<<<<< HEAD x-ms-arm-service-request-id: +<<<<<<< HEAD <<<<<<< HEAD - 510467d7-83bc-4086-845d-1b794e2163ab ======= @@ -2292,6 +2723,9 @@ interactions: >>>>>>> Re-record test for app service x-powered-by: - ASP.NET +======= + - 4459780e-f158-4b81-98c6-0dd641a5c1ee +>>>>>>> live test status: code: 200 message: OK @@ -2309,6 +2743,7 @@ interactions: ParameterSetName: - -g -n User-Agent: +<<<<<<< HEAD <<<<<<< HEAD - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 <<<<<<< HEAD @@ -2320,10 +2755,14 @@ interactions: azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 +>>>>>>> live test accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2019-08-01 response: body: string: '[]' @@ -2335,6 +2774,7 @@ interactions: content-type: - application/json date: +<<<<<<< HEAD <<<<<<< HEAD - Mon, 30 Dec 2019 20:27:40 GMT ======= @@ -2344,6 +2784,9 @@ interactions: - Wed, 13 Nov 2019 11:10:29 GMT >>>>>>> Re-record test for app service >>>>>>> Re-record test for app service +======= + - Tue, 31 Dec 2019 02:40:15 GMT +>>>>>>> live test expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml index b89b58d56e8..337c767cf87 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:18 GMT + - Tue, 31 Dec 2019 02:28:43 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:19 GMT + - Tue, 31 Dec 2019 02:28:45 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:20 GMT + - Tue, 31 Dec 2019 02:28:46 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29490,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29490","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":33766,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33766","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:27 GMT + - Tue, 31 Dec 2019 02:28:56 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1186' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29490,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29490","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":33766,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33766","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:29 GMT + - Tue, 31 Dec 2019 02:28:58 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:29 GMT + - Tue, 31 Dec 2019 02:28:58 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29490,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29490","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":33766,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33766","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:30 GMT + - Tue, 31 Dec 2019 02:28:59 GMT expires: - '-1' pragma: @@ -403,26 +403,26 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:33.397","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D2972CC26E15E1D09EBE5BAC8733C15556903438ADF564BE6C32752F4356600F","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:05.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2C3A114D2AFA66225659B1FE52459EAAA2E33E6D3E4F12C6A43759E0FB91A8E3","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3579' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:50 GMT + - Tue, 31 Dec 2019 02:29:22 GMT etag: - - '"1D59A112727A9D0"' + - '"1D5BF821287AEB5"' expires: - '-1' pragma: @@ -461,26 +461,26 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:33.933","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D2972CC26E15E1D09EBE5BAC8733C15556903438ADF564BE6C32752F4356600F","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:05.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2C3A114D2AFA66225659B1FE52459EAAA2E33E6D3E4F12C6A43759E0FB91A8E3","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3526' + - '3577' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:51 GMT + - Tue, 31 Dec 2019 02:29:23 GMT etag: - - '"1D59A112727A9D0"' + - '"1D5BF821287AEB5"' expires: - '-1' pragma: @@ -522,26 +522,28 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3072' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:53 GMT + - Tue, 31 Dec 2019 02:29:24 GMT etag: - - '"1D59A112727A9D0"' + - '"1D5BF821287AEB5"' expires: - '-1' pragma: @@ -559,7 +561,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1191' x-powered-by: - ASP.NET status: @@ -580,11 +582,11 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2019-08-01 response: body: string: '{"id":null,"name":"web","type":"Microsoft.Web/publishingUsers/web","properties":{"name":null,"publishingUserName":null,"publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' @@ -596,7 +598,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:53 GMT + - Tue, 31 Dec 2019 02:29:25 GMT expires: - '-1' pragma: @@ -633,26 +635,26 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web","name":"webapp-quick000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://webapp-quick000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://webapp-quick000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '534' + - '557' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:54 GMT + - Tue, 31 Dec 2019 02:29:26 GMT etag: - - '"1D59A11325B6670"' + - '"1D5BF821DFD7060"' expires: - '-1' pragma: @@ -693,21 +695,26 @@ interactions: - -g -n --plan --deployment-local-git User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2019-08-01 response: body: string: @@ -715,11 +722,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 10:57:55 GMT + - Tue, 31 Dec 2019 02:29:26 GMT expires: - '-1' pragma: @@ -733,7 +740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' x-powered-by: - ASP.NET status: @@ -756,11 +763,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -773,7 +780,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:57 GMT + - Tue, 31 Dec 2019 02:29:28 GMT expires: - '-1' pragma: @@ -791,7 +798,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -812,11 +819,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West @@ -829,7 +836,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:57 GMT + - Tue, 31 Dec 2019 02:29:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml index f0ea37cd50b..aef34e09084 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:24 GMT + - Tue, 31 Dec 2019 02:29:37 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:25 GMT + - Tue, 31 Dec 2019 02:29:38 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1190' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:57:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:57:25 GMT + - Tue, 31 Dec 2019 02:29:38 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29491,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29491","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":52867,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_52867","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:46 GMT + - Tue, 31 Dec 2019 02:29:48 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29491,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29491","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":52867,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_52867","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:47 GMT + - Tue, 31 Dec 2019 02:29:51 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:48 GMT + - Tue, 31 Dec 2019 02:29:52 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' x-powered-by: - ASP.NET status: @@ -341,16 +341,16 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":29491,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29491","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":52867,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_52867","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:48 GMT + - Tue, 31 Dec 2019 02:29:52 GMT expires: - '-1' pragma: @@ -396,14 +396,14 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET + string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 (Oracle)","runtimeVersion":"1.7.0_51","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_71 (Oracle)","runtimeVersion":"1.7.0_71","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_80 @@ -425,17 +425,16 @@ interactions: (Azul)","runtimeVersion":"1.8.0_202_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.8.0_212 (Azul)","runtimeVersion":"1.8.0_212_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"11","runtimeVersion":"11","isDefault":false,"minorVersions":[{"displayVersion":"11.0.2 (Azul)","runtimeVersion":"11.0.2_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"11.0.3 - (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java - SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' + (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"SE","runtimeVersion":"SE","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '17083' + - '17080' content-type: - application/json date: - - Wed, 13 Nov 2019 10:57:49 GMT + - Tue, 31 Dec 2019 02:29:54 GMT expires: - '-1' pragma: @@ -479,26 +478,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:53.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DA9BDA4A8D3ACFF3B70FCB998ECEE3E5F23A54CD296DA7B2E88DB67FBB3618D1","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:00.823","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CDC6810AD975D27611931877550BB5E3B9DAA25A0BA8F8527C85E5303C7F6D3B","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3527' + - '3528' content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:09 GMT + - Tue, 31 Dec 2019 02:30:18 GMT etag: - - '"1D59A113347E950"' + - '"1D5BF8233BF5AD0"' expires: - '-1' pragma: @@ -516,7 +515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -537,15 +536,15 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:57:54.277","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DA9BDA4A8D3ACFF3B70FCB998ECEE3E5F23A54CD296DA7B2E88DB67FBB3618D1","kind":"app","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:01.213","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CDC6810AD975D27611931877550BB5E3B9DAA25A0BA8F8527C85E5303C7F6D3B","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -554,9 +553,9 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:12 GMT + - Tue, 31 Dec 2019 02:30:18 GMT etag: - - '"1D59A113347E950"' + - '"1D5BF8233BF5AD0"' expires: - '-1' pragma: @@ -598,26 +597,26 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '535' + - '558' content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:24 GMT + - Tue, 31 Dec 2019 02:30:30 GMT etag: - - '"1D59A114565F910"' + - '"1D5BF82457AD830"' expires: - '-1' pragma: @@ -631,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1183' x-powered-by: - ASP.NET status: @@ -652,25 +651,25 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-11-13T10:58:48.1156308 - https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-11-13_10-58-37Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:31:02.4929065 + https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-30-41Z"}}' headers: cache-control: - no-cache content-length: - - '707' + - '730' content-type: - application/json date: - - Wed, 13 Nov 2019 10:58:55 GMT + - Tue, 31 Dec 2019 02:31:02 GMT etag: - - '"1D59A114565F910"' + - '"1D5BF82457AD830"' expires: - '-1' pragma: @@ -707,24 +706,24 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '534' + - '557' content-type: - application/json date: - - Wed, 13 Nov 2019 10:59:26 GMT + - Tue, 31 Dec 2019 02:31:32 GMT etag: - - '"1D59A114565F910"' + - '"1D5BF82457AD830"' expires: - '-1' pragma: @@ -765,22 +764,28 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/publishxml?api-version=2019-08-01 response: body: string: @@ -788,11 +793,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 10:59:29 GMT + - Tue, 31 Dec 2019 02:31:35 GMT expires: - '-1' pragma: @@ -834,13 +839,13 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:06 GMT + - Tue, 31 Dec 2019 02:32:13 GMT etag: - W/"1f-5wgfifX1chdI4CmMe+Iov0qAB9Q" server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=573c11eabff192b5e6e11bd53ad8c3e5e49ca9948eee57dd87a42261928864c1;Path=/;HttpOnly;Domain=webapp-quick-cdoz365ig6k.azurewebsites.net + - ARRAffinity=6abe2ec503776fbac71c62f2f74722d72f9db2620f14285172a5b8ce875e5c3e;Path=/;HttpOnly;Domain=webapp-quick-cdmorfb3lxt.azurewebsites.net vary: - Accept-Encoding x-powered-by: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml index 50dab3f0757..3c2993f86c1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:17 GMT + - Tue, 31 Dec 2019 02:24:52 GMT expires: - '-1' pragma: @@ -64,11 +64,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:18 GMT + - Tue, 31 Dec 2019 02:24:52 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:00:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 11:00:18 GMT + - Tue, 31 Dec 2019 02:24:52 GMT expires: - '-1' pragma: @@ -169,16 +169,16 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21751,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21751","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26040,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26040","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:27 GMT + - Tue, 31 Dec 2019 02:25:04 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1190' x-powered-by: - ASP.NET status: @@ -226,16 +226,16 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21751,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21751","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26040,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26040","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:29 GMT + - Tue, 31 Dec 2019 02:25:04 GMT expires: - '-1' pragma: @@ -286,11 +286,11 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:30 GMT + - Tue, 31 Dec 2019 02:25:08 GMT expires: - '-1' pragma: @@ -341,16 +341,16 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":21751,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_21751","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26040,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26040","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:31 GMT + - Tue, 31 Dec 2019 02:25:09 GMT expires: - '-1' pragma: @@ -396,14 +396,14 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Windows&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET + string: '{"value":[{"id":null,"name":"aspnet","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"aspnet","display":"ASP.NET","dependency":null,"majorVersions":[{"displayVersion":"V4.7","runtimeVersion":"v4.0","isDefault":true,"minorVersions":[],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"V3.5","runtimeVersion":"v2.0","isDefault":false,"minorVersions":[],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"dotnetcore","display":".NET Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":null,"isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"0.6","runtimeVersion":"0.6","isDefault":false,"minorVersions":[{"displayVersion":"0.6.20","runtimeVersion":"0.6.20","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.8","runtimeVersion":"0.8","isDefault":false,"minorVersions":[{"displayVersion":"0.8.2","runtimeVersion":"0.8.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.19","runtimeVersion":"0.8.19","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.26","runtimeVersion":"0.8.26","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.27","runtimeVersion":"0.8.27","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.8.28","runtimeVersion":"0.8.28","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.10","runtimeVersion":"0.10","isDefault":false,"minorVersions":[{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.18","runtimeVersion":"0.10.18","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.21","runtimeVersion":"0.10.21","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.24","runtimeVersion":"0.10.24","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.28","runtimeVersion":"0.10.28","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.29","runtimeVersion":"0.10.29","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.31","runtimeVersion":"0.10.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.32","runtimeVersion":"0.10.32","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.40","runtimeVersion":"0.10.40","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.10.5","runtimeVersion":"0.10.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"0.12","runtimeVersion":"0.12","isDefault":false,"minorVersions":[{"displayVersion":"0.12.0","runtimeVersion":"0.12.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.2","runtimeVersion":"0.12.2","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.3","runtimeVersion":"0.12.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"0.12.6","runtimeVersion":"0.12.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"4.8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.5","runtimeVersion":"6.5","isDefault":false,"minorVersions":[{"displayVersion":"6.5.0","runtimeVersion":"6.5.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9.1","runtimeVersion":"6.9.1","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"6.9.5","runtimeVersion":"6.9.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.12","runtimeVersion":"6.12","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.10","runtimeVersion":"7.10","isDefault":false,"minorVersions":[{"displayVersion":"7.10.1","runtimeVersion":"7.10.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1.4","runtimeVersion":"8.1.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.4","runtimeVersion":"8.4","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"8.9","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.10","runtimeVersion":"8.10","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"8.11","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.0","runtimeVersion":"10.0","isDefault":false,"minorVersions":[{"displayVersion":"10.0.0","runtimeVersion":"10.0.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.6","runtimeVersion":"10.6","isDefault":false,"minorVersions":[{"displayVersion":"10.6.0","runtimeVersion":"10.6.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14.0","runtimeVersion":"10.14.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.15","runtimeVersion":"10.15","isDefault":false,"minorVersions":[{"displayVersion":"10.15.2","runtimeVersion":"10.15.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"5.6","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.1","runtimeVersion":"7.1","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"7.2","isDefault":true,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"7.3","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"2.7.3","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"3.4","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"3.4.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"1.7","runtimeVersion":"1.7","isDefault":false,"minorVersions":[{"displayVersion":"1.7.0_51 (Oracle)","runtimeVersion":"1.7.0_51","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_71 (Oracle)","runtimeVersion":"1.7.0_71","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.7.0_80 @@ -425,17 +425,16 @@ interactions: (Azul)","runtimeVersion":"1.8.0_202_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"1.8.0_212 (Azul)","runtimeVersion":"1.8.0_212_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"11","runtimeVersion":"11","isDefault":false,"minorVersions":[{"displayVersion":"11.0.2 (Azul)","runtimeVersion":"11.0.2_ZULU","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"11.0.3 - (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java - SE","dependency":null,"majorVersions":[{"displayVersion":"8","runtimeVersion":"8","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' + (Azul)","runtimeVersion":"11.0.3_ZULU","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"javaContainers","type":"Microsoft.Web/availableStacks?osTypeSelected=Windows","properties":{"name":"javaContainers","display":"Java","dependency":"java","majorVersions":[],"frameworks":[{"name":"tomcat","display":"Tomcat","dependency":null,"majorVersions":[{"displayVersion":"7.0","runtimeVersion":"7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.50","runtimeVersion":"7.0.50","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.62","runtimeVersion":"7.0.62","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.81","runtimeVersion":"7.0.81","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.94","runtimeVersion":"7.0.94","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0.23","runtimeVersion":"8.0.23","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.46","runtimeVersion":"8.0.46","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.0.53","runtimeVersion":"8.0.53","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":true,"isHidden":false},{"displayVersion":"8.5","runtimeVersion":"8.5","isDefault":false,"minorVersions":[{"displayVersion":"8.5.6","runtimeVersion":"8.5.6","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.20","runtimeVersion":"8.5.20","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.31","runtimeVersion":"8.5.31","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.34","runtimeVersion":"8.5.34","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.37","runtimeVersion":"8.5.37","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"8.5.42","runtimeVersion":"8.5.42","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.0","runtimeVersion":"9.0","isDefault":true,"minorVersions":[{"displayVersion":"9.0.0","runtimeVersion":"9.0.0","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.8","runtimeVersion":"9.0.8","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.12","runtimeVersion":"9.0.12","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.14","runtimeVersion":"9.0.14","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.0.21","runtimeVersion":"9.0.21","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"jetty","display":"Jetty","dependency":null,"majorVersions":[{"displayVersion":"9.1","runtimeVersion":"9.1","isDefault":false,"minorVersions":[{"displayVersion":"9.1.0","runtimeVersion":"9.1.0.20131115","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.3","runtimeVersion":"9.3","isDefault":true,"minorVersions":[{"displayVersion":"9.3.13","runtimeVersion":"9.3.13.20161014","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"9.3.25","runtimeVersion":"9.3.25.20180904","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null},{"name":"java","display":"Java","dependency":null,"majorVersions":[{"displayVersion":"SE","runtimeVersion":"SE","isDefault":false,"minorVersions":[],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":null,"isDeprecated":null}],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '17083' + - '17080' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:32 GMT + - Tue, 31 Dec 2019 02:25:10 GMT expires: - '-1' pragma: @@ -479,26 +478,26 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:35.5066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F6FBAB6DF833FBDA4C5B11E66706DE302082C95EFA0833B1DAB2F36EC95A9C1E","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:15.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BE3B283EB71A383C0CF5B33B290440B53DB42BD42E5FDB877454C8453CD398FA","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3534' + - '3577' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:51 GMT + - Tue, 31 Dec 2019 02:25:31 GMT etag: - - '"1D59A1193C95DAB"' + - '"1D5BF81898963EB"' expires: - '-1' pragma: @@ -516,7 +515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -537,26 +536,26 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:36.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F6FBAB6DF833FBDA4C5B11E66706DE302082C95EFA0833B1DAB2F36EC95A9C1E","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:15.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BE3B283EB71A383C0CF5B33B290440B53DB42BD42E5FDB877454C8453CD398FA","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3532' + - '3580' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:52 GMT + - Tue, 31 Dec 2019 02:25:32 GMT etag: - - '"1D59A1193C95DAB"' + - '"1D5BF81898963EB"' expires: - '-1' pragma: @@ -598,26 +597,28 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-quick000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '2903' + - '3072' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:53 GMT + - Tue, 31 Dec 2019 02:25:33 GMT etag: - - '"1D59A1193C95DAB"' + - '"1D5BF81898963EB"' expires: - '-1' pragma: @@ -635,7 +636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1195' x-powered-by: - ASP.NET status: @@ -656,11 +657,11 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2018-02-01 + uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2019-08-01 response: body: string: '{"id":null,"name":"web","type":"Microsoft.Web/publishingUsers/web","properties":{"name":null,"publishingUserName":null,"publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' @@ -672,7 +673,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:54 GMT + - Tue, 31 Dec 2019 02:25:35 GMT expires: - '-1' pragma: @@ -709,26 +710,26 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/sourcecontrols/web","name":"webapp-quick000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://webapp-quick000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' + US","properties":{"repoUrl":"https://webapp-quick000002.scm.azurewebsites.net","branch":null,"isManualIntegration":false,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '534' + - '557' content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:56 GMT + - Tue, 31 Dec 2019 02:25:36 GMT etag: - - '"1D59A119E677700"' + - '"1D5BF819454C1CB"' expires: - '-1' pragma: @@ -769,21 +770,26 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/publishxml?api-version=2019-08-01 response: body: string: @@ -791,11 +797,11 @@ interactions: cache-control: - no-cache content-length: - - '1150' + - '1730' content-type: - application/xml date: - - Wed, 13 Nov 2019 11:00:56 GMT + - Tue, 31 Dec 2019 02:25:36 GMT expires: - '-1' pragma: @@ -809,7 +815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11999' x-powered-by: - ASP.NET status: @@ -832,11 +838,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -849,7 +855,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:58 GMT + - Tue, 31 Dec 2019 02:25:38 GMT expires: - '-1' pragma: @@ -867,7 +873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -888,11 +894,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"webapp-quick000002","type":"Microsoft.Web/sites","location":"West @@ -905,7 +911,7 @@ interactions: content-type: - application/json date: - - Wed, 13 Nov 2019 11:00:59 GMT + - Tue, 31 Dec 2019 02:25:39 GMT expires: - '-1' pragma: From 3d327c14e0e208942128e94bd7f81b3d23869ee0 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Thu, 2 Jan 2020 10:22:58 +0800 Subject: [PATCH 23/51] pass test_functionapp_reserved_instance for v2019-08-01 --- .../azure/cli/command_modules/appservice/_params.py | 2 +- .../azure/cli/command_modules/appservice/custom.py | 8 ++++---- .../appservice/tests/latest/test_webapp_commands.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_params.py b/src/azure-cli/azure/cli/command_modules/appservice/_params.py index 44d3315a3fc..516f9c375ad 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_params.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_params.py @@ -231,7 +231,7 @@ def load_arguments(self, _): c.argument('windows_fx_version', help="A docker image name used for your windows container web app, e.g., microsoft/nanoserver:ltsc2016", is_preview=True) if scope == 'functionapp': c.ignore('windows_fx_version') - c.argument('reserved_instance_count', options_list=['--prewarmed-instance-count'], help="Number of pre-warmed instances a function app has") + c.argument('pre_warmed_instance_count', options_list=['--prewarmed-instance-count'], help="Number of pre-warmed instances a function app has") if scope == 'webapp': c.ignore('reserved_instance_count') c.argument('java_version', help="The version used to run your web app if using Java, e.g., '1.7' for Java 7, '1.8' for Java 8") diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index a77995fda93..5294f8e7e82 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -850,7 +850,7 @@ def _get_linux_multicontainer_encoded_config_from_file(file_name): # for any modifications to the non-optional parameters, adjust the reflection logic accordingly # in the method def update_site_configs(cmd, resource_group_name, name, slot=None, number_of_workers=None, - linux_fx_version=None, windows_fx_version=None, reserved_instance_count=None, php_version=None, # pylint: disable=unused-argument + linux_fx_version=None, windows_fx_version=None, pre_warmed_instance_count=None, php_version=None, # pylint: disable=unused-argument python_version=None, net_framework_version=None, # pylint: disable=unused-argument java_version=None, java_container=None, java_container_version=None, # pylint: disable=unused-argument remote_debugging_enabled=None, web_sockets_enabled=None, # pylint: disable=unused-argument @@ -870,14 +870,14 @@ def update_site_configs(cmd, resource_group_name, name, slot=None, number_of_wor else: delete_app_settings(cmd, resource_group_name, name, ["WEBSITES_ENABLE_APP_SERVICE_STORAGE"]) - if reserved_instance_count is not None: - reserved_instance_count = validate_range_of_int_flag('--prewarmed-instance-count', reserved_instance_count, + if pre_warmed_instance_count is not None: + pre_warmed_instance_count = validate_range_of_int_flag('--prewarmed-instance-count', pre_warmed_instance_count, min_val=0, max_val=20) import inspect frame = inspect.currentframe() bool_flags = ['remote_debugging_enabled', 'web_sockets_enabled', 'always_on', 'auto_heal_enabled', 'use32_bit_worker_process', 'http20_enabled'] - int_flags = ['reserved_instance_count', 'number_of_workers'] + int_flags = ['pre_warmed_instance_count', 'number_of_workers'] # note: getargvalues is used already in azure.cli.core.commands. # and no simple functional replacement for this deprecating method for 3.5 args, _, _, values = inspect.getargvalues(frame) # pylint: disable=deprecated-method diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index cc109a5778e..d88f86094d6 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -822,7 +822,7 @@ def test_functionapp_reserved_instance(self, resource_group, storage_account): JMESPathCheck('hostNames[0]', functionapp_name + '.azurewebsites.net')]) self.cmd('functionapp config set -g {} -n {} --prewarmed-instance-count 4' .format(resource_group, functionapp_name)).assert_with_checks([ - JMESPathCheck('reservedInstanceCount', 4)]) + JMESPathCheck('preWarmedInstanceCount', 4)]) self.cmd('functionapp delete -g {} -n {}'.format(resource_group, functionapp_name)) From fc3d7019f84861672a515480452ba2100fa481e9 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Sun, 5 Jan 2020 16:20:46 +0800 Subject: [PATCH 24/51] pass test_set_domain_name --- .../tests/latest/test_webapp_commands_thru_mock.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py index dff4ffaed37..ee66f15c179 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py @@ -73,11 +73,12 @@ def test_set_source_control_token(self, client_factory_mock): @mock.patch('azure.cli.command_modules.appservice.custom.web_client_factory', autospec=True) def test_set_domain_name(self, client_factory_mock): - client_factory_mock.return_value = self.client + client = mock.Mock() + client_factory_mock.return_value = client # set up the return value for getting a webapp webapp = Site(location='westus') webapp.name = 'veryNiceWebApp' - self.client.web_apps.get = lambda _, _1: webapp + client.web_apps.get.return_value = webapp # set up the result value of putting a domain name domain = 'veryNiceDomain' @@ -85,10 +86,7 @@ def test_set_domain_name(self, client_factory_mock): domain_id=domain, custom_host_name_dns_record_type='A', host_name_type='Managed') - self.client.web_apps._client = mock.MagicMock() - self.client.web_apps._client.send.return_value = FakedResponse(200) - self.client.web_apps._deserialize = mock.MagicMock() - self.client.web_apps._deserialize.return_value = binding + client.web_apps.create_or_update_host_name_binding.return_value = binding # action result = add_hostname(mock.MagicMock(), 'g1', webapp.name, domain) From 7df1b4a7d368baeab0e08a082157e9eaf466fc48 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Sun, 5 Jan 2020 16:25:36 +0800 Subject: [PATCH 25/51] pass test_set_source_control_token --- .../tests/latest/test_webapp_commands_thru_mock.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py index ee66f15c179..2ffc3b38b99 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py @@ -58,12 +58,10 @@ def update_publishing_user(self, user): @mock.patch('azure.cli.command_modules.appservice.custom.web_client_factory', autospec=True) def test_set_source_control_token(self, client_factory_mock): - client_factory_mock.return_value = self.client - self.client._client = mock.MagicMock() + client = mock.Mock() + client_factory_mock.return_value = client sc = SourceControl(name='not-really-needed', source_control_name='GitHub', token='veryNiceToken') - self.client._client.send.return_value = FakedResponse(200) - self.client._deserialize = mock.MagicMock() - self.client._deserialize.return_value = sc + client.update_source_control.return_value = sc # action result = update_git_token(mock.MagicMock(), 'veryNiceToken') From 91be75f42a0a7b49956c508c2caf81d48de5c599 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Mon, 6 Jan 2020 10:19:19 +0800 Subject: [PATCH 26/51] pass appservice except config --- .../test_acr_create_function_app.yaml | 2370 ++------------- .../test_acr_deployment_function_app.yaml | 1244 +------- .../test_acr_integration_function_app.yaml | 1148 ++----- ...st_functionapp_access_restriction_add.yaml | 306 +- ...unctionapp_access_restriction_add_scm.yaml | 417 +-- ...cess_restriction_add_service_endpoint.yaml | 1205 +------- ...functionapp_access_restriction_remove.yaml | 486 +-- ...tionapp_access_restriction_remove_scm.yaml | 468 +-- ...ionapp_access_restriction_set_complex.yaml | 571 +--- ...tionapp_access_restriction_set_simple.yaml | 430 +-- ...t_functionapp_access_restriction_show.yaml | 390 +-- ...t_functionapp_access_restriction_slot.yaml | 556 +--- .../test_functionapp_consumption_e2e.yaml | 548 +--- .../test_functionapp_consumption_linux.yaml | 378 +-- ...tionapp_consumption_ragrs_storage_e2e.yaml | 352 +-- .../recordings/test_functionapp_cors.yaml | 534 +--- .../recordings/test_functionapp_e2e.yaml | 871 +----- .../recordings/test_functionapp_on_linux.yaml | 498 +-- .../test_functionapp_on_linux_version.yaml | 412 +-- ...ctionapp_on_linux_version_consumption.yaml | 288 +- .../test_functionapp_reserved_instance.yaml | 417 +-- ...st_functionapp_slot_appsetting_update.yaml | 622 +--- .../test_functionapp_slot_creation.yaml | 548 +--- .../test_functionapp_slot_swap.yaml | 892 +----- .../test_functionapp_windows_runtime.yaml | 356 +-- ...t_functionapp_windows_runtime_version.yaml | 358 +-- ...t_functionapp_windows_without_runtime.yaml | 338 +-- ...est_functionapp_with_app_insights_key.yaml | 236 +- ...functionapp_with_default_app_insights.yaml | 330 +- ...ctionapp_with_no_default_app_insights.yaml | 198 +- .../recordings/test_move_plan_to_elastic.yaml | 752 +---- .../latest/recordings/test_webapp_config.yaml | 2694 ++++++++++++++++- .../latest/recordings/test_webapp_e2e.yaml | 1585 ++-------- .../test_webapp_hybridconnectionE2E.yaml | 1159 +------ .../test_webapp_triggeredWebjob_list.yaml | 162 + .../test_webapp_vnetDelegation.yaml | 762 +---- .../recordings/test_webapp_vnetE2E.yaml | 1585 +--------- .../tests/latest/test_webapp_commands.py | 2 +- 38 files changed, 5310 insertions(+), 21158 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml index f43bc7e853f..136f91231ca 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_create_function_app.yaml @@ -14,18 +14,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:02Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:20:06Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> pass test_acr_create_function_app + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:35:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -34,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:29 GMT -======= - - Tue, 19 Nov 2019 06:20:33 GMT ->>>>>>> pass test_acr_create_function_app + - Sun, 05 Jan 2020 09:35:35 GMT expires: - '-1' pragma: @@ -72,18 +64,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: -<<<<<<< HEAD - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:31.8216859Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.0324878+00:00","status":"disabled"}}}}' -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-19T06:20:36.6853535Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:20:48.3980303+00:00","status":"disabled"}}}}' ->>>>>>> pass test_acr_create_function_app + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:35:40.8566048Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:35:44.1820143+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -92,11 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:36 GMT -======= - - Tue, 19 Nov 2019 06:20:48 GMT ->>>>>>> pass test_acr_create_function_app + - Sun, 05 Jan 2020 09:35:44 GMT expires: - '-1' pragma: @@ -112,11 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1193' -======= - - '1199' ->>>>>>> pass test_acr_create_function_app + - '1187' status: code: 200 message: OK @@ -135,1959 +115,14 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET -<<<<<<< HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' -======= - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 - response: - body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-19T06:20:36.6853535Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-19T06:20:48.3980303+00:00","status":"disabled"}}}}' - headers: - cache-control: - - no-cache - content-length: - - '756' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Nov 2019 06:20:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - 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: - - acr credential show - 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-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 - response: - body: - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"},{"name":"password2","value":"HUMUVJ=jvf1bmFeuhZt6rQXFSWoS9lxr"}]}' - headers: - cache-control: - - no-cache - content-length: - - '180' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Nov 2019 06:20:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - 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 - CommandName: - - functionapp plan create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku --is-linux - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-19T06:20:06Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '431' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Nov 2019 06:20:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "japanwest", "properties": {"perSiteScaling": false, "reserved": - true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp plan create - Connection: - - keep-alive - Content-Length: - - '145' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --sku --is-linux - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5762,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5762","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '1538' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":5762,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5762","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '1538' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-19T06:20:13.2427285Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-19T06:20:13.2427285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-19T06:20:13.1958615Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1168' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: OK -- request: - body: 'b''{"kind": "functionapp,linux,container", "location": "Japan West", "properties": - {"serverFarmId": "acrtestplanfunction000003", "reserved": true, "isXenon": false, - "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": - "DOCKER|functionappacrtest000004.azurecr.io/image-name:latest", "appSettings": - [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9"}, - {"name": "DOCKER_CUSTOM_IMAGE_NAME", "value": "functionappacrtest000004.azurecr.io/image-name:latest"}, - {"name": "FUNCTION_APP_EDIT_MODE", "value": "readOnly"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", - "value": "false"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, - {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, - {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}], "alwaysOn": true, - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '1426' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:21:19.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"62987909C2C65518CEFF743A08CC0A5F60552CD2FDBEB960F4A3D9637086B12B","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3714' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:38 GMT - etag: - - '"1D59EA18EDD78E0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "Japan West", "kind": "web", "properties": {"Application_Type": - "web"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '84' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappacrtest000004?api-version=2015-05-01 - response: - body: - string: '{"error":{"code":"MissingRegistrationForLocation","message":"The subscription - is not registered for the resource type ''components'' in the location ''Japan - West''. Please re-register for this provider in order to have access to this - location."}}' - headers: - cache-control: - - no-cache - content-length: - - '242' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Nov 2019 06:21:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 409 - message: Conflict -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-19T06:21:20.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"62987909C2C65518CEFF743A08CC0A5F60552CD2FDBEB960F4A3D9637086B12B","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3712' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:39 GMT - etag: - - '"1D59EA18EDD78E0"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3101' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' - headers: - cache-control: - - no-cache - content-length: - - '1136' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", - "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", - "FUNCTION_APP_EDIT_MODE": "readOnly", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": - "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '874' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' - headers: - cache-control: - - no-cache - content-length: - - '1136' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:42 GMT - etag: - - '"1D59EA19CB79D60"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", - "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", - "index.php"], "netFrameworkVersion": "v4.0", "phpVersion": "", "pythonVersion": - "", "nodeVersion": "", "linuxFxVersion": "DOCKER|functionappacrtest000004.azurecr.io/image-name:latest", - "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": - false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": - "$functionappacrtest000004", "scmType": "None", "use32BitWorkerProcess": true, - "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": - "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", - "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '1271' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3087' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:44 GMT - etag: - - '"1D59EA19CB79D60"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' - headers: - cache-control: - - no-cache - content-length: - - '1136' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", - "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", - "FUNCTION_APP_EDIT_MODE": "readOnly", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": - "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "functionappacrtest000004.azurecr.io", - "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": - "WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '1077' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' - headers: - cache-control: - - no-cache - content-length: - - '1333' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:47 GMT - etag: - - '"1D59EA19F3B8920"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' - headers: - cache-control: - - no-cache - content-length: - - '1333' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '196' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp create - Connection: - - keep-alive - ParameterSetName: - - -g -n -s --plan --runtime --deployment-container-image-name --docker-registry-server-user - --docker-registry-server-password - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3105' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container show - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' - headers: - cache-control: - - no-cache - content-length: - - '1333' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '196' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3105' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config appsettings list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' - headers: - cache-control: - - no-cache - content-length: - - '1333' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config appsettings list - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '196' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3105' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3105' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' - headers: - cache-control: - - no-cache - content-length: - - '1333' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '196' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:21:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", - "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", - "FUNCTION_APP_EDIT_MODE": "readOnly", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "functionappacrtest000004.azurecr.io", - "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": - "WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - Content-Length: - - '1029' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' - headers: - cache-control: - - no-cache - content-length: - - '1287' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:22:00 GMT - etag: - - '"1D59EA1A6C95535"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", - "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", - "index.php"], "netFrameworkVersion": "v4.0", "phpVersion": "", "pythonVersion": - "", "nodeVersion": "", "linuxFxVersion": " ", "requestTracingEnabled": false, - "remoteDebuggingEnabled": false, "remoteDebuggingVersion": "VS2017", "httpLoggingEnabled": - false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": - "$functionappacrtest000004", "scmType": "None", "use32BitWorkerProcess": true, - "webSocketsEnabled": false, "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": - "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", - "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": - []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", - "https://functions-staging.azure.com", "https://functions-next.azure.com"], - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 0}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - Content-Length: - - '1248' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" - ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' - headers: - cache-control: - - no-cache - content-length: - - '3028' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:22:00 GMT - etag: - - '"1D59EA1A6C95535"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"WWaw32IGm0oxmpZomExqmZt8wzT/ni27"}}' - headers: - cache-control: - - no-cache - content-length: - - '1287' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:22:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 - response: - body: - string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan - West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' ->>>>>>> pass test_acr_create_function_app - headers: - cache-control: - - no-cache - content-length: -<<<<<<< HEAD - - '1121' -======= - - '196' ->>>>>>> pass test_acr_create_function_app - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:22:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9", - "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", - "FUNCTION_APP_EDIT_MODE": "readOnly", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config container delete - Connection: - - keep-alive - Content-Length: - - '826' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' - headers: - cache-control: - - no-cache - content-length: - - '1090' - content-type: - - application/json - date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:37 GMT -======= - - Tue, 19 Nov 2019 06:22:03 GMT - etag: - - '"1D59EA1A89E494B"' ->>>>>>> pass test_acr_create_function_app - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains -<<<<<<< HEAD - 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: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-containerregistry/3.0.0rc7 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/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:31.8216859Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.0324878+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:35:40.8566048Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:35:44.1820143+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -2096,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:57:37 GMT + - Sun, 05 Jan 2020 09:35:45 GMT expires: - '-1' pragma: @@ -2128,17 +163,17 @@ interactions: Content-Length: - '0' ParameterSetName: - - -n + - -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-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"},{"name":"password2","value":"psK28XMXfpF+2JcXmhhkhLQh2YTz4h7T"}]}' + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"},{"name":"password2","value":"OLWXMTvzCB+Ud7RLgqFWVCo1GK8c7WBK"}]}' headers: cache-control: - no-cache @@ -2147,7 +182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:57:37 GMT + - Sun, 05 Jan 2020 09:35:47 GMT expires: - '-1' pragma: @@ -2163,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 200 message: OK @@ -2182,14 +217,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:02Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:35:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2198,7 +233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:57:39 GMT + - Sun, 05 Jan 2020 09:35:47 GMT expires: - '-1' pragma: @@ -2232,16 +267,16 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6102,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6102","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6177,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6177","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -2250,7 +285,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:57:57 GMT + - Sun, 05 Jan 2020 09:36:07 GMT expires: - '-1' pragma: @@ -2268,7 +303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1191' x-powered-by: - ASP.NET status: @@ -2290,16 +325,16 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6102,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6102","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6177,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6177","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -2308,7 +343,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:57:58 GMT + - Sun, 05 Jan 2020 09:36:09 GMT expires: - '-1' pragma: @@ -2346,14 +381,14 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4230402Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4230402Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:09.3605103Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:14.1695035Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:14.1695035Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:35:14.0913905Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -2362,7 +397,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:57:59 GMT + - Sun, 05 Jan 2020 09:36:10 GMT expires: - '-1' pragma: @@ -2398,7 +433,7 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2414,7 +449,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:00 GMT + - Sun, 05 Jan 2020 09:36:10 GMT expires: - '-1' pragma: @@ -2440,7 +475,7 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|functionappacrtest000004.azurecr.io/image-name:latest", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F"}, + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7"}, {"name": "DOCKER_CUSTOM_IMAGE_NAME", "value": "functionappacrtest000004.azurecr.io/image-name:latest"}, {"name": "FUNCTION_APP_EDIT_MODE", "value": "readOnly"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "false"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -2465,15 +500,15 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:05.1333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FF0173F791307D3174F2846BA019BD111AF9EF6C5E8D1DC0A0FC07B328D62690","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:14.7733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A1A4A08DB1F61CC215621EDA0D90ABA7EE7707518D7835EF6FB384B15F3528B4","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -2482,9 +517,9 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:23 GMT + - Sun, 05 Jan 2020 09:36:33 GMT etag: - - '"1D5BCBDA9B952B5"' + - '"1D5C3AB930F2C0B"' expires: - '-1' pragma: @@ -2502,7 +537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -2529,7 +564,7 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -2548,7 +583,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:58:24 GMT + - Sun, 05 Jan 2020 09:36:35 GMT expires: - '-1' pragma: @@ -2578,15 +613,15 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:05.9633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FF0173F791307D3174F2846BA019BD111AF9EF6C5E8D1DC0A0FC07B328D62690","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:15.1366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A1A4A08DB1F61CC215621EDA0D90ABA7EE7707518D7835EF6FB384B15F3528B4","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -2595,9 +630,9 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:24 GMT + - Sun, 05 Jan 2020 09:36:36 GMT etag: - - '"1D5BCBDA9B952B5"' + - '"1D5C3AB930F2C0B"' expires: - '-1' pragma: @@ -2635,26 +670,26 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3299' + - '3270' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:26 GMT + - Sun, 05 Jan 2020 09:36:37 GMT expires: - '-1' pragma: @@ -2694,15 +729,15 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -2711,7 +746,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:26 GMT + - Sun, 05 Jan 2020 09:36:38 GMT expires: - '-1' pragma: @@ -2737,7 +772,7 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F", + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7", "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", "FUNCTION_APP_EDIT_MODE": "readOnly", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", @@ -2761,15 +796,15 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -2778,9 +813,9 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:27 GMT + - Sun, 05 Jan 2020 09:36:40 GMT etag: - - '"1D5BCBDB6B2A720"' + - '"1D5C3ABA22C4AD5"' expires: - '-1' pragma: @@ -2798,7 +833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1186' x-powered-by: - ASP.NET status: @@ -2822,7 +857,7 @@ interactions: "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -2834,7 +869,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1554' + - '1555' Content-Type: - application/json; charset=utf-8 ParameterSetName: @@ -2842,28 +877,28 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3285' + - '3256' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:29 GMT + - Sun, 05 Jan 2020 09:36:41 GMT etag: - - '"1D5BCBDB6B2A720"' + - '"1D5C3ABA22C4AD5"' expires: - '-1' pragma: @@ -2881,7 +916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1182' x-powered-by: - ASP.NET status: @@ -2905,15 +940,15 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -2922,7 +957,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:29 GMT + - Sun, 05 Jan 2020 09:36:42 GMT expires: - '-1' pragma: @@ -2940,7 +975,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2948,14 +983,14 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F", + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7", "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", "FUNCTION_APP_EDIT_MODE": "readOnly", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": - "p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}''' + "kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}''' headers: Accept: - application/json @@ -2974,15 +1009,15 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}' headers: cache-control: - no-cache @@ -2991,9 +1026,9 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:30 GMT + - Sun, 05 Jan 2020 09:36:44 GMT etag: - - '"1D5BCBDB87342E0"' + - '"1D5C3ABA49C6075"' expires: - '-1' pragma: @@ -3011,7 +1046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1187' x-powered-by: - ASP.NET status: @@ -3035,15 +1070,15 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}' headers: cache-control: - no-cache @@ -3052,7 +1087,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:30 GMT + - Sun, 05 Jan 2020 09:36:44 GMT expires: - '-1' pragma: @@ -3070,7 +1105,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -3092,11 +1127,11 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -3109,7 +1144,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:31 GMT + - Sun, 05 Jan 2020 09:36:46 GMT expires: - '-1' pragma: @@ -3147,26 +1182,26 @@ interactions: --docker-registry-server-password User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3303' + - '3274' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:32 GMT + - Sun, 05 Jan 2020 09:36:47 GMT expires: - '-1' pragma: @@ -3205,15 +1240,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}' headers: cache-control: - no-cache @@ -3222,7 +1257,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:33 GMT + - Sun, 05 Jan 2020 09:36:49 GMT expires: - '-1' pragma: @@ -3261,11 +1296,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -3278,7 +1313,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:34 GMT + - Sun, 05 Jan 2020 09:36:49 GMT expires: - '-1' pragma: @@ -3315,26 +1350,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3303' + - '3274' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:34 GMT + - Sun, 05 Jan 2020 09:36:51 GMT expires: - '-1' pragma: @@ -3373,15 +1408,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}' headers: cache-control: - no-cache @@ -3390,7 +1425,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:35 GMT + - Sun, 05 Jan 2020 09:36:52 GMT expires: - '-1' pragma: @@ -3408,7 +1443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -3429,11 +1464,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -3446,7 +1481,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:35 GMT + - Sun, 05 Jan 2020 09:36:53 GMT expires: - '-1' pragma: @@ -3483,26 +1518,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3303' + - '3274' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:37 GMT + - Sun, 05 Jan 2020 09:36:54 GMT expires: - '-1' pragma: @@ -3539,26 +1574,26 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3303' + - '3274' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:38 GMT + - Sun, 05 Jan 2020 09:36:56 GMT expires: - '-1' pragma: @@ -3597,15 +1632,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}' headers: cache-control: - no-cache @@ -3614,7 +1649,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:38 GMT + - Sun, 05 Jan 2020 09:36:57 GMT expires: - '-1' pragma: @@ -3632,7 +1667,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -3653,11 +1688,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -3670,7 +1705,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:38 GMT + - Sun, 05 Jan 2020 09:36:58 GMT expires: - '-1' pragma: @@ -3694,13 +1729,13 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F", + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7", "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", "FUNCTION_APP_EDIT_MODE": "readOnly", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": - "p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}''' + "kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}''' headers: Accept: - application/json @@ -3718,15 +1753,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}' headers: cache-control: - no-cache @@ -3735,9 +1770,9 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:39 GMT + - Sun, 05 Jan 2020 09:36:59 GMT etag: - - '"1D5BCBDBE4B2195"' + - '"1D5C3ABADB8EFE0"' expires: - '-1' pragma: @@ -3746,8 +1781,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains -======= ->>>>>>> pass test_acr_create_function_app transfer-encoding: - chunked vary: @@ -3757,8 +1790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1194' + - '1189' x-powered-by: - ASP.NET status: @@ -3782,7 +1814,7 @@ interactions: "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": + true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": 0}}' headers: Accept: @@ -3794,36 +1826,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1531' + - '1532' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3226' + - '3197' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:41 GMT + - Sun, 05 Jan 2020 09:37:01 GMT etag: - - '"1D5BCBDBE4B2195"' + - '"1D5C3ABADB8EFE0"' expires: - '-1' pragma: @@ -3841,10 +1873,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' -======= - - '1195' ->>>>>>> pass test_acr_create_function_app + - '1196' x-powered-by: - ASP.NET status: @@ -3858,11 +1887,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: -<<<<<<< HEAD - functionapp config container delete -======= - - functionapp config appsettings list ->>>>>>> pass test_acr_create_function_app Connection: - keep-alive Content-Length: @@ -3871,44 +1896,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"p2lLUEKMqRBLdTTVTWgJlewtGD=O/nU9"}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"14A63FF694DE938746F464C069466A012136725340DBA5195B69A2A5ED607DD9","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> pass test_acr_create_function_app + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"kKsPGdqX/56qXcIqhwvWOn=nSM0oWyPJ"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1287' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:42 GMT -======= - - '1090' - content-type: - - application/json - date: - - Tue, 19 Nov 2019 06:22:04 GMT ->>>>>>> pass test_acr_create_function_app + - Sun, 05 Jan 2020 09:37:02 GMT expires: - '-1' pragma: @@ -3926,11 +1931,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11995' -======= - - '11998' ->>>>>>> pass test_acr_create_function_app + - '11996' x-powered-by: - ASP.NET status: @@ -3944,30 +1945,18 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: -<<<<<<< HEAD - functionapp config container delete -======= - - functionapp config appsettings list ->>>>>>> pass test_acr_create_function_app Connection: - keep-alive ParameterSetName: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-02-01 ->>>>>>> pass test_acr_create_function_app + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -3980,11 +1969,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:43 GMT -======= - - Tue, 19 Nov 2019 06:22:05 GMT ->>>>>>> pass test_acr_create_function_app + - Sun, 05 Jan 2020 09:37:03 GMT expires: - '-1' pragma: @@ -4006,10 +1991,9 @@ interactions: status: code: 200 message: OK -<<<<<<< HEAD - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F", + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7", "DOCKER_CUSTOM_IMAGE_NAME": "functionappacrtest000004.azurecr.io/image-name:latest", "FUNCTION_APP_EDIT_MODE": "readOnly", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", @@ -4031,15 +2015,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -4048,9 +2032,9 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:43 GMT + - Sun, 05 Jan 2020 09:37:04 GMT etag: - - '"1D5BCBDC08EF715"' + - '"1D5C3ABB0AAB8A0"' expires: - '-1' pragma: @@ -4068,7 +2052,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1192' x-powered-by: - ASP.NET status: @@ -4091,15 +2075,15 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"740ADE9E4637F65AC3B682137948E7442C08A53D013CF4214653FAC6F568CA9F","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"807502A7904B8001FCD8E1B7610667D24261B15C834CFD685E3A06B3F1F6D7E7","DOCKER_CUSTOM_IMAGE_NAME":"functionappacrtest000004.azurecr.io/image-name:latest","FUNCTION_APP_EDIT_MODE":"readOnly","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -4108,7 +2092,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:45 GMT + - Sun, 05 Jan 2020 09:37:05 GMT expires: - '-1' pragma: @@ -4147,11 +2131,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan @@ -4164,7 +2148,7 @@ interactions: content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:45 GMT + - Sun, 05 Jan 2020 09:37:06 GMT expires: - '-1' pragma: @@ -4186,6 +2170,4 @@ interactions: status: code: 200 message: OK -======= ->>>>>>> pass test_acr_create_function_app version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml index 8a99d25e49a..6b2406870d4 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_deployment_function_app.yaml @@ -14,22 +14,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:21Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:37:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:29 GMT -======= - - Wed, 13 Nov 2019 10:58:49 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:29:47 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:39 GMT expires: - '-1' pragma: @@ -80,30 +64,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:29:49.7115333Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:29:53.2294581+00:00","status":"disabled"}}}}' ->>>>>>> live test + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:37:42.5239884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:37:45.9512817+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -112,15 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:37 GMT -======= - - Wed, 13 Nov 2019 10:58:55 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:29:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:46 GMT expires: - '-1' pragma: @@ -136,15 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1185' ->>>>>>> live test + - '1187' status: code: 200 message: OK @@ -163,22 +115,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:21Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:37:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -187,15 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:37 GMT -======= - - Wed, 13 Nov 2019 10:58:56 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:29:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:47 GMT expires: - '-1' pragma: @@ -230,15 +166,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -254,15 +182,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:39 GMT -======= - - Wed, 13 Nov 2019 10:58:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:29:54 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:48 GMT expires: - '-1' pragma: @@ -280,11 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1196' -======= - - '1192' ->>>>>>> live test + - '1195' x-powered-by: - ASP.NET status: @@ -305,22 +221,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T10:58:24Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:21Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:37:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -329,15 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:39 GMT -======= - - Wed, 13 Nov 2019 10:58:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:29:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:48 GMT expires: - '-1' pragma: @@ -372,15 +272,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -388,18 +280,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"serverFarmId":6103,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6103","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - West","properties":{"serverFarmId":5693,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"serverFarmId":6160,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6160","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + West","properties":{"serverFarmId":6178,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6178","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -408,15 +290,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:57 GMT -======= - - Wed, 13 Nov 2019 10:59:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:08 GMT expires: - '-1' pragma: @@ -434,15 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1196' -======= - - '1191' ->>>>>>> Re-record test for app service -======= - - '1184' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: @@ -463,15 +329,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -479,18 +337,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"serverFarmId":6103,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6103","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - West","properties":{"serverFarmId":5693,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"serverFarmId":6160,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6160","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + West","properties":{"serverFarmId":6178,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6178","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -499,15 +347,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:58 GMT -======= - - Wed, 13 Nov 2019 10:59:16 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:13 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:09 GMT expires: - '-1' pragma: @@ -544,51 +384,23 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:08.9073819Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:08.9073819Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:08.8449217Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:58:29.1287372Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:58:29.1287372Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:58:29.0662559Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:29:26.7495528Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:29:26.7495528Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:29:26.6714357Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:17.7230341Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:17.7230341Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:37:17.6761711Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:00 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 10:59:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:15 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:10 GMT expires: - '-1' pragma: @@ -623,15 +435,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -647,15 +451,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:00 GMT -======= - - Wed, 13 Nov 2019 10:59:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:15 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:11 GMT expires: - '-1' pragma: @@ -671,15 +467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1199' -======= - - '1198' ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1194' status: code: 200 message: OK @@ -689,15 +477,7 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", -<<<<<<< HEAD -<<<<<<< HEAD - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625"}, -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162"}, ->>>>>>> Re-record test for app service -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4"}, ->>>>>>> live test + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -720,15 +500,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -736,44 +508,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:03.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"42B7FD8BF61C4F79C2BC5AF4683E3EFFCC12166AE6037E75F8A5D3667B78AF5A","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:23.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1CC3647730C5C4B3EE84D8282522811D7DF60D907471479C691E2D31E6625619","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:20.7366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0440F098A1AFFD451E6CE6E911FCCB014746930E8182080E8CEEDD70E19B9B89","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:16.3533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5BB78B2049D79E7F2E39F802EB5ADD7471725D688B2A8C6E8F5951F4227C9BD8","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '3725' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:22 GMT + - Sun, 05 Jan 2020 09:38:34 GMT etag: - - '"1D5BCBDA89D8275"' -======= - - '3720' -======= - - '3725' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:30:39 GMT - etag: -<<<<<<< HEAD - - '"1D59A11688B9F80"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF823FA5918B"' ->>>>>>> live test + - '"1D5C3ABDB82BD20"' expires: - '-1' pragma: @@ -791,15 +537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - '498' -======= - - '494' ->>>>>>> Re-record test for app service -======= - - '497' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -825,7 +563,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -844,15 +582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:23 GMT -======= - - Wed, 13 Nov 2019 10:59:41 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:40 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:35 GMT expires: - '-1' pragma: @@ -881,30 +611,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-containerregistry/3.0.0rc7 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/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:29:49.7115333Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:29:53.2294581+00:00","status":"disabled"}}}}' ->>>>>>> live test + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:37:42.5239884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:37:45.9512817+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -913,15 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:23 GMT -======= - - Wed, 13 Nov 2019 10:59:43 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:37 GMT expires: - '-1' pragma: @@ -956,30 +662,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"},{"name":"password2","value":"DJBcLN3V8M9j8+sHX7KNqF8niZ7OOBIq"}]}' -======= - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"},{"name":"password2","value":"FXNkxThSgyMQ96enK1N+PmrOD82izihs"}]}' ->>>>>>> Re-record test for app service -======= - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"},{"name":"password2","value":"4BZAJMnDDCYQuN1WhcfMdU+nOkqpB4pm"}]}' ->>>>>>> live test + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz"},{"name":"password2","value":"ntj1cip5qK7KIfylyITLoAnU/nAPeULK"}]}' headers: cache-control: - no-cache @@ -988,15 +678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:24 GMT -======= - - Wed, 13 Nov 2019 10:59:43 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:38 GMT expires: - '-1' pragma: @@ -1012,11 +694,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1195' -======= - - '1197' ->>>>>>> live test + - '1191' status: code: 200 message: OK @@ -1035,49 +713,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq/providers/Microsoft.ContainerRegistry/registries/functionappacrtestjj5sex","name":"functionappacrtestjj5sex","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtaxukv52qe62framiki27mbioow56xau3bvxuiyxigul6yogk4ib5eqpgwasfb7ei/providers/Microsoft.ContainerRegistry/registries/functionappacrtest2deqyn","name":"functionappacrtest2deqyn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' -======= - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.ContainerRegistry/registries/yugangw2acr","name":"yugangw2acr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{}}]}' ->>>>>>> Re-record test for app service -======= - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.ContainerRegistry/registries/yugangwcu","name":"yugangwcu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.ContainerRegistry/registries/yugangwcu2","name":"yugangwcu2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","identity":{"principalId":"9e7cb25c-ec58-4657-b3b3-75bbd6e5d2ae","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcu2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcu2-mi":{"principalId":"bbc185a9-94a4-4a3f-97e9-447c330fd9bd","clientId":"efc86395-63d0-4a38-ad99-6caf7e22a022"}}},"tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.ContainerRegistry/registries/yugangwvnet","name":"yugangwvnet","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{}}]}' ->>>>>>> live test + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}}]}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '1879' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 27 Dec 2019 13:58:25 GMT -======= - - '679' + - '390' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:59:45 GMT ->>>>>>> Re-record test for app service -======= - - '1704' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Dec 2019 02:30:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:39 GMT expires: - '-1' pragma: @@ -1106,30 +758,14 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-containerregistry/3.0.0rc7 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/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.6654952Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:36.9074404+00:00","status":"disabled"}}}}' -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-13T10:58:52.3020757Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-13T10:58:55.699278+00:00","status":"disabled"}}}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:29:49.7115333Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:29:53.2294581+00:00","status":"disabled"}}}}' ->>>>>>> live test + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:37:42.5239884Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:37:45.9512817+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -1138,15 +774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:26 GMT -======= - - Wed, 13 Nov 2019 10:59:45 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:45 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:41 GMT expires: - '-1' pragma: @@ -1181,30 +809,14 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"},{"name":"password2","value":"DJBcLN3V8M9j8+sHX7KNqF8niZ7OOBIq"}]}' -======= - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"},{"name":"password2","value":"FXNkxThSgyMQ96enK1N+PmrOD82izihs"}]}' ->>>>>>> Re-record test for app service -======= - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"},{"name":"password2","value":"4BZAJMnDDCYQuN1WhcfMdU+nOkqpB4pm"}]}' ->>>>>>> live test + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz"},{"name":"password2","value":"ntj1cip5qK7KIfylyITLoAnU/nAPeULK"}]}' headers: cache-control: - no-cache @@ -1213,15 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:26 GMT -======= - - Wed, 13 Nov 2019 10:59:46 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:45 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:41 GMT expires: - '-1' pragma: @@ -1237,15 +841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1189' ->>>>>>> live test + - '1196' status: code: 200 message: OK @@ -1264,15 +860,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1280,44 +868,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:04.1033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"42B7FD8BF61C4F79C2BC5AF4683E3EFFCC12166AE6037E75F8A5D3667B78AF5A","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:59:23.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1CC3647730C5C4B3EE84D8282522811D7DF60D907471479C691E2D31E6625619","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:21.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0440F098A1AFFD451E6CE6E911FCCB014746930E8182080E8CEEDD70E19B9B89","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:16.69","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5BB78B2049D79E7F2E39F802EB5ADD7471725D688B2A8C6E8F5951F4227C9BD8","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3723' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:27 GMT - etag: - - '"1D5BCBDA89D8275"' -======= - '3718' -======= - - '3723' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:46 GMT + - Sun, 05 Jan 2020 09:38:43 GMT etag: -<<<<<<< HEAD - - '"1D59A11688B9F80"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF823FA5918B"' ->>>>>>> live test + - '"1D5C3ABDB82BD20"' expires: - '-1' pragma: @@ -1354,15 +916,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1370,44 +924,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3305' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:27 GMT -======= - - '3107' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 10:59:47 GMT ->>>>>>> Re-record test for app service -======= - '3276' content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:44 GMT expires: - '-1' pragma: @@ -1446,15 +974,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1462,15 +982,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -1479,15 +991,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:28 GMT -======= - - Wed, 13 Nov 2019 10:59:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:47 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:45 GMT expires: - '-1' pragma: @@ -1505,7 +1009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11995' x-powered-by: - ASP.NET status: @@ -1513,15 +1017,7 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", ->>>>>>> Re-record test for app service -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4", ->>>>>>> live test + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' @@ -1542,15 +1038,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1558,15 +1046,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -1575,21 +1055,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:29 GMT - etag: - - '"1D5BCBDB7CF7BCB"' -======= - - Wed, 13 Nov 2019 10:59:50 GMT + - Sun, 05 Jan 2020 09:38:46 GMT etag: - - '"1D59A117882F1AB"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:50 GMT - etag: - - '"1D5BF8250BDCA0B"' ->>>>>>> live test + - '"1D5C3ABED846B40"' expires: - '-1' pragma: @@ -1607,15 +1075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1195' -======= - '1188' ->>>>>>> Re-record test for app service -======= - - '1189' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1658,15 +1118,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -1674,48 +1126,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3285' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:31 GMT - etag: - - '"1D5BCBDB7CF7BCB"' -======= - - '3087' -======= - '3256' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:52 GMT + - Sun, 05 Jan 2020 09:38:49 GMT etag: -<<<<<<< HEAD - - '"1D59A117882F1AB"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8250BDCA0B"' ->>>>>>> live test + - '"1D5C3ABED846B40"' expires: - '-1' pragma: @@ -1733,15 +1157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1194' -======= - - '1193' ->>>>>>> Re-record test for app service -======= - - '1182' ->>>>>>> live test + - '1178' x-powered-by: - ASP.NET status: @@ -1764,15 +1180,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1780,15 +1188,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -1797,15 +1197,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:31 GMT -======= - - Wed, 13 Nov 2019 10:59:52 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:50 GMT expires: - '-1' pragma: @@ -1823,15 +1215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11998' -======= - - '11999' ->>>>>>> Re-record test for app service -======= - - '11998' ->>>>>>> live test + - '11994' x-powered-by: - ASP.NET status: @@ -1839,28 +1223,12 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", ->>>>>>> Re-record test for app service -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4", ->>>>>>> live test + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": -<<<<<<< HEAD -<<<<<<< HEAD - "Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}''' -======= - "T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}''' ->>>>>>> Re-record test for app service -======= - "hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}''' ->>>>>>> live test + "Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz"}}''' headers: Accept: - application/json @@ -1878,15 +1246,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1894,15 +1254,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz"}}' headers: cache-control: - no-cache @@ -1911,21 +1263,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:33 GMT + - Sun, 05 Jan 2020 09:38:51 GMT etag: - - '"1D5BCBDB9FDF48B"' -======= - - Wed, 13 Nov 2019 10:59:54 GMT - etag: - - '"1D59A117AAA4B80"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:54 GMT - etag: - - '"1D5BF8253C9836B"' ->>>>>>> live test + - '"1D5C3ABF057AF80"' expires: - '-1' pragma: @@ -1943,15 +1283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1194' -======= - - '1190' ->>>>>>> Re-record test for app service -======= - - '1181' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -1974,15 +1306,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1990,15 +1314,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz"}}' headers: cache-control: - no-cache @@ -2007,15 +1323,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:33 GMT -======= - - Wed, 13 Nov 2019 10:59:54 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:52 GMT expires: - '-1' pragma: @@ -2033,7 +1341,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11999' x-powered-by: - ASP.NET status: @@ -2054,15 +1362,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2079,15 +1379,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:34 GMT -======= - - Wed, 13 Nov 2019 10:59:55 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:56 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:54 GMT expires: - '-1' pragma: @@ -2124,15 +1416,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2140,44 +1424,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3303' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:35 GMT -======= - - '3105' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 10:59:56 GMT ->>>>>>> Re-record test for app service -======= - '3274' content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:57 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:55 GMT expires: - '-1' pragma: @@ -2216,15 +1474,7 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2232,15 +1482,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz"}}' headers: cache-control: - no-cache @@ -2249,15 +1491,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:36 GMT -======= - - Wed, 13 Nov 2019 10:59:56 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:56 GMT expires: - '-1' pragma: @@ -2275,7 +1509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11993' x-powered-by: - ASP.NET status: @@ -2283,28 +1517,12 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625", -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162", ->>>>>>> Re-record test for app service -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4", ->>>>>>> live test + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": -<<<<<<< HEAD -<<<<<<< HEAD - "Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5", "DOCKER_ENABLE_CI": "true"}}''' -======= - "T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU", "DOCKER_ENABLE_CI": "true"}}''' ->>>>>>> Re-record test for app service -======= - "hrpqNItHq2PPhHwPjUr98p/z1fa79sDV", "DOCKER_ENABLE_CI": "true"}}''' ->>>>>>> live test + "Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz", "DOCKER_ENABLE_CI": "true"}}''' headers: Accept: - application/json @@ -2322,15 +1540,7 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -2338,15 +1548,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV","DOCKER_ENABLE_CI":"true"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz","DOCKER_ENABLE_CI":"true"}}' headers: cache-control: - no-cache @@ -2355,21 +1557,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:36 GMT - etag: - - '"1D5BCBDBC4350AB"' -======= - - Wed, 13 Nov 2019 10:59:58 GMT + - Sun, 05 Jan 2020 09:38:58 GMT etag: - - '"1D59A117CF12E40"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:59 GMT - etag: - - '"1D5BF8256A3E695"' ->>>>>>> live test + - '"1D5C3ABF433F24B"' expires: - '-1' pragma: @@ -2387,15 +1577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1193' -======= - - '1190' ->>>>>>> Re-record test for app service -======= - '1186' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -2418,15 +1600,7 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2434,15 +1608,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV","DOCKER_ENABLE_CI":"true"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz","DOCKER_ENABLE_CI":"true"}}' headers: cache-control: - no-cache @@ -2451,15 +1617,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:37 GMT -======= - - Wed, 13 Nov 2019 10:59:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:00 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:59 GMT expires: - '-1' pragma: @@ -2477,15 +1635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11999' -======= - - '11998' ->>>>>>> Re-record test for app service -======= - '11996' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -2506,15 +1656,7 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2531,15 +1673,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:37 GMT -======= - - Wed, 13 Nov 2019 10:59:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:01 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:00 GMT expires: - '-1' pragma: @@ -2578,15 +1712,7 @@ interactions: - -g -n --enable-cd User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2594,15 +1720,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/publishingcredentials/$functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg@functionappacrtest000004.scm.azurewebsites.net"}}' -======= - West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR@functionappacrtest000004.scm.azurewebsites.net"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj@functionappacrtest000004.scm.azurewebsites.net"}}' ->>>>>>> live test + West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"9BluFgQw6XxBhPfsgkbBj7FkjwR2k8cNyYygbHdiqwYymdwFgR0nMbCcwBNs","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:9BluFgQw6XxBhPfsgkbBj7FkjwR2k8cNyYygbHdiqwYymdwFgR0nMbCcwBNs@functionappacrtest000004.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -2611,15 +1729,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:38 GMT -======= - - Wed, 13 Nov 2019 10:59:59 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:02 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:01 GMT expires: - '-1' pragma: @@ -2637,7 +1747,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11995' x-powered-by: - ASP.NET status: @@ -2660,15 +1770,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2676,15 +1778,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"E8EE0F6338EEE221D81BFAF062BC12C22E063603B25AB6CCDBE6B13EF68B5625","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Yo/lWwhhFg47YV7mVb+HES1/SVB/fSj5","DOCKER_ENABLE_CI":"true"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"425BCAFF350C48ED3D9EAC71BE371862F8C1B95AD8B7C55FF69588B8A02F0162","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"T9UtiSf5=EB7TsWSJb3WqcihlEMAB8pU","DOCKER_ENABLE_CI":"true"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"87F2FEE4FFCBD6FA9668E88536B663D36518C49669A32B1144B6A6DAA53AF2A4","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"hrpqNItHq2PPhHwPjUr98p/z1fa79sDV","DOCKER_ENABLE_CI":"true"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"BAAC18EA033886E1896951B5C9ED0183F573450B67415B69076735F97DC02C73","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"Nd4/qrCCBnZ5YTOpxg7U9IwNVPwAXrrz","DOCKER_ENABLE_CI":"true"}}' headers: cache-control: - no-cache @@ -2693,15 +1787,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:39 GMT -======= - - Wed, 13 Nov 2019 11:00:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:03 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:02 GMT expires: - '-1' pragma: @@ -2719,15 +1805,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11996' -======= - - '11998' ->>>>>>> Re-record test for app service -======= - - '11995' ->>>>>>> live test + - '11997' x-powered-by: - ASP.NET status: @@ -2748,15 +1826,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2773,15 +1843,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:39 GMT -======= - - Wed, 13 Nov 2019 11:00:02 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:04 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:03 GMT expires: - '-1' pragma: @@ -2820,15 +1882,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2836,15 +1890,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/publishingcredentials/$functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:LFHKt6ju7892RibMXnWqsCeRCbm2pGmwMTBQuqaTJHsWCba11tdacSQQmZLg@functionappacrtest000004.scm.azurewebsites.net"}}' -======= - West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:YW9c1mWbdaLP2nT8ynhYkwDZ7hsBigxK81v8mZPhuvTHnQaXkHP1yu55k0NR@functionappacrtest000004.scm.azurewebsites.net"}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:gqnW5AdSc4ldyuNl5gAxXcXkcyEP80SzLqoRngnHnytluuNwmKs5gi3xLubj@functionappacrtest000004.scm.azurewebsites.net"}}' ->>>>>>> live test + West","properties":{"name":null,"publishingUserName":"$functionappacrtest000004","publishingPassword":"9BluFgQw6XxBhPfsgkbBj7FkjwR2k8cNyYygbHdiqwYymdwFgR0nMbCcwBNs","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$functionappacrtest000004:9BluFgQw6XxBhPfsgkbBj7FkjwR2k8cNyYygbHdiqwYymdwFgR0nMbCcwBNs@functionappacrtest000004.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -2853,15 +1899,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:40 GMT -======= - - Wed, 13 Nov 2019 11:00:03 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:05 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:04 GMT expires: - '-1' pragma: @@ -2879,7 +1917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11992' x-powered-by: - ASP.NET status: @@ -2902,15 +1940,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -2924,21 +1954,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:47 GMT - etag: - - '"1D5BCBDBC4350AB"' -======= - - Wed, 13 Nov 2019 11:00:09 GMT - etag: - - '"1D59A117CF12E40"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:11 GMT + - Sun, 05 Jan 2020 09:39:10 GMT etag: - - '"1D5BF8256A3E695"' ->>>>>>> live test + - '"1D5C3ABF433F24B"' expires: - '-1' pragma: @@ -2952,15 +1970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14999' -======= - - '14996' ->>>>>>> Re-record test for app service -======= - - '14995' ->>>>>>> live test + - '14994' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml index 8f641fa968a..d8162000502 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml @@ -14,22 +14,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:32:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:29 GMT -======= - - Thu, 14 Nov 2019 01:41:34 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:33 GMT expires: - '-1' pragma: @@ -80,30 +64,14 @@ interactions: - --admin-enabled -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.3685388Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:37.3684618+00:00","status":"disabled"}}}}' -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-11-14T01:41:35.7749709Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-11-14T01:41:38.3164876+00:00","status":"disabled"}}}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:28:32.7615172Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:28:35.9208737+00:00","status":"disabled"}}}}' ->>>>>>> live test + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:32:38.7912529Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:32:42.8907909+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -112,15 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:37 GMT -======= - - Thu, 14 Nov 2019 01:41:37 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:42 GMT expires: - '-1' pragma: @@ -136,15 +96,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1195' -======= - - '1188' ->>>>>>> Re-record test for app service -======= - - '1187' ->>>>>>> live test + - '1197' status: code: 200 message: OK @@ -163,22 +115,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:32:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -187,15 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:38 GMT -======= - - Thu, 14 Nov 2019 01:41:38 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:44 GMT expires: - '-1' pragma: @@ -230,15 +166,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -254,15 +182,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:38 GMT -======= - - Thu, 14 Nov 2019 01:41:40 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:38 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:45 GMT expires: - '-1' pragma: @@ -280,11 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1197' -======= - - '1194' ->>>>>>> live test + - '1198' x-powered-by: - ASP.NET status: @@ -305,22 +221,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:57:03Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:08Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:32:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -329,15 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:39 GMT -======= - - Thu, 14 Nov 2019 01:41:40 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:46 GMT expires: - '-1' pragma: @@ -372,15 +272,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -388,18 +280,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"serverFarmId":6104,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - West","properties":{"serverFarmId":5707,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5707","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"serverFarmId":6158,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6158","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + West","properties":{"serverFarmId":6176,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6176","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -408,15 +290,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:58 GMT -======= - - Thu, 14 Nov 2019 01:41:56 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:57 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:06 GMT expires: - '-1' pragma: @@ -434,15 +308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1196' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - - '1186' ->>>>>>> live test + - '1198' x-powered-by: - ASP.NET status: @@ -463,15 +329,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -479,18 +337,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan -<<<<<<< HEAD -<<<<<<< HEAD - West","properties":{"serverFarmId":6104,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6104","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - West","properties":{"serverFarmId":5707,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_5707","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - West","properties":{"serverFarmId":6158,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6158","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + West","properties":{"serverFarmId":6176,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6176","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -499,15 +347,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:59 GMT -======= - - Thu, 14 Nov 2019 01:41:57 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:11 GMT expires: - '-1' pragma: @@ -544,55 +384,23 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4073947Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:09.4073947Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:09.3605103Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:13.4461171Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:13.4461171Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:41:13.3679949Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:28:10.4194884Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:28:10.4194884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:28:10.3413490Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:32:14.1507728Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:32:14.1507728Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:32:14.0726339Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:00 GMT -======= - - '1168' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:41:58 GMT ->>>>>>> Re-record test for app service -======= - - '1168' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:28:59 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:12 GMT expires: - '-1' pragma: @@ -627,15 +435,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -651,15 +451,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:00 GMT -======= - - Thu, 14 Nov 2019 01:41:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:28:59 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:13 GMT expires: - '-1' pragma: @@ -675,15 +467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> Re-record test for app service -======= - - '1190' ->>>>>>> live test + - '1196' status: code: 200 message: OK @@ -693,15 +477,7 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", -<<<<<<< HEAD -<<<<<<< HEAD - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486"}, -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "A91352A5354BD958A1E81E787625A08C3639170743C01D3E32F951ADF186FEAE"}, ->>>>>>> Re-record test for app service -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E"}, ->>>>>>> live test + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -724,26 +500,69 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.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.Web/sites/functionappacrtest000004?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan -<<<<<<< HEAD - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:05.0166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1E9AF8C2BF2D32587B39C953004B0BF4D44438B44C39DE257CEBE96E9C6DF7EB","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:03.33","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"455B1DCB19A4AB97719FEF98EDBE62C82D3ED9138CF26F34601F3A63B4435C86","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.Web'' within the specified time period."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '141' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 05 Jan 2020 09:34:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + status: + code: 504 + message: Gateway Timeout +- request: + body: 'b''{"kind": "functionapp,linux", "location": "Japan West", "properties": + {"serverFarmId": "acrtestplanfunction000003", "reserved": true, "isXenon": false, + "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": + "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": + [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092"}, + {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", + "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, + {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, + {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}], "alwaysOn": true, + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - functionapp create + Connection: + - keep-alive + Content-Length: + - '1260' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -s --plan --runtime + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -751,39 +570,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:04.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2712CE839A7AE09942545C3F42718ECDB735053BAA79A0525C65B7B23577DF5D","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:19.49","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"49AE0AB4083A883BD86B959A94A3B98080F23350CF8B1B719D499F76D33EF140","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3725' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:23 GMT - etag: - - '"1D5BCBDA974A895"' -======= - '3720' content-type: - application/json date: - - Thu, 14 Nov 2019 01:42:20 GMT + - Sun, 05 Jan 2020 09:34:21 GMT etag: - - '"1D59A8CB74D67E0"' ->>>>>>> Re-record test for app service -======= - - '3725' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:29:23 GMT - etag: - - '"1D5BF8211F83FF5"' ->>>>>>> live test + - '"1D5C3AB2985F5CB"' expires: - '-1' pragma: @@ -801,7 +599,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -827,7 +625,7 @@ interactions: - -g -n -s --plan --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -846,15 +644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:24 GMT -======= - - Thu, 14 Nov 2019 01:42:21 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:29:23 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:23 GMT expires: - '-1' pragma: @@ -883,68 +673,14 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq/providers/Microsoft.ContainerRegistry/registries/functionappacrtestjj5sex","name":"functionappacrtestjj5sex","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglplchoujaebmh2yq2poi4e7aq57a3bn3lfprsb6sakl5vtfjw6eqw2k5fac7w5dbv/providers/Microsoft.ContainerRegistry/registries/functionappacrtestmlrcel","name":"functionappacrtestmlrcel","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1879' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 27 Dec 2019 13:58:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - acr credential show - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= ->>>>>>> live test - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-containerregistry/3.0.0rc7 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/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: -<<<<<<< HEAD - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.3685388Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:37.3684618+00:00","status":"disabled"}}}}' -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:28:32.7615172Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:28:35.9208737+00:00","status":"disabled"}}}}' ->>>>>>> live test + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:32:38.7912529Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:32:42.8907909+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -953,11 +689,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:26 GMT -======= - - Tue, 31 Dec 2019 02:29:25 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:24 GMT expires: - '-1' pragma: @@ -992,18 +724,14 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: -<<<<<<< HEAD - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"},{"name":"password2","value":"gj=8SgCdvomjuIBNNt6GPPAW35FJMAQy"}]}' -======= - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"},{"name":"password2","value":"k1NW6Q/BST=NayN6dKYfk8mEwvKrx/NG"}]}' ->>>>>>> live test + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"},{"name":"password2","value":"afYL71dLsBCV5eeIXQibHakADvfn=EvH"}]}' headers: cache-control: - no-cache @@ -1012,11 +740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:26 GMT -======= - - Tue, 31 Dec 2019 02:29:26 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:25 GMT expires: - '-1' pragma: @@ -1032,11 +756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1195' -======= - - '1194' ->>>>>>> live test + - '1199' status: code: 200 message: OK @@ -1055,37 +775,23 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb2wualxmxxlgc2mpoc3ndcpq5kjcer7icbraonbqt5lwlngjapx5u2xmzgmk43fhq/providers/Microsoft.ContainerRegistry/registries/functionappacrtestjj5sex","name":"functionappacrtestjj5sex","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglplchoujaebmh2yq2poi4e7aq57a3bn3lfprsb6sakl5vtfjw6eqw2k5fac7w5dbv/providers/Microsoft.ContainerRegistry/registries/functionappacrtestmlrcel","name":"functionappacrtestmlrcel","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.ContainerRegistry/registries/yugangwcan","name":"yugangwcan","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"principalId":"3f59c587-e471-4ad9-9af5-8db7cea49876","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcan/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcan-mi":{"principalId":"69a09ddc-dee8-486c-9a8f-380da17b55f4","clientId":"32bf656e-1235-4fae-b82b-8d9fcdbc8bb7"}}},"tags":{}}]}' -======= - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgi2tn2nfhgyprqlsmzfr7lp6bgkeqqhlj2pb76zu52o6zgwccvj7axgfz2b6nw267c/providers/Microsoft.ContainerRegistry/registries/functionappacrtestngx6pk","name":"functionappacrtestngx6pk","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.ContainerRegistry/registries/yugangwcu","name":"yugangwcu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.ContainerRegistry/registries/yugangwcu2","name":"yugangwcu2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westcentralus","identity":{"principalId":"9e7cb25c-ec58-4657-b3b3-75bbd6e5d2ae","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/yugangwcu2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/yugangwcu2-mi":{"principalId":"bbc185a9-94a4-4a3f-97e9-447c330fd9bd","clientId":"efc86395-63d0-4a38-ad99-6caf7e22a022"}}},"tags":{}}]}' ->>>>>>> live test + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"japanwest","tags":{}}]}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '1879' + - '390' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:58:27 GMT -======= - - '1793' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Dec 2019 02:29:27 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:26 GMT expires: - '-1' pragma: @@ -1114,18 +820,14 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-containerregistry/3.0.0rc7 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/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 response: body: -<<<<<<< HEAD - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-27T13:57:33.3685388Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-27T13:57:37.3684618+00:00","status":"disabled"}}}}' -======= - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2019-12-31T02:28:32.7615172Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2019-12-31T02:28:35.9208737+00:00","status":"disabled"}}}}' ->>>>>>> live test + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"japanwest","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2020-01-05T09:32:38.7912529Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2020-01-05T09:32:42.8907909+00:00","status":"disabled"}}}}' headers: cache-control: - no-cache @@ -1134,11 +836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:27 GMT -======= - - Tue, 31 Dec 2019 02:29:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:28 GMT expires: - '-1' pragma: @@ -1173,18 +871,14 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-containerregistry/3.0.0rc7 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.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: -<<<<<<< HEAD - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"},{"name":"password2","value":"gj=8SgCdvomjuIBNNt6GPPAW35FJMAQy"}]}' -======= - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"},{"name":"password2","value":"k1NW6Q/BST=NayN6dKYfk8mEwvKrx/NG"}]}' ->>>>>>> live test + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"},{"name":"password2","value":"afYL71dLsBCV5eeIXQibHakADvfn=EvH"}]}' headers: cache-control: - no-cache @@ -1193,11 +887,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:27 GMT -======= - - Tue, 31 Dec 2019 02:29:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:28 GMT expires: - '-1' pragma: @@ -1213,11 +903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1197' -======= - - '1195' ->>>>>>> live test + - '1198' status: code: 200 message: OK @@ -1236,11 +922,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1248,28 +930,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"Japan -<<<<<<< HEAD - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:05.5133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1E9AF8C2BF2D32587B39C953004B0BF4D44438B44C39DE257CEBE96E9C6DF7EB","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:29:04.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2712CE839A7AE09942545C3F42718ECDB735053BAA79A0525C65B7B23577DF5D","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + West","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:19.49","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappacrtest000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"49AE0AB4083A883BD86B959A94A3B98080F23350CF8B1B719D499F76D33EF140","kind":"functionapp,linux,container","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3723' + - '3718' content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:28 GMT - etag: - - '"1D5BCBDA974A895"' -======= - - Tue, 31 Dec 2019 02:29:29 GMT + - Sun, 05 Jan 2020 09:34:30 GMT etag: - - '"1D5BF8211F83FF5"' ->>>>>>> live test + - '"1D5C3AB4E20E420"' expires: - '-1' pragma: @@ -1306,11 +978,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1320,28 +988,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3305' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:29 GMT -======= - '3276' content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:29 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:30 GMT expires: - '-1' pragma: @@ -1380,11 +1036,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1392,11 +1044,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -1405,11 +1053,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:30 GMT -======= - - Tue, 31 Dec 2019 02:29:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:31 GMT expires: - '-1' pragma: @@ -1435,11 +1079,7 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", ->>>>>>> live test + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' @@ -1460,11 +1100,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1472,11 +1108,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -1485,15 +1117,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:31 GMT - etag: - - '"1D5BCBDB8BC80E0"' -======= - - Tue, 31 Dec 2019 02:29:31 GMT + - Sun, 05 Jan 2020 09:34:32 GMT etag: - - '"1D5BF822269A420"' ->>>>>>> live test + - '"1D5C3AB5645C015"' expires: - '-1' pragma: @@ -1511,11 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - '1191' -======= - - '1185' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1558,11 +1180,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -1572,32 +1190,18 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3285' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:33 GMT - etag: - - '"1D5BCBDB8BC80E0"' -======= - '3256' content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:33 GMT + - Sun, 05 Jan 2020 09:34:35 GMT etag: - - '"1D5BF822269A420"' ->>>>>>> live test + - '"1D5C3AB5645C015"' expires: - '-1' pragma: @@ -1615,11 +1219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1197' -======= - '1196' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1642,11 +1242,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1654,11 +1250,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -1667,11 +1259,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:33 GMT -======= - - Tue, 31 Dec 2019 02:29:33 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:36 GMT expires: - '-1' pragma: @@ -1689,11 +1277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11999' -======= - '11998' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1701,20 +1285,12 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", ->>>>>>> live test + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": -<<<<<<< HEAD - "wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}''' -======= - "SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}''' ->>>>>>> live test + "7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}''' headers: Accept: - application/json @@ -1732,11 +1308,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1744,11 +1316,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}' headers: cache-control: - no-cache @@ -1757,15 +1325,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:34 GMT - etag: - - '"1D5BCBDBAE1D1E0"' -======= - - Tue, 31 Dec 2019 02:29:35 GMT + - Sun, 05 Jan 2020 09:34:37 GMT etag: - - '"1D5BF82245806A0"' ->>>>>>> live test + - '"1D5C3AB590F5A60"' expires: - '-1' pragma: @@ -1783,11 +1345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1194' -======= - - '1184' ->>>>>>> live test + - '1193' x-powered-by: - ASP.NET status: @@ -1810,11 +1368,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1822,11 +1376,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}' headers: cache-control: - no-cache @@ -1835,11 +1385,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:35 GMT -======= - - Tue, 31 Dec 2019 02:29:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:38 GMT expires: - '-1' pragma: @@ -1857,7 +1403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1878,11 +1424,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1899,11 +1441,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:35 GMT -======= - - Tue, 31 Dec 2019 02:29:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:39 GMT expires: - '-1' pragma: @@ -1940,11 +1478,7 @@ interactions: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1954,28 +1488,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3303' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:36 GMT -======= - '3274' content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:37 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:40 GMT expires: - '-1' pragma: @@ -2014,11 +1536,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2026,11 +1544,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}' headers: cache-control: - no-cache @@ -2039,11 +1553,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:37 GMT -======= - - Tue, 31 Dec 2019 02:29:38 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:42 GMT expires: - '-1' pragma: @@ -2061,7 +1571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -2082,11 +1592,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2103,11 +1609,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:37 GMT -======= - - Tue, 31 Dec 2019 02:29:38 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:43 GMT expires: - '-1' pragma: @@ -2144,11 +1646,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2158,28 +1656,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3303' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:37 GMT -======= - '3274' content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:43 GMT expires: - '-1' pragma: @@ -2218,11 +1704,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2230,11 +1712,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}' headers: cache-control: - no-cache @@ -2243,11 +1721,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:39 GMT -======= - - Tue, 31 Dec 2019 02:29:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:45 GMT expires: - '-1' pragma: @@ -2265,11 +1739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11997' -======= - - '11999' ->>>>>>> live test + - '11998' x-powered-by: - ASP.NET status: @@ -2290,11 +1760,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2311,11 +1777,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:39 GMT -======= - - Tue, 31 Dec 2019 02:29:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:45 GMT expires: - '-1' pragma: @@ -2352,11 +1814,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2366,28 +1824,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3303' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:40 GMT -======= - '3274' content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:46 GMT expires: - '-1' pragma: @@ -2426,11 +1872,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2438,11 +1880,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}' headers: cache-control: - no-cache @@ -2451,11 +1889,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:40 GMT -======= - - Tue, 31 Dec 2019 02:29:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:48 GMT expires: - '-1' pragma: @@ -2473,11 +1907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11999' -======= - - '11996' ->>>>>>> live test + - '11997' x-powered-by: - ASP.NET status: @@ -2498,11 +1928,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2519,11 +1945,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:42 GMT -======= - - Tue, 31 Dec 2019 02:29:44 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:49 GMT expires: - '-1' pragma: @@ -2547,20 +1969,12 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", ->>>>>>> live test + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": -<<<<<<< HEAD - "wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}''' -======= - "SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}''' ->>>>>>> live test + "7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}''' headers: Accept: - application/json @@ -2578,11 +1992,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -2590,11 +2000,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}' headers: cache-control: - no-cache @@ -2603,15 +2009,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:42 GMT + - Sun, 05 Jan 2020 09:34:50 GMT etag: - - '"1D5BCBDBF96C16B"' -======= - - Tue, 31 Dec 2019 02:29:44 GMT - etag: - - '"1D5BF822A1A0660"' ->>>>>>> live test + - '"1D5C3AB6022100B"' expires: - '-1' pragma: @@ -2629,11 +2029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1195' -======= - - '1189' ->>>>>>> live test + - '1193' x-powered-by: - ASP.NET status: @@ -2676,11 +2072,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -2691,32 +2083,18 @@ interactions: West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":" ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3226' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:43 GMT - etag: - - '"1D5BCBDBF96C16B"' -======= - '3197' content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:46 GMT + - Sun, 05 Jan 2020 09:34:51 GMT etag: - - '"1D5BF822A1A0660"' ->>>>>>> live test + - '"1D5C3AB6022100B"' expires: - '-1' pragma: @@ -2734,11 +2112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - '1193' -======= - - '1186' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -2761,11 +2135,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2773,11 +2143,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"wcfjT9nKa8N/9YYAfLoUBYZvopdBlIFl"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"SYNnF55PJ2nCjh=OyuBb8A31ubEhprUa"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"7NA4Y9XR+2z8fjGrGLn4iksA7m5XuhHx"}}' headers: cache-control: - no-cache @@ -2786,11 +2152,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:44 GMT -======= - - Tue, 31 Dec 2019 02:29:47 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:52 GMT expires: - '-1' pragma: @@ -2808,11 +2170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - '11998' -======= - - '11994' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -2833,40 +2191,24 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-containerregistry/3.0.0rc7 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2019-05-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2019-08-01 ->>>>>>> live test response: body: - string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group - ''westus'' could not be found."}}' + string: '{"id":null,"name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"Japan + West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' headers: cache-control: - no-cache content-length: - - '98' + - '196' content-type: -<<<<<<< HEAD - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:45 GMT -======= - - Tue, 31 Dec 2019 02:29:48 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:54 GMT expires: - '-1' pragma: @@ -2890,11 +2232,7 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486", -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E", ->>>>>>> live test + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_NODE_DEFAULT_VERSION": "~10"}}''' @@ -2915,11 +2253,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -2927,11 +2261,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -2940,15 +2270,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:45 GMT - etag: - - '"1D5BCBDC1AE56CB"' -======= - - Tue, 31 Dec 2019 02:29:48 GMT + - Sun, 05 Jan 2020 09:34:54 GMT etag: - - '"1D5BF822C77CC80"' ->>>>>>> live test + - '"1D5C3AB63200DCB"' expires: - '-1' pragma: @@ -2966,11 +2290,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1191' -======= - - '1185' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -2993,11 +2313,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -3005,11 +2321,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan -<<<<<<< HEAD - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4F6FDB2B37C8D54968AA952C4FD5121463CE54CE58BCE72E809DD2F768E5F486","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"ED1CD37D9585BFA0C144FB17A9AB1B233DD5AB0D6E79BA79B1EAA7E4BF68CF4E","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + West","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"70CEF5B3F701BBA7E68749744C84048F31782014959B735B9392A21EBFC44092","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -3018,11 +2330,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:47 GMT -======= - - Tue, 31 Dec 2019 02:29:49 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:56 GMT expires: - '-1' pragma: @@ -3040,11 +2348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11997' -======= - - '11994' ->>>>>>> live test + - '11999' x-powered-by: - ASP.NET status: @@ -3065,11 +2369,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3086,11 +2386,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:48 GMT -======= - - Tue, 31 Dec 2019 02:29:50 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:56 GMT expires: - '-1' pragma: @@ -3129,11 +2425,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -3147,42 +2439,26 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:53 GMT + - Sun, 05 Jan 2020 09:35:04 GMT etag: - - '"1D5BCBDC1AE56CB"' -======= - - application/json; charset=utf-8 - date: - - Thu, 14 Nov 2019 01:42:22 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:29:56 GMT - etag: - - '"1D5BF822C77CC80"' ->>>>>>> live test + - '"1D5C3AB63200DCB"' expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff -<<<<<<< HEAD x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD - - '14998' -======= - - '14996' ->>>>>>> live test + - '14999' x-powered-by: - ASP.NET -======= - x-ms-failure-cause: - - gateway ->>>>>>> Re-record test for app service status: - code: 404 - message: Not Found + code: 200 + message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml index 3e60fc2b28f..3efb5a14d74 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml @@ -14,15 +14,7 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,15 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:51 GMT -======= - - Thu, 14 Nov 2019 01:38:45 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:29 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:14 GMT expires: - '-1' pragma: @@ -158,30 +142,14 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1658203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1658203Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.1189940Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6105062Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6105062Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:25.5323440Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.3661618Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.3661618Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:10.3192884Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.3843441Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.3843441Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:52.3061993Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -190,15 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:51 GMT -======= - - Thu, 14 Nov 2019 01:38:46 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:14 GMT expires: - '-1' pragma: @@ -233,15 +193,7 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -257,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:52 GMT -======= - - Thu, 14 Nov 2019 01:38:46 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:14 GMT expires: - '-1' pragma: @@ -281,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - '1197' ->>>>>>> Re-record test for app service -======= - - '1199' ->>>>>>> live test status: code: 200 message: OK @@ -320,59 +256,25 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.4766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D84CA1749759018BB1A2B764D13033E6E697EF01DEAFB5E282EAD234AEA402E6","kind":"functionapp","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:05.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"69AFFB94E4A32F8CE2B3EAECF314FAAF0454A38D7B1B2D175E747AFE11AB3CA1","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-015.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:42.697","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"632480D605713BC7557946275C95FBC0CD74F704579F1C32EA593F06DB5B6D92","kind":"functionapp","inboundIpAddress":"23.100.46.198","possibleInboundIpAddresses":"23.100.46.198","outboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","possibleOutboundIpAddresses":"23.100.40.244,23.100.40.246,23.100.40.2,23.100.32.186","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-015","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:24.513","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BCC83207C40C43C5BF8453C05EB71C1AEBC64513D068D3F9FC6FEE4B83649966","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3606' + - '3661' content-type: - application/json date: - - Fri, 27 Dec 2019 13:56:38 GMT + - Sun, 05 Jan 2020 09:32:59 GMT etag: - - '"1D5BCBD60688100"' -======= - - '3660' -======= - - '3535' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:23:19 GMT - etag: -<<<<<<< HEAD - - '"1D59A8C4D5FF190"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF812F076D80"' ->>>>>>> live test + - '"1D5C3AB09F6F0A0"' expires: - '-1' pragma: @@ -416,30 +318,14 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30054e8-0000-0700-0000-5e060d9c0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"88085aae-84f9-4638-9308-8124bccc7763","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"af1c2150-c887-4d9c-8e56-900dd9cb13d2","ConnectionString":"InstrumentationKey=af1c2150-c887-4d9c-8e56-900dd9cb13d2","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:44.2940497+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801dfbe-0000-0700-0000-5dccb0620000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"25b470a3-6702-449b-bfa1-ea48e31c40d6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66b28c54-c2b4-410e-8d10-c6ff3806d3a9","ConnectionString":"InstrumentationKey=66b28c54-c2b4-410e-8d10-c6ff3806d3a9","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:45.9905593+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0003e33-0000-0700-0000-5e0ab11f0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c504c088-3e38-4d55-a045-7f18b3d439fd","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"12a1728a-63f6-472d-bd62-404edf216e32","ConnectionString":"InstrumentationKey=12a1728a-63f6-472d-bd62-404edf216e32","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:27.5981628+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501ae26-0000-0700-0000-5e11ad540000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"aa785526-cb59-4cb6-90de-ac4ec7c9c955","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"252ee588-bb86-4074-9075-6262bc18437c","ConnectionString":"InstrumentationKey=252ee588-bb86-4074-9075-6262bc18437c","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:33:08.0876484+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -450,15 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:48 GMT -======= - - Thu, 14 Nov 2019 01:39:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:09 GMT expires: - '-1' pragma: @@ -476,15 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1196' ->>>>>>> Re-record test for app service -======= - - '1195' ->>>>>>> live test + - '1194' x-powered-by: - ASP.NET status: @@ -507,15 +377,7 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -532,15 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:48 GMT -======= - - Thu, 14 Nov 2019 01:39:50 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:29 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:10 GMT expires: - '-1' pragma: @@ -558,7 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -571,15 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "af1c2150-c887-4d9c-8e56-900dd9cb13d2"}}''' -======= - "66b28c54-c2b4-410e-8d10-c6ff3806d3a9"}}''' ->>>>>>> Re-record test for app service -======= - "12a1728a-63f6-472d-bd62-404edf216e32"}}''' ->>>>>>> live test + "252ee588-bb86-4074-9075-6262bc18437c"}}''' headers: Accept: - application/json @@ -597,15 +443,7 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -613,15 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"af1c2150-c887-4d9c-8e56-900dd9cb13d2"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"66b28c54-c2b4-410e-8d10-c6ff3806d3a9"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"12a1728a-63f6-472d-bd62-404edf216e32"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"252ee588-bb86-4074-9075-6262bc18437c"}}' headers: cache-control: - no-cache @@ -630,21 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:51 GMT + - Sun, 05 Jan 2020 09:33:12 GMT etag: - - '"1D5BCBD7C6B1E15"' -======= - - Thu, 14 Nov 2019 01:39:52 GMT - etag: - - '"1D59A8C685382A0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:33 GMT - etag: - - '"1D5BF814B8D3750"' ->>>>>>> live test + - '"1D5C3AB259D08D0"' expires: - '-1' pragma: @@ -662,7 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1186' x-powered-by: - ASP.NET status: @@ -683,15 +501,7 @@ interactions: - -g -n --rule-name --action --ip-address --priority User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -699,26 +509,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3212' + - '3211' content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:51 GMT -======= - - Thu, 14 Nov 2019 01:39:53 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:34 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:13 GMT expires: - '-1' pragma: @@ -778,15 +580,7 @@ interactions: - -g -n --rule-name --action --ip-address --priority User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -794,42 +588,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: - - '3303' + - '3302' content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:55 GMT - etag: - - '"1D5BCBD7C6B1E15"' -======= - - Thu, 14 Nov 2019 01:39:56 GMT - etag: - - '"1D59A8C685382A0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:38 GMT + - Sun, 05 Jan 2020 09:33:16 GMT etag: - - '"1D5BF814B8D3750"' ->>>>>>> live test + - '"1D5C3AB259D08D0"' expires: - '-1' pragma: @@ -847,15 +619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1193' ->>>>>>> Re-record test for app service -======= - - '1198' ->>>>>>> live test + - '1188' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml index 22a902f5b08..0222e0cdc33 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml @@ -14,15 +14,7 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,19 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:52 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Thu, 14 Nov 2019 01:38:45 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:29 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:15 GMT expires: - '-1' pragma: @@ -161,42 +141,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5877145Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5877145Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.5095665Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.1955557Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.1955557Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.1173948Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:24.8604564Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:24.8604564Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:24.7823657Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.6630358Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.6630358Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:09.6161438Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:53.1812069Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:53.1812069Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:53.1031242Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -205,19 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:52 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Thu, 14 Nov 2019 01:38:45 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:14 GMT expires: - '-1' pragma: @@ -251,23 +192,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -283,19 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:52 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:56 GMT -======= - - Thu, 14 Nov 2019 01:38:46 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:15 GMT expires: - '-1' pragma: @@ -341,79 +255,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:00.02","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A80D5FE8B93333EF4670E77F9303194F768EF994FFF068768BD393551AA47EB5","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:04.97","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D2ABC37B729140CC2384CDEF0356D708F53EE06B83B3F4575D65CF2012D6E9D","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:06.96","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AEFBD01849D2F4B503CA7E0DAA3D1FAB8AE1E06B53AB93B8D968E950329447AE","kind":"functionapp","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-057.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:38.147","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"856D49449DED31B833B0F77E44840AB13AAA907F30C32840F4A2280C9FB4D60B","kind":"functionapp","inboundIpAddress":"13.91.40.166","possibleInboundIpAddresses":"13.91.40.166","outboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","possibleOutboundIpAddresses":"13.91.42.207,13.91.44.111,13.91.40.156,13.91.41.150","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-057","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:23.58","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F9B1CF9D7F832FC0386EF2A173D8F135017F4426AB514BA8282559E786BCF707","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3544' -======= -<<<<<<< HEAD - - '3637' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:56:35 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBD5F0DABF0"' -======= - - '"1D599EAAB9DB215"' -======= - - '3607' -======= - - '3529' ->>>>>>> live test + - '3530' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:13 GMT + - Sun, 05 Jan 2020 09:32:59 GMT etag: -<<<<<<< HEAD - - '"1D59A8C4E5FD560"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '"1D5BF812C0F1510"' ->>>>>>> live test + - '"1D5C3AB096F2300"' expires: - '-1' pragma: @@ -456,72 +317,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30040e8-0000-0700-0000-5e060d9b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"330b5c97-d73e-4c59-922e-fa9c25c254ee","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"1902db55-b4ac-49c2-ab2b-fdd54e8d451e","ConnectionString":"InstrumentationKey=1902db55-b4ac-49c2-ab2b-fdd54e8d451e","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:43.325334+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900dd5f-0000-0700-0000-5dcba1340000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c3e9a176-0cb8-4352-90ae-5897aebceaf9","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d72fee1f-6404-41f1-99dc-c7f7729b2e98","ConnectionString":"InstrumentationKey=d72fee1f-6404-41f1-99dc-c7f7729b2e98","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:44.626398+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801e5be-0000-0700-0000-5dccb0620000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cd96a6bf-644a-4843-b6c8-0b074ad5eb7d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"9b5fc5f2-db6b-4318-8360-3a007b7ed005","ConnectionString":"InstrumentationKey=9b5fc5f2-db6b-4318-8360-3a007b7ed005","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:46.5716382+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000d032-0000-0700-0000-5e0ab1180000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e7052f6d-7e76-4466-997d-f4f3155c32ac","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c3d76d5f-ada7-49b9-845c-1c6b0fb86924","ConnectionString":"InstrumentationKey=c3d76d5f-ada7-49b9-845c-1c6b0fb86924","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:20.3881265+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501b926-0000-0700-0000-5e11ad540000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"6d113e02-453f-43c7-bc1a-8e3cb277cf4d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ce0e11d0-6143-4168-9b10-d36cd9cda736","ConnectionString":"InstrumentationKey=ce0e11d0-6143-4168-9b10-d36cd9cda736","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:33:08.7751988+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '891' - content-type: - - application/json; charset=utf-8 - date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:48 GMT -======= - - Wed, 13 Nov 2019 06:22:47 GMT -======= -======= ->>>>>>> live test - '892' content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Thu, 14 Nov 2019 01:39:49 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:21 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:09 GMT expires: - '-1' pragma: @@ -539,7 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' x-powered-by: - ASP.NET status: @@ -561,23 +376,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -594,19 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:49 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:49 GMT -======= - - Thu, 14 Nov 2019 01:39:51 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:23 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:11 GMT expires: - '-1' pragma: @@ -637,19 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "1902db55-b4ac-49c2-ab2b-fdd54e8d451e"}}''' -======= -<<<<<<< HEAD - "d72fee1f-6404-41f1-99dc-c7f7729b2e98"}}''' -======= - "9b5fc5f2-db6b-4318-8360-3a007b7ed005"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "c3d76d5f-ada7-49b9-845c-1c6b0fb86924"}}''' ->>>>>>> live test + "ce0e11d0-6143-4168-9b10-d36cd9cda736"}}''' headers: Accept: - application/json @@ -666,23 +442,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -690,19 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"1902db55-b4ac-49c2-ab2b-fdd54e8d451e"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d72fee1f-6404-41f1-99dc-c7f7729b2e98"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"9b5fc5f2-db6b-4318-8360-3a007b7ed005"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c3d76d5f-ada7-49b9-845c-1c6b0fb86924"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"ce0e11d0-6143-4168-9b10-d36cd9cda736"}}' headers: cache-control: - no-cache @@ -711,27 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:52 GMT - etag: - - '"1D5BCBD7D3788D0"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:51 GMT + - Sun, 05 Jan 2020 09:33:14 GMT etag: - - '"1D599EAC66473CB"' -======= - - Thu, 14 Nov 2019 01:39:53 GMT - etag: - - '"1D59A8C68EA9280"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:24 GMT - etag: - - '"1D5BF8146D02470"' ->>>>>>> live test + - '"1D5C3AB267ABEA0"' expires: - '-1' pragma: @@ -749,19 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1195' -======= -<<<<<<< HEAD - - '1198' -======= - '1195' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1196' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -781,23 +500,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -812,31 +516,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3241' - content-type: - - application/json - date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:54 GMT -======= - - Wed, 13 Nov 2019 06:22:52 GMT -======= - - '3043' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:54 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - '3212' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:26 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:14 GMT expires: - '-1' pragma: @@ -895,23 +579,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -919,16 +588,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: @@ -939,28 +599,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:57 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBD7D3788D0"' -======= - - '"1D599EAC66473CB"' -======= - - '3029' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:58 GMT - etag: - - '"1D59A8C68EA9280"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:29 GMT + - Sun, 05 Jan 2020 09:33:18 GMT etag: - - '"1D5BF8146D02470"' ->>>>>>> live test + - '"1D5C3AB267ABEA0"' expires: - '-1' pragma: @@ -978,7 +619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml index b88b7a0747b..77756bf886d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml @@ -14,26 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:21:23Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:21:56Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:31:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -42,19 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:50 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:12 GMT expires: - '-1' pragma: @@ -87,23 +63,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -119,19 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:50 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:14 GMT expires: - '-1' pragma: @@ -149,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -170,26 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:21:23Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:21:56Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:31:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -198,19 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:51 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:56 GMT -======= - - Thu, 14 Nov 2019 01:38:48 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:29 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:15 GMT expires: - '-1' pragma: @@ -243,23 +168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -267,23 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":24704,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24704","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= -<<<<<<< HEAD - US","properties":{"serverFarmId":23980,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":26351,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26351","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":26087,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-085_26087","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":25874,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25874","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -292,19 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:00 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:02 GMT -======= - - Thu, 14 Nov 2019 01:39:09 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:25 GMT expires: - '-1' pragma: @@ -322,11 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1196' -======= - - '1197' ->>>>>>> live test + - '1193' x-powered-by: - ASP.NET status: @@ -346,23 +225,8 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -370,23 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":24704,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24704","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= -<<<<<<< HEAD - US","properties":{"serverFarmId":23980,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_23980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":26351,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_26351","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":26087,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-085_26087","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":25874,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25874","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -395,19 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:01 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:04 GMT -======= - - Thu, 14 Nov 2019 01:39:09 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:26 GMT expires: - '-1' pragma: @@ -443,42 +280,15 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:30.5251927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:30.5251927Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:30.4627059Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2267999Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2267999Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.1643352Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.8917374Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.8917374Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.8136159Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:08.9286333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:08.9286333Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:08.8661839Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.8374502Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.8374502Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:52.7593266Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -487,19 +297,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:03 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:05 GMT -======= - - Thu, 14 Nov 2019 01:39:09 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:25 GMT expires: - '-1' pragma: @@ -533,23 +331,8 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -565,19 +348,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:03 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:05 GMT -======= - - Thu, 14 Nov 2019 01:39:10 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:26 GMT expires: - '-1' pragma: @@ -593,7 +364,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -621,23 +392,8 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -645,58 +401,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:06.5466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7B6F36499787FED9892C315A4F8D0BFD81CB19FD24D22EA13BAA8C2857567183","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:10.79","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A4E2584141FC0684C3316E98FEF692ACBB9EC6831ED91D5575558243D201A2A5","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:27.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7736D418667B94B983EFED783F107D28E60D8A220E71DEC779420A4B9B80B75","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-085.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:47.4333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D8D1500BF33EC6662252052B44F8087DB3A1B47C3F5B20CDC6EB97DA4BDAEADF","kind":"functionapp","inboundIpAddress":"104.40.53.219","possibleInboundIpAddresses":"104.40.53.219","outboundIpAddresses":"104.40.53.219,104.42.226.43,104.42.227.57,104.42.228.164,104.42.230.5","possibleOutboundIpAddresses":"104.40.53.219,104.42.226.43,104.42.227.57,104.42.228.164,104.42.230.5,104.42.229.180,104.42.227.131","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-085","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:29.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63F0685C9A246B27B637927CEC592E71F3F1E725F8C3C99DFB8EAA0CC629AFB6","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3615' -======= -<<<<<<< HEAD - '3545' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:56:23 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBD62CF6EE0"' -======= - - '"1D599EAAECF9115"' -======= - - '3531' content-type: - application/json date: - - Thu, 14 Nov 2019 01:39:44 GMT + - Sun, 05 Jan 2020 09:32:47 GMT etag: - - '"1D59A8C5A533880"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3614' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:23:05 GMT - etag: - - '"1D5BF813189D2A0"' ->>>>>>> live test + - '"1D5C3AB0CE4A7B5"' expires: - '-1' pragma: @@ -714,7 +430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -740,26 +456,14 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30064e7-0000-0700-0000-5e060d8e0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"0ef8c039-b78d-4ecf-ac1f-821b06343833","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"10df803f-1965-48d5-9dad-8a9639fd103f","ConnectionString":"InstrumentationKey=10df803f-1965-48d5-9dad-8a9639fd103f","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:30.2294893+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900785f-0000-0700-0000-5dcba12a0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"aa4e09dc-3122-421f-8b54-0dd763200aac","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"a8127f94-7957-4001-a6cf-0ae0361ed378","ConnectionString":"InstrumentationKey=a8127f94-7957-4001-a6cf-0ae0361ed378","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:33.2062852+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801febe-0000-0700-0000-5dccb0650000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"794058f7-43bb-49f7-8401-eddcffa80ca8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c4fb5df7-4617-452d-866d-a832dbe5153d","ConnectionString":"InstrumentationKey=c4fb5df7-4617-452d-866d-a832dbe5153d","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:49.1987606+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0007233-0000-0700-0000-5e0ab1230000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"df4eff6d-645c-4cf6-8d20-3df4712cfed2","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"24d13473-02b7-4381-a04e-b4cc9d9a59c6","ConnectionString":"InstrumentationKey=24d13473-02b7-4381-a04e-b4cc9d9a59c6","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:31.6927659+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55010d26-0000-0700-0000-5e11ad460000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"652621f8-2625-4a9b-a826-4e712a878a96","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b5479589-ffad-4031-b0a2-226e831f82bf","ConnectionString":"InstrumentationKey=b5479589-ffad-4031-b0a2-226e831f82bf","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:32:54.0201342+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -770,19 +474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:32 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:59 GMT -======= - - Thu, 14 Nov 2019 01:39:51 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:33 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:56 GMT expires: - '-1' pragma: @@ -800,7 +492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' x-powered-by: - ASP.NET status: @@ -822,23 +514,8 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -855,19 +532,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:32 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:01 GMT -======= - - Thu, 14 Nov 2019 01:39:53 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:59 GMT expires: - '-1' pragma: @@ -895,19 +560,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "10df803f-1965-48d5-9dad-8a9639fd103f"}}''' -======= -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "a8127f94-7957-4001-a6cf-0ae0361ed378"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "c4fb5df7-4617-452d-866d-a832dbe5153d"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "24d13473-02b7-4381-a04e-b4cc9d9a59c6"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "b5479589-ffad-4031-b0a2-226e831f82bf"}}''' headers: Accept: - application/json @@ -924,23 +577,8 @@ interactions: ParameterSetName: - -g -n --plan -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -948,19 +586,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"10df803f-1965-48d5-9dad-8a9639fd103f"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"a8127f94-7957-4001-a6cf-0ae0361ed378"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"c4fb5df7-4617-452d-866d-a832dbe5153d"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24d13473-02b7-4381-a04e-b4cc9d9a59c6"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"b5479589-ffad-4031-b0a2-226e831f82bf"}}' headers: cache-control: - no-cache @@ -969,27 +595,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:34 GMT - etag: - - '"1D5BCBD738EA4EB"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:02 GMT + - Sun, 05 Jan 2020 09:33:00 GMT etag: - - '"1D599EACDAB8CEB"' -======= - - Thu, 14 Nov 2019 01:39:55 GMT - etag: - - '"1D59A8C6AAEB0B0"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:36 GMT - etag: - - '"1D5BF814E1CE2E0"' ->>>>>>> live test + - '"1D5C3AB1F1D4455"' expires: - '-1' pragma: @@ -1007,19 +615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= -<<<<<<< HEAD - - '1199' -======= - - '1195' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1194' ->>>>>>> live test + - '1197' x-powered-by: - ASP.NET status: @@ -1040,26 +636,14 @@ interactions: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:55:18Z"},"properties":{"provisioningState":"Succeeded"}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T06:21:23Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:38:15Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:21:56Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:31:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1068,19 +652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:35 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:03 GMT -======= - - Thu, 14 Nov 2019 01:39:56 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:00 GMT expires: - '-1' pragma: @@ -1114,23 +686,8 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1138,48 +695,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"3a28b566-8c95-414f-83ae-2d3597aa0192\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9c6f3d1b-7168-4121-97de-2c1efe86c439\",\r\n \"addressSpace\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"8c18b2be-30e0-4a33-90c1-82a1485c3009\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"fdb609ef-4833-4b3f-9b4f-1a87e92c06c0\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"0bd4c0f4-5d54-40f1-8540-fd567f29e865\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"ad679ee0-62fc-4b4a-8e4b-f8f400bec02c\",\r\n \"addressSpace\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"2b4ba6a9-6b87-432d-8703-2986f293f23e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1f2803c3-207d-4f2f-98f8-d5807df3dc46\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"32db3ad1-aa23-458f-b6ec-4854a257583d\",\r\n \"addressSpace\": ->>>>>>> live test + \ \"resourceGuid\": \"cacf7f72-803f-44b1-ac37-8d4819705fd1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"3a28b566-8c95-414f-83ae-2d3597aa0192\\\"\",\r\n -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"8c18b2be-30e0-4a33-90c1-82a1485c3009\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"0bd4c0f4-5d54-40f1-8540-fd567f29e865\\\"\",\r\n ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"2b4ba6a9-6b87-432d-8703-2986f293f23e\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"1f2803c3-207d-4f2f-98f8-d5807df3dc46\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1188,19 +712,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b9b3572-6c49-4ae7-832c-741887138ff9?api-version=2019-09-01 -======= -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b4ea130-5d2a-4698-8e83-57e931ac4ead?api-version=2019-09-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78bb6f8b-5314-44d2-835e-50815602241d?api-version=2019-09-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c0c73cce-2a4a-4907-b21a-3f12ca46028c?api-version=2019-09-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c803efa9-c807-4deb-ba9a-fc4c15d3c4e6?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -1208,19 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:40 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:06 GMT -======= - - Thu, 14 Nov 2019 01:39:58 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:07 GMT expires: - '-1' pragma: @@ -1233,27 +733,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - afecf30f-8adb-4f07-a972-2b197e79ce88 + - d56d4db2-b32b-4961-800d-09f775b1551e x-ms-ratelimit-remaining-subscription-writes: - - '1196' -======= -<<<<<<< HEAD - - 1a3d5a65-d050-4e31-bad3-2f3c69e2f999 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' -======= - - 26e82a66-38e9-47b4-b9b2-b53f6615c8bb - x-ms-ratelimit-remaining-subscription-writes: - - '1197' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 7b28286c-2fb7-4f6a-aa17-a5a80c8fd4c7 - x-ms-ratelimit-remaining-subscription-writes: - - '1192' ->>>>>>> live test + - '1194' status: code: 201 message: Created @@ -1271,31 +753,10 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2b9b3572-6c49-4ae7-832c-741887138ff9?api-version=2019-09-01 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4b4ea130-5d2a-4698-8e83-57e931ac4ead?api-version=2019-09-01 -======= -======= ->>>>>>> live test - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET -<<<<<<< HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78bb6f8b-5314-44d2-835e-50815602241d?api-version=2019-09-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c0c73cce-2a4a-4907-b21a-3f12ca46028c?api-version=2019-09-01 ->>>>>>> live test + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c803efa9-c807-4deb-ba9a-fc4c15d3c4e6?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1307,19 +768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:44 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:10 GMT -======= - - Thu, 14 Nov 2019 01:40:02 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:11 GMT expires: - '-1' pragma: @@ -1336,19 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - d88fd294-76f3-4bf0-bca5-4ef467719754 -======= -<<<<<<< HEAD - - e1464622-9f9d-4779-94f6-59c41b0f2c0d -======= - - f6d1f08e-f8f0-4e3e-b8db-b47e85f6e382 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - ab134ed7-1743-4355-94ec-5fc89ad6b4f0 ->>>>>>> live test + - 0b81a593-0bab-44c9-852e-2676c06c2cc0 status: code: 200 message: OK @@ -1366,70 +803,22 @@ interactions: ParameterSetName: - -g -n --address-prefixes --subnet-name --subnet-prefixes User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.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.Network/virtualNetworks/cli-vnet-nwr000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9c6f3d1b-7168-4121-97de-2c1efe86c439\",\r\n \"addressSpace\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fdb609ef-4833-4b3f-9b4f-1a87e92c06c0\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ad679ee0-62fc-4b4a-8e4b-f8f400bec02c\",\r\n \"addressSpace\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"32db3ad1-aa23-458f-b6ec-4854a257583d\",\r\n \"addressSpace\": ->>>>>>> live test + \ \"resourceGuid\": \"cacf7f72-803f-44b1-ac37-8d4819705fd1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1444,27 +833,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:45 GMT + - Sun, 05 Jan 2020 09:33:12 GMT etag: - - W/"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa" -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:10 GMT - etag: - - W/"8cce6404-c526-43ef-94b6-e4b1a14a3855" -======= - - Thu, 14 Nov 2019 01:40:03 GMT - etag: - - W/"4b32d70e-4bc5-4756-94b2-8bb66ee041db" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:44 GMT - etag: - - W/"c4766cc1-12c3-48e5-a28d-c6520f65b969" ->>>>>>> live test + - W/"d8df7309-8dd5-4368-a90b-043eb21727e3" expires: - '-1' pragma: @@ -1481,19 +852,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 12794c96-f01c-4fc5-8f03-52cb9cc631f0 -======= -<<<<<<< HEAD - - a12c3116-c73a-4b23-9bbc-f0a0f4b2531b -======= - - 80c79fa1-1f2d-4c44-8f69-42573c5b386d ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 2e72408a-1166-4c75-88fd-e2f11355ef3c ->>>>>>> live test + - 50d7fa88-cfc8-4b20-8aac-0d05e6d32a59 status: code: 200 message: OK @@ -1511,23 +870,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --subnet --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1546,19 +890,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:45 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:11 GMT -======= - - Thu, 14 Nov 2019 01:40:03 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:44 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:13 GMT expires: - '-1' pragma: @@ -1594,23 +926,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1629,19 +946,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:47 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:13 GMT -======= - - Thu, 14 Nov 2019 01:40:05 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:14 GMT expires: - '-1' pragma: @@ -1677,23 +982,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1701,19 +991,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\\"\",\r\n \"properties\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"4b32d70e-4bc5-4756-94b2-8bb66ee041db\\\"\",\r\n \"properties\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: @@ -1724,27 +1002,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:48 GMT - etag: - - W/"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa" -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:14 GMT - etag: - - W/"8cce6404-c526-43ef-94b6-e4b1a14a3855" -======= - - Thu, 14 Nov 2019 01:40:06 GMT + - Sun, 05 Jan 2020 09:33:15 GMT etag: - - W/"4b32d70e-4bc5-4756-94b2-8bb66ee041db" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:46 GMT - etag: - - W/"c4766cc1-12c3-48e5-a28d-c6520f65b969" ->>>>>>> live test + - W/"d8df7309-8dd5-4368-a90b-043eb21727e3" expires: - '-1' pragma: @@ -1761,19 +1021,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 266a12ad-2d7b-4ae4-90b8-ecbf155856e2 -======= -<<<<<<< HEAD - - 9e326004-3cf2-414a-b0b0-3262c8f54c18 -======= - - e7087e77-d11e-4c10-84bb-54685aca3b6a ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 2a5ca6b1-6801-4407-ba0a-818025ef5c4e ->>>>>>> live test + - ba8e54bc-deb5-4261-b51e-836d9c1654d2 status: code: 200 message: OK @@ -1781,19 +1029,7 @@ interactions: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": "Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}, "name": -<<<<<<< HEAD -<<<<<<< HEAD - "endpoint-subnet", "etag": "W/\\"21128b6f-d6f9-4fb9-81fd-df9b20fdc5fa\\""}''' -======= - "endpoint-subnet", "etag": "W/\\"8cce6404-c526-43ef-94b6-e4b1a14a3855\\""}''' -======= - "Microsoft.Web"}], "delegations": [], "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled"}, "name": "endpoint-subnet"}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "endpoint-subnet", "etag": "W/\\"c4766cc1-12c3-48e5-a28d-c6520f65b969\\""}''' ->>>>>>> live test + "endpoint-subnet", "etag": "W/\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\""}''' headers: Accept: - application/json @@ -1810,23 +1046,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1834,19 +1055,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"e2a4ff9b-a943-46d7-aba5-93c0dc41a9a3\\\"\",\r\n \"properties\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"b93cc1e9-a231-4034-94b8-6fbbae43f234\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"4c3d21ea-e4a3-4640-a74b-5a09a6a435c6\\\"\",\r\n \"properties\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"cc23dfd4-2570-4cd9-af43-fe73c75b617c\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"6ec2822d-fcb9-4527-9f81-51427ba5abe4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1854,19 +1063,7 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5269b980-65e6-4fc8-9a5f-ed74adc2f9dd?api-version=2019-02-01 -======= -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6ac2ede-9fd5-40b6-a82b-5f2802cad130?api-version=2019-09-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb68b61a-7ea6-4080-9065-4d829d019dd0?api-version=2019-02-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27f35b4b-4022-4af0-8d98-fc57c31307dd?api-version=2019-02-01 cache-control: - no-cache content-length: @@ -1874,19 +1071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:49 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:14 GMT -======= - - Thu, 14 Nov 2019 01:40:06 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:47 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:16 GMT expires: - '-1' pragma: @@ -1903,71 +1088,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 78c1a59b-23d5-4961-a115-fefef2177fb0 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' -======= -<<<<<<< HEAD - - fe6217e4-7561-4ab4-abac-7e06b6d79e32 -======= - - 1dc3ab65-576c-492c-9889-c4d06c93cf83 ->>>>>>> live test + - 03be0a02-cc99-4e19-8bc5-1f25e5a63533 x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp config access-restriction add - Connection: - - keep-alive - ParameterSetName: - - -g -n --rule-name --action --vnet-name --subnet --priority - User-Agent: -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 06:23:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - d33aecd8-d76c-4aa8-b431-28b62754aa08 ->>>>>>> Re-record test for app service + - '1194' status: code: 200 message: OK @@ -1986,25 +1109,9 @@ interactions: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET -<<<<<<< HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5269b980-65e6-4fc8-9a5f-ed74adc2f9dd?api-version=2019-02-01 -======= - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/816d6bd7-ac48-496d-9d14-5ab937c3a388?api-version=2019-02-01 -======= -======= ->>>>>>> live test - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET -<<<<<<< HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6ac2ede-9fd5-40b6-a82b-5f2802cad130?api-version=2019-09-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb68b61a-7ea6-4080-9065-4d829d019dd0?api-version=2019-02-01 ->>>>>>> live test + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27f35b4b-4022-4af0-8d98-fc57c31307dd?api-version=2019-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2016,19 +1123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:53 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:38 GMT -======= - - Thu, 14 Nov 2019 01:40:10 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:50 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:19 GMT expires: - '-1' pragma: @@ -2045,19 +1140,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - baedfd23-1916-4c1f-9acb-48ab3460298a -======= -<<<<<<< HEAD - - 72f958cd-afb9-4208-9de2-a9ae6ca96f45 -======= - - 28c5949f-9f4a-461c-99a9-97a8d2c77ab9 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 2b3d6add-b036-470b-8b49-3067e3559be4 ->>>>>>> live test + - b386e4fc-d957-4819-b873-13188a217946 status: code: 200 message: OK @@ -2075,41 +1158,14 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.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.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet?api-version=2019-02-01 response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"f09b2bfd-f9e2-4c2b-84a3-a6e89fd84043\\\"\",\r\n \"properties\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"aec40d34-1132-4540-87d7-51f7131f7107\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"afe0ddc6-9167-44f2-b2e3-af6d2e5951ae\\\"\",\r\n \"properties\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"222dc022-e91e-4b74-8d58-65fc73521094\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"4835788c-9ea3-4ae3-8ae2-a7454e11c42a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -2123,27 +1179,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:54 GMT - etag: - - W/"f09b2bfd-f9e2-4c2b-84a3-a6e89fd84043" -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:38 GMT - etag: - - W/"aec40d34-1132-4540-87d7-51f7131f7107" -======= - - Thu, 14 Nov 2019 01:40:10 GMT - etag: - - W/"afe0ddc6-9167-44f2-b2e3-af6d2e5951ae" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:51 GMT + - Sun, 05 Jan 2020 09:33:20 GMT etag: - - W/"222dc022-e91e-4b74-8d58-65fc73521094" ->>>>>>> live test + - W/"4835788c-9ea3-4ae3-8ae2-a7454e11c42a" expires: - '-1' pragma: @@ -2160,19 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - b8f1790c-c0cc-4509-b258-454e1cfdf681 -======= -<<<<<<< HEAD - - e7fc840f-8b0d-45f0-b060-79463c297950 -======= - - 74d672a3-aa64-4e85-8bb3-ded367a48529 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 95554fab-4193-4271-b94a-1d6b305be106 ->>>>>>> live test + - 9c078194-9558-4f10-99a4-bcb039cb3d63 status: code: 200 message: OK @@ -2213,23 +1239,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --vnet-name --subnet --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -2237,19 +1248,9 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny - all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache @@ -2258,27 +1259,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:58 GMT + - Sun, 05 Jan 2020 09:33:22 GMT etag: - - '"1D5BCBD738EA4EB"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:42 GMT - etag: - - '"1D599EACDAB8CEB"' -======= - - Thu, 14 Nov 2019 01:40:13 GMT - etag: - - '"1D59A8C6AAEB0B0"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:54 GMT - etag: - - '"1D5BF814E1CE2E0"' ->>>>>>> live test + - '"1D5C3AB1F1D4455"' expires: - '-1' pragma: @@ -2296,11 +1279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1196' -======= - - '1194' ->>>>>>> live test + - '1191' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml index a38e75ae629..757839ad42b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml @@ -13,23 +13,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -120,19 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:51 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:54 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:13 GMT expires: - '-1' pragma: @@ -168,42 +141,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1502142Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.1502142Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.1033203Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2111933Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.2111933Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.1330665Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.3760716Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.3760716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.2979755Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.1161550Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:09.1161550Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:09.0692793Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:53.4624795Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:53.4624795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:53.3843517Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -212,19 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:52 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:13 GMT expires: - '-1' pragma: @@ -258,23 +192,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -290,19 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:53 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:56 GMT -======= - - Thu, 14 Nov 2019 01:38:48 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:32 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:13 GMT expires: - '-1' pragma: @@ -348,81 +255,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1C685E15FE44F2252C7A9255E05DEA3195B48C45A4370C1EC320FA7D1C7A1F40","kind":"functionapp","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-097.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:14.32","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A6E2D52B8833B3E11FF7AA9EAF6F3B97C946E13477FFAA9F29AB95BD1A66FD32","kind":"functionapp","inboundIpAddress":"13.91.242.166","possibleInboundIpAddresses":"13.91.242.166","outboundIpAddresses":"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85","possibleOutboundIpAddresses":"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85,13.91.242.52,13.91.243.117,13.91.241.117","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-097","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:57.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8F797835B578BE02E82C08EAB05726F3818DB9BE78843EF01DD12AF8A50CE57F","kind":"functionapp","inboundIpAddress":"104.42.53.248","possibleInboundIpAddresses":"104.42.53.248","outboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90","possibleOutboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:41.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A92E3685D99B9F2197A789E4E030D130697DA5F9393D29EB4CCEAD5949BA97B2","kind":"functionapp","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:23.877","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B3FF540E80CDE6156020F77AA6E6CB04F7AE6BFACDB104EA75857949BA376233","kind":"functionapp","inboundIpAddress":"191.236.106.123","possibleInboundIpAddresses":"191.236.106.123","outboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","possibleOutboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3547' -======= -<<<<<<< HEAD - - '3605' ->>>>>>> Re-record test for app service + - '3667' content-type: - application/json date: - - Fri, 27 Dec 2019 13:56:37 GMT + - Sun, 05 Jan 2020 09:33:00 GMT etag: -<<<<<<< HEAD - - '"1D5BCBD6098DFD0"' -======= - - '"1D599EAB399DD60"' -======= - - '3608' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:34 GMT - etag: - - '"1D59A8C48A801CB"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3534' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:23:17 GMT - etag: - - '"1D5BF812E3E0300"' ->>>>>>> live test + - '"1D5C3AB09859130"' expires: - '-1' pragma: @@ -440,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -465,72 +317,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30041e8-0000-0700-0000-5e060d9b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b003c07e-8fcd-47e9-8d8f-4b426bb43083","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"41c886d1-02c1-47f9-bbc9-cdcbae852226","ConnectionString":"InstrumentationKey=41c886d1-02c1-47f9-bbc9-cdcbae852226","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:43.5726621+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f9000f60-0000-0700-0000-5dcba13a0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"bac7f29f-1a1c-4349-8aca-42f0b29e9ec1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0806f793-bc6c-4b08-af9a-ab43c5650dcf","ConnectionString":"InstrumentationKey=0806f793-bc6c-4b08-af9a-ab43c5650dcf","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:49.8617681+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"0801adbe-0000-0700-0000-5dccb05b0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c6f908b0-01bb-4cf2-9c0c-1d66a7657bde","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"79efa49f-a0c9-4989-9501-f67b7b285ad7","ConnectionString":"InstrumentationKey=79efa49f-a0c9-4989-9501-f67b7b285ad7","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:39.634062+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0000433-0000-0700-0000-5e0ab11c0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"298a744e-a284-4e4a-86a3-b7bc7de29d8f","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8e7d03fc-651f-4ea5-aef5-b92c6effcb61","ConnectionString":"InstrumentationKey=8e7d03fc-651f-4ea5-aef5-b92c6effcb61","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:24.273871+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501d426-0000-0700-0000-5e11ad560000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"776e2926-2875-4405-892e-12accccdb4dd","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"50cfa1e3-26d4-47f1-8ebe-80bcaa6e9299","ConnectionString":"InstrumentationKey=50cfa1e3-26d4-47f1-8ebe-80bcaa6e9299","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:33:10.5383345+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '892' content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:45 GMT -======= - - Wed, 13 Nov 2019 06:22:55 GMT -======= -======= ->>>>>>> live test - - '891' - content-type: - - application/json; charset=utf-8 - date: -<<<<<<< HEAD - - Thu, 14 Nov 2019 01:39:42 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:26 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:12 GMT expires: - '-1' pragma: @@ -548,11 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1196' ->>>>>>> live test + - '1198' x-powered-by: - ASP.NET status: @@ -574,23 +376,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -607,19 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:46 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:57 GMT -======= - - Thu, 14 Nov 2019 01:39:43 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:27 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:13 GMT expires: - '-1' pragma: @@ -650,19 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "41c886d1-02c1-47f9-bbc9-cdcbae852226"}}''' -======= -<<<<<<< HEAD - "0806f793-bc6c-4b08-af9a-ab43c5650dcf"}}''' -======= - "79efa49f-a0c9-4989-9501-f67b7b285ad7"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "8e7d03fc-651f-4ea5-aef5-b92c6effcb61"}}''' ->>>>>>> live test + "50cfa1e3-26d4-47f1-8ebe-80bcaa6e9299"}}''' headers: Accept: - application/json @@ -679,23 +442,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -703,19 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"41c886d1-02c1-47f9-bbc9-cdcbae852226"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0806f793-bc6c-4b08-af9a-ab43c5650dcf"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"79efa49f-a0c9-4989-9501-f67b7b285ad7"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8e7d03fc-651f-4ea5-aef5-b92c6effcb61"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"50cfa1e3-26d4-47f1-8ebe-80bcaa6e9299"}}' headers: cache-control: - no-cache @@ -724,27 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:47 GMT - etag: - - '"1D5BCBD7AECAE70"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:00 GMT - etag: - - '"1D599EACB0CAC20"' -======= - - Thu, 14 Nov 2019 01:39:46 GMT + - Sun, 05 Jan 2020 09:33:18 GMT etag: - - '"1D59A8C649E69E0"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:30 GMT - etag: - - '"1D5BF814A633640"' ->>>>>>> live test + - '"1D5C3AB27505E20"' expires: - '-1' pragma: @@ -762,19 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1195' -======= -<<<<<<< HEAD - - '1197' -======= - - '1198' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1199' ->>>>>>> live test + - '1192' x-powered-by: - ASP.NET status: @@ -794,23 +500,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -825,31 +516,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3241' - content-type: - - application/json - date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:48 GMT -======= - - Wed, 13 Nov 2019 06:23:01 GMT -======= - - '3043' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - '3212' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:18 GMT expires: - '-1' pragma: @@ -908,19 +579,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -939,15 +599,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:51 GMT - etag: - - '"1D5BCBD7AECAE70"' -======= - - Tue, 31 Dec 2019 02:23:34 GMT + - Sun, 05 Jan 2020 09:33:24 GMT etag: - - '"1D5BF814A633640"' ->>>>>>> live test + - '"1D5C3AB27505E20"' expires: - '-1' pragma: @@ -965,11 +619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1195' -======= - - '1198' ->>>>>>> live test + - '1196' x-powered-by: - ASP.NET status: @@ -990,11 +640,7 @@ interactions: - -g -n --rule-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1013,11 +659,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:54 GMT -======= - - Tue, 31 Dec 2019 02:23:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:25 GMT expires: - '-1' pragma: @@ -1075,22 +717,8 @@ interactions: ParameterSetName: - -g -n --rule-name User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -1098,16 +726,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: @@ -1118,28 +737,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:56 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBD7D150CB0"' -======= - - '"1D599EACE419860"' -======= - - '3029' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:51 GMT + - Sun, 05 Jan 2020 09:33:30 GMT etag: - - '"1D59A8C649E69E0"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:40 GMT - etag: - - '"1D5BF814D09C530"' ->>>>>>> live test + - '"1D5C3AB2C5DDAF0"' expires: - '-1' pragma: @@ -1157,19 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1196' -======= -<<<<<<< HEAD - - '1198' -======= - - '1199' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1195' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml index f602da3d036..a1f5dc6d6f1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml @@ -13,23 +13,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -120,19 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:51 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:53 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:15 GMT expires: - '-1' pragma: @@ -168,42 +141,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5720903Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:31.5720903Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:31.4939285Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.7268149Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.7268149Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:32.6642979Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6573672Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6573672Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.5792303Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.5230461Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.5230461Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:10.4761735Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:54.3999753Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:54.3999753Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:54.3218422Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -212,19 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:51 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:16 GMT expires: - '-1' pragma: @@ -258,23 +192,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -290,19 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:52 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Thu, 14 Nov 2019 01:38:48 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:16 GMT expires: - '-1' pragma: @@ -318,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -348,81 +255,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:02.0433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"72EB641BF828439A1C1943CA994813DC3F131EC656167DA77AC0A9A115DA5562","kind":"functionapp","inboundIpAddress":"40.80.155.102","possibleInboundIpAddresses":"40.80.155.102","outboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21","possibleOutboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-079","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:04.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9C6D335BA9DB5D5C273F8DE9BE62FDE70C82104406B02581B9E758CA96C2640D","kind":"functionapp","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:38:55.4966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3D4A34DBD44EAA1B1725A344A788F64753B7003EF09C6BBDDBB1B88CE175E08B","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:42.75","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"85011CABEA77A342C7E2F62011D99F3A142A9395F713B6E4C37CB7EBF7B712FA","kind":"functionapp","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:26.94","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BD9BC889EFEB8E7FD115A45FB18210DF40CC98CC0C97D186A762056181451082","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3593' -======= -<<<<<<< HEAD - - '3600' ->>>>>>> Re-record test for app service + - '3580' content-type: - application/json date: - - Fri, 27 Dec 2019 13:56:41 GMT + - Sun, 05 Jan 2020 09:33:01 GMT etag: -<<<<<<< HEAD - - '"1D5BCBD6043E200"' -======= - - '"1D599EAAB536FAB"' -======= - - '3537' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:44 GMT - etag: - - '"1D59A8C474FAAC0"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3607' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:23:18 GMT - etag: - - '"1D5BF812EB792CB"' ->>>>>>> live test + - '"1D5C3AB0B6DCC2B"' expires: - '-1' pragma: @@ -465,42 +317,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30064e8-0000-0700-0000-5e060d9d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"015977ed-6710-4384-965f-326e2bb3dcd8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7be89f73-9913-470d-9b2d-40ec57532bb0","ConnectionString":"InstrumentationKey=7be89f73-9913-470d-9b2d-40ec57532bb0","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:45.0954588+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900ea5f-0000-0700-0000-5dcba1350000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"611a7287-39c6-46e7-94b6-d789135ba246","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"9a0cfd83-0461-4148-a2b1-9629399b7935","ConnectionString":"InstrumentationKey=9a0cfd83-0461-4148-a2b1-9629399b7935","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:45.6365429+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"080102bf-0000-0700-0000-5dccb0650000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"052eaeff-2a42-4d8f-a74a-e4da1a1fcf47","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"1802ac28-c4ca-4926-9299-1efcb52be180","ConnectionString":"InstrumentationKey=1802ac28-c4ca-4926-9299-1efcb52be180","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:49.3113832+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0002233-0000-0700-0000-5e0ab11e0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cfb0a661-45b8-4b94-92fe-356ac58ed0b1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"00c13f92-a594-4e75-b08f-cf9998c89fa1","ConnectionString":"InstrumentationKey=00c13f92-a594-4e75-b08f-cf9998c89fa1","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:26.237112+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501c726-0000-0700-0000-5e11ad550000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"8408fd1d-79f4-4f3f-9a46-1d8923e9c2b7","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6e6f14ae-6b0b-432f-ba37-7e3abfc87ea3","ConnectionString":"InstrumentationKey=6e6f14ae-6b0b-432f-ba37-7e3abfc87ea3","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:33:09.912458+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -511,19 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:46 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:49 GMT -======= - - Thu, 14 Nov 2019 01:39:55 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:49 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:11 GMT expires: - '-1' pragma: @@ -541,19 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= -<<<<<<< HEAD - - '1198' -======= - - '1197' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -575,23 +376,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -608,19 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:47 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:51 GMT -======= - - Thu, 14 Nov 2019 01:39:57 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:50 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:12 GMT expires: - '-1' pragma: @@ -638,7 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -651,19 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "7be89f73-9913-470d-9b2d-40ec57532bb0"}}''' -======= -<<<<<<< HEAD - "9a0cfd83-0461-4148-a2b1-9629399b7935"}}''' -======= - "1802ac28-c4ca-4926-9299-1efcb52be180"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "00c13f92-a594-4e75-b08f-cf9998c89fa1"}}''' ->>>>>>> live test + "6e6f14ae-6b0b-432f-ba37-7e3abfc87ea3"}}''' headers: Accept: - application/json @@ -680,23 +442,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -704,19 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7be89f73-9913-470d-9b2d-40ec57532bb0"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"9a0cfd83-0461-4148-a2b1-9629399b7935"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"1802ac28-c4ca-4926-9299-1efcb52be180"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"00c13f92-a594-4e75-b08f-cf9998c89fa1"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"6e6f14ae-6b0b-432f-ba37-7e3abfc87ea3"}}' headers: cache-control: - no-cache @@ -725,27 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:49 GMT - etag: - - '"1D5BCBD7B927155"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:53 GMT - etag: - - '"1D599EAC7390EE0"' -======= - - Thu, 14 Nov 2019 01:39:58 GMT - etag: - - '"1D59A8C6C632475"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:53 GMT + - Sun, 05 Jan 2020 09:33:14 GMT etag: - - '"1D5BF81577B0F2B"' ->>>>>>> live test + - '"1D5C3AB26B53C95"' expires: - '-1' pragma: @@ -763,7 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1185' x-powered-by: - ASP.NET status: @@ -783,23 +500,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -818,22 +520,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:50 GMT -======= - - Wed, 13 Nov 2019 06:22:54 GMT -======= - - '3043' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:59 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:54 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:17 GMT expires: - '-1' pragma: @@ -892,23 +579,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -916,16 +588,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: @@ -936,28 +599,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:54 GMT + - Sun, 05 Jan 2020 09:33:20 GMT etag: -<<<<<<< HEAD - - '"1D5BCBD7B927155"' -======= - - '"1D599EAC7390EE0"' -======= - - '3029' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:40:02 GMT - etag: - - '"1D59A8C6C632475"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:56 GMT - etag: - - '"1D5BF81577B0F2B"' ->>>>>>> live test + - '"1D5C3AB26B53C95"' expires: - '-1' pragma: @@ -975,15 +619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1196' -======= - - '1198' -<<<<<<< HEAD -<<<<<<< HEAD ->>>>>>> Re-record test for app service -======= ->>>>>>> live test + - '1192' x-powered-by: - ASP.NET status: @@ -1004,11 +640,7 @@ interactions: - -g -n --rule-name --scm-site User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1027,11 +659,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:54 GMT -======= - - Tue, 31 Dec 2019 02:23:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:22 GMT expires: - '-1' pragma: @@ -1090,11 +718,7 @@ interactions: - -g -n --rule-name --scm-site User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -1113,15 +737,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:57 GMT + - Sun, 05 Jan 2020 09:33:26 GMT etag: - - '"1D5BCBD7E26A3C0"' -======= - - Tue, 31 Dec 2019 02:24:00 GMT - etag: - - '"1D5BF8159E58C80"' ->>>>>>> live test + - '"1D5C3AB2A9AA720"' expires: - '-1' pragma: @@ -1139,17 +757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1199' -======= ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1195' ->>>>>>> live test + - '1184' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml index c032b19b460..0c941195a4b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml @@ -13,23 +13,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -120,19 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:50 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Wed, 13 Nov 2019 10:55:30 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:12 GMT expires: - '-1' pragma: @@ -168,42 +141,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:29.9314642Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:55:29.9314642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:55:29.8845687Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.3986816Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:33.3986816Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:33.3205520Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:10.4612231Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:10.4612231Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:55:10.3830967Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:11.3518420Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:11.3518420Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:11.2906252Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.2749548Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.2749548Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:52.1968214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -212,19 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:50 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:55 GMT -======= - - Wed, 13 Nov 2019 10:55:30 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:13 GMT expires: - '-1' pragma: @@ -258,23 +192,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -290,19 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:55:51 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:56 GMT -======= - - Wed, 13 Nov 2019 10:55:31 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:13 GMT expires: - '-1' pragma: @@ -318,11 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1197' ->>>>>>> live test + - '1196' status: code: 200 message: OK @@ -352,81 +255,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:56:00.99","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2FFE5A6288EFE99F89E1812365F37B248ACDF759795B4976B1F3ABC98D5C1987","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-055.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:03.563","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BD11764E818679036DBBCB89F7225D70FCA123829C0431D9577492F5546B47D","kind":"functionapp","inboundIpAddress":"104.42.188.146","possibleInboundIpAddresses":"104.42.188.146","outboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","possibleOutboundIpAddresses":"104.42.185.131,104.42.184.178,104.42.185.60,104.42.188.171","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-055","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:55:40.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"48F7F33B940A0E39C31D723787EF4ABB0F4CFC0FF90FB8A3A51D43C5D74CF39D","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:41.187","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D02A214EFE453203F5189CB0544DCE6EAD6CC49375D02B48B5F7F9AE5154EB44","kind":"functionapp","inboundIpAddress":"40.112.143.214","possibleInboundIpAddresses":"40.112.143.214","outboundIpAddresses":"40.112.143.127,40.112.139.230,40.112.138.193,40.112.141.127","possibleOutboundIpAddresses":"40.112.143.127,40.112.139.230,40.112.138.193,40.112.141.127","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-041","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:23.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"00E46EADB3E8DCB492E3BBC2B7E1BADB30B4FE3DECCAA9C5F7E0041F0ACCCED7","kind":"functionapp","inboundIpAddress":"40.80.155.102","possibleInboundIpAddresses":"40.80.155.102","outboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21","possibleOutboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-079","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3532' -======= -<<<<<<< HEAD - - '3547' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:56:34 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBD5F8B4060"' -======= - - '"1D599EAAAA896B0"' -======= - - '3602' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 10:56:14 GMT - etag: - - '"1D59A10E46A72B5"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3549' + - '3593' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:15 GMT + - Sun, 05 Jan 2020 09:33:00 GMT etag: - - '"1D5BF812DE386F0"' ->>>>>>> live test + - '"1D5C3AB09E31A80"' expires: - '-1' pragma: @@ -444,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -469,68 +317,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30006e8-0000-0700-0000-5e060d980000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e1f9a686-3953-45fa-bff1-6b4c864b472a","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cfd60e56-c5b3-4f3f-8c2b-0321650f04fb","ConnectionString":"InstrumentationKey=cfd60e56-c5b3-4f3f-8c2b-0321650f04fb","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:56:40.5528135+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900ef5f-0000-0700-0000-5dcba1360000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"9a55c922-f82b-4346-9e94-4653ed17eaf0","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"49118095-4b4a-480f-98ec-d3d49122c1dd","ConnectionString":"InstrumentationKey=49118095-4b4a-480f-98ec-d3d49122c1dd","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:46.1692188+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00bead-0000-0700-0000-5dcbe1520000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"6e9d8ef5-b88a-43bd-94f9-7c296c5fcb57","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c275aa6d-2d1e-4dce-a11d-730d7950a6fa","ConnectionString":"InstrumentationKey=c275aa6d-2d1e-4dce-a11d-730d7950a6fa","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T10:56:18.881353+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001533-0000-0700-0000-5e0ab11d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cbc898ef-cd29-441d-9b35-44550d17d543","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6150f444-fdfd-484a-9318-bb6f19788aaf","ConnectionString":"InstrumentationKey=6150f444-fdfd-484a-9318-bb6f19788aaf","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:25.4017895+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55018826-0000-0700-0000-5e11ad510000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"42dbb263-3d29-4d51-ab11-8ba8e7d587a6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f78130f9-48ae-434a-bae7-91906d4626da","ConnectionString":"InstrumentationKey=f78130f9-48ae-434a-bae7-91906d4626da","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:33:05.394435+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '892' - content-type: - - application/json; charset=utf-8 - date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:43 GMT -======= - - Wed, 13 Nov 2019 06:22:49 GMT -======= - '891' content-type: - application/json; charset=utf-8 date: - - Wed, 13 Nov 2019 10:56:21 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:07 GMT expires: - '-1' pragma: @@ -548,11 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1196' -======= - - '1199' ->>>>>>> live test + - '1193' x-powered-by: - ASP.NET status: @@ -574,23 +376,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -607,19 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:43 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:52 GMT -======= - - Wed, 13 Nov 2019 10:56:22 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:07 GMT expires: - '-1' pragma: @@ -650,19 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "cfd60e56-c5b3-4f3f-8c2b-0321650f04fb"}}''' -======= -<<<<<<< HEAD - "49118095-4b4a-480f-98ec-d3d49122c1dd"}}''' -======= - "c275aa6d-2d1e-4dce-a11d-730d7950a6fa"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "6150f444-fdfd-484a-9318-bb6f19788aaf"}}''' ->>>>>>> live test + "f78130f9-48ae-434a-bae7-91906d4626da"}}''' headers: Accept: - application/json @@ -679,23 +442,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -703,19 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"cfd60e56-c5b3-4f3f-8c2b-0321650f04fb"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"49118095-4b4a-480f-98ec-d3d49122c1dd"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c275aa6d-2d1e-4dce-a11d-730d7950a6fa"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"6150f444-fdfd-484a-9318-bb6f19788aaf"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"f78130f9-48ae-434a-bae7-91906d4626da"}}' headers: cache-control: - no-cache @@ -724,27 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:46 GMT - etag: - - '"1D5BCBD79CB38E0"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:54 GMT - etag: - - '"1D599EAC81F7740"' -======= - - Wed, 13 Nov 2019 10:56:25 GMT - etag: - - '"1D59A10FDAA1235"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:30 GMT + - Sun, 05 Jan 2020 09:33:10 GMT etag: - - '"1D5BF814A3680F0"' ->>>>>>> live test + - '"1D5C3AB248FEB95"' expires: - '-1' pragma: @@ -762,19 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= -<<<<<<< HEAD - - '1199' -======= - - '1196' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1195' ->>>>>>> live test + - '1187' x-powered-by: - ASP.NET status: @@ -794,23 +500,8 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -818,50 +509,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD -======= ->>>>>>> live test US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3240' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:56:48 GMT -======= -<<<<<<< HEAD - - '3241' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 06:22:55 GMT -======= - - '3043' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 10:56:27 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - '3212' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:13 GMT expires: - '-1' pragma: @@ -919,23 +578,8 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -943,55 +587,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3225' -======= -<<<<<<< HEAD - - '3226' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:56:50 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBD79CB38E0"' -======= - - '"1D599EAC81F7740"' -======= - - '3028' -======= - '3197' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:35 GMT + - Sun, 05 Jan 2020 09:33:19 GMT etag: -<<<<<<< HEAD - - '"1D59A10FDAA1235"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '"1D5BF814A3680F0"' ->>>>>>> live test + - '"1D5C3AB248FEB95"' expires: - '-1' pragma: @@ -1009,15 +618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1195' -======= - - '1196' ->>>>>>> Re-record test for app service -======= - - '1194' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1037,23 +638,8 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1061,51 +647,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3243' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:56:52 GMT -======= -<<<<<<< HEAD - - '3244' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 06:23:00 GMT -======= - - '3046' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 10:56:31 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - '3215' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:20 GMT expires: - '-1' pragma: @@ -1163,23 +716,8 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -1187,55 +725,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":true,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3226' -======= -<<<<<<< HEAD - - '3227' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:56:56 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBD7C5DF1B0"' -======= - - '"1D599EACA8860F0"' -======= - - '3029' -======= - '3198' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:38 GMT + - Sun, 05 Jan 2020 09:33:23 GMT etag: -<<<<<<< HEAD - - '"1D59A11004667F5"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '"1D5BF814CF46870"' ->>>>>>> live test + - '"1D5C3AB28714475"' expires: - '-1' pragma: @@ -1253,7 +756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1187' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml index 96b5f3866e8..6475d80e059 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml @@ -13,23 +13,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -120,19 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:57 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:51 GMT -======= - - Wed, 13 Nov 2019 10:55:29 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:17 GMT expires: - '-1' pragma: @@ -168,42 +141,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:56:36.0527974Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:56:36.0527974Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:56:35.9903373Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:31.4299007Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:31.4299007Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:31.3674229Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:09.1018745Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T10:55:09.1018745Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T10:55:09.0237158Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.7886379Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:10.7886379Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:10.7261507Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:33.5794433Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:33.5794433Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:33:33.5325970Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -212,19 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:57 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:52 GMT -======= - - Wed, 13 Nov 2019 10:55:30 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:32 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:17 GMT expires: - '-1' pragma: @@ -258,23 +192,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -290,19 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:56:57 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:52 GMT -======= - - Wed, 13 Nov 2019 10:55:30 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:32 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:18 GMT expires: - '-1' pragma: @@ -318,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 200 message: OK @@ -348,81 +255,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:07.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5C75769DBAC2FA2CA743898B096B8DD4AB004F6C9F47F5B60D87F79B1503AAFD","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:01.3166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2671B3A8C1699B86F9651387864CA32E177BBCA30C0BD93CAF538D0794055E27","kind":"functionapp","inboundIpAddress":"40.112.243.8","possibleInboundIpAddresses":"40.112.243.8","outboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145","possibleOutboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T10:55:39.54","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CF696388076CA5813D99A910270AB429569CD67F0A3610AB8534B5D9C9BE74A1","kind":"functionapp","inboundIpAddress":"40.112.243.0","possibleInboundIpAddresses":"40.112.243.0","outboundIpAddresses":"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30","possibleOutboundIpAddresses":"40.112.243.0,13.91.46.203,40.112.255.35,13.91.41.7,13.91.40.30,40.112.164.63,40.83.181.150,40.112.248.128","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-123","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:42.823","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C787CE14F0473909D316720822A4AB5DDD66322C4681593367768A98CECBA018","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:28.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3FFD4460CDA24FB121843D9A574FF931F4A90F2A85566D69722E0605FA74BF76","kind":"functionapp","inboundIpAddress":"23.101.203.117","possibleInboundIpAddresses":"23.101.203.117","outboundIpAddresses":"23.101.204.168,23.101.207.119,23.101.205.109,23.101.198.154","possibleOutboundIpAddresses":"23.101.204.168,23.101.207.119,23.101.205.109,23.101.198.154","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3546' -======= -<<<<<<< HEAD - - '3633' ->>>>>>> Re-record test for app service + - '3548' content-type: - application/json date: - - Fri, 27 Dec 2019 13:57:41 GMT + - Sun, 05 Jan 2020 09:35:04 GMT etag: -<<<<<<< HEAD - - '"1D5BCBD870B4040"' -======= - - '"1D599EAA9724695"' -======= - - '3593' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 10:56:15 GMT - etag: - - '"1D59A10E3574800"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3545' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:23:19 GMT - etag: - - '"1D5BF812EE9FA70"' ->>>>>>> live test + - '"1D5C3AB53C570D0"' expires: - '-1' pragma: @@ -465,42 +317,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3008aec-0000-0700-0000-5e060ddd0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"d9c28224-21c0-44fe-95d5-d198dc41b978","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"3ccae148-25a2-4aa2-beac-477fd99471e5","ConnectionString":"InstrumentationKey=3ccae148-25a2-4aa2-beac-477fd99471e5","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:57:49.6797074+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900c35f-0000-0700-0000-5dcba1320000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"04a2b0df-9163-4e6a-b88a-04f14440fa87","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"a371e533-27a6-4554-afcf-9f9d36e49f26","ConnectionString":"InstrumentationKey=a371e533-27a6-4554-afcf-9f9d36e49f26","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:41.7143889+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00baad-0000-0700-0000-5dcbe1520000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"e79d36b6-9458-4218-9500-3002b1bc6004","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"61798b5e-7261-492e-82a5-b53bf5e28c8c","ConnectionString":"InstrumentationKey=61798b5e-7261-492e-82a5-b53bf5e28c8c","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T10:56:18.6243186+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000ef33-0000-0700-0000-5e0ab12e0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"a47f285a-c42d-4cab-9a66-3cc821284079","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7e37f306-e32a-4ab6-851c-57ec67b6da16","ConnectionString":"InstrumentationKey=7e37f306-e32a-4ab6-851c-57ec67b6da16","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:42.8151822+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55014a2c-0000-0700-0000-5e11adce0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"91b634d8-45e0-4b54-8b58-9a550559ccc4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"1aae0e1c-d624-49ec-a53e-2beb8c71216d","ConnectionString":"InstrumentationKey=1aae0e1c-d624-49ec-a53e-2beb8c71216d","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:35:10.3145696+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -511,19 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:50 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:46 GMT -======= - - Wed, 13 Nov 2019 10:56:21 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:44 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:11 GMT expires: - '-1' pragma: @@ -541,15 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1196' -======= - - '1199' ->>>>>>> Re-record test for app service -======= - - '1198' ->>>>>>> live test + - '1181' x-powered-by: - ASP.NET status: @@ -571,23 +376,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -604,19 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:52 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:47 GMT -======= - - Wed, 13 Nov 2019 10:56:21 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:45 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:12 GMT expires: - '-1' pragma: @@ -647,19 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "3ccae148-25a2-4aa2-beac-477fd99471e5"}}''' -======= -<<<<<<< HEAD - "a371e533-27a6-4554-afcf-9f9d36e49f26"}}''' -======= - "61798b5e-7261-492e-82a5-b53bf5e28c8c"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "7e37f306-e32a-4ab6-851c-57ec67b6da16"}}''' ->>>>>>> live test + "1aae0e1c-d624-49ec-a53e-2beb8c71216d"}}''' headers: Accept: - application/json @@ -676,23 +442,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -700,19 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"3ccae148-25a2-4aa2-beac-477fd99471e5"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"a371e533-27a6-4554-afcf-9f9d36e49f26"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"61798b5e-7261-492e-82a5-b53bf5e28c8c"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7e37f306-e32a-4ab6-851c-57ec67b6da16"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"1aae0e1c-d624-49ec-a53e-2beb8c71216d"}}' headers: cache-control: - no-cache @@ -721,27 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:53 GMT - etag: - - '"1D5BCBDA1E751B0"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:50 GMT + - Sun, 05 Jan 2020 09:35:16 GMT etag: - - '"1D599EAC52B2375"' -======= - - Wed, 13 Nov 2019 10:56:24 GMT - etag: - - '"1D59A10FD359880"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:47 GMT - etag: - - '"1D5BF81544C4A70"' ->>>>>>> live test + - '"1D5C3AB6F369650"' expires: - '-1' pragma: @@ -759,7 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1192' x-powered-by: - ASP.NET status: @@ -779,23 +500,8 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -810,31 +516,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3241' - content-type: - - application/json - date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:54 GMT -======= - - Wed, 13 Nov 2019 06:22:50 GMT -======= - - '3043' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 10:56:26 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - '3212' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:48 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:17 GMT expires: - '-1' pragma: @@ -892,23 +578,8 @@ interactions: ParameterSetName: - -g -n --use-same-restrictions-for-scm-site User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -916,51 +587,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3226' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:57:57 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBDA1E751B0"' -======= - - '"1D599EAC52B2375"' -======= - - '3028' -======= - '3197' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:52 GMT + - Sun, 05 Jan 2020 09:35:21 GMT etag: -<<<<<<< HEAD - - '"1D59A10FD359880"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '"1D5BF81544C4A70"' ->>>>>>> live test + - '"1D5C3AB6F369650"' expires: - '-1' pragma: @@ -978,15 +618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1193' ->>>>>>> Re-record test for app service -======= - - '1194' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml index 6a61ccc6f8c..da162c547a5 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml @@ -13,23 +13,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -120,19 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:44:57 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:53 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:32 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:56 GMT expires: - '-1' pragma: @@ -168,42 +141,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:44:35.9730496Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:44:35.9730496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:44:35.8949256Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.2424398Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:21:32.2424398Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:21:32.1955678Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6417160Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:25.6417160Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:25.5636449Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:12.3674814Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:22:12.3674814Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:22:12.3049272Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:34.8571187Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:34.8571187Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:35:34.7946161Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -212,19 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:44:58 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:53 GMT -======= - - Thu, 14 Nov 2019 01:38:46 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:34 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:57 GMT expires: - '-1' pragma: @@ -258,23 +192,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -290,19 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:44:58 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:21:54 GMT -======= - - Thu, 14 Nov 2019 01:38:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:22:34 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:58 GMT expires: - '-1' pragma: @@ -318,11 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1193' -======= - - '1198' ->>>>>>> live test + - '1197' status: code: 200 message: OK @@ -352,79 +255,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:45:07.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"53886C5AAA16C07E0AEDADC9F72DDE1576804B73E7BD616689D0ECFDE575EE18","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:22:01.79","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6C0EF41767CD4D84CC089CE99081E756AADA3B6B3471DD21F59EF5502F7C16EF","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-047.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:10.503","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6F1879B3EB0C1DEC13B22F519B240349DC208CE769D8CAB6AE0ADE4B95FD9DFC","kind":"functionapp","inboundIpAddress":"104.40.28.133","possibleInboundIpAddresses":"104.40.28.133","outboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","possibleOutboundIpAddresses":"104.40.28.42,104.40.26.133,104.40.25.66,104.40.24.165","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-047","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-121.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:22:44.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"825D02E00A7361E204C07D2FD7FBCC5A74C99347568221770D686843491DA2B2","kind":"functionapp","inboundIpAddress":"13.93.141.10","possibleInboundIpAddresses":"13.93.141.10","outboundIpAddresses":"13.93.141.10,40.78.90.180,40.78.93.25,40.78.88.130,40.78.92.162","possibleOutboundIpAddresses":"13.93.141.10,40.78.90.180,40.78.93.25,40.78.88.130,40.78.92.162,40.78.92.123,40.78.92.141,40.78.85.102","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-121","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:07.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EBFCFBC022888A8CA2737967E8A173CA7002E67DE0464A74CA82DAD6E67ADC83","kind":"functionapp","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3544' -======= -<<<<<<< HEAD - - '3546' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:45:43 GMT - etag: -<<<<<<< HEAD - - '"1D5BCC43BED0A60"' -======= - - '"1D599EAA99F8B20"' -======= - - '3535' -======= - - '3596' ->>>>>>> live test + - '3586' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:20 GMT + - Sun, 05 Jan 2020 09:36:43 GMT etag: -<<<<<<< HEAD - - '"1D59A8C50821920"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '"1D5BF81301B9CA0"' ->>>>>>> live test + - '"1D5C3AB8F1A7F40"' expires: - '-1' pragma: @@ -442,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '497' x-powered-by: - ASP.NET status: @@ -467,42 +317,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b400d6b0-0000-0700-0000-5e06191d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b39fe36b-9b63-4c7c-bdef-8eee84e8625d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"52af6706-1d63-4f67-8093-5bda91f7b5ff","ConnectionString":"InstrumentationKey=52af6706-1d63-4f67-8093-5bda91f7b5ff","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T14:45:49.5769569+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900d45f-0000-0700-0000-5dcba1330000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"a80655d5-e99f-4fa8-b68b-7270081488a5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"29aa5884-38ae-4307-b730-75e758b03e07","ConnectionString":"InstrumentationKey=29aa5884-38ae-4307-b730-75e758b03e07","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:22:42.887832+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"080116bf-0000-0700-0000-5dccb0660000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"a0ec2d96-1cc3-460a-91a7-5be86fa1b466","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"de9d4080-dc24-434a-a31b-f485976a54e5","ConnectionString":"InstrumentationKey=de9d4080-dc24-434a-a31b-f485976a54e5","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:50.696667+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0005433-0000-0700-0000-5e0ab1210000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"851fafd1-27e1-4dfc-bdee-3bb473f4b5c1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"81132a03-7dcf-457b-af10-309dc3351a42","ConnectionString":"InstrumentationKey=81132a03-7dcf-457b-af10-309dc3351a42","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:23:29.0664846+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55013331-0000-0700-0000-5e11ae310000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"6df7e25a-6c30-4517-b14e-df59959c74aa","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"774618d4-b75b-441e-9cf2-394125709a88","ConnectionString":"InstrumentationKey=774618d4-b75b-441e-9cf2-394125709a88","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:36:49.3792077+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -513,19 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:45:51 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:47 GMT -======= - - Thu, 14 Nov 2019 01:39:53 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:51 GMT expires: - '-1' pragma: @@ -543,19 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1176' -======= -<<<<<<< HEAD - - '1197' -======= - - '1198' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1195' ->>>>>>> live test + - '1183' x-powered-by: - ASP.NET status: @@ -577,23 +376,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -610,19 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:45:52 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:48 GMT -======= - - Thu, 14 Nov 2019 01:39:54 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:52 GMT expires: - '-1' pragma: @@ -640,7 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -653,19 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "52af6706-1d63-4f67-8093-5bda91f7b5ff"}}''' -======= -<<<<<<< HEAD - "29aa5884-38ae-4307-b730-75e758b03e07"}}''' -======= - "de9d4080-dc24-434a-a31b-f485976a54e5"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "81132a03-7dcf-457b-af10-309dc3351a42"}}''' ->>>>>>> live test + "774618d4-b75b-441e-9cf2-394125709a88"}}''' headers: Accept: - application/json @@ -682,23 +442,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -706,19 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"52af6706-1d63-4f67-8093-5bda91f7b5ff"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"29aa5884-38ae-4307-b730-75e758b03e07"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"de9d4080-dc24-434a-a31b-f485976a54e5"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"81132a03-7dcf-457b-af10-309dc3351a42"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"774618d4-b75b-441e-9cf2-394125709a88"}}' headers: cache-control: - no-cache @@ -727,27 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:45:54 GMT + - Sun, 05 Jan 2020 09:36:55 GMT etag: - - '"1D5BCC4571C9300"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:22:51 GMT - etag: - - '"1D599EAC621D280"' -======= - - Thu, 14 Nov 2019 01:39:58 GMT - etag: - - '"1D59A8C6B3FA610"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:23:34 GMT - etag: - - '"1D5BF814C01BE0B"' ->>>>>>> live test + - '"1D5C3ABAA7D66EB"' expires: - '-1' pragma: @@ -765,19 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1181' -======= -<<<<<<< HEAD - - '1197' -======= - - '1192' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1198' ->>>>>>> live test + - '1180' x-powered-by: - ASP.NET status: @@ -797,23 +500,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -828,31 +516,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3241' - content-type: - - application/json - date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:45:55 GMT -======= - - Wed, 13 Nov 2019 06:22:52 GMT -======= - - '3043' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:59 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - '3212' content-type: - application/json date: - - Tue, 31 Dec 2019 02:23:34 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:56 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml index 58d9ce12bdf..1fabd2d5310 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml @@ -13,23 +13,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -120,19 +105,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:29 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:32 GMT -======= - - Thu, 14 Nov 2019 01:38:46 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:32 GMT expires: - '-1' pragma: @@ -168,42 +141,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:06.7505219Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:06.7505219Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:06.7036615Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T06:23:11.1533114Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T06:23:11.1533114Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T06:23:11.0751482Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6417252Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:38:26.6417252Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:38:26.5636089Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:23:48.7669546Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:23:48.7669546Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:23:48.6888136Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:10.3635715Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:10.3635715Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:37:10.3011113Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -212,19 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:29 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:32 GMT -======= - - Thu, 14 Nov 2019 01:38:46 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:10 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:33 GMT expires: - '-1' pragma: @@ -258,23 +192,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -290,19 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:29 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:23:33 GMT -======= - - Thu, 14 Nov 2019 01:38:46 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:10 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:33 GMT expires: - '-1' pragma: @@ -318,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' status: code: 200 message: OK @@ -348,81 +255,26 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:39.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D65E97F1CF8E31BC2367AC0C61676494447E45CAA36B8ED96DF1FBC37CC1B38B","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:23:40.3733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BEC680F663CCAFC8B1BFF07F50605B27962686D137F83BAC88B9E9B6D6733D8","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:09.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"384B9434DA2EF7ECA28D819751C33125E16AD2A2676B88E6185D3957ADE6774E","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:18.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCFF88DE4F3CADE028BDCCC6E296974D2262F39C159C4254A70173D445FB4C02","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:37:41.3966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D36F3198787708114D8350FD20330BA93B3EF99BF95EF75FE15E8B0F7CB5AFF","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3589' -======= -<<<<<<< HEAD - - '3642' ->>>>>>> Re-record test for app service + - '3602' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:14 GMT + - Sun, 05 Jan 2020 09:38:16 GMT etag: -<<<<<<< HEAD - - '"1D5BCBD9A88E000"' -======= - - '"1D599EAE46BD48B"' -======= - - '3603' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:39:47 GMT - etag: - - '"1D59A8C4FDBC700"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3534' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:24:52 GMT - etag: - - '"1D5BF816818A670"' ->>>>>>> live test + - '"1D5C3ABC6BD8F35"' expires: - '-1' pragma: @@ -440,11 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '497' -======= - - '498' ->>>>>>> Re-record test for app service + - '499' x-powered-by: - ASP.NET status: @@ -469,42 +317,15 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30031ee-0000-0700-0000-5e060dfa0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"18a34198-ff44-4e38-ba1b-384271538a7d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c7c02324-6c09-4410-b8f2-ff804e34bde9","ConnectionString":"InstrumentationKey=c7c02324-6c09-4410-b8f2-ff804e34bde9","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-27T13:58:18.1052474+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f900cd63-0000-0700-0000-5dcba1940000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"d910a84a-b320-47e6-ad9f-a7b8c5e74f2c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"a5e4555a-31e1-48f7-b724-8cd83ed31d86","ConnectionString":"InstrumentationKey=a5e4555a-31e1-48f7-b724-8cd83ed31d86","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-13T06:24:19.9697128+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"08011bbf-0000-0700-0000-5dccb0660000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"befcf8ee-ddae-49f5-9464-79e86c9bab33","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d009761b-ff64-4325-8ade-aead82b6fb85","ConnectionString":"InstrumentationKey=d009761b-ff64-4325-8ade-aead82b6fb85","Name":"cli-funcapp-nwr000003","CreationDate":"2019-11-14T01:39:50.9302344+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000a637-0000-0700-0000-5e0ab1790000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"90ec6c70-1d96-4157-bc34-bbcbc2d24b43","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7ae23556-8115-4af0-8c0f-4e1703a40714","ConnectionString":"InstrumentationKey=7ae23556-8115-4af0-8c0f-4e1703a40714","Name":"cli-funcapp-nwr000003","CreationDate":"2019-12-31T02:24:57.6919838+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55017b35-0000-0700-0000-5e11ae8d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"6ac74b1c-e637-430b-b347-e5e82cc8505a","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5ffef80f-6c32-4d90-b71f-f9739bb27c99","ConnectionString":"InstrumentationKey=5ffef80f-6c32-4d90-b71f-f9739bb27c99","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:38:21.2500344+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -515,19 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:19 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:24:23 GMT -======= - - Thu, 14 Nov 2019 01:39:54 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:59 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:22 GMT expires: - '-1' pragma: @@ -545,11 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1195' -======= - - '1192' ->>>>>>> live test + - '1185' x-powered-by: - ASP.NET status: @@ -571,23 +376,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -604,19 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:20 GMT -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:24:24 GMT -======= - - Thu, 14 Nov 2019 01:39:54 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:25:01 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:23 GMT expires: - '-1' pragma: @@ -634,7 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -647,19 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "c7c02324-6c09-4410-b8f2-ff804e34bde9"}}''' -======= -<<<<<<< HEAD - "a5e4555a-31e1-48f7-b724-8cd83ed31d86"}}''' -======= - "d009761b-ff64-4325-8ade-aead82b6fb85"}}''' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - "7ae23556-8115-4af0-8c0f-4e1703a40714"}}''' ->>>>>>> live test + "5ffef80f-6c32-4d90-b71f-f9739bb27c99"}}''' headers: Accept: - application/json @@ -676,23 +442,8 @@ interactions: ParameterSetName: - -g -n --consumption-plan-location -s User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -700,19 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c7c02324-6c09-4410-b8f2-ff804e34bde9"}}' -======= -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"a5e4555a-31e1-48f7-b724-8cd83ed31d86"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d009761b-ff64-4325-8ade-aead82b6fb85"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7ae23556-8115-4af0-8c0f-4e1703a40714"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"5ffef80f-6c32-4d90-b71f-f9739bb27c99"}}' headers: cache-control: - no-cache @@ -721,27 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:23 GMT - etag: - - '"1D5BCBDB375978B"' -======= -<<<<<<< HEAD - - Wed, 13 Nov 2019 06:24:27 GMT - etag: - - '"1D599EAFF8DA18B"' -======= - - Thu, 14 Nov 2019 01:39:57 GMT + - Sun, 05 Jan 2020 09:38:25 GMT etag: - - '"1D59A8C6B1E2155"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:25:05 GMT - etag: - - '"1D5BF8182AA8F80"' ->>>>>>> live test + - '"1D5C3ABE05C4BAB"' expires: - '-1' pragma: @@ -759,19 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1196' -======= -<<<<<<< HEAD - - '1199' -======= - - '1196' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: @@ -791,23 +500,8 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -815,56 +509,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:22.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D65E97F1CF8E31BC2367AC0C61676494447E45CAA36B8ED96DF1FBC37CC1B38B","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:24:26.6166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9BEC680F663CCAFC8B1BFF07F50605B27962686D137F83BAC88B9E9B6D6733D8","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:39:56.0533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"384B9434DA2EF7ECA28D819751C33125E16AD2A2676B88E6185D3957ADE6774E","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:04.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCFF88DE4F3CADE028BDCCC6E296974D2262F39C159C4254A70173D445FB4C02","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:24.8266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D36F3198787708114D8350FD20330BA93B3EF99BF95EF75FE15E8B0F7CB5AFF","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3588' -======= -<<<<<<< HEAD - - '3641' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:25 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBDB375978B"' -======= - - '"1D599EAFF8DA18B"' -======= - - '3607' -======= - - '3533' ->>>>>>> live test + - '3601' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:07 GMT + - Sun, 05 Jan 2020 09:38:27 GMT etag: -<<<<<<< HEAD - - '"1D59A8C6B1E2155"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '"1D5BF8182AA8F80"' ->>>>>>> live test + - '"1D5C3ABE05C4BAB"' expires: - '-1' pragma: @@ -906,23 +562,8 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -930,58 +571,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage","name":"cli-funcapp-nwr000003/stage","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:30.4766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__20e2","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"414C25AB03F24EF1CF689DD59C4D54FED7168DA43F0F1B3BA9C1C9CD894D3C50","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-133.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T06:24:35.3333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__fc5e","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D16C1B59562A7ED094AF1844E5F1426575757CEBC28B61F547129F029DB2F6F3","kind":"functionapp","inboundIpAddress":"40.112.243.5","possibleInboundIpAddresses":"40.112.243.5","outboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202","possibleOutboundIpAddresses":"40.112.243.5,168.61.67.173,137.117.16.243,23.100.47.193,104.42.125.202,23.99.67.170,104.210.54.177,104.45.237.237,23.99.68.138,137.117.12.227","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-133","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-093.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:40:04.4533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__b575","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6D1CD1F5A29B04254DC9862BDE3C629557D10354D6007E8CFE8D23A0FB68FD6C","kind":"functionapp","inboundIpAddress":"40.112.191.159","possibleInboundIpAddresses":"40.112.191.159","outboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41","possibleOutboundIpAddresses":"40.112.191.159,138.91.252.122,40.86.180.238,138.91.248.136,138.91.253.41,138.91.254.30,138.91.249.213","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-093","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:11.177","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__ed33","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B310D26F5916779F11AE4FAFEE4CFE24E7D724302C6972E1C214A64981F17740","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"cli-funcapp-nwr000003(stage)","state":"Running","hostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003-stage.azurewebsites.net","cli-funcapp-nwr000003-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:32.2933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003__936a","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ED0556A8F7BA48657E362BBDE905D3DA2E455DAF0D1295CEC318D7983AABBB22","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003-stage.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3663' -======= -<<<<<<< HEAD - - '3716' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:59:03 GMT - etag: -<<<<<<< HEAD - - '"1D5BCBDB375978B"' -======= - - '"1D599EAFF8DA18B"' -======= - - '3682' + - '3676' content-type: - application/json date: - - Thu, 14 Nov 2019 01:40:38 GMT + - Sun, 05 Jan 2020 09:39:05 GMT etag: - - '"1D59A8C6B1E2155"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3609' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:25:45 GMT - etag: - - '"1D5BF8182AA8F80"' ->>>>>>> live test + - '"1D5C3ABE05C4BAB"' expires: - '-1' pragma: @@ -1019,19 +620,8 @@ interactions: ParameterSetName: - -g -n --slot User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= -<<<<<<< HEAD - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1050,11 +640,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:05 GMT -======= - - Tue, 31 Dec 2019 02:25:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:07 GMT expires: - '-1' pragma: @@ -1090,22 +676,8 @@ interactions: ParameterSetName: - -g -n --rule-name --action --ip-address --priority --slot User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - - python/3.7.5 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1113,16 +685,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/slots/stage/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -======= -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> Re-record test for app service -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003__stage","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow ->>>>>>> live test all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: @@ -1133,22 +696,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:07 GMT -======= - - Wed, 13 Nov 2019 06:25:10 GMT -======= - - '3086' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:40:38 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:25:48 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:08 GMT expires: - '-1' pragma: @@ -1209,11 +757,7 @@ interactions: - -g -n --rule-name --action --ip-address --priority --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -1232,15 +776,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:10 GMT - etag: - - '"1D5BCBDB95DBCEB"' -======= - - Tue, 31 Dec 2019 02:25:51 GMT + - Sun, 05 Jan 2020 09:39:09 GMT etag: - - '"1D5BF81878FC3D0"' ->>>>>>> live test + - '"1D5C3ABE539EBE0"' expires: - '-1' pragma: @@ -1258,11 +796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1191' -======= - - '1192' ->>>>>>> live test + - '1177' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml index 00ec7b45710..c7a027c45a8 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '12604' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:00:25 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:04:10 GMT ->>>>>>> Re-record test for app service -======= - '12604' content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:50 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:16 GMT expires: - '-1' pragma: @@ -174,54 +142,23 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.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/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:05.1823347Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:05.1823347Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:05.1042105Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:03:49.1024072Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:03:49.1024072Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:03:49.0242716Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:29.8148454Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:29.8148454Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:33:29.7367121Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:52.1429116Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:52.1429116Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:33:52.0803957Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:00:25 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:04:11 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:51 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:17 GMT expires: - '-1' pragma: @@ -256,15 +193,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -280,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:25 GMT -======= - - Wed, 13 Nov 2019 11:04:11 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:52 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:17 GMT expires: - '-1' pragma: @@ -304,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1192' -======= - '1193' ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test status: code: 200 message: OK @@ -343,62 +256,25 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:36.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:33.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:58.813","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:37.697","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80380A0257A7081BAD2E2E41BC0CFE1A0E3756C411809AC779D834D58C2397FB","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3799' + - '3725' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:13 GMT + - Sun, 05 Jan 2020 09:35:10 GMT etag: - - '"1D5BCBE03F20B20"' -======= - - '3772' -======= - - '3853' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:34:35 GMT - etag: -<<<<<<< HEAD - - '"1D59A1221BCAE40"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82C1BFE4D0"' ->>>>>>> live test + - '"1D5C3AB59782E50"' expires: - '-1' pragma: @@ -416,11 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - '499' -======= - - '498' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -446,30 +318,14 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3000cf9-0000-0700-0000-5e060eaf0000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"121ab747-20e2-4689-bb8e-542a1ea7fa52","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"44cad93c-826f-4fcb-81f3-62600968f624","ConnectionString":"InstrumentationKey=44cad93c-826f-4fcb-81f3-62600968f624","Name":"functionappconsumption000003","CreationDate":"2019-12-27T14:01:19.8678157+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00efc7-0000-0700-0000-5dcbe3680000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"45c69c7d-6296-4471-8c30-fe10e7dbae4e","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5a24030b-2c82-4325-8331-6ccc40f57d10","ConnectionString":"InstrumentationKey=5a24030b-2c82-4325-8331-6ccc40f57d10","Name":"functionappconsumption000003","CreationDate":"2019-11-13T11:05:12.6393064+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0008c54-0000-0700-0000-5e0ab3c00000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"3b87e8a3-e6b7-4380-86ce-f0b90d1ef85b","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"bed711c7-0699-4314-a007-964c397cc360","ConnectionString":"InstrumentationKey=bed711c7-0699-4314-a007-964c397cc360","Name":"functionappconsumption000003","CreationDate":"2019-12-31T02:34:40.0112572+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55018f2c-0000-0700-0000-5e11add40000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"b71bff8c-3076-4a0a-b831-7ce8c8431821","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c7c58ce5-941c-4fab-855e-5bbb89535237","ConnectionString":"InstrumentationKey=c7c58ce5-941c-4fab-855e-5bbb89535237","Name":"functionappconsumption000003","CreationDate":"2020-01-05T09:35:16.3771913+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -480,15 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:45 GMT -======= - - Wed, 13 Nov 2019 11:05:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:18 GMT expires: - '-1' pragma: @@ -506,11 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1196' -======= - - '1179' ->>>>>>> Re-record test for app service + - '1191' x-powered-by: - ASP.NET status: @@ -533,27 +377,11 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -566,15 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:46 GMT -======= - - Wed, 13 Nov 2019 11:05:16 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:20 GMT expires: - '-1' pragma: @@ -592,7 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11993' + - '11998' x-powered-by: - ASP.NET status: @@ -605,15 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappconsumption000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "44cad93c-826f-4fcb-81f3-62600968f624"}}''' -======= - "5a24030b-2c82-4325-8331-6ccc40f57d10"}}''' ->>>>>>> Re-record test for app service -======= - "bed711c7-0699-4314-a007-964c397cc360"}}''' ->>>>>>> live test + "c7c58ce5-941c-4fab-855e-5bbb89535237"}}''' headers: Accept: - application/json @@ -631,22 +443,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"44cad93c-826f-4fcb-81f3-62600968f624"}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -654,12 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"5a24030b-2c82-4325-8331-6ccc40f57d10"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"bed711c7-0699-4314-a007-964c397cc360"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c7c58ce5-941c-4fab-855e-5bbb89535237"}}' headers: cache-control: - no-cache @@ -668,21 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:49 GMT - etag: - - '"1D5BCBE2E348660"' -======= - - Wed, 13 Nov 2019 11:05:19 GMT - etag: - - '"1D59A123C1307EB"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:45 GMT + - Sun, 05 Jan 2020 09:35:22 GMT etag: - - '"1D5BF82DC9B8110"' ->>>>>>> live test + - '"1D5C3AB7336E8E0"' expires: - '-1' pragma: @@ -700,15 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1191' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - - '1185' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: @@ -729,15 +501,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -745,40 +509,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.513","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> live test + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:35:21.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80380A0257A7081BAD2E2E41BC0CFE1A0E3756C411809AC779D834D58C2397FB","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3833' + - '3763' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:51 GMT -======= - - '3816' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:05:20 GMT ->>>>>>> Re-record test for app service -======= - - '3892' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:34:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:25 GMT expires: - '-1' pragma: @@ -815,15 +555,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -831,44 +563,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.513","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:35:21.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80380A0257A7081BAD2E2E41BC0CFE1A0E3756C411809AC779D834D58C2397FB","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3793' + - '3723' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:52 GMT + - Sun, 05 Jan 2020 09:35:26 GMT etag: - - '"1D5BCBE2E348660"' -======= - - '3776' -======= - - '3852' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:34:48 GMT - etag: -<<<<<<< HEAD - - '"1D59A123C1307EB"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82DC9B8110"' ->>>>>>> live test + - '"1D5C3AB7336E8E0"' expires: - '-1' pragma: @@ -909,15 +615,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -927,43 +625,19 @@ interactions: string: >>>>>> live test - SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" - controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> Re-record test for app service -======= - userPWD="qhswcE48lgyE5lYtdTrhmrH1GbNph1vNxnltfqzm8t1P6NEggqiXWnmsYNPy" destinationAppUrl="http://functionappconsumption000003.azurewebsites.net" - SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" - controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> live test + userPWD="m2v3p4LoQ1HL0ASAtY8amf3TWe4wSusAWGlvJ6n7d6kP1tddrLc7WozEtm10" destinationAppUrl="http://functionappconsumption000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -975,15 +649,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:52 GMT -======= - - Wed, 13 Nov 2019 11:05:22 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:49 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:26 GMT expires: - '-1' pragma: @@ -997,7 +663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -1018,15 +684,7 @@ interactions: - -g -n --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1034,44 +692,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:18.5266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:44.513","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:35:21.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80380A0257A7081BAD2E2E41BC0CFE1A0E3756C411809AC779D834D58C2397FB","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3793' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:01:53 GMT - etag: - - '"1D5BCBE2E348660"' -======= - - '3776' -======= - - '3852' ->>>>>>> live test + - '3723' content-type: - application/json date: - - Tue, 31 Dec 2019 02:34:50 GMT + - Sun, 05 Jan 2020 09:35:30 GMT etag: -<<<<<<< HEAD - - '"1D59A123C1307EB"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82DC9B8110"' ->>>>>>> live test + - '"1D5C3AB7336E8E0"' expires: - '-1' pragma: @@ -1119,15 +751,7 @@ interactions: - -g -n --set User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1135,44 +759,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-107.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:55.65","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"25821D0ABB76FFE5F30FB51A5AAF61F49D7A8E17A9F036B6862DAC8B5DB21A28","kind":"functionapp","inboundIpAddress":"40.80.156.205","possibleInboundIpAddresses":"40.80.156.205","outboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47","possibleOutboundIpAddresses":"40.80.156.205,40.80.152.218,104.42.156.123,104.42.216.21,40.78.63.47,40.80.156.103,40.78.62.97,40.80.153.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-107","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:25.8766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"24F564C9C52F57C7BE2F6EFA17DA61C3C22248428472E8F30A7E6C632344FEC0","kind":"functionapp","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:51.863","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"65EF6FA65E0C21C597D00CBF67267F21BBFCA0D8C75E255A67764D3BC91ABF49","kind":"functionapp","inboundIpAddress":"191.239.58.162","possibleInboundIpAddresses":"191.239.58.162","outboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","possibleOutboundIpAddresses":"191.239.57.218,191.239.58.113,191.239.58.48,191.239.60.207,104.42.157.126,104.42.159.97,104.42.157.47,104.42.153.62","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-WestUSwebspace","selfLink":"https://waws-prod-bay-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:35:32.577","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80380A0257A7081BAD2E2E41BC0CFE1A0E3756C411809AC779D834D58C2397FB","kind":"functionapp","inboundIpAddress":"137.117.9.212","possibleInboundIpAddresses":"137.117.9.212","outboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","possibleOutboundIpAddresses":"137.117.9.68,137.117.9.69,137.117.10.6,137.117.12.16","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3794' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:01:58 GMT - etag: - - '"1D5BCBE2E348660"' -======= - - '3777' -======= - - '3853' ->>>>>>> live test + - '3725' content-type: - application/json date: - - Tue, 31 Dec 2019 02:34:54 GMT + - Sun, 05 Jan 2020 09:35:36 GMT etag: -<<<<<<< HEAD - - '"1D59A123C1307EB"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82DC9B8110"' ->>>>>>> live test + - '"1D5C3AB7336E8E0"' expires: - '-1' pragma: @@ -1190,15 +788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '497' -======= - '498' ->>>>>>> Re-record test for app service -======= - - '499' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1221,15 +811,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1243,21 +825,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:04 GMT - etag: - - '"1D5BCBE32A0BA20"' -======= - - Wed, 13 Nov 2019 11:05:36 GMT + - Sun, 05 Jan 2020 09:35:47 GMT etag: - - '"1D59A1240748D4B"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:59 GMT - etag: - - '"1D5BF82E0FD0670"' ->>>>>>> live test + - '"1D5C3AB79B11510"' expires: - '-1' pragma: @@ -1271,15 +841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14998' -======= - - '14996' ->>>>>>> Re-record test for app service -======= - '14998' ->>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml index 3a1ff6a04d2..b7452822cbd 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '12604' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:59:15 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:06:33 GMT ->>>>>>> Re-record test for app service -======= - '12604' content-type: - application/json date: - - Tue, 31 Dec 2019 02:34:56 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:44 GMT expires: - '-1' pragma: @@ -174,54 +142,23 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.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/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:55.5180606Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:55.5180606Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:55.4399493Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:13.2084843Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:13.2084843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:13.1459951Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:34.0549933Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:34.0549933Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:34.0081361Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:36:24.1264187Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:36:24.1264187Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:36:24.0639124Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 13:59:17 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:06:34 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:57 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:45 GMT expires: - '-1' pragma: @@ -256,15 +193,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -280,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:17 GMT -======= - - Wed, 13 Nov 2019 11:06:34 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:45 GMT expires: - '-1' pragma: @@ -304,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1199' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - '1196' ->>>>>>> live test status: code: 200 message: OK @@ -342,62 +255,25 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:25.5466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"76943A5F73F977F3D7BCAF2B398A4F95A2C1FEE9D1C946EDD7B2F07C8A791115","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:41.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C886C49CB1D65A2A0FDDD0A4A0A286BC8E7179291B8A36DF8D8A3E66EC5B37BE","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:06.3466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E77434405F4B942DBD20941003E085DEBF97F2858EF452619C1567B139FF3D6D","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-WestUSwebspace/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|8"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:53.5566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapplinuxconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6D5894EA43297E57471B10D2EF4B07FA16C8659048089B077C0B5249C8541D4E","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '3816' content-type: - application/json date: - - Fri, 27 Dec 2019 13:59:42 GMT + - Sun, 05 Jan 2020 09:37:10 GMT etag: - - '"1D5BCBDD98AF0E0"' -======= - - '3811' -======= - - '3816' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:35:23 GMT - etag: -<<<<<<< HEAD - - '"1D59A126E0974E0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82EA0B650B"' ->>>>>>> live test + - '"1D5C3ABAA54340B"' expires: - '-1' pragma: @@ -415,15 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '499' -======= - - '498' ->>>>>>> Re-record test for app service -======= - '499' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -449,30 +317,14 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300f0f2-0000-0700-0000-5e060e550000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"e97001a0-eb94-455a-8925-22d1fcd14494","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"119f8a66-3f7e-4180-8b5f-adc157e5426b","ConnectionString":"InstrumentationKey=119f8a66-3f7e-4180-8b5f-adc157e5426b","Name":"functionapplinuxconsumption000003","CreationDate":"2019-12-27T13:59:49.4589712+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc000acd-0000-0700-0000-5dcbe3d60000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"1ff16a83-bc85-468e-8aee-d6f0e1dcc376","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5d8afb20-087f-442d-b4dc-d59a04c7133a","ConnectionString":"InstrumentationKey=5d8afb20-087f-442d-b4dc-d59a04c7133a","Name":"functionapplinuxconsumption000003","CreationDate":"2019-11-13T11:07:02.9519574+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001357-0000-0700-0000-5e0ab3f10000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"854da032-e1f3-4ea1-9dbd-f2bb326a51a1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"afac9cb3-dfec-40cd-b9d0-28366dadefde","ConnectionString":"InstrumentationKey=afac9cb3-dfec-40cd-b9d0-28366dadefde","Name":"functionapplinuxconsumption000003","CreationDate":"2019-12-31T02:35:29.4570108+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55017532-0000-0700-0000-5e11ae4b0000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"4da46614-5c7b-4596-9b28-523e0298094e","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"716c7aec-ae49-445d-bf79-c4004e499486","ConnectionString":"InstrumentationKey=716c7aec-ae49-445d-bf79-c4004e499486","Name":"functionapplinuxconsumption000003","CreationDate":"2020-01-05T09:37:15.4974481+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -483,15 +335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:51 GMT -======= - - Wed, 13 Nov 2019 11:07:05 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:17 GMT expires: - '-1' pragma: @@ -509,15 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1190' -======= - - '1187' ->>>>>>> Re-record test for app service -======= - - '1185' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -540,27 +376,11 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -573,15 +393,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:52 GMT -======= - - Wed, 13 Nov 2019 11:07:06 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:33 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:18 GMT expires: - '-1' pragma: @@ -599,7 +411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11992' + - '11996' x-powered-by: - ASP.NET status: @@ -609,15 +421,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "119f8a66-3f7e-4180-8b5f-adc157e5426b"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "5d8afb20-087f-442d-b4dc-d59a04c7133a"}}''' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "afac9cb3-dfec-40cd-b9d0-28366dadefde"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "716c7aec-ae49-445d-bf79-c4004e499486"}}''' headers: Accept: - application/json @@ -635,22 +439,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"119f8a66-3f7e-4180-8b5f-adc157e5426b"}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -658,12 +447,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"5d8afb20-087f-442d-b4dc-d59a04c7133a"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"afac9cb3-dfec-40cd-b9d0-28366dadefde"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"716c7aec-ae49-445d-bf79-c4004e499486"}}' headers: cache-control: - no-cache @@ -672,21 +456,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:53 GMT + - Sun, 05 Jan 2020 09:37:19 GMT etag: - - '"1D5BCBDE9B294D5"' -======= - - Wed, 13 Nov 2019 11:07:07 GMT - etag: - - '"1D59A127D49AC0B"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:33 GMT - etag: - - '"1D5BF82FA562160"' ->>>>>>> live test + - '"1D5C3ABB977EF8B"' expires: - '-1' pragma: @@ -704,15 +476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1188' -======= - - '1184' ->>>>>>> Re-record test for app service -======= - - '1187' ->>>>>>> live test + - '1189' x-powered-by: - ASP.NET status: @@ -735,15 +499,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -751,15 +507,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"119f8a66-3f7e-4180-8b5f-adc157e5426b"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"5d8afb20-087f-442d-b4dc-d59a04c7133a"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"afac9cb3-dfec-40cd-b9d0-28366dadefde"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"716c7aec-ae49-445d-bf79-c4004e499486"}}' headers: cache-control: - no-cache @@ -768,15 +516,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:54 GMT -======= - - Wed, 13 Nov 2019 11:07:09 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:20 GMT expires: - '-1' pragma: @@ -794,15 +534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11997' -======= - - '11992' ->>>>>>> Re-record test for app service -======= - '11998' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -823,15 +555,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -848,15 +572,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:55 GMT -======= - - Wed, 13 Nov 2019 11:07:10 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:21 GMT expires: - '-1' pragma: @@ -895,15 +611,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -917,21 +625,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:02 GMT - etag: - - '"1D5BCBDE9B294D5"' -======= - - Wed, 13 Nov 2019 11:07:26 GMT - etag: - - '"1D59A127D49AC0B"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:40 GMT + - Sun, 05 Jan 2020 09:37:27 GMT etag: - - '"1D5BF82FA562160"' ->>>>>>> live test + - '"1D5C3ABB977EF8B"' expires: - '-1' pragma: @@ -945,15 +641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14998' -======= - - '14996' ->>>>>>> Re-record test for app service -======= - - '14994' ->>>>>>> live test + - '14992' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml index f2f137224f5..fabfa2f1917 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_ragrs_storage_e2e.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '12604' content-type: - application/json date: - - Fri, 27 Dec 2019 13:59:25 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:06:30 GMT ->>>>>>> Re-record test for app service -======= - - '12604' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:33:27 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:18 GMT expires: - '-1' pragma: @@ -174,30 +142,14 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:04.3628763Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:04.3628763Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:04.2847491Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' -======= - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:09.4889697Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:09.4889697Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:09.4108312Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:05.5797236Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:33:05.5797236Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:33:05.5016165Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:56.8589177Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:56.8589177Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:35:56.7807653Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitest000002-secondary.blob.core.windows.net/","queue":"https://clitest000002-secondary.queue.core.windows.net/","table":"https://clitest000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -206,15 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:26 GMT -======= - - Wed, 13 Nov 2019 11:06:31 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:18 GMT expires: - '-1' pragma: @@ -249,15 +193,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -273,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:26 GMT -======= - - Wed, 13 Nov 2019 11:06:32 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:29 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:19 GMT expires: - '-1' pragma: @@ -297,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1192' ->>>>>>> Re-record test for app service -======= - - '1193' ->>>>>>> live test + - '1194' status: code: 200 message: OK @@ -336,59 +256,25 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:36.39","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5848DA9B79BECC7EBBC646104018E1812016A48F76073D1BC8002F99E91BDC4D","kind":"functionapp","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-127.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:42.4866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D15C91D534DF7AA401F65D61315163E803FB46591F04C2EAF77C125C1C22281E","kind":"functionapp","inboundIpAddress":"40.112.243.3","possibleInboundIpAddresses":"40.112.243.3","outboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230","possibleOutboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230,40.83.164.193,104.42.51.234,104.42.49.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-127","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:37.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F997D7F6967E5ED7951911DBABC719CED8D17FA2AD6DFD54F4925B49D5F5DF80","kind":"functionapp","inboundIpAddress":"191.236.106.123","possibleInboundIpAddresses":"191.236.106.123","outboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","possibleOutboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:26.7166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8CBF6AB45314D1AAA88A1606885411383EB1B175E76D1372AB6AD9FB0677D767","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3783' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:00:12 GMT - etag: - - '"1D5BCBDDFF54B95"' -======= - - '3797' -======= - - '3858' ->>>>>>> live test + - '3729' content-type: - application/json date: - - Tue, 31 Dec 2019 02:34:13 GMT + - Sun, 05 Jan 2020 09:37:02 GMT etag: -<<<<<<< HEAD - - '"1D59A126E8CAEA0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82B4D354A0"' ->>>>>>> live test + - '"1D5C3AB9A45FE80"' expires: - '-1' pragma: @@ -406,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '497' x-powered-by: - ASP.NET status: @@ -432,30 +318,14 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b30037f4-0000-0700-0000-5e060e700000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"8f0d79f1-9de7-454f-887b-23b66c77f447","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"773e3dd9-e20d-4cb8-881d-646c98fcbbf2","ConnectionString":"InstrumentationKey=773e3dd9-e20d-4cb8-881d-646c98fcbbf2","Name":"functionappconsumption000003","CreationDate":"2019-12-27T14:00:16.7056429+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d7cd-0000-0700-0000-5dcbe3e90000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"74d047ff-f46e-46d9-b86d-3f70123eacad","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f12f08a5-8ee4-4bab-bf02-68ac34b92bbe","ConnectionString":"InstrumentationKey=f12f08a5-8ee4-4bab-bf02-68ac34b92bbe","Name":"functionappconsumption000003","CreationDate":"2019-11-13T11:07:21.0378602+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0007c53-0000-0700-0000-5e0ab3ab0000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"42efcf20-6fa4-4048-94ce-d9da215bb2e1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b645f6af-f566-4da3-b566-90663b7e9960","ConnectionString":"InstrumentationKey=b645f6af-f566-4da3-b566-90663b7e9960","Name":"functionappconsumption000003","CreationDate":"2019-12-31T02:34:19.9173373+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55010132-0000-0700-0000-5e11ae430000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"770351d6-d427-4a86-8f05-dc47ce68a4b5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"e77a47df-cf8d-4c4c-a93e-11562679af8e","ConnectionString":"InstrumentationKey=e77a47df-cf8d-4c4c-a93e-11562679af8e","Name":"functionappconsumption000003","CreationDate":"2020-01-05T09:37:07.1007922+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -466,15 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:18 GMT -======= - - Wed, 13 Nov 2019 11:07:23 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:21 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:09 GMT expires: - '-1' pragma: @@ -492,15 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1194' -======= - - '1179' ->>>>>>> Re-record test for app service -======= - - '1181' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: @@ -523,15 +377,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -548,15 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:19 GMT -======= - - Wed, 13 Nov 2019 11:07:25 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:22 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:11 GMT expires: - '-1' pragma: @@ -574,7 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -587,15 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappconsumption000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "773e3dd9-e20d-4cb8-881d-646c98fcbbf2"}}''' -======= - "f12f08a5-8ee4-4bab-bf02-68ac34b92bbe"}}''' ->>>>>>> Re-record test for app service -======= - "b645f6af-f566-4da3-b566-90663b7e9960"}}''' ->>>>>>> live test + "e77a47df-cf8d-4c4c-a93e-11562679af8e"}}''' headers: Accept: - application/json @@ -613,15 +443,7 @@ interactions: - -g -n -c -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -629,15 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"773e3dd9-e20d-4cb8-881d-646c98fcbbf2"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"f12f08a5-8ee4-4bab-bf02-68ac34b92bbe"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b645f6af-f566-4da3-b566-90663b7e9960"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"e77a47df-cf8d-4c4c-a93e-11562679af8e"}}' headers: cache-control: - no-cache @@ -646,21 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:21 GMT + - Sun, 05 Jan 2020 09:37:13 GMT etag: - - '"1D5BCBDF9E77235"' -======= - - Wed, 13 Nov 2019 11:07:27 GMT - etag: - - '"1D59A1288455BB5"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:24 GMT - etag: - - '"1D5BF82D06A2A90"' ->>>>>>> live test + - '"1D5C3ABB51D8915"' expires: - '-1' pragma: @@ -678,7 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1192' x-powered-by: - ASP.NET status: @@ -699,15 +501,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -715,44 +509,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:20.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5848DA9B79BECC7EBBC646104018E1812016A48F76073D1BC8002F99E91BDC4D","kind":"functionapp","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-127.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:26.3633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D15C91D534DF7AA401F65D61315163E803FB46591F04C2EAF77C125C1C22281E","kind":"functionapp","inboundIpAddress":"40.112.243.3","possibleInboundIpAddresses":"40.112.243.3","outboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230","possibleOutboundIpAddresses":"40.112.243.3,104.42.52.115,104.42.48.82,40.83.168.240,40.78.70.230,40.83.164.193,104.42.51.234,104.42.49.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-127","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:24.057","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F997D7F6967E5ED7951911DBABC719CED8D17FA2AD6DFD54F4925B49D5F5DF80","kind":"functionapp","inboundIpAddress":"191.236.106.123","possibleInboundIpAddresses":"191.236.106.123","outboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","possibleOutboundIpAddresses":"191.239.52.104,191.239.49.193,191.239.53.140,191.239.50.228,40.118.188.58,40.118.184.14,40.118.184.166,40.118.184.238","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e-ragrs000001-WestUSwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e-ragrs000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:37:12.2733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappconsumption000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8CBF6AB45314D1AAA88A1606885411383EB1B175E76D1372AB6AD9FB0677D767","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e-ragrs000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3787' + - '3728' content-type: - application/json date: - - Fri, 27 Dec 2019 14:00:23 GMT + - Sun, 05 Jan 2020 09:37:14 GMT etag: - - '"1D5BCBDF9E77235"' -======= - - '3796' -======= - - '3858' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:34:26 GMT - etag: -<<<<<<< HEAD - - '"1D59A1288455BB5"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82D06A2A90"' ->>>>>>> live test + - '"1D5C3ABB51D8915"' expires: - '-1' pragma: @@ -793,15 +561,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -811,43 +571,19 @@ interactions: string: >>>>>> live test - SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" - controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> Re-record test for app service -======= - userPWD="qN1HdBG6iGwl3GCgp31mu1YYAqkytig5qY72NQMNrstbRq6PhEGq1PxJmhEJ" destinationAppUrl="http://functionappconsumption000003.azurewebsites.net" - SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" - controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> live test + userPWD="FvGklPMEKcwBtgwjq3suAWYSne5kwccfqKv08wPlZnuAafbjmjnDLAY7uGEq" destinationAppUrl="http://functionappconsumption000003.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -859,15 +595,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:23 GMT -======= - - Wed, 13 Nov 2019 11:07:30 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:26 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:15 GMT expires: - '-1' pragma: @@ -881,7 +609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11998' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml index 3f615109187..b8da1efba90 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_cors.yaml @@ -14,22 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:35:44Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:33:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:34 GMT -======= - - Wed, 13 Nov 2019 11:02:44 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:10 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:27 GMT expires: - '-1' pragma: @@ -80,15 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -104,15 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:36 GMT -======= - - Wed, 13 Nov 2019 11:02:47 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:11 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:28 GMT expires: - '-1' pragma: @@ -130,15 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1192' ->>>>>>> Re-record test for app service -======= - - '1191' ->>>>>>> live test + - '1198' x-powered-by: - ASP.NET status: @@ -159,22 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:35:44Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:33:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -183,15 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:36 GMT -======= - - Wed, 13 Nov 2019 11:02:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:29 GMT expires: - '-1' pragma: @@ -225,15 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -241,18 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","name":"slot-traffic-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":23100,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23100","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":21887,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21887","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":23240,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23240","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":35578,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35578","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -261,15 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:44 GMT -======= - - Wed, 13 Nov 2019 11:02:54 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:20 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:38 GMT expires: - '-1' pragma: @@ -287,15 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1192' -======= - - '1184' ->>>>>>> Re-record test for app service -======= - - '1176' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: @@ -316,22 +226,14 @@ interactions: - --name -g --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:58:04Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:02:17Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:35:44Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:33:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -340,15 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:45 GMT -======= - - Wed, 13 Nov 2019 11:02:56 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:21 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:38 GMT expires: - '-1' pragma: @@ -381,30 +275,14 @@ interactions: - --name -g --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:14.4978521Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:02:24.5062508Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:50.4986942Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:44.9546619Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:44.9546619Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:33:44.8921458Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -413,15 +291,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:48 GMT -======= - - Wed, 13 Nov 2019 11:02:57 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:23 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:42 GMT expires: - '-1' pragma: @@ -437,15 +307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1193' -======= - - '1187' ->>>>>>> Re-record test for app service -======= - - '1175' ->>>>>>> live test status: code: 200 message: OK @@ -464,15 +326,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -480,18 +334,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","name":"slot-traffic-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":23100,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23100","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":21887,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_21887","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":23240,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23240","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":35578,"name":"slot-traffic-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35578","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -500,15 +344,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:48 GMT -======= - - Wed, 13 Nov 2019 11:02:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:25 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:44 GMT expires: - '-1' pragma: @@ -545,30 +381,14 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:14.5759682Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:14.4978521Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:02:24.5843754Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:02:24.5062508Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:50.5611745Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:50.4986942Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:44.9546619Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:44.9546619Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:33:44.8921458Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -577,15 +397,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:49 GMT -======= - - Wed, 13 Nov 2019 11:03:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:27 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:46 GMT expires: - '-1' pragma: @@ -620,15 +432,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -644,15 +448,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:49 GMT -======= - - Wed, 13 Nov 2019 11:03:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:27 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:46 GMT expires: - '-1' pragma: @@ -668,15 +464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1193' ->>>>>>> Re-record test for app service -======= - - '1190' ->>>>>>> live test + - '1195' status: code: 200 message: OK @@ -705,15 +493,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -721,44 +501,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004","name":"slot-traffic-web000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:58:55.46","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"14DA58C5CDF11E6381D336E23DAF2E2595BE6C6E28B91E77A9E80049F34EEDE1","kind":"functionapp","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:03:05.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0E4463A697DC0CE5110F34B99679EC404AD6015E98778ED3363D5EB1E947C9CF","kind":"functionapp","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:33.4933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F53E60574C50D5404EC84EBBFBF5F6DFF5EA9529E5488BF24480997BB5BB615C","kind":"functionapp","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"slot-traffic-web000004","state":"Running","hostNames":["slot-traffic-web000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/slot-traffic-web000004","repositorySiteName":"slot-traffic-web000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["slot-traffic-web000004.azurewebsites.net","slot-traffic-web000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"slot-traffic-web000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"slot-traffic-web000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/slot-traffic-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:51.647","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"slot-traffic-web000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9CE76F756494936B84738A23B2E201931586A8027CC7581CAF70608C91DBC4B1","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"slot-traffic-web000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3542' + - '3543' content-type: - application/json date: - - Fri, 27 Dec 2019 13:59:12 GMT + - Sun, 05 Jan 2020 09:35:09 GMT etag: - - '"1D5BCBDC77D8FF5"' -======= - - '3547' -======= - - '3557' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:36:50 GMT - etag: -<<<<<<< HEAD - - '"1D59A11ECFA9E2B"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF831DE37D4B"' ->>>>>>> live test + - '"1D5C3AB61A11BF0"' expires: - '-1' pragma: @@ -776,15 +530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '496' -======= - - '493' ->>>>>>> Re-record test for app service -======= - '498' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -810,22 +556,14 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/slot-traffic-web000004?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300c0f0-0000-0700-0000-5e060e350000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"1fd97f62-4f17-4aa6-93b0-f9e6b6e36ea4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6b39def4-5356-4a5d-8d5d-79fdc9853d3a","ConnectionString":"InstrumentationKey=6b39def4-5356-4a5d-8d5d-79fdc9853d3a","Name":"slot-traffic-web000004","CreationDate":"2019-12-27T13:59:17.7009989+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d3c2-0000-0700-0000-5dcbe2fe0000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"24551cc3-d25e-4a92-b0a9-f255449e4a05","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ad36671f-938b-427f-bea2-9336ea0a5b99","ConnectionString":"InstrumentationKey=ad36671f-938b-427f-bea2-9336ea0a5b99","Name":"slot-traffic-web000004","CreationDate":"2019-11-13T11:03:26.4689897+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000495b-0000-0700-0000-5e0ab4470000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"ae349917-49a4-4cbe-aea4-83c90ba6d9af","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"53144707-8169-45d9-a33f-ebaa147ae13d","ConnectionString":"InstrumentationKey=53144707-8169-45d9-a33f-ebaa147ae13d","Name":"slot-traffic-web000004","CreationDate":"2019-12-31T02:36:55.9618783+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/slot-traffic-web000004","name":"slot-traffic-web000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501842c-0000-0700-0000-5e11add30000\"","properties":{"Ver":"v2","ApplicationId":"slot-traffic-web000004","AppId":"80243415-8fda-4cc1-86fe-4e1c3a3bce41","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5dafe035-e803-4f59-963e-9a0731c6671b","ConnectionString":"InstrumentationKey=5dafe035-e803-4f59-963e-9a0731c6671b","Name":"slot-traffic-web000004","CreationDate":"2020-01-05T09:35:15.7897196+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -836,15 +574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:19 GMT -======= - - Wed, 13 Nov 2019 11:03:28 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:57 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:17 GMT expires: - '-1' pragma: @@ -862,15 +592,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1192' -======= - '1193' ->>>>>>> Re-record test for app service -======= - - '1176' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -893,15 +615,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -918,15 +632,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:21 GMT -======= - - Wed, 13 Nov 2019 11:03:29 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:59 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:18 GMT expires: - '-1' pragma: @@ -944,15 +650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11998' -======= - - '11996' ->>>>>>> Re-record test for app service -======= - - '11992' ->>>>>>> live test + - '11999' x-powered-by: - ASP.NET status: @@ -962,15 +660,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "6b39def4-5356-4a5d-8d5d-79fdc9853d3a"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ad36671f-938b-427f-bea2-9336ea0a5b99"}}''' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "53144707-8169-45d9-a33f-ebaa147ae13d"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "5dafe035-e803-4f59-963e-9a0731c6671b"}}''' headers: Accept: - application/json @@ -988,15 +678,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1004,15 +686,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"6b39def4-5356-4a5d-8d5d-79fdc9853d3a"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ad36671f-938b-427f-bea2-9336ea0a5b99"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"53144707-8169-45d9-a33f-ebaa147ae13d"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"5dafe035-e803-4f59-963e-9a0731c6671b"}}' headers: cache-control: - no-cache @@ -1021,21 +695,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:23 GMT + - Sun, 05 Jan 2020 09:35:20 GMT etag: - - '"1D5BCBDD7FFBD00"' -======= - - Wed, 13 Nov 2019 11:03:30 GMT - etag: - - '"1D59A11FBEAFAA0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:01 GMT - etag: - - '"1D5BF832E492EAB"' ->>>>>>> live test + - '"1D5C3AB7257AC70"' expires: - '-1' pragma: @@ -1053,15 +715,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1195' -======= - - '1191' ->>>>>>> Re-record test for app service -======= - - '1179' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: @@ -1082,15 +736,7 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1109,15 +755,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:25 GMT -======= - - Wed, 13 Nov 2019 11:03:32 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:02 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:22 GMT expires: - '-1' pragma: @@ -1176,15 +814,7 @@ interactions: - -g -n --allowed-origins User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -1192,19 +822,9 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004","name":"slot-traffic-web000004","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache @@ -1213,21 +833,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:28 GMT + - Sun, 05 Jan 2020 09:35:24 GMT etag: - - '"1D5BCBDD7FFBD00"' -======= - - Wed, 13 Nov 2019 11:03:34 GMT - etag: - - '"1D59A11FBEAFAA0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:05 GMT - etag: - - '"1D5BF832E492EAB"' ->>>>>>> live test + - '"1D5C3AB7257AC70"' expires: - '-1' pragma: @@ -1245,15 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1192' -======= - - '1190' ->>>>>>> Re-record test for app service -======= - - '1183' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1274,15 +874,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1290,19 +882,9 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/slot-traffic-web000004/config/web","name":"slot-traffic-web000004","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$slot-traffic-web000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com","https://msdn.com","https://msn.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache @@ -1311,15 +893,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:29 GMT -======= - - Wed, 13 Nov 2019 11:03:36 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:06 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:25 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml index cb052eedced..61297e0bc0b 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_e2e.yaml @@ -14,22 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:46:02Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:41Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:32Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:41:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:46:10 GMT -======= - - Wed, 13 Nov 2019 11:03:47 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:41:58 GMT expires: - '-1' pragma: @@ -80,15 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -104,15 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:46:10 GMT -======= - - Wed, 13 Nov 2019 11:03:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:41:59 GMT expires: - '-1' pragma: @@ -130,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1195' x-powered-by: - ASP.NET status: @@ -151,22 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:46:02Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:03:41Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:32Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:41:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -175,15 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:46:11 GMT -======= - - Wed, 13 Nov 2019 11:03:49 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:42:00 GMT expires: - '-1' pragma: @@ -217,15 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -233,18 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":31429,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31429","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -253,15 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:46:26 GMT -======= - - Wed, 13 Nov 2019 11:03:56 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:51 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:42:10 GMT expires: - '-1' pragma: @@ -279,15 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1183' -======= - - '1188' ->>>>>>> Re-record test for app service -======= - - '1183' ->>>>>>> live test + - '1187' x-powered-by: - ASP.NET status: @@ -308,15 +226,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -324,18 +234,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' -======= - US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' ->>>>>>> live test + US","properties":{"serverFarmId":31429,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31429","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -344,15 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:46:28 GMT -======= - - Wed, 13 Nov 2019 11:03:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:42:11 GMT expires: - '-1' pragma: @@ -393,15 +285,7 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -417,27 +301,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:46:32 GMT + - Sun, 05 Jan 2020 09:42:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/eafdadae-3f62-45c8-9069-3b927d0869eb?monitor=true&api-version=2019-06-01 -======= - - Wed, 13 Nov 2019 11:04:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/29f967dc-4317-4de2-9a8e-bd5b2b9ba011?monitor=true&api-version=2019-04-01 ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d4f4b5ff-a820-4e95-a008-52f6d5c2ca97?monitor=true&api-version=2019-04-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/82fd3f97-004f-4e7c-b007-16dd8786325c?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -447,15 +315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1180' -======= - - '1187' ->>>>>>> Re-record test for app service -======= - - '1188' ->>>>>>> live test + - '1183' status: code: 202 message: Accepted @@ -474,50 +334,21 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/eafdadae-3f62-45c8-9069-3b927d0869eb?monitor=true&api-version=2019-06-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:32.7785433Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d4f4b5ff-a820-4e95-a008-52f6d5c2ca97?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/82fd3f97-004f-4e7c-b007-16dd8786325c?monitor=true&api-version=2019-06-01 response: body: -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:00.1649787Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:31:59.5754914Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:15.3915459Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:15.3915459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:42:15.3134853Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1188' content-type: - application/json date: - - Fri, 27 Dec 2019 14:46:50 GMT -======= - - '1156' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:04:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:32:17 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:42:33 GMT expires: - '-1' pragma: @@ -554,15 +385,7 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -578,27 +401,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:46:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ab2bffde-a4c2-4f35-b125-7101154e55c0?monitor=true&api-version=2019-06-01 -======= - - Wed, 13 Nov 2019 11:04:33 GMT + - Sun, 05 Jan 2020 09:42:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/fc68fc4e-b51f-4c7d-86cf-9bd359399517?monitor=true&api-version=2019-04-01 ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:32:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/faec5d13-051a-40e5-b81d-60085dda9697?monitor=true&api-version=2019-04-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/09dc5d41-0b96-4731-975e-b1a324b2e36e?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -608,15 +415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1185' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - - '1183' ->>>>>>> live test + - '1186' status: code: 202 message: Accepted @@ -635,29 +434,57 @@ interactions: - --name -g -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/ab2bffde-a4c2-4f35-b125-7101154e55c0?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/09dc5d41-0b96-4731-975e-b1a324b2e36e?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:56.1536413Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Sun, 05 Jan 2020 09:42:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/09dc5d41-0b96-4731-975e-b1a324b2e36e?monitor=true&api-version=2019-06-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - --name -g -l --sku + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/faec5d13-051a-40e5-b81d-60085dda9697?monitor=true&api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/09dc5d41-0b96-4731-975e-b1a324b2e36e?monitor=true&api-version=2019-06-01 response: body: -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:33.5089907Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:32:23.6014906Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:38.6741577Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:38.6741577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:42:38.5959956Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -666,15 +493,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:14 GMT -======= - - Wed, 13 Nov 2019 11:04:51 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:32:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:00 GMT expires: - '-1' pragma: @@ -707,15 +526,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -723,18 +534,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":31429,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31429","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -743,15 +544,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:15 GMT -======= - - Wed, 13 Nov 2019 11:04:53 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:32:44 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:01 GMT expires: - '-1' pragma: @@ -788,30 +581,14 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:32.8253730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:32.7785433Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:00.2431354Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:00.1649787Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:31:59.6223895Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:31:59.5754914Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/functionappplanstorage","name":"functionappplanstorage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:15.3915459Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:15.3915459Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:42:15.3134853Z","primaryEndpoints":{"blob":"https://functionappplanstorage.blob.core.windows.net/","queue":"https://functionappplanstorage.queue.core.windows.net/","table":"https://functionappplanstorage.table.core.windows.net/","file":"https://functionappplanstorage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -820,15 +597,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:16 GMT -======= - - Wed, 13 Nov 2019 11:04:54 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:32:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:01 GMT expires: - '-1' pragma: @@ -863,15 +632,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -887,15 +648,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:16 GMT -======= - - Wed, 13 Nov 2019 11:04:54 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:32:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:02 GMT expires: - '-1' pragma: @@ -911,15 +664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1191' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1195' ->>>>>>> live test + - '1193' status: code: 200 message: OK @@ -948,15 +693,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -964,44 +701,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003","name":"func-e2e000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:47:22.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AB799B4C490667BB75660E308123AB86E3D9FA4CA55CD99080EA7A52BAF97DE0","kind":"functionapp","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:04:57.413","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"448CCFDEB10D8C4F5B71DCCDC9EFA22156168F1C1F2CA7696D9AA6BCDEBBFE41","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:32:51.653","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BD7E85C5184A3E1555FEA7B74C36E0AD8D61B2093BF81FB47C56445DBC4934C3","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"func-e2e000003","state":"Running","hostNames":["func-e2e000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000003","repositorySiteName":"func-e2e000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000003.azurewebsites.net","func-e2e000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:43:08.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63D8FB47495495AD7356062C7DCA49B9FEF06ADE542A835F834E2C42F7B06C3D","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"func-e2e000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3562' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:47:40 GMT - etag: - - '"1D5BCC48C81E7F5"' -======= - - '3558' -======= - - '3544' ->>>>>>> live test + - '3557' content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:08 GMT + - Sun, 05 Jan 2020 09:43:26 GMT etag: -<<<<<<< HEAD - - '"1D59A122FCAB400"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82999D3C50"' ->>>>>>> live test + - '"1D5C3AC89BEC5F0"' expires: - '-1' pragma: @@ -1019,7 +730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -1045,22 +756,14 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/func-e2e000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4007eb9-0000-0700-0000-5e0619920000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"be29cc31-d0ee-4c8c-8824-ab0081d96ae0","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0560a784-28d3-45bd-b704-acaaeab2f779","ConnectionString":"InstrumentationKey=0560a784-28d3-45bd-b704-acaaeab2f779","Name":"func-e2e000003","CreationDate":"2019-12-27T14:47:46.7719572+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc002fc8-0000-0700-0000-5dcbe36e0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"5c04767f-d6fa-490e-9b5f-95478c601250","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"808ca97b-b82e-4e6c-a71e-e8e8270fca53","ConnectionString":"InstrumentationKey=808ca97b-b82e-4e6c-a71e-e8e8270fca53","Name":"func-e2e000003","CreationDate":"2019-11-13T11:05:18.5808514+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001c51-0000-0700-0000-5e0ab37d0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"3803a80d-bc34-4876-95e0-e58c28fa914c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"79e1dbcd-038f-4a6a-b308-87a8fafbe74c","ConnectionString":"InstrumentationKey=79e1dbcd-038f-4a6a-b308-87a8fafbe74c","Name":"func-e2e000003","CreationDate":"2019-12-31T02:33:33.4087401+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/func-e2e000003","name":"func-e2e000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55011643-0000-0700-0000-5e11afc50000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000003","AppId":"a0767f67-1601-44ac-817e-fb4c42caf5c5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"721cc7c1-4194-414a-9f38-4d9574ab7ce2","ConnectionString":"InstrumentationKey=721cc7c1-4194-414a-9f38-4d9574ab7ce2","Name":"func-e2e000003","CreationDate":"2020-01-05T09:43:33.1183822+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -1071,15 +774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:48 GMT -======= - - Wed, 13 Nov 2019 11:05:20 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:34 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:35 GMT expires: - '-1' pragma: @@ -1097,11 +792,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1193' -======= - - '1188' ->>>>>>> Re-record test for app service + - '1186' x-powered-by: - ASP.NET status: @@ -1124,15 +815,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1149,15 +832,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:49 GMT -======= - - Wed, 13 Nov 2019 11:05:21 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:36 GMT expires: - '-1' pragma: @@ -1175,15 +850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11992' -======= - - '11997' ->>>>>>> Re-record test for app service -======= - - '11993' ->>>>>>> live test + - '11996' x-powered-by: - ASP.NET status: @@ -1193,15 +860,7 @@ interactions: body: '{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "0560a784-28d3-45bd-b704-acaaeab2f779"}}' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "808ca97b-b82e-4e6c-a71e-e8e8270fca53"}}' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "79e1dbcd-038f-4a6a-b308-87a8fafbe74c"}}' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "721cc7c1-4194-414a-9f38-4d9574ab7ce2"}}' headers: Accept: - application/json @@ -1219,15 +878,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1235,15 +886,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/func-e2e000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"0560a784-28d3-45bd-b704-acaaeab2f779"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"808ca97b-b82e-4e6c-a71e-e8e8270fca53"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"79e1dbcd-038f-4a6a-b308-87a8fafbe74c"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"721cc7c1-4194-414a-9f38-4d9574ab7ce2"}}' headers: cache-control: - no-cache @@ -1252,21 +895,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:50 GMT - etag: - - '"1D5BCC49CB9D295"' -======= - - Wed, 13 Nov 2019 11:05:23 GMT + - Sun, 05 Jan 2020 09:43:38 GMT etag: - - '"1D59A123EE5BCF0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:37 GMT - etag: - - '"1D5BF82B48A16A0"' ->>>>>>> live test + - '"1D5C3AC9ABDF830"' expires: - '-1' pragma: @@ -1284,15 +915,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1182' -======= - - '1190' ->>>>>>> Re-record test for app service -======= - - '1181' ->>>>>>> live test + - '1187' x-powered-by: - ASP.NET status: @@ -1313,15 +936,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1329,18 +944,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","name":"func-e2e-plan000005","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25325,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_25325","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":27232,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_27232","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":26573,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26573","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":31429,"name":"func-e2e-plan000005","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31429","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1349,15 +954,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:52 GMT -======= - - Wed, 13 Nov 2019 11:05:23 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:39 GMT expires: - '-1' pragma: @@ -1394,30 +991,14 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:46:56.2318318Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:46:56.1536413Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:04:33.5714695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:04:33.5089907Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:23.6639929Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:32:23.6014906Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Storage/storageAccounts/functionappplanstorage2","name":"functionappplanstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:38.6741577Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:42:38.6741577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:42:38.5959956Z","primaryEndpoints":{"blob":"https://functionappplanstorage2.blob.core.windows.net/","queue":"https://functionappplanstorage2.queue.core.windows.net/","table":"https://functionappplanstorage2.table.core.windows.net/","file":"https://functionappplanstorage2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -1426,15 +1007,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:54 GMT -======= - - Wed, 13 Nov 2019 11:05:25 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:40 GMT expires: - '-1' pragma: @@ -1469,15 +1042,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1493,15 +1058,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:47:54 GMT -======= - - Wed, 13 Nov 2019 11:05:25 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:43:40 GMT expires: - '-1' pragma: @@ -1517,15 +1074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1195' -======= - - '1193' ->>>>>>> Re-record test for app service -======= - - '1191' ->>>>>>> live test + - '1188' status: code: 200 message: OK @@ -1555,15 +1104,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1571,44 +1112,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004","name":"func-e2e000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:48:00.41","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BCF4D1F3FCE0F5784C42D79720CA823A08CAB3F1BB732D3242127915D99CE8E4","kind":"functionapp","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:28.687","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"36307B8D24C139F9183CE8366850022DA8FFE47F48E18561DD03D25E543B4461","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:45.527","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1F8C85E23B348CE0BD1AFDADD9C3477F702DC77E58D4D11F0865F7A639A373A4","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"func-e2e000004","state":"Running","hostNames":["func-e2e000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/func-e2e000004","repositorySiteName":"func-e2e000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["func-e2e000004.azurewebsites.net","func-e2e000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"func-e2e000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"func-e2e000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/func-e2e-plan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:43:46.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"func-e2e000004","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AE3CB50453C27AC965D6A2097909B2145963A92DF8BAE9CFF8E73370FAA58269","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000002","defaultHostName":"func-e2e000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '3557' content-type: - application/json date: - - Fri, 27 Dec 2019 14:48:17 GMT + - Sun, 05 Jan 2020 09:44:03 GMT etag: - - '"1D5BCC4A2CDB5E0"' -======= - - '3558' -======= - - '3544' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:34:02 GMT - etag: -<<<<<<< HEAD - - '"1D59A124276D2F0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82B9D315D0"' ->>>>>>> live test + - '"1D5C3ACA0407DF0"' expires: - '-1' pragma: @@ -1626,7 +1141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '498' x-powered-by: - ASP.NET status: @@ -1652,22 +1167,14 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.rg000002/providers/microsoft.insights/components/func-e2e000004?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b40090bc-0000-0700-0000-5e0619b80000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"8a69445b-2c14-456c-9803-b4a405dc5ad3","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f71bd035-02ae-4804-82bd-27e8d99ccb78","ConnectionString":"InstrumentationKey=f71bd035-02ae-4804-82bd-27e8d99ccb78","Name":"func-e2e000004","CreationDate":"2019-12-27T14:48:24.3526348+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc008fc9-0000-0700-0000-5dcbe38d0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"8edf45b5-8ea9-4761-87e8-b7f883a7c742","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7929435d-92d9-4fe4-8966-abbf519efd19","ConnectionString":"InstrumentationKey=7929435d-92d9-4fe4-8966-abbf519efd19","Name":"func-e2e000004","CreationDate":"2019-11-13T11:05:49.5146607+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000f052-0000-0700-0000-5e0ab39e0000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"a5d37754-6c43-4ad3-8138-d9d0c5344cf2","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7b45bfda-64b4-40d8-bdcd-7a763b485dc6","ConnectionString":"InstrumentationKey=7b45bfda-64b4-40d8-bdcd-7a763b485dc6","Name":"func-e2e000004","CreationDate":"2019-12-31T02:34:06.9820935+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/microsoft.insights/components/func-e2e000004","name":"func-e2e000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501cf44-0000-0700-0000-5e11afe80000\"","properties":{"Ver":"v2","ApplicationId":"func-e2e000004","AppId":"beccac45-4ce6-4c97-a7fd-ee5a99795a19","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cf5ed488-6259-480b-b4ae-b88a63e0b4a4","ConnectionString":"InstrumentationKey=cf5ed488-6259-480b-b4ae-b88a63e0b4a4","Name":"func-e2e000004","CreationDate":"2020-01-05T09:44:08.1132155+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -1678,15 +1185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:48:26 GMT -======= - - Wed, 13 Nov 2019 11:05:52 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:44:10 GMT expires: - '-1' pragma: @@ -1704,15 +1203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1179' -======= - - '1183' ->>>>>>> Re-record test for app service -======= - - '1174' ->>>>>>> live test + - '1191' x-powered-by: - ASP.NET status: @@ -1735,15 +1226,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1760,15 +1243,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:48:27 GMT -======= - - Wed, 13 Nov 2019 11:05:52 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:10 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:44:11 GMT expires: - '-1' pragma: @@ -1786,11 +1261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11999' -======= - - '11997' ->>>>>>> live test + - '11998' x-powered-by: - ASP.NET status: @@ -1800,15 +1271,7 @@ interactions: body: '{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f71bd035-02ae-4804-82bd-27e8d99ccb78"}}' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "7929435d-92d9-4fe4-8966-abbf519efd19"}}' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "7b45bfda-64b4-40d8-bdcd-7a763b485dc6"}}' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "cf5ed488-6259-480b-b4ae-b88a63e0b4a4"}}' headers: Accept: - application/json @@ -1826,15 +1289,7 @@ interactions: - -g -n -p -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1842,15 +1297,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Web/sites/func-e2e000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f71bd035-02ae-4804-82bd-27e8d99ccb78"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"7929435d-92d9-4fe4-8966-abbf519efd19"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"7b45bfda-64b4-40d8-bdcd-7a763b485dc6"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=functionappplanstorage2;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"cf5ed488-6259-480b-b4ae-b88a63e0b4a4"}}' headers: cache-control: - no-cache @@ -1859,21 +1306,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:48:28 GMT + - Sun, 05 Jan 2020 09:44:11 GMT etag: - - '"1D5BCC4B3432BB5"' -======= - - Wed, 13 Nov 2019 11:05:54 GMT - etag: - - '"1D59A125189C590"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:11 GMT - etag: - - '"1D5BF82C9030650"' ->>>>>>> live test + - '"1D5C3ACAF9D98F0"' expires: - '-1' pragma: @@ -1891,11 +1326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1177' -======= - - '1187' ->>>>>>> Re-record test for app service + - '1185' x-powered-by: - ASP.NET status: @@ -1918,15 +1349,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1940,21 +1363,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:48:34 GMT - etag: - - '"1D5BCC49CB9D295"' -======= - - Wed, 13 Nov 2019 11:05:58 GMT - etag: - - '"1D59A123EE5BCF0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:17 GMT + - Sun, 05 Jan 2020 09:44:15 GMT etag: - - '"1D5BF82B48A16A0"' ->>>>>>> live test + - '"1D5C3AC9ABDF830"' expires: - '-1' pragma: @@ -1968,15 +1379,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14993' -======= - - '14996' ->>>>>>> Re-record test for app service -======= - - '14993' ->>>>>>> live test + - '14992' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml index 046d7b37f44..f260965049f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux.yaml @@ -14,22 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:07Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:13Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:28Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:35:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:39 GMT -======= - - Wed, 13 Nov 2019 11:07:43 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:04 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:23 GMT expires: - '-1' pragma: @@ -81,15 +65,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -105,15 +81,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:41 GMT -======= - - Wed, 13 Nov 2019 11:07:44 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:04 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:24 GMT expires: - '-1' pragma: @@ -131,11 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1190' ->>>>>>> Re-record test for app service + - '1196' x-powered-by: - ASP.NET status: @@ -156,22 +120,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:07Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:13Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:28Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:35:49Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -180,15 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:41 GMT -======= - - Wed, 13 Nov 2019 11:07:44 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:05 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:25 GMT expires: - '-1' pragma: @@ -223,15 +171,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -239,18 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"serverFarmId":43470,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43470","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - Central US","properties":{"serverFarmId":39582,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39582","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"serverFarmId":43527,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43527","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + Central US","properties":{"serverFarmId":46081,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46081","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -259,15 +189,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:01 GMT -======= - - Wed, 13 Nov 2019 11:07:57 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:22 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:41 GMT expires: - '-1' pragma: @@ -285,15 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1193' -======= - - '1184' ->>>>>>> Re-record test for app service -======= - - '1181' ->>>>>>> live test + - '1192' x-powered-by: - ASP.NET status: @@ -314,15 +228,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -330,18 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"serverFarmId":43470,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43470","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - Central US","properties":{"serverFarmId":39582,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39582","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"serverFarmId":43527,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43527","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + Central US","properties":{"serverFarmId":46081,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46081","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -350,15 +246,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:02 GMT -======= - - Wed, 13 Nov 2019 11:08:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:23 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:44 GMT expires: - '-1' pragma: @@ -395,51 +283,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:19.7947321Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:19.7947321Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:19.7322763Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:22.2853891Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:22.2853891Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:22.2228860Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:42.6121556Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:42.6121556Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:42.5340281Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:36:03.2348365Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:36:03.2348365Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:36:03.1567070Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:03 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:08:01 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:24 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:44 GMT expires: - '-1' pragma: @@ -474,15 +334,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -498,15 +350,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:04 GMT -======= - - Wed, 13 Nov 2019 11:08:01 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:25 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:45 GMT expires: - '-1' pragma: @@ -522,15 +366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1192' -======= - - '1187' ->>>>>>> Re-record test for app service -======= - - '1191' ->>>>>>> live test + - '1190' status: code: 200 message: OK @@ -540,15 +376,7 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", -<<<<<<< HEAD -<<<<<<< HEAD - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141"}, -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3"}, ->>>>>>> Re-record test for app service -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D"}, ->>>>>>> live test + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "9209439675596A5A385B585BAD53E2E45D80EFF54408AA72A52F7AF42523433D"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -571,15 +399,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -587,44 +407,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:12.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0471F2A51505A265B74B89D22161576FE40436B6B149F0D8C3A509EFB9DFD458","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:06.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2E789E15DF0E3E9D59C997A6A2A3B92F0BA114529FCE15646571DF24BC078045","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:34.3666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B49CCD74640961252EDA6D64BC98743348447C5CC287726142FE0E657C53E81D","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:54.2166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AC70420E40633D3CD12BB1D8789A1472A20090C313EAF73521F2E38A2680D92D","kind":"functionapp,linux,container","inboundIpAddress":"13.85.31.243","possibleInboundIpAddresses":"13.85.31.243","outboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11","possibleOutboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11,13.65.211.229,13.65.174.81","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3738' + - '3717' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:30 GMT + - Sun, 05 Jan 2020 09:37:11 GMT etag: - - '"1D5BCBE192FC46B"' -======= - - '3733' -======= - - '3738' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:37:52 GMT - etag: -<<<<<<< HEAD - - '"1D59A12A0503EC0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8342522B80"' ->>>>>>> live test + - '"1D5C3ABAA97D9C0"' expires: - '-1' pragma: @@ -642,11 +436,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '495' -======= - - '499' ->>>>>>> Re-record test for app service + - '497' x-powered-by: - ASP.NET status: @@ -672,22 +462,14 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionapp-linux000004?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"000081ce-0000-0500-0000-5e060ec50000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"5ba55387-26cc-4230-998e-3292f8b46861","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66a7091e-76d2-4220-b8c3-53b8f3328178","ConnectionString":"InstrumentationKey=66a7091e-76d2-4220-b8c3-53b8f3328178","Name":"functionapp-linux000004","CreationDate":"2019-12-27T14:01:40.9478543+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"7a00a87e-0000-0500-0000-5dcbe42c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"a9ba33e0-3c87-4fab-ae35-247fbf16730e","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"66fc13d6-906a-4ba4-a50a-09be042a2a72","ConnectionString":"InstrumentationKey=66fc13d6-906a-4ba4-a50a-09be042a2a72","Name":"functionapp-linux000004","CreationDate":"2019-11-13T11:08:28.6706268+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"00000bfc-0000-0500-0000-5e0ab4830000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"9e7206bc-178e-4fc6-8d76-394c6ef23b58","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c42dc52d-b427-47ae-b053-e14c75d3aaf7","ConnectionString":"InstrumentationKey=c42dc52d-b427-47ae-b053-e14c75d3aaf7","Name":"functionapp-linux000004","CreationDate":"2019-12-31T02:37:55.8173997+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"02000921-0000-0500-0000-5e11ae4d0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"6d22a37d-d29f-48a1-99d9-e6281beb2eab","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"253a973a-bb1b-42d2-8d5e-dd486e81ca81","ConnectionString":"InstrumentationKey=253a973a-bb1b-42d2-8d5e-dd486e81ca81","Name":"functionapp-linux000004","CreationDate":"2020-01-05T09:37:17.4404758+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -698,15 +480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:44 GMT -======= - - Wed, 13 Nov 2019 11:08:32 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:57 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:19 GMT expires: - '-1' pragma: @@ -724,15 +498,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1193' -======= - - '1188' ->>>>>>> Re-record test for app service -======= - - '1179' ->>>>>>> live test + - '1187' x-powered-by: - ASP.NET status: @@ -755,15 +521,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -771,15 +529,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"9209439675596A5A385B585BAD53E2E45D80EFF54408AA72A52F7AF42523433D","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -788,15 +538,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:46 GMT -======= - - Wed, 13 Nov 2019 11:08:33 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:21 GMT expires: - '-1' pragma: @@ -814,7 +556,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11998' x-powered-by: - ASP.NET status: @@ -822,24 +564,10 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141", - "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "66a7091e-76d2-4220-b8c3-53b8f3328178"}}''' -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3", + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "9209439675596A5A385B585BAD53E2E45D80EFF54408AA72A52F7AF42523433D", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "66fc13d6-906a-4ba4-a50a-09be042a2a72"}}''' ->>>>>>> Re-record test for app service -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D", - "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "c42dc52d-b427-47ae-b053-e14c75d3aaf7"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "253a973a-bb1b-42d2-8d5e-dd486e81ca81"}}''' headers: Accept: - application/json @@ -857,15 +585,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -873,15 +593,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"44890DD5B5625B23713BC73D31015C3917D83C9C31575FBD003FEC2EDFADA141","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"66a7091e-76d2-4220-b8c3-53b8f3328178"}}' -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"45611723CB26C67C10FCC4CBD7A64C3C8BD753372A719A88610E3DCB2D6A4DA3","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"66fc13d6-906a-4ba4-a50a-09be042a2a72"}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"CF41670150F5A42DBDEF6DCF5E3DB76C045ABE3499A09C417CB4D0300B83368D","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"c42dc52d-b427-47ae-b053-e14c75d3aaf7"}}' ->>>>>>> live test + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"9209439675596A5A385B585BAD53E2E45D80EFF54408AA72A52F7AF42523433D","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"253a973a-bb1b-42d2-8d5e-dd486e81ca81"}}' headers: cache-control: - no-cache @@ -890,21 +602,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:49 GMT - etag: - - '"1D5BCBE2E85E7B5"' -======= - - Wed, 13 Nov 2019 11:08:36 GMT - etag: - - '"1D59A12B2187355"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:59 GMT + - Sun, 05 Jan 2020 09:37:23 GMT etag: - - '"1D5BF8351746060"' ->>>>>>> live test + - '"1D5C3ABBB931460"' expires: - '-1' pragma: @@ -922,15 +622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1192' -======= - - '1182' ->>>>>>> Re-record test for app service -======= - - '1174' ->>>>>>> live test + - '1188' x-powered-by: - ASP.NET status: @@ -951,15 +643,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -967,32 +651,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:48.7633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0471F2A51505A265B74B89D22161576FE40436B6B149F0D8C3A509EFB9DFD458","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:36.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2E789E15DF0E3E9D59C997A6A2A3B92F0BA114529FCE15646571DF24BC078045","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:00.55","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B49CCD74640961252EDA6D64BC98743348447C5CC287726142FE0E657C53E81D","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> live test + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:37:23.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AC70420E40633D3CD12BB1D8789A1472A20090C313EAF73521F2E38A2680D92D","kind":"functionapp,linux,container","inboundIpAddress":"13.85.31.243","possibleInboundIpAddresses":"13.85.31.243","outboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11","possibleOutboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11,13.65.211.229,13.65.174.81","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3771' + - '3750' content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:49 GMT -======= - - Wed, 13 Nov 2019 11:08:37 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:02 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:25 GMT expires: - '-1' pragma: @@ -1029,15 +697,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1045,44 +705,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node8-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3311' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:01:52 GMT -======= - - '3113' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:08:39 GMT ->>>>>>> Re-record test for app service -======= - '3282' content-type: - application/json date: - - Tue, 31 Dec 2019 02:38:03 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:27 GMT expires: - '-1' pragma: @@ -1121,15 +755,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1143,21 +769,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:03 GMT - etag: - - '"1D5BCBE2E85E7B5"' -======= - - Wed, 13 Nov 2019 11:08:47 GMT - etag: - - '"1D59A12B2187355"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:13 GMT + - Sun, 05 Jan 2020 09:37:36 GMT etag: - - '"1D5BF8351746060"' ->>>>>>> live test + - '"1D5C3ABBB931460"' expires: - '-1' pragma: @@ -1171,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14991' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml index 014c68d6a8d..e566d97099a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version.yaml @@ -14,22 +14,14 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:02:12Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:38Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:24Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:37:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:43 GMT -======= - - Wed, 13 Nov 2019 11:08:06 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:56 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:42 GMT expires: - '-1' pragma: @@ -80,15 +64,7 @@ interactions: - -g -n --sku --is-linux User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -96,18 +72,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"serverFarmId":43471,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43471","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - Central US","properties":{"serverFarmId":39583,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39583","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"serverFarmId":46029,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46029","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + Central US","properties":{"serverFarmId":19961,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-163_19961","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -116,15 +82,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:00 GMT -======= - - Wed, 13 Nov 2019 11:08:18 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:10 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:54 GMT expires: - '-1' pragma: @@ -142,15 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1188' -======= - - '1177' ->>>>>>> Re-record test for app service -======= - '1181' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -171,15 +121,7 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -187,18 +129,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"serverFarmId":43471,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_43471","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - Central US","properties":{"serverFarmId":39583,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-161_39583","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"serverFarmId":46029,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South - Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-147_46029","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + Central US","properties":{"serverFarmId":19961,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-SouthCentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"South + Central US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-sn1-163_19961","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -207,15 +139,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:01 GMT -======= - - Wed, 13 Nov 2019 11:08:21 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:11 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:56 GMT expires: - '-1' pragma: @@ -252,51 +176,23 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:22.7732654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:22.7732654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:22.7263869Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:46.0058738Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:46.0058738Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:45.9277971Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:35.6433498Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:35.6433498Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:35.5652143Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:21.9574420Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:21.9574420Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:37:21.8949237Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:03:03 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:08:21 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:57 GMT expires: - '-1' pragma: @@ -331,15 +227,7 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -355,15 +243,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:03 GMT -======= - - Wed, 13 Nov 2019 11:08:22 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:58 GMT expires: - '-1' pragma: @@ -379,15 +259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1195' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - - '1190' ->>>>>>> live test + - '1194' status: code: 200 message: OK @@ -397,15 +269,7 @@ interactions: "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", -<<<<<<< HEAD -<<<<<<< HEAD - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8"}, -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035"}, ->>>>>>> Re-record test for app service -======= - "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23"}, ->>>>>>> live test + "value": "~2"}, {"name": "MACHINEKEY_DecryptionKey", "value": "C4D4EDE2F62365C81E1F8EA48DF140D26C6FD014A5C27FC08489EA9128BC53B8"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, @@ -428,15 +292,7 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -444,38 +300,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:11.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ED2BBF7217DB1A3BCC830926101F0F672DD1F9B0BDE1B8F5A44FA8C804620DA5","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:27.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F47F73F2B75B91EED28574E1FB1F44BCF00E28E9B736B76CA6FF50DCAEAAA61","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:21.3833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60342BD6BBD558A58326DAFD0B7A66B80978EC1091A91DE509FCC7AB91810FAD","kind":"functionapp,linux,container","inboundIpAddress":"13.85.31.243","possibleInboundIpAddresses":"13.85.31.243","outboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11","possibleOutboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11,13.65.211.229,13.65.174.81","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:08.5","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"58A2ED1FB5AC431CBBCE369B7586863A1F04E78D2A632146B4F81FB988D231B5","kind":"functionapp,linux,container","inboundIpAddress":"104.214.20.0","possibleInboundIpAddresses":"104.214.20.0","outboundIpAddresses":"104.214.20.0,40.84.191.99,70.37.109.240,65.52.33.54,104.215.93.184","possibleOutboundIpAddresses":"104.214.20.0,40.84.191.99,70.37.109.240,65.52.33.54,104.215.93.184,157.55.186.146,70.37.67.76,40.84.157.22,70.37.64.204,23.98.152.90","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3718' + - '3759' content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:28 GMT - etag: - - '"1D5BCBE5FFE3100"' -======= - - Wed, 13 Nov 2019 11:08:44 GMT - etag: - - '"1D59A12ACC14355"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:39 GMT + - Sun, 05 Jan 2020 09:38:25 GMT etag: - - '"1D5BF833A6C6160"' ->>>>>>> live test + - '"1D5C3ABD6DC0B6B"' expires: - '-1' pragma: @@ -493,7 +329,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '497' x-powered-by: - ASP.NET status: @@ -519,22 +355,14 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionapp-linux000004?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"00008dce-0000-0500-0000-5e060f390000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"43083ef5-a758-411a-9a36-80ea07c48969","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"36dd1360-8d1a-4390-b0d3-b1e3b056c4f3","ConnectionString":"InstrumentationKey=36dd1360-8d1a-4390-b0d3-b1e3b056c4f3","Name":"functionapp-linux000004","CreationDate":"2019-12-27T14:03:36.9660319+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"7a00ec7e-0000-0500-0000-5dcbe4410000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"d6beb8e4-40d4-4ed5-9a76-96904ba748ff","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"18a28719-24fc-4cd5-971f-284dd18a8292","ConnectionString":"InstrumentationKey=18a28719-24fc-4cd5-971f-284dd18a8292","Name":"functionapp-linux000004","CreationDate":"2019-11-13T11:08:49.6925887+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"000009fc-0000-0500-0000-5e0ab4790000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"fecdf451-87b6-4c5d-b08f-ac8bf481538d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"22596a92-57a6-420f-acad-91d64b1e5a98","ConnectionString":"InstrumentationKey=22596a92-57a6-420f-acad-91d64b1e5a98","Name":"functionapp-linux000004","CreationDate":"2019-12-31T02:37:45.4251488+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"southcentralus","tags":{},"kind":"web","etag":"\"02000d21-0000-0500-0000-5e11ae970000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"c55c772a-ff0d-4923-a3b3-84a837f91f28","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d8485153-f24f-4949-b312-73af0d8e7b40","ConnectionString":"InstrumentationKey=d8485153-f24f-4949-b312-73af0d8e7b40","Name":"functionapp-linux000004","CreationDate":"2020-01-05T09:38:31.2852727+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -545,15 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:39 GMT -======= - - Wed, 13 Nov 2019 11:08:53 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:33 GMT expires: - '-1' pragma: @@ -571,11 +391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1184' -======= - - '1175' ->>>>>>> live test + - '1180' x-powered-by: - ASP.NET status: @@ -598,15 +414,7 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -614,15 +422,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> live test + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"C4D4EDE2F62365C81E1F8EA48DF140D26C6FD014A5C27FC08489EA9128BC53B8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' headers: cache-control: - no-cache @@ -631,15 +431,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:40 GMT -======= - - Wed, 13 Nov 2019 11:08:55 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:49 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:34 GMT expires: - '-1' pragma: @@ -657,15 +449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - '11994' -======= - - '11995' ->>>>>>> Re-record test for app service -======= - - '11994' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -673,24 +457,10 @@ interactions: message: OK - request: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": -<<<<<<< HEAD -<<<<<<< HEAD - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8", - "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "36dd1360-8d1a-4390-b0d3-b1e3b056c4f3"}}''' -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035", - "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "18a28719-24fc-4cd5-971f-284dd18a8292"}}''' ->>>>>>> Re-record test for app service -======= - "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23", + "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "MACHINEKEY_DecryptionKey": "C4D4EDE2F62365C81E1F8EA48DF140D26C6FD014A5C27FC08489EA9128BC53B8", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "22596a92-57a6-420f-acad-91d64b1e5a98"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "d8485153-f24f-4949-b312-73af0d8e7b40"}}''' headers: Accept: - application/json @@ -708,15 +478,7 @@ interactions: - -g -n --plan -s --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -724,15 +486,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"133139329220767D5D034C3595B9D8692EFF1485F3427801F3F5285F6A14C5F8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"36dd1360-8d1a-4390-b0d3-b1e3b056c4f3"}}' -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"4413AB5E05D1893FE1816282141E7596C0C6CC63DC0AD338D1DCF2C1D65EC035","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"18a28719-24fc-4cd5-971f-284dd18a8292"}}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"6A58F634532AA1D1C4BFEDF270911EE4C2EF813307C56B7671FDD89F30480B23","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"22596a92-57a6-420f-acad-91d64b1e5a98"}}' ->>>>>>> live test + Central US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","MACHINEKEY_DecryptionKey":"C4D4EDE2F62365C81E1F8EA48DF140D26C6FD014A5C27FC08489EA9128BC53B8","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"d8485153-f24f-4949-b312-73af0d8e7b40"}}' headers: cache-control: - no-cache @@ -741,21 +495,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:41 GMT + - Sun, 05 Jan 2020 09:38:36 GMT etag: - - '"1D5BCBE71DFD400"' -======= - - Wed, 13 Nov 2019 11:08:56 GMT - etag: - - '"1D59A12BE1A9680"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:52 GMT - etag: - - '"1D5BF834C3C3715"' ->>>>>>> live test + - '"1D5C3ABE774176B"' expires: - '-1' pragma: @@ -773,15 +515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1188' -======= - - '1183' ->>>>>>> Re-record test for app service -======= - - '1185' ->>>>>>> live test + - '1189' x-powered-by: - ASP.NET status: @@ -802,15 +536,7 @@ interactions: - -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -818,32 +544,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux,container","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:41.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ED2BBF7217DB1A3BCC830926101F0F672DD1F9B0BDE1B8F5A44FA8C804620DA5","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:56.68","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F47F73F2B75B91EED28574E1FB1F44BCF00E28E9B736B76CA6FF50DCAEAAA61","kind":"functionapp,linux,container","inboundIpAddress":"13.84.227.164","possibleInboundIpAddresses":"13.84.227.164","outboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120","possibleOutboundIpAddresses":"13.84.227.164,52.171.221.149,52.171.217.1,52.171.217.147,52.171.219.120,52.171.52.137,13.84.201.190","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> Re-record test for app service -======= - Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:51.7933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60342BD6BBD558A58326DAFD0B7A66B80978EC1091A91DE509FCC7AB91810FAD","kind":"functionapp,linux,container","inboundIpAddress":"13.85.31.243","possibleInboundIpAddresses":"13.85.31.243","outboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11","possibleOutboundIpAddresses":"13.85.31.243,13.85.83.52,13.85.31.169,13.65.40.122,13.65.42.11,13.65.211.229,13.65.174.81","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> live test + Central US","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-SouthCentralUSwebspace","selfLink":"https://waws-prod-sn1-163.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-SouthCentralUSwebspace/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:36.7266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"58A2ED1FB5AC431CBBCE369B7586863A1F04E78D2A632146B4F81FB988D231B5","kind":"functionapp,linux,container","inboundIpAddress":"104.214.20.0","possibleInboundIpAddresses":"104.214.20.0","outboundIpAddresses":"104.214.20.0,40.84.191.99,70.37.109.240,65.52.33.54,104.215.93.184","possibleOutboundIpAddresses":"104.214.20.0,40.84.191.99,70.37.109.240,65.52.33.54,104.215.93.184,157.55.186.146,70.37.67.76,40.84.157.22,70.37.64.204,23.98.152.90","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-sn1-163","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3756' + - '3803' content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:43 GMT -======= - - Wed, 13 Nov 2019 11:08:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:52 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:38 GMT expires: - '-1' pragma: @@ -880,15 +590,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -896,44 +598,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"South -<<<<<<< HEAD -<<<<<<< HEAD - Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= Central US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"DOCKER|mcr.microsoft.com/azure-functions/node:2.0-node10-appservice","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3312' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:03:44 GMT -======= - - '3114' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:09:00 GMT ->>>>>>> Re-record test for app service -======= - '3283' content-type: - application/json date: - - Tue, 31 Dec 2019 02:37:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:39 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml index 4aa8838fd75..46b28a3b350 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_version_consumption.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '12604' content-type: - application/json date: - - Fri, 27 Dec 2019 14:04:20 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:08:16 GMT ->>>>>>> Re-record test for app service -======= - - '12604' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:36:47 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:05 GMT expires: - '-1' pragma: @@ -174,30 +142,14 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:59.4704904Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:59.4704904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:03:59.4080180Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:55.3184654Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:55.3184654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:55.2403787Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:26.1120599Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:26.1120599Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:26.0495337Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:44.1391709Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:44.1391709Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:35:44.0767347Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -206,15 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:21 GMT -======= - - Wed, 13 Nov 2019 11:08:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:47 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:06 GMT expires: - '-1' pragma: @@ -249,15 +193,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -273,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:21 GMT -======= - - Wed, 13 Nov 2019 11:08:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:48 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:07 GMT expires: - '-1' pragma: @@ -297,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1193' -======= - - '1192' ->>>>>>> Re-record test for app service -======= - - '1190' ->>>>>>> live test + - '1197' status: code: 200 message: OK @@ -335,30 +255,14 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionapp-linux000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:04:30.5233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1D10C701CFEC388A8004E1CB06351B8EB3BE878A355C65970379FD9A7803F719","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:26.2866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AA6AC62E05F9376837EC3FA91A7EA8573685661533AF1DB006F3FA7C5C4C73F4","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:54.7366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DFCB41F4A29DD3E99C56B2F77FF72CFFED0C2EC359AAE04D284F891BC725065C","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003","name":"functionapp-linux000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"westus","properties":{"name":"functionapp-linux000003","state":"Running","hostNames":["functionapp-linux000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-linux000003","repositorySiteName":"functionapp-linux000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000003.azurewebsites.net","functionapp-linux000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PYTHON|3.7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:16.1233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-linux000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"604820F7CC7328A9DAD7D608817F56208CAF87B8D0C01F68498D6E6BF5FC2E50","kind":"functionapp,linux","inboundIpAddress":"13.93.220.109","possibleInboundIpAddresses":"13.93.220.109","outboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234","possibleOutboundIpAddresses":"13.93.220.109,13.93.205.56,52.160.105.227,104.209.45.67,13.91.108.234,13.93.235.174,52.160.85.43","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -367,21 +271,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:47 GMT - etag: - - '"1D5BCBE8F71346B"' -======= - - Wed, 13 Nov 2019 11:08:42 GMT - etag: - - '"1D59A12ACE7EB2B"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:12 GMT + - Sun, 05 Jan 2020 09:36:34 GMT etag: - - '"1D5BF832AB5A7AB"' ->>>>>>> live test + - '"1D5C3AB94045475"' expires: - '-1' pragma: @@ -399,7 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '498' x-powered-by: - ASP.NET status: @@ -425,30 +317,14 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionapp-linux000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4005608-0000-0700-0000-5e060f860000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"a93e8bf8-5606-48d8-8f27-f5408daaa827","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ddc17a57-4b9a-475e-826f-0e4ecb8d562d","ConnectionString":"InstrumentationKey=ddc17a57-4b9a-475e-826f-0e4ecb8d562d","Name":"functionapp-linux000003","CreationDate":"2019-12-27T14:04:54.0194606+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00a1d1-0000-0700-0000-5dcbe4400000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"7c2adb82-fe31-4ae1-8bd1-a9f0583b4085","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"81e8601e-62b5-4928-a8a2-661ae6f2ff8b","ConnectionString":"InstrumentationKey=81e8601e-62b5-4928-a8a2-661ae6f2ff8b","Name":"functionapp-linux000003","CreationDate":"2019-11-13T11:08:48.7374985+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000445c-0000-0700-0000-5e0ab45c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"feac16ca-db70-4341-8d53-8ecc82e6cc18","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"078f182b-2718-4431-bea8-dd387fdbf50a","ConnectionString":"InstrumentationKey=078f182b-2718-4431-bea8-dd387fdbf50a","Name":"functionapp-linux000003","CreationDate":"2019-12-31T02:37:16.6282332+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000003","name":"functionapp-linux000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501cc30-0000-0700-0000-5e11ae270000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000003","AppId":"2e1954cd-bdd9-41fc-aba3-375df1e16db3","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"9a7614c3-7676-44bb-97b3-a518af2b0dc4","ConnectionString":"InstrumentationKey=9a7614c3-7676-44bb-97b3-a518af2b0dc4","Name":"functionapp-linux000003","CreationDate":"2020-01-05T09:36:39.5982554+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -459,15 +335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:57 GMT -======= - - Wed, 13 Nov 2019 11:08:51 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:18 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:41 GMT expires: - '-1' pragma: @@ -485,15 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1192' -======= - - '1174' ->>>>>>> Re-record test for app service -======= - - '1182' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -516,15 +376,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -541,15 +393,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:59 GMT -======= - - Wed, 13 Nov 2019 11:08:53 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:20 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:43 GMT expires: - '-1' pragma: @@ -567,7 +411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11993' + - '11997' x-powered-by: - ASP.NET status: @@ -577,15 +421,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "python", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ddc17a57-4b9a-475e-826f-0e4ecb8d562d"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "81e8601e-62b5-4928-a8a2-661ae6f2ff8b"}}''' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "078f182b-2718-4431-bea8-dd387fdbf50a"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "9a7614c3-7676-44bb-97b3-a518af2b0dc4"}}''' headers: Accept: - application/json @@ -603,15 +439,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -619,15 +447,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ddc17a57-4b9a-475e-826f-0e4ecb8d562d"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"81e8601e-62b5-4928-a8a2-661ae6f2ff8b"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"078f182b-2718-4431-bea8-dd387fdbf50a"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"python","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"9a7614c3-7676-44bb-97b3-a518af2b0dc4"}}' headers: cache-control: - no-cache @@ -636,21 +456,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:05:01 GMT + - Sun, 05 Jan 2020 09:36:45 GMT etag: - - '"1D5BCBEA1662B55"' -======= - - Wed, 13 Nov 2019 11:08:56 GMT - etag: - - '"1D59A12BDAFC6C0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:22 GMT - etag: - - '"1D5BF833A98A180"' ->>>>>>> live test + - '"1D5C3ABA5961CC0"' expires: - '-1' pragma: @@ -668,15 +476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1192' -======= - - '1182' ->>>>>>> Re-record test for app service -======= - - '1171' ->>>>>>> live test + - '1195' x-powered-by: - ASP.NET status: @@ -697,15 +497,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -713,44 +505,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000003/config/web","name":"functionapp-linux000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"PYTHON|3.7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3248' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:05:02 GMT -======= - - '3050' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:08:58 GMT ->>>>>>> Re-record test for app service -======= - '3219' content-type: - application/json date: - - Tue, 31 Dec 2019 02:37:23 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:48 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml index 20452cdc58d..580474b48ef 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_reserved_instance.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '12604' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:57:29 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:00:41 GMT ->>>>>>> Re-record test for app service -======= - '12604' content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:21 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:37 GMT expires: - '-1' pragma: @@ -174,54 +142,23 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:07.7979797Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:57:07.7979797Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:57:07.7505833Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:00:20.5234919Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:00:20.5234919Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:00:20.4453262Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:30:00.4705744Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:30:00.4705744Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:30:00.3924495Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:32:15.9944855Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:32:15.9944855Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:32:15.9163680Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 13:57:29 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:00:41 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:22 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:39 GMT expires: - '-1' pragma: @@ -256,15 +193,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -280,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:57:29 GMT -======= - - Wed, 13 Nov 2019 11:00:41 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:30:23 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:32:39 GMT expires: - '-1' pragma: @@ -304,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1199' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1188' ->>>>>>> live test status: code: 200 message: OK @@ -343,62 +256,25 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:57:36.893","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9DBF919051B98C0AD59100135888C83CB3CA56F58881EB910F49D2DABD37FBBC","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionappwithreservedinstance000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:00:51.933","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7F6806AD42284EB3A73DE2E36F808F31BBD02623909DEE1663C187A9C26A7D3F","kind":"functionapp","inboundIpAddress":"104.45.226.98","possibleInboundIpAddresses":"104.45.226.98","outboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99","possibleOutboundIpAddresses":"104.45.234.138,104.45.229.200,104.45.237.98,104.45.233.99","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:32.2066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8D978BBDC2588B5C3510753774368CCC2719FB244C21FEC8DA9264A404A3C356","kind":"functionapp","inboundIpAddress":"40.112.243.6","possibleInboundIpAddresses":"40.112.243.6","outboundIpAddresses":"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182","possibleOutboundIpAddresses":"40.112.243.6,13.93.220.248,13.93.221.96,13.93.221.41,13.93.220.182,13.93.221.147,13.93.220.112,13.91.111.88,13.93.220.5,13.93.220.231","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithreservedinstance000003","state":"Running","hostNames":["functionappwithreservedinstance000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithreservedinstance000003","repositorySiteName":"functionappwithreservedinstance000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithreservedinstance000003.azurewebsites.net","functionappwithreservedinstance000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithreservedinstance000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithreservedinstance000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:51.147","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithreservedinstance000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3FA92289BFCB1DBBE1957903676854798318B9BAC249D78FA73339C43BE479EA","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithreservedinstance000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '3711' content-type: - application/json date: - - Fri, 27 Dec 2019 13:58:14 GMT - etag: - - '"1D5BCBD98D1E130"' -======= - - '3735' -======= - - '3822' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:31:09 GMT + - Sun, 05 Jan 2020 09:33:29 GMT etag: -<<<<<<< HEAD - - '"1D59A119DA42700"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8246CC9F8B"' ->>>>>>> live test + - '"1D5C3AB19DA79B0"' expires: - '-1' pragma: @@ -416,15 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - '499' -======= - - '497' ->>>>>>> Re-record test for app service -======= - - '498' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -450,30 +318,14 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionappwithreservedinstance000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b3003aee-0000-0700-0000-5e060dfa0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"71b5d0ac-7681-46c8-a5d5-e57c63ec1176","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"94835eee-d90d-4f07-b1be-daf502bb21b6","ConnectionString":"InstrumentationKey=94835eee-d90d-4f07-b1be-daf502bb21b6","Name":"functionappwithreservedinstance000003","CreationDate":"2019-12-27T13:58:18.6399347+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00d7bc-0000-0700-0000-5dcbe28a0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"16d522d5-db6a-4545-95ed-837a298e21e6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"6fa02aa7-9e9c-45ba-b401-d5b9ed171147","ConnectionString":"InstrumentationKey=6fa02aa7-9e9c-45ba-b401-d5b9ed171147","Name":"functionappwithreservedinstance000003","CreationDate":"2019-11-13T11:01:30.0115931+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000384a-0000-0700-0000-5e0ab2f30000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"ab57a621-344d-4fb8-8b83-777a429b2be1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d25a083d-078e-4677-8e8f-24bafbbdcd8f","ConnectionString":"InstrumentationKey=d25a083d-078e-4677-8e8f-24bafbbdcd8f","Name":"functionappwithreservedinstance000003","CreationDate":"2019-12-31T02:31:15.9734741+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501f327-0000-0700-0000-5e11ad700000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithreservedinstance000003","AppId":"0a2cb1ef-7f1d-4a2e-b456-e5a1b6c3a92c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b13e17a0-4a21-4759-885e-2cba6790ca65","ConnectionString":"InstrumentationKey=b13e17a0-4a21-4759-885e-2cba6790ca65","Name":"functionappwithreservedinstance000003","CreationDate":"2020-01-05T09:33:36.7655966+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -484,15 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:21 GMT -======= - - Wed, 13 Nov 2019 11:01:32 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:17 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:38 GMT expires: - '-1' pragma: @@ -510,15 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1196' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1191' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -541,27 +377,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings/list?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings/list?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappwithreservedinstance000003/config/appsettings/list?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -574,15 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:22 GMT -======= - - Wed, 13 Nov 2019 11:01:33 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:18 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:40 GMT expires: - '-1' pragma: @@ -600,15 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11999' -======= - - '11997' ->>>>>>> Re-record test for app service -======= - - '11995' ->>>>>>> live test + - '11998' x-powered-by: - ASP.NET status: @@ -621,15 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwithreservedinstance000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "94835eee-d90d-4f07-b1be-daf502bb21b6"}}''' -======= - "6fa02aa7-9e9c-45ba-b401-d5b9ed171147"}}''' ->>>>>>> Re-record test for app service -======= - "d25a083d-078e-4677-8e8f-24bafbbdcd8f"}}''' ->>>>>>> live test + "b13e17a0-4a21-4759-885e-2cba6790ca65"}}''' headers: Accept: - application/json @@ -647,22 +443,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"94835eee-d90d-4f07-b1be-daf502bb21b6"}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -670,12 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"6fa02aa7-9e9c-45ba-b401-d5b9ed171147"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d25a083d-078e-4677-8e8f-24bafbbdcd8f"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithreservedinstance000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b13e17a0-4a21-4759-885e-2cba6790ca65"}}' headers: cache-control: - no-cache @@ -684,21 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:26 GMT + - Sun, 05 Jan 2020 09:33:41 GMT etag: - - '"1D5BCBDB4B06E80"' -======= - - Wed, 13 Nov 2019 11:01:36 GMT - etag: - - '"1D59A11B70976F0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:31:21 GMT - etag: - - '"1D5BF8263187AA0"' ->>>>>>> live test + - '"1D5C3AB374E4D00"' expires: - '-1' pragma: @@ -716,15 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1192' -======= - - '1185' ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -745,15 +501,7 @@ interactions: - -g -n --prewarmed-instance-count User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -761,44 +509,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003/config/web","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3289' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:28 GMT -======= - - '3091' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:01:38 GMT ->>>>>>> Re-record test for app service -======= - '3260' content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:22 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:33:45 GMT expires: - '-1' pragma: @@ -833,27 +555,13 @@ interactions: "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "cors": {"allowedOrigins": ["https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com"], -<<<<<<< HEAD -<<<<<<< HEAD -======= ->>>>>>> live test "supportCredentials": false}, "localMySqlEnabled": false, "ipSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": -<<<<<<< HEAD - true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "reservedInstanceCount": - 4}}' -======= - "supportCredentials": false}, "localMySqlEnabled": false, "scmIpSecurityRestrictionsUseMain": - false, "http20Enabled": true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", - "reservedInstanceCount": 4}}' ->>>>>>> Re-record test for app service -======= true, "minTlsVersion": "1.2", "ftpsState": "AllAllowed", "preWarmedInstanceCount": - 0}}' ->>>>>>> live test + 4}}' headers: Accept: - application/json @@ -871,15 +579,7 @@ interactions: - -g -n --prewarmed-instance-count User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -887,48 +587,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003","name":"functionappwithreservedinstance000003","type":"Microsoft.Web/sites","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":4,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= - US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2017","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":4,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> Re-record test for app service -======= US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappwithreservedinstance000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":4,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3275' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:58:34 GMT - etag: - - '"1D5BCBDB4B06E80"' -======= - - '3077' -======= - '3246' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:27 GMT + - Sun, 05 Jan 2020 09:33:48 GMT etag: -<<<<<<< HEAD - - '"1D59A11B70976F0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8263187AA0"' ->>>>>>> live test + - '"1D5C3AB374E4D00"' expires: - '-1' pragma: @@ -946,13 +618,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1190' x-powered-by: - ASP.NET status: code: 200 message: OK -<<<<<<< HEAD - request: body: null headers: @@ -970,15 +641,11 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithreservedinstance000003?api-version=2019-08-01 response: body: string: '' @@ -988,15 +655,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:58:40 GMT - etag: - - '"1D5BCBDB95CB880"' -======= - - Wed, 13 Nov 2019 11:01:50 GMT + - Sun, 05 Jan 2020 09:33:54 GMT etag: - - '"1D59A11BB454BE0"' ->>>>>>> Re-record test for app service + - '"1D5C3AB3B2E1F40"' expires: - '-1' pragma: @@ -1010,16 +671,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD - - '14998' -======= - - '14995' ->>>>>>> Re-record test for app service + - '14999' x-powered-by: - ASP.NET status: code: 200 message: OK -======= ->>>>>>> live test version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml index 53e2a9fe0a2..0e897f26362 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_appsetting_update.yaml @@ -14,22 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:00:19Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:14Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:37:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:44 GMT -======= - - Wed, 13 Nov 2019 11:08:08 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:29 GMT expires: - '-1' pragma: @@ -80,15 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -96,18 +72,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":27685,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27685","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":29492,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29492","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":29047,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29047","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":53075,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_53075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -116,15 +82,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:05 GMT -======= - - Wed, 13 Nov 2019 11:08:16 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:39 GMT expires: - '-1' pragma: @@ -142,15 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1186' -======= - - '1183' ->>>>>>> Re-record test for app service -======= - - '1188' ->>>>>>> live test + - '1187' x-powered-by: - ASP.NET status: @@ -171,15 +121,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -187,18 +129,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":27685,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27685","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":29492,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-049_29492","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":29047,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29047","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":53075,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_53075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -207,15 +139,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:06 GMT -======= - - Wed, 13 Nov 2019 11:08:18 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:54 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:40 GMT expires: - '-1' pragma: @@ -252,51 +176,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:24.2802887Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:24.2802887Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:24.2178242Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.5215121Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.5215121Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:48.4433934Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:37:23.0457620Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:37:23.0457620Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:37:22.9676016Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:09.5823457Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:09.5823457Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:37:09.5042007Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:07 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:08:19 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:42 GMT expires: - '-1' pragma: @@ -331,15 +227,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -355,15 +243,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:08 GMT -======= - - Wed, 13 Nov 2019 11:08:19 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:56 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:43 GMT expires: - '-1' pragma: @@ -379,15 +259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1196' -======= - - '1193' ->>>>>>> Re-record test for app service -======= - - '1188' ->>>>>>> live test + - '1195' status: code: 200 message: OK @@ -417,15 +289,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -433,44 +297,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:15.213","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2DD0CB8FB1FD65615809901040B32307B7E3910BD9ED8CC9E3C3735C3D71D0F5","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:24.243","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"01178ABA9290C36C445DCCEF74CFF1B81ACB9E1187C2183BCB12DD00699E2BE6","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:02.2","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E27061F90D4CF1159C43EA3B277D145AF2E86432F3F3E8BA752D26AF6E736B6D","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:37:47.32","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E78F19A05B03B30799A90C914EF635EE4F1FDACF741FCAB342769D581F019B98","kind":"functionapp","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3535' + - '3550' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:33 GMT + - Sun, 05 Jan 2020 09:38:05 GMT etag: - - '"1D5BCBE1ABB7A80"' -======= - - '3551' -======= - - '3559' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:38:20 GMT - etag: -<<<<<<< HEAD - - '"1D59A12AB5CC450"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8352B1C260"' ->>>>>>> live test + - '"1D5C3ABCA4D1190"' expires: - '-1' pragma: @@ -488,11 +326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '498' -======= - - '497' ->>>>>>> Re-record test for app service + - '495' x-powered-by: - ASP.NET status: @@ -518,22 +352,14 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300fefa-0000-0700-0000-5e060ec30000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"1d2cfd84-cc7b-4c9a-9760-9c7f59aabfc4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"101bd586-af29-4dd2-b7e9-545c07428fae","ConnectionString":"InstrumentationKey=101bd586-af29-4dd2-b7e9-545c07428fae","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:01:39.7114528+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0059d1-0000-0700-0000-5dcbe43c0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"1a98364b-46ad-4319-a5a4-d6f879ab0ec4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"3482293a-f71e-46da-836f-6cf0add8a388","ConnectionString":"InstrumentationKey=3482293a-f71e-46da-836f-6cf0add8a388","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:08:44.7009863+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000fc5f-0000-0700-0000-5e0ab4a10000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"0b8dce0a-c8d6-49c3-bc1b-61339d5b7272","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"24fe2190-4ab2-4e37-aa0c-686b237702f7","ConnectionString":"InstrumentationKey=24fe2190-4ab2-4e37-aa0c-686b237702f7","Name":"functionapp-slot000004","CreationDate":"2019-12-31T02:38:25.5018652+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55010035-0000-0700-0000-5e11ae840000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"05ccb82e-c783-41ed-a9d4-c1bcaeeee5db","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"a5776acf-5811-4029-a36b-d09571c082d1","ConnectionString":"InstrumentationKey=a5776acf-5811-4029-a36b-d09571c082d1","Name":"functionapp-slot000004","CreationDate":"2020-01-05T09:38:12.5654822+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -544,15 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:40 GMT -======= - - Wed, 13 Nov 2019 11:08:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:26 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:14 GMT expires: - '-1' pragma: @@ -570,15 +388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1194' -======= - - '1183' ->>>>>>> Re-record test for app service -======= - - '1180' ->>>>>>> live test + - '1184' x-powered-by: - ASP.NET status: @@ -601,15 +411,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -626,15 +428,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:41 GMT -======= - - Wed, 13 Nov 2019 11:08:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:29 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:16 GMT expires: - '-1' pragma: @@ -652,15 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - '11995' -======= - - '11996' ->>>>>>> Re-record test for app service -======= - - '11992' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -670,15 +456,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "101bd586-af29-4dd2-b7e9-545c07428fae"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "3482293a-f71e-46da-836f-6cf0add8a388"}}''' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "24fe2190-4ab2-4e37-aa0c-686b237702f7"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "a5776acf-5811-4029-a36b-d09571c082d1"}}''' headers: Accept: - application/json @@ -696,15 +474,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -712,15 +482,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"a5776acf-5811-4029-a36b-d09571c082d1"}}' headers: cache-control: - no-cache @@ -729,21 +491,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:43 GMT - etag: - - '"1D5BCBE2B160850"' -======= - - Wed, 13 Nov 2019 11:08:50 GMT - etag: - - '"1D59A12BA61FB50"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:30 GMT + - Sun, 05 Jan 2020 09:38:18 GMT etag: - - '"1D5BF83631047D0"' ->>>>>>> live test + - '"1D5C3ABDCA432B0"' expires: - '-1' pragma: @@ -761,15 +511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1189' -======= - - '1174' ->>>>>>> Re-record test for app service -======= - - '1179' ->>>>>>> live test + - '1191' x-powered-by: - ASP.NET status: @@ -790,15 +532,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -806,44 +540,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:42.997","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2DD0CB8FB1FD65615809901040B32307B7E3910BD9ED8CC9E3C3735C3D71D0F5","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:50.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"01178ABA9290C36C445DCCEF74CFF1B81ACB9E1187C2183BCB12DD00699E2BE6","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:30.093","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E27061F90D4CF1159C43EA3B277D145AF2E86432F3F3E8BA752D26AF6E736B6D","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:18.587","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E78F19A05B03B30799A90C914EF635EE4F1FDACF741FCAB342769D581F019B98","kind":"functionapp","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3533' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:01:44 GMT - etag: - - '"1D5BCBE2B160850"' -======= - '3549' -======= - - '3559' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:38:31 GMT + - Sun, 05 Jan 2020 09:38:20 GMT etag: -<<<<<<< HEAD - - '"1D59A12BA61FB50"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF83631047D0"' ->>>>>>> live test + - '"1D5C3ABDCA432B0"' expires: - '-1' pragma: @@ -886,15 +594,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -902,44 +602,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:50.517","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9288","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7D1F603240936AB54F65F112639041BD22089455BCB1E254A186DD0F0933B20B","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-049.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:55.72","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c8e2","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"733D9329B61051A165A5D72D32A4C7DD13576A6DCFA34B16C8A2CC7C2CC15ED1","kind":"functionapp","inboundIpAddress":"40.83.182.206","possibleInboundIpAddresses":"40.83.182.206","outboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","possibleOutboundIpAddresses":"40.83.183.69,40.83.179.85,40.83.179.222,40.83.180.221","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-049","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:35.483","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__00df","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2777F536F43043CE34839BBC9B3A2B6E46E9ED81A595FAD5C6549EB2A15F2C14","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:24.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__8626","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F4B642D6F1092025D03E984DF2BF7243CCFE055FC4617A63A7E4E3A22B4B4BB3","kind":"functionapp","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3779' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:02:07 GMT - etag: - - '"1D5BCBE2B160850"' -======= - '3794' -======= - - '3805' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:38:53 GMT + - Sun, 05 Jan 2020 09:38:40 GMT etag: -<<<<<<< HEAD - - '"1D59A12BA61FB50"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF83631047D0"' ->>>>>>> live test + - '"1D5C3ABDCA432B0"' expires: - '-1' pragma: @@ -980,15 +654,7 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -996,15 +662,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"a5776acf-5811-4029-a36b-d09571c082d1"}}' headers: cache-control: - no-cache @@ -1013,15 +671,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:08 GMT -======= - - Wed, 13 Nov 2019 11:09:14 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:42 GMT expires: - '-1' pragma: @@ -1039,7 +689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1049,15 +699,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "101bd586-af29-4dd2-b7e9-545c07428fae", -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "3482293a-f71e-46da-836f-6cf0add8a388", ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "24fe2190-4ab2-4e37-aa0c-686b237702f7", ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "a5776acf-5811-4029-a36b-d09571c082d1", "FOO": "BAR"}}''' headers: Accept: @@ -1076,15 +718,7 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1092,15 +726,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae","FOO":"BAR"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388","FOO":"BAR"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7","FOO":"BAR"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"a5776acf-5811-4029-a36b-d09571c082d1","FOO":"BAR"}}' headers: cache-control: - no-cache @@ -1109,21 +735,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:09 GMT + - Sun, 05 Jan 2020 09:38:44 GMT etag: - - '"1D5BCBE3B059F50"' -======= - - Wed, 13 Nov 2019 11:09:15 GMT - etag: - - '"1D59A12C959EBE0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:56 GMT - etag: - - '"1D5BF8373452530"' ->>>>>>> live test + - '"1D5C3ABEC183110"' expires: - '-1' pragma: @@ -1141,11 +755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1193' -======= - - '1176' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -1166,15 +776,7 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1191,15 +793,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:09 GMT -======= - - Wed, 13 Nov 2019 11:09:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:44 GMT expires: - '-1' pragma: @@ -1240,15 +834,7 @@ interactions: - -g -n --slot --slot-settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1265,15 +851,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:11 GMT -======= - - Wed, 13 Nov 2019 11:09:16 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:45 GMT expires: - '-1' pragma: @@ -1291,11 +869,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1191' -======= - - '1175' ->>>>>>> live test + - '1185' x-powered-by: - ASP.NET status: @@ -1318,15 +892,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1334,15 +900,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"101bd586-af29-4dd2-b7e9-545c07428fae","FOO":"BAR"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"3482293a-f71e-46da-836f-6cf0add8a388","FOO":"BAR"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"24fe2190-4ab2-4e37-aa0c-686b237702f7","FOO":"BAR"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"a5776acf-5811-4029-a36b-d09571c082d1","FOO":"BAR"}}' headers: cache-control: - no-cache @@ -1351,15 +909,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:11 GMT -======= - - Wed, 13 Nov 2019 11:09:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:00 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:46 GMT expires: - '-1' pragma: @@ -1398,15 +948,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1423,15 +965,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:13 GMT -======= - - Wed, 13 Nov 2019 11:09:18 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:01 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:48 GMT expires: - '-1' pragma: @@ -1470,15 +1004,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1492,21 +1018,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:20 GMT - etag: - - '"1D5BCBE2B160850"' -======= - - Wed, 13 Nov 2019 11:09:24 GMT - etag: - - '"1D59A12BA61FB50"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:12 GMT + - Sun, 05 Jan 2020 09:38:55 GMT etag: - - '"1D5BF83631047D0"' ->>>>>>> live test + - '"1D5C3ABDCA432B0"' expires: - '-1' pragma: @@ -1520,7 +1034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14993' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml index 6684c05c73a..0bcd1ff4460 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_creation.yaml @@ -14,22 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:02:24Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:07:42Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:36:05Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:39:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:55 GMT -======= - - Wed, 13 Nov 2019 11:08:08 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:34 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:29 GMT expires: - '-1' pragma: @@ -80,15 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -96,18 +72,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":30701,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-091_30701","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":24659,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24659","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":25703,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25703","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":25039,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_25039","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -116,15 +82,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:04 GMT -======= - - Wed, 13 Nov 2019 11:08:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:41 GMT expires: - '-1' pragma: @@ -142,15 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1185' -======= - - '1182' ->>>>>>> Re-record test for app service -======= - - '1183' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -171,15 +121,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -187,18 +129,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":30701,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-091_30701","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":24659,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_24659","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":25703,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25703","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":25039,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_25039","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -207,15 +139,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:05 GMT -======= - - Wed, 13 Nov 2019 11:08:19 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:44 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:44 GMT expires: - '-1' pragma: @@ -252,51 +176,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:32.8915294Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:32.8915294Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:32.8134329Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.8496639Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:48.8496639Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:48.8027664Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:12.4518852Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:36:12.4518852Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:36:12.3893479Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:39:09.6101810Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:39:09.6101810Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:39:09.5476836Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:03:07 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:08:19 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:45 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:45 GMT expires: - '-1' pragma: @@ -331,15 +227,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -355,15 +243,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:07 GMT -======= - - Wed, 13 Nov 2019 11:08:20 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:46 GMT expires: - '-1' pragma: @@ -379,15 +259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1194' -======= - - '1185' ->>>>>>> Re-record test for app service -======= - - '1191' ->>>>>>> live test + - '1193' status: code: 200 message: OK @@ -417,15 +289,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -433,44 +297,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:13.7233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F804F4910DE78FD31C10AE0EE88A8D172F6B5DD9D84A3057E895D47AF5B78A23","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:23.88","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"89C280AA0333DD4E9C395B6E3C27C9D09481BE4C550FADA0EDAF6385812722FD","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:49.92","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"383A35FB917401DB7E99AFFBF3F2A4DA346CC6A5DFE2A840E41793518CC199A0","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:39:50.5333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F180954B350B42A2CED5E9D3EB62D1C4B8896168A5D90A2A11B9D8AF724A6653","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3625' + - '3618' content-type: - application/json date: - - Fri, 27 Dec 2019 14:03:30 GMT + - Sun, 05 Jan 2020 09:40:07 GMT etag: - - '"1D5BCBE615D24C0"' -======= - - '3546' -======= - - '3548' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:37:07 GMT - etag: -<<<<<<< HEAD - - '"1D59A12AAF15850"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8327B211A0"' ->>>>>>> live test + - '"1D5C3AC13A78035"' expires: - '-1' pragma: @@ -488,7 +326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '497' x-powered-by: - ASP.NET status: @@ -514,22 +352,14 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4000e04-0000-0700-0000-5e060f390000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"0dacc424-6d07-416c-a883-e69a7cbf3feb","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ff9ca649-91ec-4857-b3d1-ee7dd1560565","ConnectionString":"InstrumentationKey=ff9ca649-91ec-4857-b3d1-ee7dd1560565","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:03:37.0090435+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0051d1-0000-0700-0000-5dcbe43a0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"a213eb67-7dbd-45ca-bb2e-0433c9452fe5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"baeb9808-086e-4756-b671-71b66c3def1a","ConnectionString":"InstrumentationKey=baeb9808-086e-4756-b671-71b66c3def1a","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:08:42.8765239+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0001a5c-0000-0700-0000-5e0ab4580000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"6106f2ab-8369-4e73-ab65-b1fb240dbf7c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c7595144-be1a-4475-b9be-041d9a3f326f","ConnectionString":"InstrumentationKey=c7595144-be1a-4475-b9be-041d9a3f326f","Name":"functionapp-slot000004","CreationDate":"2019-12-31T02:37:12.7750286+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501983a-0000-0700-0000-5e11aefe0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"6179e05b-11aa-44fe-aec2-9713ba5bee4f","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"27a55cc1-661c-4728-ab36-e207e63ea0d0","ConnectionString":"InstrumentationKey=27a55cc1-661c-4728-ab36-e207e63ea0d0","Name":"functionapp-slot000004","CreationDate":"2020-01-05T09:40:14.9591874+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -540,15 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:39 GMT -======= - - Wed, 13 Nov 2019 11:08:45 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:13 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:40:17 GMT expires: - '-1' pragma: @@ -566,15 +388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1188' -======= - - '1175' ->>>>>>> Re-record test for app service -======= - - '1181' ->>>>>>> live test + - '1184' x-powered-by: - ASP.NET status: @@ -597,15 +411,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -622,15 +428,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:39 GMT -======= - - Wed, 13 Nov 2019 11:08:46 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:15 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:40:19 GMT expires: - '-1' pragma: @@ -648,15 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11993' -======= - - '11996' ->>>>>>> Re-record test for app service -======= - - '11995' ->>>>>>> live test + - '11997' x-powered-by: - ASP.NET status: @@ -666,15 +456,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "ff9ca649-91ec-4857-b3d1-ee7dd1560565"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "baeb9808-086e-4756-b671-71b66c3def1a"}}''' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "c7595144-be1a-4475-b9be-041d9a3f326f"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "27a55cc1-661c-4728-ab36-e207e63ea0d0"}}''' headers: Accept: - application/json @@ -692,15 +474,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -708,15 +482,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"ff9ca649-91ec-4857-b3d1-ee7dd1560565"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"baeb9808-086e-4756-b671-71b66c3def1a"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"c7595144-be1a-4475-b9be-041d9a3f326f"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"27a55cc1-661c-4728-ab36-e207e63ea0d0"}}' headers: cache-control: - no-cache @@ -725,21 +491,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:40 GMT - etag: - - '"1D5BCBE7172FB6B"' -======= - - Wed, 13 Nov 2019 11:08:48 GMT - etag: - - '"1D59A12B8C56250"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:16 GMT + - Sun, 05 Jan 2020 09:40:20 GMT etag: - - '"1D5BF8337A6D8C0"' ->>>>>>> live test + - '"1D5C3AC25498F2B"' expires: - '-1' pragma: @@ -757,15 +511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1183' -======= - - '1181' ->>>>>>> Re-record test for app service -======= - - '1175' ->>>>>>> live test + - '1178' x-powered-by: - ASP.NET status: @@ -786,15 +532,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -802,44 +540,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:41.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F804F4910DE78FD31C10AE0EE88A8D172F6B5DD9D84A3057E895D47AF5B78A23","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:47.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"89C280AA0333DD4E9C395B6E3C27C9D09481BE4C550FADA0EDAF6385812722FD","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:17.26","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"383A35FB917401DB7E99AFFBF3F2A4DA346CC6A5DFE2A840E41793518CC199A0","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:40:20.4666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F180954B350B42A2CED5E9D3EB62D1C4B8896168A5D90A2A11B9D8AF724A6653","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3623' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:03:42 GMT - etag: - - '"1D5BCBE7172FB6B"' -======= - - '3545' -======= - - '3546' ->>>>>>> live test + - '3616' content-type: - application/json date: - - Tue, 31 Dec 2019 02:37:17 GMT + - Sun, 05 Jan 2020 09:40:22 GMT etag: -<<<<<<< HEAD - - '"1D59A12B8C56250"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8337A6D8C0"' ->>>>>>> live test + - '"1D5C3AC25498F2B"' expires: - '-1' pragma: @@ -882,15 +594,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -898,44 +602,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:47.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c619","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86874C82C143F85CA4729AD5911A19F20F5264D1B5051E9486DE2A02D8D67E07","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:54.297","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9abb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F17F05499F62575B06D6980316D355137D14F9098BA461802067EA49DDA86A9B","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:22.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__0240","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"50A29C79ECE058FCC09AFEA27ABAF1BE1A9A24DC86DB6A02AF7CD0ACC5C0B100","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:40:26.8133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__cfeb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B6FDCD2959544903BEAEB2F3634D66366A6280823D3363BBB07DEF3B1B2EA6C7","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3864' + - '3862' content-type: - application/json date: - - Fri, 27 Dec 2019 14:04:05 GMT + - Sun, 05 Jan 2020 09:40:43 GMT etag: - - '"1D5BCBE7172FB6B"' -======= - - '3791' -======= - - '3792' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:37:40 GMT - etag: -<<<<<<< HEAD - - '"1D59A12B8C56250"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8337A6D8C0"' ->>>>>>> live test + - '"1D5C3AC25498F2B"' expires: - '-1' pragma: @@ -974,15 +652,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -990,44 +660,18 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:03:48.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c619","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"86874C82C143F85CA4729AD5911A19F20F5264D1B5051E9486DE2A02D8D67E07","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:55.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__9abb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F17F05499F62575B06D6980316D355137D14F9098BA461802067EA49DDA86A9B","kind":"functionapp","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:23.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__0240","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"50A29C79ECE058FCC09AFEA27ABAF1BE1A9A24DC86DB6A02AF7CD0ACC5C0B100","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:40:27.4433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__cfeb","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B6FDCD2959544903BEAEB2F3634D66366A6280823D3363BBB07DEF3B1B2EA6C7","kind":"functionapp","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3914' + - '3912' content-type: - application/json date: - - Fri, 27 Dec 2019 14:04:06 GMT + - Sun, 05 Jan 2020 09:40:44 GMT etag: - - '"1D5BCBE75C12CE0"' -======= - - '3841' -======= - - '3842' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:37:42 GMT - etag: -<<<<<<< HEAD - - '"1D59A12BD34A350"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF833B745B80"' ->>>>>>> live test + - '"1D5C3AC29721D35"' expires: - '-1' pragma: @@ -1066,15 +710,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1088,21 +724,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:12 GMT - etag: - - '"1D5BCBE75C12CE0"' -======= - - Wed, 13 Nov 2019 11:09:15 GMT + - Sun, 05 Jan 2020 09:40:52 GMT etag: - - '"1D59A12BD34A350"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:48 GMT - etag: - - '"1D5BF833B745B80"' ->>>>>>> live test + - '"1D5C3AC29721D35"' expires: - '-1' pragma: @@ -1116,15 +740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14995' -======= - '14996' ->>>>>>> Re-record test for app service -======= - - '14992' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1145,15 +761,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1169,15 +777,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:14 GMT -======= - - Wed, 13 Nov 2019 11:09:16 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:50 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:40:53 GMT expires: - '-1' pragma: @@ -1216,15 +816,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1238,21 +830,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:22 GMT - etag: - - '"1D5BCBE7172FB6B"' -======= - - Wed, 13 Nov 2019 11:09:20 GMT - etag: - - '"1D59A12B8C56250"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:56 GMT + - Sun, 05 Jan 2020 09:40:57 GMT etag: - - '"1D5BF8337A6D8C0"' ->>>>>>> live test + - '"1D5C3AC25498F2B"' expires: - '-1' pragma: @@ -1266,15 +846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14994' -======= - - '14988' ->>>>>>> Re-record test for app service -======= - - '14995' ->>>>>>> live test + - '14997' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml index 5c22aca76c0..a2122fb0160 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_slot_swap.yaml @@ -14,22 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T14:04:28Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:01Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:37:08Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:56 GMT -======= - - Wed, 13 Nov 2019 11:09:19 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:37 GMT expires: - '-1' pragma: @@ -80,15 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -96,18 +72,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":42715,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42715","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":33288,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33288","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":29048,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29048","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":35579,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35579","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -116,15 +82,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:05:04 GMT -======= - - Wed, 13 Nov 2019 11:09:27 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:46 GMT expires: - '-1' pragma: @@ -142,15 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1184' -======= - - '1181' ->>>>>>> Re-record test for app service -======= - - '1184' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -171,15 +121,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -187,18 +129,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","name":"funcappplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":42715,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-033_42715","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":33288,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_33288","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":29048,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-061_29048","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":35579,"name":"funcappplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35579","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -207,15 +139,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:05:06 GMT -======= - - Wed, 13 Nov 2019 11:09:27 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:46 GMT expires: - '-1' pragma: @@ -252,51 +176,23 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:04:36.0366625Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:04:36.0366625Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:04:35.9584971Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:08:59.8845842Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:08:59.8845842Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:08:59.8220537Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:38:07.1010901Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:38:07.1010901Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:38:07.0386464Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:15.7386505Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:15.7386505Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:37:15.6761562Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:05:08 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:09:28 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:38 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:48 GMT expires: - '-1' pragma: @@ -331,15 +227,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -355,15 +243,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:05:08 GMT -======= - - Wed, 13 Nov 2019 11:09:28 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:37:48 GMT expires: - '-1' pragma: @@ -379,15 +259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1191' -======= - - '1183' ->>>>>>> Re-record test for app service -======= - - '1188' ->>>>>>> live test + - '1194' status: code: 200 message: OK @@ -417,15 +289,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -433,44 +297,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:14.893","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:32.273","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:42.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F668039C09E6656D3B9B02CD4B6DCA74BEDC4872B377D1AE6A4C1623C98F37DB","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:37:51.787","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8F3AA4EE9BA98E31B8A7AC4DB0C0825614C94DCC57297BDC58D58F0FF48C4D93","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3563' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:05:32 GMT - etag: - - '"1D5BCBEA9AF1710"' -======= - '3543' -======= - - '3560' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:39:00 GMT + - Sun, 05 Jan 2020 09:38:09 GMT etag: -<<<<<<< HEAD - - '"1D59A12D3B4D4B0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF836A907250"' ->>>>>>> live test + - '"1D5C3ABCD0553C0"' expires: - '-1' pragma: @@ -488,11 +326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '498' -======= - - '497' ->>>>>>> live test + - '496' x-powered-by: - ASP.NET status: @@ -518,22 +352,14 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionapp-slot000004?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b400750a-0000-0700-0000-5e060fb20000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"8c2c319d-09fd-424a-bd2a-376171b2fde8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f1d83ede-6062-4133-af7c-f6fef0f6de76","ConnectionString":"InstrumentationKey=f1d83ede-6062-4133-af7c-f6fef0f6de76","Name":"functionapp-slot000004","CreationDate":"2019-12-27T14:05:38.1685104+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0085d4-0000-0700-0000-5dcbe47f0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"fd8a8ad3-84f3-417e-addb-ccbbf8e7e795","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"366eaca0-a43a-47c9-9a1d-0951401254f0","ConnectionString":"InstrumentationKey=366eaca0-a43a-47c9-9a1d-0951401254f0","Name":"functionapp-slot000004","CreationDate":"2019-11-13T11:09:51.0301605+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000bc61-0000-0700-0000-5e0ab4c70000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"30821300-8d8e-4084-8490-1e5c7f572120","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","ConnectionString":"InstrumentationKey=88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","Name":"functionapp-slot000004","CreationDate":"2019-12-31T02:39:03.9709877+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-slot000004","name":"functionapp-slot000004","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55012a35-0000-0700-0000-5e11ae880000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-slot000004","AppId":"ac9cd25e-43a8-45f1-a9a6-8dc98f1a4cb3","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"44bb853c-9145-4961-80d6-71603356c32a","ConnectionString":"InstrumentationKey=44bb853c-9145-4961-80d6-71603356c32a","Name":"functionapp-slot000004","CreationDate":"2020-01-05T09:38:16.1772758+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -544,15 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:05:40 GMT -======= - - Wed, 13 Nov 2019 11:09:52 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:05 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:18 GMT expires: - '-1' pragma: @@ -570,15 +388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1184' -======= - - '1176' ->>>>>>> Re-record test for app service -======= - - '1168' ->>>>>>> live test + - '1179' x-powered-by: - ASP.NET status: @@ -601,15 +411,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -626,15 +428,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:05:41 GMT -======= - - Wed, 13 Nov 2019 11:09:53 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:20 GMT expires: - '-1' pragma: @@ -652,15 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11996' -======= - - '11992' ->>>>>>> Re-record test for app service -======= - - '11991' ->>>>>>> live test + - '11994' x-powered-by: - ASP.NET status: @@ -670,15 +456,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f1d83ede-6062-4133-af7c-f6fef0f6de76"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "366eaca0-a43a-47c9-9a1d-0951401254f0"}}''' ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "88bacdc3-787a-4d69-bc9b-ba2fb41feb6f"}}''' ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "44bb853c-9145-4961-80d6-71603356c32a"}}''' headers: Accept: - application/json @@ -696,15 +474,7 @@ interactions: - -g -n --plan -s --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -712,15 +482,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"44bb853c-9145-4961-80d6-71603356c32a"}}' headers: cache-control: - no-cache @@ -729,21 +491,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:05:43 GMT - etag: - - '"1D5BCBEBA401E30"' -======= - - Wed, 13 Nov 2019 11:09:55 GMT - etag: - - '"1D59A12E10297B0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:09 GMT + - Sun, 05 Jan 2020 09:38:21 GMT etag: - - '"1D5BF837A849D30"' ->>>>>>> live test + - '"1D5C3ABDED19A00"' expires: - '-1' pragma: @@ -761,7 +511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1189' x-powered-by: - ASP.NET status: @@ -782,15 +532,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -798,44 +540,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004","name":"functionapp-slot000004","type":"Microsoft.Web/sites","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:43.187","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:55.243","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:09.443","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F668039C09E6656D3B9B02CD4B6DCA74BEDC4872B377D1AE6A4C1623C98F37DB","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004","state":"Running","hostNames":["functionapp-slot000004.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004.azurewebsites.net","functionapp-slot000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:22.24","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8F3AA4EE9BA98E31B8A7AC4DB0C0825614C94DCC57297BDC58D58F0FF48C4D93","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3561' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:05:43 GMT - etag: - - '"1D5BCBEBA401E30"' -======= - - '3541' -======= - - '3559' ->>>>>>> live test + - '3540' content-type: - application/json date: - - Tue, 31 Dec 2019 02:39:11 GMT + - Sun, 05 Jan 2020 09:38:23 GMT etag: -<<<<<<< HEAD - - '"1D59A12E10297B0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF837A849D30"' ->>>>>>> live test + - '"1D5C3ABDED19A00"' expires: - '-1' pragma: @@ -878,15 +594,7 @@ interactions: - -g -n --slot User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -894,44 +602,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:05:51.917","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__ce6a","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ADC59A6832CF094A276B4C7793233749B2935987B356A71111F461A092167378","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:10:00.717","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__c588","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"D33B2809E779679458C723599A13E91FFFEB18C31088C576F94A05D18CE57F6F","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:18.133","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__27f1","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6647D75E02F85DD66D4651B96500AAF52920BF9D22E2F08B48E09755C6CED5FD","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:29.973","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004__e6f3","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"85ECE6928A4FAA70C71CA5EB7E38FBE1994AE19CBBD8E1CAFF5E359B4BD9B19E","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3807' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:06:09 GMT - etag: - - '"1D5BCBEBA401E30"' -======= - '3787' -======= - - '3805' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:39:35 GMT + - Sun, 05 Jan 2020 09:38:47 GMT etag: -<<<<<<< HEAD - - '"1D59A12E10297B0"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF837A849D30"' ->>>>>>> live test + - '"1D5C3ABDED19A00"' expires: - '-1' pragma: @@ -972,15 +654,7 @@ interactions: - -g -n --slot --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -988,15 +662,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"44bb853c-9145-4961-80d6-71603356c32a"}}' headers: cache-control: - no-cache @@ -1005,15 +671,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:06:11 GMT -======= - - Wed, 13 Nov 2019 11:10:18 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:48 GMT expires: - '-1' pragma: @@ -1031,7 +689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1041,15 +699,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "f1d83ede-6062-4133-af7c-f6fef0f6de76", -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "366eaca0-a43a-47c9-9a1d-0951401254f0", ->>>>>>> Re-record test for app service -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "88bacdc3-787a-4d69-bc9b-ba2fb41feb6f", ->>>>>>> live test + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "44bb853c-9145-4961-80d6-71603356c32a", "FOO": "BAR"}}''' headers: Accept: @@ -1068,15 +718,7 @@ interactions: - -g -n --slot --settings User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1084,15 +726,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76","FOO":"BAR"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0","FOO":"BAR"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","FOO":"BAR"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"44bb853c-9145-4961-80d6-71603356c32a","FOO":"BAR"}}' headers: cache-control: - no-cache @@ -1101,21 +735,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:06:12 GMT - etag: - - '"1D5BCBECBB45960"' -======= - - Wed, 13 Nov 2019 11:10:20 GMT + - Sun, 05 Jan 2020 09:38:49 GMT etag: - - '"1D59A12EFF50A00"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:39 GMT - etag: - - '"1D5BF838C4B6530"' ->>>>>>> live test + - '"1D5C3ABEF3D65E0"' expires: - '-1' pragma: @@ -1133,15 +755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1190' -======= - - '1180' ->>>>>>> Re-record test for app service -======= - - '1169' ->>>>>>> live test + - '1184' x-powered-by: - ASP.NET status: @@ -1166,15 +780,7 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1188,31 +794,13 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:06:15 GMT + - Sun, 05 Jan 2020 09:38:53 GMT etag: - - '"1D5BCBECD9F3970"' + - '"1D5C3ABF15C2730"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - - Wed, 13 Nov 2019 11:10:23 GMT -======= - - Tue, 31 Dec 2019 02:39:42 GMT ->>>>>>> live test - etag: - - '"1D5BF838DE14770"' - expires: - - '-1' - location: -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 pragma: - no-cache server: @@ -1224,72 +812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - '1195' -======= - - '1186' ->>>>>>> live test - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp deployment slot swap - Connection: - - keep-alive - ParameterSetName: - - -g -n --slot --action - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:06:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - - Tue, 31 Dec 2019 02:39:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff x-powered-by: - ASP.NET status: @@ -1310,10 +833,9 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 response: body: string: '' @@ -1323,11 +845,11 @@ interactions: content-length: - '0' date: - - Fri, 27 Dec 2019 14:06:49 GMT + - Sun, 05 Jan 2020 09:39:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 pragma: - no-cache server: @@ -1358,20 +880,9 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 response: body: string: '' @@ -1381,27 +892,11 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:07:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - - Wed, 13 Nov 2019 11:10:40 GMT + - Sun, 05 Jan 2020 09:39:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:40:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 pragma: - no-cache server: @@ -1432,21 +927,9 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 response: body: string: '' @@ -1456,27 +939,11 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:07:21 GMT + - Sun, 05 Jan 2020 09:39:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - - Wed, 13 Nov 2019 11:10:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:40:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 pragma: - no-cache server: @@ -1507,135 +974,24 @@ interactions: - -g -n --slot --action User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:07:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 -======= - - Wed, 13 Nov 2019 11:11:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8422ca92-6a10-446b-a3db-bab2db91c7a3?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:40:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 ->>>>>>> live test - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - functionapp deployment slot swap - Connection: - - keep-alive - ParameterSetName: - - -g -n --slot --action - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/0c6d9890-f470-49b9-8980-b5c77734243e?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/8f18b0ce-264e-42ea-949b-035da11e51c3?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:07:41.523","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4F2A50AC60C67201DFCB7BABDDDD2D4EF5524745B72B26072221F17F63461BA0","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-27T14:07:41.561Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005/operationresults/4a4e39e1-4fbc-4805-867e-ff7469965ef1?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/slots/slotname000005","name":"functionapp-slot000004/slotname000005","type":"Microsoft.Web/sites/slots","kind":"functionapp","location":"West -<<<<<<< HEAD - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:11:25.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"95BB1810021C97F7BFCB254641CE6AA74583DC351FF47C2B33F98AD0CFD3B9FB","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-11-13T11:11:25.936Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-061.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:40:49.497","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F668039C09E6656D3B9B02CD4B6DCA74BEDC4872B377D1AE6A4C1623C98F37DB","kind":"functionapp","inboundIpAddress":"40.118.255.59","possibleInboundIpAddresses":"40.118.255.59","outboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","possibleOutboundIpAddresses":"40.118.255.137,40.118.255.231,40.118.250.218,40.118.252.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-061","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2019-12-31T02:40:49.549Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionapp-slot000004(slotname000005)","state":"Running","hostNames":["functionapp-slot000004-slotname000005.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionapp-slot000004","repositorySiteName":"functionapp-slot000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-slot000004-slotname000005.azurewebsites.net","functionapp-slot000004-slotname000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-slot000004-slotname000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-slot000004-slotname000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcappplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:39:54.997","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionapp-slot000004","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8F3AA4EE9BA98E31B8A7AC4DB0C0825614C94DCC57297BDC58D58F0FF48C4D93","kind":"functionapp","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-slot000004-slotname000005.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2020-01-05T09:39:55.061Z","sourceSlotName":"slotname000005","destinationSlotName":"Production"},"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3917' + - '3897' content-type: - application/json date: - - Fri, 27 Dec 2019 14:07:55 GMT + - Sun, 05 Jan 2020 09:39:56 GMT etag: - - '"1D5BCBF00C8C230"' -======= - - '3896' -======= - - '3915' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:41:03 GMT - etag: -<<<<<<< HEAD - - '"1D59A13170D4760"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF83B627A490"' ->>>>>>> live test + - '"1D5C3AC161B3250"' expires: - '-1' pragma: @@ -1674,15 +1030,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1690,15 +1038,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-slot000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"f1d83ede-6062-4133-af7c-f6fef0f6de76","FOO":"BAR"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"366eaca0-a43a-47c9-9a1d-0951401254f0","FOO":"BAR"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"88bacdc3-787a-4d69-bc9b-ba2fb41feb6f","FOO":"BAR"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"44bb853c-9145-4961-80d6-71603356c32a","FOO":"BAR"}}' headers: cache-control: - no-cache @@ -1707,15 +1047,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:07:58 GMT -======= - - Wed, 13 Nov 2019 11:11:29 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:41:04 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:58 GMT expires: - '-1' pragma: @@ -1733,15 +1065,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11998' -======= - - '11989' ->>>>>>> Re-record test for app service -======= - - '11993' ->>>>>>> live test + - '11997' x-powered-by: - ASP.NET status: @@ -1762,15 +1086,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1787,15 +1103,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:07:59 GMT -======= - - Wed, 13 Nov 2019 11:11:29 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:41:05 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:39:59 GMT expires: - '-1' pragma: @@ -1834,15 +1142,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1856,21 +1156,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:08:06 GMT - etag: - - '"1D5BCBECDC8E180"' -======= - - Wed, 13 Nov 2019 11:11:36 GMT - etag: - - '"1D59A12F212B9E0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:41:18 GMT + - Sun, 05 Jan 2020 09:40:07 GMT etag: - - '"1D5BF838E192050"' ->>>>>>> live test + - '"1D5C3ABF1855A10"' expires: - '-1' pragma: @@ -1884,15 +1172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14999' -======= - '14995' ->>>>>>> Re-record test for app service -======= - - '14992' ->>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml index 330b9359ad8..a2060b5b849 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '12604' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 13:59:16 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:06:10 GMT ->>>>>>> Re-record test for app service -======= - '12604' content-type: - application/json date: - - Tue, 31 Dec 2019 02:35:48 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:02 GMT expires: - '-1' pragma: @@ -174,54 +142,23 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:56.4243289Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:56.4243289Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:56.3461863Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:47.6745244Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:47.6745244Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:47.6120088Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:26.6547439Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:26.6547439Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:26.6078708Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:40.5538819Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:37:40.5538819Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:37:40.4913550Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 13:59:16 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:06:12 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:48 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:03 GMT expires: - '-1' pragma: @@ -256,15 +193,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -280,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:17 GMT -======= - - Wed, 13 Nov 2019 11:06:12 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:49 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:04 GMT expires: - '-1' pragma: @@ -304,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1191' ->>>>>>> live test + - '1189' status: code: 200 message: OK @@ -344,62 +257,25 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:28.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B46FAF22F57BC30E39DC59729716577489465A9C7F5B0B2338144BE3EE594E47","kind":"functionapp","inboundIpAddress":"104.42.53.248","possibleInboundIpAddresses":"104.42.53.248","outboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90","possibleOutboundIpAddresses":"104.42.53.248,104.42.195.62,104.42.199.12,104.42.43.137,104.42.194.90,104.42.42.126,104.42.43.41,104.42.198.122","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionappwindowsruntime000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:19.59","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DF3121BB1DB92B04B03853EC84F717DF1390DBB8BA3A921F6B715552BE373291","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:56.957","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F22487794654976C428D9EE9E5BE93E99A22CFFB88B392D24A10EEDD0314D961","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:38:12.43","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7E2C6A2AD1D5A22419756CB526AE68A9E3FB7FD13BC43A0BDB7F2E79BC3CEF57","kind":"functionapp","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3800' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:00:03 GMT - etag: - - '"1D5BCBDDB2050EB"' -======= - - '3852' -======= - - '3737' ->>>>>>> live test + - '3799' content-type: - application/json date: - - Tue, 31 Dec 2019 02:36:31 GMT + - Sun, 05 Jan 2020 09:38:46 GMT etag: -<<<<<<< HEAD - - '"1D59A1261005C00"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF83081F7D00"' ->>>>>>> live test + - '"1D5C3ABD9544460"' expires: - '-1' pragma: @@ -417,15 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '498' -======= - - '496' ->>>>>>> Re-record test for app service -======= - - '497' ->>>>>>> live test + - '495' x-powered-by: - ASP.NET status: @@ -451,30 +319,14 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionappwindowsruntime000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300bef3-0000-0700-0000-5e060e670000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"5cbc1a4a-9bb1-4158-be91-d360a5c572e9","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"85a4195b-b67a-409f-b3f2-bb2702f6abf1","ConnectionString":"InstrumentationKey=85a4195b-b67a-409f-b3f2-bb2702f6abf1","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-27T14:00:07.1319328+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc00cdcc-0000-0700-0000-5dcbe3d30000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"ee01c40d-9438-40d1-ac7a-29f924f8d490","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"399895af-2e86-44f5-9291-13895c0f8534","ConnectionString":"InstrumentationKey=399895af-2e86-44f5-9291-13895c0f8534","Name":"functionappwindowsruntime000003","CreationDate":"2019-11-13T11:06:59.2188761+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000205a-0000-0700-0000-5e0ab4330000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"9606a8d5-8c99-4b10-a9d4-24a15819f565","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0dd26650-6579-4dbb-baf9-f39c41834724","ConnectionString":"InstrumentationKey=0dd26650-6579-4dbb-baf9-f39c41834724","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-31T02:36:35.5160791+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501eb36-0000-0700-0000-5e11aeac0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"0961e423-7ae8-452d-bd3a-4a7ed8a0a118","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"e5e74610-505c-4b15-9c0c-d6cd29e3619a","ConnectionString":"InstrumentationKey=e5e74610-505c-4b15-9c0c-d6cd29e3619a","Name":"functionappwindowsruntime000003","CreationDate":"2020-01-05T09:38:52.9079126+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -485,15 +337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:08 GMT -======= - - Wed, 13 Nov 2019 11:07:25 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:54 GMT expires: - '-1' pragma: @@ -511,15 +355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1188' -======= - - '1176' ->>>>>>> Re-record test for app service -======= - - '1172' ->>>>>>> live test + - '1189' x-powered-by: - ASP.NET status: @@ -542,27 +378,11 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappwindowsruntime000003/config/appsettings/list?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -575,15 +395,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:09 GMT -======= - - Wed, 13 Nov 2019 11:07:25 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:37 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:55 GMT expires: - '-1' pragma: @@ -601,15 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11996' -======= - - '11997' ->>>>>>> Re-record test for app service -======= - - '11996' ->>>>>>> live test + - '11993' x-powered-by: - ASP.NET status: @@ -622,15 +426,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowsruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}''' -======= - "399895af-2e86-44f5-9291-13895c0f8534"}}''' ->>>>>>> Re-record test for app service -======= - "0dd26650-6579-4dbb-baf9-f39c41834724"}}''' ->>>>>>> live test + "e5e74610-505c-4b15-9c0c-d6cd29e3619a"}}''' headers: Accept: - application/json @@ -648,22 +444,7 @@ interactions: - -g -n -c -s --os-type --runtime User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -671,12 +452,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"399895af-2e86-44f5-9291-13895c0f8534"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0dd26650-6579-4dbb-baf9-f39c41834724"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"e5e74610-505c-4b15-9c0c-d6cd29e3619a"}}' headers: cache-control: - no-cache @@ -685,21 +461,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:12 GMT - etag: - - '"1D5BCBDF4574AE0"' -======= - - Wed, 13 Nov 2019 11:07:29 GMT - etag: - - '"1D59A12897DA7A0"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:39 GMT + - Sun, 05 Jan 2020 09:38:57 GMT etag: - - '"1D5BF8320D022F0"' ->>>>>>> live test + - '"1D5C3ABF3255B75"' expires: - '-1' pragma: @@ -717,15 +481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1191' -======= - - '1188' ->>>>>>> Re-record test for app service -======= - - '1186' ->>>>>>> live test + - '1179' x-powered-by: - ASP.NET status: @@ -748,15 +504,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -764,15 +512,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"85a4195b-b67a-409f-b3f2-bb2702f6abf1"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"399895af-2e86-44f5-9291-13895c0f8534"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0dd26650-6579-4dbb-baf9-f39c41834724"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"e5e74610-505c-4b15-9c0c-d6cd29e3619a"}}' headers: cache-control: - no-cache @@ -781,15 +521,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:14 GMT -======= - - Wed, 13 Nov 2019 11:07:30 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:58 GMT expires: - '-1' pragma: @@ -807,15 +539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11996' -======= - - '11991' ->>>>>>> Re-record test for app service -======= - '11993' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -836,15 +560,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -861,15 +577,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:15 GMT -======= - - Wed, 13 Nov 2019 11:07:32 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:43 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:38:59 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml index d9bb2a8a0ac..7f5030c431e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_runtime_version.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '12604' content-type: - application/json date: - - Fri, 27 Dec 2019 13:59:14 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:08:14 GMT ->>>>>>> Re-record test for app service -======= - - '12604' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:35:11 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:18 GMT expires: - '-1' pragma: @@ -174,30 +142,14 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:52.5180554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:58:52.5180554Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:58:52.4555651Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:53.3340360Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:07:53.3340360Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:07:53.2559473Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:50.5395795Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:50.5395795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:50.4926957Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:57.4096942Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:57.4096942Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:33:57.3315643Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -206,15 +158,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:13 GMT -======= - - Wed, 13 Nov 2019 11:08:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:13 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:19 GMT expires: - '-1' pragma: @@ -249,15 +193,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -273,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:14 GMT -======= - - Wed, 13 Nov 2019 11:08:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:13 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:19 GMT expires: - '-1' pragma: @@ -297,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1188' ->>>>>>> Re-record test for app service -======= - - '1193' ->>>>>>> live test + - '1197' status: code: 200 message: OK @@ -337,59 +257,25 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionappwindowsruntime000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T13:59:23.0466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BE829D5350B4885923673ED0C07A6B93AB4A2B10A8F0460738D674A8D09CA84","kind":"functionapp","inboundIpAddress":"104.42.128.171","possibleInboundIpAddresses":"104.42.128.171","outboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164","possibleOutboundIpAddresses":"104.42.128.171,104.42.131.62,104.42.134.143,104.42.130.245,104.42.133.164,104.42.129.68,104.42.130.49","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:08:25.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"80F4AD36435109D0053CDB9BEB126291A608F7288F946EF3E7094A5294A263DA","kind":"functionapp","inboundIpAddress":"104.42.152.64","possibleInboundIpAddresses":"104.42.152.64","outboundIpAddresses":"104.42.152.64,40.118.228.30,40.118.235.170,40.118.239.187,40.118.232.194","possibleOutboundIpAddresses":"104.42.152.64,40.118.228.30,40.118.235.170,40.118.239.187,40.118.232.194,40.118.232.202,40.118.239.1,40.112.131.175","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:24.42","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"9593B3453998AAE7800FBAA59301B02221872B23E873A20B88AC5DBD65FF281B","kind":"functionapp","inboundIpAddress":"40.112.243.8","possibleInboundIpAddresses":"40.112.243.8","outboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145","possibleOutboundIpAddresses":"40.112.243.8,52.160.87.144,52.160.81.29,40.83.173.84,52.160.87.145,52.160.69.205,40.118.207.199,52.160.67.221,52.160.67.220,52.160.67.45","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowsruntime000003","state":"Running","hostNames":["functionappwindowsruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-097.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowsruntime000003","repositorySiteName":"functionappwindowsruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowsruntime000003.azurewebsites.net","functionappwindowsruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowsruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowsruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:30.2633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowsruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F5724B2B365C742932D489D563DC7C84C7CA8FB97622128AE9439A46A564995F","kind":"functionapp","inboundIpAddress":"13.91.242.166","possibleInboundIpAddresses":"13.91.242.166","outboundIpAddresses":"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85","possibleOutboundIpAddresses":"13.91.242.166,13.91.241.161,13.91.244.239,13.91.244.226,13.91.101.85,13.91.242.52,13.91.243.117,13.91.241.117","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-097","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowsruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3801' + - '3802' content-type: - application/json date: - - Fri, 27 Dec 2019 13:59:59 GMT + - Sun, 05 Jan 2020 09:35:04 GMT etag: - - '"1D5BCBDD7FBAB55"' -======= - - '3807' -======= - - '3820' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:36:00 GMT - etag: -<<<<<<< HEAD - - '"1D59A12ABC2F32B"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82F52CB820"' ->>>>>>> live test + - '"1D5C3AB54FF3655"' expires: - '-1' pragma: @@ -407,7 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '499' x-powered-by: - ASP.NET status: @@ -433,30 +319,14 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionappwindowsruntime000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300b6f3-0000-0700-0000-5e060e660000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"4de72ad9-28ce-43c5-8757-a520e1c8d555","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"71d09d14-6cde-4aab-9e5c-a897b790be88","ConnectionString":"InstrumentationKey=71d09d14-6cde-4aab-9e5c-a897b790be88","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-27T14:00:06.7790797+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0067d2-0000-0700-0000-5dcbe44f0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"3514b387-6f5f-4322-9b63-9213968e8102","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c97231b0-fe86-4743-96ce-9ffecd462cdd","ConnectionString":"InstrumentationKey=c97231b0-fe86-4743-96ce-9ffecd462cdd","Name":"functionappwindowsruntime000003","CreationDate":"2019-11-13T11:09:03.6748503+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000c358-0000-0700-0000-5e0ab4150000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"bb562503-3fb6-45a1-9ee5-4116906e81d7","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"63879529-288d-4182-ae02-944010e07c87","ConnectionString":"InstrumentationKey=63879529-288d-4182-ae02-944010e07c87","Name":"functionappwindowsruntime000003","CreationDate":"2019-12-31T02:36:05.6347411+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowsruntime000003","name":"functionappwindowsruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55014f2c-0000-0700-0000-5e11adce0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowsruntime000003","AppId":"025b1d10-392b-4788-8c3d-646c8dc0cc7c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"bb7c1608-070e-4eb4-a541-ee813cccc257","ConnectionString":"InstrumentationKey=bb7c1608-070e-4eb4-a541-ee813cccc257","Name":"functionappwindowsruntime000003","CreationDate":"2020-01-05T09:35:10.5161462+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -467,15 +337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:09 GMT -======= - - Wed, 13 Nov 2019 11:09:05 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:06 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:12 GMT expires: - '-1' pragma: @@ -493,15 +355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1180' ->>>>>>> Re-record test for app service -======= - - '1175' ->>>>>>> live test + - '1185' x-powered-by: - ASP.NET status: @@ -524,15 +378,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -549,15 +395,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:09 GMT -======= - - Wed, 13 Nov 2019 11:09:06 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:14 GMT expires: - '-1' pragma: @@ -575,11 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11996' -======= - - '11997' ->>>>>>> Re-record test for app service + - '11999' x-powered-by: - ASP.NET status: @@ -592,15 +426,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~8", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowsruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "71d09d14-6cde-4aab-9e5c-a897b790be88"}}''' -======= - "c97231b0-fe86-4743-96ce-9ffecd462cdd"}}''' ->>>>>>> Re-record test for app service -======= - "63879529-288d-4182-ae02-944010e07c87"}}''' ->>>>>>> live test + "bb7c1608-070e-4eb4-a541-ee813cccc257"}}''' headers: Accept: - application/json @@ -618,15 +444,7 @@ interactions: - -g -n -c -s --os-type --runtime --runtime-version User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -634,15 +452,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"71d09d14-6cde-4aab-9e5c-a897b790be88"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c97231b0-fe86-4743-96ce-9ffecd462cdd"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"63879529-288d-4182-ae02-944010e07c87"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"bb7c1608-070e-4eb4-a541-ee813cccc257"}}' headers: cache-control: - no-cache @@ -651,21 +461,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:11 GMT + - Sun, 05 Jan 2020 09:35:16 GMT etag: - - '"1D5BCBDF430A30B"' -======= - - Wed, 13 Nov 2019 11:09:08 GMT - etag: - - '"1D59A12C4B54300"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:11 GMT - etag: - - '"1D5BF830F5034F5"' ->>>>>>> live test + - '"1D5C3AB6F46CFF5"' expires: - '-1' pragma: @@ -683,15 +481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1188' -======= - - '1179' ->>>>>>> Re-record test for app service -======= - - '1178' ->>>>>>> live test + - '1191' x-powered-by: - ASP.NET status: @@ -714,15 +504,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -730,15 +512,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowsruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"71d09d14-6cde-4aab-9e5c-a897b790be88"}}' -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c97231b0-fe86-4743-96ce-9ffecd462cdd"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"63879529-288d-4182-ae02-944010e07c87"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~8","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowsruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"bb7c1608-070e-4eb4-a541-ee813cccc257"}}' headers: cache-control: - no-cache @@ -747,15 +521,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:13 GMT -======= - - Wed, 13 Nov 2019 11:09:10 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:17 GMT expires: - '-1' pragma: @@ -773,15 +539,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - '11997' -======= - - '11993' ->>>>>>> Re-record test for app service -======= - - '11991' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -802,15 +560,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -827,15 +577,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:14 GMT -======= - - Wed, 13 Nov 2019 11:09:10 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:13 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:18 GMT expires: - '-1' pragma: @@ -874,15 +616,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -896,21 +630,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:20 GMT - etag: - - '"1D5BCBDF430A30B"' -======= - - Wed, 13 Nov 2019 11:09:15 GMT - etag: - - '"1D59A12C4B54300"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:20 GMT + - Sun, 05 Jan 2020 09:35:24 GMT etag: - - '"1D5BF830F5034F5"' ->>>>>>> live test + - '"1D5C3AB6F46CFF5"' expires: - '-1' pragma: @@ -924,15 +646,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14997' -======= - - '14993' ->>>>>>> Re-record test for app service -======= - - '14997' ->>>>>>> live test + - '14992' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml index 6c7c1839750..7674279e61f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_windows_without_runtime.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '12604' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:00:01 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:05:20 GMT ->>>>>>> Re-record test for app service -======= - '12604' content-type: - application/json date: - - Tue, 31 Dec 2019 02:35:02 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:57 GMT expires: - '-1' pragma: @@ -174,54 +142,23 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:40.0191246Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:40.0191246Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:39.9409978Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-04-01 - response: - body: -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:00.6511904Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:00.6511904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:00.5887008Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:41.3831558Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:41.3831558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:41.3363054Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:37.0602518Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:37.0602518Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:35:36.9977494Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:00:01 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:05:21 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:04 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:58 GMT expires: - '-1' pragma: @@ -256,15 +193,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -280,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:02 GMT -======= - - Wed, 13 Nov 2019 11:05:21 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:04 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:59 GMT expires: - '-1' pragma: @@ -304,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1194' -======= - - '1191' ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1196' status: code: 200 message: OK @@ -343,62 +256,25 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:12.6766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AC4E499090EECF8D5DAE5AD4BB0A43E3AF39CF40A9AEF11BF29583E4CED65C62","kind":"functionapp","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionappwindowswithoutruntime000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:05:27.747","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7C8420B0028AB5A1317D3DE03F6511893744346704E7554845F6AC727440E535","kind":"functionapp","inboundIpAddress":"104.40.63.98","possibleInboundIpAddresses":"104.40.63.98","outboundIpAddresses":"104.40.57.101,104.40.82.23,104.40.81.188,104.40.85.254","possibleOutboundIpAddresses":"104.40.57.101,104.40.82.23,104.40.81.188,104.40.85.254","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:11.09","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"91D41F875AC8EBCA64CE1143676FB56DA64C138E71640F194510675C0779A831","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwindowswithoutruntime000003","state":"Running","hostNames":["functionappwindowswithoutruntime000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwindowswithoutruntime000003","repositorySiteName":"functionappwindowswithoutruntime000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwindowswithoutruntime000003.azurewebsites.net","functionappwindowswithoutruntime000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwindowswithoutruntime000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwindowswithoutruntime000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:06.7333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwindowswithoutruntime000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"33C4C865B80668604839A9F67C8DFF9C50A94D4997A901645562387B450C884D","kind":"functionapp","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwindowswithoutruntime000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3743' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:00:47 GMT - etag: - - '"1D5BCBDF5983C55"' -======= - - '3727' -======= - - '3724' ->>>>>>> live test + - '3733' content-type: - application/json date: - - Tue, 31 Dec 2019 02:35:46 GMT + - Sun, 05 Jan 2020 09:36:41 GMT etag: -<<<<<<< HEAD - - '"1D59A1241E54150"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82ECDA156B"' ->>>>>>> live test + - '"1D5C3AB8E711FE0"' expires: - '-1' pragma: @@ -416,15 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '498' -======= - - '497' ->>>>>>> Re-record test for app service -======= - '499' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -450,57 +318,25 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionappwindowswithoutruntime000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b300a3f8-0000-0700-0000-5e060eac0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"25d797be-8a02-48ca-bf62-9bdb46175498","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d37c4f5d-e47c-42dc-af35-8e364703c763","ConnectionString":"InstrumentationKey=d37c4f5d-e47c-42dc-af35-8e364703c763","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-12-27T14:01:16.7224741+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0075ca-0000-0700-0000-5dcbe3a00000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"e464f7d1-e03a-4503-882b-270b061aca1b","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8a4394a4-c3a5-442c-bd8a-7b56bc8f650d","ConnectionString":"InstrumentationKey=8a4394a4-c3a5-442c-bd8a-7b56bc8f650d","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-11-13T11:06:08.538862+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f0002059-0000-0700-0000-5e0ab41b0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"981f438d-6bfb-4796-afd7-277b5ccefe89","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"45308132-f81a-48c0-ba1a-08d9544c9af0","ConnectionString":"InstrumentationKey=45308132-f81a-48c0-ba1a-08d9544c9af0","Name":"functionappwindowswithoutruntime000003","CreationDate":"2019-12-31T02:36:11.4050002+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwindowswithoutruntime000003","name":"functionappwindowswithoutruntime000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55012131-0000-0700-0000-5e11ae2f0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwindowswithoutruntime000003","AppId":"76906328-cdc3-4bf4-8736-31e68cf27c41","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"2a807346-5a5f-4618-b30e-2e71ca9aece2","ConnectionString":"InstrumentationKey=2a807346-5a5f-4618-b30e-2e71ca9aece2","Name":"functionappwindowswithoutruntime000003","CreationDate":"2020-01-05T09:36:47.8681872+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '956' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 27 Dec 2019 14:01:40 GMT -======= - - '955' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:06:11 GMT ->>>>>>> Re-record test for app service -======= - '956' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:36:13 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:49 GMT expires: - '-1' pragma: @@ -518,15 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1190' -======= - - '1187' ->>>>>>> Re-record test for app service -======= - - '1176' ->>>>>>> live test + - '1193' x-powered-by: - ASP.NET status: @@ -549,27 +377,11 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings/list?api-version=2018-11-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings/list?api-version=2018-02-01 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/functionappwindowswithoutruntime000003/config/appsettings/list?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West @@ -582,15 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:41 GMT -======= - - Wed, 13 Nov 2019 11:06:13 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:15 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:50 GMT expires: - '-1' pragma: @@ -608,15 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11997' -======= - '11998' ->>>>>>> Re-record test for app service -======= - - '11997' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -629,15 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwindowswithoutruntime000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "d37c4f5d-e47c-42dc-af35-8e364703c763"}}''' -======= - "8a4394a4-c3a5-442c-bd8a-7b56bc8f650d"}}''' ->>>>>>> Re-record test for app service -======= - "45308132-f81a-48c0-ba1a-08d9544c9af0"}}''' ->>>>>>> live test + "2a807346-5a5f-4618-b30e-2e71ca9aece2"}}''' headers: Accept: - application/json @@ -655,22 +443,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"d37c4f5d-e47c-42dc-af35-8e364703c763"}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -678,12 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwindowswithoutruntime000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8a4394a4-c3a5-442c-bd8a-7b56bc8f650d"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"45308132-f81a-48c0-ba1a-08d9544c9af0"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwindowswithoutruntime000003","APPINSIGHTS_INSTRUMENTATIONKEY":"2a807346-5a5f-4618-b30e-2e71ca9aece2"}}' headers: cache-control: - no-cache @@ -692,21 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:43 GMT - etag: - - '"1D5BCBE2AAB2B8B"' -======= - - Wed, 13 Nov 2019 11:06:15 GMT + - Sun, 05 Jan 2020 09:36:54 GMT etag: - - '"1D59A125DB8AB10"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:17 GMT - etag: - - '"1D5BF831399D28B"' ->>>>>>> live test + - '"1D5C3ABA9BF2D00"' expires: - '-1' pragma: @@ -724,15 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1186' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - - '1177' ->>>>>>> live test + - '1188' x-powered-by: - ASP.NET status: @@ -755,15 +503,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -777,21 +517,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:49 GMT - etag: - - '"1D5BCBE2AAB2B8B"' -======= - - Wed, 13 Nov 2019 11:06:20 GMT - etag: - - '"1D59A125DB8AB10"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:22 GMT + - Sun, 05 Jan 2020 09:37:01 GMT etag: - - '"1D5BF831399D28B"' ->>>>>>> live test + - '"1D5C3ABA9BF2D00"' expires: - '-1' pragma: @@ -805,15 +533,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - - '14996' -======= - - '14998' ->>>>>>> Re-record test for app service -======= - - '14997' ->>>>>>> live test + - '14994' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml index bde7f9d6e89..5a88dcf5996 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_app_insights_key.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '12604' content-type: - application/json date: - - Fri, 27 Dec 2019 14:00:54 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:06:05 GMT ->>>>>>> Re-record test for app service -======= - - '12604' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:35:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:44 GMT expires: - '-1' pragma: @@ -174,51 +142,23 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:34.5687079Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:00:34.5687079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:00:34.5218148Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:44.6745134Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:05:44.6745134Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:05:44.6119990Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:09.2740371Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:09.2740371Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:09.2271427Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:34:22.5359304Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:34:22.5359304Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:34:22.4734256Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:00:55 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:06:05 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:45 GMT expires: - '-1' pragma: @@ -253,15 +193,7 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -277,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:56 GMT -======= - - Wed, 13 Nov 2019 11:06:06 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:32 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:45 GMT expires: - '-1' pragma: @@ -301,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1190' ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1198' status: code: 200 message: OK @@ -341,59 +257,25 @@ interactions: - -g -n -c -s --os-type --app-insights-key User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionappwithappinsights000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-033.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:17.557","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"31161615EE631F28ED8FEC49BF56BAB247AC57501091E9F64655937803DF8079","kind":"functionapp","inboundIpAddress":"40.112.142.148","possibleInboundIpAddresses":"40.112.142.148","outboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","possibleOutboundIpAddresses":"40.112.137.127,40.112.139.85,40.112.142.204,40.112.139.188","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-033","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:13.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"87E29F0ACF8FDF657C68A551AD807EDB9633C0E8D7B436B508DFF4774D563706","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:43.597","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DCA0114099C9445D389060499460AA83ED82F724D92BA331B995DBBB0D9E3DF6","kind":"functionapp","inboundIpAddress":"40.78.25.157","possibleInboundIpAddresses":"40.78.25.157","outboundIpAddresses":"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141","possibleOutboundIpAddresses":"40.78.31.236,40.78.24.159,40.78.31.161,40.78.26.141","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-037","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:58.3066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F92C00D9C1D769B53E71923C0374F7DFBA3B5494AC8B0B6A2BC0AAC31FBB88DB","kind":"functionapp","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3739' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:01:54 GMT - etag: - - '"1D5BCBE1C48AA30"' -======= - - '3729' -======= - - '3721' ->>>>>>> live test + - '3781' content-type: - application/json date: - - Tue, 31 Dec 2019 02:36:16 GMT + - Sun, 05 Jan 2020 09:35:34 GMT etag: -<<<<<<< HEAD - - '"1D59A125D429DB5"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8300532E50"' ->>>>>>> live test + - '"1D5C3AB65B4C26B"' expires: - '-1' pragma: @@ -411,15 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '497' -======= - - '496' ->>>>>>> Re-record test for app service -======= - - '498' ->>>>>>> live test + - '499' x-powered-by: - ASP.NET status: @@ -442,15 +316,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -467,15 +333,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:55 GMT -======= - - Wed, 13 Nov 2019 11:06:49 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:18 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:34 GMT expires: - '-1' pragma: @@ -493,15 +351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11995' -======= - '11998' ->>>>>>> Re-record test for app service -======= - - '11994' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -522,15 +372,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -547,15 +389,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:56 GMT -======= - - Wed, 13 Nov 2019 11:06:50 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:19 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:36 GMT expires: - '-1' pragma: @@ -594,15 +428,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -616,21 +442,9 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:01 GMT - etag: - - '"1D5BCBE1C48AA30"' -======= - - Wed, 13 Nov 2019 11:06:55 GMT - etag: - - '"1D59A125D429DB5"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:25 GMT + - Sun, 05 Jan 2020 09:35:42 GMT etag: - - '"1D5BF8300532E50"' ->>>>>>> live test + - '"1D5C3AB65B4C26B"' expires: - '-1' pragma: @@ -644,15 +458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD -<<<<<<< HEAD - '14998' -======= - - '14995' ->>>>>>> Re-record test for app service -======= - - '14994' ->>>>>>> live test x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml index d119ee12e4c..712398820fe 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_default_app_insights.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '12604' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:02:32 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:06:36 GMT ->>>>>>> Re-record test for app service -======= - '12604' content-type: - application/json date: - - Tue, 31 Dec 2019 02:35:19 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:32 GMT expires: - '-1' pragma: @@ -174,51 +142,23 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:12.2107211Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:02:12.2107211Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:02:12.1482214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:16.2756058Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:16.2756058Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:16.2130945Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:58.3520506Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:34:58.3520506Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:34:58.2895487Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:34:12.2534922Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:34:12.2534922Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:34:12.1909945Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:02:33 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:06:37 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:20 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:33 GMT expires: - '-1' pragma: @@ -253,15 +193,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -277,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:02:34 GMT -======= - - Wed, 13 Nov 2019 11:06:37 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:21 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:34 GMT expires: - '-1' pragma: @@ -301,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1196' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1192' ->>>>>>> live test + - '1197' status: code: 200 message: OK @@ -340,59 +256,25 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionappwithappinsights000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-011.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:02:44.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"3E59A23A232C6FEB861D7F3E2F12FA890FF1230DDD57DD747AED42969686E6DF","kind":"functionapp","inboundIpAddress":"191.236.80.12","possibleInboundIpAddresses":"191.236.80.12","outboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","possibleOutboundIpAddresses":"191.236.84.50,191.236.84.239,191.236.85.43,191.236.84.216,40.118.233.108,40.118.236.104,40.118.232.85,40.118.233.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-011","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-111.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:06:45.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8E23F4A7F839A88ACE875CB6F66F6AC7B01BC6BE998EC757D1822F6909ADF3BE","kind":"functionapp","inboundIpAddress":"104.42.148.55","possibleInboundIpAddresses":"104.42.148.55","outboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103","possibleOutboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103,40.112.173.196,40.112.176.145,40.83.179.99","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-111","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:29.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8EC9965C3C375F8C1FE922D19125C5F709A652DB9D404934348589B656FDFA52","kind":"functionapp","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-017.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:34:46.217","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"4DAA3DB52B6A8550154A4D70774C801FF41203EEB66B2FD88A19BF3E1D3B55D3","kind":"functionapp","inboundIpAddress":"23.101.203.214","possibleInboundIpAddresses":"23.101.203.214","outboundIpAddresses":"23.101.206.54,23.101.194.183,23.101.206.60,23.101.205.197","possibleOutboundIpAddresses":"23.101.206.54,23.101.194.183,23.101.206.60,23.101.205.197","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-017","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3852' + - '3737' content-type: - application/json date: - - Fri, 27 Dec 2019 14:03:17 GMT + - Sun, 05 Jan 2020 09:35:20 GMT etag: - - '"1D5BCBE4FCF6E20"' -======= - - '3801' -======= - - '3736' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:36:02 GMT - etag: -<<<<<<< HEAD - - '"1D59A1270429C00"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82F7B6BE60"' ->>>>>>> live test + - '"1D5C3AB5E7D6DC0"' expires: - '-1' pragma: @@ -410,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '499' x-powered-by: - ASP.NET status: @@ -436,57 +318,25 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionappwithappinsights000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"b4005703-0000-0700-0000-5e060f2c0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"ac480024-2213-4ea5-8b8f-42634ba14ee7","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0e3ee542-d029-4b39-a68c-88a7cc617b36","ConnectionString":"InstrumentationKey=0e3ee542-d029-4b39-a68c-88a7cc617b36","Name":"functionappwithappinsights000003","CreationDate":"2019-12-27T14:03:24.4938661+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"fc0003ce-0000-0700-0000-5dcbe3eb0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"61fd5ffd-3fe4-4719-90b0-6a254307e974","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b7fd7b31-2047-4da1-bd9a-883124c84fea","ConnectionString":"InstrumentationKey=b7fd7b31-2047-4da1-bd9a-883124c84fea","Name":"functionappwithappinsights000003","CreationDate":"2019-11-13T11:07:23.452952+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"f000dd58-0000-0700-0000-5e0ab4170000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"0472b0e0-f668-48bd-8c04-fcabc6cc1711","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"0c3f12a1-1394-4c6a-99ba-f94914f7ba58","ConnectionString":"InstrumentationKey=0c3f12a1-1394-4c6a-99ba-f94914f7ba58","Name":"functionappwithappinsights000003","CreationDate":"2019-12-31T02:36:07.2719544+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"5501132d-0000-0700-0000-5e11addd0000\"","properties":{"Ver":"v2","ApplicationId":"functionappwithappinsights000003","AppId":"297fd256-96e1-4454-af53-465d8c4467de","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"30efb2ec-e503-4c78-961a-7d64af4af954","ConnectionString":"InstrumentationKey=30efb2ec-e503-4c78-961a-7d64af4af954","Name":"functionappwithappinsights000003","CreationDate":"2020-01-05T09:35:25.9218743+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '956' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:03:26 GMT -======= - - '955' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:07:28 GMT ->>>>>>> Re-record test for app service -======= - - '956' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Dec 2019 02:36:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:28 GMT expires: - '-1' pragma: @@ -504,7 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1175' + - '1190' x-powered-by: - ASP.NET status: @@ -527,15 +377,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -552,15 +394,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:27 GMT -======= - - Wed, 13 Nov 2019 11:07:29 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:29 GMT expires: - '-1' pragma: @@ -578,15 +412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11995' -======= - '11997' ->>>>>>> Re-record test for app service -======= - - '11996' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -599,15 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappwithappinsights000003", "APPINSIGHTS_INSTRUMENTATIONKEY": -<<<<<<< HEAD -<<<<<<< HEAD - "0e3ee542-d029-4b39-a68c-88a7cc617b36"}}''' -======= - "b7fd7b31-2047-4da1-bd9a-883124c84fea"}}''' ->>>>>>> Re-record test for app service -======= - "0c3f12a1-1394-4c6a-99ba-f94914f7ba58"}}''' ->>>>>>> live test + "30efb2ec-e503-4c78-961a-7d64af4af954"}}''' headers: Accept: - application/json @@ -625,15 +443,7 @@ interactions: - -g -n -c -s --os-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -641,15 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0e3ee542-d029-4b39-a68c-88a7cc617b36"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b7fd7b31-2047-4da1-bd9a-883124c84fea"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0c3f12a1-1394-4c6a-99ba-f94914f7ba58"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"30efb2ec-e503-4c78-961a-7d64af4af954"}}' headers: cache-control: - no-cache @@ -658,21 +460,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:30 GMT - etag: - - '"1D5BCBE6AB3BCF0"' -======= - - Wed, 13 Nov 2019 11:07:32 GMT + - Sun, 05 Jan 2020 09:35:33 GMT etag: - - '"1D59A128B6B05B5"' ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:11 GMT - etag: - - '"1D5BF830FDE1D15"' ->>>>>>> live test + - '"1D5C3AB78E27A70"' expires: - '-1' pragma: @@ -690,15 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1187' -======= - - '1185' ->>>>>>> Re-record test for app service -======= - - '1174' ->>>>>>> live test + - '1194' x-powered-by: - ASP.NET status: @@ -721,15 +503,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -737,15 +511,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0e3ee542-d029-4b39-a68c-88a7cc617b36"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b7fd7b31-2047-4da1-bd9a-883124c84fea"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"0c3f12a1-1394-4c6a-99ba-f94914f7ba58"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappwithappinsights000003","APPINSIGHTS_INSTRUMENTATIONKEY":"30efb2ec-e503-4c78-961a-7d64af4af954"}}' headers: cache-control: - no-cache @@ -754,15 +520,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:31 GMT -======= - - Wed, 13 Nov 2019 11:07:34 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:34 GMT expires: - '-1' pragma: @@ -780,15 +538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11994' -======= - - '11997' ->>>>>>> Re-record test for app service -======= - - '11996' ->>>>>>> live test + - '11998' x-powered-by: - ASP.NET status: @@ -809,15 +559,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -834,15 +576,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:03:33 GMT -======= - - Wed, 13 Nov 2019 11:07:35 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:14 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:35 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml index 2220779aa0a..8315c615cf6 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_with_no_default_app_insights.yaml @@ -14,15 +14,7 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -41,15 +33,7 @@ interactions: Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West -<<<<<<< HEAD -<<<<<<< HEAD US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> Re-record test for app service -======= - US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East ->>>>>>> live test US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan @@ -117,27 +101,11 @@ interactions: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '12604' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:04:09 GMT -======= - - '12591' - content-type: - - application/json - date: - - Wed, 13 Nov 2019 11:06:51 GMT ->>>>>>> Re-record test for app service -======= - '12604' content-type: - application/json date: - - Tue, 31 Dec 2019 02:36:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:07 GMT expires: - '-1' pragma: @@ -174,51 +142,23 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:47.6882816Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T14:03:47.6882816Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T14:03:47.6258050Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:32.0256761Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-13T11:06:32.0256761Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-13T11:06:31.9788001Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:51.0455750Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:35:51.0455750Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:35:50.9830984Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:45.5766805Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:35:45.5766805Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:35:45.5298236Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '1200' content-type: - application/json date: - - Fri, 27 Dec 2019 14:04:10 GMT -======= - - '1168' - content-type: - - application/json - date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:06:52 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:13 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:07 GMT expires: - '-1' pragma: @@ -253,15 +193,7 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -277,15 +209,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:10 GMT -======= - - Wed, 13 Nov 2019 11:06:53 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:36:14 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:07 GMT expires: - '-1' pragma: @@ -301,15 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1190' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - - '1193' ->>>>>>> live test + - '1197' status: code: 200 message: OK @@ -340,59 +256,25 @@ interactions: - -g -n -c -s --os-type --disable-app-insights User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/sites/functionappwithappinsights000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:04:26.3866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"91C897AE5EF101FEC95BD9DA8580CD1591453F60E88A50A6B010BB2B28733F40","kind":"functionapp","inboundIpAddress":"52.165.155.12","possibleInboundIpAddresses":"52.165.155.12","outboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","possibleOutboundIpAddresses":"52.165.155.12,52.165.154.209,13.89.236.153,52.165.153.2,52.165.158.102","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-151.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:07:04.2033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C782659BB3DD08B92BDE84B49CD4B825A6BE78FE8902D08DC64100DC932059D3","kind":"functionapp","inboundIpAddress":"13.89.172.2","possibleInboundIpAddresses":"13.89.172.2","outboundIpAddresses":"13.89.172.2,23.99.133.160,23.101.117.42,23.101.112.78,23.99.229.34","possibleOutboundIpAddresses":"13.89.172.2,23.99.133.160,23.101.117.42,23.101.112.78,23.99.229.34,168.61.189.180,168.61.214.234,23.99.231.53","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-151","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:36:26.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7913F490540E1582360839DD19EBE3D8BAF770459732B54EA4FF52EF0B68F896","kind":"functionapp","inboundIpAddress":"13.89.172.0","possibleInboundIpAddresses":"13.89.172.0","outboundIpAddresses":"13.89.172.0,40.77.26.73,52.165.17.161,52.165.17.221,52.165.177.82","possibleOutboundIpAddresses":"13.89.172.0,40.77.26.73,52.165.17.161,52.165.17.221,52.165.177.82,40.77.27.24,40.77.26.223,52.173.39.6","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappwithappinsights000003","name":"functionappwithappinsights000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"centralus","properties":{"name":"functionappwithappinsights000003","state":"Running","hostNames":["functionappwithappinsights000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-021.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappwithappinsights000003","repositorySiteName":"functionappwithappinsights000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappwithappinsights000003.azurewebsites.net","functionappwithappinsights000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappwithappinsights000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappwithappinsights000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/CentralUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:17.6366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappwithappinsights000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7D7BEA43FA85E46380A994943CA1387491E6065067E26CE4663AC3D7E182394","kind":"functionapp","inboundIpAddress":"52.176.6.37","possibleInboundIpAddresses":"52.176.6.37","outboundIpAddresses":"52.176.6.37,52.165.224.62,52.176.2.238,52.176.0.109,52.165.226.171","possibleOutboundIpAddresses":"52.176.6.37,52.165.224.62,52.176.2.238,52.176.0.109,52.165.226.171,52.165.227.138,52.173.251.170","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-021","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappwithappinsights000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3777' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:04:56 GMT - etag: - - '"1D5BCBE8CDE066B"' -======= - - '3808' -======= - '3795' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:37:00 GMT + - Sun, 05 Jan 2020 09:36:51 GMT etag: -<<<<<<< HEAD - - '"1D59A127B7A5040"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8319EE4E4B"' ->>>>>>> live test + - '"1D5C3AB94F3E495"' expires: - '-1' pragma: @@ -410,15 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '497' -======= - - '498' ->>>>>>> Re-record test for app service -======= - '497' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -441,15 +315,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -466,15 +332,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:57 GMT -======= - - Wed, 13 Nov 2019 11:07:37 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:02 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:53 GMT expires: - '-1' pragma: @@ -492,15 +350,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11998' -======= - - '11990' ->>>>>>> Re-record test for app service -======= - '11995' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -521,15 +371,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -546,15 +388,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:04:59 GMT -======= - - Wed, 13 Nov 2019 11:07:38 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:03 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml index 02954e8b4ab..0a38ef4e491 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_move_plan_to_elastic.yaml @@ -14,30 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:43Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:33:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -46,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:45 GMT -======= - - Thu, 14 Nov 2019 01:41:29 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:17 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:17 GMT expires: - '-1' pragma: @@ -88,15 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -104,18 +72,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' -======= - US","properties":{"serverFarmId":27332,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27332","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":18681,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18681","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32878,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32878","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' headers: cache-control: - no-cache @@ -124,15 +82,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:56 GMT -======= - - Thu, 14 Nov 2019 01:41:39 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:30 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:31 GMT expires: - '-1' pragma: @@ -150,15 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1188' -======= - - '1194' ->>>>>>> Re-record test for app service -======= - - '1189' ->>>>>>> live test + - '1190' x-powered-by: - ASP.NET status: @@ -179,30 +121,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:43Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:33:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -211,15 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 13:59:57 GMT -======= - - Thu, 14 Nov 2019 01:41:40 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:31 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:32 GMT expires: - '-1' pragma: @@ -253,15 +171,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -269,18 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' -======= - US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":18682,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18682","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32879,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32879","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' headers: cache-control: - no-cache @@ -289,15 +189,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:03 GMT -======= - - Thu, 14 Nov 2019 01:41:47 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:38 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:45 GMT expires: - '-1' pragma: @@ -315,15 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1187' -======= - - '1189' ->>>>>>> Re-record test for app service -======= - - '1188' ->>>>>>> live test + - '1196' x-powered-by: - ASP.NET status: @@ -344,30 +228,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T13:59:15Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:41:00Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:32:43Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:33:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -376,15 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:05 GMT -======= - - Thu, 14 Nov 2019 01:41:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:46 GMT expires: - '-1' pragma: @@ -418,15 +278,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -434,18 +286,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006","name":"ab1planname000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":29949,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29949","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":27334,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27334","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":18683,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18683","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32880,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32880","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -454,15 +296,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:15 GMT -======= - - Thu, 14 Nov 2019 01:41:57 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:50 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:34:59 GMT expires: - '-1' pragma: @@ -480,15 +314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1190' -======= - - '1197' ->>>>>>> Re-record test for app service -======= - - '1191' ->>>>>>> live test + - '1186' x-powered-by: - ASP.NET status: @@ -509,15 +335,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -525,18 +343,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' -======= - US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":18682,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18682","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32879,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32879","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' headers: cache-control: - no-cache @@ -545,15 +353,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:17 GMT -======= - - Thu, 14 Nov 2019 01:41:59 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:52 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:01 GMT expires: - '-1' pragma: @@ -590,30 +390,14 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:25.8675463Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-27T13:59:25.8675463Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-27T13:59:25.7894141Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:08.5394426Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-14T01:41:08.5394426Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-14T01:41:08.4613740Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> Re-record test for app service -======= - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:55.2809934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T02:32:55.2809934Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T02:32:55.2341050Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' ->>>>>>> live test + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:56.5972116Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:33:56.5972116Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:33:56.5190869Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -622,15 +406,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:18 GMT -======= - - Thu, 14 Nov 2019 01:42:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:52 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:01 GMT expires: - '-1' pragma: @@ -665,15 +441,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -689,15 +457,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:00:19 GMT -======= - - Thu, 14 Nov 2019 01:42:01 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:33:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:02 GMT expires: - '-1' pragma: @@ -723,21 +483,10 @@ interactions: {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~2"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "AzureWebJobsDashboard", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, -<<<<<<< HEAD -<<<<<<< HEAD -======= ->>>>>>> live test {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}, {"name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}, {"name": "WEBSITE_CONTENTSHARE", "value": "functionappelastic000003"}], "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' -<<<<<<< HEAD -======= - {"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "~10"}], "alwaysOn": true, - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' ->>>>>>> Re-record test for app service -======= ->>>>>>> live test headers: Accept: - application/json @@ -748,30 +497,14 @@ interactions: Connection: - keep-alive Content-Length: -<<<<<<< HEAD -<<<<<<< HEAD - '1282' -======= - - '947' ->>>>>>> Re-record test for app service -======= - - '1282' ->>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -779,44 +512,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:00:28.4066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:42:05.7433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FBA6A0D1534E32FCB009ED629DD25AFEFB89630EA905ABC816672D588E0D7581","kind":"functionapp","inboundIpAddress":"104.43.246.71","possibleInboundIpAddresses":"104.43.246.71","outboundIpAddresses":"52.173.29.78,52.173.26.186,52.173.26.166","possibleOutboundIpAddresses":"104.43.246.71,52.173.24.19,52.173.26.122,52.173.26.85,13.89.219.71,52.173.29.78,52.173.26.186,52.173.26.166","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:03.48","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:35:09.3933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"02D9F08F78E39147390DE8A9502A8F03F8DBEEA0FE14B073FB249AE91AAE4DFF","kind":"functionapp","inboundIpAddress":"52.173.139.125","possibleInboundIpAddresses":"52.173.139.125","outboundIpAddresses":"13.89.245.174,13.89.245.252,13.89.243.121","possibleOutboundIpAddresses":"52.173.139.125,52.176.95.223,52.165.172.142,52.165.168.238,13.89.242.20,13.89.245.174,13.89.245.252,13.89.243.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3829' + - '3828' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:04 GMT + - Sun, 05 Jan 2020 09:35:43 GMT etag: - - '"1D5BCBDFEE8AD00"' -======= - - '3819' -======= - - '3810' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:34:38 GMT - etag: -<<<<<<< HEAD - - '"1D59A8CB8D30375"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82C464ED20"' ->>>>>>> live test + - '"1D5C3AB6C6240A0"' expires: - '-1' pragma: @@ -834,11 +541,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - '498' -======= - - '497' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET status: @@ -864,30 +567,14 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-applicationinsights/0.1.1 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.insights/components/functionappelastic000003?api-version=2015-05-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"af01bf73-0000-0300-0000-5e060ead0000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"15cbbc53-eeb7-473f-82a3-daadfe21f52c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"5698bd2a-9c0f-4266-8ab6-4567258f3b95","ConnectionString":"InstrumentationKey=5698bd2a-9c0f-4266-8ab6-4567258f3b95","Name":"functionappelastic000003","CreationDate":"2019-12-27T14:01:17.3350763+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"8d008bd5-0000-0300-0000-5dccb1040000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"e3d0ee80-0c87-4b49-809b-69120b643fb4","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cbf5f06c-cd4f-4221-9554-52034c6523d9","ConnectionString":"InstrumentationKey=cbf5f06c-cd4f-4221-9554-52034c6523d9","Name":"functionappelastic000003","CreationDate":"2019-11-14T01:42:27.8097125+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"2e02aead-0000-0300-0000-5e0ab3c50000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"376e8557-bbf8-44ab-b140-93df6b8059c5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"4fcd757e-b7cf-490b-8b1e-185e5758399e","ConnectionString":"InstrumentationKey=4fcd757e-b7cf-490b-8b1e-185e5758399e","Name":"functionappelastic000003","CreationDate":"2019-12-31T02:34:45.5921926+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappelastic000003","name":"functionappelastic000003","type":"microsoft.insights/components","location":"centralus","tags":{},"kind":"web","etag":"\"f2029488-0000-0300-0000-5e11adf70000\"","properties":{"Ver":"v2","ApplicationId":"functionappelastic000003","AppId":"8a646604-d887-4489-843b-aa37444c9b98","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"67017466-d9b1-4008-98a8-6f23e03578b8","ConnectionString":"InstrumentationKey=67017466-d9b1-4008-98a8-6f23e03578b8","Name":"functionappelastic000003","CreationDate":"2020-01-05T09:35:51.0339739+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -898,15 +585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:18 GMT -======= - - Thu, 14 Nov 2019 01:43:05 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:51 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:54 GMT expires: - '-1' pragma: @@ -924,15 +603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1190' -======= - - '1195' ->>>>>>> Re-record test for app service -======= - - '1184' ->>>>>>> live test + - '1188' x-powered-by: - ASP.NET status: @@ -955,15 +626,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -971,40 +634,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10"}}' ->>>>>>> Re-record test for app service -======= US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003"}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '1170' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:20 GMT -======= - - '859' - content-type: - - application/json - date: - - Thu, 14 Nov 2019 01:43:07 GMT ->>>>>>> Re-record test for app service -======= - - '1170' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:34:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:55 GMT expires: - '-1' pragma: @@ -1022,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -1032,21 +671,10 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", -<<<<<<< HEAD -<<<<<<< HEAD - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": - "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_CONTENTSHARE": "functionappelastic000003", "APPINSIGHTS_INSTRUMENTATIONKEY": - "5698bd2a-9c0f-4266-8ab6-4567258f3b95"}}''' -======= - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "cbf5f06c-cd4f-4221-9554-52034c6523d9"}}''' ->>>>>>> Re-record test for app service -======= "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "functionappelastic000003", "APPINSIGHTS_INSTRUMENTATIONKEY": - "4fcd757e-b7cf-490b-8b1e-185e5758399e"}}''' ->>>>>>> live test + "67017466-d9b1-4008-98a8-6f23e03578b8"}}''' headers: Accept: - application/json @@ -1057,30 +685,14 @@ interactions: Connection: - keep-alive Content-Length: -<<<<<<< HEAD -<<<<<<< HEAD - '960' -======= - - '645' ->>>>>>> Re-record test for app service -======= - - '960' ->>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1088,44 +700,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003","APPINSIGHTS_INSTRUMENTATIONKEY":"5698bd2a-9c0f-4266-8ab6-4567258f3b95"}}' -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"cbf5f06c-cd4f-4221-9554-52034c6523d9"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003","APPINSIGHTS_INSTRUMENTATIONKEY":"4fcd757e-b7cf-490b-8b1e-185e5758399e"}}' ->>>>>>> live test + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappelastic000003","APPINSIGHTS_INSTRUMENTATIONKEY":"67017466-d9b1-4008-98a8-6f23e03578b8"}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '1242' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:01:22 GMT - etag: - - '"1D5BCBE1E77B22B"' -======= - - '931' -======= - '1242' ->>>>>>> live test content-type: - application/json date: - - Tue, 31 Dec 2019 02:34:55 GMT + - Sun, 05 Jan 2020 09:35:57 GMT etag: -<<<<<<< HEAD - - '"1D59A8CDDE2EDB5"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82E2863E80"' ->>>>>>> live test + - '"1D5C3AB87ED56C0"' expires: - '-1' pragma: @@ -1143,15 +729,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1190' -======= - - '1195' ->>>>>>> Re-record test for app service -======= - '1183' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1172,15 +750,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1188,44 +758,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:21.8266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-137.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-14T01:43:08.6033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FBA6A0D1534E32FCB009ED629DD25AFEFB89630EA905ABC816672D588E0D7581","kind":"functionapp","inboundIpAddress":"104.43.246.71","possibleInboundIpAddresses":"104.43.246.71","outboundIpAddresses":"52.173.29.78,52.173.26.186,52.173.26.166","possibleOutboundIpAddresses":"104.43.246.71,52.173.24.19,52.173.26.122,52.173.26.85,13.89.219.71,52.173.29.78,52.173.26.186,52.173.26.166","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-137","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:34:54.44","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:35:56.46","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"02D9F08F78E39147390DE8A9502A8F03F8DBEEA0FE14B073FB249AE91AAE4DFF","kind":"functionapp","inboundIpAddress":"52.173.139.125","possibleInboundIpAddresses":"52.173.139.125","outboundIpAddresses":"13.89.245.174,13.89.245.252,13.89.243.121","possibleOutboundIpAddresses":"52.173.139.125,52.176.95.223,52.165.172.142,52.165.168.238,13.89.242.20,13.89.245.174,13.89.245.252,13.89.243.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3827' - content-type: - - application/json - date: - - Fri, 27 Dec 2019 14:01:23 GMT - etag: - - '"1D5BCBE1E77B22B"' -======= - - '3817' -======= - - '3808' ->>>>>>> live test + - '3821' content-type: - application/json date: - - Tue, 31 Dec 2019 02:34:56 GMT + - Sun, 05 Jan 2020 09:35:59 GMT etag: -<<<<<<< HEAD - - '"1D59A8CDDE2EDB5"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF82E2863E80"' ->>>>>>> live test + - '"1D5C3AB87ED56C0"' expires: - '-1' pragma: @@ -1262,15 +806,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1278,18 +814,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' -======= - US","properties":{"serverFarmId":27332,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27332","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":18681,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18681","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32878,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32878","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' headers: cache-control: - no-cache @@ -1298,15 +824,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:24 GMT -======= - - Thu, 14 Nov 2019 01:43:11 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:34:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:35:59 GMT expires: - '-1' pragma: @@ -1343,15 +861,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1359,14 +869,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/secondplan000005","name":"secondplan000005","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":29948,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29948","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' -======= - US","properties":{"serverFarmId":18682,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18682","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32879,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32879","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' headers: cache-control: - no-cache @@ -1375,11 +879,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:26 GMT -======= - - Tue, 31 Dec 2019 02:34:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:00 GMT expires: - '-1' pragma: @@ -1427,18 +927,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:30.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1446,29 +935,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:00.8833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:03.0866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"02D9F08F78E39147390DE8A9502A8F03F8DBEEA0FE14B073FB249AE91AAE4DFF","kind":"functionapp","inboundIpAddress":"52.173.139.125","possibleInboundIpAddresses":"52.173.139.125","outboundIpAddresses":"13.89.245.174,13.89.245.252,13.89.243.121","possibleOutboundIpAddresses":"52.173.139.125,52.176.95.223,52.165.172.142,52.165.168.238,13.89.242.20,13.89.245.174,13.89.245.252,13.89.243.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3824' + - '3828' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:32 GMT + - Sun, 05 Jan 2020 09:36:05 GMT etag: - - '"1D5BCBE1E77B22B"' -======= - - '3815' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:35:03 GMT - etag: - - '"1D5BF82E2863E80"' ->>>>>>> live test + - '"1D5C3AB87ED56C0"' expires: - '-1' pragma: @@ -1486,11 +964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - '498' -======= - - '496' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1511,18 +985,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-141.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-27T14:01:30.06","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DAA8574BD784ED87835B3E51FE4A1E533B84C3DB8049C920A95C530BB899AC1D","kind":"functionapp","inboundIpAddress":"40.122.65.162","possibleInboundIpAddresses":"40.122.65.162","outboundIpAddresses":"40.113.195.102,13.89.184.19,52.165.224.153","possibleOutboundIpAddresses":"40.122.65.162,52.165.224.141,13.89.191.154,52.165.227.187,52.165.231.176,40.113.195.102,13.89.184.19,52.165.224.153","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-141","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1530,29 +993,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappelastic000003","name":"functionappelastic000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central - US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-153.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:35:00.8833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"35EBF3AE5613C87AD2B121C96BEDE5BFD32DA044154BA9558194F2182787C884","kind":"functionapp","inboundIpAddress":"13.89.172.5","possibleInboundIpAddresses":"13.89.172.5","outboundIpAddresses":"23.99.202.210,23.99.201.153,23.99.204.35","possibleOutboundIpAddresses":"13.89.172.5,23.99.193.186,23.99.201.97,23.99.206.233,23.99.192.214,23.99.202.210,23.99.201.153,23.99.204.35","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-153","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"functionappelastic000003","state":"Running","hostNames":["functionappelastic000003.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-091.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/functionappelastic000003","repositorySiteName":"functionappelastic000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappelastic000003.azurewebsites.net","functionappelastic000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappelastic000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappelastic000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:36:03.0866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"functionappelastic000003","trafficManagerHostNames":null,"sku":"ElasticPremium","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"02D9F08F78E39147390DE8A9502A8F03F8DBEEA0FE14B073FB249AE91AAE4DFF","kind":"functionapp","inboundIpAddress":"52.173.139.125","possibleInboundIpAddresses":"52.173.139.125","outboundIpAddresses":"13.89.245.174,13.89.245.252,13.89.243.121","possibleOutboundIpAddresses":"52.173.139.125,52.176.95.223,52.165.172.142,52.165.168.238,13.89.242.20,13.89.245.174,13.89.245.252,13.89.243.121","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-091","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappelastic000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3822' + - '3826' content-type: - application/json date: - - Fri, 27 Dec 2019 14:01:35 GMT + - Sun, 05 Jan 2020 09:36:07 GMT etag: - - '"1D5BCBE236000C0"' -======= - - '3813' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:35:04 GMT - etag: - - '"1D5BF82E65D6B35"' ->>>>>>> live test + - '"1D5C3AB8BE07CEB"' expires: - '-1' pragma: @@ -1589,19 +1041,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006","name":"ab1planname000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":29949,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29949","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1609,9 +1049,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ab1planname000006","name":"ab1planname000006","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":18683,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18683","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32880,"name":"ab1planname000006","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32880","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1620,11 +1059,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:37 GMT -======= - - Tue, 31 Dec 2019 02:35:06 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:09 GMT expires: - '-1' pragma: @@ -1661,23 +1096,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004?api-version=2018-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":29947,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-141_29947","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' -======= - US","properties":{"serverFarmId":27333,"name":"secondplan000005","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-137_27333","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1685,9 +1104,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/somerandomplan000004","name":"somerandomplan000004","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"Central - US","properties":{"serverFarmId":18681,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-153_18681","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":32878,"name":"somerandomplan000004","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-091_32878","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP1","tier":"ElasticPremium","size":"EP1","family":"EP","capacity":1}}' headers: cache-control: - no-cache @@ -1696,15 +1114,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Fri, 27 Dec 2019 14:01:38 GMT -======= - - Thu, 14 Nov 2019 01:43:11 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:35:07 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 09:36:10 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index 268744289a2..6eb8d583142 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T01:56:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:28:07 GMT + - Mon, 06 Jan 2020 01:56:07 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:08 GMT + - Mon, 06 Jan 2020 01:56:09 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:28:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T01:56:00Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:28:08 GMT + - Mon, 06 Jan 2020 01:56:09 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":35421,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35421","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23202,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:18 GMT + - Mon, 06 Jan 2020 01:56:20 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":35421,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35421","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23202,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:21 GMT + - Mon, 06 Jan 2020 01:56:21 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:21 GMT + - Mon, 06 Jan 2020 01:56:21 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":35421,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35421","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":23202,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:23 GMT + - Mon, 06 Jan 2020 01:56:23 GMT expires: - '-1' pragma: @@ -386,7 +386,7 @@ interactions: "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' + false, "httpsOnly": false}}''' headers: Accept: - application/json @@ -397,14 +397,14 @@ interactions: Connection: - keep-alive Content-Length: - - '554' + - '574' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -412,18 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:28:28.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B661C7A784139371677FA2AD470D196F56D2B4BEF9495A8F9DF72EFFD38FD165","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T01:56:29.6266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7112E9DBA39F86A5A25B4A70473B4D68E397C48ADF5600EF9C7D319B3F92223D","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3731' + - '3735' content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:45 GMT + - Mon, 06 Jan 2020 01:56:47 GMT etag: - - '"1D5BF81FCD56EB0"' + - '"1D5C43483793580"' expires: - '-1' pragma: @@ -441,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -466,7 +466,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -476,19 +476,19 @@ interactions: string: @@ -500,7 +500,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:28:47 GMT + - Mon, 06 Jan 2020 01:56:47 GMT expires: - '-1' pragma: @@ -514,7 +514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11999' x-powered-by: - ASP.NET status: @@ -535,7 +535,65 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3132' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config set + Connection: + - keep-alive + ParameterSetName: + - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version + --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled + --min-tls-version --ftps-state + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -554,7 +612,2557 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:48 GMT + - Mon, 06 Jan 2020 01:56:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm", + "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", + "index.php", "hostingstart.html"], "netFrameworkVersion": "v3.5", "phpVersion": + "7.0", "pythonVersion": "3.4", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": + false, "remoteDebuggingEnabled": false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": + 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$webapp-config-test000002", + "scmType": "None", "use32BitWorkerProcess": false, "webSocketsEnabled": true, + "alwaysOn": true, "appCommandLine": "", "managedPipelineMode": "Integrated", + "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot", + "preloadEnabled": true}], "loadBalancing": "LeastRequests", "experiments": {"rampUpRules": + []}, "autoHealEnabled": true, "vnetName": "", "localMySqlEnabled": false, "ipSecurityRestrictions": + [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all", + "description": "Allow all access"}], "scmIpSecurityRestrictions": [{"ipAddress": + "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description": + "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled": + true, "minTlsVersion": "1.0", "ftpsState": "Disabled", "preWarmedInstanceCount": + 0}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config set + Connection: + - keep-alive + Content-Length: + - '1370' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --always-on --auto-heal-enabled --php-version --net-framework-version + --python-version --use-32bit-worker-process --web-sockets-enabled --http20-enabled + --min-tls-version --ftps-state + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3118' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:51 GMT + etag: + - '"1D5C43483793580"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/web","name":"webapp-config-test000002","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v3.0","phpVersion":"7.0","pythonVersion":"3.4","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-config-test000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":true,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":true,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.0","ftpsState":"Disabled","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3136' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14"}}' + headers: + cache-control: + - no-cache + content-length: + - '373' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": + "10.14", "s1": "foo", "s2": "bar", "s3": "bar2"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings set + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '407' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:56 GMT + etag: + - '"1D5C43492F4EF0B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '407' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s1":"foo","s2":"bar","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '407' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-config-test000002","type":"Microsoft.Web/sites","location":"West + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '209' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:56:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"WEBSITE_NODE_DEFAULT_VERSION": + "10.14", "s3": "bar2"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config appsettings delete + Connection: + - keep-alive + Content-Length: + - '96' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14","s3":"bar2"}}' + headers: + cache-control: + - no-cache + content-length: + - '385' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:03 GMT + etag: + - '"1D5C434978F6BC0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config hostname list + Connection: + - keep-alive + ParameterSetName: + - -g --webapp-name + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002/hostNameBindings/webapp-config-test000002.azurewebsites.net","name":"webapp-config-test000002/webapp-config-test000002.azurewebsites.net","type":"Microsoft.Web/sites/hostNameBindings","location":"West + US","properties":{"siteName":"webapp-config-test000002","domainId":null,"hostNameType":"Verified"}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '623' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:05 GMT + etag: + - '"1D5C434978F6BC0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "webapp-linux-plan000004", "type": "Microsoft.Web/serverfarms", + "location": "eastus", "properties": {"skuName": "S1", "needLinuxWorkers": true, + "capacity": 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan create + Connection: + - keep-alive + Content-Length: + - '169' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l --sku --is-linux + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/validate?api-version=2019-08-01 + response: + body: + string: '{"status":"Success","error":null}' + headers: + cache-control: + - no-cache + content-length: + - '33' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"perSiteScaling": false, "reserved": + true, "isXenon": false}, "sku": {"name": "S1", "tier": "STANDARD", "capacity": + 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan create + Connection: + - keep-alive + Content-Length: + - '157' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l --sku --is-linux + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US","properties":{"serverFarmId":19241,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-103_19241","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --runtime + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US","properties":{"serverFarmId":19241,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-103_19241","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"name": "webapp-linux000005", "type": "Microsoft.Web/sites", "location": + "East US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '329' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --runtime + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/validate?api-version=2019-08-01 + response: + body: + string: '{"status":"Success","error":null}' + headers: + cache-control: + - no-cache + content-length: + - '33' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --runtime + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East + US","properties":{"serverFarmId":19241,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-103_19241","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1531' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --runtime + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + headers: + cache-control: + - no-cache + content-length: + - '17428' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "East US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004", + "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": + "v4.6", "linuxFxVersion": "node|6.6", "appSettings": [], "alwaysOn": true, "localMySqlEnabled": + false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '530' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --runtime + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005","name":"webapp-linux000005","type":"Microsoft.Web/sites","kind":"app,linux","location":"East + US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T01:57:31.6633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AA36139C13FCB2D1A4CD76C5905DA01DBE559E483FBDE0A8DD90A1E2404C0468","kind":"app,linux","inboundIpAddress":"40.121.32.232","possibleInboundIpAddresses":"40.121.32.232","outboundIpAddresses":"40.121.32.232,40.114.29.199,104.211.16.51,40.121.36.86,40.121.38.194","possibleOutboundIpAddresses":"40.121.32.232,40.114.29.199,104.211.16.51,40.121.36.86,40.121.38.194,40.121.35.60,40.121.44.194,40.121.36.231","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3625' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:49 GMT + etag: + - '"1D5C434A8934BEB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --plan --runtime + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Mon, 06 Jan 2020 01:57:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --custom-id --storage-type --account-name --share-name --access-key + --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '328' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", + "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": + "/path/to/mount"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account add + Connection: + - keep-alive + Content-Length: + - '171' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --custom-id --storage-type --account-name --share-name --access-key + --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '484' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:54 GMT + etag: + - '"1D5C434B5DF884B"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '475' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '193' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account update + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --custom-id --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/path/to/mount","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '475' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:57:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"Id": {"type": "AzureFiles", + "accountName": "name", "shareName": "sharename", "accessKey": "key", "mountPath": + "/different/path"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account update + Connection: + - keep-alive + Content-Length: + - '172' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --custom-id --mount-path + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '485' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:00 GMT + etag: + - '"1D5C434B914F6C0"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '193' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '193' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --custom-id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/appsettings","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"Id":{"type":"AzureFiles","accountName":"name","shareName":"sharename","accessKey":"key","mountPath":"/different/path","state":"InvalidCredentials"}}}' + headers: + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --custom-id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '193' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config storage-account delete + Connection: + - keep-alive + Content-Length: + - '43' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --custom-id + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/azurestorageaccounts","name":"azurestorageaccounts","type":"Microsoft.Web/sites/config","location":"East + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '337' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:08 GMT + etag: + - '"1D5C434BE58D2D5"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"East + US","properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '331' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"c1": {"value": "conn1", "type": + "MySql"}, "c2": {"value": "conn2", "type": "MySql"}, "c3": {"value": "conn3", + "type": "MySql"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + Content-Length: + - '170' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:11 GMT + etag: + - '"1D5C434BFE17BAB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' + headers: + cache-control: + - no-cache + content-length: + - '193' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"connectionStringNames": ["c3"]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string set + Connection: + - keep-alive + Content-Length: + - '49' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -t -g -n --settings --slot-settings + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '191' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '191' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"c1":{"value":"conn1","type":"MySql"},"c2":{"value":"conn2","type":"MySql"},"c3":{"value":"conn3","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '444' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":["c3"],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '191' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"connectionStringNames": [], "appSettingNames": [], "azureStorageConfigNames": + []}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + Content-Length: + - '99' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"kind": "", "properties": {"c2": {"value": "conn2", "type": + "MySql"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string delete + Connection: + - keep-alive + Content-Length: + - '84' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --setting-names + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '368' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:19 GMT + etag: + - '"1D5C434C4CACEAB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/connectionstrings","name":"connectionstrings","type":"Microsoft.Web/sites/config","location":"East + US","properties":{"c2":{"value":"conn2","type":"MySql"}}}' + headers: + cache-control: + - no-cache + content-length: + - '368' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp config connection-string list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005/config/slotConfigNames?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"webapp-linux000005","type":"Microsoft.Web/sites","location":"East + US","properties":{"connectionStringNames":[],"appSettingNames":[],"azureStorageConfigNames":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '187' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 01:58:21 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml index 83f8880e979..6903d7c335e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml @@ -13,32 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -47,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:22 GMT -======= - - Thu, 14 Nov 2019 01:40:48 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:45 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:38:50 GMT expires: - '-1' pragma: @@ -88,17 +63,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -114,15 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:23 GMT -======= - - Thu, 14 Nov 2019 01:40:49 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:45 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:38:51 GMT expires: - '-1' pragma: @@ -140,15 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1199' -======= - - '1196' ->>>>>>> Re-record test for app service -======= - - '1195' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -168,32 +118,15 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -202,15 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:22 GMT -======= - - Thu, 14 Nov 2019 01:40:49 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:38:52 GMT expires: - '-1' pragma: @@ -243,17 +168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -261,18 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -281,15 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:29 GMT -======= - - Thu, 14 Nov 2019 01:40:55 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:03 GMT expires: - '-1' pragma: @@ -307,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' x-powered-by: - ASP.NET status: @@ -327,17 +225,8 @@ interactions: ParameterSetName: - -g User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -345,18 +234,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' -======= - US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -365,15 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:29 GMT -======= - - Thu, 14 Nov 2019 01:40:56 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:06 GMT expires: - '-1' pragma: @@ -409,32 +280,15 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -443,15 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:29 GMT -======= - - Thu, 14 Nov 2019 01:40:57 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:06 GMT expires: - '-1' pragma: @@ -484,17 +330,8 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -510,15 +347,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:29 GMT -======= - - Thu, 14 Nov 2019 01:40:57 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:56 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:07 GMT expires: - '-1' pragma: @@ -536,11 +365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1197' -======= - - '1195' ->>>>>>> live test + - '1199' x-powered-by: - ASP.NET status: @@ -560,32 +385,15 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-09T21:27:20Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-14T01:40:45Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:42Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -594,15 +402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:30 GMT -======= - - Thu, 14 Nov 2019 01:40:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:24:57 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:07 GMT expires: - '-1' pragma: @@ -635,35 +435,16 @@ interactions: ParameterSetName: - -g -n --per-site-scaling User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' headers: cache-control: - no-cache @@ -672,15 +453,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:32 GMT -======= - - Thu, 14 Nov 2019 01:41:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:25:00 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:13 GMT expires: - '-1' pragma: @@ -698,15 +471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1199' -======= - - '1191' ->>>>>>> Re-record test for app service -======= - - '1194' ->>>>>>> live test + - '1196' x-powered-by: - ASP.NET status: @@ -726,17 +491,8 @@ interactions: ParameterSetName: - -g User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -744,18 +500,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' -======= - US","properties":{"serverFarmId":23612,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_23612","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -764,15 +510,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:33 GMT -======= - - Thu, 14 Nov 2019 01:41:01 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:25:01 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:15 GMT expires: - '-1' pragma: @@ -805,71 +543,11 @@ interactions: - appservice plan list Connection: - keep-alive + ParameterSetName: + - -g User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/serverfarms?detailed=true&api-version=2018-02-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":183664,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-elastic-linux/providers/Microsoft.Web/serverfarms/allisonm-linux","name":"allisonm-linux","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"West - US","properties":{"serverFarmId":106858,"name":"allisonm-linux","workerSize":"D3","workerSizeId":5,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D3","currentWorkerSizeId":5,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-elastic-linux-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":10,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"allisonm-elastic-linux","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-125_24","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP3","tier":"ElasticPremium","size":"EP3","family":"EP","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions/providers/Microsoft.Web/serverfarms/ASP-allisonmfunctions-852b","name":"ASP-allisonmfunctions-852b","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"West - US","properties":{"serverFarmId":183414,"name":"ASP-allisonmfunctions-852b","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-121_20009","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-elastic/providers/Microsoft.Web/serverfarms/allisonm-elastic-functions","name":"allisonm-elastic-functions","type":"Microsoft.Web/serverfarms","kind":"elastic","location":"West - US","properties":{"serverFarmId":106857,"name":"allisonm-elastic-functions","workerSize":"D3","workerSizeId":5,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D3","currentWorkerSizeId":5,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-elastic-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":10,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"elastic","resourceGroup":"allisonm-elastic","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_17579","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"EP3","tier":"ElasticPremium","size":"EP3","family":"EP","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions-linux/providers/Microsoft.Web/serverfarms/ASP-allisonmfunctionslinux-b04c","name":"ASP-allisonmfunctionslinux-b04c","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US","properties":{"serverFarmId":183427,"name":"ASP-allisonmfunctionslinux-b04c","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-functions-linux-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"allisonm-functions-linux","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-139_3395","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-mobileapps/providers/Microsoft.Web/serverfarms/ServicePlanee4e5328-85d8","name":"ServicePlanee4e5328-85d8","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":162406,"name":"ServicePlanee4e5328-85d8","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-mobileapps-CentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":6,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"allisonm-mobileapps","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-065_26547","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Web/serverfarms/allisonm-testasp","name":"allisonm-testasp","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central - US","properties":{"serverFarmId":162403,"name":"allisonm-testasp","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-cee-CentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"allisonm-cee","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-159_8738","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions/providers/Microsoft.Web/serverfarms/ASP-allisonmfunctions-8728","name":"ASP-allisonmfunctions-8728","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"Central - US","properties":{"serverFarmId":162404,"name":"ASP-allisonmfunctions-8728","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-CentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-059_31877","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions/providers/Microsoft.Web/serverfarms/CentralUSPlan","name":"CentralUSPlan","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"Central - US","properties":{"serverFarmId":162405,"name":"CentralUSPlan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-CentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":4,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-059_24710","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-webapps3/providers/Microsoft.Web/serverfarms/allisonm-freeasp","name":"allisonm-freeasp","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":162408,"name":"allisonm-freeasp","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-webapps3-CentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":1,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Shared","siteMode":"Limited","geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"allisonm-webapps3","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-037_33836","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"F1","tier":"Free","size":"F1","family":"F","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/serverfarms/ASP-allisonmase-becb","name":"ASP-allisonmase-becb","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central - US","properties":{"serverFarmId":162402,"name":"ASP-allisonmase-becb","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-ase-allisonm-internalappseCentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":"allisonm-internal","hostingEnvironmentProfile":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal","name":"allisonm-internal","type":"Microsoft.Web/hostingEnvironments"},"maximumNumberOfWorkers":100,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":0,"numberOfSites":2,"hostingEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal","isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"allisonm-ase","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-50d14902_1","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"I1","tier":"Isolated","size":"I1","family":"I","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm_rg_Linux_centralus/providers/Microsoft.Web/serverfarms/allisonm_asp_Linux_centralus_0","name":"allisonm_asp_Linux_centralus_0","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central - US","properties":{"serverFarmId":400717,"name":"allisonm_asp_Linux_centralus_0","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm_rg_Linux_centralus-CentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"allisonm_rg_Linux_centralus","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-163_6774","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-webapps/providers/Microsoft.Web/serverfarms/ASP-allisonmwebapps-a09a","name":"ASP-allisonmwebapps-a09a","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Central - US","properties":{"serverFarmId":162407,"name":"ASP-allisonmwebapps-a09a","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-webapps-CentralUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"allisonm-webapps","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-157_737","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions-linux/providers/Microsoft.Web/serverfarms/NorthEuropeLinuxDynamicPlan","name":"NorthEuropeLinuxDynamicPlan","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"North - Europe","properties":{"serverFarmId":126692,"name":"NorthEuropeLinuxDynamicPlan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-linux-NorthEuropewebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"North - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions-linux","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-db3-087_43373","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-webapps2/providers/Microsoft.Web/serverfarms/ASP-allisonmwebapps2-b1c7","name":"ASP-allisonmwebapps2-b1c7","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US 2","properties":{"serverFarmId":26771,"name":"ASP-allisonmwebapps2-b1c7","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-webapps2-WestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"allisonm-webapps2","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-031_18449","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions/providers/Microsoft.Web/serverfarms/ASP-allisonmfunctions-a837","name":"ASP-allisonmfunctions-a837","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"West - US 2","properties":{"serverFarmId":131568,"name":"ASP-allisonmfunctions-a837","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-WestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-027_18652","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions/providers/Microsoft.Web/serverfarms/ASP-allisonmfunctions-baf1","name":"ASP-allisonmfunctions-baf1","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"West - US 2","properties":{"serverFarmId":135534,"name":"ASP-allisonmfunctions-baf1","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-WestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-027_18859","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions/providers/Microsoft.Web/serverfarms/WestUS2Plan","name":"WestUS2Plan","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"West - US 2","properties":{"serverFarmId":26768,"name":"WestUS2Plan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-WestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-027_13216","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions-linux/providers/Microsoft.Web/serverfarms/WestUS2LinuxDynamicPlan","name":"WestUS2LinuxDynamicPlan","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"West - US 2","properties":{"serverFarmId":26769,"name":"WestUS2LinuxDynamicPlan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-linux-WestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions-linux","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-007_10794","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-webapps/providers/Microsoft.Web/serverfarms/ASP-allisonmwebapps-9cc5","name":"ASP-allisonmwebapps-9cc5","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - US 2","properties":{"serverFarmId":26770,"name":"ASP-allisonmwebapps-9cc5","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-webapps-WestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":30,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":5,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"allisonm-webapps","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-007_8281","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/serverfarms/allisonm-external-asp2","name":"allisonm-external-asp2","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US 2","properties":{"serverFarmId":132945,"name":"allisonm-external-asp2","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-ase-allisonm-externalappseWestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":"allisonm-external","hostingEnvironmentProfile":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external","name":"allisonm-external","type":"Microsoft.Web/hostingEnvironments"},"maximumNumberOfWorkers":100,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":0,"numberOfSites":0,"hostingEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external","isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"allisonm-ase","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-a4c6e517_6","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"I1","tier":"Isolated","size":"I1","family":"I","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-funciton-external/providers/Microsoft.Web/serverfarms/allisonm-ase-external-asp","name":"allisonm-ase-external-asp","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US 2","properties":{"serverFarmId":26767,"name":"allisonm-ase-external-asp","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-funciton-external-allisonm-externalappseWestUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":"allisonm-external","hostingEnvironmentProfile":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external","name":"allisonm-external","type":"Microsoft.Web/hostingEnvironments"},"maximumNumberOfWorkers":100,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US 2","perSiteScaling":false,"maximumElasticWorkerCount":0,"numberOfSites":1,"hostingEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external","isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"allisonm-funciton-external","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-mwh-a4c6e517_3","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"I1","tier":"Isolated","size":"I1","family":"I","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln44326dc5-f645-4022-a9a5-52a6a32f68a9","name":"cln44326dc5-f645-4022-a9a5-52a6a32f68a9","type":"Microsoft.Web/serverfarms","kind":"app","location":"East - US 2","properties":{"serverFarmId":36235,"name":"cln44326dc5-f645-4022-a9a5-52a6a32f68a9","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cleanupservice-EastUS2webspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cleanupservice","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-047_9266","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-functions/providers/Microsoft.Web/serverfarms/WestEuropeLinuxDynamicPlan","name":"WestEuropeLinuxDynamicPlan","type":"Microsoft.Web/serverfarms","kind":"functionapp","location":"West - Europe","properties":{"serverFarmId":308276,"name":"WestEuropeLinuxDynamicPlan","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":0,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":0,"status":"Ready","webSpace":"allisonm-functions-WestEuropewebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dynamic","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":2,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"functionapp","resourceGroup":"allisonm-functions","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-177_26058","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"Y1","tier":"Dynamic","size":"Y1","family":"Y","capacity":0}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Web/serverfarms/allisonm_asp_Linux_westeurope_0","name":"allisonm_asp_Linux_westeurope_0","type":"Microsoft.Web/serverfarms","kind":"linux","location":"West - Europe","properties":{"serverFarmId":397989,"name":"allisonm_asp_Linux_westeurope_0","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"allisonm-cee-WestEuropewebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":3,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"allisonm-cee","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-125_18741","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}]}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -877,39 +555,35 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '35413' + - '1561' content-type: - - application/json; charset=utf-8 + - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:34 GMT -======= - - Tue, 31 Dec 2019 02:25:03 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:15 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff - x-ms-original-request-ids: - - 45765a6c-cb7c-4e3c-b271-ef90508a4885 - - c78e666b-322e-42cd-90a2-a86ecaacd9cf - - 589e6e44-15da-4339-a962-e468ce26b294 - - d9da0bb6-1473-4411-a0d5-d1cffb23f520 - - 6091f8eb-77bd-4620-9636-2e173556d92f - - d908ec6d-8fa1-4095-9458-05c39919cd67 + x-powered-by: + - ASP.NET status: code: 200 message: OK @@ -927,13 +601,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -941,13 +610,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -956,11 +620,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:35 GMT -======= - - Tue, 31 Dec 2019 02:25:05 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:18 GMT expires: - '-1' pragma: @@ -996,13 +656,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1010,13 +665,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1025,11 +675,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:35 GMT -======= - - Tue, 31 Dec 2019 02:25:06 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:18 GMT expires: - '-1' pragma: @@ -1070,13 +716,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1092,11 +733,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:35 GMT -======= - - Tue, 31 Dec 2019 02:25:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:19 GMT expires: - '-1' pragma: @@ -1114,7 +751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -1134,53 +771,26 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/westus/providers/Microsoft.Web/serverfarms?api-version=2018-02-01 -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 ->>>>>>> live test response: body: -<<<<<<< HEAD string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group - ''westus'' could not be found."}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache content-length: - - '98' + - '1523' content-type: -<<<<<<< HEAD - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:35 GMT -======= - - Tue, 31 Dec 2019 02:25:10 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:19 GMT expires: - '-1' pragma: @@ -1224,20 +834,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:38.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1245,53 +843,39 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:13.423","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:28.137","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '3524' content-type: - application/json date: - - Mon, 09 Dec 2019 21:27:54 GMT - etag: - - '"1D5AED77B6F6FC0"' -======= - - application/json; charset=utf-8 - date: - - Thu, 14 Nov 2019 01:41:02 GMT ->>>>>>> Re-record test for app service -======= - - '3520' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:25:30 GMT + - Sun, 05 Jan 2020 08:39:46 GMT etag: - - '"1D5BF8188BE7FD0"' ->>>>>>> live test + - '"1D5C3A3A4D2ED70"' expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff -<<<<<<< HEAD - x-ms-failure-cause: - - gateway -======= x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET ->>>>>>> live test status: -<<<<<<< HEAD code: 200 message: OK - request: @@ -1312,50 +896,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 ->>>>>>> live test response: body: string: >>>>>> live test + ftpPassiveMode="True" userName="webapp-e2e000002\$webapp-e2e000002" userPWD="xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9" destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1367,11 +928,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:55 GMT -======= - - Tue, 31 Dec 2019 02:25:32 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:46 GMT expires: - '-1' pragma: @@ -1385,7 +942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1405,13 +962,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1419,13 +971,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1434,11 +981,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:56 GMT -======= - - Tue, 31 Dec 2019 02:25:33 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:48 GMT expires: - '-1' pragma: @@ -1479,13 +1022,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1501,11 +1039,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:56 GMT -======= - - Tue, 31 Dec 2019 02:25:33 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:49 GMT expires: - '-1' pragma: @@ -1523,11 +1057,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - '1199' -======= - - '1195' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -1547,13 +1077,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1561,13 +1086,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":25980,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_25980","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' -======= - US","properties":{"serverFarmId":35420,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35420","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1576,11 +1096,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:56 GMT -======= - - Tue, 31 Dec 2019 02:25:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:49 GMT expires: - '-1' pragma: @@ -1624,20 +1140,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1645,29 +1149,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3524' + - '3523' content-type: - application/json date: - - Mon, 09 Dec 2019 21:27:59 GMT + - Sun, 05 Jan 2020 08:39:52 GMT etag: - - '"1D5AED77B6F6FC0"' -======= - - '3520' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:25:39 GMT - etag: - - '"1D5BF8188BE7FD0"' ->>>>>>> live test + - '"1D5C3A3A4D2ED70"' expires: - '-1' pragma: @@ -1709,50 +1202,27 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 ->>>>>>> live test response: body: string: >>>>>> live test + ftpPassiveMode="True" userName="webapp-e2e000002\$webapp-e2e000002" userPWD="xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9" destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1764,11 +1234,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:27:59 GMT -======= - - Tue, 31 Dec 2019 02:25:40 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:53 GMT expires: - '-1' pragma: @@ -1782,7 +1248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1802,20 +1268,8 @@ interactions: ParameterSetName: - -g User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2018-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1823,25 +1277,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3562' + - '3561' content-type: - application/json date: - - Mon, 09 Dec 2019 21:28:00 GMT -======= - - '3558' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:25:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:54 GMT expires: - '-1' pragma: @@ -1877,20 +1322,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1898,29 +1331,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3522' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:01 GMT - etag: - - '"1D5AED78724B870"' -======= - - '3518' + - '3521' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:43 GMT + - Sun, 05 Jan 2020 08:39:55 GMT etag: - - '"1D5BF8196A2B670"' ->>>>>>> live test + - '"1D5C3A3B2443E00"' expires: - '-1' pragma: @@ -1956,20 +1378,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1977,29 +1387,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3522' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:01 GMT - etag: - - '"1D5AED78724B870"' -======= - - '3518' + - '3521' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:45 GMT + - Sun, 05 Jan 2020 08:39:56 GMT etag: - - '"1D5BF8196A2B670"' ->>>>>>> live test + - '"1D5C3A3B2443E00"' expires: - '-1' pragma: @@ -2039,50 +1438,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 ->>>>>>> live test response: body: string: >>>>>> live test + ftpPassiveMode="True" userName="webapp-e2e000002\$webapp-e2e000002" userPWD="xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9" destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2094,11 +1470,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:01 GMT -======= - - Tue, 31 Dec 2019 02:25:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:57 GMT expires: - '-1' pragma: @@ -2132,20 +1504,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:27:58.583","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2153,29 +1513,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:37.623","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3522' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:02 GMT - etag: - - '"1D5AED78724B870"' -======= - - '3518' + - '3521' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:47 GMT + - Sun, 05 Jan 2020 08:39:58 GMT etag: - - '"1D5BF8196A2B670"' ->>>>>>> live test + - '"1D5C3A3B2443E00"' expires: - '-1' pragma: @@ -2216,52 +1565,29 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/config/web?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3101' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:03 GMT - etag: - - '"1D5AED78724B870"' -======= - '3072' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:49 GMT + - Sun, 05 Jan 2020 08:39:59 GMT etag: - - '"1D5BF8196A2B670"' ->>>>>>> live test + - '"1D5C3A3B2443E00"' expires: - '-1' pragma: @@ -2279,7 +1605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1194' x-powered-by: - ASP.NET status: @@ -2299,13 +1625,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2321,11 +1642,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:03 GMT -======= - - Tue, 31 Dec 2019 02:25:49 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:59 GMT expires: - '-1' pragma: @@ -2361,21 +1678,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web","name":"webapp-e2e000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -2388,15 +1696,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:04 GMT - etag: - - '"1D5AED78A1B1510"' -======= - - Tue, 31 Dec 2019 02:25:51 GMT + - Sun, 05 Jan 2020 08:40:00 GMT etag: - - '"1D5BF819DDB2990"' ->>>>>>> live test + - '"1D5C3A3B7003F70"' expires: - '-1' pragma: @@ -2432,21 +1734,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/sourcecontrols/web","name":"webapp-e2e000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West @@ -2459,15 +1752,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:05 GMT + - Sun, 05 Jan 2020 08:40:01 GMT etag: - - '"1D5AED78A1B1510"' -======= - - Tue, 31 Dec 2019 02:25:51 GMT - etag: - - '"1D5BF819DDB2990"' ->>>>>>> live test + - '"1D5C3A3B7003F70"' expires: - '-1' pragma: @@ -2504,20 +1791,8 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:03.553","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2525,29 +1800,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:49.737","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:59.463","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '3522' content-type: - application/json date: - - Mon, 09 Dec 2019 21:28:05 GMT + - Sun, 05 Jan 2020 08:40:02 GMT etag: - - '"1D5AED78A1B1510"' -======= - - '3518' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:25:52 GMT - etag: - - '"1D5BF819DDB2990"' ->>>>>>> live test + - '"1D5C3A3B7003F70"' expires: - '-1' pragma: @@ -2584,20 +1848,8 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:03.553","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2605,29 +1857,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:49.737","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:59.463","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '3522' content-type: - application/json date: - - Mon, 09 Dec 2019 21:28:05 GMT - etag: - - '"1D5AED78A1B1510"' -======= - - '3518' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:25:54 GMT + - Sun, 05 Jan 2020 08:40:03 GMT etag: - - '"1D5BF819DDB2990"' ->>>>>>> live test + - '"1D5C3A3B7003F70"' expires: - '-1' pragma: @@ -2671,21 +1912,12 @@ interactions: - -g -n --level --application-logging --detailed-error-messages --failed-request-tracing --web-server-logging User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/config/logs?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"West @@ -2698,15 +1930,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:06 GMT + - Sun, 05 Jan 2020 08:40:05 GMT etag: - - '"1D5AED78C236830"' -======= - - Tue, 31 Dec 2019 02:25:55 GMT - etag: - - '"1D5BF81A1A18060"' ->>>>>>> live test + - '"1D5C3A3BA5CD7F0"' expires: - '-1' pragma: @@ -2724,11 +1950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1193' ->>>>>>> live test + - '1195' x-powered-by: - ASP.NET status: @@ -2748,20 +1970,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:06.963","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2769,29 +1979,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:56.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:05.103","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '3522' content-type: - application/json date: - - Mon, 09 Dec 2019 21:28:07 GMT - etag: - - '"1D5AED78C236830"' -======= - - '3517' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:25:56 GMT + - Sun, 05 Jan 2020 08:40:06 GMT etag: - - '"1D5BF81A1A18060"' ->>>>>>> live test + - '"1D5C3A3BA5CD7F0"' expires: - '-1' pragma: @@ -2827,21 +2026,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"West @@ -2854,11 +2044,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:08 GMT -======= - - Tue, 31 Dec 2019 02:25:58 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:08 GMT expires: - '-1' pragma: @@ -2894,48 +2080,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web?api-version=2019-08-01 ->>>>>>> live test response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/web","name":"webapp-e2e000002","type":"Microsoft.Web/sites/config","location":"West US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":true,"requestTracingExpirationTime":"9999-12-31T23:59:00Z","remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":true,"publishingUsername":"$webapp-e2e000002","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"LocalGit","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow -<<<<<<< HEAD - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' -======= all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3171' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:08 GMT -======= - '3142' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:59 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:09 GMT expires: - '-1' pragma: @@ -2975,50 +2140,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 ->>>>>>> live test response: body: string: >>>>>> live test + ftpPassiveMode="True" userName="webapp-e2e000002\$webapp-e2e000002" userPWD="xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9" destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -3030,11 +2172,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:09 GMT -======= - - Tue, 31 Dec 2019 02:26:00 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:10 GMT expires: - '-1' pragma: @@ -3048,7 +2186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -3068,20 +2206,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:06.963","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3089,29 +2215,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:56.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:05.103","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - '3522' content-type: - application/json date: - - Mon, 09 Dec 2019 21:28:09 GMT + - Sun, 05 Jan 2020 08:40:11 GMT etag: - - '"1D5AED78C236830"' -======= - - '3517' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:26:01 GMT - etag: - - '"1D5BF81A1A18060"' ->>>>>>> live test + - '"1D5C3A3BA5CD7F0"' expires: - '-1' pragma: @@ -3149,21 +2264,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/stop?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/stop?api-version=2019-08-01 ->>>>>>> live test response: body: string: '' @@ -3173,11 +2279,7 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:09 GMT -======= - - Tue, 31 Dec 2019 02:26:03 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:12 GMT expires: - '-1' pragma: @@ -3191,11 +2293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1199' -======= - - '1194' ->>>>>>> live test + - '1198' x-powered-by: - ASP.NET status: @@ -3215,20 +2313,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:10.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3236,29 +2322,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:03.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:12.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3521' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:10 GMT - etag: - - '"1D5AED78E578640"' -======= - - '3517' + - '3522' content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:04 GMT + - Sun, 05 Jan 2020 08:40:13 GMT etag: - - '"1D5BF81A636E700"' ->>>>>>> live test + - '"1D5C3A3BEE916D0"' expires: - '-1' pragma: @@ -3294,20 +2369,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:10.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3315,29 +2378,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:03.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:12.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3521' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:10 GMT - etag: - - '"1D5AED78E578640"' -======= - - '3517' + - '3522' content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:05 GMT + - Sun, 05 Jan 2020 08:40:14 GMT etag: - - '"1D5BF81A636E700"' ->>>>>>> live test + - '"1D5C3A3BEE916D0"' expires: - '-1' pragma: @@ -3377,50 +2429,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 ->>>>>>> live test response: body: string: >>>>>> live test + ftpPassiveMode="True" userName="webapp-e2e000002\$webapp-e2e000002" userPWD="xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9" destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -3432,11 +2461,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:11 GMT -======= - - Tue, 31 Dec 2019 02:26:06 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:15 GMT expires: - '-1' pragma: @@ -3450,7 +2475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -3470,20 +2495,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:10.66","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3491,29 +2504,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:03.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:12.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3521' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:11 GMT - etag: - - '"1D5AED78E578640"' -======= - - '3517' + - '3522' content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:07 GMT + - Sun, 05 Jan 2020 08:40:17 GMT etag: - - '"1D5BF81A636E700"' ->>>>>>> live test + - '"1D5C3A3BEE916D0"' expires: - '-1' pragma: @@ -3551,21 +2553,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/start?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/start?api-version=2019-08-01 ->>>>>>> live test response: body: string: '' @@ -3575,11 +2568,7 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:12 GMT -======= - - Tue, 31 Dec 2019 02:26:08 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:18 GMT expires: - '-1' pragma: @@ -3593,7 +2582,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -3613,20 +2602,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:13.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3634,29 +2611,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:08.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3521' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:13 GMT - etag: - - '"1D5AED78FD377E0"' -======= - - '3518' + - '3522' content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:09 GMT + - Sun, 05 Jan 2020 08:40:20 GMT etag: - - '"1D5BF81A9316250"' ->>>>>>> live test + - '"1D5C3A3C245AF50"' expires: - '-1' pragma: @@ -3692,20 +2658,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:13.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3713,29 +2667,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:08.757","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F1571790B5477A83FE3243BAF0260E20D7AEEEBFE5ABA4798E502C4B4F9C079A","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3521' - content-type: - - application/json - date: - - Mon, 09 Dec 2019 21:28:13 GMT - etag: - - '"1D5AED78FD377E0"' -======= - - '3518' + - '3522' content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:10 GMT + - Sun, 05 Jan 2020 08:40:20 GMT etag: - - '"1D5BF81A9316250"' ->>>>>>> live test + - '"1D5C3A3C245AF50"' expires: - '-1' pragma: @@ -3775,50 +2718,27 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 ->>>>>>> live test response: body: string: >>>>>> live test + ftpPassiveMode="True" userName="webapp-e2e000002\$webapp-e2e000002" userPWD="xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9" destinationAppUrl="http://webapp-e2e000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -3830,11 +2750,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:13 GMT -======= - - Tue, 31 Dec 2019 02:26:12 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:21 GMT expires: - '-1' pragma: @@ -3848,7 +2764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -3870,20 +2786,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/config/publishingcredentials/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishingcredentials/$webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"qqSglxDczbKtp2dA5cahAxdufW3S5cvi38STKEgtXYiTfipzzikgsanfqYGh","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:qqSglxDczbKtp2dA5cahAxdufW3S5cvi38STKEgtXYiTfipzzikgsanfqYGh@webapp-e2e000002.scm.azurewebsites.net"}}' -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -3891,8 +2795,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishingcredentials/$webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"vxe97uWQBCvjCnjZflGtJc7zBKg7b2xXhXg8KM2leNMmHa0yWNTJJsYssscf","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:vxe97uWQBCvjCnjZflGtJc7zBKg7b2xXhXg8KM2leNMmHa0yWNTJJsYssscf@webapp-e2e000002.scm.azurewebsites.net"}}' ->>>>>>> live test + US","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9@webapp-e2e000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -3901,8 +2804,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 09 Dec 2019 21:28:14 GMT + - Sun, 05 Jan 2020 08:40:22 GMT expires: - '-1' pragma: @@ -3940,30 +2842,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:13.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3521' + - '3522' content-type: - application/json date: - - Mon, 09 Dec 2019 21:28:14 GMT + - Sun, 05 Jan 2020 08:40:25 GMT etag: - - '"1D5AED78FD377E0"' -======= - - Tue, 31 Dec 2019 02:26:13 GMT ->>>>>>> live test + - '"1D5C3A3C245AF50"' expires: - '-1' pragma: @@ -3999,27 +2898,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-09T21:28:13.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C14B91CE1E1227087EC16ACCA2D6CBCA336E3E40381E84B5821DCF164D27171F","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3521' + - '3522' content-type: - application/json date: - - Mon, 09 Dec 2019 21:28:15 GMT + - Sun, 05 Jan 2020 08:40:26 GMT etag: - - '"1D5AED78FD377E0"' + - '"1D5C3A3C245AF50"' expires: - '-1' pragma: @@ -4059,27 +2958,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/webapp-e2e000002/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishxml?api-version=2019-08-01 response: body: string: @@ -4091,7 +2990,7 @@ interactions: content-type: - application/xml date: - - Mon, 09 Dec 2019 21:28:16 GMT + - Sun, 05 Jan 2020 08:40:27 GMT expires: - '-1' pragma: @@ -4111,8 +3010,4 @@ interactions: status: code: 200 message: OK -======= - code: 404 - message: Not Found ->>>>>>> Re-record test for app service version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml index e5d46d159c4..d90ddb335b5 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_hybridconnectionE2E.yaml @@ -13,27 +13,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:35Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:39:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -42,15 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:15 GMT -======= - - Wed, 13 Nov 2019 11:20:05 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:18 GMT expires: - '-1' pragma: @@ -83,17 +63,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -109,15 +80,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:15 GMT -======= - - Wed, 13 Nov 2019 11:20:06 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:18 GMT expires: - '-1' pragma: @@ -135,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1197' x-powered-by: - ASP.NET status: @@ -155,27 +118,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:35Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:39:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -184,15 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:16 GMT -======= - - Wed, 13 Nov 2019 11:20:07 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:19 GMT expires: - '-1' pragma: @@ -225,17 +168,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -243,18 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":33767,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":35577,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35577","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -263,15 +187,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:21 GMT -======= - - Wed, 13 Nov 2019 11:20:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:51 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:30 GMT expires: - '-1' pragma: @@ -289,15 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1179' ->>>>>>> Re-record test for app service -======= - - '1181' ->>>>>>> live test + - '1198' x-powered-by: - ASP.NET status: @@ -317,17 +225,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -335,18 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":33767,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":35577,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35577","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -355,15 +244,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:22 GMT -======= - - Wed, 13 Nov 2019 11:20:16 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:52 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:31 GMT expires: - '-1' pragma: @@ -404,17 +285,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -430,15 +302,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:22 GMT -======= - - Wed, 13 Nov 2019 11:20:17 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:54 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:33 GMT expires: - '-1' pragma: @@ -456,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' x-powered-by: - ASP.NET status: @@ -476,17 +340,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -494,18 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","name":"hcplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":35402,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' -======= - US","properties":{"serverFarmId":22829,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-073_22829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":33767,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-075_33767","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":35577,"name":"hcplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35577","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -514,15 +359,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:22 GMT -======= - - Wed, 13 Nov 2019 11:20:18 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:37:55 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:34 GMT expires: - '-1' pragma: @@ -548,17 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], -<<<<<<< HEAD -<<<<<<< HEAD "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}''' -======= - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' ->>>>>>> Re-record test for app service -======= - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' ->>>>>>> live test headers: Accept: - application/json @@ -569,31 +397,14 @@ interactions: Connection: - keep-alive Content-Length: -<<<<<<< HEAD -<<<<<<< HEAD - '558' -======= - - '520' ->>>>>>> Re-record test for app service -======= - - '538' ->>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -601,44 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:25.437","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:20:23.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:59.0666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:37.703","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"22A82D1051E0B150CD5E3C10446ABCB8D84E063BF09616B874D574FB6A816A41","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '3523' content-type: - application/json date: - - Mon, 30 Dec 2019 20:26:42 GMT - etag: - - '"1D5BF4F68F86AD0"' -======= - - '3540' -======= - - '3582' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:38:16 GMT + - Sun, 05 Jan 2020 08:39:54 GMT etag: -<<<<<<< HEAD - - '"1D59A145774640B"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8350DED720"' ->>>>>>> live test + - '"1D5C3A3AA5747F0"' expires: - '-1' pragma: @@ -656,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -680,17 +465,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -699,40 +475,17 @@ interactions: body: string: >>>>>> Re-record test for app service -======= - msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" - destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" - mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" - webSystem="WebSites">>>>>>> live test + ftpPassiveMode="True" userName="hcwebapp000002\$hcwebapp000002" userPWD="5frzQYchcBzg5qgMh6mAeDfgRkxbv8PGtq0uTLww5lBcsXXZXlsZuigMGTGB" destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -744,15 +497,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:42 GMT -======= - - Wed, 13 Nov 2019 11:20:39 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:18 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:56 GMT expires: - '-1' pragma: @@ -766,15 +511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - - '11998' -======= - - '11992' ->>>>>>> Re-record test for app service -======= - - '11994' ->>>>>>> live test + - '11999' x-powered-by: - ASP.NET status: @@ -794,27 +531,15 @@ interactions: ParameterSetName: - -g --name User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:19:58Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:37:35Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:39:16Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -823,15 +548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:42 GMT -======= - - Wed, 13 Nov 2019 11:20:40 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:20 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:39:57 GMT expires: - '-1' pragma: @@ -863,12 +580,8 @@ interactions: ParameterSetName: - -g --name User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -876,41 +589,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","tags":{},"properties":{"provisioningState":"Created","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:26:44.457Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' -======= - US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:20:44.08Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' ->>>>>>> Re-record test for app service -======= - US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:38:24.13Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' ->>>>>>> live test + US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2020-01-05T08:40:02.113Z","updatedAt":"2020-01-05T08:40:02.113Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '660' + - '662' content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:44 GMT -======= - - Wed, 13 Nov 2019 11:20:44 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:25 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:03 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -920,15 +617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1197' -======= - - '1184' ->>>>>>> Re-record test for app service -======= - - '1180' ->>>>>>> live test + - '1194' status: code: 200 message: OK @@ -948,12 +637,8 @@ interactions: ParameterSetName: - -g --name User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -961,41 +646,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","tags":{},"properties":{"provisioningState":"Created","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:26:44.457Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' -======= - US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:20:44.08Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' ->>>>>>> Re-record test for app service -======= - US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:38:24.13Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' ->>>>>>> live test + US","tags":{},"properties":{"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2020-01-05T08:40:02.113Z","updatedAt":"2020-01-05T08:40:02.113Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '660' + - '662' content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:14 GMT -======= - - Wed, 13 Nov 2019 11:21:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:56 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:40:34 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1023,12 +692,8 @@ interactions: ParameterSetName: - -g --name User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1036,41 +701,25 @@ interactions: response: body: string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:27:26.667Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' -======= - US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:21:29.333Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' ->>>>>>> Re-record test for app service -======= - US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:39:26.063Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' ->>>>>>> live test + US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2020-01-05T08:40:02.113Z","updatedAt":"2020-01-05T08:40:44.33Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '660' + - '659' content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:44 GMT -======= - - Wed, 13 Nov 2019 11:21:47 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:27 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:04 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1100,12 +749,8 @@ interactions: ParameterSetName: - -g --namespace-name --name --user-metadata User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1113,41 +758,25 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005","name":"hcname000005","type":"Microsoft.Relay/Namespaces/HybridConnections","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"createdAt":"2019-12-30T20:27:48.0033426Z","updatedAt":"2019-12-30T20:27:48.0033426Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' -======= - US","properties":{"createdAt":"2019-11-13T11:21:51.0016942Z","updatedAt":"2019-11-13T11:21:51.0016942Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"createdAt":"2019-12-31T02:39:31.691979Z","updatedAt":"2019-12-31T02:39:31.691979Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' ->>>>>>> live test + US","properties":{"createdAt":"2020-01-05T08:41:08.4701168Z","updatedAt":"2020-01-05T08:41:08.4701168Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' headers: cache-control: - no-cache content-length: - - '582' + - '584' content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:47 GMT -======= - - Wed, 13 Nov 2019 11:21:50 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:32 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:08 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1157,15 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1199' -======= - - '1179' ->>>>>>> Re-record test for app service -======= - - '1176' ->>>>>>> live test + - '1195' status: code: 200 message: OK @@ -1183,17 +804,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1201,44 +813,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:26.173","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:20:23.4566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:37:59.57","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:38.223","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"22A82D1051E0B150CD5E3C10446ABCB8D84E063BF09616B874D574FB6A816A41","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - '3521' content-type: - application/json date: - - Mon, 30 Dec 2019 20:27:49 GMT + - Sun, 05 Jan 2020 08:41:11 GMT etag: - - '"1D5BF4F68F86AD0"' -======= - - '3543' -======= - - '3575' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:39:33 GMT - etag: -<<<<<<< HEAD - - '"1D59A145774640B"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF8350DED720"' ->>>>>>> live test + - '"1D5C3A3AA5747F0"' expires: - '-1' pragma: @@ -1278,17 +864,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1297,40 +874,17 @@ interactions: body: string: >>>>>> Re-record test for app service -======= - msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" - destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" - mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" - webSystem="WebSites">>>>>>> live test + ftpPassiveMode="True" userName="hcwebapp000002\$hcwebapp000002" userPWD="5frzQYchcBzg5qgMh6mAeDfgRkxbv8PGtq0uTLww5lBcsXXZXlsZuigMGTGB" destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1342,15 +896,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:49 GMT -======= - - Wed, 13 Nov 2019 11:21:54 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:33 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:12 GMT expires: - '-1' pragma: @@ -1364,7 +910,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11999' x-powered-by: - ASP.NET status: @@ -1386,66 +932,34 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.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.Relay/namespaces?api-version=2017-04-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Relay/namespaces/allisonm-test-migration-091619-d1b1","name":"allisonm-test-migration-091619-d1b1","type":"Microsoft.Relay/Namespaces","location":"West - Europe","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:allisonm-test-migration-091619-d1b1","createdAt":"2019-09-16T13:53:45.15Z","updatedAt":"2019-09-16T13:54:30.377Z","serviceBusEndpoint":"https://allisonm-test-migration-091619-d1b1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West - US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0a60a016-d28c-428c-b5a6-7435ec6f40e3:hcnamespace000004","createdAt":"2019-12-30T20:26:44.457Z","updatedAt":"2019-12-30T20:27:26.667Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' -======= - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyk7rc5d5ettr65sj7oyjeewy2z3e454hko6fd3f7kvmokgpuq3d3qh3bda2xuqjhg/providers/Microsoft.Relay/namespaces/hcnamespaceh56n4phx22mx4","name":"hcnamespaceh56n4phx22mx4","type":"Microsoft.Relay/Namespaces","location":"West - US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespaceh56n4phx22mx4","createdAt":"2019-11-13T11:12:29.497Z","updatedAt":"2019-11-13T11:13:11.733Z","serviceBusEndpoint":"https://hcnamespaceh56n4phx22mx4.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West - US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-11-13T11:20:44.08Z","updatedAt":"2019-11-13T11:21:29.333Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' ->>>>>>> Re-record test for app service -======= string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004","name":"hcnamespace000004","type":"Microsoft.Relay/Namespaces","location":"West - US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2019-12-31T02:38:24.13Z","updatedAt":"2019-12-31T02:39:26.063Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' ->>>>>>> live test + US","tags":{},"properties":{"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:hcnamespace000004","createdAt":"2020-01-05T08:40:02.113Z","updatedAt":"2020-01-05T08:40:44.33Z","serviceBusEndpoint":"https://hcnamespace000004.servicebus.windows.net:443/","status":"Active"}}]}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '1320' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 30 Dec 2019 20:27:49 GMT -======= - - '1332' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:21:56 GMT ->>>>>>> Re-record test for app service -======= - '671' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:39:35 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:13 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1473,12 +987,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1486,41 +996,25 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005","name":"hcname000005","type":"Microsoft.Relay/Namespaces/HybridConnections","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"createdAt":"2019-12-30T20:27:48.0033426Z","updatedAt":"2019-12-30T20:27:48.0033426Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' -======= - US","properties":{"createdAt":"2019-11-13T11:21:51.0016942Z","updatedAt":"2019-11-13T11:21:51.0016942Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"createdAt":"2019-12-31T02:39:31.691979Z","updatedAt":"2019-12-31T02:39:31.691979Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' ->>>>>>> live test + US","properties":{"createdAt":"2020-01-05T08:41:08.4701168Z","updatedAt":"2020-01-05T08:41:08.4701168Z","listenerCount":0,"requiresClientAuthorization":true,"userMetadata":"[{\"key\":\"endpoint\",\"value\":\"vmsq1:80\"}]"}}' headers: cache-control: - no-cache content-length: - - '582' + - '584' content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:48 GMT -======= - - Wed, 13 Nov 2019 11:21:58 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:36 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:15 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1548,12 +1042,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1569,24 +1059,16 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:48 GMT -======= - - Wed, 13 Nov 2019 11:21:59 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:38 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:16 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1616,12 +1098,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1638,24 +1116,16 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:48 GMT -======= - - Wed, 13 Nov 2019 11:22:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:39 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:17 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1665,7 +1135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1176' + - '1194' status: code: 200 message: OK @@ -1687,27 +1157,15 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-relay/0.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-relay/0.1.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.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005/authorizationRules/defaultSender/listKeys?api-version=2017-04-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=zL9MjD3KnTjd5+AxxOgqvC49Kxf79F83rC69afOyJnI=;EntityPath=hcname000005","primaryKey":"gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=","secondaryKey":"zL9MjD3KnTjd5+AxxOgqvC49Kxf79F83rC69afOyJnI=","keyName":"defaultSender"}' -======= - string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=NQkNzq82SR7wNOhrLVtIWH3586JKV5veGYS+aVPpJXk=;EntityPath=hcname000005","primaryKey":"IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=","secondaryKey":"NQkNzq82SR7wNOhrLVtIWH3586JKV5veGYS+aVPpJXk=","keyName":"defaultSender"}' ->>>>>>> Re-record test for app service -======= - string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=rcbFfwIyjhHi9xceVkPpwWDIvh3n6T7P0xpBQIhhA/U=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=kGFvDmxrqRKZpE/j7k4tukIMBPFmlbKMsn/HcliFxls=;EntityPath=hcname000005","primaryKey":"rcbFfwIyjhHi9xceVkPpwWDIvh3n6T7P0xpBQIhhA/U=","secondaryKey":"kGFvDmxrqRKZpE/j7k4tukIMBPFmlbKMsn/HcliFxls=","keyName":"defaultSender"}' ->>>>>>> live test + string: '{"primaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=Z+7g2l1l0IsahKZOC4PJNLhF2Y+lULEBgZFJqeYrDFI=;EntityPath=hcname000005","secondaryConnectionString":"Endpoint=sb://hcnamespace000004.servicebus.windows.net/;SharedAccessKeyName=defaultSender;SharedAccessKey=IEh/0A3MaG+3ZRUv3sAcRsRnOasHJESUAoK1p2JLG3g=;EntityPath=hcname000005","primaryKey":"Z+7g2l1l0IsahKZOC4PJNLhF2Y+lULEBgZFJqeYrDFI=","secondaryKey":"IEh/0A3MaG+3ZRUv3sAcRsRnOasHJESUAoK1p2JLG3g=","keyName":"defaultSender"}' headers: cache-control: - no-cache @@ -1716,24 +1174,16 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:49 GMT -======= - - Wed, 13 Nov 2019 11:22:00 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:40 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:17 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1743,15 +1193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1190' ->>>>>>> Re-record test for app service -======= - - '1187' ->>>>>>> live test + - '1197' status: code: 200 message: OK @@ -1759,15 +1201,7 @@ interactions: body: 'b''{"properties": {"serviceBusNamespace": "hcnamespace000004", "relayName": "hcname000005", "relayArmUri": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Relay/namespaces/hcnamespace000004/hybridConnections/hcname000005", "hostname": "vmsq1", "port": 80, "sendKeyName": "defaultSender", "sendKeyValue": -<<<<<<< HEAD -<<<<<<< HEAD - "gjg3TCrxe52OpFzTyCZ7bxm99nCYc8P86nt3fLYqdvY=", "serviceBusSuffix": ".servicebus.windows.net"}}''' -======= - "IKAidFLegjJpJKfLfK1n9SIgtpUqOD4j7TjkuHjSvtA=", "serviceBusSuffix": ".servicebus.windows.net"}}''' ->>>>>>> Re-record test for app service -======= - "rcbFfwIyjhHi9xceVkPpwWDIvh3n6T7P0xpBQIhhA/U=", "serviceBusSuffix": ".servicebus.windows.net"}}''' ->>>>>>> live test + "Z+7g2l1l0IsahKZOC4PJNLhF2Y+lULEBgZFJqeYrDFI=", "serviceBusSuffix": ".servicebus.windows.net"}}''' headers: Accept: - application/json @@ -1784,17 +1218,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1811,15 +1236,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:51 GMT -======= - - Wed, 13 Nov 2019 11:22:02 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:41 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:19 GMT expires: - '-1' pragma: @@ -1837,15 +1254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - - '1198' -======= - - '1173' ->>>>>>> Re-record test for app service -======= - - '1183' ->>>>>>> live test + - '1196' x-powered-by: - ASP.NET status: @@ -1865,17 +1274,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1883,44 +1283,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:51.773","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:02.8933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:42.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:41:19.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"22A82D1051E0B150CD5E3C10446ABCB8D84E063BF09616B874D574FB6A816A41","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3521' - content-type: - - application/json - date: - - Mon, 30 Dec 2019 20:27:51 GMT - etag: - - '"1D5BF4F9BFDF0D0"' -======= - - '3543' -======= - - '3575' ->>>>>>> live test + - '3519' content-type: - application/json date: - - Tue, 31 Dec 2019 02:39:43 GMT + - Sun, 05 Jan 2020 08:41:21 GMT etag: -<<<<<<< HEAD - - '"1D59A1492B938D5"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF838DFEBA80"' ->>>>>>> live test + - '"1D5C3A3E6C42F00"' expires: - '-1' pragma: @@ -1960,17 +1334,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1979,40 +1344,17 @@ interactions: body: string: >>>>>> Re-record test for app service -======= - msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" - destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" - mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" - webSystem="WebSites">>>>>>> live test + ftpPassiveMode="True" userName="hcwebapp000002\$hcwebapp000002" userPWD="5frzQYchcBzg5qgMh6mAeDfgRkxbv8PGtq0uTLww5lBcsXXZXlsZuigMGTGB" destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2024,15 +1366,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:51 GMT -======= - - Wed, 13 Nov 2019 11:22:06 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:45 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:22 GMT expires: - '-1' pragma: @@ -2066,17 +1400,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2093,15 +1418,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:52 GMT -======= - - Wed, 13 Nov 2019 11:22:07 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:46 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:22 GMT expires: - '-1' pragma: @@ -2137,17 +1454,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2155,44 +1463,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:51.773","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:02.8933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:42.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:41:19.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"22A82D1051E0B150CD5E3C10446ABCB8D84E063BF09616B874D574FB6A816A41","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3521' + - '3519' content-type: - application/json date: - - Mon, 30 Dec 2019 20:27:53 GMT + - Sun, 05 Jan 2020 08:41:23 GMT etag: - - '"1D5BF4F9BFDF0D0"' -======= - - '3543' -======= - - '3575' ->>>>>>> live test - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:39:47 GMT - etag: -<<<<<<< HEAD - - '"1D59A1492B938D5"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF838DFEBA80"' ->>>>>>> live test + - '"1D5C3A3E6C42F00"' expires: - '-1' pragma: @@ -2232,17 +1514,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2251,40 +1524,17 @@ interactions: body: string: >>>>>> Re-record test for app service -======= - msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" - destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" - mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" - webSystem="WebSites">>>>>>> live test + ftpPassiveMode="True" userName="hcwebapp000002\$hcwebapp000002" userPWD="5frzQYchcBzg5qgMh6mAeDfgRkxbv8PGtq0uTLww5lBcsXXZXlsZuigMGTGB" destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2296,15 +1546,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:53 GMT -======= - - Wed, 13 Nov 2019 11:22:10 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:48 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:25 GMT expires: - '-1' pragma: @@ -2318,7 +1560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -2340,17 +1582,8 @@ interactions: ParameterSetName: - -g -n --namespace --hybrid-connection User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -2364,15 +1597,7 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:54 GMT -======= - - Wed, 13 Nov 2019 11:22:11 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:50 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:25 GMT expires: - '-1' pragma: @@ -2406,17 +1631,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2424,44 +1640,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/hcwebapp000002","name":"hcwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:27:54.417","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"28A59EA35AAF0BFA8BB4BF89217863EB90C8973A76E9C07EDBB20354E6919900","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:22:11.6","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8B2D1B62EF306A519EF1661359E655DF10EB67838348B31BE398D6075E8E31DE","kind":"app","inboundIpAddress":"40.112.216.189","possibleInboundIpAddresses":"40.112.216.189","outboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","possibleOutboundIpAddresses":"40.112.216.201,40.112.220.31,40.112.222.87,40.112.221.176","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-075.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:39:51.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E8E9749163D96A9B34BEA828FB91F0CA3FA6D68402976F2B155921F0E8D6C819","kind":"app","inboundIpAddress":"104.40.3.53","possibleInboundIpAddresses":"104.40.3.53","outboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196","possibleOutboundIpAddresses":"104.40.3.53,104.40.18.224,104.40.21.79,104.40.21.56,104.40.23.196,52.160.35.119,13.93.183.34","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-075","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"hcwebapp000002","state":"Running","hostNames":["hcwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/hcwebapp000002","repositorySiteName":"hcwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hcwebapp000002.azurewebsites.net","hcwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"hcwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hcwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/hcplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:41:25.88","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"hcwebapp000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"22A82D1051E0B150CD5E3C10446ABCB8D84E063BF09616B874D574FB6A816A41","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"hcwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3521' - content-type: - - application/json - date: - - Mon, 30 Dec 2019 20:27:54 GMT - etag: - - '"1D5BF4F9D916210"' -======= - - '3537' -======= - - '3575' ->>>>>>> live test + - '3520' content-type: - application/json date: - - Tue, 31 Dec 2019 02:39:52 GMT + - Sun, 05 Jan 2020 08:41:26 GMT etag: -<<<<<<< HEAD - - '"1D59A1497E9C100"' ->>>>>>> Re-record test for app service -======= - - '"1D5BF83935C0500"' ->>>>>>> live test + - '"1D5C3A3EA826F80"' expires: - '-1' pragma: @@ -2501,17 +1691,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2520,40 +1701,17 @@ interactions: body: string: >>>>>> Re-record test for app service -======= - msdeploySite="hcwebapp000002" userName="$hcwebapp000002" userPWD="4CF51mpw6xXcYYHL6KimXlKNDRyNA6H889bH0iRHYrz5Ra2X3ftn66jxgFki" - destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" - mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" - webSystem="WebSites">>>>>>> live test + ftpPassiveMode="True" userName="hcwebapp000002\$hcwebapp000002" userPWD="5frzQYchcBzg5qgMh6mAeDfgRkxbv8PGtq0uTLww5lBcsXXZXlsZuigMGTGB" destinationAppUrl="http://hcwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -2565,15 +1723,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:54 GMT -======= - - Wed, 13 Nov 2019 11:22:14 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:53 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:29 GMT expires: - '-1' pragma: @@ -2587,15 +1737,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD -<<<<<<< HEAD - '11999' -======= - - '11991' ->>>>>>> Re-record test for app service -======= - - '11994' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -2615,17 +1757,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service -======= - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2641,15 +1774,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:55 GMT -======= - - Wed, 13 Nov 2019 11:22:15 GMT ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:54 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml new file mode 100644 index 00000000000..938a44df53e --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_triggeredWebjob_list.yaml @@ -0,0 +1,162 @@ +interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-05-27T16:37:17Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-27T16:37:17Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 May 2019 16:37:18 GMT + expires: + - '-1' + pragma: + - no-cache + 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: + - webapp webjob triggered list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs?api-version=2019-08-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/triggeredwebjobs/test-triggered","name":"cliTestApp/test-triggered","type":"Microsoft.Web/sites/triggeredwebjobs","location":"West + US","properties":{"latest_run":{"id":"201905152138309173","name":"201905152138309173","status":"Aborted","start_time":"2019-05-15T21:38:30.9173992Z","end_time":"0001-01-01T00:00:00","duration":"11.18:58:50.9297920","output_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/201905152138309173/output_log.txt","error_url":null,"url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history/201905152138309173","job_name":"test-triggered","trigger":"Schedule + - 0 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58 + * * * *"},"history_url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered/history","scheduler_logs_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/triggered/test-triggered/job_scheduler.log","name":"test-triggered","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/triggeredwebjobs/test-triggered","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/triggered/test-triggered","type":"triggered","error":null,"using_sdk":false,"settings":{"schedule":"0 + 0/2 * * * *"}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1437' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 27 May 2019 16:37:21 GMT + etag: + - '"6ab79922"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 27 May 2019 16:37:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdHT1VZVEYyVzJWUFEyNkVPV09XSFBHTk9CUTdHUVJQWVFUTnwxMjA5NDk1NzEwNEQyM0ZBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml index e221139433b..f55288f025c 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetDelegation.yaml @@ -13,23 +13,15 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:40:01Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:41:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -38,11 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:14 GMT -======= - - Tue, 31 Dec 2019 02:40:05 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:40 GMT expires: - '-1' pragma: @@ -76,12 +64,8 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -89,26 +73,15 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"79f98f63-b77e-485e-a72c-27415795f23e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5f7380b8-09fd-4cef-866e-15428248074e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"50cf3bf9-75fb-4385-8541-80ede97bd3a3\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"b5ba0a19-110f-4b5f-918e-60b61169b475\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"1426d6a2-ef58-4434-8581-8f9d7244bb25\",\r\n \"addressSpace\": ->>>>>>> live test + \ \"resourceGuid\": \"a856355f-476c-4e74-8454-72d10dd712b4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"79f98f63-b77e-485e-a72c-27415795f23e\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"b5ba0a19-110f-4b5f-918e-60b61169b475\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"5f7380b8-09fd-4cef-866e-15428248074e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -117,11 +90,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bce31015-dc48-41f4-849f-dfceb74e1d63?api-version=2019-09-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5e2fd1c5-f4a2-434e-aa1d-0045f00c8fd8?api-version=2019-09-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d104a94f-f576-441b-9dbd-cd49a6fc4abd?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -129,11 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:15 GMT -======= - - Tue, 31 Dec 2019 02:40:11 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:46 GMT expires: - '-1' pragma: @@ -146,13 +111,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 4a89b813-7cc1-43b2-af16-1361cfe93858 -======= - - 1c48666c-5bc9-46ea-a7b9-d76ae09970f3 ->>>>>>> live test + - ea8df9b7-f7b8-4931-a0e6-4f0a2d8699e5 x-ms-ratelimit-remaining-subscription-writes: - - '1172' + - '1197' status: code: 201 message: Created @@ -170,17 +131,10 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bce31015-dc48-41f4-849f-dfceb74e1d63?api-version=2019-09-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5e2fd1c5-f4a2-434e-aa1d-0045f00c8fd8?api-version=2019-09-01 ->>>>>>> live test + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d104a94f-f576-441b-9dbd-cd49a6fc4abd?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -192,11 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:19 GMT -======= - - Tue, 31 Dec 2019 02:40:16 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:50 GMT expires: - '-1' pragma: @@ -213,11 +163,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 5322d706-5064-428d-b731-1061bd997e2d -======= - - cc9e2aa3-a261-4bf6-8991-3526ce975108 ->>>>>>> live test + - b925b5de-9217-4642-b7ec-50df24c30fca status: code: 200 message: OK @@ -235,37 +181,22 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.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.Network/virtualNetworks/swiftname000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"52945149-8073-4f79-be56-e8ddf915e877\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"26cfc07b-1501-49b8-a252-d69ddc8c89cb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"50cf3bf9-75fb-4385-8541-80ede97bd3a3\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"3aecbac4-ead4-4f2e-a396-d97a4f4049ff\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1426d6a2-ef58-4434-8581-8f9d7244bb25\",\r\n \"addressSpace\": ->>>>>>> live test + \ \"resourceGuid\": \"a856355f-476c-4e74-8454-72d10dd712b4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"52945149-8073-4f79-be56-e8ddf915e877\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"3aecbac4-ead4-4f2e-a396-d97a4f4049ff\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"26cfc07b-1501-49b8-a252-d69ddc8c89cb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -280,15 +211,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:19 GMT - etag: - - W/"52945149-8073-4f79-be56-e8ddf915e877" -======= - - Tue, 31 Dec 2019 02:40:17 GMT + - Sun, 05 Jan 2020 08:41:50 GMT etag: - - W/"3aecbac4-ead4-4f2e-a396-d97a4f4049ff" ->>>>>>> live test + - W/"26cfc07b-1501-49b8-a252-d69ddc8c89cb" expires: - '-1' pragma: @@ -305,11 +230,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 845c78be-98d6-48ba-b213-1703f58a8eb3 -======= - - 0e94fb8a-cd9c-4ba8-98f3-2ec66f8e545c ->>>>>>> live test + - 44263bda-dd75-4490-b833-27d9131b1482 status: code: 200 message: OK @@ -327,12 +248,8 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -340,11 +257,7 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"52945149-8073-4f79-be56-e8ddf915e877\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"3aecbac4-ead4-4f2e-a396-d97a4f4049ff\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"26cfc07b-1501-49b8-a252-d69ddc8c89cb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -357,15 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:19 GMT + - Sun, 05 Jan 2020 08:41:52 GMT etag: - - W/"52945149-8073-4f79-be56-e8ddf915e877" -======= - - Tue, 31 Dec 2019 02:40:18 GMT - etag: - - W/"3aecbac4-ead4-4f2e-a396-d97a4f4049ff" ->>>>>>> live test + - W/"26cfc07b-1501-49b8-a252-d69ddc8c89cb" expires: - '-1' pragma: @@ -382,11 +289,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - fb8ae1b3-5eca-4e9b-9624-b64f6fd41969 -======= - - 7d28148d-55f5-4b9a-9573-4506aa5b1ab4 ->>>>>>> live test + - 4d025645-2e7d-4ef9-bc17-7d331425ee4b status: code: 200 message: OK @@ -412,12 +315,8 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -425,22 +324,14 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"3a1246d1-ffb9-4af3-84c4-b49fd19e6816\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"d15c40b5-e6ce-4c79-ac99-bf014fc69682\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"b755be52-5f7c-442f-ad6c-f54186913871\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"3a1246d1-ffb9-4af3-84c4-b49fd19e6816\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"d15c40b5-e6ce-4c79-ac99-bf014fc69682\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"b755be52-5f7c-442f-ad6c-f54186913871\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -450,11 +341,7 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fa3d376b-cf99-4371-9de6-1d7786a6a6d8?api-version=2019-09-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79ce4cad-bb48-4bd3-a017-6341a53dce3d?api-version=2019-09-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40868298-9293-407c-8bb6-b57ca3dc7d3d?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -462,11 +349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:19 GMT -======= - - Tue, 31 Dec 2019 02:40:19 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:53 GMT expires: - '-1' pragma: @@ -483,15 +366,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - a46aea3b-66da-4e1c-af56-1050f0c8b95f - x-ms-ratelimit-remaining-subscription-writes: - - '1198' -======= - - fcb29143-9768-4707-a21c-30876c41aa38 + - 2ffc17a4-7d46-430c-9556-49c5ae5ea504 x-ms-ratelimit-remaining-subscription-writes: - - '1180' ->>>>>>> live test + - '1195' status: code: 200 message: OK @@ -509,17 +386,10 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fa3d376b-cf99-4371-9de6-1d7786a6a6d8?api-version=2019-09-01 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79ce4cad-bb48-4bd3-a017-6341a53dce3d?api-version=2019-09-01 ->>>>>>> live test + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/40868298-9293-407c-8bb6-b57ca3dc7d3d?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -531,11 +401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:23 GMT -======= - - Tue, 31 Dec 2019 02:40:24 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:56 GMT expires: - '-1' pragma: @@ -552,11 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - fd197ef3-16b2-4997-94a5-78515737e875 -======= - - bcf81ec7-4cf2-4ec0-9bb6-d6256b016c2c ->>>>>>> live test + - 1b14804a-788d-444f-b634-c72cf9f2b7d6 status: code: 200 message: OK @@ -574,33 +436,21 @@ interactions: ParameterSetName: - -g --vnet --name --delegations --service-endpoints User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.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.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -616,15 +466,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:23 GMT - etag: - - W/"1ecb1752-ae35-4918-a641-e75d80c49d0f" -======= - - Tue, 31 Dec 2019 02:40:25 GMT + - Sun, 05 Jan 2020 08:41:57 GMT etag: - - W/"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6" ->>>>>>> live test + - W/"0fe9446f-47df-4daf-aa41-a9e6d09607aa" expires: - '-1' pragma: @@ -641,11 +485,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - e0f9611b-c9fc-4369-bd9a-3da68041071e -======= - - 9da7f909-7a3c-49b1-b386-56b72d995f64 ->>>>>>> live test + - 06affeb2-198b-466e-b1a3-0c417fd9cc8d status: code: 200 message: OK @@ -663,23 +503,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:40:01Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:41:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -688,11 +520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:25 GMT -======= - - Tue, 31 Dec 2019 02:40:25 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:59 GMT expires: - '-1' pragma: @@ -725,13 +553,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -747,11 +570,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:24 GMT -======= - - Tue, 31 Dec 2019 02:40:27 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:41:59 GMT expires: - '-1' pragma: @@ -769,7 +588,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' x-powered-by: - ASP.NET status: @@ -789,23 +608,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:40:01Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:41:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -814,11 +625,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:25 GMT -======= - - Tue, 31 Dec 2019 02:40:28 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:00 GMT expires: - '-1' pragma: @@ -851,13 +658,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -865,13 +667,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":21664,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-119_21664","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= - US","properties":{"serverFarmId":24837,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24837","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":24020,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_24020","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' headers: cache-control: - no-cache @@ -880,11 +677,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:30 GMT -======= - - Tue, 31 Dec 2019 02:40:38 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:08 GMT expires: - '-1' pragma: @@ -902,11 +695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD - - '1198' -======= - - '1185' ->>>>>>> live test + - '1196' x-powered-by: - ASP.NET status: @@ -926,13 +715,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -940,13 +724,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":21664,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-119_21664","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= - US","properties":{"serverFarmId":24837,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24837","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":24020,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_24020","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' headers: cache-control: - no-cache @@ -955,11 +734,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:31 GMT -======= - - Tue, 31 Dec 2019 02:40:40 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:10 GMT expires: - '-1' pragma: @@ -1000,13 +775,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1022,11 +792,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:31 GMT -======= - - Tue, 31 Dec 2019 02:40:40 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:11 GMT expires: - '-1' pragma: @@ -1044,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' x-powered-by: - ASP.NET status: @@ -1064,13 +830,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1078,13 +839,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"serverFarmId":21664,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-119_21664","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= - US","properties":{"serverFarmId":24837,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-115_24837","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":24020,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_24020","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' headers: cache-control: - no-cache @@ -1093,11 +849,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:32 GMT -======= - - Tue, 31 Dec 2019 02:40:42 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:12 GMT expires: - '-1' pragma: @@ -1141,13 +893,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1155,32 +902,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:34.3133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7E22EBD4559F934019ECB3BD03C1E8CE3F851A52DE1D098FFA233510B8C2ADE5","kind":"app","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.0.244,157.56.167.87,157.56.164.95","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:40:46.2266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B67C4869D9FE9894233E3FF05FC57B20535BB0D2F3473026D51D42B49DECF258","kind":"app","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.193.168,40.78.1.240,40.78.1.3","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:42:18.6833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8126C89A21269F0924BF1BB8A898C77B4A787BD21E89D68BAA0D918F0A039D0A","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"104.40.12.222,104.40.2.67,104.40.9.121","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3580' - content-type: - - application/json - date: - - Mon, 30 Dec 2019 20:26:51 GMT - etag: - - '"1D5BF4F6E0AFDB5"' -======= - - '3569' + - '3568' content-type: - application/json date: - - Tue, 31 Dec 2019 02:41:03 GMT + - Sun, 05 Jan 2020 08:42:36 GMT etag: - - '"1D5BF83B4A38295"' ->>>>>>> live test + - '"1D5C3A40A3A2555"' expires: - '-1' pragma: @@ -1198,7 +931,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -1222,13 +955,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1237,31 +965,17 @@ interactions: body: string: >>>>>> live test + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-113dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="swiftwebapp000002\$swiftwebapp000002" userPWD="blZCyw3WnoGwuyrMqcvSlCKbEyBpL0QC0Ycdajrbuv1jtXrdNdEtBgwAn6Re" destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1273,11 +987,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:51 GMT -======= - - Tue, 31 Dec 2019 02:41:05 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:37 GMT expires: - '-1' pragma: @@ -1291,11 +1001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: -<<<<<<< HEAD - - '11998' -======= - - '11996' ->>>>>>> live test + - '11999' x-powered-by: - ASP.NET status: @@ -1315,40 +1021,24 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.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.Network/virtualNetworks?api-version=2019-09-01 response: body: -<<<<<<< HEAD - string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnamewws6wmkj7codp7y","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetsfjpou6bbq3ri","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceAssociationLinks":[{"name":"AppServiceLink","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/serviceAssociationLinks/AppServiceLink","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/serverfarms","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Web/serverfarms/swiftplanchgzn53tkl6z3pz","allowDelete":false,"locations":[]}}],"delegations":[{"name":"delegation","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/delegations/delegation","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverFarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' -======= - string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1426d6a2-ef58-4434-8581-8f9d7244bb25","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ->>>>>>> live test + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a856355f-476c-4e74-8454-72d10dd712b4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"zuhvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3731e70e-fee6-4a37-97f0-e470055c8f2e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"zuhsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet/subnets/zuhsubnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '18351' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 30 Dec 2019 20:26:52 GMT -======= - - '17238' + - '13364' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:41:07 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:40 GMT expires: - '-1' pragma: @@ -1360,18 +1050,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: -<<<<<<< HEAD - - dbd3b331-fb99-4861-b8da-acc28f143fb0 - - ecea0f3b-17c0-4b9e-a150-c6bd664b5557 - - 7b76307e-da15-4655-8228-9b4659a20a44 -======= - - c980b40b-5978-4a0e-9a82-96111e231dcf - - ed3e43bc-4592-4e6c-9262-0af19c7e52cb - - 495400df-5009-4dd5-8fc9-a42f8b0364ca - - c2f6aa26-6124-40bd-b882-93c78c703e42 - - e724b199-442d-4b6f-92bc-ac29f9060386 - - 85517542-fb98-4b00-8d32-4d527a1f87cd ->>>>>>> live test + - 01fdd919-2a67-4244-a21c-07effd537114 + - bfc377d6-3dde-4ebd-8670-f91ab485a640 + - 4155cc4a-738c-45b9-ba24-53c7349d21f7 + - 8ae29493-57a6-4b98-b288-743cb8c98220 + - 19077dcd-237f-4229-9d61-d4e5ce016dd3 status: code: 200 message: OK @@ -1389,13 +1072,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1403,32 +1081,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-119.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:34.6833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7E22EBD4559F934019ECB3BD03C1E8CE3F851A52DE1D098FFA233510B8C2ADE5","kind":"app","inboundIpAddress":"104.40.11.192","possibleInboundIpAddresses":"104.40.11.192","outboundIpAddresses":"104.40.0.244,157.56.167.87,157.56.164.95","possibleOutboundIpAddresses":"104.40.11.192,157.56.167.77,157.56.167.122,157.56.164.75,104.40.14.12,104.40.0.244,157.56.167.87,157.56.164.95","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-119","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-115.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:40:46.9533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"B67C4869D9FE9894233E3FF05FC57B20535BB0D2F3473026D51D42B49DECF258","kind":"app","inboundIpAddress":"40.112.192.69","possibleInboundIpAddresses":"40.112.192.69","outboundIpAddresses":"40.112.193.168,40.78.1.240,40.78.1.3","possibleOutboundIpAddresses":"40.112.192.69,40.112.196.57,40.112.198.128,40.78.3.182,40.78.2.143,40.112.193.168,40.78.1.240,40.78.1.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-115","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:42:19.0933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8126C89A21269F0924BF1BB8A898C77B4A787BD21E89D68BAA0D918F0A039D0A","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"104.40.12.222,104.40.2.67,104.40.9.121","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '3578' + - '3566' content-type: - application/json date: - - Mon, 30 Dec 2019 20:26:52 GMT + - Sun, 05 Jan 2020 08:42:40 GMT etag: - - '"1D5BF4F6E0AFDB5"' -======= - - '3567' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:41:09 GMT - etag: - - '"1D5BF83B4A38295"' ->>>>>>> live test + - '"1D5C3A40A3A2555"' expires: - '-1' pragma: @@ -1464,40 +1128,24 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.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.Network/virtualNetworks?api-version=2019-09-01 response: body: -<<<<<<< HEAD - string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnamewws6wmkj7codp7y","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetsfjpou6bbq3ri","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceAssociationLinks":[{"name":"AppServiceLink","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/serviceAssociationLinks/AppServiceLink","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","type":"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/serverfarms","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Web/serverfarms/swiftplanchgzn53tkl6z3pz","allowDelete":false,"locations":[]}}],"delegations":[{"name":"delegation","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd53b7ny45fosepihcjrqbxtpeiq7ylgfu6lhp3ecxsfdq2ujiqfrd6bfgv7jadb2g/providers/Microsoft.Network/virtualNetworks/swiftnamewws6wmkj7codp7y/subnets/swiftsubnetsfjpou6bbq3ri/delegations/delegation","etag":"W/\"08ae915b-8028-457c-aa82-997febfa2bbc\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverFarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' -======= - string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1426d6a2-ef58-4434-8581-8f9d7244bb25","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"aa62c2e9-dfa5-4b2d-8a59-46e8f5bdae4f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.ContainerRegistry","locations":["*"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ->>>>>>> live test + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"a856355f-476c-4e74-8454-72d10dd712b4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0","etag":"W/\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"zuhvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3731e70e-fee6-4a37-97f0-e470055c8f2e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"zuhsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet/subnets/zuhsubnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD - - '18351' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 30 Dec 2019 20:26:52 GMT -======= - - '17238' + - '13364' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:41:11 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:41 GMT expires: - '-1' pragma: @@ -1509,18 +1157,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: -<<<<<<< HEAD - - 15a31fb1-4d27-42a9-bd01-f52afed7a944 - - 0bb7e8a0-cbb9-42db-83aa-68ce2bc62da4 - - 5919040e-9a32-4a80-9826-2ca1bb663e78 -======= - - 1a2e8faa-4665-4771-a6dd-774e774e3c72 - - 075672d7-6207-4eaf-90ed-925a1f006a45 - - f2950287-8a68-41b4-a42d-8de2e1ed8e61 - - a141dd37-8f6c-44cf-aaa7-cbdd493b5ac6 - - 0085e497-0541-470e-bb2c-ad3e0272c8ab - - 18d950c3-070b-4353-b2fa-44341d11a86e ->>>>>>> live test + - 81316803-76fe-41b6-a628-acddf9cce6f5 + - 568ce178-2a6d-45a8-a14b-0de5267ea564 + - 4703a247-4fe1-4c42-a636-adcdfde09b89 + - d6fe9263-b5dd-429c-9a3f-9031868e3ff7 + - 82f2f1fa-74fb-4fc1-b624-51560e45c83a status: code: 200 message: OK @@ -1538,13 +1179,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1561,15 +1197,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:52 GMT - etag: - - '"1D5BF4F6E0AFDB5"' -======= - - Tue, 31 Dec 2019 02:41:12 GMT + - Sun, 05 Jan 2020 08:42:43 GMT etag: - - '"1D5BF83B4A38295"' ->>>>>>> live test + - '"1D5C3A40A3A2555"' expires: - '-1' pragma: @@ -1605,12 +1235,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1618,22 +1244,14 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1649,15 +1267,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:52 GMT + - Sun, 05 Jan 2020 08:42:42 GMT etag: - - W/"1ecb1752-ae35-4918-a641-e75d80c49d0f" -======= - - Tue, 31 Dec 2019 02:41:13 GMT - etag: - - W/"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6" ->>>>>>> live test + - W/"0fe9446f-47df-4daf-aa41-a9e6d09607aa" expires: - '-1' pragma: @@ -1674,11 +1286,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 23f19c95-face-4a55-93d3-de0473cc684f -======= - - 3c85bfcb-dbf2-46d0-ab42-1034237d9ff2 ->>>>>>> live test + - 7a9abe27-a19b-4076-81ae-3761d01a5747 status: code: 200 message: OK @@ -1696,12 +1304,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1709,22 +1313,14 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Storage\",\r\n \"locations\": [\r\n \ \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1ecb1752-ae35-4918-a641-e75d80c49d0f\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"0fe9446f-47df-4daf-aa41-a9e6d09607aa\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1740,15 +1336,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:52 GMT - etag: - - W/"1ecb1752-ae35-4918-a641-e75d80c49d0f" -======= - - Tue, 31 Dec 2019 02:41:14 GMT + - Sun, 05 Jan 2020 08:42:43 GMT etag: - - W/"687c179d-9ccf-43c4-bb4b-8d4850fdc4a6" ->>>>>>> live test + - W/"0fe9446f-47df-4daf-aa41-a9e6d09607aa" expires: - '-1' pragma: @@ -1765,11 +1355,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - b7e293fa-7175-421e-818e-0e89600dfe61 -======= - - ddb0f071-dd1f-4594-aa57-ec1255ba7516 ->>>>>>> live test + - 0ef5ffef-2bde-4db5-8803-4c342a86a90e status: code: 200 message: OK @@ -1792,13 +1378,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1815,15 +1396,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:54 GMT + - Sun, 05 Jan 2020 08:42:46 GMT etag: - - '"1D5BF4F6E0AFDB5"' -======= - - Tue, 31 Dec 2019 02:41:16 GMT - etag: - - '"1D5BF83B4A38295"' ->>>>>>> live test + - '"1D5C3A40A3A2555"' expires: - '-1' pragma: @@ -1841,7 +1416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1167' + - '1193' x-powered-by: - ASP.NET status: @@ -1861,24 +1436,15 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2019-08-01 response: body: -<<<<<<< HEAD - string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/50cf3bf9-75fb-4385-8541-80ede97bd3a3_swiftsubnet000004","name":"50cf3bf9-75fb-4385-8541-80ede97bd3a3_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West -======= - string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/1426d6a2-ef58-4434-8581-8f9d7244bb25_swiftsubnet000004","name":"1426d6a2-ef58-4434-8581-8f9d7244bb25_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West ->>>>>>> live test + string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/a856355f-476c-4e74-8454-72d10dd712b4_swiftsubnet000004","name":"a856355f-476c-4e74-8454-72d10dd712b4_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' headers: cache-control: @@ -1888,11 +1454,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:54 GMT -======= - - Tue, 31 Dec 2019 02:41:19 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:42:47 GMT expires: - '-1' pragma: @@ -1928,12 +1490,8 @@ interactions: ParameterSetName: - -g -n --vnet-name User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1941,19 +1499,11 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"59f00cc1-a08f-484e-900e-8d30b94ab1af\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"c34b1f0c-a88f-4dd0-8f13-dab6dc8aa92c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n - \ \"etag\": \"W/\\\"59f00cc1-a08f-484e-900e-8d30b94ab1af\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"83dea230-35e4-4414-a2c7-9dd5c3de014d\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n - \ \"etag\": \"W/\\\"83dea230-35e4-4414-a2c7-9dd5c3de014d\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"c34b1f0c-a88f-4dd0-8f13-dab6dc8aa92c\\\"\",\r\n \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"linkedResourceType\": \"Microsoft.Web/serverfarms\",\r\n \"link\": @@ -1964,11 +1514,7 @@ interactions: [\r\n \"westus\",\r\n \"eastus\"\r\n ]\r\n }\r\n \ ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/0\",\r\n -<<<<<<< HEAD - \ \"etag\": \"W/\\\"59f00cc1-a08f-484e-900e-8d30b94ab1af\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"83dea230-35e4-4414-a2c7-9dd5c3de014d\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"c34b1f0c-a88f-4dd0-8f13-dab6dc8aa92c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverfarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1984,15 +1530,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:55 GMT - etag: - - W/"59f00cc1-a08f-484e-900e-8d30b94ab1af" -======= - - Tue, 31 Dec 2019 02:41:20 GMT + - Sun, 05 Jan 2020 08:42:47 GMT etag: - - W/"83dea230-35e4-4414-a2c7-9dd5c3de014d" ->>>>>>> live test + - W/"c34b1f0c-a88f-4dd0-8f13-dab6dc8aa92c" expires: - '-1' pragma: @@ -2009,11 +1549,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD - - 01a7ab9d-ed6c-4430-877b-5f5234d07b17 -======= - - f0cc0781-692f-4add-a238-98500182dcd1 ->>>>>>> live test + - c993f255-176c-4311-adfa-6e9d685ae43b status: code: 200 message: OK @@ -2033,13 +1569,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -2053,11 +1584,7 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:43 GMT -======= - - Tue, 31 Dec 2019 02:42:09 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:43:36 GMT expires: - '-1' pragma: @@ -2071,7 +1598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14996' x-powered-by: - ASP.NET status: @@ -2091,13 +1618,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2113,11 +1635,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:44 GMT -======= - - Tue, 31 Dec 2019 02:42:11 GMT ->>>>>>> live test + - Sun, 05 Jan 2020 08:43:37 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml index 6f06c2f23b3..f1c52e7c38f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_vnetE2E.yaml @@ -13,31 +13,15 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-17T23:11:10Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:23Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T02:14:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -46,19 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:14 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:13 GMT -======= - - Wed, 13 Nov 2019 11:09:23 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:26 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:14:43 GMT expires: - '-1' pragma: @@ -92,22 +64,8 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -115,48 +73,15 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1223359a-3691-4865-ad41-b55ae59d3abf\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"fdb79e0d-9bb9-477c-9b2b-55875c87e30c\",\r\n \"addressSpace\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"f591d4e1-cd06-4001-85a9-bb18440a38f0\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"603abb25-8958-4bad-9c73-7fee8423200f\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"b437b93b-b720-40ca-af73-59b824ddd2c0\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f8015ce3-c97a-4ceb-92c5-520f6c0f7226\",\r\n \"addressSpace\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"33185099-a536-403c-8bd9-4069e969e909\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"45225766-6fc2-4e96-9df8-5f91cbf9ef93\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"75cf66da-cb29-42f4-83c2-dc9ef51e9af0\",\r\n \"addressSpace\": ->>>>>>> live test + \ \"resourceGuid\": \"603678d7-11df-42b2-99ec-3f7589898863\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"1223359a-3691-4865-ad41-b55ae59d3abf\\\"\",\r\n -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"f591d4e1-cd06-4001-85a9-bb18440a38f0\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"b437b93b-b720-40ca-af73-59b824ddd2c0\\\"\",\r\n ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"33185099-a536-403c-8bd9-4069e969e909\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"45225766-6fc2-4e96-9df8-5f91cbf9ef93\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -165,19 +90,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f67ff03-8bef-427f-9be3-11233d5b57ea?api-version=2019-09-01 -======= -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac3a76b6-c475-46e7-bbe6-b9a7b44d4b5c?api-version=2019-09-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1392e8eb-deae-46b2-b081-33c421060832?api-version=2019-09-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/359da5e2-4ea7-46c2-af21-da4b0b576580?api-version=2019-09-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fbb09cf1-58d9-4922-8514-63bc11061909?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -185,19 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:16 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:16 GMT -======= - - Wed, 13 Nov 2019 11:09:27 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:30 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:14:49 GMT expires: - '-1' pragma: @@ -210,27 +111,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - a0ecb030-d8d3-48e1-baa3-84e00e729bf4 + - 989c1c70-951c-4d2e-a6b9-c5ac963608bb x-ms-ratelimit-remaining-subscription-writes: - - '1198' -======= -<<<<<<< HEAD - - 778294c6-5dbc-4c95-8d9e-349b15276fe5 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' -======= - - d0f42550-0908-4725-a7d0-bd9a1021a140 - x-ms-ratelimit-remaining-subscription-writes: - - '1181' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 3a3ef8de-6c72-4606-814d-09b61423af90 - x-ms-ratelimit-remaining-subscription-writes: - - '1173' ->>>>>>> live test + - '1196' status: code: 201 message: Created @@ -248,28 +131,10 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET -<<<<<<< HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f67ff03-8bef-427f-9be3-11233d5b57ea?api-version=2019-09-01 -======= - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ac3a76b6-c475-46e7-bbe6-b9a7b44d4b5c?api-version=2019-09-01 -======= -======= ->>>>>>> live test - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET -<<<<<<< HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1392e8eb-deae-46b2-b081-33c421060832?api-version=2019-09-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/359da5e2-4ea7-46c2-af21-da4b0b576580?api-version=2019-09-01 ->>>>>>> live test + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fbb09cf1-58d9-4922-8514-63bc11061909?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -281,19 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:19 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:18 GMT -======= - - Wed, 13 Nov 2019 11:09:31 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:34 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:14:52 GMT expires: - '-1' pragma: @@ -310,19 +163,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 8eba40dc-b129-4d6f-92fe-cdf7d5a77e93 -======= -<<<<<<< HEAD - - 294da45c-99cb-4402-bcd4-461aed81acfc -======= - - 565d2be0-bebf-4103-8e9b-d8cb83381cd1 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 415a1cee-1219-40d1-9490-b7da4692adfb ->>>>>>> live test + - b7b8a04c-3a5a-43b7-abc3-1feb1623cbe1 status: code: 200 message: OK @@ -340,69 +181,22 @@ interactions: ParameterSetName: - -g -n --address-prefix --subnet-name --subnet-prefix User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.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.Network/virtualNetworks/swiftname000005?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftname000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fdb79e0d-9bb9-477c-9b2b-55875c87e30c\",\r\n \"addressSpace\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"deaca25e-444b-48a3-997c-c14ab5bc8703\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"603abb25-8958-4bad-9c73-7fee8423200f\",\r\n \"addressSpace\": -======= - \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f8015ce3-c97a-4ceb-92c5-520f6c0f7226\",\r\n \"addressSpace\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"75cf66da-cb29-42f4-83c2-dc9ef51e9af0\",\r\n \"addressSpace\": ->>>>>>> live test + \ \"resourceGuid\": \"603678d7-11df-42b2-99ec-3f7589898863\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"swiftsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"deaca25e-444b-48a3-997c-c14ab5bc8703\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -417,27 +211,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:19 GMT - etag: - - W/"60592257-15f5-4efe-a75e-627e48d7ef21" -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:18 GMT + - Mon, 06 Jan 2020 02:14:53 GMT etag: - - W/"deaca25e-444b-48a3-997c-c14ab5bc8703" -======= - - Wed, 13 Nov 2019 11:09:31 GMT - etag: - - W/"9a5b08a2-353f-44f9-b7eb-041f1b697afb" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:34 GMT - etag: - - W/"4c9eb9b9-54b8-44ac-ab25-22d37cc86054" ->>>>>>> live test + - W/"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba" expires: - '-1' pragma: @@ -454,19 +230,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 9e161d45-e18d-489e-818c-88c8681140d5 -======= -<<<<<<< HEAD - - 521373f3-26f7-45de-a17e-a55aa571bbfa -======= - - 0e81574b-96e4-43ee-90ec-3a0a10fac0d7 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 615f96fd-a64f-4a2a-9a06-30631c57100e ->>>>>>> live test + - f8a6ab8d-f8a0-4ec1-8630-13e92510d200 status: code: 200 message: OK @@ -484,31 +248,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-17T23:11:10Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:23Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T02:14:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -517,19 +265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:20 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:20 GMT -======= - - Wed, 13 Nov 2019 11:09:33 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:36 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:14:55 GMT expires: - '-1' pragma: @@ -562,22 +298,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -593,19 +315,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:21 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:20 GMT -======= - - Wed, 13 Nov 2019 11:09:34 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:36 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:14:55 GMT expires: - '-1' pragma: @@ -623,7 +333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1197' x-powered-by: - ASP.NET status: @@ -643,31 +353,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-30T20:26:11Z"},"properties":{"provisioningState":"Succeeded"}}' -======= -<<<<<<< HEAD - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-17T23:11:10Z"},"properties":{"provisioningState":"Succeeded"}}' -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-11-13T11:09:20Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:38:23Z"},"properties":{"provisioningState":"Succeeded"}}' ->>>>>>> live test + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T02:14:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -676,19 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:20 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:20 GMT -======= - - Wed, 13 Nov 2019 11:09:34 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:37 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:14:56 GMT expires: - '-1' pragma: @@ -721,22 +403,8 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -744,23 +412,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= -<<<<<<< HEAD - US","properties":{"serverFarmId":23337,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23337","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= - US","properties":{"serverFarmId":25610,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":25217,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-095_25217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26111,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26111","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' headers: cache-control: - no-cache @@ -769,19 +422,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:26 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:26 GMT -======= - - Wed, 13 Nov 2019 11:09:45 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:47 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:07 GMT expires: - '-1' pragma: @@ -799,19 +440,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: -<<<<<<< HEAD -<<<<<<< HEAD - '1198' -======= -<<<<<<< HEAD - - '1199' -======= - - '1186' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '1174' ->>>>>>> live test x-powered-by: - ASP.NET status: @@ -831,22 +460,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -854,23 +469,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= -<<<<<<< HEAD - US","properties":{"serverFarmId":23337,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23337","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= - US","properties":{"serverFarmId":25610,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":25217,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-095_25217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26111,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26111","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' headers: cache-control: - no-cache @@ -879,19 +479,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:26 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:27 GMT -======= - - Wed, 13 Nov 2019 11:09:46 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:50 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:09 GMT expires: - '-1' pragma: @@ -932,22 +520,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -963,19 +537,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:27 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:26 GMT -======= - - Wed, 13 Nov 2019 11:09:47 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:50 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:10 GMT expires: - '-1' pragma: @@ -993,7 +555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1199' x-powered-by: - ASP.NET status: @@ -1013,22 +575,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1036,23 +584,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","name":"swiftplan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"serverFarmId":25462,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-101_25462","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= -<<<<<<< HEAD - US","properties":{"serverFarmId":23337,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0a60a016-d28c-428c-b5a6-7435ec6f40e3","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-113_23337","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' -======= - US","properties":{"serverFarmId":25610,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-089_25610","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"serverFarmId":25217,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-095_25217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' ->>>>>>> live test + US","properties":{"serverFarmId":26111,"name":"swiftplan000003","workerSize":"D1","workerSizeId":3,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"D1","currentWorkerSizeId":3,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":20,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26111","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"P1v2","tier":"PremiumV2","size":"P1v2","family":"Pv2","capacity":1}}' headers: cache-control: - no-cache @@ -1061,19 +594,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:27 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:28 GMT -======= - - Wed, 13 Nov 2019 11:09:48 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:38:52 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:10 GMT expires: - '-1' pragma: @@ -1099,17 +620,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], -<<<<<<< HEAD -<<<<<<< HEAD "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}''' -======= - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' ->>>>>>> Re-record test for app service -======= - "alwaysOn": true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": - false}}''' ->>>>>>> live test headers: Accept: - application/json @@ -1120,36 +632,14 @@ interactions: Connection: - keep-alive Content-Length: -<<<<<<< HEAD -<<<<<<< HEAD - '558' -======= - - '520' ->>>>>>> Re-record test for app service -======= - - '538' ->>>>>>> live test Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1157,58 +647,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:30.05","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"47DDC8D312FD4E7B4E131F59B3F5252FCF54C49F046B76F2C89DF9011F56BFD0","kind":"app","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"13.91.97.179,13.91.103.21,13.91.99.109","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-17T23:11:29.9833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AB1C7EE1D87A4539A3BFBEE4406496B037D61DC2E250B12C494BF1B89EA96BFA","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"104.40.12.222,104.40.2.67,104.40.9.121","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:51.85","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7EB61A8421B57265091B3591B6F91C39F567A54318A335173483E8039FB65F5","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"13.64.105.5,13.64.108.146","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:56.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0B38AEEEC4DD03D989E148D11CBB00368F0AA5BD5319A1BAFD610F21440DB75D","kind":"app","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.64.75.221,13.64.78.152","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T02:15:16.2233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C493C5C13D4456CD2D6CF8C88273BFBEF2C221D3A24BF4D87AF8E096B12DCBE7","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.85.159.5,13.91.108.158","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3569' -======= -<<<<<<< HEAD - - '3568' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Mon, 30 Dec 2019 20:26:46 GMT - etag: -<<<<<<< HEAD - - '"1D5BF4F6B7F70D5"' -======= - - '"1D5B52F512A1360"' -======= - - '3543' + - '3546' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:10 GMT + - Mon, 06 Jan 2020 02:15:33 GMT etag: - - '"1D59A12DF430D60"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3538' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:39:14 GMT - etag: - - '"1D5BF8372D3C5C0"' ->>>>>>> live test + - '"1D5C437230C0515"' expires: - '-1' pragma: @@ -1226,7 +676,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '499' x-powered-by: - ASP.NET status: @@ -1250,22 +700,8 @@ interactions: ParameterSetName: - -g -n --plan User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1274,49 +710,17 @@ interactions: body: string: >>>>>> Re-record test for app service - destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" - mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" - webSystem="WebSites">>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - msdeploySite="swiftwebapp000002" userName="$swiftwebapp000002" userPWD="bhnAKQrt8R4kY66xPMcqk6SuS0nkoB2LNhc3vioPzXQfQMWFGip8Tnvx3vM4" + msdeploySite="swiftwebapp000002" userName="$swiftwebapp000002" userPWD="mp7SHtXo7Tt6rv7gLffSgMhi3hKEuTrGW5GhFkokpxBvhrr98xzQ186qTBvi" destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites">>>>>>> live test + - ReadOnly - FTP" publishMethod="FTP" publishUrl="ftp://waws-prod-bay-083dr.ftp.azurewebsites.windows.net/site/wwwroot" + ftpPassiveMode="True" userName="swiftwebapp000002\$swiftwebapp000002" userPWD="mp7SHtXo7Tt6rv7gLffSgMhi3hKEuTrGW5GhFkokpxBvhrr98xzQ186qTBvi" destinationAppUrl="http://swiftwebapp000002.azurewebsites.net" SQLServerDBConnectionString="" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" webSystem="WebSites"> @@ -1328,19 +732,7 @@ interactions: content-type: - application/xml date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:46 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:47 GMT -======= - - Wed, 13 Nov 2019 11:10:11 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:14 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:35 GMT expires: - '-1' pragma: @@ -1354,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -1374,74 +766,24 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.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.Network/virtualNetworks?api-version=2019-09-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnameg4ued677fgugi2h","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetage4k2a5osssu","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' -======= -<<<<<<< HEAD - string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"603abb25-8958-4bad-9c73-7fee8423200f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' -======= - string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmyerjgVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"e1506c1e-de72-4fc4-94a9-8e2848212088","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmyerjgSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET/subnets/clitest-vmyerjgSubnet","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/networkInterfaces/clitest-vmyerjgVMNic/ipConfigurations/ipconfigclitest-vmyerjg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vm7iwncVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ce8c76a2-8bc7-436f-ba35-6f0314704350","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vm7iwncSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET/subnets/clitest-vm7iwncSubnet","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/networkInterfaces/clitest-vm7iwncVMNic/ipConfigurations/ipconfigclitest-vm7iwnc"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmp2c42VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ec0373e6-fdb6-4d6a-aa0b-a2d756bb4651","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmp2c42Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET/subnets/clitest-vmp2c42Subnet","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/networkInterfaces/clitest-vmp2c42VMNic/ipConfigurations/ipconfigclitest-vmp2c42"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"477e2cdb-b50d-4829-bfa6-f82cb1c3bf33","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":["10.0.0.4"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"efdc4136-b9bf-4894-b8c3-b30b98bdb97f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmmqas2VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"386ac8b2-f17e-499b-beb3-454b89cb8f4c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmmqas2Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET/subnets/clitest-vmmqas2Subnet","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/networkInterfaces/clitest-vmmqas2VMNic/ipConfigurations/ipconfigclitest-vmmqas2"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"my-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b939522c-51ed-46f3-9947-5c46cc2c709a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"my-subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet1","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/networkInterfaces/my-nic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm4s3yyw5VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"84e38c1c-bf5d-40d3-8285-44aee940dec4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm4s3yyw5Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET/subnets/clisqlvm4s3yyw5Subnet","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvm4s3yyw5VMNic/ipConfigurations/ipconfigclisqlvm4s3yyw5"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvmxkluncgVMNic/ipConfigurations/ipconfigclisqlvmxkluncg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm2jizpe4VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b8115f8e-6c00-46ff-beed-9b5e74c2ac69","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm2jizpe4Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET/subnets/clisqlvm2jizpe4Subnet","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm2jizpe4VMNic/ipConfigurations/ipconfigclisqlvm2jizpe4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvmmlvodkmVMNic/ipConfigurations/ipconfigclisqlvmmlvodkm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm4ctxzwhVMNic/ipConfigurations/ipconfigclisqlvm4ctxzwh"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ddsfsfee","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/ddsfsfee","etag":"W/\"5fd2815d-f428-40fc-b33b-08af9909f094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90bf8295-7548-4a89-b09c-a1f84a266d8f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"75cf66da-cb29-42f4-83c2-dc9ef51e9af0","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ->>>>>>> live test + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"603678d7-11df-42b2-99ec-3f7589898863","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"zuhvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3731e70e-fee6-4a37-97f0-e470055c8f2e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"zuhsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet/subnets/zuhsubnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '16972' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 30 Dec 2019 20:26:46 GMT -======= -<<<<<<< HEAD - - '15076' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 17 Dec 2019 23:11:47 GMT -======= - - '21558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:10:12 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '16463' + - '12702' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:39:17 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:36 GMT expires: - '-1' pragma: @@ -1453,31 +795,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: -<<<<<<< HEAD -<<<<<<< HEAD - - 6dd3fbd8-5b0b-4ca4-94bf-f8f65e1db865 - - d5a493a6-35cd-4577-b8fb-0d8e888cdbdf - - de94027d-45d8-468e-8663-06ca303ade8b -======= -<<<<<<< HEAD - - 346257c8-e044-480f-9df6-22ffda24c71b - - 51b97335-f4f3-4b24-b3cb-601f8299bf24 - - a95d9ef8-7202-4e58-a3f6-ef0e81bf8827 -======= - - 574358d0-253a-474c-9f30-0cb06e3ef07a - - 5aad1968-0211-4da5-a436-32041bfe5bb7 - - a0bade7d-1b91-4fa2-a6ab-15a6292429a4 - - 1082c626-0d98-4439-9ba6-b1e845e631ce ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - d5855927-ca84-491e-bf9b-c7f761be1aa7 - - 66db2bf2-37df-4987-bc0b-c659fe8f6a6c - - 66ff6311-881d-4a10-9dc8-12cbb11afbce - - 16852053-2769-459e-a590-ed66742454ba - - 27c3a74d-556c-471f-b282-0895eb9a74c4 - - 08f8567e-117c-4c1d-b5bc-3481a2761e31 ->>>>>>> live test + - 0db8de65-e53a-44dc-802d-e1116f7a58a5 + - 05d3b9dd-079c-4dab-9d05-c063fecffab8 + - 297e6285-4e8d-4dec-8c31-ea422e3d3a77 + - f5e5ad82-2394-4fec-918f-367cd71679d4 + - ad66a888-de1a-4b1b-9034-90b5d0012fe5 status: code: 200 message: OK @@ -1495,22 +817,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1518,58 +826,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002","name":"swiftwebapp000002","type":"Microsoft.Web/sites","kind":"app","location":"West -<<<<<<< HEAD -<<<<<<< HEAD - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-101.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-30T20:26:30.4133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"47DDC8D312FD4E7B4E131F59B3F5252FCF54C49F046B76F2C89DF9011F56BFD0","kind":"app","inboundIpAddress":"52.160.40.218","possibleInboundIpAddresses":"52.160.40.218","outboundIpAddresses":"13.91.97.179,13.91.103.21,13.91.99.109","possibleOutboundIpAddresses":"52.160.40.218,13.91.101.189,13.91.99.235,13.91.96.245,13.91.100.227,13.91.97.179,13.91.103.21,13.91.99.109","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-101","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= -<<<<<<< HEAD - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-113.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-17T23:11:30.71","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AB1C7EE1D87A4539A3BFBEE4406496B037D61DC2E250B12C494BF1B89EA96BFA","kind":"app","inboundIpAddress":"40.78.48.219","possibleInboundIpAddresses":"40.78.48.219","outboundIpAddresses":"104.40.12.222,104.40.2.67,104.40.9.121","possibleOutboundIpAddresses":"40.78.48.219,104.40.3.246,104.40.8.50,104.40.4.179,104.40.14.83,104.40.12.222,104.40.2.67,104.40.9.121","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-113","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' -======= - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-13T11:09:52.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C7EB61A8421B57265091B3591B6F91C39F567A54318A335173483E8039FB65F5","kind":"app","inboundIpAddress":"40.83.150.233","possibleInboundIpAddresses":"40.83.150.233","outboundIpAddresses":"13.64.105.5,13.64.108.146","possibleOutboundIpAddresses":"40.83.150.233,13.64.108.67,13.64.104.203,13.64.109.86,13.64.107.184,13.64.105.5,13.64.108.146","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-095.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:38:56.54","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0B38AEEEC4DD03D989E148D11CBB00368F0AA5BD5319A1BAFD610F21440DB75D","kind":"app","inboundIpAddress":"13.93.158.16","possibleInboundIpAddresses":"13.93.158.16","outboundIpAddresses":"13.64.75.221,13.64.78.152","possibleOutboundIpAddresses":"13.93.158.16,52.160.98.75,13.64.78.195,13.64.73.242,13.64.72.148,13.64.75.221,13.64.78.152","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-095","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' ->>>>>>> live test + US","properties":{"name":"swiftwebapp000002","state":"Running","hostNames":["swiftwebapp000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/swiftwebapp000002","repositorySiteName":"swiftwebapp000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["swiftwebapp000002.azurewebsites.net","swiftwebapp000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"swiftwebapp000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"swiftwebapp000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T02:15:16.7533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"swiftwebapp000002","trafficManagerHostNames":null,"sku":"PremiumV2","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C493C5C13D4456CD2D6CF8C88273BFBEF2C221D3A24BF4D87AF8E096B12DCBE7","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.85.159.5,13.91.108.158","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"swiftwebapp000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '3572' -======= -<<<<<<< HEAD - - '3561' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: - - Mon, 30 Dec 2019 20:26:47 GMT - etag: -<<<<<<< HEAD - - '"1D5BF4F6B7F70D5"' -======= - - '"1D5B52F512A1360"' -======= - - '3541' + - '3544' content-type: - application/json date: - - Wed, 13 Nov 2019 11:10:14 GMT + - Mon, 06 Jan 2020 02:15:37 GMT etag: - - '"1D59A12DF430D60"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '3536' - content-type: - - application/json - date: - - Tue, 31 Dec 2019 02:39:17 GMT - etag: - - '"1D5BF8372D3C5C0"' ->>>>>>> live test + - '"1D5C437230C0515"' expires: - '-1' pragma: @@ -1605,74 +873,24 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.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.Network/virtualNetworks?api-version=2019-09-01 response: body: -<<<<<<< HEAD -<<<<<<< HEAD - string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"60592257-15f5-4efe-a75e-627e48d7ef21\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftnameg4ued677fgugi2h","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"50cf3bf9-75fb-4385-8541-80ede97bd3a3","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnetage4k2a5osssu","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[{"name":"0","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguppxbqjuz3ou4sc6okssnarqfc4vafv3cmdxexg4xftjm3syzpfumfeklfdzrk4we/providers/Microsoft.Network/virtualNetworks/swiftnameg4ued677fgugi2h/subnets/swiftsubnetage4k2a5osssu/delegations/0","etag":"W/\"1ecb1752-ae35-4918-a641-e75d80c49d0f\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Web/serverfarms","actions":["Microsoft.Network/virtualNetworks/subnets/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' -======= -<<<<<<< HEAD - string: '{"value":[{"name":"newVnet-external3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9dc8d4b9-165f-436d-be3d-5661b33beed0","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external3-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external3-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet1/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal2"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"subnet2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet-external3/subnets/subnet2","etag":"W/\"ef1f59a9-7195-4de2-b8b8-d273ef4a0384\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.251.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/asdf-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/asdf-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"603abb25-8958-4bad-9c73-7fee8423200f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"deaca25e-444b-48a3-997c-c14ab5bc8703\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"27d1b87c-380a-4c14-8d62-6e5d87a55f7f","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"subnetInternal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internal-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internal-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internal","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/vnetInternal/subnets/subnetInternal/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internal","etag":"W/\"a27102eb-1ce1-43f2-8a8d-7068f13ec2eb\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internal"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"allisonm-oldInternalVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"20f7dd30-51dc-4935-9157-25a7b893f001","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"allisonm-oldInternalSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/23","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-internalOLD-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-internalOLD-Route-Table"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/allisonm-oldInternalVnet/subnets/allisonm-oldInternalSubnet/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-internalOLD","etag":"W/\"8b4fde82-4ce1-4639-9422-bb3a30f8c369\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-internalOLD"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"EmptyVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"4b2ce537-30b1-4e90-aee8-289e2b4edea9","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"resourceNavigationLinks":[{"name":"MicrosoftWeb_HostingEnvironments_allisonm-external","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/EmptyVnet/subnets/default/resourceNavigationLinks/MicrosoftWeb_HostingEnvironments_allisonm-external","etag":"W/\"d975312b-05e2-4d23-8e9f-2181c9914b2b\"","type":"Microsoft.Network/virtualNetworks/subnets/resourceNavigationLinks","properties":{"provisioningState":"Succeeded","linkedResourceType":"Microsoft.Web/hostingEnvironments","link":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Web/hostingEnvironments/allisonm-external"}}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"newVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"112b6ba5-2abb-41dd-a08c-041eb749da35","addressSpace":{"addressPrefixes":["192.168.250.0/23"]},"subnets":[{"name":"newSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/virtualNetworks/newVnet/subnets/newSubnet","etag":"W/\"fd4983e0-3d2b-4c0f-a324-020b044a0bdf\"","properties":{"provisioningState":"Succeeded","addressPrefix":"192.168.250.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/networkSecurityGroups/allisonm-external2-NSG"},"routeTable":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-ase/providers/Microsoft.Network/routeTables/allisonm-external2-Route-Table"},"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"d2988bed-e211-47b1-9d11-537e161767e6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"d8508cdf-67aa-4951-9aad-e7b448f430fb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-cee/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"workshopVnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","tags":{"displayName":"vNet"},"properties":{"provisioningState":"Succeeded","resourceGuid":"0bfa7760-f66a-4f86-bbd2-b8d0a7ec99e2","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"Subnet-1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/virtualNetworks/workshopVnet/subnets/Subnet-1","etag":"W/\"51e7def8-19f6-4f24-9962-ac7b579a3069\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg"},"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmweb01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmsql01NetworkInterface/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/allisonm-prague/providers/Microsoft.Network/networkInterfaces/vmdev01NetworkInterface/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' -======= - string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmyerjgVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"e1506c1e-de72-4fc4-94a9-8e2848212088","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmyerjgSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/virtualNetworks/clitest-vmyerjgVNET/subnets/clitest-vmyerjgSubnet","etag":"W/\"6c6669df-82ea-4395-9061-3607e8b291b2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.Network/networkInterfaces/clitest-vmyerjgVMNic/ipConfigurations/ipconfigclitest-vmyerjg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vm7iwncVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ce8c76a2-8bc7-436f-ba35-6f0314704350","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vm7iwncSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/virtualNetworks/clitest-vm7iwncVNET/subnets/clitest-vm7iwncSubnet","etag":"W/\"27ad58c9-bbba-44c5-80b5-46c97e417d54\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.Network/networkInterfaces/clitest-vm7iwncVMNic/ipConfigurations/ipconfigclitest-vm7iwnc"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmp2c42VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"ec0373e6-fdb6-4d6a-aa0b-a2d756bb4651","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmp2c42Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/virtualNetworks/clitest-vmp2c42VNET/subnets/clitest-vmp2c42Subnet","etag":"W/\"be92c6b0-7b30-4895-a63b-4d70071dc468\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.Network/networkInterfaces/clitest-vmp2c42VMNic/ipConfigurations/ipconfigclitest-vmp2c42"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"477e2cdb-b50d-4829-bfa6-f82cb1c3bf33","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":["10.0.0.4"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"afa8c2d5-718e-49fb-873b-96b6d1fa0ebd\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyypp67tqbhwwjb4tdyncfxojtgbbquoqis5szoihcikvgvacfi242eom5zfgm3v7/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"adVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"efdc4136-b9bf-4894-b8c3-b30b98bdb97f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"adSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet","etag":"W/\"edaa29d8-89c8-46c1-a728-c26e0da9ae27\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7gh73bvd4pebrj2j2nmb73yioet7kliiydemxf4ccbnqqc726drjk3pe4axv4icq/providers/Microsoft.Network/networkInterfaces/adNic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clitest-vmmqas2VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{"MabUsed":"Yes","Owner":"sisi","Purpose":"CLITest","DeleteBy":"12-2099","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","resourceGuid":"386ac8b2-f17e-499b-beb3-454b89cb8f4c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clitest-vmmqas2Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/virtualNetworks/clitest-vmmqas2VNET/subnets/clitest-vmmqas2Subnet","etag":"W/\"a87e0a09-d2c3-4b47-bfe8-920b7590fb57\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.Network/networkInterfaces/clitest-vmmqas2VMNic/ipConfigurations/ipconfigclitest-vmmqas2"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"my-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b939522c-51ed-46f3-9947-5c46cc2c709a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"my-subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet1","etag":"W/\"fb2a311c-8435-4910-9e08-98a609039959\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_create_vm_existing_nicbatr6kmfzawqdpyhntfcsv37j25kz4hprlxda33djftw/providers/Microsoft.Network/networkInterfaces/my-nic/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm4s3yyw5VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"84e38c1c-bf5d-40d3-8285-44aee940dec4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm4s3yyw5Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/virtualNetworks/clisqlvm4s3yyw5VNET/subnets/clisqlvm4s3yyw5Subnet","etag":"W/\"14886405-b768-4e47-b04a-8dd6ab95f606\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvm4s3yyw5VMNic/ipConfigurations/ipconfigclisqlvm4s3yyw5"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_createofxtz6yd4yaf66dnrrkorb5odttfm2khs64yc2lxqpz6ny7nkjwnzc/providers/Microsoft.Network/networkInterfaces/clisqlvmxkluncgVMNic/ipConfigurations/ipconfigclisqlvmxkluncg"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"clisqlvm2jizpe4VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b8115f8e-6c00-46ff-beed-9b5e74c2ac69","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"clisqlvm2jizpe4Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/virtualNetworks/clisqlvm2jizpe4VNET/subnets/clisqlvm2jizpe4Subnet","etag":"W/\"8883a952-e119-46c5-88f6-ba21c2843414\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm2jizpe4VMNic/ipConfigurations/ipconfigclisqlvm2jizpe4"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvmmlvodkmVMNic/ipConfigurations/ipconfigclisqlvmmlvodkm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sqlvm_cli_test_creater2edmzn22x4vl53vtxu5lnysgr72o6f7yfy2erglfqmkorqxcho63z/providers/Microsoft.Network/networkInterfaces/clisqlvm4ctxzwhVMNic/ipConfigurations/ipconfigclisqlvm4ctxzwh"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"ddsfsfee","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/ddsfsfee","etag":"W/\"5fd2815d-f428-40fc-b33b-08af9909f094\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"90bf8295-7548-4a89-b09c-a1f84a266d8f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"9c8919a4-8732-48f3-8b9c-09bd0e3774c4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"75cf66da-cb29-42f4-83c2-dc9ef51e9af0","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangw-1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"059076f4-a5ed-4978-8998-63cd1b6262ae","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangw-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/virtualNetworks/yugangw-1VNET/subnets/yugangw-1Subnet","etag":"W/\"6e5ad62d-c9aa-4c29-a792-75a76835a534\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.Network/networkInterfaces/yugangw-1VMNic/ipConfigurations/ipconfigyugangw-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"yugangwvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"8b566c7b-303e-45d5-9629-e5e6299c410c","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"yugangwvnet-1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/virtualNetworks/yugangwvnet/subnets/yugangwvnet-1Subnet","etag":"W/\"f6b43a22-bb8f-4c4f-84d1-18ce6d3cd304\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwvnet/providers/Microsoft.Network/networkInterfaces/yugangwvnet-1VMNic/ipConfigurations/ipconfigyugangwvnet-1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-2s7ta3n5vasyxnajVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7d16336f-d449-449e-94a4-52ba009a6d1f","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-2s7ta3n5vasyxnajSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_37t5li3mouhqsvohv2a5dmo3im7g6tsd6dcoeygfmwkvmc/providers/Microsoft.Network/virtualNetworks/vm1-2s7ta3n5vasyxnajVNET/subnets/vm1-2s7ta3n5vasyxnajSubnet","etag":"W/\"7376d6ce-2ef3-4278-86c4-1c7188738ff4\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1-hd7ux5bhv6iw7lnyVNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","type":"Microsoft.Network/virtualNetworks","location":"westcentralus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"249e274a-4d8e-44bb-b6a9-1caa42edb281","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1-hd7ux5bhv6iw7lnySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_rhxcyeals2vl7htdbbszxrlne4kba5j5tyjalkg3xkji3k/providers/Microsoft.Network/virtualNetworks/vm1-hd7ux5bhv6iw7lnyVNET/subnets/vm1-hd7ux5bhv6iw7lnySubnet","etag":"W/\"c439a116-e40c-4176-9891-bcf7a08d1aa9\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' ->>>>>>> live test + string: '{"value":[{"name":"swiftname000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005","etag":"W/\"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"603678d7-11df-42b2-99ec-3f7589898863","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"swiftsubnet000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","etag":"W/\"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"9cf6d0a2-a593-4e12-89f3-0f9a23f509cf","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"f5bf28fa-b2a3-416a-a8e1-f553fb65c77d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/networkInterfaces/zuhvmVMNic/ipConfigurations/ipconfigzuhvm"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"zuhvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3731e70e-fee6-4a37-97f0-e470055c8f2e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"dhcpOptions":{"dnsServers":[]},"subnets":[{"name":"zuhsubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Network/virtualNetworks/zuhvnet/subnets/zuhsubnet","etag":"W/\"6a08871c-fc1b-44de-a941-3666ef86ed7d\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","serviceEndpoints":[{"provisioningState":"Succeeded","service":"Microsoft.Storage","locations":["westus","eastus"]}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"azure-cli-test-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"fb1d03d2-b580-4c96-ac81-7840d59a69b2","addressSpace":{"addressPrefixes":["10.5.0.0/16"]},"subnets":[{"name":"AzureBastionSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/AzureBastionSubnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.0.0/27","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/bastionHosts/azure-cli-test-bastion/bastionHostIpConfigurations/IpConf"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"vm-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/virtualNetworks/azure-cli-test-vnet/subnets/vm-subnet","etag":"W/\"bdade1ef-0e99-4bf2-83d9-be05f7d43b58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.5.1.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestlinux487/ipConfigurations/ipconfig1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Network/networkInterfaces/azureclitestwin173/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"jlrg1-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","type":"Microsoft.Network/virtualNetworks","location":"southeastasia","properties":{"provisioningState":"Succeeded","resourceGuid":"18d96851-2bdc-46ec-a58a-74a55b9f8d26","addressSpace":{"addressPrefixes":["10.2.0.0/24"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/virtualNetworks/jlrg1-vnet/subnets/default","etag":"W/\"967c832f-a6c1-4f1f-9a5e-d46206a1c110\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.2.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Network/networkInterfaces/jlvm141/ipConfigurations/ipconfig1"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"vnettest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","type":"Microsoft.Network/virtualNetworks","location":"centralus","properties":{"provisioningState":"Succeeded","resourceGuid":"069414bc-bd93-47a1-976e-2e51578a2c72","addressSpace":{"addressPrefixes":["10.1.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/default","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/networkInterfaces/sdfsdfsdf.nic.483f3d12-3ba8-4789-92dd-b7ed9c4d43db/ipConfigurations/sdfsdfsdf_ipconfig_0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/privateLinkServices/sdfsdfsdf/ipConfigurations/sdfsdfsdf_ipconfig_0"}],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"GatewaySubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/GatewaySubnet","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test1","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.1.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test2","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.2.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test3","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.4.0/24","serviceEndpoints":[],"delegations":[],"purpose":"PrivateEndpoints","privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"},{"name":"test4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fanqiu-test/providers/Microsoft.Network/virtualNetworks/vnettest/subnets/test4","etag":"W/\"2a99f2ce-5482-4e66-a221-8a08d60295d0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.1.5.0/24","serviceEndpoints":[],"delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Disabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}},{"name":"sdk-vnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"7637a963-71f9-4aed-905b-8c0f4aed45b9","addressSpace":{"addressPrefixes":["10.6.0.0/16"]},"subnets":[{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.6.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/networkInterfaces/anf-sdk-vnet-nic-VLB5RZ/ipConfigurations/ipconfig1"}],"serviceEndpoints":[],"delegations":[{"name":"514c6b63b2df4757ba448bd8f44d10a5","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-wus2-rg-test/providers/Microsoft.Network/virtualNetworks/sdk-vnet/subnets/default/delegations/514c6b63b2df4757ba448bd8f44d10a5","etag":"W/\"b277f4c3-62f6-411f-b1e3-80ca12a5ea9c\"","properties":{"provisioningState":"Succeeded","serviceName":"Microsoft.Netapp/volumes","actions":["Microsoft.Network/networkinterfaces/*","Microsoft.Network/virtualNetworks/subnets/join/action"]},"type":"Microsoft.Network/virtualNetworks/subnets/delegations"}],"purpose":"HostedWorkloads","privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false,"enableVmProtection":false}}]}' headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '16972' + - '12702' content-type: - application/json; charset=utf-8 date: - - Mon, 30 Dec 2019 20:26:48 GMT -======= -<<<<<<< HEAD - - '15076' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 17 Dec 2019 23:11:48 GMT -======= - - '21558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 13 Nov 2019 11:10:15 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - '16463' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Dec 2019 02:39:19 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:38 GMT expires: - '-1' pragma: @@ -1684,31 +902,11 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: -<<<<<<< HEAD -<<<<<<< HEAD - - ac1aaf15-2601-47ed-9d04-5392ebdefbbb - - 5f64a3d5-b35b-49b1-87a4-69e9f8a15e68 - - 3099f39f-643e-45e4-990d-0d32bf25babb -======= -<<<<<<< HEAD - - 2f5d977c-6242-4bf2-99cc-84cbb38368b5 - - 38fe4b5d-5463-47f2-871f-bd5e6d6de824 - - 3aa62c91-803c-4b30-a47c-b2db23b22e33 -======= - - 8bda761f-acfe-46e6-b206-6963a58bf168 - - 48f08ca5-fae4-42b3-8d5f-d5003170c2f8 - - 924990fd-5729-41c7-a34d-5dc3766d5b49 - - 733ebe11-4106-49f2-9f18-4ac067019c61 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 5b51cad5-9970-493a-b2b1-9221dc7ac62c - - 41ed7d9f-8e08-4826-a6ff-b9397d6d8fec - - 79d2e7eb-1414-4123-b0b5-166c868a80e3 - - e66be145-9a15-451f-b962-7da91ce496b3 - - 9869625d-7bbc-42b7-ba43-c629519c9e61 - - 6b696db4-254a-4262-af9c-615a897425f1 ->>>>>>> live test + - 2eb33172-0496-43c9-b012-1fc6b6bf2a45 + - 12587228-c7eb-43f7-b295-92116a276fbe + - e6a2ee29-a919-4f23-b60c-4ed58bc7fe6e + - 327b8abf-0e1c-45f8-95e8-6ee99d8babf4 + - 7fdc0d9f-60e9-4977-9445-f1cb7610b423 status: code: 200 message: OK @@ -1726,22 +924,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1758,25 +942,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:48 GMT - etag: - - '"1D5BF4F6B7F70D5"' -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:48 GMT + - Mon, 06 Jan 2020 02:15:40 GMT etag: - - '"1D5B52F512A1360"' -======= - - Wed, 13 Nov 2019 11:10:16 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:20 GMT - etag: - - '"1D5BF8372D3C5C0"' ->>>>>>> live test + - '"1D5C437230C0515"' expires: - '-1' pragma: @@ -1812,22 +980,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1835,19 +989,7 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"60592257-15f5-4efe-a75e-627e48d7ef21\\\"\",\r\n \"properties\": -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"deaca25e-444b-48a3-997c-c14ab5bc8703\\\"\",\r\n \"properties\": -======= - \ \"etag\": \"W/\\\"9a5b08a2-353f-44f9-b7eb-041f1b697afb\\\"\",\r\n \"properties\": ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"4c9eb9b9-54b8-44ac-ab25-22d37cc86054\\\"\",\r\n \"properties\": ->>>>>>> live test + \ \"etag\": \"W/\\\"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1860,27 +1002,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:48 GMT - etag: - - W/"60592257-15f5-4efe-a75e-627e48d7ef21" -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:48 GMT + - Mon, 06 Jan 2020 02:15:40 GMT etag: - - W/"deaca25e-444b-48a3-997c-c14ab5bc8703" -======= - - Wed, 13 Nov 2019 11:10:16 GMT - etag: - - W/"9a5b08a2-353f-44f9-b7eb-041f1b697afb" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:20 GMT - etag: - - W/"4c9eb9b9-54b8-44ac-ab25-22d37cc86054" ->>>>>>> live test + - W/"bdb5aa47-b033-4aeb-ad2f-2854eb47ceba" expires: - '-1' pragma: @@ -1897,19 +1021,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 93d69467-9d70-4aca-a2ce-be7b931350c8 -======= -<<<<<<< HEAD - - 8152c3d2-eee5-46b2-b084-d4017f1b8651 -======= - - 620a2ba0-87b1-450e-97dd-33175b99e76c ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - bb034a92-8969-48c5-8600-debadb786080 ->>>>>>> live test + - 6392d791-53a9-4993-82b0-d3dc2344209d status: code: 200 message: OK @@ -1934,22 +1046,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1957,35 +1055,11 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"805dfad2-4003-4f7d-9d03-ec788db80d13\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"805dfad2-4003-4f7d-9d03-ec788db80d13\\\"\",\r\n -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"e01b8237-0125-487a-93a9-ee38f5a14771\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"e01b8237-0125-487a-93a9-ee38f5a14771\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"96855493-ffc7-4874-a8ea-2561ac442265\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"4fb90c95-bdd3-47fa-8d4b-af9a0c5d6cdb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"96855493-ffc7-4874-a8ea-2561ac442265\\\"\",\r\n ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"5931d4dd-a445-41e3-8c6e-14f7f0fd4c10\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"5931d4dd-a445-41e3-8c6e-14f7f0fd4c10\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"4fb90c95-bdd3-47fa-8d4b-af9a0c5d6cdb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -1995,19 +1069,7 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: -<<<<<<< HEAD -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc28c162-5a9a-4cd2-9ab7-57e256f3e529?api-version=2019-09-01 -======= -<<<<<<< HEAD - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b427a041-32b2-47f9-9f5f-ea12e2b4ab26?api-version=2019-09-01 -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/38fdbae2-df71-44a0-b050-033cec22411f?api-version=2019-09-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6a49213-0530-464f-983a-1e04a23c8b68?api-version=2019-09-01 ->>>>>>> live test + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d9ff9d69-8781-4f40-af35-0441d17e4cbd?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -2015,19 +1077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:49 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:49 GMT -======= - - Wed, 13 Nov 2019 11:10:17 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:21 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:40 GMT expires: - '-1' pragma: @@ -2044,27 +1094,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - a460f621-4479-4c87-8b37-3e7bcf561a0d - x-ms-ratelimit-remaining-subscription-writes: - - '1198' -======= -<<<<<<< HEAD - - 249a3799-1a8a-4995-8169-4115a22a7731 + - 47663fc7-fbb6-42d6-90c5-d58b7f417792 x-ms-ratelimit-remaining-subscription-writes: - - '1199' -======= - - 48e50bd1-ce21-46a8-bf25-6c522bbc379f - x-ms-ratelimit-remaining-subscription-writes: - - '1176' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 7cf0e2d7-3170-4941-8cb5-681bbf70b0df - x-ms-ratelimit-remaining-subscription-writes: - - '1186' ->>>>>>> live test + - '1195' status: code: 200 message: OK @@ -2082,22 +1114,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2105,35 +1123,11 @@ interactions: response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n -<<<<<<< HEAD -<<<<<<< HEAD - \ \"etag\": \"W/\\\"5c844416-9fd8-4961-98e2-5a591a97f97b\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"5c844416-9fd8-4961-98e2-5a591a97f97b\\\"\",\r\n -======= -<<<<<<< HEAD - \ \"etag\": \"W/\\\"eb1379bb-1f1b-4f51-9615-fcaa5847d409\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"81a2cbc9-9344-403b-b537-7fb7daae7819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"eb1379bb-1f1b-4f51-9615-fcaa5847d409\\\"\",\r\n -======= - \ \"etag\": \"W/\\\"805eb4c1-f487-4ecf-a654-263b4cc8ba4d\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"805eb4c1-f487-4ecf-a654-263b4cc8ba4d\\\"\",\r\n ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - \ \"etag\": \"W/\\\"845102bb-4941-4dab-9cf6-0e1e6659b39a\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"845102bb-4941-4dab-9cf6-0e1e6659b39a\\\"\",\r\n ->>>>>>> live test + \ \"etag\": \"W/\\\"81a2cbc9-9344-403b-b537-7fb7daae7819\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -2149,27 +1143,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:49 GMT - etag: - - W/"5c844416-9fd8-4961-98e2-5a591a97f97b" -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:49 GMT + - Mon, 06 Jan 2020 02:15:41 GMT etag: - - W/"eb1379bb-1f1b-4f51-9615-fcaa5847d409" -======= - - Wed, 13 Nov 2019 11:10:18 GMT - etag: - - W/"805eb4c1-f487-4ecf-a654-263b4cc8ba4d" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:21 GMT - etag: - - W/"845102bb-4941-4dab-9cf6-0e1e6659b39a" ->>>>>>> live test + - W/"81a2cbc9-9344-403b-b537-7fb7daae7819" expires: - '-1' pragma: @@ -2186,19 +1162,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 42f40ac0-b45f-403d-83fe-8ad318576ba1 -======= -<<<<<<< HEAD - - 71242f57-1d3f-4d92-bb80-822991dfcef4 -======= - - d778e867-d6d0-4360-9519-b08c9c875168 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - 7bca83d4-7551-4cb5-8f85-40c66acfb93e ->>>>>>> live test + - 6f0f8e20-8812-4317-ad76-6200b62c98ae status: code: 200 message: OK @@ -2221,14 +1185,8 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -2245,25 +1203,9 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:51 GMT - etag: - - '"1D5BF4F6B7F70D5"' -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:51 GMT - etag: - - '"1D5B52F512A1360"' -======= - - Wed, 13 Nov 2019 11:10:22 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:23 GMT + - Mon, 06 Jan 2020 02:15:44 GMT etag: - - '"1D5BF8372D3C5C0"' ->>>>>>> live test + - '"1D5C437230C0515"' expires: - '-1' pragma: @@ -2281,7 +1223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1173' + - '1194' x-powered-by: - ASP.NET status: @@ -2295,139 +1237,45 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - webapp vnet-integration list + - webapp vnet-integration add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US -======= - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service + azure-mgmt-network/7.0.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.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d9ff9d69-8781-4f40-af35-0441d17e4cbd?api-version=2019-09-01 response: body: -<<<<<<< HEAD - string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/fdb79e0d-9bb9-477c-9b2b-55875c87e30c_swiftsubnet000004","name":"fdb79e0d-9bb9-477c-9b2b-55875c87e30c_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West - US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' -======= -<<<<<<< HEAD string: "{\r\n \"status\": \"Succeeded\"\r\n}" -======= - string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n - \ \"etag\": \"W/\\\"36fde0fa-02cb-4a59-a8ff-796dad1b13d1\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n - \ \"etag\": \"W/\\\"36fde0fa-02cb-4a59-a8ff-796dad1b13d1\\\"\",\r\n - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"linkedResourceType\": \"Microsoft.Web/serverfarms\",\r\n \"link\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003\",\r\n - \ \"allowDelete\": false,\r\n \"locations\": []\r\n }\r\n - \ }\r\n ],\r\n \"delegations\": [\r\n {\r\n \"name\": - \"delegation\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"36fde0fa-02cb-4a59-a8ff-796dad1b13d1\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": - [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2019-08-01 - response: - body: - string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/75cf66da-cb29-42f4-83c2-dc9ef51e9af0_swiftsubnet000004","name":"75cf66da-cb29-42f4-83c2-dc9ef51e9af0_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West - US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' ->>>>>>> live test headers: cache-control: - no-cache content-length: -<<<<<<< HEAD -<<<<<<< HEAD - - '830' -======= -<<<<<<< HEAD - '29' ->>>>>>> Re-record test for app service - content-type: - - application/json - date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:52 GMT -======= - - Tue, 17 Dec 2019 23:11:52 GMT -======= - - '2329' -======= - - '830' ->>>>>>> live test content-type: - - application/json + - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Wed, 13 Nov 2019 11:10:22 GMT - etag: - - W/"36fde0fa-02cb-4a59-a8ff-796dad1b13d1" ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:25 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:45 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff -<<<<<<< HEAD -<<<<<<< HEAD - x-powered-by: - - ASP.NET -======= x-ms-arm-service-request-id: -<<<<<<< HEAD - - 8abe86c8-04d8-4089-9418-ceac224c2612 -======= - - 22dd1baa-86d4-42b1-becf-500dc647ed43 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - x-powered-by: - - ASP.NET ->>>>>>> live test + - 066cf335-4f03-4840-ac9a-28f2c7f97918 status: code: 200 message: OK @@ -2439,117 +1287,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - webapp vnet-integration add + - webapp vnet-integration list Connection: - keep-alive ParameterSetName: - - -g -n --vnet --subnet + - -g -n User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 ->>>>>>> live test - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET -<<<<<<< HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc28c162-5a9a-4cd2-9ab7-57e256f3e529?api-version=2019-09-01 -======= - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004?api-version=2019-09-01 -<<<<<<< HEAD -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-web/0.44.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.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-02-01 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" -======= + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2019-08-01 response: body: - string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n - \ \"etag\": \"W/\\\"1c73553b-dcf4-4ee2-ad25-bf7e243b5820\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n - \ \"etag\": \"W/\\\"1c73553b-dcf4-4ee2-ad25-bf7e243b5820\\\"\",\r\n - \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"linkedResourceType\": \"Microsoft.Web/serverfarms\",\r\n \"link\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/swiftplan000003\",\r\n - \ \"allowDelete\": false,\r\n \"locations\": []\r\n }\r\n - \ }\r\n ],\r\n \"delegations\": [\r\n {\r\n \"name\": - \"delegation\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"1c73553b-dcf4-4ee2-ad25-bf7e243b5820\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": - [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n - \ ]\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets/delegations\"\r\n - \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" ->>>>>>> live test + string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/603678d7-11df-42b2-99ec-3f7589898863_swiftsubnet000004","name":"603678d7-11df-42b2-99ec-3f7589898863_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West + US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' headers: cache-control: - no-cache content-length: - - '29' + - '830' content-type: - - application/json; charset=utf-8 + - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:52 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:52 GMT - etag: - - W/"b09ee5ce-3b76-49f9-a3ab-b7ee5c8dcefc" -======= - - Wed, 13 Nov 2019 11:10:23 GMT - etag: - - '"1D59A12DF430D60"' ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:39:26 GMT - etag: - - W/"1c73553b-dcf4-4ee2-ad25-bf7e243b5820" ->>>>>>> live test + - Mon, 06 Jan 2020 02:15:45 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding + x-aspnet-version: + - 4.0.30319 x-content-type-options: - nosniff - x-ms-arm-service-request-id: -<<<<<<< HEAD -<<<<<<< HEAD - - 510467d7-83bc-4086-845d-1b794e2163ab -======= - - 458cb996-fe81-46ff-8031-108046a3f4f1 -======= - x-ms-ratelimit-remaining-subscription-writes: - - '1173' x-powered-by: - ASP.NET ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service status: code: 200 message: OK @@ -2567,20 +1347,18 @@ interactions: ParameterSetName: - -g -n --vnet --subnet User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"swiftsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004\",\r\n - \ \"etag\": \"W/\\\"08ae915b-8028-457c-aa82-997febfa2bbc\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"c02f6e0b-72c3-4dc2-9933-ec04ebf73c0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceAssociationLinks\": [\r\n {\r\n \"name\": \"AppServiceLink\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/serviceAssociationLinks/AppServiceLink\",\r\n - \ \"etag\": \"W/\\\"08ae915b-8028-457c-aa82-997febfa2bbc\\\"\",\r\n + \ \"etag\": \"W/\\\"c02f6e0b-72c3-4dc2-9933-ec04ebf73c0a\\\"\",\r\n \ \"type\": \"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"linkedResourceType\": \"Microsoft.Web/serverfarms\",\r\n \"link\": @@ -2588,7 +1366,7 @@ interactions: \ \"allowDelete\": false,\r\n \"locations\": []\r\n }\r\n \ }\r\n ],\r\n \"delegations\": [\r\n {\r\n \"name\": \"delegation\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004/delegations/delegation\",\r\n - \ \"etag\": \"W/\\\"08ae915b-8028-457c-aa82-997febfa2bbc\\\"\",\r\n + \ \"etag\": \"W/\\\"c02f6e0b-72c3-4dc2-9933-ec04ebf73c0a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"serviceName\": \"Microsoft.Web/serverFarms\",\r\n \"actions\": [\r\n \"Microsoft.Network/virtualNetworks/subnets/action\"\r\n @@ -2596,25 +1374,6 @@ interactions: \ }\r\n ],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections?api-version=2018-02-01 - response: - body: -<<<<<<< HEAD - string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/603abb25-8958-4bad-9c73-7fee8423200f_swiftsubnet000004","name":"603abb25-8958-4bad-9c73-7fee8423200f_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West -======= - string: '[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/virtualNetworkConnections/f8015ce3-c97a-4ceb-92c5-520f6c0f7226_swiftsubnet000004","name":"f8015ce3-c97a-4ceb-92c5-520f6c0f7226_swiftsubnet000004","type":"Microsoft.Web/sites/virtualNetworkConnections","location":"West ->>>>>>> Re-record test for app service - US","properties":{"vnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/swiftname000005/subnets/swiftsubnet000004","certThumbprint":null,"certBlob":null,"routes":null,"resyncRequired":false,"dnsServers":null,"isSwift":true}}]' ->>>>>>> Re-record test for app service headers: cache-control: - no-cache @@ -2623,17 +1382,9 @@ interactions: content-type: - application/json; charset=utf-8 date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:26:52 GMT + - Mon, 06 Jan 2020 02:15:46 GMT etag: - - W/"08ae915b-8028-457c-aa82-997febfa2bbc" -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:11:53 GMT -======= - - Wed, 13 Nov 2019 11:10:24 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service + - W/"c02f6e0b-72c3-4dc2-9933-ec04ebf73c0a" expires: - '-1' pragma: @@ -2650,7 +1401,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92f06e15-1a8f-4928-b118-190116c3c81a + - ac86efeb-5ecf-43c3-b197-dedca173278d status: code: 200 message: OK @@ -2670,21 +1421,12 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/swiftwebapp000002/networkConfig/virtualNetwork?api-version=2019-08-01 response: body: string: '' @@ -2694,15 +1436,7 @@ interactions: content-length: - '0' date: -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:40 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:12:42 GMT -======= - - Wed, 13 Nov 2019 11:10:28 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service + - Mon, 06 Jan 2020 02:16:31 GMT expires: - '-1' pragma: @@ -2716,16 +1450,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: -<<<<<<< HEAD - '14999' -======= - - '14989' ->>>>>>> Re-record test for app service x-powered-by: - ASP.NET -======= - - 4459780e-f158-4b81-98c6-0dd641a5c1ee ->>>>>>> live test status: code: 200 message: OK @@ -2743,22 +1470,8 @@ interactions: ParameterSetName: - -g -n User-Agent: -<<<<<<< HEAD -<<<<<<< HEAD - - python/3.8.0 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 -<<<<<<< HEAD - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.78 -======= - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.77 -======= - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.75 ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 ->>>>>>> live test + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2774,19 +1487,7 @@ interactions: content-type: - application/json date: -<<<<<<< HEAD -<<<<<<< HEAD - - Mon, 30 Dec 2019 20:27:40 GMT -======= -<<<<<<< HEAD - - Tue, 17 Dec 2019 23:12:43 GMT -======= - - Wed, 13 Nov 2019 11:10:29 GMT ->>>>>>> Re-record test for app service ->>>>>>> Re-record test for app service -======= - - Tue, 31 Dec 2019 02:40:15 GMT ->>>>>>> live test + - Mon, 06 Jan 2020 02:16:33 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index d88f86094d6..3cdc32a76dc 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -287,7 +287,7 @@ def test_webapp_config(self, resource_group): # verify the baseline self.cmd('webapp config show -g {} -n {}'.format(resource_group, webapp_name)).assert_with_checks([ - JMESPathCheck('alwaysOn', False), + JMESPathCheck('alwaysOn', True), JMESPathCheck('autoHealEnabled', False), JMESPathCheck('phpVersion', '5.6'), JMESPathCheck('netFrameworkVersion', 'v4.0'), From c8fc69adccbdcede041a1c0d29b8aca2102ad90e Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 7 Jan 2020 08:58:40 +0800 Subject: [PATCH 27/51] pass more test --- .../recordings/test_ams_sp_create_reset.yaml | 353 +- .../tests/latest/export_features_prop.json | 2 +- .../cli/command_modules/appservice/custom.py | 93 +- .../recordings/test_linux_webapp_ssh.yaml | 760 +- ...est_webapp_access_restriction_add_scm.yaml | 93 +- .../latest/recordings/test_webapp_config.yaml | 222 +- .../latest/recordings/test_webapp_e2e.yaml | 306 +- ...vice_create_v4_csharp_echo_webapp_bot.yaml | 7097 +- ...tservice_create_v4_js_echo_webapp_bot.yaml | 1659 +- ...4_csharp_webapp_echo_bots_no_bot_file.yaml | 1486 +- ..._v4_node_webapp_echo_bots_no_bot_file.yaml | 515 +- ..._node_modules_or_install_dependencies.yaml | 1189 +- ...e_node_iis_files_if_not_already_local.yaml | 739 +- ...tservice_show_on_v4_csharp_webapp_bot.yaml | 368 +- ...t_botservice_show_on_v4_js_webapp_bot.yaml | 400 +- ...ns_summaries_daily_with_reservationid.yaml | 33 - .../latest/recordings/test_dls_file_mgmt.yaml | 334 +- .../test_keyvault_certificate_contacts.yaml | 40 +- .../test_keyvault_certificate_crud.yaml | 169 +- .../test_keyvault_certificate_download.yaml | 46 +- .../test_keyvault_certificate_import.yaml | 34 +- .../test_keyvault_certificate_issuers.yaml | 88 +- .../test_keyvault_pending_certificate.yaml | 64 +- .../recordings/test_keyvault_secret.yaml | 145 +- .../test_keyvault_secret_soft_delete.yaml | 58 +- .../recordings/test_keyvault_softdelete.yaml | 514 +- .../test_keyvault_storage_account.yaml | 1366 +- .../latest/zone_files/zone1.txt_export.txt | 2 +- .../latest/zone_files/zone2.txt_export.txt | 2 +- .../latest/zone_files/zone3.txt_export.txt | 2 +- .../latest/zone_files/zone4.txt_export.txt | 2 +- .../latest/zone_files/zone5.txt_export.txt | 2 +- .../latest/zone_files/zone6.txt_export.txt | 2 +- .../latest/zone_files/zone7.txt_export.txt | 2 +- .../latest/zone_files/zone8.txt_export.txt | 2 +- .../latest/recordings/test_node_type.yaml | 67608 ++-------------- .../test_vmss_create_linux_secrets.yaml | 324 +- 37 files changed, 13947 insertions(+), 72174 deletions(-) delete mode 100644 src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml index 25930c16754..c8148a592bb 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml @@ -20,7 +20,7 @@ interactions: - -n -g --storage-account -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-media/1.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-media/1.1.1 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"b22a67c7-4a2a-4770-8111-3c1e667d19b4\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"1b30ac51-debf-4009-80d0-90a21bd49bba\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -39,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 27 Dec 2019 13:55:56 GMT + - Mon, 06 Jan 2020 14:19:50 GMT expires: - '-1' odata-version: @@ -72,7 +72,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-media/1.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-media/1.1.1 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -80,7 +80,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"b22a67c7-4a2a-4770-8111-3c1e667d19b4\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"1b30ac51-debf-4009-80d0-90a21bd49bba\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -91,7 +91,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 27 Dec 2019 13:55:58 GMT + - Mon, 06 Jan 2020 14:19:52 GMT expires: - '-1' odata-version: @@ -126,7 +126,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -146,19 +146,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:00 GMT + - Mon, 06 Jan 2020 14:19:55 GMT duration: - - '2651891' + - '2610532' expires: - '-1' ocp-aad-diagnostics-server-name: - - u69wKTZejlOWfGF/THwvVNLcycS2MlZl9ie+5VVrrJA= + - dMQIMqTNmvClkFrJur55SvaXYOP0//qg9V+JHwyJ2DU= ocp-aad-session-key: - - KQb_Ikhs8cBTZ721E0ar3Y1Yuje8-8-ml823Ykx4_uxse5Uag4Trnpa1B0Sp443AdGAQv-KU0njNPZfddTyNoHBnB7si0PdSeXZPK18aDcbZK0eKdR6xIbNCsIpwZrdU.QVfKMXgXxmZfa62KTiqm_3nLP4CnclxYvbQXIMwA8x8 + - _6sBvHZwioIkm_nkX1Cl2vHAT6AtZdtG9KUBIBJT5JgnAM1rWVlas003Nhf5l17thySp1zy0uP_7XRUv_wz0KU0icQfjkhx2qFFlsyUaf2sVto89qwie1AJsQo1Hkexx.qBKypgOB8-ciNXG-r6ibkk--jz2VwuxUvOMSERutoQE pragma: - no-cache request-id: - - e99b15da-e85c-4700-9ba9-183a2c95cdcb + - 416bac69-013b-49c2-b29c-8e464e3e79b1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -172,8 +172,8 @@ interactions: message: OK - request: body: 'b''{"availableToOtherTenants": false, "homepage": "http://clitest.rg000001", - "passwordCredentials": [{"startDate": "2019-12-27T13:56:00.365988Z", "endDate": - "2020-12-27T13:56:00.365988Z", "keyId": "88888888-0000-0000-0000-000000000001", + "passwordCredentials": [{"startDate": "2020-01-06T14:19:56.105784Z", "endDate": + "2021-01-06T14:19:56.105784Z", "keyId": "88888888-0000-0000-0000-000000000001", "value": "ReplacedSPPassword123*"}], "displayName": "clitest.rg000001", "identifierUris": ["http://clitest.rg000001"]}''' headers: @@ -193,7 +193,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -202,28 +202,28 @@ interactions: body: string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", - "objectId": "80c132cc-aefd-4e48-9421-c8a64358c86d", "deletionTimestamp": null, - "acceptMappedClaims": null, "addIns": [], "appId": "d1b0f30f-b46c-403d-b87d-199797808927", + "objectId": "dbb17987-55cc-40a9-bede-d1e82c1f26db", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "579137d5-3be9-4c30-b12b-c0930e5274c1", "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": false, "displayName": "clitest.rg000001", "errorUrl": null, "groupMembershipClaims": null, "homepage": "http://clitest.rg000001", "identifierUris": ["http://clitest.rg000001"], "informationalUrls": {"termsOfService": null, "support": null, "privacy": null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": - "directoryObjects/80c132cc-aefd-4e48-9421-c8a64358c86d/Microsoft.DirectoryServices.Application/logo", + "directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/logo", "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", - "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/80c132cc-aefd-4e48-9421-c8a64358c86d/Microsoft.DirectoryServices.Application/mainLogo", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/mainLogo", "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": "Allow the application to access clitest.rg000001 on behalf of the signed-in - user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "9787a456-135b-400e-8696-a08ecfc17ff6", + user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "5c07b576-9a81-4023-bb61-e1a48123f71d", "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application to access clitest.rg000001 on your behalf.", "userConsentDisplayName": "Access clitest.rg000001", "value": "user_impersonation"}], "oauth2RequirePostResponse": false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": - [{"customKeyIdentifier": null, "endDate": "2020-12-27T13:56:00.365988Z", "keyId": - "88888888-0000-0000-0000-000000000001", "startDate": "2019-12-27T13:56:00.365988Z", + [{"customKeyIdentifier": null, "endDate": "2021-01-06T14:19:56.105784Z", "keyId": + "88888888-0000-0000-0000-000000000001", "startDate": "2020-01-06T14:19:56.105784Z", "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": "AzureSDKTeam.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": @@ -240,21 +240,21 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:00 GMT + - Mon, 06 Jan 2020 14:19:57 GMT duration: - - '6915445' + - '8137593' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/80c132cc-aefd-4e48-9421-c8a64358c86d/Microsoft.DirectoryServices.Application + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - ucg8vBzR+r47m5A/zvezGk2r6aWzAgtXxfZuU6zhGaw= + - BnOm9eidzVvEzdcjEkK3IqSSrIC1S15Nz8usiy4jLaU= ocp-aad-session-key: - - vCo5n6RpaneUWJoksfMJETFeyuXouqdV5pnH82sOXIPyMsB-ZWmzrKRRanWN_UBUb9vpxE4OlySeQQRKTL11XI7AmkdiwWz6LAvlt7TJ7WOuMrL8a00F7nEoDqe85vW-1RBeFWP_jNrPTbKSU--w6kvl4S_Ey1g0d4tknIivi5Y.028IVRmzhm_8VoByWVmWl8KAOLj8ZS45ufpMxmabpZA + - Q1PI03xZvYlmZV4whH6nv7m7mxE4w7_7rtA1_UVhy3aB6MCRs3pgGjiJSO3gnwaNT08XhsCQCgd0m7ezBeEvKMmUKvZEmRDyrYflPuwCIujFAE6lMKMQpRRDhDXA6o5vl9WwSkW77yGaB6US3APxEU_6_XoaXwau2z_b3ezCssI.bqRxi_QyGdL9JoYU20AYBtFZsxDwD_mN94zb2d3Rqq4 pragma: - no-cache request-id: - - 7d21eee0-264b-49b6-9cfd-c06af4c4ab1e + - 3b2b09e0-4d0d-4fd9-89a1-7e521034adf2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -267,7 +267,7 @@ interactions: code: 201 message: Created - request: - body: '{"accountEnabled": "True", "appId": "d1b0f30f-b46c-403d-b87d-199797808927"}' + body: '{"accountEnabled": "True", "appId": "579137d5-3be9-4c30-b12b-c0930e5274c1"}' headers: Accept: - application/json @@ -285,18 +285,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1570bb6e-151f-4c5e-b81a-601d27b10f0e","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"d1b0f30f-b46c-403d-b87d-199797808927","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"ef8d35fc-c14d-4380-b800-195ed452ab64","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"9787a456-135b-400e-8696-a08ecfc17ff6","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["d1b0f30f-b46c-403d-b87d-199797808927","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["579137d5-3be9-4c30-b12b-c0930e5274c1","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' @@ -309,21 +309,21 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:01 GMT + - Mon, 06 Jan 2020 14:19:57 GMT duration: - - '5420466' + - '5551347' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/1570bb6e-151f-4c5e-b81a-601d27b10f0e/Microsoft.DirectoryServices.ServicePrincipal + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/ef8d35fc-c14d-4380-b800-195ed452ab64/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - AscZYHsQ8u0JvtqinizkQA/qY/LnqKUVJTwRL3s3mKc= + - DmG6BTB70jkjS5bCyYHVevIHWvxRtyn25Nsb3Pg9kqQ= ocp-aad-session-key: - - oGDEOng-Dt79p-e4a8QOPFAxvHbwljpAqQrab_0hruGlbVn_dmuLsXIkKtNRg5X7A-JLLigpMJ04lY6kMcLj4ZKmJrOjTavZIKc_h-O3YkzFIjS5iXLLRaECLa6d2vILoSA8fwRymVWA5D3CN2lTZf44zp4PSP3uTP1ShA01Kqg.zSIDjVPh4H7o-uZwUjAf1yUw4OWWraS7hE9nLuz8Sso + - bftHf2FNjR03m5zBOy-jlO4zp6LMzSsnFahJ2zYXcPyNpbyjqKWQZer56HORUb23XASrLv6tFhNUMQEcb1K8bsibqS8c67a29eO-ZWs45YrmtKcUt-Sybl2uQjBVj_zuqxOXmqcIs16euTnZCbWT7VxYmSMAWVBfpOOvIzWsqCg.27epB6feJbHtMuJP5dFm43JC_BbMDZ_kAKoebKf2EvQ pragma: - no-cache request-id: - - 66cd3add-68d1-44ba-9ef1-799949a5b107 + - 979061df-4b76-497b-9f64-7fe8f336d642 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -350,11 +350,11 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-authorization/0.52.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.Authorization/roleAssignments?$filter=principalId%20eq%20%271570bb6e-151f-4c5e-b81a-601d27b10f0e%27&api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27ef8d35fc-c14d-4380-b800-195ed452ab64%27&api-version=2018-09-01-preview response: body: string: '{"value":[]}' @@ -366,7 +366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:56:02 GMT + - Mon, 06 Jan 2020 14:19:57 GMT expires: - '-1' pragma: @@ -401,7 +401,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -418,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:56:03 GMT + - Mon, 06 Jan 2020 14:19:58 GMT expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "1570bb6e-151f-4c5e-b81a-601d27b10f0e"}}' + "principalId": "ef8d35fc-c14d-4380-b800-195ed452ab64"}}' headers: Accept: - application/json @@ -460,14 +460,121 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-authorization/0.52.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.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2018-09-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1570bb6e-151f-4c5e-b81a-601d27b10f0e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2019-12-27T13:56:03.8174036Z","updatedOn":"2019-12-27T13:56:03.8174036Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal ef8d35fcc14d4380b800195ed452ab64 + does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' + headers: + cache-control: + - no-cache + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:19:59 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account sp create + Connection: + - keep-alive + ParameterSetName: + - -a -n -g -p --role + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-authorization/0.52.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/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Owner%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Owner","type":"BuiltInRole","description":"Lets + you manage everything, including access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:32.2101122Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","type":"Microsoft.Authorization/roleDefinitions","name":"8e3af657-a8ff-443c-a75c-2fe8c4bcb635"}]}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:20:04 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", + "principalId": "ef8d35fc-c14d-4380-b800-195ed452ab64"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account sp create + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -a -n -g -p --role + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-authorization/0.52.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.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2018-09-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ef8d35fc-c14d-4380-b800-195ed452ab64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2020-01-06T14:20:05.9708883Z","updatedOn":"2020-01-06T14:20:05.9708883Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' headers: cache-control: - no-cache @@ -476,19 +583,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:56:08 GMT + - Mon, 06 Jan 2020 14:20:10 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '3' status: @@ -509,7 +616,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-media/1.1.1 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-media/1.1.1 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -517,7 +624,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"b22a67c7-4a2a-4770-8111-3c1e667d19b4\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"1b30ac51-debf-4009-80d0-90a21bd49bba\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -528,7 +635,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 27 Dec 2019 13:56:09 GMT + - Mon, 06 Jan 2020 14:20:11 GMT expires: - '-1' odata-version: @@ -563,18 +670,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fclitest.rg000001%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1570bb6e-151f-4c5e-b81a-601d27b10f0e","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"d1b0f30f-b46c-403d-b87d-199797808927","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"ef8d35fc-c14d-4380-b800-195ed452ab64","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"9787a456-135b-400e-8696-a08ecfc17ff6","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","d1b0f30f-b46c-403d-b87d-199797808927"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","579137d5-3be9-4c30-b12b-c0930e5274c1"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -587,19 +694,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:10 GMT + - Mon, 06 Jan 2020 14:20:12 GMT duration: - - '2407904' + - '2562983' expires: - '-1' ocp-aad-diagnostics-server-name: - - cL1jDPJgWuH441cYFIUty/IyzbxMLqGcCz6cWaJvgs4= + - yjFpNiVH7H4hNgUCg7e4viVgl8ghPqdy05PYLJHsfOI= ocp-aad-session-key: - - J2tHgWNnrmjAnPMdREhTMkdVaMmSM_P61WvkYklgOathlnYLnzEUmXkeX80pSknLzxpv9ZJDS6VgaLa3CGl3C1H3ekafnIE5pFrDDeI79Ntg4Mvuhzr_0qCLQEdHzPrxqtL_jxXuv6OEA-pE5GB-5s6bQqVCXq-LS6b6XViNZnw.YJmXvH3R4jovIoKowr15uVspb9fTCxVJ3azw5Orqr48 + - A3hQ29RpttQw--gRW5TG8sYY7qIDr_55g8e--emz_IsU0nECgf1UjzFNxloKiG761a1GZcVqfvBTMynk11shnw31F1WAkbzqnKmCssJ-dAlmIBtGMHY3_rhVew-x5JcjscJR1S4y56XDWyziHWUFKo7GuF0wWfAKT2ZFbVykBxk._-92_heFV7Wmg2TDw8GUClNdLAbwUsWTpaY45hpTnFA pragma: - no-cache request-id: - - 03216eaf-6b0f-4782-9f94-4f96302ddee4 + - 8dacaef2-bb56-44b7-a909-d46d4d67b253 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -626,18 +733,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27d1b0f30f-b46c-403d-b87d-199797808927%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27579137d5-3be9-4c30-b12b-c0930e5274c1%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"80c132cc-aefd-4e48-9421-c8a64358c86d","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"d1b0f30f-b46c-403d-b87d-199797808927","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/80c132cc-aefd-4e48-9421-c8a64358c86d/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/80c132cc-aefd-4e48-9421-c8a64358c86d/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"dbb17987-55cc-40a9-bede-d1e82c1f26db","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"9787a456-135b-400e-8696-a08ecfc17ff6","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2020-12-27T13:56:00.365988Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-12-27T13:56:00.365988Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-01-06T14:19:56.105784Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-06T14:19:56.105784Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -650,19 +757,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:10 GMT + - Mon, 06 Jan 2020 14:20:12 GMT duration: - - '2380986' + - '2426079' expires: - '-1' ocp-aad-diagnostics-server-name: - - As0gHGadq5h2LTxl2ZFYNVFv2OujPh15mwcM8SjOsH0= + - D8da6Z00zv5l3pI9cGPVo16n7vtqzRfrbwcETYmDmuo= ocp-aad-session-key: - - hnmQPLCsYObJU3dPxEcFAMKzhReoy2QUSX0jFiHU9opYwNg04-rCGQhh-nZxpzFKhAPqH020dmpKQ2cfmh5YTB985UwKTDdqQPuZg5DRKMLj4hJmY7p2uc5ELpo6uxn24Hv6gNDwkLQ4tGls2x7xZGRecCAuLLcVhhKos-8DdcM.mmdNTSYmc1rViT3mdYIkE75t9JK8z7qucODw8VdU1B0 + - jKwqyExfADBYCcYtBhU7B3twCSUYQDWhil2-x1g0_5NKOBFFV5Mv3hBH6ZoX-5MX1W0nYI7MXVjc05d4zfgZXt7Gqlz5bn6XA3F_WTYSf6UEn8JRCgawVpwfp61WtNjm1ikIJIc0ESyvBZdJzKm01X4hhYTn5v9zhnzEw2ppwqU.l7PH12BL4vk46IzFg6kjLG1fpP8M4lGsNF520aVB30k pragma: - no-cache request-id: - - 68a88abc-c0b7-4c83-b0fb-89504dc4cc47 + - a0098ef1-1af4-41b9-96df-aab11295d1d5 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -689,14 +796,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/80c132cc-aefd-4e48-9421-c8a64358c86d/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/dbb17987-55cc-40a9-bede-d1e82c1f26db/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2020-12-27T13:56:00.365988Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-12-27T13:56:00.365988Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2021-01-06T14:19:56.105784Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-06T14:19:56.105784Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -709,19 +816,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:11 GMT + - Mon, 06 Jan 2020 14:20:13 GMT duration: - - '2412939' + - '2401635' expires: - '-1' ocp-aad-diagnostics-server-name: - - 3CMafgu+LVf53IqS2V5xA1VtIqsHUIzo8C7eaZ65J3U= + - PVmdQVFo4vbIl3qFfJQXwZ8eIdlDxR0EypQwMc2EbEk= ocp-aad-session-key: - - G9xg0IkJWHfGfiQ5BEu9hKUD4pRVsrIpaaDATB6k8Docp80hLZDyh90zE0-pHJirRbZj3vbcjfxnCI_MymebWahqpHMBI6KjXh5mLCJYPKViOeQps1vItRHSTqzjREyLwQ6hpinDjL6YK3TmLc3PhbJiCG3X8wNcy2ezs0Zjx98.hraBxoWKrd4396K58PkCvTnxUm4yOPatQlMpSb7POl8 + - odYVgsK9HvzK4NjHd0dg3DLZxg0cOhQpqAyYhC-kCM-qFufr9ThZpmHMRSwEJUCQzwJ1oOwqMgFkAgSoWfJyxFYJti6dVFHSReR_i7KV9kCiGBrTceLkUcLXTncJ2OKi8E-m-k2ST0GVubO01LnbTWub_WfZWhRdVUn5xhf8ozI.HIPrMN1z3c7jqnDzL2YPmerzQ4bnMcDeRsemRV0-8c8 pragma: - no-cache request-id: - - 96ef68f7-ab7c-45a4-8690-e9d4e99d9dfe + - 7f66622a-a9e8-4e56-9751-e4c181317a20 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -734,9 +841,9 @@ interactions: code: 200 message: OK - request: - body: '{"value": [{"startDate": "2019-12-27T13:56:00.365988Z", "endDate": "2020-12-27T13:56:00.365988Z", - "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2019-12-27T13:56:11.471313Z", - "endDate": "2020-12-27T13:56:11.471313Z", "keyId": "88888888-0000-0000-0000-000000000003", + body: '{"value": [{"startDate": "2020-01-06T14:19:56.105784Z", "endDate": "2021-01-06T14:19:56.105784Z", + "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2020-01-06T14:20:13.953242Z", + "endDate": "2021-01-06T14:20:13.953242Z", "keyId": "88888888-0000-0000-0000-000000000004", "value": "spp!000005"}]}' headers: Accept: @@ -755,11 +862,11 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/80c132cc-aefd-4e48-9421-c8a64358c86d/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/dbb17987-55cc-40a9-bede-d1e82c1f26db/passwordCredentials?api-version=1.6 response: body: string: '' @@ -769,19 +876,19 @@ interactions: cache-control: - no-cache date: - - Fri, 27 Dec 2019 13:56:11 GMT + - Mon, 06 Jan 2020 14:20:14 GMT duration: - - '7048261' + - '7709239' expires: - '-1' ocp-aad-diagnostics-server-name: - - XFTZwrwfCa04ftlyi0qbEXoOO0n9AirMPfPwS39JMLw= + - uw2DI55YPxO27iCQ9gmp7jkFjvTBnlg/TMjn48ai3jY= ocp-aad-session-key: - - SfCyvzxSRqrko7XWxViJMCH00fbsxpiXL0FoNa6p3KWpXqxVqyw1NXxGCcp6Ae0agypgl3b2Qn_7TQT2-J8QJcNdqkHyuK4sTba3nC-uCcucv43oo_0rLc6gCnTeaCR3fRrD6SACKzOf5KqyFRGl9qgx8P_SkFFrKVmPUUxQLUE.po6wrMP-OxXQh1YIsYaWwTpKI44ThO80lIGFDfs1G4g + - coosjklyGqUWbeimgB4UAlPu6wZPJqVcJOFHp265j4bVZrmW6144OwDhWraKMj6bZbr01fRSd_hpFoILqgCmlYrGbBA1OOPJxXmHzmdQnnonCoG36d_9xgSkLtGbsINaRUWgS0-mrgN43GnzWW-UIF-5-ACzmbV44MG8M7V9-v4.5m6DxcOpn__ILBsv4Dt_cxpX-Xa7ez2O6VFwYhR8VaU pragma: - no-cache request-id: - - 054da2f2-f835-4cd8-b3f8-d4c6975214d3 + - a87dc39d-49cc-417f-962d-32e9814b5d86 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -808,14 +915,14 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-authorization/0.52.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.Authorization/roleAssignments?$filter=principalId%20eq%20%271570bb6e-151f-4c5e-b81a-601d27b10f0e%27&api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27ef8d35fc-c14d-4380-b800-195ed452ab64%27&api-version=2018-09-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"1570bb6e-151f-4c5e-b81a-601d27b10f0e","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2019-12-27T13:56:06.4461767Z","updatedOn":"2019-12-27T13:56:06.4461767Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ef8d35fc-c14d-4380-b800-195ed452ab64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2020-01-06T14:20:08.5097844Z","updatedOn":"2020-01-06T14:20:08.5097844Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}]}' headers: cache-control: - no-cache @@ -824,7 +931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:56:12 GMT + - Mon, 06 Jan 2020 14:20:15 GMT expires: - '-1' pragma: @@ -861,7 +968,7 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1200,13 +1307,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 13:56:13 GMT + - Mon, 06 Jan 2020 14:20:15 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1221,7 +1328,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["1570bb6e-151f-4c5e-b81a-601d27b10f0e"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["ef8d35fc-c14d-4380-b800-195ed452ab64"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1240,18 +1347,18 @@ interactions: - -a -n -g -p --role User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1570bb6e-151f-4c5e-b81a-601d27b10f0e","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"d1b0f30f-b46c-403d-b87d-199797808927","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"ef8d35fc-c14d-4380-b800-195ed452ab64","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"9787a456-135b-400e-8696-a08ecfc17ff6","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","d1b0f30f-b46c-403d-b87d-199797808927"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","579137d5-3be9-4c30-b12b-c0930e5274c1"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1264,19 +1371,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:13 GMT + - Mon, 06 Jan 2020 14:20:15 GMT duration: - - '4416982' + - '4396606' expires: - '-1' ocp-aad-diagnostics-server-name: - - AO8aByeydM5hr4Nt08rI3IeFDTLsTL/1ZH6EpPaHXyU= + - CB6SIW0UFZAjiWXJN39BLCKPIxfd8cS9A1TPlCaqMlk= ocp-aad-session-key: - - rJp_-RIGCmF0XwMxz3g0eQt9OBv1vPfGleAq_IAxOy4gSKNRSs_kzwmFRGAtShf6vtJYIi0J9_J-nzn1GaGAdOyTF6PtVPa2oaKGrZV1CvngNO6HOtE1qjIWRTUHDrca2cR5HZLAzCtoCTut8cjMhvkclIvvwSdP8rhDNHhBkdU.SyJz17DQJDEK7LaA9CYTUX2GmGCieRU1xyg9eQ2Y92c + - ez2DePommUXwW9YCqBFkmtCxUWsuU3UJgNQVh855VSvDUqLiAkoNU36GTNApdB4b6LFf3dV7QAAXC-PtOVohFhdZvgT2WVZa-z5T0ERZnhm2ItgYlajFePTd1GPS2fFgs8SMQ8YCP5HbJxNu7fgWVuouGJ7RYu-w8IvQSIIa-SE.81OVgk4guqWnLnTaoqyf_CYsYVOe09LEbgZljaqKV9g pragma: - no-cache request-id: - - 65eccdac-8f49-4f9f-aa0c-857dc54776d4 + - c6880fdf-1637-429e-a48f-f4637af956ce strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1303,18 +1410,18 @@ interactions: - --id User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fclitest.rg000001%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"80c132cc-aefd-4e48-9421-c8a64358c86d","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"d1b0f30f-b46c-403d-b87d-199797808927","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/80c132cc-aefd-4e48-9421-c8a64358c86d/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/80c132cc-aefd-4e48-9421-c8a64358c86d/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"dbb17987-55cc-40a9-bede-d1e82c1f26db","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"9787a456-135b-400e-8696-a08ecfc17ff6","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2020-12-27T13:56:11.471313Z","keyId":"88888888-0000-0000-0000-000000000003","startDate":"2019-12-27T13:56:11.471313Z","value":null},{"customKeyIdentifier":null,"endDate":"2020-12-27T13:56:00.365988Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-12-27T13:56:00.365988Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-01-06T14:20:13.953242Z","keyId":"88888888-0000-0000-0000-000000000004","startDate":"2020-01-06T14:20:13.953242Z","value":null},{"customKeyIdentifier":null,"endDate":"2021-01-06T14:19:56.105784Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-06T14:19:56.105784Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1327,19 +1434,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 13:56:14 GMT + - Mon, 06 Jan 2020 14:20:17 GMT duration: - - '2417009' + - '2429564' expires: - '-1' ocp-aad-diagnostics-server-name: - - AO8aByeydM5hr4Nt08rI3IeFDTLsTL/1ZH6EpPaHXyU= + - bjNxOO4JJe6y/+2Ru4f1c2yR+8kj70jYtxaslVt3278= ocp-aad-session-key: - - wLUMfNw8oYfsYWro8sN-IyaZEUDoE2D3aBE6YfCIhHnxNUhIFq2_IxDajGqJLa4ydL_lp9NljVaxOvzBFSGeqZyftXk4j7fPv_wusE-W3KeVPerfDMPY1OOB-F-7BycFjkwP7rRyeX69UxhXzSxg43lnhXwz-wiwrLuvA9n0KQs.cUONpWmp-YMPXzqaJg4-P7MWdRlaOmoMn82VoEzHQiI + - ZfXpF4BQp1Kw1qQNS0hIgUtNthrWPRPwZuaxTPD68oiuZQ8CqIHYVkR-z8Ce5hF4fjcUE9P2nFP1uQ3emPu2U22yeVzHdS0Uycx9xvN1uIijFOh8Oh8MrGljJHh7snvo9MwFeJJQZVxRmNj2Yc4UY4O4rqroDTbzlNSQnBruD3o.5XnlDK8PQgPexhMuxa9lay4gAFDx5Bm8YI3XDIIMZyI pragma: - no-cache request-id: - - cac4b8b6-7d50-4fc1-9e79-5000f6682a33 + - b72fc2a8-6c3d-4ed5-81a9-e0d8c3e30e58 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1368,11 +1475,11 @@ interactions: - --id User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/80c132cc-aefd-4e48-9421-c8a64358c86d?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/dbb17987-55cc-40a9-bede-d1e82c1f26db?api-version=1.6 response: body: string: '' @@ -1382,19 +1489,19 @@ interactions: cache-control: - no-cache date: - - Fri, 27 Dec 2019 13:56:21 GMT + - Mon, 06 Jan 2020 14:20:24 GMT duration: - - '65147620' + - '62130098' expires: - '-1' ocp-aad-diagnostics-server-name: - - JZYSRpCZhmJGFdvFQE2bGaGIHzHfmfBO9iretpLtuR0= + - jr8yj9FL/uTgHXWOfs1K3qZJqXzBMlORaqSHWNV+91s= ocp-aad-session-key: - - JBjZA6rfuUQHT9VUYujIY-rw3dFrYLDFDjEMnrPuOhlKCgTVOhJAyQFU8qTk2lbQpx1YG2FeEhUm9WEq9fHQbuw40f_maan9xcIHMWx3R5An3O9xSsg-037VHHjsYLE9HlrOyEq0wjPxvTCKo1i5NqEhv9-xVCuj3wdLAZ-AgK8.zcjAkPH83p2zOoCUusvsrjMrfcPe5TJ02hyI_d6M3As + - 4FdQTogsdtiDloGAgm-N_Ezk6tezxd_naT3WKr6NQaBBmVMx5hxlw-_9uVWVwGKYjWpucO2C_AiA4KlBHto4GIbi5JS98Z7nEJj9P-Y7tO-mDQTlmUXlSG14vXzONrZZtmiAnu1eNwGcrT81VW7i6HspGMSeQhVb8JGsRUkBlV0.u0d4h79mg8N884kYN2RvypSP2Nb-dPxvTjBHKsj8jpQ pragma: - no-cache request-id: - - 3f5bb832-d3a2-427c-ba5b-d9e3b8233fe3 + - 8777b9d9-5be7-456f-87d6-e8404369670e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json index 525657e4503..ac2d3d485b1 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json @@ -1,4 +1,4 @@ -#Mon Dec 30 11:27:28 Pacific Standard Time 2019 +#Mon Jan 06 10:22:11 China Standard Time 2020 Color=Red Region=West US feature-management.FalseFeature=false diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index 5294f8e7e82..6e4af509efc 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -33,26 +33,18 @@ from msrestazure.tools import is_valid_resource_id, parse_resource_id from azure.mgmt.storage import StorageManagementClient -from azure.mgmt.web.models import (Site, SiteConfig, User, AppServicePlan, SiteConfigResource, - SkuDescription, SslState, HostNameBinding, NameValuePair, - BackupRequest, DatabaseBackupSetting, BackupSchedule, - RestoreRequest, FrequencyUnit, Certificate, HostNameSslState, - HybridConnection, RampUpRule, UnauthenticatedClientAction, - ManagedServiceIdentity, DeletedAppRestoreRequest, - DefaultErrorResponseException, SnapshotRestoreRequest, - SnapshotRecoverySource, SwiftVirtualNetwork, HostingEnvironmentProfile) from azure.mgmt.applicationinsights import ApplicationInsightsManagementClient from azure.mgmt.relay.models import AccessRights from azure.cli.command_modules.relay._client_factory import hycos_mgmt_client_factory, namespaces_mgmt_client_factory from azure.storage.blob import BlockBlobService, BlobPermissions from azure.cli.command_modules.network._client_factory import network_client_factory -from azure.mgmt.network.models import Delegation from azure.cli.core.commands.client_factory import get_mgmt_service_client from azure.cli.core.commands import LongRunningOperation from azure.cli.core.util import in_cloud_console, shell_safe_json_parse, open_page_in_browser, get_json_object, \ ConfiguredDefaultSetter, sdk_no_wait from azure.cli.core.commands.client_factory import UA_AGENT +from azure.cli.core.profiles import ResourceType from .tunnel import TunnelServer @@ -81,6 +73,8 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi deployment_local_git=None, docker_registry_server_password=None, docker_registry_server_user=None, multicontainer_config_type=None, multicontainer_config_file=None, tags=None, using_webapp_up=False, language=None): + SiteConfig, SkuDescription, Site, NameValuePair = cmd.get_models( + 'SiteConfig', 'SkuDescription', 'Site', 'NameValuePair') if deployment_source_url and deployment_local_git: raise CLIError('usage error: --deployment-source-url | --deployment-local-git') @@ -103,7 +97,7 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi site_config.always_on = True webapp_def = Site(location=location, site_config=site_config, server_farm_id=plan_info.id, tags=tags, https_only=using_webapp_up) - helper = _StackRuntimeHelper(client, linux=is_linux) + helper = _StackRuntimeHelper(cmd, client, linux=is_linux) if is_linux: if not validate_container_app_create_options(runtime, deployment_container_image_name, @@ -243,8 +237,7 @@ def update_app_settings(cmd, resource_group_name, name, settings=None, slot=None def add_azure_storage_account(cmd, resource_group_name, name, custom_id, storage_type, account_name, share_name, access_key, mount_path=None, slot=None, slot_setting=False): - from azure.mgmt.web.models import AzureStorageInfoValue - + AzureStorageInfoValue = cmd.get_models('AzureStorageInfoValue') azure_storage_accounts = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'list_azure_storage_accounts', slot) @@ -264,6 +257,8 @@ def add_azure_storage_account(cmd, resource_group_name, name, custom_id, storage if slot_setting: slot_cfg_names = client.web_apps.list_slot_configuration_names(resource_group_name, name) + + slot_cfg_names.azure_storage_config_names = slot_cfg_names.azure_storage_config_names or [] if custom_id not in slot_cfg_names.azure_storage_config_names: slot_cfg_names.azure_storage_config_names.append(custom_id) @@ -274,7 +269,7 @@ def add_azure_storage_account(cmd, resource_group_name, name, custom_id, storage def update_azure_storage_account(cmd, resource_group_name, name, custom_id, storage_type=None, account_name=None, share_name=None, access_key=None, mount_path=None, slot=None, slot_setting=False): - from azure.mgmt.web.models import AzureStorageInfoValue + AzureStorageInfoValue = cmd.get_models('AzureStorageInfoValue') azure_storage_accounts = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'list_azure_storage_accounts', slot) @@ -329,7 +324,7 @@ def enable_zip_deploy_functionapp(cmd, resource_group_name, name, src, build_rem if build_remote and not app.reserved: raise CLIError('Remote build is only available on Linux function apps') - is_consumption = is_plan_consumption(plan_info) + is_consumption = is_plan_consumption(cmd, plan_info) if (not build_remote) and is_consumption and app.reserved: return upload_zip_to_storage(cmd, resource_group_name, name, src, slot) if build_remote: @@ -556,21 +551,21 @@ def update_functionapp(cmd, instance, plan=None): dest_plan_info = client.app_service_plans.get(instance.resource_group, plan) if dest_plan_info is None: raise CLIError("The plan '{}' doesn't exist".format(plan)) - validate_plan_switch_compatibility(client, instance, dest_plan_info) + validate_plan_switch_compatibility(cmd, client, instance, dest_plan_info) instance.server_farm_id = dest_plan_info.id return instance -def validate_plan_switch_compatibility(client, src_functionapp_instance, dest_plan_instance): +def validate_plan_switch_compatibility(cmd, client, src_functionapp_instance, dest_plan_instance): general_switch_msg = 'Currently the switch is only allowed between a Consumption or an Elastic Premium plan.' src_parse_result = parse_resource_id(src_functionapp_instance.server_farm_id) src_plan_info = client.app_service_plans.get(src_parse_result['resource_group'], src_parse_result['name']) if src_plan_info is None: raise CLIError('Could not determine the current plan of the functionapp') - if not (is_plan_consumption(src_plan_info) or is_plan_elastic_premium(src_plan_info)): + if not (is_plan_consumption(cmd, src_plan_info) or is_plan_elastic_premium(cmd, src_plan_info)): raise CLIError('Your functionapp is not using a Consumption or an Elastic Premium plan. ' + general_switch_msg) - if not (is_plan_consumption(dest_plan_instance) or is_plan_elastic_premium(dest_plan_instance)): + if not (is_plan_consumption(cmd, dest_plan_instance) or is_plan_elastic_premium(cmd, dest_plan_instance)): raise CLIError('You are trying to move to a plan that is not a Consumption or an Elastic Premium plan. ' + general_switch_msg) @@ -594,6 +589,7 @@ def list_deleted_webapp(cmd, resource_group_name=None, name=None, slot=None): def restore_deleted_webapp(cmd, deleted_id, resource_group_name, name, slot=None, restore_content_only=None): + DeletedAppRestoreRequest = cmd.get_models('DeletedAppRestoreRequest') request = DeletedAppRestoreRequest(deleted_site_id=deleted_id, recover_configuration=not restore_content_only) return _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'restore_from_deleted_app', slot, request) @@ -630,6 +626,7 @@ def _list_deleted_app(cli_ctx, resource_group_name=None, name=None, slot=None): def assign_identity(cmd, resource_group_name, name, role='Contributor', slot=None, scope=None): + ManagedServiceIdentity = cmd.get_models('ManagedServiceIdentity') def getter(): return _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get', slot) @@ -648,6 +645,7 @@ def show_identity(cmd, resource_group_name, name, slot=None): def remove_identity(cmd, resource_group_name, name, slot=None): + ManagedServiceIdentity = cmd.get_models('ManagedServiceIdentity') def getter(): return _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get', slot) @@ -677,7 +675,7 @@ def update_auth_settings(cmd, resource_group_name, name, enabled=None, action=No microsoft_account_client_secret=None, # pylint: disable=unused-argument microsoft_account_oauth_scopes=None, slot=None): # pylint: disable=unused-argument auth_settings = get_auth_settings(cmd, resource_group_name, name, slot) - + UnauthenticatedClientAction = cmd.get_models('UnauthenticatedClientAction') if action == 'AllowAnonymous': auth_settings.unauthenticated_client_action = UnauthenticatedClientAction.allow_anonymous elif action: @@ -1135,6 +1133,7 @@ def _mask_creds_related_appsettings(settings): def add_hostname(cmd, resource_group_name, webapp_name, hostname, slot=None): + HostNameBinding = cmd.get_models('HostNameBinding') client = web_client_factory(cmd.cli_ctx) webapp = client.web_apps.get(resource_group_name, webapp_name) if not webapp: @@ -1189,6 +1188,7 @@ def _resolve_hostname_through_dns(hostname): def create_webapp_slot(cmd, resource_group_name, webapp, slot, configuration_source=None): + Site, SiteConfig = cmd.get_models('Site', 'SiteConfig') client = web_client_factory(cmd.cli_ctx) site = client.web_apps.get(resource_group_name, webapp) if not site: @@ -1210,6 +1210,7 @@ def create_webapp_slot(cmd, resource_group_name, webapp, slot, configuration_sou def create_functionapp_slot(cmd, resource_group_name, name, slot, configuration_source=None): + Site = cmd.get_models('Site') client = web_client_factory(cmd.cli_ctx) site = client.web_apps.get(resource_group_name, name) if not site: @@ -1343,6 +1344,7 @@ def delete_source_control(cmd, resource_group_name, name, slot=None): def enable_local_git(cmd, resource_group_name, name, slot=None): + SiteConfigResource = cmd.get_models('SiteConfigResource') client = web_client_factory(cmd.cli_ctx) location = _get_location_from_webapp(client, resource_group_name, name) site_config = SiteConfigResource(location=location) @@ -1380,6 +1382,8 @@ def list_app_service_plans(cmd, resource_group_name=None): def create_app_service_plan(cmd, resource_group_name, name, is_linux, hyper_v, per_site_scaling=False, app_service_environment=None, sku='B1', number_of_workers=None, location=None, tags=None, no_wait=False): + HostingEnvironmentProfile, SkuDescription, AppServicePlan = cmd.get_models( + 'HostingEnvironmentProfile', 'SkuDescription', 'AppServicePlan') sku = _normalize_sku(sku) _validate_asp_sku(app_service_environment, sku) if is_linux and hyper_v: @@ -1458,10 +1462,11 @@ def list_backups(cmd, resource_group_name, webapp_name, slot=None): def create_backup(cmd, resource_group_name, webapp_name, storage_account_url, db_name=None, db_type=None, db_connection_string=None, backup_name=None, slot=None): + BackupRequest = cmd.get_models('BackupRequest') client = web_client_factory(cmd.cli_ctx) if backup_name and backup_name.lower().endswith('.zip'): backup_name = backup_name[:-4] - db_setting = _create_db_setting(db_name, db_type, db_connection_string) + db_setting = _create_db_setting(cmd, db_name, db_type, db_connection_string) backup_request = BackupRequest(backup_request_name=backup_name, storage_account_url=storage_account_url, databases=db_setting) if slot: @@ -1474,6 +1479,8 @@ def update_backup_schedule(cmd, resource_group_name, webapp_name, storage_accoun frequency=None, keep_at_least_one_backup=None, retention_period_in_days=None, db_name=None, db_connection_string=None, db_type=None, backup_name=None, slot=None): + DefaultErrorResponseException, BackupSchedule, BackupRequest = cmd.get_models( + 'DefaultErrorResponseException', 'BackupSchedule', 'BackupRequest') configuration = None if backup_name and backup_name.lower().endswith('.zip'): backup_name = backup_name[:-4] @@ -1505,7 +1512,7 @@ def update_backup_schedule(cmd, resource_group_name, webapp_name, storage_accoun if frequency: # Parse schedule frequency - frequency_num, frequency_unit = _parse_frequency(frequency) + frequency_num, frequency_unit = _parse_frequency(cmd, frequency) else: frequency_num = configuration.backup_schedule.frequency_interval frequency_unit = configuration.backup_schedule.frequency_unit @@ -1531,6 +1538,7 @@ def update_backup_schedule(cmd, resource_group_name, webapp_name, storage_accoun def restore_backup(cmd, resource_group_name, webapp_name, storage_account_url, backup_name, db_name=None, db_type=None, db_connection_string=None, target_name=None, overwrite=None, ignore_hostname_conflict=None, slot=None): + RestoreRequest = cmd.get_models('RestoreRequest') client = web_client_factory(cmd.cli_ctx) storage_blob_name = backup_name if not storage_blob_name.lower().endswith('.zip'): @@ -1554,6 +1562,7 @@ def list_snapshots(cmd, resource_group_name, name, slot=None): def restore_snapshot(cmd, resource_group_name, name, time, slot=None, restore_content_only=False, # pylint: disable=redefined-outer-name source_resource_group=None, source_name=None, source_slot=None): from azure.cli.core.commands.client_factory import get_subscription_id + SnapshotRecoverySource, SnapshotRestoreRequest = cmd.get_models('SnapshotRecoverySource', 'SnapshotRestoreRequest') client = web_client_factory(cmd.cli_ctx) recover_config = not restore_content_only if all([source_resource_group, source_name]): @@ -1579,14 +1588,16 @@ def restore_snapshot(cmd, resource_group_name, name, time, slot=None, restore_co # pylint: disable=inconsistent-return-statements -def _create_db_setting(db_name, db_type, db_connection_string): +def _create_db_setting(cmd, db_name, db_type, db_connection_string): + DatabaseBackupSetting = cmd.get_models('DatabaseBackupSetting') if all([db_name, db_type, db_connection_string]): return [DatabaseBackupSetting(database_type=db_type, name=db_name, connection_string=db_connection_string)] if any([db_name, db_type, db_connection_string]): raise CLIError('usage error: --db-name NAME --db-type TYPE --db-connection-string STRING') -def _parse_frequency(frequency): +def _parse_frequency(cmd, frequency): + FrequencyUnit = cmd.get_models('FrequencyUnit') unit_part = frequency.lower()[-1] if unit_part == 'd': frequency_unit = FrequencyUnit.day @@ -1653,6 +1664,7 @@ def set_deployment_user(cmd, user_name, password=None): ''' Update deployment credentials.(Note, all webapps in your subscription will be impacted) ''' + User = cmd.get_models('User') client = web_client_factory(cmd.cli_ctx) user = User(publishing_user_name=user_name) if password is None: @@ -1731,6 +1743,7 @@ def view_in_browser(cmd, resource_group_name, name, slot=None, logs=False): def _get_url(cmd, resource_group_name, name, slot=None): + SslState = cmd.get_models('SslState') site = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get', slot) if not site: raise CLIError("'{}' app doesn't exist".format(name)) @@ -1841,6 +1854,7 @@ def delete_slot(cmd, resource_group_name, webapp, slot): def set_traffic_routing(cmd, resource_group_name, name, distribution): + RampUpRule = cmd.get_models('RampUpRule') client = web_client_factory(cmd.cli_ctx) site = client.web_apps.get(resource_group_name, name) if not site: @@ -1964,6 +1978,7 @@ def _get_log(url, user_name, password, log_file=None): def upload_ssl_cert(cmd, resource_group_name, name, certificate_password, certificate_file, slot=None): + Certificate = cmd.get_models('Certificate') client = web_client_factory(cmd.cli_ctx) webapp = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get', slot) cert_file = open(certificate_file, 'rb') @@ -2007,6 +2022,7 @@ def delete_ssl_cert(cmd, resource_group_name, certificate_thumbprint): def import_ssl_cert(cmd, resource_group_name, name, key_vault, key_vault_certificate_name): + Certificate = cmd.get_models('Certificate') client = web_client_factory(cmd.cli_ctx) webapp = client.web_apps.get(resource_group_name, name) if not webapp: @@ -2054,14 +2070,15 @@ def _check_service_principal_permissions(cmd, resource_group_name, key_vault_nam return False -def _update_host_name_ssl_state(cli_ctx, resource_group_name, webapp_name, webapp, +def _update_host_name_ssl_state(cmd, resource_group_name, webapp_name, webapp, host_name, ssl_state, thumbprint, slot=None): + Site, HostNameSslState = cmd.get_models('Site', 'HostNameSslState') updated_webapp = Site(host_name_ssl_states=[HostNameSslState(name=host_name, ssl_state=ssl_state, thumbprint=thumbprint, to_update=True)], location=webapp.location, tags=webapp.tags) - return _generic_site_operation(cli_ctx, resource_group_name, webapp_name, 'create_or_update', + return _generic_site_operation(cmd.cli_ctx, resource_group_name, webapp_name, 'create_or_update', slot, updated_webapp) @@ -2076,7 +2093,7 @@ def _update_ssl_binding(cmd, resource_group_name, name, certificate_thumbprint, for webapp_cert in webapp_certs: if webapp_cert.thumbprint == certificate_thumbprint: if len(webapp_cert.host_names) == 1 and not webapp_cert.host_names[0].startswith('*'): - return _update_host_name_ssl_state(cmd.cli_ctx, resource_group_name, name, webapp, + return _update_host_name_ssl_state(cmd, resource_group_name, name, webapp, webapp_cert.host_names[0], ssl_type, certificate_thumbprint, slot) @@ -2084,7 +2101,7 @@ def _update_ssl_binding(cmd, resource_group_name, name, certificate_thumbprint, hostnames_in_webapp = [x.name.split('/')[-1] for x in query_result] to_update = _match_host_names_from_cert(webapp_cert.host_names, hostnames_in_webapp) for h in to_update: - _update_host_name_ssl_state(cmd.cli_ctx, resource_group_name, name, webapp, + _update_host_name_ssl_state(cmd, resource_group_name, name, webapp, h, ssl_type, certificate_thumbprint, slot) return show_webapp(cmd, resource_group_name, name, slot) @@ -2093,11 +2110,13 @@ def _update_ssl_binding(cmd, resource_group_name, name, certificate_thumbprint, def bind_ssl_cert(cmd, resource_group_name, name, certificate_thumbprint, ssl_type, slot=None): + SslState = cmd.get_models('SslState') return _update_ssl_binding(cmd, resource_group_name, name, certificate_thumbprint, SslState.sni_enabled if ssl_type == 'SNI' else SslState.ip_based_enabled, slot) def unbind_ssl_cert(cmd, resource_group_name, name, certificate_thumbprint, slot=None): + SslState = cmd.get_models('SslState') return _update_ssl_binding(cmd, resource_group_name, name, certificate_thumbprint, SslState.disabled, slot) @@ -2118,7 +2137,8 @@ def _match_host_names_from_cert(hostnames_from_cert, hostnames_in_webapp): # help class handles runtime stack in format like 'node|6.1', 'php|5.5' class _StackRuntimeHelper(object): - def __init__(self, client, linux=False): + def __init__(self, cmd, client, linux=False): + self._cmd = cmd self._client = client self._linux = linux self._stacks = [] @@ -2140,7 +2160,8 @@ def update_site_config(stack, site_config): return site_config @staticmethod - def update_site_appsettings(stack, site_config): + def update_site_appsettings(cmd, stack, site_config): + NameValuePair = cmd.get_models('NameValuePair') if site_config.app_settings is None: site_config.app_settings = [] site_config.app_settings += [NameValuePair(name=k, value=v) for k, v in stack['configs'].items()] @@ -2222,6 +2243,7 @@ def get_app_insights_key(cli_ctx, resource_group, name): def create_functionapp_app_service_plan(cmd, resource_group_name, name, is_linux, sku, number_of_workers=None, max_burst=None, location=None, tags=None): + SkuDescription, AppServicePlan = cmd.get_models('SkuDescription', 'AppServicePlan') sku = _normalize_sku(sku) tier = get_sku_name(sku) if max_burst is not None: @@ -2241,14 +2263,16 @@ def create_functionapp_app_service_plan(cmd, resource_group_name, name, is_linux return client.app_service_plans.create_or_update(resource_group_name, name, plan_def) -def is_plan_consumption(plan_info): +def is_plan_consumption(cmd, plan_info): + SkuDescription, AppServicePlan = cmd.get_models('SkuDescription', 'AppServicePlan') if isinstance(plan_info, AppServicePlan): if isinstance(plan_info.sku, SkuDescription): return plan_info.sku.tier.lower() == 'dynamic' return False -def is_plan_elastic_premium(plan_info): +def is_plan_elastic_premium(cmd, plan_info): + SkuDescription, AppServicePlan = cmd.get_models('SkuDescription', 'AppServicePlan') if isinstance(plan_info, AppServicePlan): if isinstance(plan_info.sku, SkuDescription): return plan_info.sku.tier == 'ElasticPremium' @@ -2281,7 +2305,7 @@ def create_function(cmd, resource_group_name, name, storage_account, plan=None, raise CLIError('usage error: --deployment-source-url | --deployment-local-git') if bool(plan) == bool(consumption_plan_location): raise CLIError("usage error: --plan NAME_OR_ID | --consumption-plan-location LOCATION") - + SiteConfig, Site, NameValuePair = cmd.get_models('SiteConfig', 'Site', 'NameValuePair') docker_registry_server_url = parse_docker_image_name(deployment_container_image_name) site_config = SiteConfig(app_settings=[]) @@ -2659,6 +2683,7 @@ def list_hc(cmd, name, resource_group_name, slot=None): def add_hc(cmd, name, resource_group_name, namespace, hybrid_connection, slot=None): + HybridConnection = cmd.get_models('HybridConnection') linux_webapp = show_webapp(cmd, resource_group_name, name, slot) is_linux = linux_webapp.reserved if is_linux: @@ -2748,6 +2773,7 @@ def add_hc(cmd, name, resource_group_name, namespace, hybrid_connection, slot=No # set the key the apps use to connect with the hybrid connection def set_hc_key(cmd, plan, resource_group_name, namespace, hybrid_connection, key_type): + HybridConnection = cmd.get_models('HybridConnection') web_client = web_client_factory(cmd.cli_ctx) # extract the hybrid connection resource group @@ -2880,6 +2906,8 @@ def list_vnet_integration(cmd, name, resource_group_name, slot=None): def add_vnet_integration(cmd, name, resource_group_name, vnet, subnet, slot=None): + SwiftVirtualNetwork = cmd.get_models('SwiftVirtualNetwork') + Delegation = cmd.get_models('Delegation', resource_type=ResourceType.MGMT_NETWORK) client = web_client_factory(cmd.cli_ctx) vnet_client = network_client_factory(cmd.cli_ctx) @@ -2969,6 +2997,7 @@ def get_history_triggered_webjob(cmd, resource_group_name, name, webjob_name, sl def webapp_up(cmd, name, resource_group_name=None, plan=None, location=None, sku=None, dryrun=False, logs=False, # pylint: disable=too-many-statements, launch_browser=False, html=False): import os + AppServicePlan = cmd.get_models('AppServicePlan') src_dir = os.getcwd() _src_path_escaped = "{}".format(src_dir.replace(os.sep, os.sep + os.sep)) client = web_client_factory(cmd.cli_ctx) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml index 93cd9eb6105..a07e1b60c21 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml @@ -13,25 +13,24 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '387' + - '431' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Aug 2019 22:00:01 GMT + - Mon, 06 Jan 2020 14:19:12 GMT expires: - '-1' pragma: @@ -65,9 +64,8 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -83,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:01 GMT + - Mon, 06 Jan 2020 14:19:13 GMT expires: - '-1' pragma: @@ -121,25 +119,24 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '387' + - '431' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Aug 2019 22:00:02 GMT + - Mon, 06 Jan 2020 14:19:14 GMT expires: - '-1' pragma: @@ -173,9 +170,8 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -183,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6189,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6189","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -193,7 +189,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:19 GMT + - Mon, 06 Jan 2020 14:19:33 GMT expires: - '-1' pragma: @@ -211,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -231,9 +227,8 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -241,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6189,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6189","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -251,7 +246,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:21 GMT + - Mon, 06 Jan 2020 14:19:35 GMT expires: - '-1' pragma: @@ -292,9 +287,8 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -310,7 +304,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:21 GMT + - Mon, 06 Jan 2020 14:19:35 GMT expires: - '-1' pragma: @@ -328,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -348,9 +342,8 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -358,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6189,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6189","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -368,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:22 GMT + - Mon, 06 Jan 2020 14:19:36 GMT expires: - '-1' pragma: @@ -404,69 +397,38 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"Ruby - 2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby - 2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby - 2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby - 2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node.js","dependency":null,"majorVersions":[{"displayVersion":"Node.js - LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js - 6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js - 10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"PHP - 5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6.40-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6.40-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP - 7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.33-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.33-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP - 7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2.15-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2.15-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP - 7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":".NET Core 1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET - Core 2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"Python - 3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python - 3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python - 2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 + LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 + LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 + LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 + LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '12309' + - '17428' content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:24 GMT + - Mon, 06 Jan 2020 14:19:38 GMT expires: - '-1' pragma: @@ -492,7 +454,8 @@ interactions: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": false}}''' headers: Accept: - application/json @@ -503,15 +466,14 @@ interactions: Connection: - keep-alive Content-Length: - - '514' + - '534' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -519,18 +481,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:28.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null}}' + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:19:44.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1C23D3079C4131515FC7941B8DEB73D57B798EBB38A9FF9B097B96DCFD73DE72","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3484' + - '3626' content-type: - application/json date: - - Wed, 21 Aug 2019 22:00:47 GMT + - Mon, 06 Jan 2020 14:20:03 GMT etag: - - '"1D5586BD8783840"' + - '"1D5C49C57E9988B"' expires: - '-1' pragma: @@ -572,9 +534,8 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -583,17 +544,17 @@ interactions: body: string: @@ -605,7 +566,7 @@ interactions: content-type: - application/xml date: - - Wed, 21 Aug 2019 22:00:48 GMT + - Mon, 06 Jan 2020 14:20:03 GMT expires: - '-1' pragma: @@ -686,13 +647,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Wed, 21 Aug 2019 22:01:18 GMT + - Mon, 06 Jan 2020 14:21:50 GMT etag: - - W/"ca5-16acc376e90" + - W/"ca5-16e3e8a1c88" last-modified: - - Sat, 18 May 2019 18:32:26 GMT + - Wed, 06 Nov 2019 02:27:49 GMT set-cookie: - - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.azurewebsites.net + - ARRAffinity=5a6b5a0a634d30de5f17ff449e118314cc910a66acb034b5e20d8ebce3ea88fe;Path=/;HttpOnly;Domain=webapp-sshz2nhokjtyd7nwj.azurewebsites.net x-powered-by: - Express status: @@ -712,9 +673,8 @@ interactions: ParameterSetName: - -g -n --timeout User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -724,459 +684,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/web","name":"webapp-ssh000003","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' - headers: - cache-control: - - no-cache - content-length: - - '3052' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:01:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '3482' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:01:53 GMT - etag: - - '"1D5586BD8783840"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:01:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:01:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' - headers: - cache-control: - - no-cache - content-length: - - '3482' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:01:56 GMT - etag: - - '"1D5586BD8783840"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:01:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/publishingcredentials/list?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishingcredentials/$webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan - West","properties":{"name":null,"publishingUserName":"$webapp-ssh000003","publishingPassword":"1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-ssh000003:1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH@webapp-ssh000003.scm.azurewebsites.net"}}' - headers: - cache-control: - - no-cache - content-length: - - '774' - content-type: - - application/json - date: - - Wed, 21 Aug 2019 22:01:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2019-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' headers: cache-control: - no-cache content-length: - - '3482' + - '3093' content-type: - application/json date: - - Wed, 21 Aug 2019 22:02:00 GMT - etag: - - '"1D5586BD8783840"' + - Mon, 06 Jan 2020 14:22:21 GMT expires: - '-1' pragma: @@ -1198,129 +715,4 @@ interactions: status: code: 200 message: OK -- request: - body: '{}' - headers: - Accept: - - application/xml - Accept-Encoding: - - gzip, deflate - CommandName: - - webapp ssh - Connection: - - keep-alive - Content-Length: - - '2' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --timeout - User-Agent: - - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) - msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python - AZURECLI/2.0.71 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 - response: - body: - string: - headers: - cache-control: - - no-cache - content-length: - - '1730' - content-type: - - application/xml - date: - - Wed, 21 Aug 2019 22:02:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://webapp-ssh000003.scm.azurewebsites.net/api/settings - response: - body: - string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_AUTH_ENABLED":"False","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","ScmType":"None","WEBSITE_SITE_NAME":"webapp-ssh000003","WEBSITE_NODE_DEFAULT_VERSION":"8.11"}' - headers: - content-length: - - '312' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Aug 2019 22:02:21 GMT - server: - - Kestrel - set-cookie: - - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net - transfer-encoding: - - chunked - vary: - - Accept-Encoding - status: - code: 200 - message: OK -- request: - body: null - headers: {} - method: GET - uri: https://webapp-ssh000003.scm.azurewebsites.net/AppServiceTunnel/Tunnel.ashx?GetStatus - response: - body: - string: SUCCESS:2222 - headers: - date: - - Wed, 21 Aug 2019 22:02:22 GMT - server: - - Kestrel - set-cookie: - - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net - transfer-encoding: - - chunked - status: - code: 200 - message: OK version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml index bf01fa2b731..6416d83bc21 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:24:01 GMT + - Mon, 06 Jan 2020 14:19:22 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:02 GMT + - Mon, 06 Jan 2020 14:19:23 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:23:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:24:02 GMT + - Mon, 06 Jan 2020 14:19:24 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27727,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27727","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":35614,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35614","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:11 GMT + - Mon, 06 Jan 2020 14:19:37 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27727,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27727","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":35614,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35614","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:12 GMT + - Mon, 06 Jan 2020 14:19:38 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:12 GMT + - Mon, 06 Jan 2020 14:19:39 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27727,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-059_27727","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":35614,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-051_35614","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:14 GMT + - Mon, 06 Jan 2020 14:19:40 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": false}}''' headers: Accept: - application/json @@ -396,14 +397,14 @@ interactions: Connection: - keep-alive Content-Length: - - '520' + - '540' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -411,18 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:24:16.953","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7FA9C93A467340E70FCC85677A9691AE83DC4CE944F06B5B39440E718A38FD73","kind":"app","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-051.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:19:45.987","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-webapp-nwr000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E37CFF67DFDEEE95B5F7CCFD6216CC26FE1CD1BE28B7E7F1CF591CCB1FF2F452","kind":"app","inboundIpAddress":"40.78.18.232","possibleInboundIpAddresses":"40.78.18.232","outboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","possibleOutboundIpAddresses":"40.78.17.157,40.78.21.191,40.78.22.38,40.78.21.180","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-051","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3512' + - '3520' content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:34 GMT + - Mon, 06 Jan 2020 14:20:05 GMT etag: - - '"1D5BF8166D5C630"' + - '"1D5C49C59270790"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '496' + - '499' x-powered-by: - ASP.NET status: @@ -465,7 +466,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -474,19 +475,19 @@ interactions: body: string: @@ -498,7 +499,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:24:35 GMT + - Mon, 06 Jan 2020 14:20:08 GMT expires: - '-1' pragma: @@ -533,7 +534,7 @@ interactions: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -552,7 +553,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:36 GMT + - Mon, 06 Jan 2020 14:20:10 GMT expires: - '-1' pragma: @@ -610,7 +611,7 @@ interactions: - -g -n --rule-name --action --ip-address --priority --scm-site User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PATCH @@ -629,9 +630,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:38 GMT + - Mon, 06 Jan 2020 14:20:11 GMT etag: - - '"1D5BF8166D5C630"' + - '"1D5C49C59270790"' expires: - '-1' pragma: @@ -649,7 +650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index 6eb8d583142..4a97f362547 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T01:56:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 01:56:07 GMT + - Mon, 06 Jan 2020 14:19:22 GMT expires: - '-1' pragma: @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:09 GMT + - Mon, 06 Jan 2020 14:19:23 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T01:56:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 01:56:09 GMT + - Mon, 06 Jan 2020 14:19:24 GMT expires: - '-1' pragma: @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23202,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26645,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_26645","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:20 GMT + - Mon, 06 Jan 2020 14:19:35 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23202,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26645,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_26645","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:21 GMT + - Mon, 06 Jan 2020 14:19:35 GMT expires: - '-1' pragma: @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:21 GMT + - Mon, 06 Jan 2020 14:19:36 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23202,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-067_23202","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26645,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_26645","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:23 GMT + - Mon, 06 Jan 2020 14:19:37 GMT expires: - '-1' pragma: @@ -412,18 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T01:56:29.6266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7112E9DBA39F86A5A25B4A70473B4D68E397C48ADF5600EF9C7D319B3F92223D","kind":"app","inboundIpAddress":"104.210.38.149","possibleInboundIpAddresses":"104.210.38.149","outboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","possibleOutboundIpAddresses":"23.99.58.14,23.99.60.163,23.99.57.5,23.99.60.173","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:19:44.8066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F8140AC0FEEE62A42C3F40E63A158280BE75E749590AC451A29A82DF6CB0D150","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3735' + - '3753' content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:47 GMT + - Mon, 06 Jan 2020 14:20:04 GMT etag: - - '"1D5C43483793580"' + - '"1D5C49C5848B580"' expires: - '-1' pragma: @@ -476,19 +476,19 @@ interactions: string: @@ -500,7 +500,7 @@ interactions: content-type: - application/xml date: - - Mon, 06 Jan 2020 01:56:47 GMT + - Mon, 06 Jan 2020 14:20:04 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:48 GMT + - Mon, 06 Jan 2020 14:20:06 GMT expires: - '-1' pragma: @@ -612,7 +612,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:49 GMT + - Mon, 06 Jan 2020 14:20:08 GMT expires: - '-1' pragma: @@ -690,9 +690,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:51 GMT + - Mon, 06 Jan 2020 14:20:11 GMT etag: - - '"1D5C43483793580"' + - '"1D5C49C5848B580"' expires: - '-1' pragma: @@ -750,7 +750,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:52 GMT + - Mon, 06 Jan 2020 14:20:12 GMT expires: - '-1' pragma: @@ -806,7 +806,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:54 GMT + - Mon, 06 Jan 2020 14:20:13 GMT expires: - '-1' pragma: @@ -867,9 +867,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:56 GMT + - Mon, 06 Jan 2020 14:20:15 GMT etag: - - '"1D5C43492F4EF0B"' + - '"1D5C49C6A05374B"' expires: - '-1' pragma: @@ -887,7 +887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -927,7 +927,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:57 GMT + - Mon, 06 Jan 2020 14:20:17 GMT expires: - '-1' pragma: @@ -983,7 +983,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:58 GMT + - Mon, 06 Jan 2020 14:20:18 GMT expires: - '-1' pragma: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:59 GMT + - Mon, 06 Jan 2020 14:20:19 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:56:59 GMT + - Mon, 06 Jan 2020 14:20:20 GMT expires: - '-1' pragma: @@ -1154,9 +1154,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:03 GMT + - Mon, 06 Jan 2020 14:20:20 GMT etag: - - '"1D5C434978F6BC0"' + - '"1D5C49C6D60CB60"' expires: - '-1' pragma: @@ -1174,7 +1174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1212,9 +1212,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:05 GMT + - Mon, 06 Jan 2020 14:20:22 GMT etag: - - '"1D5C434978F6BC0"' + - '"1D5C49C6D60CB60"' expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:05 GMT + - Mon, 06 Jan 2020 14:20:22 GMT expires: - '-1' pragma: @@ -1326,8 +1326,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":19241,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-103_19241","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":15171,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-125_15171","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1336,7 +1336,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:21 GMT + - Mon, 06 Jan 2020 14:20:41 GMT expires: - '-1' pragma: @@ -1354,7 +1354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -1383,8 +1383,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":19241,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-103_19241","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":15171,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-125_15171","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1393,7 +1393,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:23 GMT + - Mon, 06 Jan 2020 14:20:43 GMT expires: - '-1' pragma: @@ -1451,7 +1451,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:23 GMT + - Mon, 06 Jan 2020 14:20:44 GMT expires: - '-1' pragma: @@ -1498,8 +1498,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":19241,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-103_19241","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":15171,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-125_15171","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1508,7 +1508,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:24 GMT + - Mon, 06 Jan 2020 14:20:45 GMT expires: - '-1' pragma: @@ -1575,7 +1575,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:25 GMT + - Mon, 06 Jan 2020 14:20:45 GMT expires: - '-1' pragma: @@ -1627,18 +1627,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005","name":"webapp-linux000005","type":"Microsoft.Web/sites","kind":"app,linux","location":"East - US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T01:57:31.6633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"AA36139C13FCB2D1A4CD76C5905DA01DBE559E483FBDE0A8DD90A1E2404C0468","kind":"app,linux","inboundIpAddress":"40.121.32.232","possibleInboundIpAddresses":"40.121.32.232","outboundIpAddresses":"40.121.32.232,40.114.29.199,104.211.16.51,40.121.36.86,40.121.38.194","possibleOutboundIpAddresses":"40.121.32.232,40.114.29.199,104.211.16.51,40.121.36.86,40.121.38.194,40.121.35.60,40.121.44.194,40.121.36.231","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-125.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:49.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6441FAAADD44DFBC571C728405B38ADB7A025DC69172F963323E83547CC3642E","kind":"app,linux","inboundIpAddress":"104.45.141.247","possibleInboundIpAddresses":"104.45.141.247","outboundIpAddresses":"104.45.141.247,137.135.68.200,40.114.0.237,137.135.72.121,104.45.154.191","possibleOutboundIpAddresses":"104.45.141.247,137.135.68.200,40.114.0.237,137.135.72.121,104.45.154.191,137.117.65.231,104.41.156.195,137.135.71.44,137.135.69.14,23.100.31.222","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-125","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3625' + - '3661' content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:49 GMT + - Mon, 06 Jan 2020 14:21:06 GMT etag: - - '"1D5C434A8934BEB"' + - '"1D5C49C7ED61800"' expires: - '-1' pragma: @@ -1690,17 +1690,17 @@ interactions: body: string: @@ -1712,7 +1712,7 @@ interactions: content-type: - application/xml date: - - Mon, 06 Jan 2020 01:57:50 GMT + - Mon, 06 Jan 2020 14:21:07 GMT expires: - '-1' pragma: @@ -1767,7 +1767,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:53 GMT + - Mon, 06 Jan 2020 14:21:09 GMT expires: - '-1' pragma: @@ -1830,9 +1830,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:54 GMT + - Mon, 06 Jan 2020 14:21:10 GMT etag: - - '"1D5C434B5DF884B"' + - '"1D5C49C8AED15B5"' expires: - '-1' pragma: @@ -1890,7 +1890,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:56 GMT + - Mon, 06 Jan 2020 14:21:11 GMT expires: - '-1' pragma: @@ -1908,7 +1908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:56 GMT + - Mon, 06 Jan 2020 14:21:12 GMT expires: - '-1' pragma: @@ -2002,7 +2002,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:57:57 GMT + - Mon, 06 Jan 2020 14:21:12 GMT expires: - '-1' pragma: @@ -2064,9 +2064,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:00 GMT + - Mon, 06 Jan 2020 14:21:14 GMT etag: - - '"1D5C434B914F6C0"' + - '"1D5C49C8D6BEB60"' expires: - '-1' pragma: @@ -2084,7 +2084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:01 GMT + - Mon, 06 Jan 2020 14:21:15 GMT expires: - '-1' pragma: @@ -2180,7 +2180,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:02 GMT + - Mon, 06 Jan 2020 14:21:17 GMT expires: - '-1' pragma: @@ -2236,7 +2236,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:03 GMT + - Mon, 06 Jan 2020 14:21:19 GMT expires: - '-1' pragma: @@ -2254,7 +2254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2292,7 +2292,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:04 GMT + - Mon, 06 Jan 2020 14:21:20 GMT expires: - '-1' pragma: @@ -2348,7 +2348,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:07 GMT + - Mon, 06 Jan 2020 14:21:21 GMT expires: - '-1' pragma: @@ -2366,7 +2366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2404,7 +2404,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:08 GMT + - Mon, 06 Jan 2020 14:21:22 GMT expires: - '-1' pragma: @@ -2462,9 +2462,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:08 GMT + - Mon, 06 Jan 2020 14:21:23 GMT etag: - - '"1D5C434BE58D2D5"' + - '"1D5C49C925E6620"' expires: - '-1' pragma: @@ -2482,7 +2482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -2522,7 +2522,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:09 GMT + - Mon, 06 Jan 2020 14:21:23 GMT expires: - '-1' pragma: @@ -2540,7 +2540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2584,9 +2584,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:11 GMT + - Mon, 06 Jan 2020 14:21:26 GMT etag: - - '"1D5C434BFE17BAB"' + - '"1D5C49C9490F08B"' expires: - '-1' pragma: @@ -2604,7 +2604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -2642,7 +2642,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:11 GMT + - Mon, 06 Jan 2020 14:21:26 GMT expires: - '-1' pragma: @@ -2700,7 +2700,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:12 GMT + - Mon, 06 Jan 2020 14:21:27 GMT expires: - '-1' pragma: @@ -2718,7 +2718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: @@ -2758,7 +2758,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:14 GMT + - Mon, 06 Jan 2020 14:21:28 GMT expires: - '-1' pragma: @@ -2814,7 +2814,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:16 GMT + - Mon, 06 Jan 2020 14:21:29 GMT expires: - '-1' pragma: @@ -2870,7 +2870,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:17 GMT + - Mon, 06 Jan 2020 14:21:31 GMT expires: - '-1' pragma: @@ -2888,7 +2888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2926,7 +2926,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:17 GMT + - Mon, 06 Jan 2020 14:21:32 GMT expires: - '-1' pragma: @@ -2985,7 +2985,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:19 GMT + - Mon, 06 Jan 2020 14:21:32 GMT expires: - '-1' pragma: @@ -3003,7 +3003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -3046,9 +3046,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:19 GMT + - Mon, 06 Jan 2020 14:21:33 GMT etag: - - '"1D5C434C4CACEAB"' + - '"1D5C49C98E0A8A0"' expires: - '-1' pragma: @@ -3066,7 +3066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -3106,7 +3106,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:20 GMT + - Mon, 06 Jan 2020 14:21:34 GMT expires: - '-1' pragma: @@ -3124,7 +3124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -3162,7 +3162,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 01:58:21 GMT + - Mon, 06 Jan 2020 14:21:36 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml index 6903d7c335e..1f0ce977e11 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_e2e.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 08:38:50 GMT + - Mon, 06 Jan 2020 14:19:13 GMT expires: - '-1' pragma: @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:38:51 GMT + - Mon, 06 Jan 2020 14:19:15 GMT expires: - '-1' pragma: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 08:38:52 GMT + - Mon, 06 Jan 2020 14:19:16 GMT expires: - '-1' pragma: @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:03 GMT + - Mon, 06 Jan 2020 14:19:27 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -234,8 +234,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:06 GMT + - Mon, 06 Jan 2020 14:19:29 GMT expires: - '-1' pragma: @@ -288,7 +288,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 08:39:06 GMT + - Mon, 06 Jan 2020 14:19:30 GMT expires: - '-1' pragma: @@ -347,7 +347,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:07 GMT + - Mon, 06 Jan 2020 14:19:30 GMT expires: - '-1' pragma: @@ -393,7 +393,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T08:38:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -402,7 +402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 08:39:07 GMT + - Mon, 06 Jan 2020 14:19:31 GMT expires: - '-1' pragma: @@ -443,8 +443,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"westus","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":null,"webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","capacity":1}}' headers: cache-control: - no-cache @@ -453,7 +453,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:13 GMT + - Mon, 06 Jan 2020 14:19:38 GMT expires: - '-1' pragma: @@ -471,7 +471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -500,8 +500,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -510,7 +510,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:15 GMT + - Mon, 06 Jan 2020 14:19:39 GMT expires: - '-1' pragma: @@ -555,8 +555,8 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache @@ -565,7 +565,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:15 GMT + - Mon, 06 Jan 2020 14:19:40 GMT expires: - '-1' pragma: @@ -610,8 +610,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -620,7 +620,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:18 GMT + - Mon, 06 Jan 2020 14:19:41 GMT expires: - '-1' pragma: @@ -665,8 +665,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -675,7 +675,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:18 GMT + - Mon, 06 Jan 2020 14:19:43 GMT expires: - '-1' pragma: @@ -733,7 +733,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:19 GMT + - Mon, 06 Jan 2020 14:19:44 GMT expires: - '-1' pragma: @@ -751,7 +751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -780,8 +780,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -790,7 +790,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:19 GMT + - Mon, 06 Jan 2020 14:19:45 GMT expires: - '-1' pragma: @@ -843,7 +843,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:28.137","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:19:50.163","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -852,9 +852,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:46 GMT + - Mon, 06 Jan 2020 14:20:08 GMT etag: - - '"1D5C3A3A4D2ED70"' + - '"1D5C49C5BCE80E0"' expires: - '-1' pragma: @@ -906,17 +906,17 @@ interactions: body: string: @@ -928,7 +928,7 @@ interactions: content-type: - application/xml date: - - Sun, 05 Jan 2020 08:39:46 GMT + - Mon, 06 Jan 2020 14:20:09 GMT expires: - '-1' pragma: @@ -971,8 +971,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -981,7 +981,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:48 GMT + - Mon, 06 Jan 2020 14:20:11 GMT expires: - '-1' pragma: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:49 GMT + - Mon, 06 Jan 2020 14:20:12 GMT expires: - '-1' pragma: @@ -1086,8 +1086,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","name":"webapp-e2e-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26663,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26663","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26695,"name":"webapp-e2e-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":true,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-065_26695","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1096,7 +1096,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:49 GMT + - Mon, 06 Jan 2020 14:20:12 GMT expires: - '-1' pragma: @@ -1149,18 +1149,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:15.017","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3523' + - '3524' content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:52 GMT + - Mon, 06 Jan 2020 14:20:16 GMT etag: - - '"1D5C3A3A4D2ED70"' + - '"1D5C49C5BCE80E0"' expires: - '-1' pragma: @@ -1212,17 +1212,17 @@ interactions: body: string: @@ -1234,7 +1234,7 @@ interactions: content-type: - application/xml date: - - Sun, 05 Jan 2020 08:39:53 GMT + - Mon, 06 Jan 2020 14:20:17 GMT expires: - '-1' pragma: @@ -1277,16 +1277,16 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:15.017","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '3561' + - '3562' content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:54 GMT + - Mon, 06 Jan 2020 14:20:18 GMT expires: - '-1' pragma: @@ -1331,18 +1331,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:15.017","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3521' + - '3522' content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:55 GMT + - Mon, 06 Jan 2020 14:20:19 GMT etag: - - '"1D5C3A3B2443E00"' + - '"1D5C49C6A085190"' expires: - '-1' pragma: @@ -1387,18 +1387,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:15.017","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3521' + - '3522' content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:56 GMT + - Mon, 06 Jan 2020 14:20:19 GMT etag: - - '"1D5C3A3B2443E00"' + - '"1D5C49C6A085190"' expires: - '-1' pragma: @@ -1448,17 +1448,17 @@ interactions: body: string: @@ -1470,7 +1470,7 @@ interactions: content-type: - application/xml date: - - Sun, 05 Jan 2020 08:39:57 GMT + - Mon, 06 Jan 2020 14:20:21 GMT expires: - '-1' pragma: @@ -1484,7 +1484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1513,18 +1513,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:51.52","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:15.017","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3521' + - '3522' content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:58 GMT + - Mon, 06 Jan 2020 14:20:22 GMT etag: - - '"1D5C3A3B2443E00"' + - '"1D5C49C6A085190"' expires: - '-1' pragma: @@ -1585,9 +1585,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:59 GMT + - Mon, 06 Jan 2020 14:20:23 GMT etag: - - '"1D5C3A3B2443E00"' + - '"1D5C49C6A085190"' expires: - '-1' pragma: @@ -1605,7 +1605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -1642,7 +1642,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:39:59 GMT + - Mon, 06 Jan 2020 14:20:23 GMT expires: - '-1' pragma: @@ -1696,9 +1696,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:00 GMT + - Mon, 06 Jan 2020 14:20:23 GMT etag: - - '"1D5C3A3B7003F70"' + - '"1D5C49C6EDD3230"' expires: - '-1' pragma: @@ -1752,9 +1752,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:01 GMT + - Mon, 06 Jan 2020 14:20:25 GMT etag: - - '"1D5C3A3B7003F70"' + - '"1D5C49C6EDD3230"' expires: - '-1' pragma: @@ -1800,7 +1800,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:59.463","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:23.123","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -1809,9 +1809,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:02 GMT + - Mon, 06 Jan 2020 14:20:26 GMT etag: - - '"1D5C3A3B7003F70"' + - '"1D5C49C6EDD3230"' expires: - '-1' pragma: @@ -1857,7 +1857,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:39:59.463","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:23.123","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -1866,9 +1866,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:03 GMT + - Mon, 06 Jan 2020 14:20:28 GMT etag: - - '"1D5C3A3B7003F70"' + - '"1D5C49C6EDD3230"' expires: - '-1' pragma: @@ -1930,9 +1930,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:05 GMT + - Mon, 06 Jan 2020 14:20:29 GMT etag: - - '"1D5C3A3BA5CD7F0"' + - '"1D5C49C730BE7C0"' expires: - '-1' pragma: @@ -1950,7 +1950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-powered-by: - ASP.NET status: @@ -1979,18 +1979,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:05.103","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:30.14","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3522' + - '3521' content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:06 GMT + - Mon, 06 Jan 2020 14:20:31 GMT etag: - - '"1D5C3A3BA5CD7F0"' + - '"1D5C49C730BE7C0"' expires: - '-1' pragma: @@ -2044,7 +2044,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:08 GMT + - Mon, 06 Jan 2020 14:20:31 GMT expires: - '-1' pragma: @@ -2100,7 +2100,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:09 GMT + - Mon, 06 Jan 2020 14:20:33 GMT expires: - '-1' pragma: @@ -2150,17 +2150,17 @@ interactions: body: string: @@ -2172,7 +2172,7 @@ interactions: content-type: - application/xml date: - - Sun, 05 Jan 2020 08:40:10 GMT + - Mon, 06 Jan 2020 14:20:33 GMT expires: - '-1' pragma: @@ -2215,18 +2215,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:05.103","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:30.14","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3522' + - '3521' content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:11 GMT + - Mon, 06 Jan 2020 14:20:36 GMT etag: - - '"1D5C3A3BA5CD7F0"' + - '"1D5C49C730BE7C0"' expires: - '-1' pragma: @@ -2279,7 +2279,7 @@ interactions: content-length: - '0' date: - - Sun, 05 Jan 2020 08:40:12 GMT + - Mon, 06 Jan 2020 14:20:36 GMT expires: - '-1' pragma: @@ -2293,7 +2293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -2322,18 +2322,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:12.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:36.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3522' + - '3521' content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:13 GMT + - Mon, 06 Jan 2020 14:20:37 GMT etag: - - '"1D5C3A3BEE916D0"' + - '"1D5C49C76EA3360"' expires: - '-1' pragma: @@ -2378,18 +2378,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:12.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:36.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3522' + - '3521' content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:14 GMT + - Mon, 06 Jan 2020 14:20:39 GMT etag: - - '"1D5C3A3BEE916D0"' + - '"1D5C49C76EA3360"' expires: - '-1' pragma: @@ -2439,17 +2439,17 @@ interactions: body: string: @@ -2461,7 +2461,7 @@ interactions: content-type: - application/xml date: - - Sun, 05 Jan 2020 08:40:15 GMT + - Mon, 06 Jan 2020 14:20:39 GMT expires: - '-1' pragma: @@ -2504,18 +2504,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:12.733","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Stopped","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:36.63","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3522' + - '3521' content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:17 GMT + - Mon, 06 Jan 2020 14:20:40 GMT etag: - - '"1D5C3A3BEE916D0"' + - '"1D5C49C76EA3360"' expires: - '-1' pragma: @@ -2568,7 +2568,7 @@ interactions: content-length: - '0' date: - - Sun, 05 Jan 2020 08:40:18 GMT + - Mon, 06 Jan 2020 14:20:41 GMT expires: - '-1' pragma: @@ -2611,7 +2611,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:42.043","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -2620,9 +2620,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:20 GMT + - Mon, 06 Jan 2020 14:20:42 GMT etag: - - '"1D5C3A3C245AF50"' + - '"1D5C49C7A2428B0"' expires: - '-1' pragma: @@ -2667,7 +2667,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:42.043","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -2676,9 +2676,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:20 GMT + - Mon, 06 Jan 2020 14:20:43 GMT etag: - - '"1D5C3A3C245AF50"' + - '"1D5C49C7A2428B0"' expires: - '-1' pragma: @@ -2728,17 +2728,17 @@ interactions: body: string: @@ -2750,7 +2750,7 @@ interactions: content-type: - application/xml date: - - Sun, 05 Jan 2020 08:40:21 GMT + - Mon, 06 Jan 2020 14:20:45 GMT expires: - '-1' pragma: @@ -2764,7 +2764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2795,7 +2795,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002/publishingcredentials/$webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:xksw5mKroaNYn8rbsv3qpH5jbl0yskRNN0A3fsbk6Rw74pRhfsKl6FyAxWf9@webapp-e2e000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$webapp-e2e000002","publishingPassword":"bJ3XzlxjDPKfuAs08xHky688T8jaK3mKAcQi9ZW72BRz3msGXmuDiTo5QPGC","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-e2e000002:bJ3XzlxjDPKfuAs08xHky688T8jaK3mKAcQi9ZW72BRz3msGXmuDiTo5QPGC@webapp-e2e000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -2804,7 +2804,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:22 GMT + - Mon, 06 Jan 2020 14:20:46 GMT expires: - '-1' pragma: @@ -2851,7 +2851,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:42.043","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -2860,9 +2860,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:25 GMT + - Mon, 06 Jan 2020 14:20:47 GMT etag: - - '"1D5C3A3C245AF50"' + - '"1D5C49C7A2428B0"' expires: - '-1' pragma: @@ -2907,7 +2907,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-e2e000002","name":"webapp-e2e000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T08:40:18.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"5F3BE8D584C7BA19B99AA757336825E94DB781B56EEEAE15CEA102FAFE055AED","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-e2e000002","state":"Running","hostNames":["webapp-e2e000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-e2e000002","repositorySiteName":"webapp-e2e000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-e2e000002.azurewebsites.net","webapp-e2e000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-e2e000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-e2e000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-e2e-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:42.043","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-e2e000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"60839F6C3360A6C20E82F3D8F9761BB02D3D87EF0712991FEF752B337AA757FA","kind":"app","inboundIpAddress":"40.83.183.236","possibleInboundIpAddresses":"40.83.183.236","outboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","possibleOutboundIpAddresses":"40.83.179.31,40.83.181.84,40.83.183.190,40.83.183.1","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-e2e000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -2916,9 +2916,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 08:40:26 GMT + - Mon, 06 Jan 2020 14:20:49 GMT etag: - - '"1D5C3A3C245AF50"' + - '"1D5C49C7A2428B0"' expires: - '-1' pragma: @@ -2968,17 +2968,17 @@ interactions: body: string: @@ -2990,7 +2990,7 @@ interactions: content-type: - application/xml date: - - Sun, 05 Jan 2020 08:40:27 GMT + - Mon, 06 Jan 2020 14:20:50 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml index c8e7d7a992f..f30c0a5b30b 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_csharp_echo_webapp_bot.yaml @@ -15,8 +15,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -28,7 +28,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 Nov 2019 23:05:58 GMT + - Mon, 06 Jan 2020 14:19:23 GMT expires: - '-1' pragma: @@ -56,8 +56,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,7 +113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:05:59 GMT + - Mon, 06 Jan 2020 14:19:23 GMT expires: - '-1' pragma: @@ -145,30 +145,28 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:05:59 GMT + - Mon, 06 Jan 2020 14:19:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -197,22 +195,20 @@ interactions: uri: https://dev.botframework.com/api/misc/bottemplateroot response: body: - string: '"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/"' + string: '"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/"' headers: cache-control: - no-cache content-length: - - '83' + - '89' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:05:59 GMT + - Mon, 06 Jan 2020 14:19:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000 vary: @@ -269,9 +265,9 @@ interactions: "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "1d232ff7-a60d-4c27-90ef-aab6ffd94b39"}, "appSecret": {"value": "56aaf25e-5b5c-4d57-9a5b-64515058607d"}, + "39b34c33-77b2-4513-ab4c-1d06c170bf8a"}, "appSecret": {"value": "87a0681b-8a1a-4337-97ca-9f010939d443"}, "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, - "zipUrl": {"value": "https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/csharp-abs-webapp-v4_echobot_precompiled.zip"}, + "zipUrl": {"value": "https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/csharp-abs-webapp-v4_echobot_precompiled.zip"}, "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": {"value": "centralus"}, "botId": {"value": "cli000002"}}, "mode": "Incremental"}}''' headers: @@ -284,32 +280,32 @@ interactions: Connection: - keep-alive Content-Length: - - '4611' + - '4617' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"1d232ff7-a60d-4c27-90ef-aab6ffd94b39"},"appSecret":{"type":"String","value":"56aaf25e-5b5c-4d57-9a5b-64515058607d"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-27T23:06:01.6895317Z","duration":"PT0.8191037S","correlationId":"c7aa8d9d-02f7-4209-98be-9d62dd751bb2","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"39b34c33-77b2-4513-ab4c-1d06c170bf8a"},"appSecret":{"type":"String","value":"87a0681b-8a1a-4337-97ca-9f010939d443"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:19:30.1227378Z","duration":"PT3.252586S","correlationId":"a1136742-aa7f-4de9-8abf-9ef2d6cae5e8","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267109246072274?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232865186074953?api-version=2019-07-01 cache-control: - no-cache content-length: - - '4132' + - '4137' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:06:01 GMT + - Mon, 06 Jan 2020 14:19:31 GMT expires: - '-1' pragma: @@ -319,7 +315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -337,10 +333,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267109246072274?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -352,7 +348,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:06:31 GMT + - Mon, 06 Jan 2020 14:20:02 GMT expires: - '-1' pragma: @@ -380,10 +376,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267109246072274?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -395,7 +391,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:07:00 GMT + - Mon, 06 Jan 2020 14:20:32 GMT expires: - '-1' pragma: @@ -423,10 +419,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267109246072274?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -438,7 +434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:07:31 GMT + - Mon, 06 Jan 2020 14:21:03 GMT expires: - '-1' pragma: @@ -466,22 +462,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267109246072274?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:01 GMT + - Mon, 06 Jan 2020 14:21:33 GMT expires: - '-1' pragma: @@ -509,22 +505,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"1d232ff7-a60d-4c27-90ef-aab6ffd94b39"},"appSecret":{"type":"String","value":"56aaf25e-5b5c-4d57-9a5b-64515058607d"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-27T23:07:39.9386401Z","duration":"PT1M39.0682121S","correlationId":"c7aa8d9d-02f7-4209-98be-9d62dd751bb2","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '4767' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:01 GMT + - Mon, 06 Jan 2020 14:22:03 GMT expires: - '-1' pragma: @@ -552,38 +548,30 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.BotService/botServices/cli000002?api-version=2018-07-12 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5300a158-0000-0100-0000-5ddf01bb0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"1d232ff7-a60d-4c27-90ef-aab6ffd94b39","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '1016' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:02 GMT - etag: - - '"5300a158-0000-0100-0000-5ddf01bb0000"' + - Mon, 06 Jan 2020 14:22:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff status: @@ -597,44 +585,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - bot download + - bot create Connection: - keep-alive ParameterSetName: - - -g -n + - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.BotService/botServices/cli000002?api-version=2018-07-12 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5300a158-0000-0100-0000-5ddf01bb0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"1d232ff7-a60d-4c27-90ef-aab6ffd94b39","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '1016' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:03 GMT - etag: - - '"5300a158-0000-0100-0000-5ddf01bb0000"' + - Mon, 06 Jan 2020 14:23:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff status: @@ -648,53 +628,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - bot download + - bot create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n + - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"yreNZuTDK3aRh6Fnfk0se5SAbX5k0xuefwCP9nfd2L26o0fDw7FTqfkm28fC","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:yreNZuTDK3aRh6Fnfk0se5SAbX5k0xuefwCP9nfd2L26o0fDw7FTqfkm28fC@cli000002.scm.azurewebsites.net"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '665' + - '20' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:03 GMT + - Mon, 06 Jan 2020 14:23:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -706,51 +671,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - bot download + - bot create Connection: - keep-alive ParameterSetName: - - -g -n + - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:06:13.9966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DFDF19689FA182EA5103AA53CAF6851D3CA6E85E21D81D1905B27FF72A3E2FEA","kind":"app","inboundIpAddress":"40.113.236.45","possibleInboundIpAddresses":"40.113.236.45","outboundIpAddresses":"40.113.236.45,104.43.246.4,104.43.241.185,104.43.251.139,40.113.223.211","possibleOutboundIpAddresses":"40.113.236.45,104.43.246.4,104.43.241.185,104.43.251.139,40.113.223.211,40.113.219.59,40.113.216.205,40.113.217.83","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '3229' + - '20' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:04 GMT - etag: - - '"1D5A577442074CB"' + - Mon, 06 Jan 2020 14:24:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 x-content-type-options: - nosniff - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -758,113 +710,128 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot create Connection: - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo User-Agent: - - python-requests/2.22.0 - content-type: - - application/octet-stream + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://cli000002.scm.azurewebsites.net/api/zip/site/clirepo/ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 response: body: - string: '{"Message":"''D:\\home\\site\\clirepo\\'' not found."}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '52' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:07 GMT + - Mon, 06 Jan 2020 14:24:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: - code: 404 - message: Not Found + code: 200 + message: OK - request: - body: '{"command": "PostDeployScripts\\prepareSrc.cmd yreNZuTDK3aRh6Fnfk0se5SAbX5k0xuefwCP9nfd2L26o0fDw7FTqfkm28fC", - "dir": "site\\wwwroot"}' + body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot create Connection: - keep-alive - Content-Length: - - '133' + ParameterSetName: + - -k -g -n --appid -p --lang --echo User-Agent: - - python-requests/2.22.0 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865186074953?api-version=2019-07-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: - application/json - method: POST - uri: https://cli000002.scm.azurewebsites.net/api/command + Accept-Encoding: + - gzip, deflate + CommandName: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"Output":"file:///D/home/site/srcRepo\r\nInitialized empty Git repository - in D:/home/site/wwwroot/.git/\r\n[master (root-commit) 830e167] prepare to - download source\r\n 30 files changed, 7054 insertions(+)\r\n create mode 100644 - .deployment\r\n create mode 100644 .gitignore\r\n create mode 100644 AdapterWithErrorHandler.cs\r\n - create mode 100644 Bots/EchoBot.cs\r\n create mode 100644 Controllers/BotController.cs\r\n - create mode 100644 Directory.Build.props\r\n create mode 100644 EchoBot.csproj\r\n - create mode 100644 EchoBot.deps.json\r\n create mode 100644 EchoBot.runtimeconfig.json\r\n - create mode 100644 EchoBot.sln\r\n create mode 100644 PostDeployScripts/IncludeSources.targets\r\n - create mode 100644 PostDeployScripts/githubProject.json.template\r\n create - mode 100644 PostDeployScripts/mergeSettings.js\r\n create mode 100644 PostDeployScripts/prepareSrc.cmd\r\n - create mode 100644 PostDeployScripts/publish.cmd.template\r\n create mode - 100644 PostDeployScripts/publishProfile.xml.template\r\n create mode 100644 - PostDeployScripts/publishSettings.xml.template\r\n create mode 100644 PostDeployScripts/runGulp.cmd\r\n - create mode 100644 PostDeployScripts/setupGithubRemoteRepo.cmd\r\n create - mode 100644 PostDeployScripts/setupVsoRemoteRepo.cmd\r\n create mode 100644 - PostDeployScripts/vsoProject.json.template\r\n create mode 100644 Program.cs\r\n - create mode 100644 Properties/launchSettings.json\r\n create mode 100644 README.md\r\n - create mode 100644 Startup.cs\r\n create mode 100644 build.cmd\r\n create - mode 100644 deploy.cmd\r\n create mode 100644 web.config\r\n create mode 100644 - wwwroot/default.htm\r\n create mode 100644 wwwroot/default.html\r\nInitialized - empty Git repository in D:/home/site/srcRepo/\r\nBranch ''master'' set up - to track remote branch ''master'' from ''srcRepo''.\r\nECHO is off.\r\n\r\n7-Zip - (A) 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18\r\nScanning\r\n\r\nCreating - archive D:\\home\\site\\bot-src.zip\r\n\r\nCompressing .deployment\r\nCompressing .gitignore\r\nCompressing AdapterWithErrorHandler.cs\r\nCompressing Bots\\EchoBot.cs\r\nCompressing build.cmd\r\nCompressing Controllers\\BotController.cs\r\nCompressing deploy.cmd\r\nCompressing Directory.Build.props\r\nCompressing EchoBot.csproj\r\nCompressing EchoBot.deps.json\r\nCompressing EchoBot.runtimeconfig.json\r\nCompressing EchoBot.sln\r\nCompressing PostDeployScripts\\cli000002.PublishSettings\r\nCompressing PostDeployScripts\\githubProject.json.template\r\nCompressing PostDeployScripts\\IncludeSources.targets\r\nCompressing PostDeployScripts\\mergeSettings.js\r\nCompressing PostDeployScripts\\prepareSrc.cmd\r\nCompressing PostDeployScripts\\publish.cmd.template\r\nCompressing PostDeployScripts\\publishProfile.xml.template\r\nCompressing PostDeployScripts\\publishSettings.xml.template\r\nCompressing PostDeployScripts\\runGulp.cmd\r\nCompressing PostDeployScripts\\setupGithubRemoteRepo.cmd\r\nCompressing PostDeployScripts\\setupVsoRemoteRepo.cmd\r\nCompressing PostDeployScripts\\vsoProject.json.template\r\nCompressing Program.cs\r\nCompressing Properties\\launchSettings.json\r\nCompressing Properties\\PublishProfiles\\cli000002-Web-Deploy.pubxml\r\nCompressing publish.cmd\r\nCompressing README.md\r\nCompressing Startup.cs\r\nCompressing web.config\r\nCompressing wwwroot\\default.htm\r\nCompressing wwwroot\\default.html\r\n\r\nEverything - is Ok\r\n","Error":"To file:///D/home/site/srcRepo\r\n * [new branch] master - -> master\r\nCloning into ''bot-src''...\r\n","ExitCode":0}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"39b34c33-77b2-4513-ab4c-1d06c170bf8a"},"appSecret":{"type":"String","value":"87a0681b-8a1a-4337-97ca-9f010939d443"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:24:38.2515232Z","duration":"PT5M11.3813714S","correlationId":"a1136742-aa7f-4de9-8abf-9ef2d6cae5e8","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' headers: cache-control: - no-cache content-length: - - '3554' + - '4773' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:08:39 GMT + - Mon, 06 Jan 2020 14:25:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains vary: - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -872,62 +839,388 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot create Connection: - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo User-Agent: - - python-requests/2.22.0 - content-type: - - application/octet-stream + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US method: GET - uri: https://cli000002.scm.azurewebsites.net/api/vfs/site/bot-src.zip + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: !!binary | - UEsDBAoAAAAAAA65e0+ZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu - ZCA9IGRlcGxveS5jbWRQSwMECgAAAAAADrl7TwfdjtorAAAAKwAAAAoAAAAuZ2l0aWdub3JlKi5k - bGwNCioucGRiDQpvYmovKioNCmJpbi8qKg0KcnVudGltZXMvKioNClBLAwQUAAAACAAOuXtPvKpX - +jUCAABPBQAAGgAAAEFkYXB0ZXJXaXRoRXJyb3JIYW5kbGVyLmNznVRNi9swEL0H8h+G0IMDxr7v - dheyJWUDu+2hgR5KD4o8scXaktDHOiHkv3ckO3Gy2WxLhUMs6c17b0Yj5zl8UXprRFk5SPgUngU3 - yqq1o3WjlWFOKJnBrK4hgiwYtGhescjGI4p+EhylxQK8LNCAqxCeF8vDMmHGI2+FLAfi7EHRz4ua - 8NlCOix7kZnV39BlpIu3H0ctDeM43ziSoED7DnrYJD65FqXvRD6GPqmypM3b4FqyBq0mnSse5rxS - NB+PduMR0NB+VQsOvGbWwqxg2qH5KVw1N0aZRyaLmspzAxTy1RB1q8zLo3O6R3YcPdVAd40oWZxl - Bfx0lsIiJILm8xWxe6jj/pTkhkHmVsxics51Cd2dR32XS29kNAd3wOxWckgcLZFDhxuXAm446kA2 - hbv7Q/DA9WZQT5F7YHILNbIXLIZ4WBvVxBZjWlN1ura5oOgth9OMtpJI0GXzafLrxPBv6toqVDSo - 0EI4oN0RnT2jtazE/WRKHfGu0x8oC2DQdEBwKrrzdEEu4axlwsFJZbIQPeNOvAq3nYXCJZMlha+U - A5RceUIRu+yt0bPyZUZm/pdbhT5xQvro1HhJboUNeinoGunwYS02tNh5sMobjhRTYPbXEjgTrgrr - FVNoK8EraAV9N1YIhbC6ZltKR8jI/0D8x9aEeeNr5tQ/FS3e/TeZnfZg3J+kcHGMKUwqugP2Js/b - ts0ow/XBQMZVk1teYcNsHqs9IfSR86Lk+5P5nl67P3r+AFBLAwQUAAAAAAAOuXtPAAAAAAAAAAAA - AAAABQAAAEJvdHMvUEsDBBQAAAAIAA65e0/YPhbw3QEAAP8EAAAPAAAAQm90cy9FY2hvQm90LmNz - tVNta9swEP4e8H+4hn1wwLjfm7bgmW0NNAwW7weo0iUWlSUjye5M6X/fObHjFxrYoBU2tu+eu3ue - u/P1NaSmbKw85B5CvoKt5NY4s/dkt6WxzEujY0iUgiPIgUWHtkYRBwuKfpQctUMBlRZowecI203W - mwkTLCon9QF2jfNYxKlRCnmb1MU/UKOVfD2DZLlFJshw0RFnzD273j1wjr8auiupiMoF747nWLB1 - y0uzAl3JOE4hXfyOFaVC11pcsHgNFkCnrJ6U5MAVcw6+8dyQF24gIUG19M0D00KhPWG7kGOYNZ5E - U5dMjdZKgcBcozm0OuCn3qJz7IB9mqT1hZussjo12uMff7uZQe7BD94IUqY5KnUcVmaeUQOfW1Yn - Omdmw6mZpaGWqskoF9zBl2Wr7AZeRyXivnDcgt6W62kK9sKkhzF+h1pM9XQKvjPujT3lCc9lo4HB - KnqH/KjeW7D4n84WT2hdIgSKrq2P0vnbNGdao0o4N5X291CMcBFMW08vNfmObH6XgvlPm8ILKm4K - 7OawfKBQA7RTveNq3ve9oT+C5xBSdKcBpJ6oOVccqs6O3EN4iog3Aq7u4N25/0IuS4naE6jLeSHv - RyzGqBNRr/5flmO0JPPP4bV70PUXUEsDBBQAAAAIAA65e0+9Dn+OqQAAAAUBAAAJAAAAYnVpbGQu - Y21kbU9NC4JAEL0L/oe5CHVZ+gNCUUuXyjA7BILIfqCwOkOumJd+e64GBnmamTfvzZu3VaJAQK19 - r1HWoMiN7409HPj1FD3O/JJkt+ge73n4hye7+MiTMHhL2gTMCQVSD+Pcdd0T0aZS6bw1lhW2gmmT - E2WDoylr5VAnKzWoV9lYYCydhWSwZ6KSsPI9AGqbQv4QHDa8a2AmjjSkoa7dVanM5BikC56qlt+8 - H1BLAwQUAAAAAAAOuXtPAAAAAAAAAAAAAAAADAAAAENvbnRyb2xsZXJzL1BLAwQUAAAACAAOuXtP - nvjBBkICAADvBAAAHAAAAENvbnRyb2xsZXJzL0JvdENvbnRyb2xsZXIuY3OFU01v2zAMvQfIfyB6 - SoBCuS/oId2wNcCyBYlvRQ+KzNhabEmTaAfGsP8+yh9x0q6bkUA2yUc+PpGLBXy0rvE6ywlmag4b - rbwN9khs9856SdoaAauigDYogMeAvsZUTCeM/qoVmoApVCZFD5QjbNbJYOaY6aQK2mSwbwJhKZLc - o0zZIBIZTmHZu8e6YhXcNySujmJTq78EPFr+V7rgev/2irUhzLoW+rQi5l1GVkaWGJxUeIvtoXtZ - ugIDhxvytijQh+nk13QC/HDXSa4DrPZbGP3AFsW9EWtBFnJp0gJBslw/Kwwk4BM6ZI2MamBtfqCK - rOCsWVjnba1TbMVbpdIRZ2M4rJnPpaSOhEo0JFugJPCVIV2igE1VkGYvpPp4RM8xLfQVJESAYbEi - doxkTs5qQ8xeGjjgpaBUucaauzk0EBwqfWxaMJQsYW/RCqhxCEfbXf2BqyouRb5SxDbpsyoSEF3W - 552tCGd30ukFqx9khuFu/tI7V06PcvZGVx0KLqIKGQJwT1d6f7gS/1GGnnh/Ry3W65qvA+LAWVM0 - rSifPd/72frTE5EbxO7P5X+wkQDHdFEju1tes3eryO68b3NFqeZdpgvt8RkgDwNoeeuPCR5iiiv7 - 72tmz7Hw1ga6h/j2BenlDW0ZGqMgriHEyFX8nL3PabHgES4wk9ROapxahaHdPntsLU9JsoXt933C - CxANA3nxJlEyOrsV0Ka2Jxxm6BVAnqWmQROx7ep2dHdxu2KXO15mHjy8j9rMb2XpD/79AVBLAwQU - AAAACAAOuXtP+XRyCl8EAACGCwAACgAAAGRlcGxveS5jbWTFVluP0kAUfifhPxxJmqjRuus9azAi - FCVyk7KrJiTN0A4wu+1MnZkuy4u/3TPTlltR900eoOU758x3rnM+sAU0HL89CKaTVtsL+t6V13ca - MPS+QuNlAz7QcCVALBb1Wr12cQFPT34s9OWycwkdmsZik1CuwQ8lS7WFrqhUTPALOHfP3PM3f7Vk + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c00d7b8-0000-0100-0000-5e1342ea0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"39b34c33-77b2-4513-ab4c-1d06c170bf8a","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1016' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:07 GMT + etag: + - '"0c00d7b8-0000-0100-0000-5e1342ea0000"' + expires: + - '-1' + pragma: + - no-cache + 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: + - bot download + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c00d7b8-0000-0100-0000-5e1342ea0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"39b34c33-77b2-4513-ab4c-1d06c170bf8a","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1016' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:09 GMT + etag: + - '"0c00d7b8-0000-0100-0000-5e1342ea0000"' + expires: + - '-1' + pragma: + - no-cache + 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: + - bot download + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"eyc3h9dShl8hclziG7CNF4Rov2S4SaRpMmdhEJERB1lr0iiq4BQio2MkNSoj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:eyc3h9dShl8hclziG7CNF4Rov2S4SaRpMmdhEJERB1lr0iiq4BQio2MkNSoj@cli000002.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 14:25:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - bot download + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-097.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:21:25.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0564722AD62F94A28CF4F500C994D028A4FB6687860C9D0CF7BD711598751968","kind":"app","inboundIpAddress":"23.100.82.11","possibleInboundIpAddresses":"23.100.82.11","outboundIpAddresses":"23.100.82.11,23.101.121.37,23.101.123.100,23.101.122.96,23.101.122.233","possibleOutboundIpAddresses":"23.100.82.11,23.101.121.37,23.101.123.100,23.101.122.96,23.101.122.233,23.101.113.59,23.101.120.15,23.101.125.15","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-097","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + headers: + cache-control: + - no-cache + content-length: + - '3224' + content-type: + - application/json + date: + - Mon, 06 Jan 2020 14:25:11 GMT + etag: + - '"1D5C49C93D541AB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + content-type: + - application/octet-stream + method: GET + uri: https://cli000002.scm.azurewebsites.net/api/zip/site/clirepo/ + response: + body: + string: '{"Message":"''D:\\home\\site\\clirepo\\'' not found."}' + headers: + cache-control: + - no-cache + content-length: + - '52' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net + x-aspnet-version: + - 4.0.30319 + x-powered-by: + - ASP.NET + status: + code: 404 + message: Not Found +- request: + body: '{"command": "PostDeployScripts\\prepareSrc.cmd eyc3h9dShl8hclziG7CNF4Rov2S4SaRpMmdhEJERB1lr0iiq4BQio2MkNSoj", + "dir": "site\\wwwroot"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '133' + User-Agent: + - python-requests/2.22.0 + content-type: + - application/json + method: POST + uri: https://cli000002.scm.azurewebsites.net/api/command + response: + body: + string: '{"Output":"file:///D/home/site/srcRepo\r\nInitialized empty Git repository + in D:/home/site/wwwroot/.git/\r\n[master (root-commit) b1782f7] prepare to + download source\r\n 30 files changed, 7054 insertions(+)\r\n create mode 100644 + .deployment\r\n create mode 100644 .gitignore\r\n create mode 100644 AdapterWithErrorHandler.cs\r\n + create mode 100644 Bots/EchoBot.cs\r\n create mode 100644 Controllers/BotController.cs\r\n + create mode 100644 Directory.Build.props\r\n create mode 100644 EchoBot.csproj\r\n + create mode 100644 EchoBot.deps.json\r\n create mode 100644 EchoBot.runtimeconfig.json\r\n + create mode 100644 EchoBot.sln\r\n create mode 100644 PostDeployScripts/IncludeSources.targets\r\n + create mode 100644 PostDeployScripts/githubProject.json.template\r\n create + mode 100644 PostDeployScripts/mergeSettings.js\r\n create mode 100644 PostDeployScripts/prepareSrc.cmd\r\n + create mode 100644 PostDeployScripts/publish.cmd.template\r\n create mode + 100644 PostDeployScripts/publishProfile.xml.template\r\n create mode 100644 + PostDeployScripts/publishSettings.xml.template\r\n create mode 100644 PostDeployScripts/runGulp.cmd\r\n + create mode 100644 PostDeployScripts/setupGithubRemoteRepo.cmd\r\n create + mode 100644 PostDeployScripts/setupVsoRemoteRepo.cmd\r\n create mode 100644 + PostDeployScripts/vsoProject.json.template\r\n create mode 100644 Program.cs\r\n + create mode 100644 Properties/launchSettings.json\r\n create mode 100644 README.md\r\n + create mode 100644 Startup.cs\r\n create mode 100644 build.cmd\r\n create + mode 100644 deploy.cmd\r\n create mode 100644 web.config\r\n create mode 100644 + wwwroot/default.htm\r\n create mode 100644 wwwroot/default.html\r\nInitialized + empty Git repository in D:/home/site/srcRepo/\r\nBranch ''master'' set up + to track remote branch ''master'' from ''srcRepo''.\r\nECHO is off.\r\n\r\n7-Zip + (A) 9.20 Copyright (c) 1999-2010 Igor Pavlov 2010-11-18\r\nScanning\r\n\r\nCreating + archive D:\\home\\site\\bot-src.zip\r\n\r\nCompressing .deployment\r\nCompressing .gitignore\r\nCompressing AdapterWithErrorHandler.cs\r\nCompressing Bots\\EchoBot.cs\r\nCompressing build.cmd\r\nCompressing Controllers\\BotController.cs\r\nCompressing deploy.cmd\r\nCompressing Directory.Build.props\r\nCompressing EchoBot.csproj\r\nCompressing EchoBot.deps.json\r\nCompressing EchoBot.runtimeconfig.json\r\nCompressing EchoBot.sln\r\nCompressing PostDeployScripts\\cli000002.PublishSettings\r\nCompressing PostDeployScripts\\githubProject.json.template\r\nCompressing PostDeployScripts\\IncludeSources.targets\r\nCompressing PostDeployScripts\\mergeSettings.js\r\nCompressing PostDeployScripts\\prepareSrc.cmd\r\nCompressing PostDeployScripts\\publish.cmd.template\r\nCompressing PostDeployScripts\\publishProfile.xml.template\r\nCompressing PostDeployScripts\\publishSettings.xml.template\r\nCompressing PostDeployScripts\\runGulp.cmd\r\nCompressing PostDeployScripts\\setupGithubRemoteRepo.cmd\r\nCompressing PostDeployScripts\\setupVsoRemoteRepo.cmd\r\nCompressing PostDeployScripts\\vsoProject.json.template\r\nCompressing Program.cs\r\nCompressing Properties\\launchSettings.json\r\nCompressing Properties\\PublishProfiles\\cli000002-Web-Deploy.pubxml\r\nCompressing publish.cmd\r\nCompressing README.md\r\nCompressing Startup.cs\r\nCompressing web.config\r\nCompressing wwwroot\\default.htm\r\nCompressing wwwroot\\default.html\r\n\r\nEverything + is Ok\r\n","Error":"To file:///D/home/site/srcRepo\r\n * [new branch] master + -> master\r\nCloning into ''bot-src''...\r\n","ExitCode":0}' + headers: + cache-control: + - no-cache + content-length: + - '3554' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + content-type: + - application/octet-stream + method: GET + uri: https://cli000002.scm.azurewebsites.net/api/vfs/site/bot-src.zip + response: + body: + string: !!binary | + UEsDBAoAAAAAADBzJlCZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu + ZCA9IGRlcGxveS5jbWRQSwMECgAAAAAAMHMmUAfdjtorAAAAKwAAAAoAAAAuZ2l0aWdub3JlKi5k + bGwNCioucGRiDQpvYmovKioNCmJpbi8qKg0KcnVudGltZXMvKioNClBLAwQUAAAACAAwcyZQvKpX + +jUCAABPBQAAGgAAAEFkYXB0ZXJXaXRoRXJyb3JIYW5kbGVyLmNznVRNi9swEL0H8h+G0IMDxr7v + dheyJWUDu+2hgR5KD4o8scXaktDHOiHkv3ckO3Gy2WxLhUMs6c17b0Yj5zl8UXprRFk5SPgUngU3 + yqq1o3WjlWFOKJnBrK4hgiwYtGhescjGI4p+EhylxQK8LNCAqxCeF8vDMmHGI2+FLAfi7EHRz4ua + 8NlCOix7kZnV39BlpIu3H0ctDeM43ziSoED7DnrYJD65FqXvRD6GPqmypM3b4FqyBq0mnSse5rxS + NB+PduMR0NB+VQsOvGbWwqxg2qH5KVw1N0aZRyaLmspzAxTy1RB1q8zLo3O6R3YcPdVAd40oWZxl + Bfx0lsIiJILm8xWxe6jj/pTkhkHmVsxics51Cd2dR32XS29kNAd3wOxWckgcLZFDhxuXAm446kA2 + hbv7Q/DA9WZQT5F7YHILNbIXLIZ4WBvVxBZjWlN1ura5oOgth9OMtpJI0GXzafLrxPBv6toqVDSo + 0EI4oN0RnT2jtazE/WRKHfGu0x8oC2DQdEBwKrrzdEEu4axlwsFJZbIQPeNOvAq3nYXCJZMlha+U + A5RceUIRu+yt0bPyZUZm/pdbhT5xQvro1HhJboUNeinoGunwYS02tNh5sMobjhRTYPbXEjgTrgrr + FVNoK8EraAV9N1YIhbC6ZltKR8jI/0D8x9aEeeNr5tQ/FS3e/TeZnfZg3J+kcHGMKUwqugP2Js/b + ts0ow/XBQMZVk1teYcNsHqs9IfSR86Lk+5P5nl67P3r+AFBLAwQUAAAAAAAwcyZQAAAAAAAAAAAA + AAAABQAAAEJvdHMvUEsDBBQAAAAIADBzJlDYPhbw3QEAAP8EAAAPAAAAQm90cy9FY2hvQm90LmNz + tVNta9swEP4e8H+4hn1wwLjfm7bgmW0NNAwW7weo0iUWlSUjye5M6X/fObHjFxrYoBU2tu+eu3ue + u/P1NaSmbKw85B5CvoKt5NY4s/dkt6WxzEujY0iUgiPIgUWHtkYRBwuKfpQctUMBlRZowecI203W + mwkTLCon9QF2jfNYxKlRCnmb1MU/UKOVfD2DZLlFJshw0RFnzD273j1wjr8auiupiMoF747nWLB1 + y0uzAl3JOE4hXfyOFaVC11pcsHgNFkCnrJ6U5MAVcw6+8dyQF24gIUG19M0D00KhPWG7kGOYNZ5E + U5dMjdZKgcBcozm0OuCn3qJz7IB9mqT1hZussjo12uMff7uZQe7BD94IUqY5KnUcVmaeUQOfW1Yn + Omdmw6mZpaGWqskoF9zBl2Wr7AZeRyXivnDcgt6W62kK9sKkhzF+h1pM9XQKvjPujT3lCc9lo4HB + KnqH/KjeW7D4n84WT2hdIgSKrq2P0vnbNGdao0o4N5X291CMcBFMW08vNfmObH6XgvlPm8ILKm4K + 7OawfKBQA7RTveNq3ve9oT+C5xBSdKcBpJ6oOVccqs6O3EN4iog3Aq7u4N25/0IuS4naE6jLeSHv + RyzGqBNRr/5flmO0JPPP4bV70PUXUEsDBBQAAAAIADBzJlC9Dn+OqQAAAAUBAAAJAAAAYnVpbGQu + Y21kbU9NC4JAEL0L/oe5CHVZ+gNCUUuXyjA7BILIfqCwOkOumJd+e64GBnmamTfvzZu3VaJAQK19 + r1HWoMiN7409HPj1FD3O/JJkt+ge73n4hye7+MiTMHhL2gTMCQVSD+Pcdd0T0aZS6bw1lhW2gmmT + E2WDoylr5VAnKzWoV9lYYCydhWSwZ6KSsPI9AGqbQv4QHDa8a2AmjjSkoa7dVanM5BikC56qlt+8 + H1BLAwQUAAAAAAAwcyZQAAAAAAAAAAAAAAAADAAAAENvbnRyb2xsZXJzL1BLAwQUAAAACAAwcyZQ + nvjBBkICAADvBAAAHAAAAENvbnRyb2xsZXJzL0JvdENvbnRyb2xsZXIuY3OFU01v2zAMvQfIfyB6 + SoBCuS/oId2wNcCyBYlvRQ+KzNhabEmTaAfGsP8+yh9x0q6bkUA2yUc+PpGLBXy0rvE6ywlmag4b + rbwN9khs9856SdoaAauigDYogMeAvsZUTCeM/qoVmoApVCZFD5QjbNbJYOaY6aQK2mSwbwJhKZLc + o0zZIBIZTmHZu8e6YhXcNySujmJTq78EPFr+V7rgev/2irUhzLoW+rQi5l1GVkaWGJxUeIvtoXtZ + ugIDhxvytijQh+nk13QC/HDXSa4DrPZbGP3AFsW9EWtBFnJp0gJBslw/Kwwk4BM6ZI2MamBtfqCK + rOCsWVjnba1TbMVbpdIRZ2M4rJnPpaSOhEo0JFugJPCVIV2igE1VkGYvpPp4RM8xLfQVJESAYbEi + doxkTs5qQ8xeGjjgpaBUucaauzk0EBwqfWxaMJQsYW/RCqhxCEfbXf2BqyouRb5SxDbpsyoSEF3W + 552tCGd30ukFqx9khuFu/tI7V06PcvZGVx0KLqIKGQJwT1d6f7gS/1GGnnh/Ry3W65qvA+LAWVM0 + rSifPd/72frTE5EbxO7P5X+wkQDHdFEju1tes3eryO68b3NFqeZdpgvt8RkgDwNoeeuPCR5iiiv7 + 72tmz7Hw1ga6h/j2BenlDW0ZGqMgriHEyFX8nL3PabHgES4wk9ROapxahaHdPntsLU9JsoXt933C + CxANA3nxJlEyOrsV0Ka2Jxxm6BVAnqWmQROx7ep2dHdxu2KXO15mHjy8j9rMb2XpD/79AVBLAwQU + AAAACAAwcyZQ+XRyCl8EAACGCwAACgAAAGRlcGxveS5jbWTFVluP0kAUfifhPxxJmqjRuus9azAi + FCVyk7KrJiTN0A4wu+1MnZkuy4u/3TPTlltR900eoOU758x3rnM+sAU0HL89CKaTVtsL+t6V13ca + MPS+QuNlAz7QcCVALBb1Wr12cQFPT34s9OWycwkdmsZik1CuwQ8lS7WFrqhUTPALOHfP3PM3f7Vk wbGkkv7MmGKaKvvPkVRpli02wEVE3WsFjCtN4phG9dp6hfoWgOfveRaD+arXel1wvMlkNMndtF6e wcN6DcD6OWBKMb7cWqR3NMw0mcf0CaQxJYqWh5QiTwADSGJJSbTZEYCE3FBQmUR5DSHhMKeAMuEK sYUUCYSZlCZIlN8yKbgJmGtoLIUWQKUUsl57VLjpU52l9mnrvKI6FiGJUd+wi2hMNvh9lxJuAm1E @@ -945,16 +1238,16 @@ interactions: /anXckY8KkJfxBlCkSSmQiSmmfHibl8zTEW+zGX4tqK89GUvP7vFwj6ByVHQdB4XmXTsO05GuzSW Edrti2eN/IQuwckRmSVCt3FNau6LPinpNbfWjBw8mx+sZtalgiB6WHCy1lsFc1gRBSK0mxQWfSZN C6+xa83SuN+uZR2ac3CX8oxyn97SeB/o4lbWzXhoij7fGQ2Fqs6O7rkRqOjWaw/zvQ1ZV6h3GceO - RLYqC0Oq1CLDmxH5/QZQSwMEFAAAAAgADrl7T+Cxn0VPAAAAdQAAABUAAABEaXJlY3RvcnkuQnVp + RLYqC0Oq1CLDmxH5/QZQSwMEFAAAAAgAMHMmUOCxn0VPAAAAdQAAABUAAABEaXJlY3RvcnkuQnVp bGQucHJvcHNtjTEKgDAQBHvBP+QH+UBIqa2F2AdZREUvrCfi740KFpJyZ2HGNZQJvfqyMOYeEdSz - puzxQQm2gQO0YlhwCOcO3EZZvbP54zXZvyqRr3QBUEsDBBQAAAAIAA65e0/EWvMjVAEAABwDAAAO + puzxQQm2gQO0YlhwCOcO3EZZvbP54zXZvyqRr3QBUEsDBBQAAAAIADBzJlDEWvMjVAEAABwDAAAO AAAARWNob0JvdC5jc3Byb2qVkk9PAjEQxe8kfIemF/TSjX/iadkEAQ2JIhHUC5faHTaFpW2ms8H9 9pa1JIjEwGEPfZ157zfTTSdol6CITfNVlz9rhdbbBYnxcCaCJD7gk2ftVrvF2LbUAVL9iLZy2VYK 4kxiAfSAcg0bi6vMACmLIJ27FldpcnC963qSpngH9NqarJQEntJkX2vyksPARh0RrH8RTKRayQJe YQEIRgEbGVVWOeyP0/NuDNQPYKLnHGfJOc33NnyVLnNAMTIEBUoKkNFUbF05i+RdfivuxE1IiDNs cf/n79vgaYi9uVxSCA6r80CkTeHF0lvDm8JY6uqZfanIVTTQGN7NYp31yo2sfZocvd2lJDHmEKs5 /4CtnUVi8Yfo8on1NABX2nqqUDvy87ibqa1QgRfUvK3nLFjnmprph1/ak7/onNrcuYyr+psvxPxU - l6MIZ/TvKNqtNIn54fQNUEsDBBQAAAAIAA65e09NLz8MxI0AADixAwARAAAARWNob0JvdC5kZXBz + l6MIZ/TvKNqtNIn54fQNUEsDBBQAAAAIADBzJlBNLz8MxI0AADixAwARAAAARWNob0JvdC5kZXBz Lmpzb27kHWtv3Dbs+4D9hyGfN+fRrHsA+3BNrmu6tgly6VZgGAbHp1y8+CzP9iW9Dvvvo+T3nR2T eiXpgK3I3YmURFIURVLUP19+8dVXO+kqzsMlu/DTBct3fvxKfgvfx/6Swccd79304oinbJIkX//K 0izk8U+3B97+ztdlwyxcxH6+SmXrHfHlv/KnnYAvkzDyc4A4TcS/WQv9nF2FMRPf/C6+kd9dnE+O @@ -1591,1941 +1884,459 @@ interactions: 4SUCTt/woKkJ8Ho+pgNM52xQVQoZ7K9QcznfwcgSYGf+JcKqfBhiVX4R49vDngfwBokGZh3t2piG rrIQc7ZGlrjNBiKDcF4Ja7nbDfFcjTBy5pY0v4Noe+R3LH2FFifYrSjHrFJeXnvIIZzk1t9Bb05/ +Srf3z7bjO7t5i9A+z9e4eu8b3j+KJwdDKl4b6+nveHvSbeBhQt4ufZtpNnVeCt25i1Fx46Ilqi6 - R2p3uomYN1+ZLqsJrDq4zjg611zKHB1D5F+/wm+ffeFFfpNtep1ff739+O13UEsDBBQAAAAIAA65 - e0+bR9DvlQAAAOAAAAAaAAAARWNob0JvdC5ydW50aW1lY29uZmlnLmpzb25Vjc0KAjEMhO+C71B6 - loIevS178OQP7BMsJZUibUKaVUT23U3X7cFLQmYy33y2G2MsT1ligitJxFzs0SyyGhKSXjaDeGQY - iQ5ub3erGXhM8EJ+tMCiZhVr5hw9Y8Egrit0AekV4DoijbfXJ3DRwvqtXCX/nLkVeMwh3m+MBCwR - yl/P8C4CyZ16NwArSU3hCVaErjrmL1BLAwQUAAAACAAOuXtP6RMns6cBAABUBAAACwAAAEVjaG9C - b3Quc2xurZJBb5swFMfPReI7IHbppNqyAzZw2MGA3R22KVq03UlwMk8OjsBMq9J89xolpE2bVlXb - 23v/9/d7P97D976rRWs6s7TBb9X1lQ5mtq+VCWZG91aZJhBKy6tAmHZdOY9su0HEE4iQ73169AgT - 39sre2G0f3EViOAkjVACMU2HsY1a9+tnzMiZYzTBGcS+N23NX7mwl+E2YzjDKBIAU5GAmNIU5JzE - wOk8YbFICKG78LPrEPLFH5MbG14dQ7joNq7ToGwZJTlxvQBKBQVxwkrAEM8AyYoJK0kel1G6C32P - N/Vhuu9dazOvtO9d7IOZEx3t5binwjRLterbakimurJLt7FuYNm0cjS51xelnPerW9bcBMX0lyuf - 5IPhp9Sy6uQDy6jcmxzYCcYTrAP2C1Smsw+xXrcTeEILmRv2TxbL1ePveHPHvFe6hugd/e6X9ZTx - UPuArgfOtx1n3Ls70ka2Vslz/8lXVR/zH6aWziHYtxl/zQD+38qmU3Ollb3Zl84efYyve1W78pbj - SDCa5YClUQliLAqQU+ZSTKKcxywVSbo7C3BUfO8OUEsDBBQAAAAAAA65e08AAAAAAAAAAAAAAAAS - AAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAIABC5e09p0JGkSwEAAFYCAAAxAAAAUG9zdERl - cGxveVNjcmlwdHMvY2xpNDR3Y3lzc3lpYXpjLlB1Ymxpc2hTZXR0aW5nc31SXW+CMBR991eQZq+C - UXSbERMn8WVq2HBx2VuBizTQlrVFhr9+5UOX6bK+9OPcc3pu7pnlRZARmbhY4XnPMM53T/CYZGDk - 7b7FFBwUZsS2y7CSsiL4FPb3EPRdyDNeIaNn6NWRN6ASHjlo4/+FvonsRsqUITXxqRBQQiCJAmky - UFPbHnVcKqNGytfYDRsZhQTRery7wlp+U+DtXQdVArYfxc59HuHXZLJicTqQMPYXwfs4HXwVEJdL - 75HF0XA9nPBB7Jb3q91nnNLhQ7zstCKQijCsCGeLPG/aSZTKp5Z19fdtR52C/7L2QRxBuE9LzhiE - tZavBGEHB507rnTVP3jCaxcHPagjiUCsuCjomrD0UhBypgTPPMwgq4GLy5KwiJeydWeGnHYEbdSv - pALqoL0+1p7RvEFmkY5HgCVIw2pSYv2OybxXv/wE6RtQSwMEFAAAAAgADrl7T+DPebiRAAAA3AAA - AC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQ - RncT/sOls5GdDQyDgy6YOJJaTjgV2vSumEj47yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c - 1XpZG2TjyQnZ4Y8E+TN4hMIKVOhHMghb22BsO9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhL - zTUxB+Q3Fx++sPP2ikZ+hwfdKMJkNb8AUEsDBBQAAAAIAA65e09a0xds3AAAAA4CAAAoAAAAUG9z - dERlcGxveVNjcmlwdHMvSW5jbHVkZVNvdXJjZXMudGFyZ2V0c7WST2vDMAzF74N9B5NjDlHZbiMt - jBVGL1vZn1sviaNRFzsSltwt337eltLAemxvlvV4Pz2keh1ph1bNV/C9zIutKt8BiN1iaKQKzkYS - +tDKUoAO9+iJMUKQNjnfwc1sdlssrq+MqVeK4TFS4t8yfzxQYOfRvHPXKM6LstyUlZU/+ajg4Y2e - k3LSpYt5DIrD4t5/NoPUcLJ7MIfR/VA/UY9m1VufuiOKc7bCnIeXAVPYMdaaRJfInoZXGx2rZHR5 - MeoLBtpnauv6zTQlnFRRu/un+rGd7qqG8QTy+xtQSwMEFAAAAAgADrl7T6jzyVaUAgAAdQcAACIA - AABQb3N0RGVwbG95U2NyaXB0cy9tZXJnZVNldHRpbmdzLmpznVVdb9MwFH2ftP9g7aWOCN66J7QS - JBAFbQ9tpVTioY1QlzjDJXNK7HStqvx3ru04cRIVBn6YFt9zzz33w7dxzoVEqUABKuivkhUUj1Ix - 8iaXF8a028gfrlF9O+bNbhdSKRl/WhigspOCijzbA5pcA0AYgCBbkXPHl/L9GScCJg200JrCyNwk - Yf35hWUUdyX4lrYTR8Uo8pgKoajB4thmm2eqiOePWxpL8pMeBYZr7/ICwSEpyyQtcFryWLKc44N3 - Ag2yLDg6EMYTepin+OrjYhFOl8v72dfvVx4KggDdTKr/pvg2/RTeL6eK6j0Qoapb8KYYjXwoXlLG - tA0Rl4WPIBUPNaFOhBB9vYJ7IspHIQugweOxF90pJnUfVZPKR6fKLT6nL21ITWPb4SP4cBRV2qvc - JRtJX9Mj3+U2IW0Gus+fcznle5wCBSRiqmk0SXqQICYVROFUjPDIY4300aiU6dt3eoBaj4xx1Wbt - ScQuYxJfr9bFmkfXFtifNeVzprbKVGuqj30uhbSedZRRYJTUh6UIaxTJKH+C8f8QoNuGqcvGobdA - puGaDWTc+Ghs+NoDilYKGzXgbc54P3LV/FuPhPKr7U7TW3tTCriv3Oa8/hGqvGzW0Cx6YEIK1aqe - h9cgnfAP4XxGIB9BsdvooXfbcpVCneu5wFbaMKI7dBbWJ2xeUzUoChOzPKEP4aLI1SbBJkDr0pXR - 33mMCQ7u5PicQRoD8n95VLZtneoP1A2nVy2M/ia0XLYOgwelnP64f4xfr9ArWBwWg94gmFT4a2Pp - RRS5kwtLK3IUqFK+FEzSZh5s7lqVHf81/NrAXFMe5wnw3tkpqZqmIpoJ2kocEveLbGbSbE6WHnG7 - CXmZZT66/UtA3dbfUEsDBBQAAAAIAA65e080Ifq4GwMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlw - dHMvcHJlcGFyZVNyYy5jbWSlVV1r2zAUfTf4P1wMpluZ7XUvg4BHW5qugbYxdbq+BIJjy4lbyxKS - Qtp99Lfvyo7iuPlYYSQk0tXV0TlH0tUpSecMWJ7bliSqZGlS2lbcHwFPpFwykYXuSRMgz5wJFROl - imomQ/dLExaEs9uEklCK9A7bbfRelGFelKQXBIF7NbzpX9wNfvR7r58/nbhNIDobXfVesScLRQLX - QLkNRsaWVcmSLJwy5SG6bdlWzdZdobs6IgiFNAPFgAv2SFIFgjFlW3wh5xn4/ni5XOqIyS2qQsGs - wD5KLXULQ51uyqq8mMFCEuFXSAccJJALbKEfT86eTEKTogRnoYrydDPfTxndnJNkyKqDQSn+eRQc - jroSQVDLWjtIthAp2QRAEUyRGqexvGMIZzzrSF1wqQRJqHGkNt4da8dtiz5lhTAwuMYasuOOpudN - kVkXXuMh13aFbc9bFD2EKHjGPJO/pk8TqYjogqclq4jJ2MG9hW5SWw/ANea5DVRGSoKG+c2mZxvj - KxBBwRPg5XVKl4bZkpwJlDAtCznfQWbcQhpPI8E4Eaogchw18zCib4NczT+YoV440T7iN2JSXRBe - spc4FQVXcsw72f4zLX1FKC8TFPkbJMnAQ+eC8a+H/vkkHoz6k9uzm/74T+BiQPfboBvM4BvsiHsP - ZOo1y/q4Hq7R+oJ7CPHw+n40GN7W2aFtaX+CHBz0uqAydMB1Ezw58OFImxFM4diXZXX0EQ82nG4D - YDYiN7L3CvZTmu1RatDWSk3AqOymR/fn14P4ahLdDS8H13rCuyzYgjmL44fh3YWeb8pl4+gG43+p - MgX1v/fxndS2ieyA86MuOdtqtr8twd3XoK7EBe7/27gDYQiOAzOGheJnwQ9fnhX4UQMCCecgV0hH - q7vaO4uiCb4Oo8Ht99iQ0p8eoq/vbF1F50SvCPqS2Nb6AcJVv2IYfxJI9vDwMWHP0Pi4rVAkqRa8 - LkFSLfJ8u/4drC/bTrxJP1Co2qdyY1+qrH6+dbu2u9cfXupOxzJjcbag/K3BFcvIJh8jY0cNokTM - yProPkqEfUYfgqlt/QVQSwMEFAAAAAgADrl7T+9rT3V2AAAAewAAACYAAABQb3N0RGVwbG95U2Ny - aXB0cy9wdWJsaXNoLmNtZC50ZW1wbGF0ZSWL3QqCMBSA7wd7h71ALxB4oVg0WO7gki4l8VSD5eSc - jQjx3Uu6/X6m/MCkCDlFQilePGQfRrU4a7qLtk3flOfDqnbzvsY5xI+dqi0oEmXcKOQheH4CxbsP - WCzQVUa7Uw+tPWrzP+HG/I40/mzp3NW29SqFFF9QSwMEFAAAAAgADrl7TzYrsXByAgAARAUAAC0A - AABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoUHJvZmlsZS54bWwudGVtcGxhdGV9VF1P2zAUfa/U - /+BVe21SGA8IpUGFlqlSyyLSUu2pcpKbxsOxI38EwrT/PruJQaRsL4l8zz3n3nv8EVy/lBTVICTh - bDo68yYjBCzlGWGH6UirfHw5ug6Hg+DLeDwcbAoiUU4oIPPXEjKUNEgVgCqdUCILv8LpEz6YteAp - SIl4jhquBdpBYmO/IFUe+sk1SjFDqZaKl+QVjhIJFLgmXFiOMnWcxnBgakBGlOmoBdbxjSY0Ozbi - oSVDXGQgkOKIAhYMlVwAwgnXqhMyYQmoJpIoVChVySvfP3CvJKngkufKS3np58+UsCf/emW+y/n0 - fHJ5dn7moeFgPLbzR233aMM5lY/Orwvrl3GQyenIKhthmRZQYtlTz6AGyisQfikT271/Ppl8Gxll - hIy2RVTzXXBdHUMmaCyLWlfXoAqehet4DhXlTeD3IUfpgkauJsaRcPaqBZjkmCgI/B7qSCss1dZs - 5dHTW85yctACKzNe+ADWOUP9d05fJaJY5VyU4Yw16DbaOu474hi2qa2gG77CmqXFLFcguhbDzsrf - u8XNPl5uFvv72Xrxx8N2nmdIpKFKj4EK/P+ouEItYhM/oBuhj5O9g6fUxUtKdQazqtrPscLhHabW - jl7YZbsNikHUJIXtwyrsTyDT8nSKq4uLb4F/yna6bXxJpCkYYVX0VQO/n+GYD1ByBXa6qGgkSTG1 - KPLf9uCJVIsXJfCduUryB7O1QXTWfA72h/14EHfr+PH2fZZPT+mC4YSCS7kxL4auupKfQY5mzpC4 - xyWEX0/Gd5BL3ce4hmg371Td8g2egzSvyfH8bpoKevekD7d31O9fUhNpn4TwL1BLAwQUAAAACAAO - uXtPyiLg0SQBAAAyAgAALgAAAFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hTZXR0aW5ncy54bWwu - dGVtcGxhdGV9kl9rgzAUxd8H+w4S9lp9WJ9KLbTTwaB2btnwsUS9q2HmD0msuLHvvqjVsjqal4R7 - 7jn8ktylrNKS6iIghqxubxxnKMRKfNASHNnvO8LAR99JuNnjp7dwv1tH4c8sgXQWgCxFgxxrtuvk - jsAUIvdRhP+V31U5CXN1xlzyVSmoIdXUgHY5mMV8fj+Ymc67MGzFiR05lQbVY95daKeAriNOAuuN - 1xgnz6/BKOWgDeXEUMHXUnZ8hTFy4XkXWVPEIQK/bDGoI6hg8yA4h6wNw0ZRfvDReIfGtl1rKEQL - crDPf6Q5qEehKral/PPckQlulChjwqFslZG0pjwXte4J3UywwWFpcaMNMB8l9tiCo1UvLXP78SnR - oB2v/3/v7wDYYls6D8kvUEsDBBQAAAAIAA65e08T2XhL0gAAAHcBAAAdAAAAUG9zdERlcGxveVNj - cmlwdHMvcnVuR3VscC5jbWR9kE2LwjAQhu+B/Ic57h62y/4AZUV7EPzCj4MglJpMNZp0QhKp/nub - WqgHNTnMMPPMOy/zj+JIQEXBmcegSeSasyaHUbqYzLfTdLbOVvPNcpj2HvXxLFtMBsM064DeXxxS - BeBV+QBJsquqyhGFnUSr6ZYII+GLMwB78Uf5BMRavVNDBzYY2Tp+R1WHBs5KnGuTsL8oLWMivHV0 - iu3Gv0NBTrYaBssAQRn0ITeWM5kHhN8A/X7c2zGJpgNnNfi226r/vHyfJkadEUklNj5L2V43/jtQ - SwMEFAAAAAgADrl7T6HoB0OGAgAAQwYAACsAAABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cEdpdGh1 - YlJlbW90ZVJlcG8uY21ktVXBbtswDL0HyD8QBoSsB9vYdguQIekWYD20DZqsG9AUgyrTjVvZ1CQZ - QdH13ydZceygzW7NQZYp8vHxiYynKDYElOfDgUErSXA5HGgsIX63X8B32Wp1begKS7J4hYrgRjf7 - Hwb1Ldwo1IYqLmdCoDEresTKWzU9XPASn0nZwh+/3AY8oZFbBF5loEjV0r9cLy/hvrCgPXpOGuwG - YXa6BEEZQlEZyyuBIT6sHYMx1G4FLgTVlYXK5XQyNQgtM3foqYH13EL8G6THx2N8isxtd0bPdVPf - wdV8uYLZ4gw+aPxTFxpNU4EBI0jhScjUCuHR++yaAxTWwbaafMgw57VsTD/np8uz1fx3s1zMzucn - 73/d7qpbYbWcbKxVZpymXBVJKDgRVAavTv4J+9g3LbbZhH1qLPvKJ+zzcFDkMGKthY0mk9EIDp1e - VcxaYEV9PqxLzsZsn5ZNO5IHPmmX1tfRyOgvFESt5V799j7cuarNJoMkWW+3W03kLPZJISzI2G+o - JD0thS6UNeuQcBHikgfXN4nFUjUt/Rd8y8QIJl0/u9K6stYvPUbpPXwBtpqfL9gbcMOBG3MZiMbf - IfpKlcXKxivHZwxcKVkI7scr9d4RxDUcUwfiDKLpm5l2sb9gcen6eY+gJUv9aKVNT+/GrvwfWTfP - 2XAQnrth91Oz7/Qg5mt5g29RFdZPVija75zp4FVQlRf3zbwnzSRF/WqjI56KG7Ml7crv5DjqjCUv - JES1LeT0jmyuXRoX/Oi7qh/DM1fCAUZZukdcQqScXlyjKzz8d4KhWgv0aawm2UfxUgDbNTiDkhuL - utNxp6FEXjkYH2BsneevJQyQ/nZiDXEOvs87GKyy5nvxD1BLAwQUAAAACAAOuXtP58hJBf8CAAAy - BwAAKAAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwVnNvUmVtb3RlUmVwby5jbWS1VVmP0zAQfq/U - /zCqZC1IJOWUUKXCclSCB6DalkNi0co4k67ByVi2sxXi+O2M7XTTpewDD1RVYs94Ps98c+QY1TkB - 1fV45DEYUtKMRw4bKP7bL+PzbZ195+kEGwp4gpbg48Vu+ymt33p0r2XT75boPLXSPFEKvV/TV2xZ - YR19iWe+kw06qn9+yvjKoQwIsq3Aku1M3LxbvYGNDuDibTU5COcIT56uQFGFoFsfZKsw2+dn9Cg6 - NIPOGaaJLTKM14x3A8tNCechWD+bTuUWPTX4mUJ5oX0njQ9dpalU1MDNHo58H1RE5BVIpahrA7Qs - 2uHbPlJWxlAhxFgzwN95mF1vFm+peNkLk+8ni9UapNUZcsdgxNh3IylQBTbekXmjwlp2JoneL56u - Xq4XZ+nx+smrxc3/XzceY+5iPt46Mxd39iWR17m4uy9abqu5uJckl1HOxf3xSNdwJHYScTSfHx3B - 1UMH0YkMc+GDPyEKc3HpR9Lkmope7apBDG6Jmbh0SBwPlrNfD8X0jAtyOjgzXPMscb7MSfhn2D5T - ioxhc+6M6Rln3E/7pPrHvCsuuGJYNb9X3h6PUvpiuYCKtT5kvTcZj2znzysoy9PtduuIWBK+WYQl - +fAcraFvK+W0Df40Vmk2Kr9wSZYBG5sa8AfEaiwQ/PT0O3M88Hv6c4+E6QYegVgvXi3Fn1jjEU8o - k10sXsDkGbUB21Cs2ZMZF7U1WskUbzw9ASgqmBwfYmVt8QGWb7gZQBwwLpiP5hon+glmEG0aI3ce - cFyK2srvpkrkLrmReCQOHwPeYo32wH8JW20q2HTckjmijMZITDPZajzK736WxQ6+7MdM/WEy8lnd - 6hCHXIaNKxZd2bKjtd6k8VOmfp/sF9XkmpNWer8lx2wOVXftYWykNjDpgjbHPA9rx9ew8dc4C/dt - ZMUhXMFoGn4VDUwsN5R0yIHnTwV46pzCeE1wZPZRIhUg+gYU0Egf0A089hwalC3DRAMezHV9SGEP - yWkvHBQ1lHx2gMG2Sp/H31BLAwQUAAAACAAOuXtPAAXq5r8AAAAcAQAAKgAAAFBvc3REZXBsb3lT - Y3JpcHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZW2OzQqDMBCE74W+Q8i5Qn9im/amIsVDe1Ho - UWJcIaAmJFFoxXevv4dCL7uwM/PNdtsNQrhmFeAbwt0r9NM4SsL06T3CHu8mNQfDtVBWyPqPCXmf - RgPypUUx6FZwQIHMYclyplgmSmEFmCE81Q3nFrQZcFzWVstyFSbJyEZzCGYleavpsbuweHb0uwWh - tORgTAKVKpmFH4ZdjmM8ykfAObscyXVPHSgOxCEuLxxKCupczjRzT5TkjLhrw7DG0X8BUEsDBBQA - AAAIAA65e0+/cE+UDQEAACMCAAAKAAAAUHJvZ3JhbS5jc32PwWrDMAyG74G8g47JxX2AboW2O6yw - jrFu7DB2cBM1Nbi2keTCGHv3eWnStGWrMBhL3//r92gEcx8+yTRbgaIqYWkq8uw3kvoUPGkx3imY - WgstxEDISHusVZ4l9YOp0DHWEF2NBLJFWC5e+nZi8iyycc1grKYcHlGSPY6vDdW9Z0nD8a+H0zvk - oCs8QWdeZtHYtHald8Ei59lXnkGqENfWVFBZzQxP5BvSu8OkA04gFi3p2ntTw1IbV7BQ2vr+AZoa - Lg/8UTrUnFALvuE6xexzFK1Eta+iVM/RFeV4kH3n2X/rF+dGf7pfJIPbyXmijlYH7R1udLRHbf+Z - i1KvjCvRJDHcdPekzdzlTecHUEsDBBQAAAAAAA65e08AAAAAAAAAAAAAAAALAAAAUHJvcGVydGll - cy9QSwMEFAAAAAgADrl7T/QDssXvAAAAxgEAAB4AAABQcm9wZXJ0aWVzL2xhdW5jaFNldHRpbmdz - Lmpzb26lkD9PwzAQxXckvkPkuVKRGIBsLXhgwI3a0hUZ94qNbJ9lX1oQynfH+dMoiLGLLd393r17 - 93N9VRTMmLQBIuM/EiuLrparJ+P3eEqLmjR4MkqSQZ/7B2kTzAZIevTfDuv/GMW6p3oD/hUipHF+ - Lw7BDoLXaHOLaaJQzucWlbQaE5W3D3f3bDYqUrIVRsroTV9r2q/pABYiHoyFaQauNC6R/rgqdE76 - vZAOWssq4icomphYWXullzGHh3hOcsHS4I8monf5PDsZjXyf7Dggi00l+PZxteZvXOye1yvxwsW2 - Hf4ER7AYWjE7C5oxe/c0v1BLAwQUAAAAAAAPuXtPAAAAAAAAAAAAAAAAGwAAAFByb3BlcnRpZXMv - UHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACAAPuXtPfb0nb2YCAAAsBQAAPAAAAFByb3BlcnRpZXMv - UHVibGlzaFByb2ZpbGVzL2NsaTQ0d2N5c3N5aWF6Yy1XZWItRGVwbG95LnB1YnhtbH1UTW/iMBC9 - 8yu8aK/EtOVQVSEVLe2qEuxGBVrtqXKcCfHWsSN/pA2/fm1whBrYvSTKvHlvZl48jm8/K44aUJpJ - MR1eROMhAkFlzsR2OrSmGF0Pb5NB/G00GqxLplHBOCD3thpylLXIlIBqm3GmS1wT+k627ltJCloj - WaBWWoVeIfOxP0BNhH5LiygRiFptZMV2sJfIoCQNk8pzjKvTaQxcCciZce0c4svVnWU83/cRoSeB - pMpBISMRB6IEqqQCRDJpTdBxYQ2oYZoZVBpT6xuMtzKqGFVSy8JEVFa4+OBMvOPbhXs+zaeX4+uL - y4sIDUYjN3t6aB2tpeT6pbNq4q1y5gk9HXpdJ6tpCRXRPe0cGuCyBoUrnfne8eV4fDVMBgg5aQ+Y - 9oeStvYRF3NupQdDl2BKmSfL1RxqLtsY96HACDEn1jBnRjLbWQUud8UMxLiHBs6CaLNx/3Dv5r0U - BdtaRYwbLXkG75lj/junJ5JyYgqpqmQmWnSfbjrqEQkE39FG8bVcECtoOSsMqNBfEkyknE0mH7TV - umVkRyPih/mATDuqjgSYGP9HJdQ5AD7vC7hW1o91BE+ZD5+U2xxmdf02J4Ykj4R7K3rhkNz9mRWo - hlHYPC+SfvuaVqcj3EwmVzE+ZQfZQ/iJaVcuJabsi8a4nxGIz1BJA36ytGw1o4R7EOHO/XdWP3wa - RR7d8uhfwhcGFVw5D/YG/Xr6Xperl/vjHOeO5oMgGYcu485dELYOBc9BgeVOjvpJKki+n0zeQSHz - bUUaSF/nQbP77NA5aHd17I/suq2htxl9eL+SuLeTLnDY/+QvUEsDBBQAAAAIAA+5e09/p9booQAA - ALYAAAALAAAAcHVibGlzaC5jbWQly0sOgjAUQNE5q2ADEIKAn4SBgEw0SpRE44zCqzSUFvtooK7e - oNN7c4R+wWgrwFEqsHokmvHGPtStTOToIhe2M+wyGLg0F5EsMx6VhqUWmnCGbaEkZRzimrMgmGqD - aFj1qZ07EOcP3UGTuec/UyFOUjWxUXB+6jI7rqprG+WCdh5CeNuTR9h5swY6pcVW0MY/+ZH0aDat - 8/JNu97f0NSyvlBLAwQUAAAACAAOuXtPbj+uF0wEAAD7CgAACQAAAFJFQURNRS5tZLVWWW8TQQx+ - R+p/sNoXIrG7nOKQAEEPKaIcoi0SipAymXWyQ2ZnljkSwq/Hnj3SFCgVEnnI4fF89md/9uYAjmVl - X9uwd4ve4MSJGtfWLWH1EJBOYEZWL+pGY753a+/WeaV8slWCPhENSIciYAnRK7OAyQ7Kl9tVCI1/ - VhQlrnK6Nu9Pcmnr0R1QBF7ZtQd6g2A7MBDgFYdMkUIlAggpsQkelGligLmzNdmRgqIDYcqUK3rG - mwm5TKkeHMAHhw6/ReVVQM+2DCb5u+NzOLQO4ezozaUEbTAY8lpJZ72dB06QjGujrShHsELnlTVw - P7/HOADT6XQmfMVfD6DEgK5WBqGF6d3ptLdkWWfrLqcM4dyCiwZCX1VtpdB6w4kedbGZZzqTtsQt - 89dR6RJmWpBRmWR69SMSqw/WBaHhdi2WCJ4tGxtBaiWXsP8Z/T6sK2qb8Etq2v7YSB0JQjQNeAyB - euh7vJ49+f1QDcyVxpf7o5wI0CuD8XxATlDv7H4yrJXWYJBM3FDbbIAotQk2DTmLwIU864M1zjbo - gkKfyDGEY0/ycCslkVCSra0NJ9rnmX/1BMRp9f3+pHwkn7MQS2W5iO8bbLnkXreulF6odh1z9vwY - kyOn8xVlgNuNQ+9hevJoCkvcjLoIW/Ucno753tj40POb7JxS4lb7ywqT/oq+0GTRd9IrJN0r0p3i - ZRAz/5yMbLv/fZQDh7rgCUuB6G7NqtckuTtgxEotRBgqNXCYW12iS/TONw3CtI3EkpvmnQDRcy17 - kXVTvLsKjuuoRbBu79bk9wdfJj3HBRU3zhK3gWlxee4z7O8ASV7Q5PhlsA2IrTS6gdfartuhoN2B - mkXimWGgjHnkyTyLKXHl2M0DXU0aqSx5WMc0DbNxWNuAekO+zsZFRWEDHaGmGlxp4R+YD+P/MH+U - 32fsRVpUrpXspKI189sivB2KQMADbtbjFg41Co/+SyevQ0t5yUA8b9iRDE5FNLK6xuGEVZ+9SLPA - bmw7Npy8SLcuPp6CncOU06fshxI+e/D08ZNCNKqoaRLEAn23tI6w0XbTJci5tpuHD2mfESFnoOYh - EDMbqX3JnUmIHf87tHBoZlq0JNyd4+3giKXIa18ItrZgNZowInkzBWn5SRGQhsEHJrJ1AUWddVGy - qnwn+JPoQkXcqX8l5cTFuKLqIysj305i3B3fXx9hw/3Xwit57bS3BHgaMp9WW/t9FhVPaTZLAC9X - CtfPk2d2yTN7mN9tY70iNisVNjzkkvpCHG6wYq4PLa3hp2smOuxsi/33fOgojc2wr8cmOFu2Vf+H - evQRLM0cB8/UJbx/SGdo5z/k89dw/2vh91xa4Gsh6fmbMt/NlqyZFrwre6ztf4MtXJN+5+nKVs6n - wiwizTtcGFIH7UbDk9ItotOL8dkNKCZIYrgwijSFfeV8oenfWNHGOawEb2HP25xb1m8/6/rm3TjQ - FRH1ir52nH4CUEsDBBQAAAAIAA65e0/I6E8OqwIAAIsHAAAKAAAAU3RhcnR1cC5jc61UUW/aMBB+ - R+I/nPYUpCrV9tp1Em2piDa2SmHrY2WcA7wa27MvrKjaf985CYkoNN3DIqRg+/vuvjt/l/NzuLZu - 59VqTZDIEcyU9DbYJfG+d9YLUtakMNYaKlAAjwH9Fot0OGD2FyXRBCygNAV6oDXCLJvvtxkzHJRB - mVUXOB0H9xWJw2N6VSrNtIte0NQG4sN+0GwrTwCuLO1z9J+mmSFc1dU2YdMY9wRr8kRcGuMCI8xS - rcqa1g+9QYfcISN3mfmJsiGc1NRIysXGaQxxJ7whfiLXltdVQCM2GJyQ2Bd0OHgeDoAfVy60kiC1 - CAFyEp5KV580gArk1VYQguRCCAL5qIRjfuOSsmKGJApB4jPu4BLeHe2/Y1l1rC7hPlWSHbQwZuhW - o5rViumeQ9LlIe2iw/45kflFxsPVM6yQLg55bPL5WgXYIK1tEQEBpNCaPb/YVYb3pSG1wRS+B+SN - DksWRFFAnBeeh8BrPq76SEIZvrgjdVurilYT5g0xyZp/15bzVuZpg77apRaRjouCxyMZpXkclo3j - WhdKK9r9QB/dmZzaTJv3w4eH96PuCrumXHtkU1QF8Z3DrWfj/bb+EcaFcMTFva4mZwNpJGs+Zkxt - mVMi15DP9lHuFa0n3ls/FabQ6D8lb4lZsBgRQAB5wcOHhlLITH0vUoQaNM7vYpvJx4Z64CN8ctzZ - 6GxhIMrq0T/fR670n0Ezf1FbS/qfJtr7u9Y+nc/v+Cv8q0SeRqccavbSW1ZKsrFzvF35vPkYgHDu - DLLm+zoxW+Wt2XBZgGb7uq/UEhIGpFm4wS1q6yIlGbWEjnT4xHQpV9ew0E+eJLqo506ssO1d27/D - JeqA/5phGiicildtHMtZilLTrdLYkI4xOXHfZC/kHhe5lY/YZD6J4Sl8aZHmxb+/UEsDBBQAAAAI - AA65e09SrFfUPQEAAO4BAAAKAAAAd2ViLmNvbmZpZ22QX0+DMBTF3038DrWPJmXgAMGASxngi5ol - 6tteOnphmNKStqj79gKLf7LsrT33nPO7ucnqqxPoA7RplUyx57gYgawUb2WT4sHWJMKr+8uLpFKy - bptBMzsaRwGhxByMhc75hN0L6LFiVkd9zyQXY+P8nxXGOZKsgxQz0z+DXSsNGPXM7lN8jSf8bn50 - ig8CTIrpr+1pkkazBqMGXcHroR9r3qTpoWrrFjhGix/w4oSc/NFQr1UFxmxmJldWgsWI6WboQNqR - 6GyLaq8yZR0uBEbGcjXYR9UUku0E8BTXTBj4NyhbAVNMqMZsj+pxlWmRM6dJFqcnTK4I2Wj1DpV9 - GFp+h8q8iLJwSUl5E1HiUzcidJ3HJCz9wPWC0ov8iJBzSRoGWeDFHnGjMiT+Lc0JdYuYBPH6huZB - 5ufLKfkNUEsDBBQAAAAAAA65e08AAAAAAAAAAAAAAAAIAAAAd3d3cm9vdC9QSwMEFAAAAAgADrl7 - T9SXNwp5EwAAy00AABMAAAB3d3dyb290L2RlZmF1bHQuaHRt1Vx5b6NGFP+/Ur8DdRU5VQPmxvYm - UXNsDylVq15S/2oJJjFaDBYQp2nV797fmzcDtjHYyaaXd2OGmTfvmncMM4NPP7r+5uqHn799q82r - RXr+4QendNXSMLs/G8TZADVUF4czlDR8ThdxFWrRPCzKuDobPFR3+niw0ZaFi/hssErix2VeVAMt - yrMqzgD7mMyq+dksXiVRrIubEy3JkioJU72MwjQ+s2pMVVKl8flVXsTaZV5p34eLZRqfjkS1gimr - J76Rn9t89qT9QffNZxEW90k21czlb282W5bhbJZk97ua7sCxfhcukvRpqn0f3+ex9uNXazB/fvhB - fSP0dtLPxDxO7ufVVLNM86gLDak4LrZ73obRu/sif8hmerII7+Op9lCkx4NZWIVTUTEqV/ef/gYO - jpwrFLVVXJRJnp0NLcMaasnsbHgTPsXFL7gBVFaeDedVtZyORo+Pj8ajY+TF/cg2TZPwSJDpb2mS - vdsFaE0mk5FoBejZEIobak/ySuN9mVOtZmqu74yNieZ7luEPNTFOZ8M4C2/TWG9Emmbxo7YN/kZw - MS2XYYQ+yyIu42IVD4+ct5BQYNKqpyWaqvi3ahSVJTVpRlmZR8HlXZKm0yPb8bwL86355ii4phZL - tWR5FqtKew3cNL3xxVi1OGstjj2+vK5b3LWWS//66nNLtXhoycFyUj1NTcN+I6BoqAD5/U9ffHX9 - i/XLJ292a4BwHJkXEG8k5GNRiziqtCc5jlEalhg6CDnU2IuGru/ihi3rbOi7vuEMR9x1GVbzpgu6 - wwq+dibjwBifOLZj+DeuY5mGcwLcc933DD/VXd80rBPxHelWYHgn9IVq1IqSj34n5o1jA2RCPb80 - V4Lq3PFR5Wg3zng8OXGtsRFE1IOxEAIuMYLUtgFwIr7nvk+kCaPN31fOJCDGHH8CXtWNC2on6/z/ - vltSW0oajF3DB2XLsG9c23VBT0g6GTvGJF2T9MoJYHjuiRsQT07gB2hRNw2SDnIOk6OBYPyODa5T - XGyIK76lKjfVcWIKXaRC4hPx/SUhuVGY6kIHYZcJK30TzXWteja6yir+hlodD7Rc0yJ9Tkzf8ORN - g6QmBv+Ow+KLIpwlCNsihigTHmr3svpHxG0w8wDv/J5c9ZvsxzKG61pnQyewHCPwAnj+E25dqNiy - Ag+NNhonlmW45thFI24t17A9x2vw/lCEWXmXF4uz4SKsiuS3Y0uECJ0uvguWJ/7kkzoc5Estv7uj - TDQ060BD1XqUp3lBjvq5+LwRlY2LepC2jcPqxaG6jDY1tGuIPOV0nk3WZ7vKFvir9gpdeoXu2c4J - /uaWZU7goOsd64GhGE0l82LwyZvOPFHEyzhEsslyWewGLZPfY85K3TDLvESGzpFCCwo1nYBSWdrH - HHs34ThoSVLtXCsZcV2ViduZ025naUnwcZ5UcVdud9CNEgxd2hhmSblMQ+T4JKMh1W/TPHrXlaAN - ztB6gvnMi9P0G8yXxjJXH9mmzNZHzvWRTV6Lb9QmM67gzC0rRWrmekrMR87Fzhy+AXwhcnW7Uzuf - y24ClFTN90/r95SizAlqZaaXbaigP8tDGKOr7XFf4UcM00p74AOJT/Rs93YuaxkAR/MAiUbNBVBk - L1ATAgBjSiCh1LSAoZjpZnZAKGkWQFSC67rValprbwdIOzHjVubmNXUZUmTh/VwHglwnDF+Orzsx - Aq5ls+Zq1tioRn5fsy2jyjZmaRDSSL72MCZXlmkbkxuY0Bg3vh/pjuHVfxMyrCtTt5CRUifQHR9X - wKPSQboKcEWVG+ncHd+yhMxJHfGHRI2eNEbImTcNyd9rw8D/RobR/YvFmYBJhR3M6Y6gCy4jzDt0 - /AkOXd3mKwR0IogGEBOi2qiRtTfjicBkmySrxCNFrVmOLCEif9uGT+0gocqY3pSSJmYDel15w1w2 - Ongd0U0xUP6YxgKBXwzamIYQ30iikSlrRY2A5XrXcOU4jUVrIEtou5owoM9jOQGoICEuawR/r1UC - hhQnHgwlgtS24MSR1hFQiRUVEU20c32tvKbdEvcm3Qmr8mUJbd9P0CiJ4LJG8tUU6sMUXl2hPsyq - UShmz+NGoZJgW6HU8Lcr1IfVSyKSl16FvtqM4i7NqTmN76qu9E0JuGNK4D4/L9MHqbNKIqwchGly - j9nJIpnN0nhf8qbsoP2xc7Kgg39i9Wj3NOPjz8Wnb6VgoJYKBt1znMDevdrwKDWFZ9Gt5jSuKnBO - iZCXKwzHa+EQalLanvj/oEaTLMM3rfGECUqt9Zck0+VIu+P2SC/C31Sz5fjMd3v5Rg5N+FDlu9tp - aioB3kuoHsGm0/CukvJtftQCFwxg8GZHa4pnhSnWhap509oemCq8rfnarfBFCEklLT0s4rDPkHnq - 2zl4Co1YT2M8bYs3xed9Ld71n23x68bss8P0qKTx6bYIY5P+dTNn45HjfQUEjl4B7X4BnYME1JdW - 13DjSZWcS2Jpt8PyqnwBPsY9hOJstsyTrKXIhsuuAO4FFpqeq/5/T8Fbqtujl3n+CCj99iFJ8bwc - R/Qo3DsQ4kH1pX7ZTfJcmzuKboearMbROlXl16p6dopp6dVu9LpzxR3/aOS0XRSFSVdqrQePy8tl - XERh2R8ByypetlJNO5TepfE2YyL661goWJRTLPEUcRVtR+O1hY44Datk1ZMl2rzM0l2jc5sXSCVq - ZgFdlHmazLSPL0z615cONhN0e2VDKLdf/12q3CPGuTarptPbGAOzkRk6JocdqzBtLRymgDWt0fLa - Q7mxaNSZeYfDDghWvRtsq6o9RW1HsbZlhLfg/2FD0FZE3ED1sgEwqrisEADSNH7BUNymD/F7kZ/V - WeDZ5rkVkpJsHheJeirojUy3eTqTcP1Rx3xP5c5m2h/vyfghDG3NXjf9sS9NO/ZhAm4JN01D2Ew0 - R9J4XjASUXgZFvCj3uAbVeENVgoJc6/9bSFsc3AY8WYS6l9cWtuND0VJrWLKEhdofUbGq0PoVgPH - MJEFY3rYLRZh2p0CGo1M7/Loodyl8fyhIlNZE5jkuY3ubIl3P+55vqozXTuDzuIoL0KOTQ8ZdAty - B6RQWsJ+TvasZ1KYKfU+gFne7lkid92fTwVj5+BlpdjbyUbjcS1KG60vXM/YmoKXeprf5wc94nr9 - j7iTsfn6T7i7owvBt6uFv6lkxgEHeyPmogRYr/SQub3ks3dL6KC9EPPiwO2Qr7/Xy6cF8sT/YkPE - Fd/Yt3rBdkjd9z+wGRI4gRu4WyD2Bsi173xu+1sgzgaI5QfXztstEHcDxH4b+JdXWyDe5sbM9eXY - cp6xMeMftDGDowU7N2asSbNuetiCsxVYYgmWThWsXMew5zo2eX9yA2zL6ybtymNr3CUArNfOdU/c - BzrdifYVl3xj8hOhmFsmNvctm7vYc2ySpehg4YjBl4IU6+l3cADSgVgMdrFuzBsiuDGxFaJWk7GV - IrdQxuJ+ImGAj0oRc87rzy6VmKrqHXE/1dsR300Z7aJs69zPRolbJJMR7aMwAjRMJLBCb5fg06G+ - OvODykBsQfHSdy2dLW8bYVn6sSeWyz2M+cqxSO3OSnesL9EgQWwzEH0DX+kNIltSZCbuCIF9UhHa - qMYTbR4xJNvslY/WWr+BjmYpjEtXsdHPWw2kcqZAW/4sPZpR9HknAgAWbViBD1TWisKeEv1RFUzB - F1eLNisEoXpDz6WuYDwCrFRkAFiSkUyGihHQ1xIGVBJgruJKtqsh8+oBduQA26tAcUVMolGMEzHh - iK020dDsvZFCWIOBkEPI6QmiZHtil02orzZC8MWyyBIGVpiS1JyAwwmlmr9A6Qkbe7wfF3jMvgkV - y/HFZX24efyd2kSgS9GTTdZSJVGH1lJaqrJNHstVgF0kYaE0sMKThGEEpJXaxumWFEQ6YJnoqgQ2 - aWNSOoErjctRxmQROrXdI0vByoLwtTnP6Qox5yxDQOTVFhL1012lG4fd3hOC4hYopey4rKtC6mYs - yNGBLLIzAUWmORFYhAECIVsaweHK/KPaomLksoBik8zn3vTNMaAxbh5k4KnNEO5Uly0RvIgznfsL - JxBkhDkJGVUHwFhcFE4lFQzq0qmEC4CWy44deOKiRA2YwLrkcstOKMSVm2iwHjZH5e/EnPhmBZNR - YODW9uv89d1jLkupTd5Sl4GQjgBRm2BWtLMqbVkiRxD2IozKE55nUzpRtiY7CkekGOXTd6RLWjoo - Sa/zJc4AughE2efIVkvprN/UDjNmwTwcDuPozo7Ajivv7Zof1o20NzGacuyFnqX11A4lAyvrQe5t - 1m7AuaXJPmy7ciSAhWIR1+icTinYKFAd1SwuxUku1Spj75NuaYvISmFQ+qtDNibUTZq1V3rQ5EU+ - FaB2bNmmpVwq3HvMXR22eCxFMqnDDROwVaKpWQMU7lQmwZ8s2Xy8QQQTmbN5mLlDIE88eJRUqCzG - n/SjKnSP95c5gDc2Y4srQqdiQFfCWdL/HZF+4LKAVUNgEXr2cSptZlAqyZ4+Z5VaeXaTX+SWtctK - XREFko8QcubnzLIxaDK/+JxfWHLhADyaTbpVGr+yx/J0QSA4qm2Zk8K6abOtT4JDAiCz9D5h8O8K - gMxZXxicTICwDoNC4CYMrssvFOKY3isGQObudcPgSwKgzI6OCc6aMFjLSnXrgrMmPEeeU6FEbJHN - 2h5lZHelU8GjQOHP6UJjxcwqRxI9ydnGEQmDPyH8WE4Mx6hDSapHTjtqVTZzcZnuaweTbqVCHjvb - T64diagGmGYiIiMcORg1ygqHWKFrPVlVaqOZHQ+nCg0lOSWzIksuZHXwSCOUoQdpQPhQB2eZk158 - Vo9FDmHW6ULOr8W3UEMt0njtYcJen30CQogvx1EJ76GkJhRSLqlwhrc4Uqx8iF3HBkYtAolAL0OI - xYqUQ9MEEdKNmr5TmBQBFw7PNsZzNV9MhuG54hoohf3kkRd1HOprPaU61sbagu3ueGa128+sGIOt - R9amdtRNzUfE20/PeTV6W9L5NMxteu6r0SP5DqHovYziIaen9iwfyvXN9iJic+Sh+7CUh6aXHdTa - 5KrIHzt2sbFKSYelxR/vbfx3DvRsn2FJHxZYxz70MJri2jvq2J8vmg2dPsU1B4EOOwTUOuKz/3TQ - Bk1xzqd36Z8W8To5nuWPGXQy06t5rMeLB+xt5y3u1zezujdinEur65RGvfb/nH2y7a2vwNx/EiO5 - K8KF2g1tmx0hIdv9KFnQ24dhVnXbr+/1QjLjLYQ9ThUvsFujE4NK7M43AXsk/WwRz5JQy7P0SSuj - Io4zLcxm2vGGaxFPnyjsvav17UMqvEeydwuq88hk+4iXuR/bpre2PFYa8fP53nq7ZC8fe7dzDiXa - FwjbVumvRe7nxMO9MbEtZTu+t2O8vRbj/w/ivdxRgnVHab9su/84xeYLTT1vUjHv0CcovqIEtvMf - keDl4cE9HN361vShL4LRp9bW6yrfNP8R5Yt9UQ6Br8e879iC9xePm2MfMG77Io3VRBprbxhxJ5up - dk9csjah9/K6fci167ypd4DcdDL3ECXah/jS4eeU1idch7jVZtrtmfUeIvOhPmr1+6h1iEq2pnv9 - ZjN+ltmYe6FZkr0zRPrQ+Zy7FE8F2hyvFsTZgf57yGSRJOyeMNLldLT+GxinCATJsjpvwGY4mbTA - U4mBsX67QuEmganBxI6H1998fcWPLDc5RnU2PNHuHjI+bHzcihr0APE5sXq88aS7frMKiwZMO9uN - rQGVA3vW8IgoFlbx2zSmu+MhAwy330viagOva19UeD/8FqcxjwfJbHCiDbipeRZvqNEL3jdwrS9/ - +PpGSg3Kg8EOSMKhmFjn7j6uZO3l01ez48GGfQ7aXGrHj0mGZy8jC1fJPT1zGXlGPNTa2CVVEYGm - +OWNEj+9AeKlgYcj0fiYF+/gzgsMOR77ohHOoo6WSBvl6M4z8CMk6gTsXmXBSvI0heuTzrJ88Mmh - HUUdn+GjrubhPYXnUR+aoh/ejY2/r18zZNfJ6uXDhU+NxQiXSySKKzpJeczw2+B/anFa7gpKG9Zj - iAUneBy5H1jY4fGDT3rCxRvl47Vbn47kD/GgSL8zo/ye47L89YEB3w1kowDAglPT2n67qYHu6wHg - gfx5hMHO98kG56cj9NuPitLmPlSXYZlE9Ns/2zjVPZcZI263SWFe0qUCzokDddt6r6pPGRsvTg3O - f84fClq80ZJSQ8/Z00f7VNDMG9bf7WlINh/g1qIw0+gwuPZUE0LFnH8U6XMVFrS3clnn9LbQRjtQ - 3T5pMR2UhdNroej743c3CIrar/JHfqDzMJ3nZTXFj66MR+EyGS3isqTw8usmusPl27nwtEvQ01B1 - lqdeB9q8iO/OBioOhu9CPLePIL5eh0L9c09XFBrsO49YV3jApN+q+uU2DYH8/Fp2I0U2qhuF5y+U - dJdMPyU4ZvlyyRDc9XmOSNVifvch8ovfH4p4ZxP/fBaOCibRDgCSWqty2O49zQyK2s7E0wTClpZU - aK/tqh19k/yhpJ8DyzLEREP7YR5T92Gpyck2mxqOJNJbmOkTpgj5u3LXm0XvYoxHUk6fNwiKyuBc - qfQ0OSchfgEX5S9k0vR7ZKej5HzDqndGld54oW2mEPpdnM2sshn+VHkbWWv9SQ1pB+BurKcjGf+p - KH+57S9QSwMEFAAAAAgADrl7TwhKLXghEwAAzEsAABQAAAB3d3dyb290L2RlZmF1bHQuaHRtbNVc - e2+jRhD/v1K/A3UVOVUD5o3tS6LmcddWStWqL6l/VQSTGB0GC4hzuarfvb/Z2QXbGJukadX6LrDs - zs7Oe5Zd4PSz6++vfv7th7favFqk559+ckpnLQ2z+7NBnA1QQ3VxOENJw+90EVehFs3Dooyrs8FD - daePBxttWbiIzwarJH5c5kU10KI8q+IMsI/JrJqfzeJVEsW6uDjRkiypkjDVyyhM4zOrxlQlVRqf - v43m+WVenY7EpWorqye+kL/bfPak/UHXzW8RFvdJNtXM5Yc3my3LcDZLsvtdTXegVL8LF0n6NNV+ - iu/zWPvl2zWYPz/9pL4Q8jrZT8Q8Tu7n1VSzTPOoCw2JNi62e96G0fv7In/IZnqyCO/jqfZQpMeD - WViFU1ExKlf3X34ABUfOFYraKi7KJM/OhpZhDbVkdja8CZ/i4ndcACorz4bzqlpOR6PHx0fj0THy - 4n5km6ZJeCTI9EOaZO93AVqTyWQkWgF6NoTghtqTPJOeL3Oq1UzN9Z2xMdF8zzL8oSb0dDaMs/A2 - jfWGpWkWP2rb4G8EFdNyGUbosyziMi5W8fDIeQsOBSatelqiqYo/VKOoLKlJM8rKPAou75I0nR7Z - juddmG/NN0fBNbVYqiXLs1hV2mvgpumNL8aqxVlrcezx5XXd4q61XPrXV+8s1eKhJQfJSfU0NQ37 - jYAiVQHyp1+//vb6d+v3L97slgDhODIvwN5I8MesFnFUaU9Sj1EallAdmBxq7D1D13dxwZZ1NvRd - 33CGI+66DKt50wXdYQXfOZNxYIxPHNsx/BvXsUzDOQHuue57hp/qrm8a1ok4RroVGN4JHVCNWlHy - 0e/EvHFsgEyo5zfmSow6d3xUOdqNMx5PTlxrbAQR9WAshIBLjCC1bQCciOPc92lowmjz8cqZBESY - 409Aq7pwMdrJOv0fd3NqS06DsWv4GNky7BvXdl2MJzidjB1jkq5xeuUEMDz3xA2IJifwA7SoiwZJ - x3AOD0eKYPyODapTnGywK45SlJviODGFLFLB8Yk4fkNIbhSmutAxsMsDK3nTmOtS9Wx0lVV8hFgd - D2O5pkXynJi+4cmLBkk9GPw7Douvi3CWIFyLGKJMeKjdy+pfEK9BzAO88ydy1e+zX8oYrmudDZ3A - cozAC+D5T7h0IWLLCjw02micWJbhmmMXjbi0XMP2HK/B+3MRZuVdXizOhouwKpIPx5YIETqdfBck - T/zJF3U4yJdafndHGWho1oGGqvUoT/OCHPWd+L0RlY2LeuC2jcPai0N1GW1KaJeKPOV0nk3WZ7vK - FvhQe4UuvUL3bOcEf3PLMidw0PWOtWIoRlPJvBh88aYzTxTxMg6RbLJcFrtBy+RjzFmpG2aZl8jM - OVJoQaGmE1AKS/ucY+8mHActOVQ710pCXFdl4nbmtNtZWg74OE+quCu3O+hGCYZObQyzpFymIXJ8 - kpFK9ds0j953JWiDM7SeYB7z4jT9BvOksczVR7Yps/WRc31kk9fiiNpkxhWcuWWlSM1cT4n5yLnY - mcM3gC9Erm53audz2U2Akqj5+mn9mlKUOUGtzPSyDRX0Z3kIY3S2Pe4r/IhhWmkPdCDxiZ7t3s5l - zQPgaB4g0ai5AIrsBWpCAGBMCSSUmhYwFBPdzA4IJc0CaJTgum61mtba2wHSTsy4lLl5TVyGZFl4 - P9dhQK4Thi/1606MgGvZrLmaJTaqkd/XZMuoso1ZGoQ0ku886OTKMm1jcgMTGuPC9yPdMbz6b0KG - dWXqFjJS6gS64+MMeFQ6SFcBzqhyI5274yhLyJzUEX9I1OhJOkLOvGmG/FgbBv43PIzuX8zOBEQq - 7CBOd8S4oDLCvEPHn6DQ1W0+g0EnAmsAMcGqjRpZezOeCEy2SbxKPJLVmuTIEizy0TZ8ascQqozp - TSnHxGxArytvmMpGBq/DuikU5Y9JFwj8QmljUiGOSKKRKWtFjYDletdwpZ7GojWQJbRdTRjQZ11O - ACqGEKe1AT/WIgFBihIPhhKBa1tQ4kjrCKjEgopoTLRzfS28pt0S1yZdCavyZQltP03QKAfBaW3I - VxOoD1N4dYH6MKtGoJg9jxuBygHbAqWGf1ygPqxeDiJp2SvQV5tR3KU5NafxXdWVvikBd0wJ3Ofn - ZfohdVZJhBWDME3uMTtZJLNZGh9K3pQdtD92ThZ00E+kHu2eZnz+Tvz2rRQM1FLBoHuOE9i7Vxse - paRwL7rVnMZVBcopEfJyheF4LRxCTEraE/9flGiSZTjS2k6YoNRaf0kyXWraHbc1vQg/qGbL8Znu - 9vKNVE34UOW722lqKgH+Caam0/CuavGmFrSg+G2FRynuD6ZYC6rmXYqowts9dCwwri7x62ERh/uM - lqe5nbgUGrF2xnja1m2K39+1btd/tnWvG64P59gvksZ/2yyMTfrXTZyN24u/yyBw7GXQ3s+g04tB - fWl1aBs3peRHEkm7HQZX5QuQMd4zTpzNlnmSbctxi8Z2pPYCS7T0FH0v2bZF21uyXYJti+yAPOb5 - I6D024ckxS1xHNHdrrZPAeJe9MXuuGu487lTj9iWjHXAq/xXyBl2LcD20jn+kXK07VGErVZqwQb3 - vMtlXERh2R3WyipetnJFOzbepfE2MSJ867jTX5RTrNEUcRVth9a1lYo4Datk1ZuOWdq6oc8L5AE1 - JQDvZZ4mM+3zC5P+dcX0Jqu2lyKEELtl3J/U81k1nd7GEHm8Zxlia3GkzdthtqQMaJXroZRrNx0J - cDjcamHBuUH3gg5G79RfeAu6Hpjw7TjEXZ8hLqOKywrulqbxMwR3mz48w3ygE+2PZxjFmnMn2Twu - kmqff9/m6Wyv75rPEshspv3xTHK2hts/TTMPJCfH7k3uNA2hu2iOUNnfSUVEWoYFLLN7TlSFN1j2 - OmwHa8gOulEbtj3L8i8ure3Gh6KkVpGU4+J5kb4OL1sN7PkiA0CrGeJzmB6SxvQujx7KbZnkDxWp - f41R4uM2urMP4pvnKxHl21ljFkd5EbK3P2SQI4bY729i3fU5GaOeGiD3771rsLzd96bc9TBR57Nk - 1bXj63Tc93LLy265t2aNpZ7m93mvOzBv/x3YZGy+/g3Y7phA8O1q4UEqCXC4wNK9uSgPcQ+e2ysS - B3csei3Vmxc9V+u/+0kvnxaI1f+L9XpXHLGt8oLV+rrvf2CtPnACN3C3QOwNkGvfeWf7WyDOBojl - B9fO2y0QdwPEfhv4l1dbIN7mvsH15dhynrFv4PfaN8DO9859A2vSLOv1Ww+1AkusENKm98p1DHuu - Yw/yVzfArrFu0qYxdm5dAsBy4lz3xHWg05VoX3HJNya/Eoq5ZWLv2bK5iz3HHk6KDhZ2wL8RQ7Gc - PoICDB2ItUoXy5q8Xo8LEyv1arETK/1yhX8sricSBvioFDHlvDzqUolHVb0j7qd6O+LYlNEuyrbO - /WyUuEUSGdEyPyNAw0QCK/R2CTod6qszPagMxA4Jr8zW3NnysmGWuR97YjXXg85XjkVid1a6Y32D - Bglim4HoG/hKbmDZkizz4I5g2CcRoY1qPNHmEUGyzV75aK3lG+holsy4dBb70LwSTiLnEWhHmrlH - M4o+L5QDwKL9FNCBylpQ2PKgP6qCKfjibNFauhio3m9yqSsIjwArBRkAlngkk6FiBPQ1hwGVBJir - qJLtSmVerWBHKtheBYoqIhKNQk9EhCN2gkRDszVEAmEJBoIPwacnBiXbE5tAQny1EYIu5kWWoFhh - SlJyAg4P0NT0BUpO2Hfi7aLAY/JNiFjqF6d1dbP+ndpEIEvRk03WUiVRh9ZSWqqyTdblKsAmh7BQ - UqzwJGEYAUmltnG6JAGRDJgnOiuGTdo3k07gSuNylDFZhE7tRshSsLLAfG3OczqDzTnzENDwaoeD - +umuko3Dbu8JRnEJlJJ3nNZFIWUzFsPR80JkZwKKTHMisAgDBEK2NILDmelHtUXFyGUGxR6Oz73p - yDGgMW5WMvDUZgh3qsuWCF5Emc79hROIYYQ5CR5VB8BYXBROJQWM0aVTCRfAWC47duCJk2I14AHW - OZc7SkIgrtzjgfWwOSp/J+LEkQVMRgHFrW0n+eubm1yWXJu84ysDIT2hQm2CWNHOorRliRxB2Isw - Kk94nk3pRNma7CgckWKUT8dIl2PpGEl6nS9xBpBFIMo+R7aaS2f9onaYMTPm4dklju7sCOy48tqu - 6WHZSHsT2pS6F3KW1lM7lAysLAe59Va7AeeWJvuw7UpNAAvFIq7ROZ1SsFGgOqqZXYqTXKpFxt4n - 3dIWkZXCoPRXh2xMiJska6/0oMmLvGmtNhTZpiVfKtx7TF0dtliXIpnU4YYHsFWiqUkDFK5UJsGf - LNm8+y6CiczZrGbuEMgNeY+SCpWF/kk+qkL3ePuTA3hjM7Y4I3QqAnTFnCX93xHpBy4LWKUCi9Cz - j1NpM4NSSfb0OavUwrOb/CJ3VF0W6opGIP4IIWd+ziwbSpP5xef8wpwLB2BtNulWSfzKHsvN70BQ - VNsyJ4V102ZbnwR9AiCT9HfC4D8VAJmyfWFwMgHCOgwKhpswuM6/EIhjeq8YAJm61w2DLwmAMjs6 - JihrwmDNK9WtM86S8Bz5GAUlYots1vYoI7srnQoeBQp/TifSFROrHEn0JGcbR8QM/gTzYzkxHKMO - JSkeOe2oRdnMxWW6rx1MupUKeexsv7p2JKIaYJqJiIxw5GDUKCscIoXO9WRViY1mdqxOFRpKckom - RZZc8OrglkYIQw/SgPChDs4yJ7n4LB6LHMKs04WcX4ujEEPN0njtZsJen30CQrAv9aiY91BSEwrJ - lxQ4w1scKVY+2K5jA6MWgUSglyHEYkFK1TRBhGSjpu8UJkXAhcOzjfFczReTYXiuOAdKYL965EUd - z5y17lIda2NtwXZ33LPa7XtW6GDrlrWpHXWP5iPiHR7PebXxtrjzSc3t8dxXG4/46zOi97IR+zzc - c2D5UKxmtpcQmz367id5vFda0izyx479V6xR0pO84o/3If47T5tsP3SRPiywXt33SSlFtXfUsXtS - 9NjrgeCe+6TK5vMovR5j2RgzPLi8n+V7VvZn+WMGmcz0ah7r8eIB+7Z5i/r1jafujRXn0uraZeM1 - /mfuaW1vWwU9NvWTuyJcqN3FttkRErLdz5IFvRIXZlW3/freXkgmvIVwj1PFC+zG6ESgYrvzNbU9 - nH61iGdJqOVZ+qSVURHHmRZmM+14w7WIpi8U9gNr9e3HK9o7Iw0JfZ7n234myTyMbdNbWx4rjfj5 - dG+9+nCQjoObOX0H3RcI21bpr0Xu58TDgzGxzWU7vrdjvL0W4/8P7L3cUYJtR2m/CfqSt212vObD - tEOeGPEVObCd/wgHLw8Pbn9061vQfd9Sol8trdcVvmn+K8IXu6IcAl+PeN+xBe0v1ptj99DboUhj - NZHGOhhG3Mlmqj0Ql6xN6IO0bj+W2fUEqteDb3qUtI8Q7T6+1OcJou3pVh+n2ky6e+a8fTju66HW - fg+1+ghka7K332jGzzIa8yA0c3Jwfkg/evrmLsU9gTbHU+9x1tN7+0wVicPu6SKdTkfrn2c4RRhI - ltV5AzbDs0YL3JMY0PXbFQo3CQwNBnY8vP7+uyu+YbnJodXZ8ES7e8j4udzjVsyg24d3ROrxxl3u - +sUqLBow7Ww3tgZUKvasoRExLKzit2lMV8dDBhhuvzLD1QbeJL6o8OryLZ5gPB4ks8GJNuCm5j68 - GY3ePb6BY33z83c3kmuMPBjsgCQcioh16u7jStZePn07Ox5s2OegTaV2/JhkuPMysnCV3NMdl5Fn - REMtjV1cFRHGFB+FKPFVCAxeGrg1Eo2PefEe7ryAynHTF43w/OZoiaRRju48A9/HUE+HHhQWrCRP - U7g+ySzLB1/07Sjq+Ik86mr27yk8j/rQBL1/Nzb+ff0alV0nq5erC78aixEul0gTV/Q85DHDb4P/ - qcVpuSsobViPIRab4HHkfiBhh8cPvtgTLt4oH6/d+nQkvw2DIn0CRfk9x2X5YvyArwayUQBgualp - bb9800Dv6wHggXxzf7DzVafB+ekI/Q6joqR5AJX6Gs02RnXNZcaHy+2BMCfpEgBnxIG6bL0EtE8U - G2/5DM5/yx8KWrjRklJDz9nTZ4cE0MwZ1l9EEZi0KMw0eoxae6rRomIea5covlMhQHsrF3BObwtt - dL5jUvlEK1EZvfOQ3WuYzMtPzECsYTrPy2qKT36MR+EyGS3isqQIYvQne+daEhQfKlD5WOpAmxfx - 3dlAhbLwfYgb7xG40utopr/zdIWvwUVUtH8VbhHpE0i/36YhsJ9fy34koEYko/CgCdasDM5/TfAY - pPZi0hGA9XmOaNIi7uLjQxHv5EPo8qe4oK8yEbWknyK+p6xc1HoX83iEDC2p0F7ruR35kvyhpK9D - QdtpaWg/z2PqPiy1epr7y4839CUfejkvfUJ6zt+XbUxp8j6GHJNyekh4Cu/gXAnnNDknsn/HuOXv - ZF34IBU4S843DGynF+/1T20zYNMHUrZi+IamVXkbWWutR3l3B+BurKcjGW2pKD/d9RdQSwECPwAK - AAAAAAAOuXtPmasY7B4AAAAeAAAACwAkAAAAAAAAACAAAAAAAAAALmRlcGxveW1lbnQKACAAAAAA - AAEAGABOR+OSd6XVAU5H45J3pdUBTkfjknel1QFQSwECPwAKAAAAAAAOuXtPB92O2isAAAArAAAA - CgAkAAAAAAAAACAAAABHAAAALmdpdGlnbm9yZQoAIAAAAAAAAQAYAOuo5ZJ3pdUB66jlknel1QHr - qOWSd6XVAVBLAQI/ABQAAAAIAA65e0+8qlf6NQIAAE8FAAAaACQAAAAAAAAAIAAAAJoAAABBZGFw - dGVyV2l0aEVycm9ySGFuZGxlci5jcwoAIAAAAAAAAQAYAOuo5ZJ3pdUB66jlknel1QHrqOWSd6XV - AVBLAQI/ABQAAAAAAA65e08AAAAAAAAAAAAAAAAFACQAAAAAAAAAEAAAAAcDAABCb3RzLwoAIAAA - AAAAAQAYAOuo5ZJ3pdUB66jlknel1QHrqOWSd6XVAVBLAQI/ABQAAAAIAA65e0/YPhbw3QEAAP8E - AAAPACQAAAAAAAAAIAAAACoDAABCb3RzL0VjaG9Cb3QuY3MKACAAAAAAAAEAGAByC+iSd6XVAXIL - 6JJ3pdUBcgvoknel1QFQSwECPwAUAAAACAAOuXtPvQ5/jqkAAAAFAQAACQAkAAAAAAAAACAAAAA0 - BQAAYnVpbGQuY21kCgAgAAAAAAABABgA0zEmk3el1QHTMSaTd6XVAdMxJpN3pdUBUEsBAj8AFAAA - AAAADrl7TwAAAAAAAAAAAAAAAAwAJAAAAAAAAAAQAAAABAYAAENvbnRyb2xsZXJzLwoAIAAAAAAA - AQAYAHIL6JJ3pdUBcgvoknel1QFyC+iSd6XVAVBLAQI/ABQAAAAIAA65e0+e+MEGQgIAAO8EAAAc - ACQAAAAAAAAAIAAAAC4GAABDb250cm9sbGVycy9Cb3RDb250cm9sbGVyLmNzCgAgAAAAAAABABgA - nW3qknel1QFyC+iSd6XVAXIL6JJ3pdUBUEsBAj8AFAAAAAgADrl7T/l0cgpfBAAAhgsAAAoAJAAA - AAAAAAAgAAAAqggAAGRlcGxveS5jbWQKACAAAAAAAAEAGADTMSaTd6XVAdMxJpN3pdUB0zEmk3el - 1QFQSwECPwAUAAAACAAOuXtP4LGfRU8AAAB1AAAAFQAkAAAAAAAAACAAAAAxDQAARGlyZWN0b3J5 - LkJ1aWxkLnByb3BzCgAgAAAAAAABABgAnW3qknel1QGdbeqSd6XVAZ1t6pJ3pdUBUEsBAj8AFAAA - AAgADrl7T8Ra8yNUAQAAHAMAAA4AJAAAAAAAAAAgAAAAsw0AAEVjaG9Cb3QuY3Nwcm9qCgAgAAAA - AAABABgAH9Dsknel1QGdbeqSd6XVAZ1t6pJ3pdUBUEsBAj8AFAAAAAgADrl7T00vPwzEjQAAOLED - ABEAJAAAAAAAAAAgAAAAMw8AAEVjaG9Cb3QuZGVwcy5qc29uCgAgAAAAAAABABgAeDLvknel1QEf - 0OySd6XVAR/Q7JJ3pdUBUEsBAj8AFAAAAAgADrl7T5tH0O+VAAAA4AAAABoAJAAAAAAAAAAgAAAA - Jp0AAEVjaG9Cb3QucnVudGltZWNvbmZpZy5qc29uCgAgAAAAAAABABgAnJTxknel1QF4Mu+Sd6XV - AXgy75J3pdUBUEsBAj8AFAAAAAgADrl7T+kTJ7OnAQAAVAQAAAsAJAAAAAAAAAAgAAAA850AAEVj - aG9Cb3Quc2xuCgAgAAAAAAABABgAnJTxknel1QGclPGSd6XVAZyU8ZJ3pdUBUEsBAj8AFAAAAAAA - Drl7TwAAAAAAAAAAAAAAABIAJAAAAAAAAAAQAAAAw58AAFBvc3REZXBsb3lTY3JpcHRzLwoAIAAA - AAAAAQAYAH0fE5N3pdUBfR8Tk3el1QGclPGSd6XVAVBLAQI/ABQAAAAIABC5e09p0JGkSwEAAFYC - AAAxACQAAAAAAAAAIAAAAPOfAABQb3N0RGVwbG95U2NyaXB0cy9jbGk0NHdjeXNzeWlhemMuUHVi - bGlzaFNldHRpbmdzCgAgAAAAAAABABgAONZdlXel1QEr/yaVd6XVASv/JpV3pdUBUEsBAj8AFAAA - AAgADrl7T+DPebiRAAAA3AAAAC0AJAAAAAAAAAAgAAAAjaEAAFBvc3REZXBsb3lTY3JpcHRzL2dp - dGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZQoAIAAAAAAAAQAYAH9a9pJ3pdUBKvfzknel1QEq9/OS - d6XVAVBLAQI/ABQAAAAIAA65e09a0xds3AAAAA4CAAAoACQAAAAAAAAAIAAAAGmiAABQb3N0RGVw - bG95U2NyaXB0cy9JbmNsdWRlU291cmNlcy50YXJnZXRzCgAgAAAAAAABABgAKvfzknel1QEq9/OS - d6XVASr385J3pdUBUEsBAj8AFAAAAAgADrl7T6jzyVaUAgAAdQcAACIAJAAAAAAAAAAgAAAAi6MA - AFBvc3REZXBsb3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanMKACAAAAAAAAEAGAB/WvaSd6XVAX9a - 9pJ3pdUBf1r2knel1QFQSwECPwAUAAAACAAOuXtPNCH6uBsDAABSCAAAIAAkAAAAAAAAACAAAABf - pgAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWQKACAAAAAAAAEAGACKvfiSd6XVAYq9 - +JJ3pdUBir34knel1QFQSwECPwAUAAAACAAOuXtP72tPdXYAAAB7AAAAJgAkAAAAAAAAACAAAAC4 - qQAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaC5jbWQudGVtcGxhdGUKACAAAAAAAAEAGACKvfiS - d6XVAYq9+JJ3pdUBir34knel1QFQSwECPwAUAAAACAAOuXtPNiuxcHICAABEBQAALQAkAAAAAAAA - ACAAAAByqgAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlCgAg - AAAAAAABABgAPx77knel1QE/HvuSd6XVAT8e+5J3pdUBUEsBAj8AFAAAAAgADrl7T8oi4NEkAQAA - MgIAAC4AJAAAAAAAAAAgAAAAL60AAFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hTZXR0aW5ncy54 - bWwudGVtcGxhdGUKACAAAAAAAAEAGAB0gf2Sd6XVAT8e+5J3pdUBPx77knel1QFQSwECPwAUAAAA - CAAOuXtPE9l4S9IAAAB3AQAAHQAkAAAAAAAAACAAAACfrgAAUG9zdERlcGxveVNjcmlwdHMvcnVu - R3VscC5jbWQKACAAAAAAAAEAGACLWA6Td6XVAYtYDpN3pdUBi1gOk3el1QFQSwECPwAUAAAACAAO - uXtPoegHQ4YCAABDBgAAKwAkAAAAAAAAACAAAACsrwAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBH - aXRodWJSZW1vdGVSZXBvLmNtZAoAIAAAAAAAAQAYAJC7EJN3pdUBkLsQk3el1QGQuxCTd6XVAVBL - AQI/ABQAAAAIAA65e0/nyEkF/wIAADIHAAAoACQAAAAAAAAAIAAAAHuyAABQb3N0RGVwbG95U2Ny - aXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21kCgAgAAAAAAABABgAfR8Tk3el1QGQuxCTd6XVAZC7 - EJN3pdUBUEsBAj8AFAAAAAgADrl7TwAF6ua/AAAAHAEAACoAJAAAAAAAAAAgAAAAwLUAAFBvc3RE - ZXBsb3lTY3JpcHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZQoAIAAAAAAAAQAYAFmBFZN3pdUB - fR8Tk3el1QF9HxOTd6XVAVBLAQI/ABQAAAAIAA65e0+/cE+UDQEAACMCAAAKACQAAAAAAAAAIAAA - AMe2AABQcm9ncmFtLmNzCgAgAAAAAAABABgAdQsfk3el1QF1Cx+Td6XVAXULH5N3pdUBUEsBAj8A - FAAAAAAADrl7TwAAAAAAAAAAAAAAAAsAJAAAAAAAAAAQAAAA/LcAAFByb3BlcnRpZXMvCgAgAAAA - AAABABgArcT8k3el1QGtxPyTd6XVAXULH5N3pdUBUEsBAj8AFAAAAAgADrl7T/QDssXvAAAAxgEA - AB4AJAAAAAAAAAAgAAAAJbgAAFByb3BlcnRpZXMvbGF1bmNoU2V0dGluZ3MuanNvbgoAIAAAAAAA - AQAYAFdtIZN3pdUBV20hk3el1QFXbSGTd6XVAVBLAQI/ABQAAAAAAA+5e08AAAAAAAAAAAAAAAAb - ACQAAAAAAAAAEAAAAFC5AABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy8KACAAAAAAAAEAGAAM - UAaUd6XVAQxQBpR3pdUBrcT8k3el1QFQSwECPwAUAAAACAAPuXtPfb0nb2YCAAAsBQAAPAAkAAAA - AAAAACAAAACJuQAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvY2xpNDR3Y3lzc3lpYXpjLVdl - Yi1EZXBsb3kucHVieG1sCgAgAAAAAAABABgAw65GlHel1QEMUAaUd6XVAQxQBpR3pdUBUEsBAj8A - FAAAAAgAD7l7T3+n1uihAAAAtgAAAAsAJAAAAAAAAAAgAAAASbwAAHB1Ymxpc2guY21kCgAgAAAA - AAABABgArzb3lHel1QEnJ8WUd6XVAScnxZR3pdUBUEsBAj8AFAAAAAgADrl7T24/rhdMBAAA+woA - AAkAJAAAAAAAAAAgAAAAE70AAFJFQURNRS5tZAoAIAAAAAAAAQAYAFdtIZN3pdUBV20hk3el1QFX - bSGTd6XVAVBLAQI/ABQAAAAIAA65e0/I6E8OqwIAAIsHAAAKACQAAAAAAAAAIAAAAIbBAABTdGFy - dHVwLmNzCgAgAAAAAAABABgAec8jk3el1QF5zyOTd6XVAXnPI5N3pdUBUEsBAj8AFAAAAAgADrl7 - T1KsV9Q9AQAA7gEAAAoAJAAAAAAAAAAgAAAAWcQAAHdlYi5jb25maWcKACAAAAAAAAEAGAARlCiT - d6XVAdMxJpN3pdUB0zEmk3el1QFQSwECPwAUAAAAAAAOuXtPAAAAAAAAAAAAAAAACAAkAAAAAAAA - ABAAAAC+xQAAd3d3cm9vdC8KACAAAAAAAAEAGAARlCiTd6XVARGUKJN3pdUBEZQok3el1QFQSwEC - PwAUAAAACAAOuXtP1Jc3CnkTAADLTQAAEwAkAAAAAAAAACAAAADkxQAAd3d3cm9vdC9kZWZhdWx0 - Lmh0bQoAIAAAAAAAAQAYAGH1KpN3pdUBEZQok3el1QERlCiTd6XVAVBLAQI/ABQAAAAIAA65e08I - Si14IRMAAMxLAAAUACQAAAAAAAAAIAAAAI7ZAAB3d3dyb290L2RlZmF1bHQuaHRtbAoAIAAAAAAA - AQAYAN9YLZN3pdUBYfUqk3el1QFh9SqTd6XVAVBLBQYAAAAAJwAnACsQAADh7AAAAAA= - headers: - cache-control: - - no-cache - content-length: - - '64802' - content-type: - - application/x-zip-compressed - date: - - Wed, 27 Nov 2019 23:08:39 GMT - etag: - - '"8bb780b88e73d708"' - expires: - - '-1' - last-modified: - - Wed, 27 Nov 2019 23:08:31 GMT - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - bot download - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"1d232ff7-a60d-4c27-90ef-aab6ffd94b39","MicrosoftAppPassword":"56aaf25e-5b5c-4d57-9a5b-64515058607d"}}' - headers: - cache-control: - - no-cache - content-length: - - '416' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 23:08:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - bot download - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 - response: - body: - string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central - US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 23:08:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - bot publish - Connection: - - keep-alive - ParameterSetName: - - -g -n --code-dir - User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5300a158-0000-0100-0000-5ddf01bb0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"1d232ff7-a60d-4c27-90ef-aab6ffd94b39","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1016' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 23:08:41 GMT - etag: - - '"5300a158-0000-0100-0000-5ddf01bb0000"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - 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: - - bot publish - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --code-dir - User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"yreNZuTDK3aRh6Fnfk0se5SAbX5k0xuefwCP9nfd2L26o0fDw7FTqfkm28fC","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:yreNZuTDK3aRh6Fnfk0se5SAbX5k0xuefwCP9nfd2L26o0fDw7FTqfkm28fC@cli000002.scm.azurewebsites.net"}}' - headers: - cache-control: - - no-cache - content-length: - - '665' - content-type: - - application/json - date: - - Wed, 27 Nov 2019 23:08:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - bot publish - Connection: - - keep-alive - ParameterSetName: - - -g -n --code-dir - User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:06:13.9966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"DFDF19689FA182EA5103AA53CAF6851D3CA6E85E21D81D1905B27FF72A3E2FEA","kind":"app","inboundIpAddress":"40.113.236.45","possibleInboundIpAddresses":"40.113.236.45","outboundIpAddresses":"40.113.236.45,104.43.246.4,104.43.241.185,104.43.251.139,40.113.223.211","possibleOutboundIpAddresses":"40.113.236.45,104.43.246.4,104.43.241.185,104.43.251.139,40.113.223.211,40.113.219.59,40.113.216.205,40.113.217.83","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + R2p3uomYN1+ZLqsJrDq4zjg611zKHB1D5F+/wm+ffeFFfpNtep1ff739+O13UEsDBBQAAAAIADBz + JlCbR9DvlQAAAOAAAAAaAAAARWNob0JvdC5ydW50aW1lY29uZmlnLmpzb25Vjc0KAjEMhO+C71B6 + loIevS178OQP7BMsJZUibUKaVUT23U3X7cFLQmYy33y2G2MsT1ligitJxFzs0SyyGhKSXjaDeGQY + iQ5ub3erGXhM8EJ+tMCiZhVr5hw9Y8Egrit0AekV4DoijbfXJ3DRwvqtXCX/nLkVeMwh3m+MBCwR + yl/P8C4CyZ16NwArSU3hCVaErjrmL1BLAwQUAAAACAAwcyZQ6RMns6cBAABUBAAACwAAAEVjaG9C + b3Quc2xurZJBb5swFMfPReI7IHbppNqyAzZw2MGA3R22KVq03UlwMk8OjsBMq9J89xolpE2bVlXb + 23v/9/d7P97D976rRWs6s7TBb9X1lQ5mtq+VCWZG91aZJhBKy6tAmHZdOY9su0HEE4iQ73169AgT + 39sre2G0f3EViOAkjVACMU2HsY1a9+tnzMiZYzTBGcS+N23NX7mwl+E2YzjDKBIAU5GAmNIU5JzE + wOk8YbFICKG78LPrEPLFH5MbG14dQ7joNq7ToGwZJTlxvQBKBQVxwkrAEM8AyYoJK0kel1G6C32P + N/Vhuu9dazOvtO9d7IOZEx3t5binwjRLterbakimurJLt7FuYNm0cjS51xelnPerW9bcBMX0lyuf + 5IPhp9Sy6uQDy6jcmxzYCcYTrAP2C1Smsw+xXrcTeEILmRv2TxbL1ePveHPHvFe6hugd/e6X9ZTx + UPuArgfOtx1n3Ls70ka2Vslz/8lXVR/zH6aWziHYtxl/zQD+38qmU3Ollb3Zl84efYyve1W78pbj + SDCa5YClUQliLAqQU+ZSTKKcxywVSbo7C3BUfO8OUEsDBBQAAAAAADBzJlAAAAAAAAAAAAAAAAAS + AAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAIADJzJlCziRBLSgEAAFYCAAAxAAAAUG9zdERl + cGxveVNjcmlwdHMvY2xpMzdxbnF2dzUzcHQyLlB1Ymxpc2hTZXR0aW5nc31SXU/CMBR951csi68y + ZTMoYSTCwMQwAjSG52290krXlrbbMn69+wIjGPvSj3PP6bm5ZyyzmFFNgshEk55lne9rJT4pA0u2 + +ypKwbcTRt3hkR/z4smVZnC/g/g+AMlEaVs9q1odOQRDBPbtEP2Ffih2I9XXSdqPTpmCAmJNDeg+ + BzPyPLfjpho3UqjCbti2lWlQrce7K6zlNwXrXeDbUCYuecGIsGeSsBN9G85WC28r8gHyULSVYYrJ + /H2+nT4y9UDp0ZtuqBiEhxUSX50WBm0ojwwV/FXKph1ijBw5ztXftx11CmizRKByUMF0JjiHpNZC + RlG+9+1zx2VV9Q9ORO1iXw0qpxjUQqgsXVJ+uBQkghsl2DriwGrg4rKgHItCt+76iUg7QmUUldpA + 6tu76lh7ticNMsZVPOJIg7acJiXO75hMevXLT5C+AVBLAwQUAAAACAAwcyZQ4M95uJEAAADcAAAA + LQAAAFBvc3REZXBsb3lTY3JpcHRzL2dpdGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZW2MMQ+CMBBG + dxP+w6WzkZ0NDIODLpg4klpOOBXa9K6YSPjvKulgouv73vumZAWgBt2jykBNp7Koq92xrA/5vpzV + elkbZOPJCdnhjwT5M3iEwgpU6EcyCFvbYGw726PT7fLeiTjO0rQl6cJ5Y2wfJedp1PJxLvrOGEvN + NTEH5DcXH76w8/aKRn6HB90owmQ1vwBQSwMEFAAAAAgAMHMmUFrTF2zcAAAADgIAACgAAABQb3N0 + RGVwbG95U2NyaXB0cy9JbmNsdWRlU291cmNlcy50YXJnZXRztZJPa8MwDMXvg30Hk2MOUdluIy2M + FUYvW9mfWy+Jo1EXOxKW3C3fft6W0sB6bG+W9Xg/PaR6HWmHVs1X8L3Mi60q3wGI3WJopArORhL6 + 0MpSgA736IkxQpA2Od/BzWx2Wyyur4ypV4rhMVLi3zJ/PFBg59G8c9cozouy3JSVlT/5qODhjZ6T + ctKli3kMisPi3n82g9Rwsnswh9H9UD9Rj2bVW5+6I4pztsKch5cBU9gx1ppEl8iehlcbHatkdHkx + 6gsG2mdq6/rNNCWcVFG7+6f6sZ3uqobxBPL7G1BLAwQUAAAACAAwcyZQqPPJVpQCAAB1BwAAIgAA + AFBvc3REZXBsb3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanOdVV1v0zAUfZ+0/2DtpY4I3rontBIk + EAVtD22lVOKhjVCXOMMlc0rsdK2q/Heu7ThxEhUGfpgW33PPPffDt3HOhUSpQAEq6K+SFRSPUjHy + JpcXxrTbyB+uUX075s1uF1IpGX9aGKCyk4KKPNsDmlwDQBiAIFuRc8eX8v0ZJwImDbTQmsLI3CRh + /fmFZRR3JfiWthNHxSjymAqhqMHi2GabZ6qI549bGkvykx4Fhmvv8gLBISnLJC1wWvJYspzjg3cC + DbIsODoQxhN6mKf46uNiEU6Xy/vZ1+9XHgqCAN1Mqv+m+Db9FN4vp4rqPRChqlvwphiNfCheUsa0 + DRGXhY8gFQ81oU6EEH29gnsiykchC6DB47EX3SkmdR9Vk8pHp8otPqcvbUhNY9vhI/hwFFXaq9wl + G0lf0yPf5TYhbQa6z59zOeV7nAIFJGKqaTRJepAgJhVE4VSM8MhjjfTRqJTp23d6gFqPjHHVZu1J + xC5jEl+v1sWaR9cW2J815XOmtspUa6qPfS6FtJ51lFFglNSHpQhrFMkof4Lx/xCg24apy8aht0Cm + 4ZoNZNz4aGz42gOKVgobNeBtzng/ctX8W4+E8qvtTtNbe1MKuK/c5rz+Eaq8bNbQLHpgQgrVqp6H + 1yCd8A/hfEYgH0Gx2+ihd9tylUKd67nAVtowojt0FtYnbF5TNSgKE7M8oQ/hosjVJsEmQOvSldHf + eYwJDu7k+JxBGgPyf3lUtm2d6g/UDadXLYz+JrRctg6DB6Wc/rh/jF+v0CtYHBaD3iCYVPhrY+lF + FLmTC0srchSoUr4UTNJmHmzuWpUd/zX82sBcUx7nCfDe2SmpmqYimgnaShwS94tsZtJsTpYecbsJ + eZllPrr9S0Dd1t9QSwMEFAAAAAgAMHMmUDQh+rgbAwAAUggAACAAAABQb3N0RGVwbG95U2NyaXB0 + cy9wcmVwYXJlU3JjLmNtZKVVXWvbMBR9N/g/XAymW5ntdS+DgEdbmq6BtjF1ur4EgmPLiVvLEpJC + 2n30t+/KjuK4+VhhJCTS1dXROUfS1SlJ5wxYntuWJKpkaVLaVtwfAU+kXDKRhe5JEyDPnAkVE6WK + aiZD90sTFoSz24SSUIr0Dttt9F6UYV6UpBcEgXs1vOlf3A1+9Huvnz+duE0gOhtd9V6xJwtFAtdA + uQ1GxpZVyZIsnDLlIbpt2VbN1l2huzoiCIU0A8WAC/ZIUgWCMWVbfCHnGfj+eLlc6ojJLapCwazA + PkotdQtDnW7KqryYwUIS4VdIBxwkkAtsoR9Pzp5MQpOiBGehivJ0M99PGd2ck2TIqoNBKf55FByO + uhJBUMtaO0i2ECnZBEARTJEap7G8YwhnPOtIXXCpBEmocaQ23h1rx22LPmWFMDC4xhqy446m502R + WRde4yHXdoVtz1sUPYQoeMY8k7+mTxOpiOiCpyWriMnYwb2FblJbD8A15rkNVEZKgob5zaZnG+Mr + EEHBE+DldUqXhtmSnAmUMC0LOd9BZtxCGk8jwTgRqiByHDXzMKJvg1zNP5ihXjjRPuI3YlJdEF6y + lzgVBVdyzDvZ/jMtfUUoLxMU+RskycBD54Lxr4f++SQejPqT27Ob/vhP4GJA99ugG8zgG+yIew9k + 6jXL+rgertH6gnsI8fD6fjQY3tbZoW1pf4IcHPS6oDJ0wHUTPDnw4UibEUzh2JdldfQRDzacbgNg + NiI3svcK9lOa7VFq0NZKTcCo7KZH9+fXg/hqEt0NLwfXesK7LNiCOYvjh+HdhZ5vymXj6Abjf6ky + BfW/9/Gd1LaJ7IDzoy4522q2vy3B3degrsQF7v/buANhCI4DM4aF4mfBD1+eFfhRAwIJ5yBXSEer + u9o7i6IJvg6jwe332JDSnx6ir+9sXUXnRK8I+pLY1voBwlW/Yhh/Ekj28PAxYc/Q+LitUCSpFrwu + QVIt8ny7/h2sL9tOvEk/UKjap3JjX6qsfr51u7a71x9e6k7HMmNxtqD8rcEVy8gmHyNjRw2iRMzI + +ug+SoR9Rh+CqW39BVBLAwQUAAAACAAwcyZQ72tPdXYAAAB7AAAAJgAAAFBvc3REZXBsb3lTY3Jp + cHRzL3B1Ymxpc2guY21kLnRlbXBsYXRlJYvdCoIwFIDvB3uHvUAvEHihWDRY7uCSLiXxVIPl5JyN + CPHdS7r9fqb8wKQIOUVCKV48ZB9GtThruou2Td+U58OqdvO+xjnEj52qLSgSZdwo5CF4fgLFuw9Y + LNBVRrtTD609avM/4cb8jjT+bOnc1bb1KoUUX1BLAwQUAAAACAAwcyZQNiuxcHICAABEBQAALQAA + AFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hQcm9maWxlLnhtbC50ZW1wbGF0ZX1UXU/bMBR9r9T/ + 4FV7bVIYDwilQYWWqVLLItJS7alykpvGw7EjfwTCtP8+u4lBpGwviXzPPefee/wRXL+UFNUgJOFs + OjrzJiMELOUZYYfpSKt8fDm6DoeD4Mt4PBxsCiJRTigg89cSMpQ0SBWAKp1QIgu/wukTPpi14ClI + iXiOGq4F2kFiY78gVR76yTVKMUOploqX5BWOEgkUuCZcWI4ydZzGcGBqQEaU6agF1vGNJjQ7NuKh + JUNcZCCQ4ogCFgyVXADCCdeqEzJhCagmkihUKFXJK98/cK8kqeCS58pLeennz5SwJ/96Zb7L+fR8 + cnl2fuah4WA8tvNHbfdowzmVj86vC+uXcZDJ6cgqG2GZFlBi2VPPoAbKKxB+KRPbvX8+mXwbGWWE + jLZFVPNdcF0dQyZoLItaV9egCp6F63gOFeVN4PchR+mCRq4mxpFw9qoFmOSYKAj8HupIKyzV1mzl + 0dNbznJy0AIrM174ANY5Q/13Tl8loljlXJThjDXoNto67jviGLapraAbvsKapcUsVyC6FsPOyt+7 + xc0+Xm4W+/vZevHHw3aeZ0ikoUqPgQr8/6i4Qi1iEz+gG6GPk72Dp9TFS0p1BrOq2s+xwuEdptaO + Xthluw2KQdQkhe3DKuxPINPydIqri4tvgX/KdrptfEmkKRhhVfRVA7+f4ZgPUHIFdrqoaCRJMbUo + 8t/24IlUixcl8J25SvIHs7VBdNZ8DvaH/XgQd+v48fZ9lk9P6YLhhIJLuTEvhq66kp9BjmbOkLjH + JYRfT8Z3kEvdx7iGaDfvVN3yDZ6DNK/J8fxumgp696QPt3fU719SE2mfhPAvUEsDBBQAAAAIADBz + JlDKIuDRJAEAADICAAAuAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFNldHRpbmdzLnhtbC50 + ZW1wbGF0ZX2SX2uDMBTF3wf7DhL2Wn1Yn0ottNPBoHZu2fCxRL2rYeYPSay4se++qNWyOpqXhHvu + OfyS3KWs0pLqIiCGrG5vHGcoxEp80BIc2e87wsBH30m42eOnt3C/W0fhzyyBdBaALEWDHGu26+SO + wBQi91GE/5XfVTkJc3XGXPJVKagh1dSAdjmYxXx+P5iZzrswbMWJHTmVBtVj3l1op4CuI04C643X + GCfPr8Eo5aAN5cRQwddSdnyFMXLheRdZU8QhAr9sMagjqGDzIDiHrA3DRlF+8NF4h8a2XWsoRAty + sM9/pDmoR6EqtqX889yRCW6UKGPCoWyVkbSmPBe17gndTLDBYWlxow0wHyX22IKjVS8tc/vxKdGg + Ha//f+/vANhiWzoPyS9QSwMEFAAAAAgAMHMmUBPZeEvSAAAAdwEAAB0AAABQb3N0RGVwbG95U2Ny + aXB0cy9ydW5HdWxwLmNtZH2QTYvCMBCG74H8hznuHrbL/gBlRXsQ/MKPgyCUmkw1mnRCEqn+e5ta + qAc1Ocww88w7L/OP4khARcGZx6BJ5JqzJodRupjMt9N0ts5W881ymPYe9fEsW0wGwzTrgN5fHFIF + 4FX5AEmyq6rKEYWdRKvplggj4YszAHvxR/kExFq9U0MHNhjZOn5HVYcGzkqca5OwvygtYyK8dXSK + 7ca/Q0FOthoGywBBGfQhN5YzmQeE3wD9ftzbMYmmA2c1+Lbbqv+8fJ8mRp0RSSU2PkvZXjf+O1BL + AwQUAAAACAAwcyZQoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwR2l0aHVi + UmVtb3RlUmVwby5jbWS1VcFu2zAMvQfIPxAGhKwH29h2C5Ah6RZgPbQNmqwb0BSDKtONW9nUJBlB + 0fXfJ1lx7KDNbs1Bliny8fGJjKcoNgSU58OBQStJcDkcaCwhfrdfwHfZanVt6ApLsniFiuBGN/sf + BvUt3CjUhiouZ0KgMSt6xMpbNT1c8BKfSdnCH7/cBjyhkVsEXmWgSNXSv1wvL+G+sKA9ek4a7AZh + droEQRlCURnLK4EhPqwdgzHUbgUuBNWVhcrldDI1CC0zd+ipgfXcQvwbpMfHY3yKzG13Rs91U9/B + 1Xy5gtniDD5o/FMXGk1TgQEjSOFJyNQK4dH77JoDFNbBtpp8yDDntWxMP+eny7PV/HezXMzO5yfv + f93uqlthtZxsrFVmnKZcFUkoOBFUBq9O/gn72DctttmEfWos+8on7PNwUOQwYq2FjSaT0QgOnV5V + zFpgRX0+rEvOxmyflk07kgc+aZfW19HI6C8URK3lXv32Pty5qs0mgyRZb7dbTeQs9kkhLMjYb6gk + PS2FLpQ165BwEeKSB9c3icVSNS39F3zLxAgmXT+70rqy1i89Ruk9fAG2mp8v2Btww4EbcxmIxt8h + +kqVxcrGK8dnDFwpWQjuxyv13hHENRxTB+IMoumbmXaxv2Bx6fp5j6AlS/1opU1P78au/B9ZN8/Z + cBCeu2H3U7Pv9CDma3mDb1EV1k9WKNrvnOngVVCVF/fNvCfNJEX9aqMjnoobsyXtyu/kOOqMJS8k + RLUt5PSObK5dGhf86LuqH8MzV8IBRlm6R1xCpJxeXKMrPPx3gqFaC/RprCbZR/FSANs1OIOSG4u6 + 03GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIADBzJlDnyEkF/wIAADIH + AAAoAAAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNtZLVVWY/TMBB+r9T/ + MKpkLUgk5ZRQpcJyVIIHoNqWQ2LRyjiTrsHJWLazFeL47YztdNOl7AMPVFViz3g+z3xz5BjVOQHV + 9XjkMRhS0oxHDhso/tsv4/NtnX3n6QQbCniCluDjxW77Ka3fenSvZdPvlug8tdI8UQq9X9NXbFlh + HX2JZ76TDTqqf37K+MqhDAiyrcCS7UzcvFu9gY0O4OJtNTkI5whPnq5AUYWgWx9kqzDb52f0KDo0 + g84ZpoktMozXjHcDy00J5yFYP5tO5RY9NfiZQnmhfSeND12lqVTUwM0ejnwfVETkFUilqGsDtCza + 4ds+UlbGUCHEWDPA33mYXW8Wb6l42QuT7yeL1Rqk1Rlyx2DE2HcjKVAFNt6ReaPCWnYmid4vnq5e + rhdn6fH6yavFzf9fNx5j7mI+3jozF3f2JZHXubi7L1puq7m4lySXUc7F/fFI13AkdhJxNJ8fHcHV + QwfRiQxz4YM/IQpzcelH0uSail7tqkEMbomZuHRIHA+Ws18PxfSMC3I6ODNc8yxxvsxJ+GfYPlOK + jGFz7ozpGWfcT/uk+se8Ky64Ylg1v1feHo9S+mK5gIq1PmS9NxmPbOfPKyjL0+1264hYEr5ZhCX5 + 8BytoW8r5bQN/jRWaTYqv3BJlgEbmxrwB8RqLBD89PQ7czzwe/pzj4TpBh6BWC9eLcWfWOMRTyiT + XSxewOQZtQHbUKzZkxkXtTVayRRvPD0BKCqYHB9iZW3xAZZvuBlAHDAumI/mGif6CWYQbRojdx5w + XIrayu+mSuQuuZF4JA4fA95ijfbAfwlbbSrYdNySOaKMxkhMM9lqPMrvfpbFDr7sx0z9YTLyWd3q + EIdcho0rFl3ZsqO13qTxU6Z+n+wX1eSak1Z6vyXHbA5Vd+1hbKQ2MOmCNsc8D2vH17Dx1zgL921k + xSFcwWgafhUNTCw3lHTIgedPBXjqnMJ4TXBk9lEiFSD6BhTQSB/QDTz2HBqULcNEAx7MdX1IYQ/J + aS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIADBzJlAABermvwAAABwBAAAqAAAAUG9zdERlcGxveVNj + cmlwdHMvdnNvUHJvamVjdC5qc29uLnRlbXBsYXRlbY7NCoMwEITvhb5DyLlCf2Kb9qYixUN7UehR + YlwhoCYkUWjFd6+/h0Ivu7Az88122w1CuGYV4BvC3Sv00zhKwvTpPcIe7yY1B8O1UFbI+o8JeZ9G + A/KlRTHoVnBAgcxhyXKmWCZKYQWYITzVDecWtBlwXNZWy3IVJsnIRnMIZiV5q+mxu7B4dvS7BaG0 + 5GBMApUqmYUfhl2OYzzKR8A5uxzJdU8dKA7EIS4vHEoK6lzONHNPlOSMuGvDsMbRfwFQSwMEFAAA + AAgAMHMmUL9wT5QNAQAAIwIAAAoAAABQcm9ncmFtLmNzfY/BasMwDIbvgbyDjsnFfYBuhbY7rLCO + sW7sMHZwEzU1uLaR5MIYe/d5adK0ZaswGEvf/+v3aARzHz7JNFuBoiphaSry7DeS+hQ8aTHeKZha + Cy3EQMhIe6xVniX1g6nQMdYQXY0EskVYLl76dmLyLLJxzWCsphweUZI9jq8N1b1nScPxr4fTO+Sg + KzxBZ15m0di0dqV3wSLn2VeeQaoQ19ZUUFnNDE/kG9K7w6QDTiAWLenae1PDUhtXsFDa+v4Bmhou + D/xROtScUAu+4TrF7HMUrUS1r6JUz9EV5XiQfefZf+sX50Z/ul8kg9vJeaKOVgftHW50tEdt/5mL + Uq+MK9EkMdx096TN3OVN5wdQSwMEFAAAAAAAMHMmUAAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVz + L1BLAwQUAAAACAAwcyZQ9AOyxe8AAADGAQAAHgAAAFByb3BlcnRpZXMvbGF1bmNoU2V0dGluZ3Mu + anNvbqWQP0/DMBDFdyS+Q+S5UpEYgGwteGDAjdrSFRn3io1sn2VfWhDKd8f50yiIsYst3f3evXv3 + c31VFMyYtAEi4z8SK4uulqsn4/d4SouaNHgySpJBn/sHaRPMBkh69N8O6/8YxbqnegP+FSKkcX4v + DsEOgtdoc4tpolDO5xaVtBoTlbcPd/dsNipSshVGyuhNX2var+kAFiIejIVpBq40LpH+uCp0Tvq9 + kA5ayyriJyiamFhZe6WXMYeHeE5ywdLgjyaid/k8OxmNfJ/sOCCLTSX49nG15m9c7J7XK/HCxbYd + /gRHsBhaMTsLmjF79zS/UEsDBBQAAAAAADFzJlAAAAAAAAAAAAAAAAAbAAAAUHJvcGVydGllcy9Q + dWJsaXNoUHJvZmlsZXMvUEsDBBQAAAAIADFzJlCcI4W+aQIAACwFAAA8AAAAUHJvcGVydGllcy9Q + dWJsaXNoUHJvZmlsZXMvY2xpMzdxbnF2dzUzcHQyLVdlYi1EZXBsb3kucHVieG1sfVRdT9swFH3v + r/CqvTYuLdMQSoMKhQmp3SLagvaEHOem8XDs4I9A+PWzW0eIlO0lUe6559x7T3wdX7xWHDWgNJNi + NjyJxkMEgsqcid1saE0xOhteJIP4y2g02JRMo4JxQO5tNeQoa5EpAdU240yXuCb0iezct5IUtEay + QK20Cj1A5mN/gJoI/ZYWUSIQtdrIir3BXiKDkjRMKs8xrk6nMXAlIGfGtXOIr9aXlvF830eEbgWS + KgeFjEQciBKokgoQyaQ1QceFNaCGaWZQaUytzzHeyahiVEktCxNRWeHihTPxhC+W7nm7mE3GZyeT + kwgNRiM3e3poHW2k5Pq+s+rUW+XME3o29LpOVtMSKqJ72jk0wGUNClc6873jyXg8HSYDhJy0B0z7 + Q0lb+4iLObfSg6ErMKXMk9V6ATWXbYz7UGCEmBNrmDMjmb9ZBS53zQzEuIcGzpJos3X/cO/mlRQF + 21lFjBstuQPvmWP+O6cnknJiCqmqZC5adJVuO+o7Egi+o63iG7kkVtByXhhQob8kmEg5m35/Fs/N + y7dpbSYR8cO8QKYdVUcCTIz/oxLqHACf9wHcKOvHegePmdevlNsc5nX9uCCGJDeEeyt64ZDc/Zk1 + qIZR2N4tk377mlbHI5yfnk5jfMwOsofwLdOuXEpM2ReNcT8jEO+gkgb8ZGnZakYJ9yDCnftPrL5+ + NYrcuOXRv4QvDCq48jnYG/Tj6XtYre+v3uf47GheC5Jx6DIu3QVh61DwMyiw3MlRP0kFydejyTso + ZD6uSQPpwyJodp8dugDtro79kd20NfQ2ow/vVxL3dtIFDvuf/AVQSwMEFAAAAAgAMXMmUN0H7iGg + AAAAtgAAAAsAAABwdWJsaXNoLmNtZCXLSw6CMBRA0TmrYAMYBQxqwgRFExMQYeAYaLXVR1/pB8TV + G3R6b46wD2pcRbVBRZ1ON5YDcdOWYYJmoUG4ntwdqAScLiKZZ2yUpXMtbANcs0LhnQONW+BB1It+ + GNeBNL53o433hwtpm3cHP1NrPaIiMZ3agG1JxWDDWvjwU7TPj2GJg1+FVV3KrCMsPadlsgK15LwP + kytHP3vlFT4d5wtQSwMEFAAAAAgAMHMmUG4/rhdMBAAA+woAAAkAAABSRUFETUUubWS1VllvE0EM + fkfqf7DaFyKxu5zikABBDymiHKItEoqQMpl1skNmZ5Y5EsKvx5490hQoFRJ5yOHxfPZnf/bmAI5l + ZV/bsHeL3uDEiRrX1i1h9RCQTmBGVi/qRmO+d2vv1nmlfLJVgj4RDUiHImAJ0SuzgMkOypfbVQiN + f1YUJa5yujbvT3Jp69EdUARe2bUHeoNgOzAQ4BWHTJFCJQIIKbEJHpRpYoC5szXZkYKiA2HKlCt6 + xpsJuUypHhzAB4cOv0XlVUDPtgwm+bvjczi0DuHs6M2lBG0wGPJaSWe9nQdOkIxro60oR7BC55U1 + cD+/xzgA0+l0JnzFXw+gxICuVgahhend6bS3ZFln6y6nDOHcgosGQl9VbaXQesOJHnWxmWc6k7bE + LfPXUekSZlqQUZlkevUjEqsP1gWh4XYtlgieLRsbQWoll7D/Gf0+rCtqm/BLatr+2EgdCUI0DXgM + gXroe7yePfn9UA3MlcaX+6OcCNArg/F8QE5Q7+x+MqyV1mCQTNxQ22yAKLUJNg05i8CFPOuDNc42 + 6IJCn8gxhGNP8nArJZFQkq2tDSfa55l/9QTEafX9/qR8JJ+zEEtluYjvG2y55F63rpReqHYdc/b8 + GJMjp/MVZYDbjUPvYXryaApL3Iy6CFv1HJ6O+d7Y+NDzm+ycUuJW+8sKk/6KvtBk0XfSKyTdK9Kd + 4mUQM/+cjGy7/32UA4e64AlLgehuzarXJLk7YMRKLUQYKjVwmFtdokv0zjcNwrSNxJKb5p0A0XMt + e5F1U7y7Co7rqEWwbu/W5PcHXyY9xwUVN84St4FpcXnuM+zvAEle0OT4ZbANiK00uoHX2q7boaDd + gZpF4plhoIx55Mk8iylx5djNA11NGqkseVjHNA2zcVjbgHpDvs7GRUVhAx2hphpcaeEfmA/j/zB/ + lN9n7EVaVK6V7KSiNfPbIrwdikDAA27W4xYONQqP/ksnr0NLeclAPG/YkQxORTSyusbhhFWfvUiz + wG5sOzacvEi3Lj6egp3DlNOn7IcSPnvw9PGTQjSqqGkSxAJ9t7SOsNF20yXIubabhw9pnxEhZ6Dm + IRAzG6l9yZ1JiB3/O7RwaGZatCTcnePt4IilyGtfCLa2YDWaMCJ5MwVp+UkRkIbBByaydQFFnXVR + sqp8J/iT6EJF3Kl/JeXExbii6iMrI99OYtwd318fYcP918Iree20twR4GjKfVlv7fRYVT2k2SwAv + VwrXz5Nndskze5jfbWO9IjYrFTY85JL6QhxusGKuDy2t4adrJjrsbIv993zoKI3NsK/HJjhbtlX/ + h3r0ESzNHAfP1CW8f0hnaOc/5PPXcP9r4fdcWuBrIen5mzLfzZasmRa8K3us7X+DLVyTfufpylbO + p8IsIs07XBhSB+1Gw5PSLaLTi/HZDSgmSGK4MIo0hX3lfKHp31jRxjmsBG9hz9ucW9ZvP+v65t04 + 0BUR9Yq+dpx+AlBLAwQUAAAACAAwcyZQyOhPDqsCAACLBwAACgAAAFN0YXJ0dXAuY3OtVFFv2jAQ + fkfiP5z2FKQq1fbadRJtqYg2tkph62NlnAO8GtuzL6yo2n/fOQmJKDTdwyKkYPv77r47f5fzc7i2 + bufVak2QyBHMlPQ22CXxvnfWC1LWpDDWGipQAI8B/RaLdDhg9hcl0QQsoDQFeqA1wiyb77cZMxyU + QZlVFzgdB/cVicNjelUqzbSLXtDUBuLDftBsK08Ariztc/SfppkhXNXVNmHTGPcEa/JEXBrjAiPM + Uq3KmtYPvUGH3CEjd5n5ibIhnNTUSMrFxmkMcSe8IX4i15bXVUAjNhickNgXdDh4Hg6AH1cutJIg + tQgBchKeSlefNIAK5NVWEILkQggC+aiEY37jkrJihiQKQeIz7uAS3h3tv2NZdawu4T5Vkh20MGbo + VqOa1YrpnkPS5SHtosP+OZH5RcbD1TOskC4OeWzy+VoF2CCtbREBAaTQmj2/2FWG96UhtcEUvgfk + jQ5LFkRRQJwXnofAaz6u+khCGb64I3Vbq4pWE+YNMcmaf9eW81bmaYO+2qUWkY6LgscjGaV5HJaN + 41oXSiva/UAf3Zmc2kyb98OHh/ej7gq7plx7ZFNUBfGdw61n4/22/hHGhXDExb2uJmcDaSRrPmZM + bZlTIteQz/ZR7hWtJ95bPxWm0Og/JW+JWbAYEUAAecHDh4ZSyEx9L1KEGjTO72KbyceGeuAjfHLc + 2ehsYSDK6tE/30eu9J9BM39RW0v6nyba+7vWPp3P7/gr/KtEnkanHGr20ltWSrKxc7xd+bz5GIBw + 7gyy5vs6MVvlrdlwWYBm+7qv1BISBqRZuMEtausiJRm1hI50+MR0KVfXsNBPniS6qOdOrLDtXdu/ + wyXqgP+aYRoonIpXbRzLWYpS063S2JCOMTlx32Qv5B4XuZWP2GQ+ieEpfGmR5sW/v1BLAwQUAAAA + CAAwcyZQUqxX1D0BAADuAQAACgAAAHdlYi5jb25maWdtkF9PgzAUxd9N/A61jyZl4ADBgEsZ4Iua + JerbXjp6YZjSkrao+/YCi3+y7K0995zzu7nJ6qsT6AO0aZVMsee4GIGsFG9lk+LB1iTCq/vLi6RS + sm6bQTM7GkcBocQcjIXO+YTdC+ixYlZHfc8kF2Pj/J8VxjmSrIMUM9M/g10rDRj1zO5TfI0n/G5+ + dIoPAkyK6a/taZJGswajBl3B66Efa96k6aFq6xY4Rosf8OKEnPzRUK9VBcZsZiZXVoLFiOlm6EDa + kehsi2qvMmUdLgRGxnI12EfVFJLtBPAU10wY+DcoWwFTTKjGbI/qcZVpkTOnSRanJ0yuCNlo9Q6V + fRhafofKvIiycElJeRNR4lM3InSdxyQs/cD1gtKL/IiQc0kaBlngxR5xozIk/i3NCXWLmATx+obm + Qebnyyn5DVBLAwQUAAAAAAAwcyZQAAAAAAAAAAAAAAAACAAAAHd3d3Jvb3QvUEsDBBQAAAAIADBz + JlDUlzcKeRMAAMtNAAATAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bdVceW+jRhT/v1K/A3UVOVUD5sb2 + JlFzbA8pVateUv9qCSYxWgwWEKdp1e/e35s3A7Yx2Mmml3djhpk375p3DDODTz+6/ubqh5+/favN + q0V6/uEHp3TV0jC7PxvE2QA1VBeHM5Q0fE4XcRVq0Twsyrg6GzxUd/p4sNGWhYv4bLBK4sdlXlQD + LcqzKs4A+5jMqvnZLF4lUayLmxMtyZIqCVO9jMI0PrNqTFVSpfH5VV7E2mVead+Hi2Uan45EtYIp + qye+kZ/bfPak/UH3zWcRFvdJNtXM5W9vNluW4WyWZPe7mu7AsX4XLpL0aap9H9/nsfbjV2swf374 + QX0j9HbSz8Q8Tu7n1VSzTPOoCw2pOC62e96G0bv7In/IZnqyCO/jqfZQpMeDWViFU1ExKlf3n/4G + Do6cKxS1VVyUSZ6dDS3DGmrJ7Gx4Ez7FxS+4AVRWng3nVbWcjkaPj4/Go2Pkxf3INk2T8EiQ6W9p + kr3bBWhNJpORaAXo2RCKG2pP8krjfZlTrWZqru+MjYnme5bhDzUxTmfDOAtv01hvRJpm8aO2Df5G + cDEtl2GEPssiLuNiFQ+PnLeQUGDSqqclmqr4t2oUlSU1aUZZmUfB5V2SptMj2/G8C/Ot+eYouKYW + S7VkeRarSnsN3DS98cVYtThrLY49vryuW9y1lkv/+upzS7V4aMnBclI9TU3DfiOgaKgA+f1PX3x1 + /Yv1yydvdmuAcByZFxBvJORjUYs4qrQnOY5RGpYYOgg51NiLhq7v4oYt62zou77hDEfcdRlW86YL + usMKvnYm48AYnzi2Y/g3rmOZhnMC3HPd9ww/1V3fNKwT8R3pVmB4J/SFatSKko9+J+aNYwNkQj2/ + NFeC6tzxUeVoN854PDlxrbERRNSDsRACLjGC1LYBcCK+575PpAmjzd9XziQgxhx/Al7VjQtqJ+v8 + /75bUltKGoxdwwdly7BvXNt1QU9IOhk7xiRdk/TKCWB47okbEE9O4AdoUTcNkg5yDpOjgWD8jg2u + U1xsiCu+pSo31XFiCl2kQuIT8f0lIblRmOpCB2GXCSt9E811rXo2usoq/oZaHQ+0XNMifU5M3/Dk + TYOkJgb/jsPiiyKcJQjbIoYoEx5q97L6R8RtMPMA7/yeXPWb7McyhutaZ0MnsBwj8AJ4/hNuXajY + sgIPjTYaJ5ZluObYRSNuLdewPcdr8P5QhFl5lxeLs+EirIrkt2NLhAidLr4Llif+5JM6HORLLb+7 + o0w0NOtAQ9V6lKd5QY76ufi8EZWNi3qQto3D6sWhuow2NbRriDzldJ5N1me7yhb4q/YKXXqF7tnO + Cf7mlmVO4KDrHeuBoRhNJfNi8MmbzjxRxMs4RLLJclnsBi2T32POSt0wy7xEhs6RQgsKNZ2AUlna + xxx7N+E4aElS7VwrGXFdlYnbmdNuZ2lJ8HGeVHFXbnfQjRIMXdoYZkm5TEPk+CSjIdVv0zx615Wg + Dc7QeoL5zIvT9BvMl8YyVx/ZpszWR871kU1ei2/UJjOu4MwtK0Vq5npKzEfOxc4cvgF8IXJ1u1M7 + n8tuApRUzfdP6/eUoswJamWml22ooD/LQxijq+1xX+FHDNNKe+ADiU/0bPd2LmsZAEfzAIlGzQVQ + ZC9QEwIAY0ogodS0gKGY6WZ2QChpFkBUguu61Wpaa28HSDsx41bm5jV1GVJk4f1cB4JcJwxfjq87 + MQKuZbPmatbYqEZ+X7Mto8o2ZmkQ0ki+9jAmV5ZpG5MbmNAYN74f6Y7h1X8TMqwrU7eQkVIn0B0f + V8Cj0kG6CnBFlRvp3B3fsoTMSR3xh0SNnjRGyJk3Dcnfa8PA/0aG0f2LxZmASYUdzOmOoAsuI8w7 + dPwJDl3d5isEdCKIBhATotqokbU344nAZJskq8QjRa1ZjiwhIn/bhk/tIKHKmN6UkiZmA3pdecNc + Njp4HdFNMVD+mMYCgV8M2piGEN9IopEpa0WNgOV613DlOI1FayBLaLuaMKDPYzkBqCAhLmsEf69V + AoYUJx4MJYLUtuDEkdYRUIkVFRFNtHN9rbym3RL3Jt0Jq/JlCW3fT9AoieCyRvLVFOrDFF5doT7M + qlEoZs/jRqGSYFuh1PC3K9SH1Usikpdehb7ajOIuzak5je+qrvRNCbhjSuA+Py/TB6mzSiKsHIRp + co/ZySKZzdJ4X/Km7KD9sXOyoIN/YvVo9zTj48/Fp2+lYKCWCgbdc5zA3r3a8Cg1hWfRreY0ripw + TomQlysMx2vhEGpS2p74/6BGkyzDN63xhAlKrfWXJNPlSLvj9kgvwt9Us+X4zHd7+UYOTfhQ5bvb + aWoqAd5LqB7BptPwrpLybX7UAhcMYPBmR2uKZ4Up1oWqedPaHpgqvK352q3wRQhJJS09LOKwz5B5 + 6ts5eAqNWE9jPG2LN8XnfS3e9Z9t8evG7LPD9Kik8em2CGOT/nUzZ+OR430FBI5eAe1+AZ2DBNSX + Vtdw40mVnEtiabfD8qp8AT7GPYTibLbMk6ylyIbLrgDuBRaanqv+f0/BW6rbo5d5/ggo/fYhSfG8 + HEf0KNw7EOJB9aV+2U3yXJs7im6HmqzG0TpV5deqenaKaenVbvS6c8Ud/2jktF0UhUlXaq0Hj8vL + ZVxEYdkfAcsqXrZSTTuU3qXxNmMi+utYKFiUUyzxFHEVbUfjtYWOOA2rZNWTJdq8zNJdo3ObF0gl + amYBXZR5msy0jy9M+teXDjYTdHtlQyi3X/9dqtwjxrk2q6bT2xgDs5EZOiaHHaswbS0cpoA1rdHy + 2kO5sWjUmXmHww4IVr0bbKuqPUVtR7G2ZYS34P9hQ9BWRNxA9bIBMKq4rBAA0jR+wVDcpg/xe5Gf + 1Vng2ea5FZKSbB4XiXoq6I1Mt3k6k3D9Ucd8T+XOZtof78n4IQxtzV43/bEvTTv2YQJuCTdNQ9hM + NEfSeF4wElF4GRbwo97gG1XhDVYKCXOv/W0hbHNwGPFmEupfXFrbjQ9FSa1iyhIXaH1GxqtD6FYD + xzCRBWN62C0WYdqdAhqNTO/y6KHcpfH8oSJTWROY5LmN7myJdz/ueb6qM107g87iKC9Cjk0PGXQL + cgekUFrCfk72rGdSmCn1PoBZ3u5ZInfdn08FY+fgZaXY28lG43EtShutL1zP2JqCl3qa3+cHPeJ6 + /Y+4k7H5+k+4u6MLwberhb+pZMYBB3sj5qIEWK/0kLm95LN3S+igvRDz4sDtkK+/18unBfLE/2JD + xBXf2Ld6wXZI3fc/sBkSOIEbuFsg9gbIte98bvtbIM4GiOUH187bLRB3A8R+G/iXV1sg3ubGzPXl + 2HKesTHjH7Qxg6MFOzdmrEmzbnrYgrMVWGIJlk4VrFzHsOc6Nnl/cgNsy+sm7cpja9wlAKzXznVP + 3Ac63Yn2FZd8Y/IToZhbJjb3LZu72HNskqXoYOGIwZeCFOvpd3AA0oFYDHaxbswbIrgxsRWiVpOx + lSK3UMbifiJhgI9KEXPO688ulZiq6h1xP9XbEd9NGe2ibOvcz0aJWySTEe2jMAI0TCSwQm+X4NOh + vjrzg8pAbEHx0nctnS1vG2FZ+rEnlss9jPnKsUjtzkp3rC/RIEFsMxB9A1/pDSJbUmQm7giBfVIR + 2qjGE20eMSTb7JWP1lq/gY5mKYxLV7HRz1sNpHKmQFv+LD2aUfR5JwIAFm1YgQ9U1orCnhL9URVM + wRdXizYrBKF6Q8+lrmA8AqxUZABYkpFMhooR0NcSBlQSYK7iSrarIfPqAXbkANurQHFFTKJRjBMx + 4YitNtHQ7L2RQliDgZBDyOkJomR7YpdNqK82QvDFssgSBlaYktScgMMJpZq/QOkJG3u8Hxd4zL4J + FcvxxWV9uHn8ndpEoEvRk03WUiVRh9ZSWqqyTR7LVYBdJGGhNLDCk4RhBKSV2sbplhREOmCZ6KoE + NmljUjqBK43LUcZkETq13SNLwcqC8LU5z+kKMecsQ0Dk1RYS9dNdpRuH3d4TguIWKKXsuKyrQupm + LMjRgSyyMwFFpjkRWIQBAiFbGsHhyvyj2qJi5LKAYpPM5970zTGgMW4eZOCpzRDuVJctEbyIM537 + CycQZIQ5CRlVB8BYXBROJRUM6tKphAuAlsuOHXjiokQNmMC65HLLTijElZtosB42R+XvxJz4ZgWT + UWDg1vbr/PXdYy5LqU3eUpeBkI4AUZtgVrSzKm1ZIkcQ9iKMyhOeZ1M6UbYmOwpHpBjl03ekS1o6 + KEmv8yXOALoIRNnnyFZL6azf1A4zZsE8HA7j6M6OwI4r7+2aH9aNtDcxmnLshZ6l9dQOJQMr60Hu + bdZuwLmlyT5su3IkgIViEdfonE4p2ChQHdUsLsVJLtUqY++TbmmLyEphUPqrQzYm1E2atVd60ORF + PhWgdmzZpqVcKtx7zF0dtngsRTKpww0TsFWiqVkDFO5UJsGfLNl8vEEEE5mzeZi5QyBPPHiUVKgs + xp/0oyp0j/eXOYA3NmOLK0KnYkBXwlnS/x2RfuCygFVDYBF69nEqbWZQKsmePmeVWnl2k1/klrXL + Sl0RBZKPEHLm58yyMWgyv/icX1hy4QA8mk26VRq/ssfydEEgOKptmZPCummzrU+CQwIgs/Q+YfDv + CoDMWV8YnEyAsA6DQuAmDK7LLxTimN4rBkDm7nXD4EsCoMyOjgnOmjBYy0p164KzJjxHnlOhRGyR + zdoeZWR3pVPBo0Dhz+lCY8XMKkcSPcnZxhEJgz8h/FhODMeoQ0mqR047alU2c3GZ7msHk26lQh47 + 20+uHYmoBphmIiIjHDkYNcoKh1ihaz1ZVWqjmR0PpwoNJTklsyJLLmR18EgjlKEHaUD4UAdnmZNe + fFaPRQ5h1ulCzq/Ft1BDLdJ47WHCXp99AkKIL8dRCe+hpCYUUi6pcIa3OFKsfIhdxwZGLQKJQC9D + iMWKlEPTBBHSjZq+U5gUARcOzzbGczVfTIbhueIaKIX95JEXdRzqaz2lOtbG2oLt7nhmtdvPrBiD + rUfWpnbUTc1HxNtPz3k1elvS+TTMbXruq9Ej+Q6h6L2M4iGnp/YsH8r1zfYiYnPkofuwlIemlx3U + 2uSqyB87drGxSkmHpcUf7238dw70bJ9hSR8WWMc+9DCa4to76tifL5oNnT7FNQeBDjsE1Dris/90 + 0AZNcc6nd+mfFvE6OZ7ljxl0MtOreazHiwfsbect7tc3s7o3YpxLq+uURr32/5x9su2tr8DcfxIj + uSvChdoNbZsdISHb/ShZ0NuHYVZ126/v9UIy4y2EPU4VL7BboxODSuzONwF7JP1sEc+SUMuz9Ekr + oyKOMy3MZtrxhmsRT58o7L2r9e1DKrxHsncLqvPIZPuIl7kf26a3tjxWGvHz+d56u2QvH3u3cw4l + 2hcI21bpr0Xu58TDvTGxLWU7vrdjvL0W4/8P4r3cUYJ1R2m/bLv/OMXmC009b1Ix79AnKL6iBLbz + H5Hg5eHBPRzd+tb0oS+C0afW1usq3zT/EeWLfVEOga/HvO/YgvcXj5tjHzBu+yKN1UQaa28YcSeb + qXZPXLI2offyun3Iteu8qXeA3HQy9xAl2of40uHnlNYnXIe41Wba7Zn1HiLzoT5q9fuodYhKtqZ7 + /WYzfpbZmHuhWZK9M0T60PmcuxRPBdocrxbE2YH+e8hkkSTsnjDS5XS0/hsYpwgEybI6b8BmOJm0 + wFOJgbF+u0LhJoGpwcSOh9fffH3Fjyw3OUZ1NjzR7h4yPmx83Ioa9ADxObF6vPGku36zCosGTDvb + ja0BlQN71vCIKBZW8ds0prvjIQMMt99L4moDr2tfVHg//BanMY8HyWxwog24qXkWb6jRC943cK0v + f/j6RkoNyoPBDkjCoZhY5+4+rmTt5dNXs+PBhn0O2lxqx49JhmcvIwtXyT09cxl5RjzU2tglVRGB + pvjljRI/vQHipYGHI9H4mBfv4M4LDDke+6IRzqKOlkgb5ejOM/AjJOoE7F5lwUryNIXrk86yfPDJ + oR1FHZ/ho67m4T2F51EfmqIf3o2Nv69fM2TXyerlw4VPjcUIl0skiis6SXnM8Nvgf2pxWu4KShvW + Y4gFJ3gcuR9Y2OHxg096wsUb5eO1W5+O5A/xoEi/M6P8nuOy/PWBAd8NZKMAwIJT09p+u6mB7usB + 4IH8eYTBzvfJBuenI/Tbj4rS5j5Ul2GZRPTbP9s41T2XGSNut0lhXtKlAs6JA3Xbeq+qTxkbL04N + zn/OHwpavNGSUkPP2dNH+1TQzBvW3+1pSDYf4NaiMNPoMLj2VBNCxZx/FOlzFRa0t3JZ5/S20EY7 + UN0+aTEdlIXTa6Ho++N3NwiK2q/yR36g8zCd52U1xY+ujEfhMhkt4rKk8PLrJrrD5du58LRL0NNQ + dZanXgfavIjvzgYqDobvQjy3jyC+XodC/XNPVxQa7DuPWFd4wKTfqvrlNg2B/PxadiNFNqobhecv + lHSXTD8lOGb5cskQ3PV5jkjVYn73IfKL3x+KeGcT/3wWjgom0Q4AklqrctjuPc0MitrOxNMEwpaW + VGiv7aodfZP8oaSfA8syxERD+2EeU/dhqcnJNpsajiTSW5jpE6YI+bty15tF72KMR1JOnzcIisrg + XKn0NDknIX4BF+UvZNL0e2Sno+R8w6p3RpXeeKFtphD6XZzNrLIZ/lR5G1lr/UkNaQfgbqynIxn/ + qSh/ue0vUEsDBBQAAAAIADBzJlAISi14IRMAAMxLAAAUAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bWzV + XHtvo0YQ/79SvwN1FTlVA+aN7Uui5nHXVkrVqi+pf1UEkxgdBguIc7mq372/2dkF2xibpGnV+i6w + 7M7OznuWXeD0s+vvr37+7Ye32rxapOeffnJKZy0Ns/uzQZwNUEN1cThDScPvdBFXoRbNw6KMq7PB + Q3WnjwcbbVm4iM8GqyR+XOZFNdCiPKviDLCPyayan83iVRLFurg40ZIsqZIw1csoTOMzq8ZUJVUa + n7+N5vllXp2OxKVqK6snvpC/23z2pP1B181vERb3STbVzOWHN5sty3A2S7L7XU13oFS/CxdJ+jTV + forv81j75ds1mD8//aS+EPI62U/EPE7u59VUs0zzqAsNiTYutnvehtH7+yJ/yGZ6sgjv46n2UKTH + g1lYhVNRMSpX919+AAVHzhWK2iouyiTPzoaWYQ21ZHY2vAmf4uJ3XAAqK8+G86paTkejx8dH49Ex + 8uJ+ZJumSXgkyPRDmmTvdwFak8lkJFoBejaE4IbakzyTni9zqtVMzfWdsTHRfM8y/KEm9HQ2jLPw + No31hqVpFj9q2+BvBBXTchlG6LMs4jIuVvHwyHkLDgUmrXpaoqmKP1SjqCypSTPKyjwKLu+SNJ0e + 2Y7nXZhvzTdHwTW1WKoly7NYVdpr4KbpjS/GqsVZa3Hs8eV13eKutVz611fvLNXioSUHyUn1NDUN + +42AIlUB8qdfv/72+nfr9y/e7JYA4TgyL8DeSPDHrBZxVGlPUo9RGpZQHZgcauw9Q9d3ccGWdTb0 + Xd9whiPuugyredMF3WEF3zmTcWCMTxzbMfwb17FMwzkB7rnue4af6q5vGtaJOEa6FRjeCR1QjVpR + 8tHvxLxxbIBMqOc35kqMOnd8VDnajTMeT05ca2wEEfVgLISAS4wgtW0AnIjj3PdpaMJo8/HKmQRE + mONPQKu6cDHayTr9H3dzaktOg7Fr+BjZMuwb13ZdjCc4nYwdY5KucXrlBDA898QNiCYn8AO0qIsG + ScdwDg9HimD8jg2qU5xssCuOUpSb4jgxhSxSwfGJOH5DSG4UprrQMbDLAyt505jrUvVsdJVVfIRY + HQ9juaZF8pyYvuHJiwZJPRj8Ow6Lr4twliBcixiiTHio3cvqXxCvQcwDvPMnctXvs1/KGK5rnQ2d + wHKMwAvg+U+4dCFiywo8NNponFiW4ZpjF424tFzD9hyvwftzEWblXV4szoaLsCqSD8eWCBE6nXwX + JE/8yRd1OMiXWn53RxloaNaBhqr1KE/zghz1nfi9EZWNi3rgto3D2otDdRltSmiXijzldJ5N1me7 + yhb4UHuFLr1C92znBH9zyzIncND1jrViKEZTybwYfPGmM08U8TIOkWyyXBa7QcvkY8xZqRtmmZfI + zDlSaEGhphNQCkv7nGPvJhwHLTlUO9dKQlxXZeJ25rTbWVoO+DhPqrgrtzvoRgmGTm0Ms6RcpiFy + fJKRSvXbNI/edyVogzO0nmAe8+I0/QbzpLHM1Ue2KbP1kXN9ZJPX4ojaZMYVnLllpUjNXE+J+ci5 + 2JnDN4AvRK5ud2rnc9lNgJKo+fpp/ZpSlDlBrcz0sg0V9Gd5CGN0tj3uK/yIYVppD3Qg8Yme7d7O + Zc0D4GgeINGouQCK7AVqQgBgTAkklJoWMBQT3cwOCCXNAmiU4LputZrW2tsB0k7MuJS5eU1chmRZ + eD/XYUCuE4Yv9etOjIBr2ay5miU2qpHf12TLqLKNWRqENJLvPOjkyjJtY3IDExrjwvcj3TG8+m9C + hnVl6hYyUuoEuuPjDHhUOkhXAc6ociOdu+MoS8ic1BF/SNToSTpCzrxphvxYGwb+NzyM7l/MzgRE + KuwgTnfEuKAywrxDx5+g0NVtPoNBJwJrADHBqo0aWXsznghMtkm8SjyS1ZrkyBIs8tE2fGrHEKqM + 6U0px8RsQK8rb5jKRgavw7opFOWPSRcI/EJpY1IhjkiikSlrRY2A5XrXcKWexqI1kCW0XU0Y0Gdd + TgAqhhCntQE/1iIBQYoSD4YSgWtbUOJI6wioxIKKaEy0c30tvKbdEtcmXQmr8mUJbT9N0CgHwWlt + yFcTqA9TeHWB+jCrRqCYPY8bgcoB2wKlhn9coD6sXg4iadkr0FebUdylOTWn8V3Vlb4pAXdMCdzn + 52X6IXVWSYQVgzBN7jE7WSSzWRofSt6UHbQ/dk4WdNBPpB7tnmZ8/k789q0UDNRSwaB7jhPYu1cb + HqWkcC+61ZzGVQXKKRHycoXheC0cQkxK2hP/X5RokmU40tpOmKDUWn9JMl1q2h23Nb0IP6hmy/GZ + 7vbyjVRN+FDlu9tpaioB/gmmptPwrmrxpha0oPhthUcp7g+mWAuq5l2KqMLbPXQsMK4u8ethEYf7 + jJanuZ24FBqxdsZ42tZtit/ftW7Xf7Z1rxuuD+fYL5LGf9ssjE36102cjduLv8sgcOxl0N7PoNOL + QX1pdWgbN6XkRxJJux0GV+ULkDHeM06czZZ5km3LcYvGdqT2Aku09BR9L9m2Rdtbsl2CbYvsgDzm + +SOg9NuHJMUtcRzR3a62TwHiXvTF7rhruPO5U4/Ylox1wKv8V8gZdi3A9tI5/pFytO1RhK1WasEG + 97zLZVxEYdkd1soqXrZyRTs23qXxNjEifOu401+UU6zRFHEVbYfWtZWKOA2rZNWbjlnauqHPC+QB + NSUA72WeJjPt8wuT/nXF9CartpcihBC7Zdyf1PNZNZ3exhB5vGcZYmtxpM3bYbakDGiV66GUazcd + CXA43GphwblB94IORu/UX3gLuh6Y8O04xF2fIS6jissK7pam8TMEd5s+PMN8oBPtj2cYxZpzJ9k8 + LpJqn3/f5ulsr++azxLIbKb98UxytobbP00zDyQnx+5N7jQNobtojlDZ30lFRFqGBSyze05UhTdY + 9jpsB2vIDrpRG7Y9y/IvLq3txoeipFaRlOPieZG+Di9bDez5IgNAqxnic5geksb0Lo8eym2Z5A8V + qX+NUeLjNrqzD+Kb5ysR5dtZYxZHeRGytz9kkCOG2O9vYt31ORmjnhog9++9a7C83fem3PUwUeez + ZNW14+t03Pdyy8tuubdmjaWe5vd5rzswb/8d2GRsvv4N2O6YQPDtauFBKglwuMDSvbkoD3EPntsr + Egd3LHot1ZsXPVfrv/tJL58WiNX/i/V6VxyxrfKC1fq6739grT5wAjdwt0DsDZBr33ln+1sgzgaI + 5QfXztstEHcDxH4b+JdXWyDe5r7B9eXYcp6xb+D32jfAzvfOfQNr0izr9VsPtQJLrBDSpvfKdQx7 + rmMP8lc3wK6xbtKmMXZuXQLAcuJc98R1oNOVaF9xyTcmvxKKuWVi79myuYs9xx5Oig4WdsC/EUOx + nD6CAgwdiLVKF8uavF6PCxMr9WqxEyv9coV/LK4nEgb4qBQx5bw86lKJR1W9I+6nejvi2JTRLsq2 + zv1slLhFEhnRMj8jQMNEAiv0dgk6HeqrMz2oDMQOCa/M1tzZ8rJhlrkfe2I114POV45FYndWumN9 + gwYJYpuB6Bv4Sm5g2ZIs8+COYNgnEaGNajzR5hFBss1e+Wit5RvoaJbMuHQW+9C8Ek4i5xFoR5q5 + RzOKPi+UA8Ci/RTQgcpaUNjyoD+qgin44mzRWroYqN5vcqkrCI8AKwUZAJZ4JJOhYgT0NYcBlQSY + q6iS7UplXq1gRyrYXgWKKiISjUJPRIQjdoJEQ7M1RAJhCQaCD8GnJwYl2xObQEJ8tRGCLuZFlqBY + YUpScgIOD9DU9AVKTth34u2iwGPyTYhY6hendXWz/p3aRCBL0ZNN1lIlUYfWUlqqsk3W5SrAJoew + UFKs8CRhGAFJpbZxuiQBkQyYJzorhk3aN5NO4ErjcpQxWYRO7UbIUrCywHxtznM6g8058xDQ8GqH + g/rprpKNw27vCUZxCZSSd5zWRSFlMxbD0fNCZGcCikxzIrAIAwRCtjSCw5npR7VFxchlBsUejs+9 + 6cgxoDFuVjLw1GYId6rLlgheRJnO/YUTiGGEOQkeVQfAWFwUTiUFjNGlUwkXwFguO3bgiZNiNeAB + 1jmXO0pCIK7c44H1sDkqfyfixJEFTEYBxa1tJ/nrm5tcllybvOMrAyE9oUJtgljRzqK0ZYkcQdiL + MCpPeJ5N6UTZmuwoHJFilE/HSJdj6RhJep0vcQaQRSDKPke2mktn/aJ2mDEz5uHZJY7u7AjsuPLa + rulh2Uh7E9qUuhdyltZTO5QMrCwHufVWuwHnlib7sO1KTQALxSKu0TmdUrBRoDqqmV2Kk1yqRcbe + J93SFpGVwqD0V4dsTIibJGuv9KDJi7xprTYU2aYlXyrce0xdHbZYlyKZ1OGGB7BVoqlJAxSuVCbB + nyzZvPsugonM2axm7hDIDXmPkgqVhf5JPqpC93j7kwN4YzO2OCN0KgJ0xZwl/d8R6QcuC1ilAovQ + s49TaTODUkn29Dmr1MKzm/wid1RdFuqKRiD+CCFnfs4sG0qT+cXn/MKcCwdgbTbpVkn8yh7Lze9A + UFTbMieFddNmW58EfQIgk/R3wuA/FQCZsn1hcDIBwjoMCoabMLjOvxCIY3qvGACZutcNgy8JgDI7 + OiYoa8JgzSvVrTPOkvAc+RgFJWKLbNb2KCO7K50KHgUKf04n0hUTqxxJ9CRnG0fEDP4E82M5MRyj + DiUpHjntqEXZzMVluq8dTLqVCnnsbL+6diSiGmCaiYiMcORg1CgrHCKFzvVkVYmNZnasThUaSnJK + JkWWXPDq4JZGCEMP0oDwoQ7OMie5+CweixzCrNOFnF+LoxBDzdJ47WbCXp99AkKwL/WomPdQUhMK + yZcUOMNbHClWPtiuYwOjFoFEoJchxGJBStU0QYRko6bvFCZFwIXDs43xXM0Xk2F4rjgHSmC/euRF + Hc+cte5SHWtjbcF2d9yz2u17Vuhg65a1qR11j+Yj4h0ez3m18ba480nN7fHcVxuP+OszoveyEfs8 + 3HNg+VCsZraXEJs9+u4nebxXWtIs8seO/VesUdKTvOKP9yH+O0+bbD90kT4ssF7d90kpRbV31LF7 + UvTY64HgnvukyubzKL0eY9kYMzy4vJ/le1b2Z/ljBpnM9Goe6/HiAfu2eYv69Y2n7o0V59Lq2mXj + Nf5n7mltb1sFPTb1k7siXKjdxbbZERKy3c+SBb0SF2ZVt/363l5IJryFcI9TxQvsxuhEoGK78zW1 + PZx+tYhnSajlWfqklVERx5kWZjPteMO1iKYvFPYDa/XtxyvaOyMNCX2e59t+Jsk8jG3TW1seK434 + +XRvvfpwkI6Dmzl9B90XCNtW6a9F7ufEw4Mxsc1lO763Y7y9FuP/D+y93FGCbUdpvwn6krdtdrzm + w7RDnhjxFTmwnf8IBy8PD25/dOtb0H3fUqJfLa3XFb5p/ivCF7uiHAJfj3jfsQXtL9abY/fQ26FI + YzWRxjoYRtzJZqo9EJesTeiDtG4/ltn1BKrXg296lLSPEO0+vtTnCaLt6VYfp9pMunvmvH047uuh + 1n4PtfoIZGuyt99oxs8yGvMgNHNycH5IP3r65i7FPYE2x1PvcdbTe/tMFYnD7ukinU5H659nOEUY + SJbVeQM2w7NGC9yTGND12xUKNwkMDQZ2PLz+/rsrvmG5yaHV2fBEu3vI+Lnc41bMoNuHd0Tq8cZd + 7vrFKiwaMO1sN7YGVCr2rKERMSys4rdpTFfHQwYYbr8yw9UG3iS+qPDq8i2eYDweJLPBiTbgpuY+ + vBmN3j2+gWN98/N3N5JrjDwY7IAkHIqIderu40rWXj59OzsebNjnoE2ldvyYZLjzMrJwldzTHZeR + Z0RDLY1dXBURxhQfhSjxVQgMXhq4NRKNj3nxHu68gMpx0xeN8PzmaImkUY7uPAPfx1BPhx4UFqwk + T1O4Psksywdf9O0o6viJPOpq9u8pPI/60AS9fzc2/n39GpVdJ6uXqwu/GosRLpdIE1f0POQxw2+D + /6nFabkrKG1YjyEWm+Bx5H4gYYfHD77YEy7eKB+v3fp0JL8NgyJ9AkX5Pcdl+WL8gK8GslEAYLmp + aW2/fNNA7+sB4IF8c3+w81WnwfnpCP0Oo6KkeQCV+hrNNkZ1zWXGh8vtgTAn6RIAZ8SBumy9BLRP + FBtv+QzOf8sfClq40ZJSQ8/Z02eHBNDMGdZfRBGYtCjMNHqMWnuq0aJiHmuXKL5TIUB7KxdwTm8L + bXS+Y1L5RCtRGb3zkN1rmMzLT8xArGE6z8tqik9+jEfhMhkt4rKkCGL0J3vnWhIUHypQ+VjqQJsX + 8d3ZQIWy8H2IG+8RuNLraKa/83SFr8FFVLR/FW4R6RNIv9+mIbCfX8t+JKBGJKPwoAnWrAzOf03w + GKT2YtIRgPV5jmjSIu7i40MR7+RD6PKnuKCvMhG1pJ8ivqesXNR6F/N4hAwtqdBe67kd+ZL8oaSv + Q0HbaWloP89j6j4stXqa+8uPN/QlH3o5L31Ces7fl21MafI+hhyTcnpIeArv4FwJ5zQ5J7J/x7jl + 72Rd+CAVOEvONwxspxfv9U9tM2DTB1K2YviGplV5G1lrrUd5dwfgbqynIxltqSg/3fUXUEsBAj8A + CgAAAAAAMHMmUJmrGOweAAAAHgAAAAsAJAAAAAAAAAAgAAAAAAAAAC5kZXBsb3ltZW50CgAgAAAA + AAABABgAoedbJp3E1QGh51smncTVAaHnWyadxNUBUEsBAj8ACgAAAAAAMHMmUAfdjtorAAAAKwAA + AAoAJAAAAAAAAAAgAAAARwAAAC5naXRpZ25vcmUKACAAAAAAAAEAGACh51smncTVAaHnWyadxNUB + oedbJp3E1QFQSwECPwAUAAAACAAwcyZQvKpX+jUCAABPBQAAGgAkAAAAAAAAACAAAACaAAAAQWRh + cHRlcldpdGhFcnJvckhhbmRsZXIuY3MKACAAAAAAAAEAGACh51smncTVAaHnWyadxNUBoedbJp3E + 1QFQSwECPwAUAAAAAAAwcyZQAAAAAAAAAAAAAAAABQAkAAAAAAAAABAAAAAHAwAAQm90cy8KACAA + AAAAAAEAGACh51smncTVAaHnWyadxNUBoedbJp3E1QFQSwECPwAUAAAACAAwcyZQ2D4W8N0BAAD/ + BAAADwAkAAAAAAAAACAAAAAqAwAAQm90cy9FY2hvQm90LmNzCgAgAAAAAAABABgA0kleJp3E1QHS + SV4mncTVAdJJXiadxNUBUEsBAj8AFAAAAAgAMHMmUL0Of46pAAAABQEAAAkAJAAAAAAAAAAgAAAA + NAUAAGJ1aWxkLmNtZAoAIAAAAAAAAQAYABO/cyadxNUBE79zJp3E1QETv3MmncTVAVBLAQI/ABQA + AAAAADBzJlAAAAAAAAAAAAAAAAAMACQAAAAAAAAAEAAAAAQGAABDb250cm9sbGVycy8KACAAAAAA + AAEAGADSSV4mncTVAdJJXiadxNUB0kleJp3E1QFQSwECPwAUAAAACAAwcyZQnvjBBkICAADvBAAA + HAAkAAAAAAAAACAAAAAuBgAAQ29udHJvbGxlcnMvQm90Q29udHJvbGxlci5jcwoAIAAAAAAAAQAY + ANJJXiadxNUB0kleJp3E1QHSSV4mncTVAVBLAQI/ABQAAAAIADBzJlD5dHIKXwQAAIYLAAAKACQA + AAAAAAAAIAAAAKoIAABkZXBsb3kuY21kCgAgAAAAAAABABgAE79zJp3E1QETv3MmncTVARO/cyad + xNUBUEsBAj8AFAAAAAgAMHMmUOCxn0VPAAAAdQAAABUAJAAAAAAAAAAgAAAAMQ0AAERpcmVjdG9y + eS5CdWlsZC5wcm9wcwoAIAAAAAAAAQAYAEutYCadxNUB0kleJp3E1QHSSV4mncTVAVBLAQI/ABQA + AAAIADBzJlDEWvMjVAEAABwDAAAOACQAAAAAAAAAIAAAALMNAABFY2hvQm90LmNzcHJvagoAIAAA + AAAAAQAYAEutYCadxNUBS61gJp3E1QFLrWAmncTVAVBLAQI/ABQAAAAIADBzJlBNLz8MxI0AADix + AwARACQAAAAAAAAAIAAAADMPAABFY2hvQm90LmRlcHMuanNvbgoAIAAAAAAAAQAYAI0OYyadxNUB + S61gJp3E1QFLrWAmncTVAVBLAQI/ABQAAAAIADBzJlCbR9DvlQAAAOAAAAAaACQAAAAAAAAAIAAA + ACadAABFY2hvQm90LnJ1bnRpbWVjb25maWcuanNvbgoAIAAAAAAAAQAYAI0OYyadxNUBjQ5jJp3E + 1QGNDmMmncTVAVBLAQI/ABQAAAAIADBzJlDpEyezpwEAAFQEAAALACQAAAAAAAAAIAAAAPOdAABF + Y2hvQm90LnNsbgoAIAAAAAAAAQAYAPhwZSadxNUBjQ5jJp3E1QGNDmMmncTVAVBLAQI/ABQAAAAA + ADBzJlAAAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAMOfAABQb3N0RGVwbG95U2NyaXB0cy8KACAA + AAAAAAEAGAAFmWwmncTVAQWZbCadxNUB+HBlJp3E1QFQSwECPwAUAAAACAAycyZQs4kQS0oBAABW + AgAAMQAkAAAAAAAAACAAAADznwAAUG9zdERlcGxveVNjcmlwdHMvY2xpMzdxbnF2dzUzcHQyLlB1 + Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYAJ8lZCidxNUB5TwaKJ3E1QHlPBooncTVAVBLAQI/ABQA + AAAIADBzJlDgz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIyhAABQb3N0RGVwbG95U2NyaXB0cy9n + aXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGAD4cGUmncTVAfhwZSadxNUB+HBl + Jp3E1QFQSwECPwAUAAAACAAwcyZQWtMXbNwAAAAOAgAAKAAkAAAAAAAAACAAAABoogAAUG9zdERl + cGxveVNjcmlwdHMvSW5jbHVkZVNvdXJjZXMudGFyZ2V0cwoAIAAAAAAAAQAYAPhwZSadxNUB+HBl + Jp3E1QH4cGUmncTVAVBLAQI/ABQAAAAIADBzJlCo88lWlAIAAHUHAAAiACQAAAAAAAAAIAAAAIqj + AABQb3N0RGVwbG95U2NyaXB0cy9tZXJnZVNldHRpbmdzLmpzCgAgAAAAAAABABgANtRnJp3E1QH4 + cGUmncTVAfhwZSadxNUBUEsBAj8AFAAAAAgAMHMmUDQh+rgbAwAAUggAACAAJAAAAAAAAAAgAAAA + XqYAAFBvc3REZXBsb3lTY3JpcHRzL3ByZXBhcmVTcmMuY21kCgAgAAAAAAABABgANtRnJp3E1QE2 + 1GcmncTVATbUZyadxNUBUEsBAj8AFAAAAAgAMHMmUO9rT3V2AAAAewAAACYAJAAAAAAAAAAgAAAA + t6kAAFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2guY21kLnRlbXBsYXRlCgAgAAAAAAABABgAtDVq + Jp3E1QE21GcmncTVATbUZyadxNUBUEsBAj8AFAAAAAgAMHMmUDYrsXByAgAARAUAAC0AJAAAAAAA + AAAgAAAAcaoAAFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hQcm9maWxlLnhtbC50ZW1wbGF0ZQoA + IAAAAAAAAQAYALQ1aiadxNUBtDVqJp3E1QG0NWomncTVAVBLAQI/ABQAAAAIADBzJlDKIuDRJAEA + ADICAAAuACQAAAAAAAAAIAAAAC6tAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoU2V0dGluZ3Mu + eG1sLnRlbXBsYXRlCgAgAAAAAAABABgAtDVqJp3E1QG0NWomncTVAbQ1aiadxNUBUEsBAj8AFAAA + AAgAMHMmUBPZeEvSAAAAdwEAAB0AJAAAAAAAAAAgAAAAnq4AAFBvc3REZXBsb3lTY3JpcHRzL3J1 + bkd1bHAuY21kCgAgAAAAAAABABgABZlsJp3E1QEFmWwmncTVAQWZbCadxNUBUEsBAj8AFAAAAAgA + MHMmUKHoB0OGAgAAQwYAACsAJAAAAAAAAAAgAAAAq68AAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw + R2l0aHViUmVtb3RlUmVwby5jbWQKACAAAAAAAAEAGAAFmWwmncTVAQWZbCadxNUBBZlsJp3E1QFQ + SwECPwAUAAAACAAwcyZQ58hJBf8CAAAyBwAAKAAkAAAAAAAAACAAAAB6sgAAUG9zdERlcGxveVNj + cmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNtZAoAIAAAAAAAAQAYAAWZbCadxNUBBZlsJp3E1QEF + mWwmncTVAVBLAQI/ABQAAAAIADBzJlAABermvwAAABwBAAAqACQAAAAAAAAAIAAAAL+1AABQb3N0 + RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGABW+m4mncTV + AQWZbCadxNUBBZlsJp3E1QFQSwECPwAUAAAACAAwcyZQv3BPlA0BAAAjAgAACgAkAAAAAAAAACAA + AADGtgAAUHJvZ3JhbS5jcwoAIAAAAAAAAQAYAFb6biadxNUBVvpuJp3E1QFW+m4mncTVAVBLAQI/ + ABQAAAAAADBzJlAAAAAAAAAAAAAAAAALACQAAAAAAAAAEAAAAPu3AABQcm9wZXJ0aWVzLwoAIAAA + AAAAAQAYADag9yadxNUBNqD3Jp3E1QFW+m4mncTVAVBLAQI/ABQAAAAIADBzJlD0A7LF7wAAAMYB + AAAeACQAAAAAAAAAIAAAACS4AABQcm9wZXJ0aWVzL2xhdW5jaFNldHRpbmdzLmpzb24KACAAAAAA + AAEAGABW+m4mncTVAVb6biadxNUBVvpuJp3E1QFQSwECPwAUAAAAAAAxcyZQAAAAAAAAAAAAAAAA + GwAkAAAAAAAAABAAAABPuQAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgA + tuUAJ53E1QG25QAnncTVATag9yadxNUBUEsBAj8AFAAAAAgAMXMmUJwjhb5pAgAALAUAADwAJAAA + AAAAAAAgAAAAiLkAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTM3cW5xdnc1M3B0Mi1X + ZWItRGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYADfjPiedxNUBtuUAJ53E1QG25QAnncTVAVBLAQI/ + ABQAAAAIADFzJlDdB+4hoAAAALYAAAALACQAAAAAAAAAIAAAAEu8AABwdWJsaXNoLmNtZAoAIAAA + AAAAAQAYAADy7CedxNUBCkK9J53E1QEKQr0nncTVAVBLAQI/ABQAAAAIADBzJlBuP64XTAQAAPsK + AAAJACQAAAAAAAAAIAAAABS9AABSRUFETUUubWQKACAAAAAAAAEAGABW+m4mncTVAVb6biadxNUB + VvpuJp3E1QFQSwECPwAUAAAACAAwcyZQyOhPDqsCAACLBwAACgAkAAAAAAAAACAAAACHwQAAU3Rh + cnR1cC5jcwoAIAAAAAAAAQAYABO/cyadxNUB7l1xJp3E1QHuXXEmncTVAVBLAQI/ABQAAAAIADBz + JlBSrFfUPQEAAO4BAAAKACQAAAAAAAAAIAAAAFrEAAB3ZWIuY29uZmlnCgAgAAAAAAABABgAE79z + Jp3E1QETv3MmncTVARO/cyadxNUBUEsBAj8AFAAAAAAAMHMmUAAAAAAAAAAAAAAAAAgAJAAAAAAA + AAAQAAAAv8UAAHd3d3Jvb3QvCgAgAAAAAAABABgAE79zJp3E1QETv3MmncTVARO/cyadxNUBUEsB + Aj8AFAAAAAgAMHMmUNSXNwp5EwAAy00AABMAJAAAAAAAAAAgAAAA5cUAAHd3d3Jvb3QvZGVmYXVs + dC5odG0KACAAAAAAAAEAGABzIXYmncTVARO/cyadxNUBE79zJp3E1QFQSwECPwAUAAAACAAwcyZQ + CEoteCETAADMSwAAFAAkAAAAAAAAACAAAACP2QAAd3d3cm9vdC9kZWZhdWx0Lmh0bWwKACAAAAAA + AAEAGABzIXYmncTVAXMhdiadxNUBcyF2Jp3E1QFQSwUGAAAAACcAJwArEAAA4uwAAAAA headers: cache-control: - no-cache content-length: - - '3229' + - '64803' content-type: - - application/json + - application/x-zip-compressed date: - - Wed, 27 Nov 2019 23:08:41 GMT + - Mon, 06 Jan 2020 14:25:39 GMT etag: - - '"1D5A577442074CB"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"command": "rm -rf clirepo && mkdir clirepo", "dir": "site"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '61' - User-Agent: - - python-requests/2.22.0 - content-type: - - application/json - method: POST - uri: https://cli000002.scm.azurewebsites.net/api/command - response: - body: - string: '{"Output":"","Error":"","ExitCode":0}' - headers: - cache-control: - - no-cache - content-length: - - '37' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 23:08:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: !!binary | - UEsDBBQAAAAAABN5e08AAAAAAAAAAAAAAAAFAAAAQm90cy9QSwMEFAAAAAAAE3l7TwAAAAAAAAAA - AAAAAAwAAABDb250cm9sbGVycy9QSwMEFAAAAAAAE3l7TwAAAAAAAAAAAAAAABIAAABQb3N0RGVw - bG95U2NyaXB0cy9QSwMEFAAAAAAAE3l7TwAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQU - AAAAAAATeXtPAAAAAAAAAAAAAAAACAAAAHd3d3Jvb3QvUEsDBBQAAAAIABN5e0+ZqxjsIAAAAB4A - AAALAAAALmRlcGxveW1lbnSLTs7PS8tMj+XlSs7PzU3MS1GwVUhJLcjJr9RLzk0BAFBLAwQUAAAA - CAATeXtPB92O2iYAAAArAAAACgAAAC5naXRpZ25vcmXT0kvJyeHl0tIrSEni5cpPytLX0uLlSsrM - A9NFpXklmbmpxWAOAFBLAwQUAAAACAATeXtPvKpX+jcCAABPBQAAGgAAAEFkYXB0ZXJXaXRoRXJy - b3JIYW5kbGVyLmNznVRNi9swEL0H8h8G00MCxr5nuwvZkrKBTXtooIfSgyJPbLG2JPSxTgj57x3J - +XA2m22psIklzbx58/SUPIcvSm+NKCsHIz6GheBGWbV2tG60MswJJTOY1jXEIAsGLZpXLLLhIM/h - WXCUFgvwskADrkJYzJfHZYoZDrwVsjwDZ4+KXi9qis/m0mF5KDK1+hu6jOri3cdZS8M4zjaOSlCi - fSf6vEl4ci1K3xX5OPRZlSVt3gXWkjVoNdW5wWHGK0Xz4WA3HAAN7Ve14MBrZi1MC6Ydmp/CVTNj - lHlisqhJnglQyldD0K0yL0/O6UNkh3GA6sHdABrNL7oC3p+lMA+NoPl8o9gD1HF/fC4XxgRWzOLo - DdZV6O4y67tceiMjObgHZreSw8jREjF0uHEp4IajDmBjuH+4TH6DFUbwlCqByS3UyF7IWad8WBvV - RIsxrUmdzjbXEB3lcJqR1ugEkMKn5FeP8G9ybRUVpSqxgwnsTtHZAq1lJe6TcXTEO0x/oCyAQdMF - glORnbfHA+0P1jLhoKdMFrKn3IlX4bbTINwoWVL6SjlAyZWnKEKXB2r0rHyZRTL/h62CT5yQPjI1 - XhJbYUO9FDSJbRHWYhNbCBys8obsz1WB2V8lcOFKAjtUTKGtBK+gFfS/sUIohNU121I7QkZ8ciac - rAmzxtfMqX8SLd79N531PRj3k57rjseYQlLRHbCTPG/bNqMO10cCGVdNbnmFDbN5VJsAkhPmleT7 - 3nzffdIPPX8AUEsDBBQAAAAIABR5e09pAFzAaAAAAHoAAAAQAAAAYXBwc2V0dGluZ3MuanNvblXL - MQ7CMAwF0KtUnrGUpvkOYWNkQOIKTlxLTKkaJAbE3UFsvP296Hpvex/dH+dtuxidJpotLtE9s0ow - Ti1mLmF1Vq3ibiXVpdBh+ps3HePZ99+HqHrEyqhonAzfr6gsCTMCjhKy0fsDUEsDBBQAAAAIABN5 - e0+9Dn+OqAAAAAUBAAAJAAAAYnVpbGQuY21kbU/NCoJAEL4LvsNchLosvYBQ1NLFMswOgSCyPyiM - zpIr5qVnz9XAoE4z8833M7NVoiQgrX2vVRZJFOh7Uw8Hfoni+4mf0/wa35I9D3/wdJcceRoGL2k2 - AXNCQWaAae77/kFkM6l00aFlpa1h3hTG5GMiVo1yqJNVGtSzai0wli1CgzQwUUtY+R6A6dpSfhEc - Np6LsBAnGpmxrp2rVDgnBtmfTNXIz79vUEsDBBQAAAAIABN5e0/5dHIKagQAAIYLAAAKAAAAZGVw - bG95LmNtZMVWW2/aSBR+R+I/nCJZSlaJQ7LdixKxKgGzReW2mGRbCcka7AEmsWfcmXEIL/vb98zY - 3N20b/UDGL5z+ebc5nxgc6g5fqsfTMbNlhf0vEev59Rg4P0Dtfc1+EDDpQAxn1cr1crtLVyWPhb6 - 9NB+gDZNY7FOKNfgh5Kl2kKPVCom+C1cu3X3+o83LVlwJKmkXzOmmKbqVLyQQrNsvgYuIuo+KWBc - aRLHNKpWVkvUtwDc/MWzGMxHtdLtgOONx8Nxfkx7yjqcVSsA9px9phTji61F+krDTJNZTC8gjSlR - dONkI3IBGEASS0qi9Y4AJOSZgsqQA9MQEg4zCigTLhGbS5FAmElpgkT5C5OCm4C5hsZCaAFUSiGr - lfPimD7VWboLgvlXUR2LkMSob9hFNCZr/HxNCTeBNiK+N4HmeNLtNFsTv+H8F6V1x3WnRGo2J6FW - hXHKLU29JBq2GB6cKSOCARsMJ+B97voTrJOtPawQG7XkOWLyECh4F5ptr9MdeG38HvWGX/reYBL4 - w4dxy8v1DckTaEP2u5YmzfHfaKDMUg419ohNV6uVFEKXWx14nydBvznodjx/Eoyak487s6fYgd2E - cDanShurAEd2R2PvsTt88Mts59bLJb7hAeC8nL9pvsD/MmgFrX47N4/J7RbF+pxFGag1D7eVXiCm - 2D8Z0C/A0NZ2mmzr3KgaTbhcYPkpFmOlFud8t2uld0Ur7ZdvwaFn6jRew1OmNMiMc+OzZswanzVY - iSyOsIWUwFf5vAn6wYEaDknTiGjiTJHbdKPshklkw/FGiXj9UXmBINBwNE1SZxoEQWTn1sT8lIRH - InE2Oq2e1xwEvWGr2QuO9bXM6C4fG/dvaORUUHbTUUc49pWM4ErB1dcycL/lSsBjIn3//qHba+cl - Z1PTV7OMxdGI6GWbzhk3s9Iccl+y4YykWEiSdDDZ6uz1z9/PnSkKGMXp9Xu3Pr1nfPOHiyMS50iZ - 3duf/tgBt7uRju4REyzbCx8x4bYTmv7IHZiUC5yI/9IZNNM0ZiHROFIh2tpxi9F57cIYu9II82xB - NaQkfCYLc2HZNrr17PVBW0kEkdAcJWQhX/PQ8b3Qrop5zebsu82EDm9csEEHJAxpNouZWn7bVyGw - 8xWqVIqnGoZAZDrNdGn5XV6Ggs/ZIpP5scfU3ns/zPFX1w6UfJ6cUKs5B31t/L3Ab3W4nJeTOeZo - p7oBOAKnc9kgKSLlM9WgDGruguk7d7m4c3cpvctfzUD54XT87KdayRnxqAh9EWcIRZKYCpGYZmzF - /G5fMUxFvsxh5nE/4puz7OVnt1jYNzA5ChrOL0UmHfsbJ6NdGvcWqWJfrNdyDx3CzBKES4Ru4ZrU - 2Be92NBrbK0ZObiaHaxm9kgFQTxhwclabxbMYUkUiNBuUlj0mTQtvMKuNUvjYbvmdWj84C7lGeUe - faHxPtDBrayT8dAW/U2+LhoKpzobutdbgX3dauUs39tsXo6odxjHjkS2KgtDqtQ8w5sR+f0PUEsD - BBQAAAAIABN5e0/gsZ9FRAAAAHUAAAAVAAAARGlyZWN0b3J5LkJ1aWxkLnByb3Bzswkoys9KTS6x - 4+VSULABcgpSi0oq3YvySwvAQkDBkMSi9NQSt6LE3NTy/KLssNSi4sz8PDsbfRwSYJP00Y0Ci0Bt - AgBQSwMEFAAAAAgAE3l7T8Ra8yNUAQAAHAMAAA4AAABFY2hvQm90LmNzcHJvaqWSTU8CMRCG7yT8 - h6YX9NKNH/G0uwkCGhJFIqgXLrU7bApL20xng/vvLWsxSDhoPPTQtzPzPp2ZdIp2BYrYrFhn/FEr - tN4uSUxGcxEk8QbvPO92uh3G0hDqAKm5R1u7fCcFcS6xBLpDuYGtxXVugJRFkM5dios0OX6OWQ/S - lK+AXluTV5LAU5ocaq1fcmzYqmOCzQ+CqVRrWcIzLAHBKGBjo6q6gMPv9L2bAA0CmOg7x1nyl+Rb - G06tqwJQjA1BiZICZCwqdlU5i+QZvxY34mrvkCaHuKf5BzbUNMReXBE6kfHQOg9E2pRerLw1PAa2 - oa6Z26eaXE1DjWFuFpu8X21l49Pk9Gt0SaLNCSzGvsA2ziKxuBAZn1pPQ3CVbWYKtSO/iL2Z2RoV - eEHtbD1noXShqf396EN78me93yb3zr9bdewvxOJfCH/I31N0O+3S7fzD7RNQSwMEFAAAAAgAE3l7 - T00vPwyXjAAAOLEDABEAAABFY2hvQm90LmRlcHMuanNvbuy9aZOyXLMu+L0j+j+ceL66jwMoakec - DygoOKKgqB0dHUwCyiSDiB3nvzc4VKnlwHzX/bw74t3PrruKTMgrc+XKlStXrv/v//w//sf/+Md0 - NFtWBYoxRcH+5//6H/9f8Fv/9xqjCv4//ymOUKqtmwJsGP81F0xL1rX/tQeKlX/+6/KgJYsaYzvm - 6el/gl/+79Of/uF01ZAVxvYpxkbwX+uGPS+sZU0IfvN/n3/j/46awm30ytf/9xQdoDB5+5vgW8ZT - FCaIp78E/t/KP+df/z/Xr1MYTXQYUbh8evCN/icJlv31/Yb/77VuqqfPv/6SURTdnWkWsw7EWjOK - JVz/5DKmJmuiBVuoaeqm9fh33ZdVlY8BnW06X7/eCl5HVoS7twiqbKOabXqELmv2A8FBVRCde+TO - C6wjUp5xYmTops2wPtMb1O2TIm+hfqnBr0f8h1BO0lu6XaoUy8Xy7V9O7zQEjRc0Thas+z/5fxzK - nKlb+touwpYxEuzgTUX/VcH3+S/5NpQfz/uvK7YcWeEFs4hrtiCaJ1u58CkGjAIm1SJUBF8yuch2 - +8byP9/P/u8buqup/xDhInuRV5Tgb//7BfnZniORX3/85vNc/tJZyFiwB2zauqYJnK2bnwELHidt - U2BU34g/P44ebEELTMYqDnRRvNA8UyypOyYnDGRtW2z77G3B/ypVZTTe/5VwJmr4L4qoG0VmS5pv - z7bPiDF5oFguPbegC/q3xME4tixBZRXvZvif5PWN5L8eHl37un3y2O1TUS0j6sfHMZ1XQyeJSd2M - ZEy3bF/pRZi1bJPhrm48/NAOZ5G+Aa9l0TmLkaZV3ngKHxjMto0iJjD+d72UYiS4ts84IOlZ54+p - BF4R+F32/kLtf/c4+CBUpPFxZ1LRR0PKZvBA5Fm2oBYpyafgg+FFMdbWujHrM/K1YiV1+7mD5e+0 - lqciRLWN83yZdOIlOUlQmWwcFu5/gi3b3lDnBaXYVmT/n1YR9n3wXkBk8/T9XsCmdgp6wrEhTN3W - OV2ximNfSJy/IHFmA7z5mqkfM18+Yvple74EYBF4fPcv96Bfyv9rrf/+8yNZ/tlg/7g7TFunZ7H+ - ToXef3s0bV4D+SR+7M8EU6lbwBWKv9QIHj8/tB2EmiZK5zkiln20SYkxjWtE8sPZoxR5kao4kFmT - Oc9JvoSvoh7fIRi65n/l+YuDZIbv0/aCaV9XCz+UciVFPM0HiSvezEBvnr4a6fWx6vPHLsyKpGDK - jCIfz2FFRzdVxrYvtv3mLc/Jr9YemZAwZVUOdPfpvaTAOaavd9/Peoat+2GzIXnFRa3cbPtQymuZ - C/JcYZmcfhB8K/zKCrykWahKcYHonKMKp6TVx2dPiayHp5MN/0oRLEUcAeHdwmmofHYL18dSdAsJ - xIrpLi4Ov3SO/aLEA5GHPSIzohZkEzirSJkM99nQuorOfg2MD8/i448PFIP86/lf6dlh9aXCLtBG - sTvgZyD/zO6Cx2ploNxI1/ZCixLT1r6WHtGt7cOHfV693JNR+lY4r7GfUcWZ0RRFOOfGiqQhcCd3 - LvCfJrObAeFPgKf02id//XNKy86Av5eK/wIT/iFMUiO+Xz+nZ9JfL0jBPEMv2uJEV8+GVLHn3qQS - 8jDNOy38uwz1qWgxzfasntwcb3Y2euNqI7hXSr8MqM/heMig/TFV+5EgSG2buuEH+3uZ+xiXv6C6 - /h7X1qflyee46Pkiww/JQ68uFEZW461FYEXU/d9KMckjLmUo4RBkKUVHYUz0YJiCFUY9Xyn4PELC - i5P8F3ipe0lCO6WfSeTSJYOcSioyzZzSz08Nr7fAz4VYQZ5FzzKz9FqIDyozr08LrMxoxcb/PEDV - 4vWXGhMsQYtvB28weZGWUgqGFHB64U/ma4HXTaYIgJlyr2bCPRafsBaeFvpXn/Y4l6amgLAviK2D - Ty/Q/ccsxxKKFf+ZzF9S9f1sZi+xDsVK2f9fVi8wJd9v17Pi7rD+D06xUi2WM1P29R1QLu9IQxPh - nGwqRvzWW6Viwe/fkNR833JPZrtvWadhuKFekMRqQ74gZfTf7uWWzhu5DxQ/82EjXesKmr/64Ern - 8DrCPPhkJYcE9a8p5o39COkkpfX105DRGPHjTlRGq8X3y5EnPuR9BjI25M81mCLud89GWE3/W9R1 - uwUaW0s/pIrx8psNxwTWcssxLxXGEfZuszmN0fHho2ONo3jbCZGU8NIGUhzi/iyx+2gL64ukoR+M - 4iu+aELLd0MTmMp/ml96uiWVs3t6NTNE/4yfp0SIy1mfr3qlf18E8THfHEoJrzZ30ttBSG0PNqt0 - YJD+/IDG35TJDSnKh7zgwzZ06bwHncuYjLfzE2a9cPf818/n1c8/L8recilqiRkkx62FeVlxEGH6 - /JW+EPOHgRJ3z+1PbH2hGqfzn20pVBYqEm2+1YenLbuQsj4Jad4/dz5T8+rppzmSSA//qMUJR5VK - 5vDp2MwlQPpJQn0dOH7nvaON8B8DNhQcPhT7IEuFMDZzjV7v9r1zXvD53+Dr2vxcJZtlguvjZJDV - Ms23yiI+OK14w4XR96QDWZRsVwj++99rwywmxZhl55F89u2zEVavaVVyJJkgLk8HBezT0xkX2vfa - H3WWSm38u6evWrv9klDOMXxFUfz1frbZnDxGUbTY76PJfYgyIinu1fGUHCa1CIrNQ0mfPVcCYIMc - QmxIP062H0OUTJLgn4BLMOLzzOW/rGX8i/T1p6fk1/NZKBU8lIXm4HtSjXV/WSj2haavah8ug1Hi - quOLQc7J+qfnB/PM1Oej0fwTSNnE4zG3hX7Enn/buM9wjZvPivi/17V/eNUYZx344dzzk/H22IKr - SAssbMiXEu7T5hsUZdSFPVzz8FyxdX3Yf/blOa4IFekPGdPr6uXFmdInLxlrSrABGPRHDAHbqf/Z - uR1F0v5nN6m560z0+pTpQ9+0jqz4lhKqn8bPjmuRaKa6E5kmmJ6Clls4edN1Kw6HvmDZ5rniJCbp - yShC4HvTqeS+B9SPHjOxuKDaXjZ1LRiwc8af6tjLlB+TXbDFdu+9YjK6Dt2Y5DNLMP0gw7xJ0ofi - EroZzE+an/384nCwdCWaOq+0Xzn0M2Vy//XUhrPyXEXYn/n82NefSb20vJi/fA0Oln4HOOHdUeCv - o3V/fKSOMghuaP25b2bLih/DRByGY3bjC0roupK5DdyoKkN7MIzkdnAfSgTAnKOJz4qIpLQbQKLR - ObYUVKZw0aehe9L4tvrAp63r21CW945FVPTu6TsMJ7D+ZyTh0dV1MYwbfc2h59otgTHPMW9cJl/P - wBynO2cDjMtrHPw7EYPH1odxGVGubNvJgKGtjsALMaKvgI9u3iyQ41EWCV2RuWiD9YLcydnGHm7n - 8RXr7a/7zT0nuE2snJIzGhMtXL3j0Bc8RDjlhaMCn2AavieNj/oDn5hTc9xV0W2hQ3wRbpigp2LG - jsmogqub28gON99lWrxm2k8YXJZPCcIyVUkW1OUdQ964nO/ERAzi01LxNrmRcRB7TncIpwsyolOO - fS2bMh+D0orhWK+1wbGIEg/FL0YzPBJdsDomGJuLFhEMdO4uuxyLMFbeZSjzvCK4fkAF+9OQZ8nR - lDvcc1Gfjz/0TsTBVx7f9Hh9TWnI6MFQ9KihY0Ab2XwuRNG/MpgRYU3TbSYePt+VGCETNa/pL215 - IpHHNuSAeMoc9ei6OVHFdYjfDOay4La/7wiKx4VgxIjeMSClGBETFCOOUQdfHcufj3ReuN0SDE04 - duVo4ETX6lkhiBDc5RSDcHC5ZCkG6V0v+bCUgmX4Zie0GU6KnCm/p43vGr8Y+RZ82WuKSO8GG0mZ - p/kvNPEFvcSaQVBBerFIf8UWQ+QJJd4WxWsGlMloVnBjV2JV/ORI6tw2VHr/jll0oyWDu96UaaTo - +UITJ/D+Jj3rLjLhdzPFnhX13QYTy1vf0MWdIskgFOGC7aPICfM4hhAtz972p7Fr4Bp2pom1NHhC - FHHkPOUQPpp9Rh52inxGi2tDQdXD5MWfUU+Fc5gUJnP1jJ7cKWf3EY/8q4Nm+E3IWDPsEwahUftJ - GkXoF9unCTZe40t+x6Yla3wSCf7lu+O4JiegTri33hc8QjCvF3vmvEF/zyXU4vGGGrnuHnq4tgmb - kX5PH9/iv3O6MM8YN1sqr88f3lAH+PtT/V4OrqKJ/xH3bE4tUqxQIfpLHqjKCjx/bt0SkwUh+TMt - F8rr37M411wFZZRs1CqO0LntnzTx0Q+XVb4h+EoYhownnlCSth5qGX9XYxIl3/KCMD5KSYpykr70 - d1X1RKBE976+v/s5RKYPOjsIMeifFaKEITOiq+hCc6+imPPrfeVwaDJ/HXGqQw8VXI9eXiD2TZBW - +czdhntKFVVJKz0SVmRF34OKaQuJfUccY35qSe/t4ofWQldw3SsyuyKu11VKKZlkjF3WTBWdj8Ju - vzc37V1qwzLxJXkDeJElR+xSK85Pq/IvPY+al8oyLT9+XoSYjc4eavnywe8qUm4Ynosw/0UIngXK - Db+vEtSMPe6roR/xDu18dPAFSm5q+HrmUsT7LzLoR9Fyw/Qkba5mHblhZspQnyTOD9+7a/ryMNi/ - yol8vGQuE6Vc6ub/Rf7jIlFuCN4eG/hlk+LjiYbAnF8d3I97h2TK2rv95GxV+HXuIonS/tZl+/eh - k3wwvpxt+WWrzRcHd3LB/QxIdvC/OhmUZorrU/Xld5NjQjYERdauHTBqxZeXOyZF+ZXcWSL9fXwq - RXT/nTnDW7CyVImZqqGnUh4Rf0s+zf39v8hSzCwH7bOTiE9NJrEcz96Uk2B3ByRTGhAfznDGswbO - 58wYRjgQ76TKDsn7jcF80Iu8X5n8BOO/1S29oqFlDQSKU0GU/Td53/HI09DlRXP966Xdn+m+2gEG - 7+V1N/sA6ME+choen2PMlOXKJ7Z7eUj7D7WDCVs1mI9t3XxNdhr4PmOefiOxvL1nkrgy9jmBdAsa - s3bUyW8CuumiOBRshvdt9pRZL0IZOt2bz81jKOTgbl+8LB/xnhx8+IO1OSEPgeRgW88+JTOF3LXk - SAv+NPxmto72D6x175DOVqH/qapM6yjR7zl8k/TYSArBQOI1ZJwi+n9lAHFFMuuxn8leQGq9kJKU - zb63xYzVlk+E9AboPLd1Yue6M1bCE1gy1MVj467oGnh2b8Cp5D7zHNGPj88SJzuFnqlx/UMai+as - zw6NYh7ASaB9/2WZKvxP7zj/kSH1IHbGCN/sc5fOrTTSqKpI1Iz0Dy0IEvYUjNPK53N/j7RLO782 - yCpvzO8Widys74J5SkYYtaFt2Hs1Lo6h5azXFxebvTf4CVLGWkl9eyJZRJ6kGcDrSfHP6zWPbY+7 - 2S6lCsVnp4mzxOn6+dmi9NWZ9RcU/Pw1xTV3wGWrHyvdyri/N+kYp31QnvZgZV2Vd60xz+rgf/Rb - IlLqJp84DfqigUpGyv56W+aaznAfL3yL7MQ93EK0q8laU7nu+930/85dWTdEUftrR2rWmG6jqD9m - FzP81Ab5ewr/r8T8MjOrr/bwSYyqTUqMabzawMn9QOWXTNnBdtut6leEuCk2z/r9gfKduLno+JqQ - SknXsbvSv29XnQfc1y/IDPafF0D80VVKCrXVkTa/M9LhT1Qz1OCeS0llKVyTEW3t8RtuvEh+ZUXi - yyf+nmsjol3NkE775D9R5B2AlOWAzWJzMN7dCrnvvD5KnzHO1w7r7wqE4/L+dpUpOuBc0h8Pn5+t - DlLMeKRxpenfuL+bYIZJfqdM4stpwu4uZ9IP/NTN40qbZwPvKOu75AWblGT6DvzUH5ixto+3fQSE - mTqTbLNx1+AyrQOoceLU3PxyO9ND309C7swmr4iplA+D49QCX/O9/7k/z8OaIdvl3E/QstXQw6Im - JQ3Fu5wyV+N/EDw3lBfq884HvzyGu5cgW7QySMLmcV1kikHF88/NUL35ZF6/wExxBCROjCRMUYS+ - yfHuBrHvnRWg2HgTLMa6diyVZMjHW2EytMYzstmbYfo1fFEvBn2n38wBzqO07uW9t+km/1NJh2Yn - /OlFaTu9/Czl9PnZ2sh3jjk7mNL36YmToun56gT3XuVYqnqv6mxN6nZiTysr6NvFWjdFIYyCbujS - 6YLyeI4s4eLqt26bRbtb6aEKpdi6u/E2QzO+Na/sDPn2+vTfsl8e8laz3OuDbrHKTiPBvfSZdB7N - CJXge7NDI83l3BsHlxE2GS80bjexU94WvF9oZNKU6P4VWaN0ibmyN6WwUWBOxneRO0N473fXcm2a - nNLuYrINwnRi7PebbFmZyIPgeRlJalUjf2aV8U6aHDD0OfgxofU7Sojzqt19In2WULumbKc2WeTe - XjL9tuV/oJTgD5vbyQIyNLFUC8MTzX5JM0vJlZpSU5asbCHr0vVnGsj+0H/GaOUzKV7aRAVikl42 - N8dGT2uF3jR4XbP6iiJew/P8G5ff6yVz/eM4GfTfFzO8uSu2GfwlJZZ3XQT+8KT+1Jp/tAV5+tTz - +4mePvq9SjtXFT59aOSoghnk1ef+FKV/fP11uX3eiRTMr3zhTLOYtfDhZX9+wN4PpMzHbV/wTUZI - q2Ipzmbt/YdEH+QP9KfeC0kYUCaj+Ssd0y7+aEqVreavH5CTytMspk/saF/qIP8GhYm7jOR3+UrY - 6OX3u9u71iHtswf5IyXqnP6+M9yTMZTbgD25tl/R/fOtz84F+BMWuSH/3B+ldobgU5O+fOad50L+ - AYwv8+6/bG5KP28Sccj8ADhL1aaZHY96rVMyN/dkN+nfn20ls07ok7KoMco0pb6mjw1B//m/IrSo - vXzK16yVaSHR9WVZA/tn+8bGCWP/TK/Zjz7zDs481OYvwjLoOB1thrsTOtZgCvyzzunKdw3gexa/ - 4ebLnxeUoKpsny0M/Lz0aEuMP0qUHDJDN7aSvUXeazIl2wxnYbkXFD6XOUOMDSblWs8/1b7lthQz - ++jkG7ZcdJP+saEb5tE8c5QujPfZrw8t9UMUGfy8xCoH/eZxZukG1d+yyExSYfJbSkOeFvNnZTLf - KszOTr5H0W+s83qevhXsm8/+/vE6wyXNj35UzM3Ls9TLV24/iWYi5s//wD04t5KmjOfdydTv5la+ - 9L44iarY7w9Cn9el51PQsbT0/EPPMeTPPjwXXcGG4S9ibV9jH+L5tq4oN1mEcE8GC2TOMU1Bi8C+ - iKuqYwdXXJ6//eXuxs2xmzec7zr8CKwjRng+8JtzH0T/s3BtrUeg9P0ut6X86SHK51G6rnxCF/E0 - RpW526OZb54OjkHeNVB48yw+Lt7UrH5++PuwZZRnH8qf35ANZG0X4hHf91+/+RPH7xVs6Aef3MX5 - gsI69Yyyvn4aMhojnrdE370plBqvu4eP+3cfCYISCVM3bmPqEFTXvc0Pjz/flYQVUfd/K6nxyK/z - RiziRa3cbAumLa+DWqiP8t5NVFGePfnar0Pz7zZg76hCq+8reRI6yXLa3432dJFgTMb3ukp4stNP - Hx6fM4ojUI7x0TEH7XOmp4CCDiqYP42U4PEFonOO+nk2OT1LMLYUjUJVfj6dLGCpFMHSixk6wyjl - 3FQltVjiOxl15pgZJOfvzhKZNE9pJmpxEqvvTbqKuA+mf8KUth7ORnl2loniZkS3gxUJoTD2WjfV - H6UGkWw+uzgYH6cYQ91EJJRnCJEDgZwihweq6++D4DlofnAXeaXpRt6YRMpmnPLdQs+u2ImYWHrG - 4Xb1l8eh0OR93k45tVc0U/+LTrZ/XRMARSDdleTnRpefF5fR2seehkqg5b2vL8vTTtcOgannArO/ - w+mTCad3Jv/Tm/IQLM3u5s9e8KZJQiqXFb1/+7MbyrK2xrPEOegO186eLWV/nR9SVwFywOrbEP5a - tL5FyAEvcqecywjTDgY+3xl4nYoYmwk+o63IXwvYtPcv3kqeA8qnBGnaCD/erZLS578vj/xLekl8 - kCJtlb+KRVNCK3GdaqolWJnWrL6EMnuVpeMKU9RauB3hXPznG7QyVMztSa20lBKiW0dWyN29Oh/U - /nbf/VKWvPA7nw/MwvhyBu8sSF6wBRlf//MGspYsy/Q7sLuRJi8AUW0vm7oW7OnMGVMOckFpjd8/ - ieQzsfKCNMhZp1P4+RnMELN7nrWYITHJSxO4Jv9x+N/hkLMSfDjyQj7pFUE5Qn/PKJ+jA29xy0tH - fcEjBDOA5Y9r6lf4qG888tLAzAoaHXBmwsLgt9aUM4g3IuWFYsKLsv6Yq3lfqaV+lVinW8fwDsbs - NPYkMZSSzsKnnOKh+HXQ8wWIz96fJ4xZbSWGf2ke4p72naMXr4QqgLhayONOYMSDxZHrqCMVKt8X - +yZzCJUi9EnT533+7BT7hRXMM4Z9SXzEqUsKV2CQ0dB/lCI7wF4fzfr7km2vZckLv1M5i5WwL3TE - g3O5gPklWF5Ioior8LzA/9uAvMqVF47XJU+OOIZclr26LiwXNVxhyVYN9yJmEkP9fE12Il3OEP/x - NVHSmsdPSYEQLNK6wSpzs79+aNZGkUXokNLFBKnWDuRylD1jW8gnMgrOLee+FE9e8fxHK0ZOZ70z - 0wjOC6cqrDQb697llvqChwimvI/u0lNRSuwK84y0eYd3DmolbT3hRaOvPj5NXf4ivZwBy04zt3fa - /05X+P19/9Yekq/EzUXp2edQX74tSwFP+s4kyIvRzfyPdef7w7Z8/tCstZyHBf98UfZiZVGamSCI - uf+eHAs5nuKRC/xBB5nftVCMo7+n+OWptQDG7PV12nfKaphkDNLp27OHCN37UeV5fygff5J7RdET - SbOH9dTKKVtYM4brRoLs4Pq+IDGTSfqbfYYiGGkmD1MNC3PcxLwGBFnD/Cri+F1T8u9aHeQV3H9Q - UXa28W3n0c0gyh1OoS9lygjgbzmzw/Km2exvdGnhsqd5dRR9jlvKyrnm/c4Zx++W6rTVEfzXnZeC - tVODk1iqesE/QCzg+lot94SUvvWxKJLMuVKz9qTjyivSxWuSEUqRF+iLA5k1mWujmXIRzLkzW7UU - TSeZmsEN2unp/sw0quLjai87fdyAk6kSFvmB/4eQTL8I+rE3dIb1ek/dQ0r33TyfDx6FSxs7lDo3 - FTKMJLW/VzbnGuBge53QFZn76uD12m1fKa9lwy9rhX+SUIwp3lybkKWnMIX1yyuJHlpG/ldowrls - OYzSYiyZi0F9vt38Sfz2icWPdoNRKS/2HpXseVPuJFy+eqslYTLSta6gBc2Gk3AhDYGTg/2nm4LG - GGwik77aOk7IKehEkR63U5rMt3OBP3WZS8gtvsk/MAq6WPqGuBfM28LyeLwiUz/bZAhPfJfrDk1m - RqY5dSRp31+wFoU0Ks3NUYPAOQXrucha/nFKJBGDhwMPSXg9tPJPwspfHnCClQia7+sBknAJlsXn - 3tknVgPZf0KLPpp+XEGQiMGTNHNMNrcby2FZmIwbkMV3U1cOUcnuTztFJb+7p6HYZhQhCJ0if/w9 - myepulh8IhLf3yNRbPmLaUVOyOTm/ohkjFaycXcCOh6X6NQ3AiCmb5dxfNCrezSS8aEZm5OiO417 - JtGJcX8WZWyBD4rfGDGOQs4p3qH/e4G/v+AqPA9CNmLRzTT1dL0Hf/4I0vafiYNCRIrH+05i0V+v - fYhFPHEE04sT9Z+oI9I8dKwLSfW1aI9JF3caDeiHjBwZ14BuxKhCcHGM4sTxuCcOgh10tLzptB6H - CxFj6jvRxXZGAfVU2DmCFT3YDGi/2gvEoj3t9xC6HH0pfKJ/uMAtAiktsOdGgzGJzwmp79VrTDZ+ - KHuIBd3N9XWJ5EgAYVSSy6VGxbmPmB49tvqij0h3rlmItVC9ufQBkS0jmKhjKezh5uYiPjglXWJ5 - iUdeA1mUbFcI/puUVQLy2JHuk5u+ErCI7wZf3u+RgFFkyu8rzBg++vz38gq0+IzOi9vI9K+29c85 - 33ZcfgmUcuGAMRofI1ANf7tKWpxpWeN114q5mn3FNSabgR7LHB8us4tL73+9/L0W7pyQtmNk4J/z - u2uIlohTAt/zlN/tVmEiRjGZRCT7bjOlMLIaGYNPdxmmw69tRV6VvL8lMR1u8U0n3DWMsbn6H6Zx - ssFEtsQvDqcfBH99ngSsyHQnf3cO+fwYNyZ9zDTzqysnk/GJQzwVREdhzAT5iu+rJ8d7wVROqZ74 - PM63XgZbI2tFd5PySYDsi3s4k/KJT376KSn9XVl2dB6+z488x3+TRyU0Gc26nvI6HV5MxCEi7fcV - qVEpA28S5KjOl51H9kwxnNElEoxKFkQPcVJ+j5fCxqFPFH7cXTMbi/j+3tn4LOIQftdJxiS/YhcP - +YgkYR+/2GBQxBCaRrX8fyhyeHvXvovAvmi+SW7J45Z5neuzYMMISrSeFnwlYvxd+JVuMdkpL73/ - PvDwqcQu/tdf35Te91/AzurTv+rm0tTmpbIuDZbnMjU/DpMt2/Se3r0b5jDFVyAMc0FEeioO0YMR - 8u5+yydB/GUc/xO3VvMyaJ/Xat7LmsoQflLEWDpXMCYyzSfVlom+8v4AZuly+vKp4fz4uiflrw/8 - 0kHygWfr9KH+d0aqFI5weCCrU6nBtcPPhEkFpbtrbktA1Er0y8ALf0N11Ja+9016Xz5yu0Md5vGv - PeXzw+VXpd43Oykf2H4nwUM/eLOe+0QTqqFx5Iu3v9Yy/6R2wqVcurOoVGzUvMilMaebi88fXzp/ - b9pe8b8+kPyoQU9dsIdb4YqWJvuyVqPJeuXsytr/ZEwVqhbDvutsCtUfUNxyPKTNrwHF4Jc+8vcl - V/9eC7uWnfx7JXyRWzcMRYgu9PUVunUoVvypovxmALx5cVgnG07ehB/zFIVIHxDdtTx1Y5HfGcX5 - pPTGCO4p/hsvLOGvYzrRDfVVtJDE3i48L2eAnq7novC5iRR/i/cJF3GlgOHzA1Gx1Zxd0P2kKv4D - xV31dnqR8ovqjl8TLb9/7rxHkpkJfZ2G81e1SQflq2NlKYz3c7uz3zzW8XEqBnW3e5mq1u+nmdK5 - QUgsLO8zVimk0z4j4ZsALxD+sH1JlXbo/yqJ93M34OEdaSxWX7ncXz0Cspjt3p2qS+xW3hyzywXo - GNPeRy9zd7wlyrMPnQvC5Z6upaenNGURynkufVGul5kBfh9+jB1uRVFPnGRgXIWkjNTpNOZ/tLO6 - RLz/eRjcnyf9heuS9DcDMs7v+1452tN35yTCk8aZAO5r/v/6pVgKA+BuNv+PG/4vzoP/ahwipR0y - wOwUvgQVef6y5dTqpARGbUWVaVcusPTqQ9Nc6+DjX20kiVbvuWd4/sAe1H2K98PaPrvZ/XMa5ndN - Qg8nrJKueNKzyrjWGyIrE+nhB1tOe5h8r8Z+tfuJtu6PEMpFsupwRvqLnOBTSH7Vltill4cia8Lb - PPmrdOSzafqGZZoz9Km46/et5/6cQ08J09uV5i/EN9X0ZIjF979kNf3YZCACZfj19H+v3dMfjV9V - naVq1DrfvzB3lW3FaVpGk4Juzz2Znm57RmHz0P7l68dr6/V3L/g0hwdF7CFfk+a8/thgJvG+2o0H - /4XzWbaeLBvH9D34/u5VSqwZKwNn8DBPJ9jOyyhEyTyFnz2odyLEX3PFAPBXoXATAuYKwr/Bir5v - 1frNXi+8drKF67r3Xzpv/Mefv5+awu9WQbbI3q+UchjGmYjzIuz51YrNpiQ4C3jj1jv8vsMwD2vy - F5fMpbTQ+fCWNNc5P5MMv0VbeVvpNZH/Hyv/w/7Z78Yh1wg42v5Piiq5ZiFiz67Rpoq/eM/geVeL - 6E0y4m/y59Mi4624aU4Mn3oo5lk/ET7v9d+VDq+prs7kw+Pve1TGIg7teUPtkic4Hhyf0dg3bNL6 - 2nz71HkkwRBrnwqkI+95h+5aetNfLzsZrHxOwGeQcfyPcw+fHP3f7i4y3YN4L/3vnCOfH5b+QBRi - k/W/x84fn+7ym6Uub8phK/O/Q7rXVIlCun+Pi/+dQ4TYcs/LBiJ1aXwM3sIuJpN8ePKq0D9aT5d7 - McP75zKo4g3Xqf93hh9ZmsaLk1ZJDSqX8+P/PYn9gUnszqFGobOM/CfNh6nrV66pQkzM0Wbxa0e9 - v2vuX6gxcs8fo4mwpkoIpirfVrpmk3t+lDiTvNKNLJm1vE4fmpuvzgaVxz2GjHY6MkDm8cvTxOfO - ef3uDcwMNnJfNIfKcxPsQ+XCdchV0hf3by1giDIJpw3aqYY+0mbDkw7zLxmnPrB/XkH1q04tfkVD - 6X1V7gvLb95tidE0QYl2/vJiHu/udrryTdU67hH5uxxA+vLf+8JkR3teXW+WRuI3/O5D9m1Wf9n6 - +zckmR6vhPtVzvb71rUctiB+05G9xzvVfuFhsr+vd+OvGvs59DN5ETmHIfsZhMV1UWGe/vFxKa0d - 7i4G/IVD6EffyDyH3N9aLZNFS59Hd5u6L7+55fEX2uFftC/3H2IuwW2i/20ovzIYz0f5KcxbGXTY - +Nep7OXjX/CHeTZQWBIzOP9w+n9nkiDFYjLmnXL/QTlJb+n26Q7GO3v4x/aME7aGqQftJ76/9B/r - HFZebupbM4ol3PxRYmqV4NbJfy7ffP3em7SH/8Jiy5EV/rQGge7v0fx+McNtfTN4+eJA2mfvPf/0 - P+eFcmmONc19TYZcp74mmv1pTSSbElpYKLC9xgFrWV6XKlN2wrSpVh8YY81eh9zUm8x0UTd3LCjT - DW7Shn1mfWFNHubwmJn8r/918z3GRUXql2SsLxl7J9n30xJjScQ7iuKJoqg5xlYsXuQJg+Ep3BfP - p9KLsGUE+55BWik7bCfrmdnTug2jTlfdFV+Z6UBjaJQZqmfUOjuPKeyJ8YHY1h2xo4Hz7r7KrBrz - /mJa2C9Vuq7JvfXQxEyrA3VhciIeJQaXZh03PLZF+UZixjI0X2LuW+IomL/gFFkXbV1by6Lz1Z4h - I+Rhe4JCk7qGlyZLYdodk8ye6EpNCpD7dA1FyHZl35PhklE22YqrKnuSnoFIgd64eH+iYj0Hwg66 - 7lXo0mGON+BtwcCXXTKMVXNP5AuD8x1dHFS1Uxed7BAtmetGs9QSxx5WMrvDpscBdrUjEyJkzO1d - WxybvS2MGrOmAjfcua6vC0d7idYBsO0uD1J9QpQLNNyuzgQWGssNiaoNIRUWwyF6J1tINM80kZEk - OUlQmexgXLSADgTyRFOhjtv2gR9Ux2pTqE03KiZMVuZA6KyA1RAewMctu1huRM3DyRoJ9MpgZVbe - UPtlR197C2UBNglDcbSVfCi5ABwCRutWsDAYngmiA2j7cYF63qPJCEPJwl1xulpPOpshy7iksAV3 - 9mCz7K3Xqw7WKKs+xPv6dMkbymFdHrG9rl6Y8rMqa4jaGIaFmurZJWJbVboYCeINC6AQlw8zuK0H - 2ULBeKWJhCTux5e2bHvnS63OV/xYRfjUBBuRzZNte6Xa45XnaSGs60pBKDizDdoETL4sNHa8C8IV - cL8AqJHT9Ydu0+hg80GdaE4OZlc61AmoagFIp7RClSblOchkXTHsOrQCsflUkGVO3pY/Wal8kVk9 - ycxdZD43/uYfZP6EfChexROvWBoZ6KIY2EGtCNxv/qSlgS2r7qXh0qmNVwt6BNp6ZyGZG5AlR/VW - YXUc0Ud4NamO10btAFjmtrlqLzvKBqW6ZG3NHI6E2+VrBT/soFcKvB7j9cn+KCnRNKDcyRgN8Qtt - 8UQbC+FryzkrO4yNRbnsctO9IPTmc+0gVtXKEakx8NrlQRjEgKZjojVDlKp1mZ7OyQMwqBvWZDft - TLcatOoWGEqXCfmouIuuLS9MjKeHc/mTH7nHyXiQMhrKX9Rp4Hyq3cP5SyiRHeorxxBMYNWdeg1z - XcW1MTtc1F25VQHWbVHn7bGLczSw7tZREgb3yLh2XKFHlm1X7ZrXWNcPa8OwjDWt9/oaLaqbYQGs - L/qfAolXuOm+zDLP3ckcVwd3vBJohNK3/hI8OwW4c3ppLNYoJBpb0sSnI71GIfN23bKgPkFRpkpB - h4ZnYfJqig/JKbxqUB6GwqrBw1SrRYymqqYIew+2qu0+pBFrxGhTu0+rknvQ7FsRo+F9Jo0E71Sw - 7Msceu2XAwTFqZlMnaxbwirauNrjNYliRAKj8c7EtZUJZLLAZufWppS5IyxidzQ3Uu/A+TPn0Bt1 - +XXVELEJf+SNFjkar1cUOpHX+mx7UI/LxSenYgYSnmc5817CT+D+pCyeKd9ie32UF1iZ0YqNyPc4 - 3x5uA7JQQ31Odsfl2XTa14covCuTXJObHhsqCx1Z71BqrRCUlkSCPx4NtSNtGRVc9yoI3KU7ixZe - 1bqKyhQcom+sneGEqA0WU22M1Z57mTBgWGcwrCsY3C0YgeOwvsB4rrG0XlI8vSSUctcCr5tMEQB/ - n3bLOsxQsAoJgD7HCqWVbdtlzpG6jEBMln0cr/DLhszsiHp7PzbmfXHgsf1pZz/ZLKbAwD4sxgtq - Toz2leqmrNsNZ17AzJn63IWFQiM19SZ+Swz9Vn+ffrtAVWat9kiu9dljWV/QntbSp6Ld3VtubUXO - UXqzr4ClvtyGh4025B6bxyPX1uShMOng2x5gM9ZGB7YLZa+0VpKhDGqVbff96H2LRur6jf2WCPr9 - FZqcTCtj13YFCTuQwmS/6i+EgkzyBR5crEZblHPoYWfJAHKZ6VaUgjKtg02MkLn+UKHYnmWDlqEK - whaZt2ZknRRIALKqs9J7Taats2y0c6JwLKFY8Sl+3wjEC91RvysChzbmCFO+ojaJo4DSdXrAjkaD - o6ZSDio3SvvVol7BHH7GHiozylW6W9kdmnK9N1AavjvGYVqDS93xSHIKg7H3PIwJjUhqGk3lTXF0 - XfWD1t+n68oKpOBdxbPJCt6a2sSit0dnK35urem1MEKl1paVx+0uqjRdF15bGwJQjuCqgxxq9q5h - QOUSumPJMobb3ZohY06rXplu9Oe5htCIpK/rJG+KomvrUKyU/f/9Pj1D6qzEzVUVsycyspC04wxX - DziHDKqNLkttC5Rl2AuvBxeG+LjbHEw3hA5P2qVdq9OqLwqzkddvQKy677rthl0YQpBrLduN91HT - WzTS03HSt0TQryn5i9D671PufuN2y90uR9ElghCh/tzhG51md0AvHXheMU230urDu2VZl6obbrYT - KzV92akUdtvuFDgAK2xYRSYa3Z/UuZ64ZNcadywpy/cT7WsoUtNssldEUKvD+j84xUq1WP6F8XC9 - P+wY1BZrl446erAKhEs0Nkib5sx+E4MGdUvXXapRbs8OoFDQDkQJ7mi7MjyB6Rpdh44AvWQH8LI9 - 9Yi1u+x0oeN2P5m+H7mfAElNxWm8KIaioV+p6IOpqNO21l/1BtjB8wb4brvajBY78aD1+dVhjdsm - sd3gBcjYTvWagi0ayz25UmiTxGvw3B0M5SrGjmiiXoaqEgfTwqpv1MIp+hUgqSs6yYtiKfo3zsWK - sJDdtYxv6XpX1eqcqI043h7Bs3qZ3Kh9GtwcupuK3MfGe14rH6e0Je5LCjDuzca1I9/l5T0wn3Y0 - 2DocJEQcHvU1wdPv3fUnQDJQdKYzMnkqghvI2tbXncDYpzOxKqPx/q+C/Gcjm91nvNv0aAd1t12k - 3ay2hMasvmiXlu6xS3RnElbnOkAJPo5ARPB6rt5EDaPsL4qoxqw7EivKaItV1IW3GVNkXR+VkRW5 - G6p66/nK6FzmpwQScmcJubOEyreEz1XxlrJ4onyP7c+jZCNdO93qIXM/qyJT25Ez7Q2ODqXuTJvs - oKlGoMuB0bEbsD1gjaa3A46HMWku6/1eb2W6QK0jN+v4sbVb1uWdZbFDqIJua2xjDQ67JatbGQHW - qNZ/vhK5GCF3I6Gma+KdhC+wfUd5stv3yfMn2JKGwMlBca/w5AxYWuCOdKK1KXtbYbODabpqVMWu - bZqDAsg1qqsBue9qmLirAoDg+uu3Kt3fVDpwo9Rqe+yuXalUUFvkdjMFWvVGneWSBABsILKb0OBa - P0QMje4NaRR4VUPXBO3VhWCp1U96Xa2y6U5X8/VBkxoov0facr2yB9nhwrScBrPsjV19XidHyGAu - yejOD90ggxh6066FWAdpAasAC+rNMb4TUGo9qu3WwvH5jP0FzUUy9UayD2DeUsTF8G3XsrTg3DS6 - s23bGDbmVb66lwY4rrcGXcEDVjW2vR3ORxt0ZQkerKhVrcaYnNUbCzh43M6IwnG/Eo8WO6CWUlVZ - CkRphZREHocJMwKcReNRyCjIfhPHBjm49KWta3vBfHr0MLWcD2RMIKKA8hK3OBIy2q9uWbhZAztO - eTjqAvr+QK1mjUppZ7X5ypGYWn0OdOR1bSTuFaW9rDUbW4jFy/2Z16cba0ZT1gwyeR5/PIcqkIN7 - kDMK1Hf04dG+Lcw/dalhODtDcxYEZTplNbUwVnR5sjea7QVZlg+b0UThN5stNq76IeC0tsCAOU40 - rFmrROIGU6H4GQ2VChjCTQpDRSJAY8RUnBrJHpcO3X3rc/kbAbkHAd/i+5QwPLD3jeHe9QpJC9uO - 1Ff5KTQkugXjoLuQ2/XjZ5pfSXVNx8cGj9QodwK2DfMo4miFbbV0WS3v2WmlANMWvZmos/pxgYkT - vUrRJAEpbUGmuReB2FlG8U5G4VHGt/C+og2P8LMqkWLPzbBUZ+LCg7GKTzR3uRjXyZVzxPZGgek0 - C2hjqzs9BeghmNCUvHlpuDsqQF8au6uhMiqokocv9ZooYhw+Z0qDUR2tQjQCQGMUfeskntZ6bNz3 - pTkfaEPUilwQvnZCO+mzmgWizJgB+FqFRFl1WMAKbcute72xM1rp2NYkgIUGO6Yn1DB6KXbn81mt - ulwhe2swW073kFRpLECL0DajNjxSR/WVhBPybsi9j8GCSn3pW6a3CF6fPdlkNSxieYQFu7FTkBC3 - 4+orgj0Se9exgR1MCaAnboRJC5lsmpWDYjG7bmcyw2tydaWt2IbnTZxB10C68h4lcLuB9rZ8pTU/ - znUCrHQWH3GLFgvcU4Qf1z5++2CFhjA2c52SSH8t8eUtsoPVQ5gecADVobrhVyjSquKscCS1tqVt - JtXWQdb60hRmCGiLigOoxUIbeEQbklUjjx7SkNWd0C6BnYNoOQsK8rZbGas4M/UtrMZF2ODGwK9Z - 5omwb5H+yCQ8+C9aAVx/j2tBi5qMtcCxx+qyN9xNkWldHwjDKcsv93V1eeQKhUpdGUkk116URX0M - LIwuze9hGyq3u6NCB+MFYoZibaHU85qbmbIfwfKIHxbqG2v8Nua9JmTks9TWVerL7+UfUr9VR3hu - 0fVyNxCKnRMj/y0Zupo+VWtW4C016owpVlopjDCc79fMAZzuJKyC9hTO7dTKtFq31lpr4GDyWFhN - p33TrGgWOELJ7RAo94lVbayUHGG4q+3F6kR/G1Zc8bs34fWjrKF08IpHUuR7VpYjoG3M12OsPCw5 - qxqBFYbNQtepQf3ypqn0XHBYIPpTQaS2nLksWfYY309ngq6J4mFkrlvLAVyjx9gA2FRq/VHPoRyF - Bw9VvRlqBNzjtbGiWfxP6qQ45zGZ+mtpu15mANIdWusJYjT7Y05hViNvIq1xkQFEw9g1FXyGDCtw - VZcoS9KqvR1Vl80Gu8elhaibdH+JwCZkEkeUlUsa1X1Rgf0Wr2jT6yceSZE/N5TNCHJtNjmUauO5 - aO5QlgELm/qYl/X1fr5rbnV6BbfrK/DQxRs4PpdXO9igtVWtoAw4dylSCrvVWVMpTRm70GMbXQGp - 0hOURF4c+3oL10ENlTB6SRwe5O99FYWRn11mlha0RKnQmpYAReOqxAjB7BJFtGAamw8HwylmecsV - O6uMDImuYjh9bIvisaH2WGoyAYd9ZdNB6wMSpBlRnXeclqgPuM5xuVC2b6H93ri4Fe0toA8kMWD8 - 6uqaHZJ4xd6uJwqsD4fAbGpxM9vgpnpJWpQ3srY4QEypP7PRiX4EdZdZugq4c61xw49elvO5tjmY - x8MG00Gt1y5AgKMrotDFyWY4JI0H6cKB+UUVA8/TDwJpm0/bSaZmnNrCABvj5q4EjIWqvMKGGFTe - yhrJ7aGJLA+ABVarEhvALi8hDjj2CVSGV9awNATdlj+njagW0iHKx7VXAekRMCzvOsfa5q2r/QLn - 9INg3QoYDtVbwvDAXjrtXH1qlrnL4VKn2kQdXTUbUxP2Qy66XOvVVq617SP6qAw7qzK0Wiua7qK1 - 8oAy2GnNm4qgjXFbaq7WNiW1Wrdspyu2zTZGC4SHkfXy2wgt8Hz+/1mPwr0F9AdRCDC/D61cGhTQ - Agsb8uX0yikLAmUBqe7CCorPVgua1Lb9xqrCFY7Tah0uL/x1Xae62LCEvq0qk/7I4eTZGht0CR6a - aHjBtEuNvjKp1Am1U8CrJLguqIWJUMX3c/nTmaBLHwFXYBlfRO5WxOfAvic95XmgSPCe2j8EyaFM - 0mdNs7LTN5rENlu95a5f2Bve8Yjp+n7NVYA5NqkpUIVVcK0ywWi2MYWaVWjQ12f+KmrB2oYHklqD - 1apjuFVboUTfdWFP6G4+HQU6I8N9CxYOylMzhxNBZACLsB8s+CsNUTC97MBEhOrIsya9hUDL3nHT - xgpHtCDNhVZdFduCciyXj1ars9uaHVsc0Iy/Fq0t7FJ1B7cP0/lg1sUm1kyvNuaQ0i0Hmy29obsH - w4NZZH4IGQHYG+LYIBtGduCOOmWQr2KzFtnEwQWi8y0T2qKzmuQg+8renqPDdmPQtJy9OWPULmcw - Y33bhtzliOCMsgGSItSudrXyFK4smofJ1D0oLerFNsVzfL6EiwKqYcQG07GlIFnMnXMcmeHaaaKu - Co31mqRV2tM6JirWSusPa8awJ2z5ld7t6XJjrfXRzlifmM6hN5vMDazV4NdGq1Be9VRPYIyuVhBN - 3lxYeouWFbzz6azrLUTP5IwC8R19OmgXYdY6ZexOOyeZQU+qmxrVFdAmBDQLUhcjtiVkNVu3h8vu - fuK2mQ1szUrjOXqYso3eYi04TNVZrDpHqtmXQKO3BIaURJB2RWERbTsA+gziuaUoJn0vNPNT6Ph6 - uGWWklLaur6VhQz1sdnrHY8/oshW3iybMwXD9/AQLhx6xgQsuEBnb4zXLDk2OLYEjdWG50hgDxs2 - FKl+HKxGFrNldIyukdtlcwdi+5lGw95qES7CeAYhdydvfFVc+KSmhSzjkZUOkYPj7mDSZaIjVuBW - +UCyhanNVKW2s2hI4nhZBWoKL3V21W2fU91qTe9NgOMYFwS6BKFOy0a9guQirSbEMgdKXdhrIf6Q - iBejPGGSEvgdhhNYX53ZKYAz+T3Tn5dlGJ6gwtybdmVjKVTBHXNsiNoa6VTmk6WNdeUqOmMnu4LW - aEoI1S/NCqTYZ0Zwe43v99UZymO9VnfZGs1gu/MitRwGu/W9wPGVcGWUkiK6ui4qGY4Db9BBxbFS - mbmiZkIeseshO3lY2pCK1/P0ygpBtvZyjYwq2yNRE5lqqbbvGJQ52o4rk/oQtW3enXNNFm8vQJlT - Fy2H2liL2LNyUbwVN74SzmxSUkHPtVsCY/oL3cy0oAwZH19+uF1XTcP1CsslyPHVudDZ8bthY+/a - TYOCBlxF8PpDcUwRIiwKljh2scm62pvBZKdFbbsllSLaBVWeuN0K3fXU+FrYuDZ7K3F8RXxxSkkX - X8/AHKc7/hI5uwmCq8qHSkMD59QKMpezvlCnD9u6W9sMdqxDI5Q0cpfedm+XKadTbXQFGZsDA3KA - 8ttVe9Ed+I5sVcIBk96BuEHuFBTFRSv+BPH1DHMneHzNPDJMSUHj4N/ZaWW/4Urb43a82nEMVhpi - Y3mFb/Q27GCj0bYq7+cEAZbmoEUx0yY4W013IlGG1qW2usNrzVm1oo1HGFtDndV8p0sij3DDtfmi - zikMiDrzLW18VZy4pIX/XeOizPRQW4oEh+DQUd2u0fWsXTYkxJtC9hIs+6viOVJpbBsg0T72muWS - 0e/P5og6I7eb4Q7CDbhXp1ioXztKzUIfE5fGpkbuERkj4o+O+9ZFifVx17woHb1QrhzsPWenkbIB - 6AAHWy3cf3MPsRSdhjCCO8itSg/DFqy6mU6wQn0zGlc7/lKiscDm1HigVuXSpnEAUWCE1TqABg4H - wLzVXDOmvqtTUvwpxL6TN74uLnxS0gJtdQReMDPOdBSUPccysKY5kFfV2DVYajpdmcH6EsegSLvR - MlAAchalw6BPN0RrBR1kt0Ee9YVu8+XyEQerkNdwaaBK2rPKAdYpuzs8xndSrrV+FDq+Pm6ZJVGK - bl5rnDJTg2kdRG5XaM3qc6Q7XpUR3iMmYxItbNxai61qW4iYGN16eVZaSWK/EyhsIKBae42JWrs1 - 88CtBqxsDFz1e4OCJTWHy+O0GnGV/ShmROC/yFOBukjoisxlmJeGul7T7IwqparRFzccywIeM1Zd - YzMHGgDf1ZS64HLtPTc4TFTPNXRl6x6EGkHgUL80J9qApe8HtZZ9lA7aVAHHW7e3OrgRfdC3tMat - tLGBP3OJi/9lIj4lp/LJ9XFLU2HXPRwaCQqirhaqBh6bXdupd+pK3drWhR2Aooelg9QhpTbRuk7H - bK7bhdlsCAFWjxXorbwACzDT71ubBY+01mIfmUZwPtyNxMkSfa84xddFkJ7KegwQyk6ZqlynZ3c7 - e5yq2RVtwSELxcC5dZVQCv2JZsAr3anAnLaSld6uW8JN8kA1XcFDj/OG0Nxr1TJa6DlaW2DUMlkj - xXKEMXBOwsW1/Vvq+DibGdp3jQUP63HD44jmGlXrENbl0YNhK4fZtD9iVd/JwIA6KnQmQ4YmUKeD - VWwB6k6FFtdvT4yqLpAk7QzW8+aB1AuNgTEDqr4uouBrxrJlM77d3h4JPtXmaoySHcCiswQ3w9GW - m8mAZA571dKe0GazjuvwB2pO9hrlptheG7vCYVqeiXOIaK6w1WCM13alcn2CIatlYdsnFgfZWHS9 - 3mJi7IBtJAO+FVe+FzcK4s/YpKKCvuAhwqnqOtPwBRHNyrIDFmb9hgyVtRIsgKKqVGlxduCBJddD - hzBC6dOpMB5XR0q1UFCPDWyzsg8WC9K00J3aXWJr4uJI6iG14bjMbjpbKq4etoLHP8ocVxl3vOJq - JDggELTrPU8Q2WlhTKwQAoYH4Ngdt81jo17uNEV9VyqNemOVUKqDPcgfC/syN50IDdSw2LZQ5iB8 - ijf2vNJxhxVw4tXqSM0cTBTPYgv2wEBHEdxNUNZvPMoZAfl7+nTQzimS4TmsBpBDHJ+N3ZaArIDJ - BF2CEr3oHWtlZAssj+1SC5AOyKBVb+BKvdbCumOpreAuVCpjBb6/aru4PfPsgz4cLe02qXYLH29j - eQ1dsmDmDbOUlHJzzDC74FJAyosl1T6M4La8BRsLFUNxQtzshvwAgjbI2IEaxmagNqeFOUEBBA3T - rgvKEqV2x+sBoU2ctrb2pw9ucpiCoOlOOX7ajK8S4VHk+Aq5OYQYVx3fZ0YzLE4pWxXgWF2NGaB7 - 2BQ4AJxON5v6UOua4gIUhNaMFLQj4M3YKjJYVhvt1sQuqNB0TOwLsrqsC3upS0yJOraH7anVk/o9 - YDaPMCnwP4SMAvnNqdrkIOfkhejqHHR6S1DFZytW1TVo2B/PzQpklkaEqJUErwwNCq3+GnKOC8Jh - KtTRVbbHmlQpV9jSiGN0VyvLqO+yCBWShOWm0DFLdBSTv5E4oQt6wSkNXaCn06Ydk1EFVze32e7d - uw3f6netCtGgSqQ8mjdaC16hVFp3CKaM7pvIZj/n990VpZdX1BT0A9DmynbnxxIq9km7Dy39aIoa - 9WYtfnyg64XGQqz3q1Hm5BvBz8ds11fB4+3jf2AYV0GYz7IjK37oG5Q9Z6YOm1LoXglomXW6Dtut - Tc1Z032krK9aVsXs1UpdfFSpEQMcUxFiSLcx8SAsCp2aPeiIW1JvqxN63IMJr2BLir0WjWOzuzWg - CD5J8sVcP4gZAfw78iRQZwrycLfkysjsYEowobE1top1LONg6T2qIPaUgaXI5AEX9f262rJY1WAW - E5wvlwxEnh8HDsqqWwtwKyVlul423LIyGTv9ymYSwQ1JdwJGhDc5sDk5+zrE9TkDMGhpz88BakHt - hmIJ8ej6COKQI4VK9qCxn9MdUpqMCkvF3YPCuLSfTUygRYLYsYqvMNQYFDpjHaAKQ9tTMWSHREc5 - oaN/xiUp/sFhYMHMSQ2FPVLHessjvBjtKnW7MBKnW4MEG9zBgb1xy2nIB9MZyzCo0ZbH6kddmfHw - gJZXtUnH7k6PzIYcEB0YWFrsGBwR3E6fuVyEzP0VQOssdDraeMIstlJsVclJFW2yBIzKfLk346Xl - 2NT45kCBxsCALRTaE4bS+4IKjbxOoTnFRX4A2uiqN+5hC65Dk4sZieyGg2ZjMTmytjYv8G0KALiW - +aLb5nP0AlETKuCRRXzY7Qzrzg0C4dp0w/9uT2b74NY0DubYYDrYurbezKFtBbMUSFxL9fqo1BCn - S2Uwqw/HE2SmbQzU5RVMtQ9urz/pjQ6r3XwyVnvd6SwS0naMwvNTi4wEeOZkxtvJDJ2PZ1VF5xpt - gmQBWsc6FEruXJxp4Nu6Z7Vba8o9YjBfVnVa33PN3mSgSgiOKcvBBmM94bBbwcp2V+oQ09lqp28F - NiK4ic34gUUi2G82pk4X+WaTwdHXagPRqMKAljpzSB3ODAGpkKMNC69nE0HmCAAftIfgwMGXzKrJ - GyrGObawHlb7hS5CKYQ4YaoHqypy1IHYNtwdhoLHCIH6CTLuh6RRQb/diDpxSI75qT2nrmUH/VbZ - T46lVVtY1tjGmF+PMYQdTVBa4vpy32lqrS2yQbgWrtUme0YBBNQdGri7Mo8DdD0SKirQFcbr8YDo - Lb0FyiKIJ7GalwD6U8/NL4GTaODMKJEi8kiVaRwszgvczqLJ3Waw6Mwob8x2pSpl1klpubRAh25M - Sktj6q60ujCY13nnUFtB3cGyYFr8UcUxWWbACTCi2cFsMJHrzFHGonqcJAmyBwaJvE1HYOzgHG12 - cM+3yqou0SK5x1ocYrvL5ZYf8niJ4ZV1XWAP1Kq55Y+wtCiIM6u2ITG0qa4UilF5cd1UZdI6cJXJ - ZsQcsQWF9Pg5ser3qahwr+/FjAr2lTwJ1GM/xjRlPkuo6zpB9FuTwZh2OV7acINxA7cdot4yy0t7 - Y/C7wqG2gWoLhhL6MtLsEeSc4YkGJwx072jb2rquSkuQcNqWRxGsaiFHjlMiQq0/iBkR6i/yJFBb - WZcSjAwegTf7PoAqgnQUxuOG1gJtbNMgx50DS+4pkrIIDK5Ja2FZbwCtHblHlWZBry2Hc93CpyhZ - 1mub7U489hBlwGvglgLGUVajgZBxKwluiOOCfG3yl2HMzc3bPdITa+NtvzfzJKuzYkBZ3zsAv5vP - Ww2vKWoVREDgQp2xJ9LW2rQKs6ExrKoFdNlk3AW26roqrEFM7eBaDZPuoLobYZaU7yWMAO+VMim2 - +WZuy/0hZMAebrVaIqHseBaEpTJdQtROwTnYuIh5yyo0BTwLoFTH2otOQ5ghONHujRtE07XGJR1U - DUWhFZGrrU22J3W1wSyCRX+hlkra9h23xHqZ4Rke+pGcKnNo0YdRuzQdMzo7aSE9rcWt5jO03ofJ - LghYzfUeI5UJO8cYFd+CY9s+iJZYqDS88bYCgx5NFbojqkd2Ol2uWdqNo6yGvoBz5ASoO3JckIMG - Xv47uAwPKsw3lIVNJt0a1uhuXEiXwc1gxkG0xjW72qbCKBPcnVvs+uDoC7K2KZuUccT73HTkGQa6 - LguTNV5bz0s4QvQO4mFeHvVrCzECxEH/LeNGxAgAf5HGhXegc98tDLM7CrIrHZfbKnHYDXhpsgOg - 5lRUqSZlVKscOlx21CrTmUEtqEINjzMPwzcyvqT2I86B8ULNd+4zSIO6a/RwEDqVSg+cVYmjY0RA - WPkpZQSQb6nTwLk41Z1sdyAa6N5oF9rmHjS2JiHrU71QUo8oshTak1qtrAvLJbHYGDIBTen2pKTK - swkDrfjlfrhUuCnjIp1ld6e0l4JAtlZtraxwrgNF8N13iJl30sbF/cIlLv5DmecVwWVMAdYYxbPk - LIthWpsaPIOrjUZbWRd6TT8aLAlao9Niy9auaS3JMmGLklvYqM3FYGaT7b4tgES/q/ZFkD+WrTYw - NvUOVJ6swV2VAKdH0oTYCOirX7Iy97JGwP4nj9jI77nsoJY6ZqVKkdgQ7tL4ypmMZp7XH473FR7A - Ry20a/JDQWYwnG5uralWGOntOTnbww7vVQDLBMEFpu63y4PS6TKFkjEUDGC2f3Fd8nOYvoSLgu2e - SwBmTllYj2hzK99vuEej1GqSTrk5wIxVqWUIh5bbG+3wNc3YDcvoWuX5EBs2BqPRVp0zJFfzuqLu - cn0Iae+9KVNplcbl/rpU53T+RQewlyAlS8I+ckiEeTAIjkKWxdLk3gInPQVZO3VH6Y88YLrtmYSt - im7XXh3bLWzhdLzhaDUoc4IobloUcTSaGmx39+hiPhy1MJ7rEsjUq8I4LZpmZSozSpTGHye4HsSM - ivaVPBHUhoweDEXP9BB3CxjUTM4ZCsvGEOYsbjHwXHG/GbZEm6lvq6XtlKmTh6FrlqsOR/UHgMd4 - BOnspiu8VlUVip0s9sCitxxoqnsYl3yKPfiiZeBrtAxZuBc0KtzfDJIAnu0ykp3pfBdedQ9IGXex - 6bF36DaRllTqCa4E1MvkqLCrbDcSsdsihFSh28P+YrQlUWo4hfS5sN+uDQsCmd2hMC5XW+sFW2EY - h4zoR+ItGa+UCbHN0GWUWc8BlU0NnJMLZ7ZqKa1SUx521LqLEM7Ba69H1TFRRxdHZE9Lq/UeXBH8 - bAUpKKoQUN2WloU578w5aa4vep0hv5rJ/IyOaMXxzlhcKZNgG9TUwpqm20zWxc1qbc/5MQO/aIja - 8cBATVTY1CHyqA5HJQ2tEJgozPlu3bXghUn1K8BCnC/cul4lC1OijjdYd3Eoe+QR3DpGv74c8yWQ - AiOacFACy/wQNiLiD0ySgP/d0fzcYju7MuYGQs3mHCqII92hF2sI6tVMrb04eEN0d4RQhh+iOEmi - 4Kq1727mRG0CtsblWV3Ep8Ia2mgzBkSNfXs/3RAA4tXoHdlX2hFt/KYd+caKs4J8wiQl8IPuz5lh - X2WqOMc1+stdd9AEhkvREDiN79PLJaQDdLvG9ICFyXQUsj40y4ws96qNXr/WFtbwet5tdivNg8RX - emIDns84jzPF43rANKIsZO5hO6gxzhb95JEE+XzSJYvFyqytGXxgKF12wM0m/eEMrs+2SKtvWzNu - 1mse0AlJt3rLdY/Xh+pu5qI0wYlQv4+X3BoO9BblbQFDScgdHcadMTIqT6I0vAowS5YyeeSQBPMp - c9QzDAX3ZbjVMwrcZDUt9/YFp7IezOZ13nZbowG8bZiqLKvb2Z4ZO6heRud1g1qoi21f3jXqfVpV - 2N6YqjYYh8AZVT9OuIVu2Ec0ItjmjYgRUT6RJoY3l212fgFNuNVgxuKTDdBqF5StqsB7jDCRo7nV - 1HFlSVfg2UgCuv1tU0ZhSZmbzOFoTfRKGd8v+cVY6nUlecdA4tzbNdeKwPcrEefRM1xJ9tqfcUmO - /1wW3OBGPVnJ2LdsB54FwL1lpduvMuNhT9/uB4vGrDSvl/qdOiut5+7UXWFS1TssIU4c95jRgVZ6 - e77ToYx1ly1LnE4S1fV0s551lE7LaAwKYkSffoZv74vM/RA5liYeWCVWB+EDnOFAgA6NhlCRGuCu - arEuW2mrHaK8x1b9Nc21HEob4Va3iZk9edOA1HK91QRBtl+XLK8E1hikicgoVfEfmA1prFJ1l/3d - RlReXGTxHjjjRs44wJ/ok6BNMSImKEamiRWL5qAtxtTrs5I1azblPl/lwVbBcRXaX4z2lj112IUl - tdapaHPGPLaYFrDXEKVVFRcHBwGqnHJUS6uu2e95rbEpuS2bo6J08AzQshlRupMzItrf9EnQDpxM - 9uU9k0FFRJrabmfvh7zZJ+BG3WBorrwytiDQX7g9kRrtsY0t0+pGIul1oVGvzZX9pjqnGjZFuahT - BbfuYFulNb1Zn/mmfzxGaZAX4BU4hPgVPo8c4mI+0nnhejNXdngfZ4MBwdr44nhs9DsqMjdBBXE1 - iJZ2dpcAhi2Wg8rAXMabnrroKMS0NahvzP16JkIFQmodEM3A1DGzGvUGuFJomD2JqUIR7FvzpbTu - pYyA9S11XJzHrpzlsfK+vhd5oT/igAUKVkAINNtMbTwCy52Owm3a1ePaWkz1rYGt+PlsUYHLnKKM - lIU3EsXeutIv1BDBaJml9R5qOc4COpRWq2WEGVP/li4CrgFVXDwzjrgBb+loqLhs16Wxx1j7oSxj - BaYB1MpKQalM681NC/I98QrCG2t5gYzaZq+koqjWpMjyHpF5+ChYY0vqyKJgMFBhh9fabDmCwcaM - thNF2ucoDxEsWczQVCsLbMxigwMEl0u1+koddJviuj8cl1YlcbKZLogOPUGGCrHqLl1uLTrrPcmr - OFCYLvfTGtLdsizTxHCsDdbaymgCePMRrktRkS3yt1JGBvhMnQznAaOJjo9jhvV+LIJBgHAswasj - CXdXjgfx+LCFDOdlTG0pLN3bEW5ptSiM9WPjUNFXO0guDVjfT4PV9kSBt6ZaVzRYoVe7AofW+eN2 - 35UjOIUzVsq9nJGxvtInQ/tyL1l2YKsFpbNvtLoreVqqqLbTartt293rE+VQnhibGYtB8mG3U+v7 - RsGRFjo07Xfn1TbWQvSj05MkvLpjm/xh5Hm0NFdBsswuG6vIZm3eiRkZ6+vdZHGhFizDX2kKbYaT - Mq0d4Wjdtp0tY2l6YVWvVDR4KNQJo9yEKiVCOuycgXSk97WewtolFIWmmyWliWJLBF0BrY/KOr0g - hAa5FSez6W7Wd3YrzjSjnF41L4Jyd4JGgfueQUqA57TtblG9vcRVyw2p2muoChScInNGJROg16Y/ - VYrodAesBjhyBJer5Y5cqFvDRTbsgVSko4NNOv2h4h0qlFhxaL1TgISp2d8gEbJRj+Al24J/xy2x - Xvz1vs/fyjRbgluERNGLne54TmHvv0qtyRKw6mmkVFqoY1NtLOp1yivBhHb0Gqor0h40Pxw29mRC - iWz12GYo2qow895+WFgPbLrr6FsrwlrmC8AfwsbRwjeT+OC7pmxn6OobUofAlm3dq3kCrY89ut+h - veoCq48P7Bwfb6qN4xarFAxYGjg4IlF9tQ5XxSFZ0jleVzttr9ypFeDxTNpaDDxyN216o/GRAL8V - MBLIJ8LYwGZdEjgDm0dwWNYpc+fMW7rUB4GRBJQJerJlm2tnXOHZOUHhVRAxQQ3atQ/QHu6MurTT - PnYEfDTwKjVgIO/VuTLQquZwfKQd3okCbNwqwISFfxdgc3LfMNNotORyCcMbPDEV2uXFruUR8ry7 - RKbrDbSQAGFujdqypSliB9M1hKeb7Yk1IqQ52S849EQBt8iwc+gYQq+ytY8ld4ZZUSbPi7QJ3fYT - LnHxvzQjCA7hkF6GyJdqMxsfqhAOLmviXKhp6NRgCVRFR6y1GAnbCXVoQD3HaxzJ3aayhabccSsJ - uIWXS8Ka6jSUrQPBBR4Y8j0EUI9VcqdgcISJ89Iy4HSUxouB+T19QrRxnAyaT4pZd8/eYE32/2fu - zLbcRJp2fUGs34wCdIjEDAIEiOmMGSTmUXD1W1WeqvzZVaVyy2uf9FJ3E2G/TyaRA5GRwaoOVGt7 - iY60ZZ9cJhKlN41vJtrZI8UKZzCkTsqE9mwGcUxQF+U5m/rDsu1NymdH6whk5sgi+KEsjinTbNY7 - JubfoOV5n/+P3PvZv3bzl00gPd1EGj/w47zagpO2t2dK2zOCoNpEmmEAeg452b0c4xRdjHQrInSt - Z2xPwGYWubMZIGkdr53lFoc8wQ9qQ8wVQ1Y7Tq6uetkDwP0d/vJK5/3Qv9n/N7QfnMt2cOlkM3N7 - xd0pyUIi7GGmkENWsoVpSOSVjDztxPKcyMOoFVDh3l8BqyOKMs039jmLjkBHxZLIdhly2CsSgQfZ - RrqnWPwvyD6X1vYbJ/8R/OeDlo+jn0BXuduze7nfFuIyszXOy4ISUHRT0KxNQeAiaGa4N0rYxmpx - t7jhTlhRDOqFHVxOCxQA4IQvSub4+9uLM3S0pnHE/cHmO7jshdrP43/28h/xNzu/us30u+EfTXZ2 - hp1dW7o9X+YzPB5OmE5rB+u0I9y2rrPhfPUVQ946h7beK0zSewpwTDuY8LAdIDmFLRX5Bapy1lwF - BWb2onroDjF3x5TyF5TDD/l/N/v5kNv/vMmMOrzEwyOLcVPreX8Itzmz9ah9YDKRGNfXvus6uEoA - yQu3ZxRosbBuVFfyzyPnNb3WXEA4xSaLcQ03N2yjAm3OnjwEKlDpakHqf9Fa/Svl/0VDffP4+TZ6 - 8K5CdsQ0XuBnWC/buj17kp6YWCzjZX+KCAng5lA+cUME255JlOralgNSO5dVho5AO0ap0yuRXfLA - 2sTQurbSgeRXbHNXJPvkTkL/d7sHRp5WfqE/rpIKQdSIIm8DXFEldUdkjuBC7pzXsKQGaFSeqcWO - 6AzZwnTSbQRn2DeOXrFcgS0d1STmdGGZ0I89gAZyAhrEJGbRurpnTvQssLu/cso3wy+frJTyDezD - K9VQhZGcRzQz8C0mpUvnQIEWbykU1LstoaqCVMJ1z6gEvxX3Vl8o+uF4CkTILTrv6pFeoKXpfG0B - 2FWa1tjdYgjM2tP9fD9doOa1/d/Tvs2/Hsb6miBlUFnLXqekNawvYszvznxC1snqq+fZyM2emeqL - 4RLNdRvferlxSRxlqg68cZV33GHpqhNvzsxxN0DwMetHgebvuYP5J6sfKj9F+vYvf8n5qXB2HdbF - t1TzhxGX2CG7CFREi1U4CLYuMdYmso1OCLEpb09ynJVpsS1g325D2KMLXQyuDL09GBU9L0x1pBu8 - 37p0vwYtdZkitCIJWv5E725+6D33f9PLX/v5dCs0/uNzWBrt2OFEsSbeKjMX7OTMmIuuR6/rMjTq - +mqHIGi7CfOh220X6Dj6xZ5Q26ZsUavFyKr3zV01u9phI9SMWtjyJnVL7Z7O3vifT2F5YfzpkfEn - 5H+SirsW3ZlmoIukIFDgoWowDwuzUc8wBqpnowLWRdgjWeb6g6VtQrywqoZtdcjMIMEwCsSG6THO - q8IIS/oaXMh92BH5/p6V7Atkf5OM+3s/n26Fp4MxIZsXj+zqJi+PuMP5Y7K9RJQAqcu5bicXhGGq - AXUf9BQ+sY/nrjewAKKyaT156TK2m6vblRGFAWha69dLG/DIdeoEweC4frzcE2WeRSYvRN7D+6fx - ZyHbcfDwtc48NeRGzgV6ZKkhqDZsTmNRQzmnnYBA6LJjBilWGFiA88boTmPqIoVoNR6lAfsNu6FE - WPcGe9oVAKXBZXYZacVu/DvCyRwHn17V/LT9C8KnIS/yIX9kP9Y4SfAGDMBgxAMdrTbOkzuCRyEw - ryF1HBlWqSlYm0l/W6alCnmZsisTX1my1GETQm9x5KJBgwkittNco/CYXdjTPdeK3jiNv6i8j/IP - 67s47+voRwmJF8fCnxxAj8DMG2iu254UnmaQjD0QIjlHcpFdRVyV9aitCZnqGs8Z9ewQI+E44zbf - uoy/i3eKdHLsRCDa82QiqzPIpylQoCzqyem9rhzeRP6o++D/IvI9yr83fkYMfQbyt0UN8oV8DGEI - p1aOqFVZMvcKzFS15cpwcFwBb/ZhSD40p4qQQkCLGoXcHx29dcwlS66jJKz4ALV2UvvDTnEinoZU - OWTcZtOo03tj4StI4UuFd+H9tpB5tvwUWyPzu+ZxbPV8DVln5FOujEcvu14ZuD1GGUttC07liwt0 - EIv9acBltXL7eKoJJFXyixYGlMLyLoS4EimDwah0eRZmLmR2NTc597HtXyi8j+2z5efZPjiLNguR - rXWyChYZEDNRdTTcOEg5Vmi2kS79fLn93e1dkjAclvO1EdXMGNckEjXFXDvptuCRaYZKibBcbfHn - UFpwl5/Q9+LvK0D35NH+r+F9UfdrP8W+bB7TTy/+GbcDrK0PI4/yi8GK2XU+JjGpg73YK2JFKd00 - kXbEaodaCSR3kw2J0ocTIPP7cZM3K4BtSyQG7KPTyE63ddy4fLef9i9EvQvwa298fviD0Oh6uE0J - vmiFPzydgP2fjwIPIbmVNHqeAjCTGctxu9HiLY/cXeJgT55hgi61YIPLVauzBMa3hiaf95euYE9n - dWCbo0YhdEzRO90UwBjf+vtE3yXdrSneIRnVw21g/9J8U/o/+//v433Dw3NH/Sjzf1qiURztqAiZ - S4RbsWbAo58zCUfvR0e56DwbKSPDRHpWnDYMmF/GzNjRC3GGZCyrZUrFwHkzYm5jLJutMw99C4QC - VQPoe6w/X47xb0sv/obtP/rS5VHiSPNHfCFPh6RmtJUyFE3yM0gb/Oq6K5d0qFnW3aVYOe9mnhfi - i0uYkueZZNVKPdYYyh4OiBVIdTkwdhtB5op3L5b6Ha5PfNl6z83fN8HjayPRuXSkIKLYe7K1WRbz - DEl8BsziahdkryIB3Ec2CvvJNbVwxezYFtkqu6NUXYuCu8ze5tqR0tw1je5GfKaQHQSwrvUp/ncW - SHrTx1+Tf/Rxkt24CSEmDoHBsGGNgpQrnV5XFgoPx3PMHfcbfdgNhxLN4npGRMIBEDmLLhyrdZhA - yXjAyryYWyGDhn2Vojme7EBteG+K8Ttkd50o+bODvwYuVIe4rLsHVjm+9V3aLwAAPl4Nrr+EPoyb - GOQJ3bwP43CvSoVsiMs2n/YM6BGjI0WTs+k6L5TUc1zEE4Zu7ZLpaDKCBdKwLLaxr+/el/Y7YnlV - vpT6GejfXfw1dj3+eq77kVcpKy0PoTFYZ5DELJsybhaICTbVFdvGnipVjY+AEZnPCyGIpt+UbaTY - Vwi9jKcl9EUg8/mS2VARKQ0rLUqgsqJqwrKfAd/9KvYz6H86+Wv4Rlt8TVp4YO6mCG+EIdBGwLXL - dt8TC905iuFulbq2p03PSp0F++5En/c54mGiT8rq/mgpSyWa51tQSug8awBNk2mQr2koRnKPfrfO - zO+w9W3Rv9T6GfQ/fPw1ebOui0ee005WkhrRbUjJ1C2sT0m94r52Kc3RZ8uCduPTeR+HvlIcN1fk - fO3hjtoPdhRRG3fEaNQ1en7k22FIPQofVklSrHr77jnt3xEbXuj8DPFn+/to//xU8G+P98iBSegL - PPvK7tJXVcoqka+UTFocDyKZEiw+BEa91G3D2OjGBvdnzJ1POm3NtW4A55tw3JV6M9J4C8fQ8+Ew - irt8+y7zn2r/4ljPO17+lv+jB9azDmNcxnOltrbEcZ9Vro+e8hHowWPczdfgoFEFBTE51Ge0WHR6 - TeOsEWwzjexKw8FrP996OGbYgVPMuyxHZXA6f4b8faPqn+z/lvY/COpMGkECSrBp6QA7rxjgdMt3 - mzrWCfugGLeFU0mqKtdpCyYcO4yfdyetF1zLZewAqBX1quMFJA2AKi8MWDgTRGG7GPwE8Ltj+hsu - Po29rpI8HR+dji+fLUnFNWTZIOHGy0zZAWdyDTc85qIiKIt92pq7M7Y1B7YFM2qwlDEGbQpicZDg - Du4WumY0IUEH2sPaRo1tJ5Cn9R7kv5F5D+6X5v8J6n8U1a1k9ETFh+xTn3kgQO5Yj8pm9un2rhFs - 1dOerYYkkhv+TEyhXvUc30Yoh/B9TJD0AWjSeg1X7oCjBafpcrkAY3ZS3507/gncX8b2P/r6b1pk - l1fRI8NOEsp704DQprYZbNoOhrLr0MauoOPMpVQFT2vLO4WTTq0XqyEhT0dl9e1Q0o+eGTEhCrjZ - UZoPvTqUqCUZFOLbR/LdPbE/8Qteqv10K3z18t/wf/qa5leRnFcP3Jj0WEZ1wmabepFaC4rOpXh/ - clvmdMIdjNeN7DZXD9zt4IIdoJn2Yu3mMXTXcYx5mSEum+UqmsquEvjmOoikdpiu5/Pu3Qn9n/CF - XyUXPyV/uiVeuPpvmoOppryrbwvlarD8Ln/C+9DCY4crKySSDBAieJ6LC7lapIDDPYsCtM7B21w6 - XisjcY8nID8czlwQ2sqeZ1kQPfAJWmO96WkeSeNCDXCzxIaoKXifDlTxT+3TL9o/3UC/8/nftNRT - WtC/SM3a05fNfuYgdy30dCrwjQjlEu5nnQMjy0HvGH9AF8t0zvYe4JStmG5X3hsRgcHCo6BRBwoU - ckrYSOdUhsgk09BE218+HcCeUn3uTtD6oLf/pl2EKn9cYwAgkZcT3o6x0qGn7kQslaNvPQ/qVpC3 - AT5sThV1nq/CtSKlsN5ZE4aBp4J31wGl8sYS3aCf2XwHs+f+CAnHLEl2+adfmLz66B1Mb7n4b7A/ - tuqzwDaq0kxRZjEMaqAslpjupTFBbhH4YSwXpIT4Kj/6lUhC2hlsTizqYfO545kG5giy02jANutN - ohdZJCbjCTYnhPv0AHJH0ec3ffw35KV40eLuKRw9jj+3sta03+oSEqPcgZg7y2sNAncGh6SUtZYG - tmNjttseW8REF620h45gMFkFBkcz8kg59kxOAVc0uCr8Mi4ihWHju1eJ/5HdJb6p6pKfij/dCj89 - /TdtcbpRNeKwe2g2I8jHhyoLtz6ujlsLOAoR5/KDO6oJNED6EQTriD11IoJtWdwmyEZcLNpzCb3K - eOx0YAFbVsWmxrMMgiFaKGykalvj00FovP3d+1eSP90aL1z9N83x0GroNN2WkNyGJLCLkXqHp+BV - Gla0Au0trTrqfoVoKj05Zjr3HuJUyrrgVBfXzdYoNSmC4tXwbA/sa5XygqwYN/VQS/RnV9d3FEN/ - y8VnsdNxE9/WJFW4CNX5623PjwOvW1Gq2CZIoAco3jddzDX2tFHKgGe547raAEdU+0wi4zOJlUAE - V2tsd0Mb6m7FNJJyRXekBZ7iCzYoGmTv/b1ydqs7BoPoh9j8F7F3oP+Nk/8Q/j/a6DikbnPahLNX - Z6eDJKVoH2jZxHFATHngZstsT7M2F93psjgnQOPWdvbS7bIclXN2HSm7rJWa1eM6LuP9ZdxATeca - 3LuXxL8D8e+2O97z+PdtdKijb+URHpJvVRmII7U5AFPwWFauIjsIG5SgU637a7/JgdWxRNTa4912 - QFZI8botK1eiglnHRsrTKLR5MGfN4DA6+AG3j2Joni3hjqj0E2D5QuinWuDZwX3ZVi+A535a1f2Q - h1TkN8O3TZeHIG/maaK7QhRNi1TyU2rxXbe1k4DaH5plS1/O3uBer0cljix1cwXs5BomG7quEG8J - tGlJb9GfzMloPJm6vqna5jDsBemeePRDqv9K6j3Qf3XxWexP01Ctq6c8ekpo+TdR6MQcdxvwqI2y - 6+8nI/SO26LIwku/uS7MScowmMbhDVvHmU6x21PKWaXDh3tD5ck84nlZr6USUEXxzCxwvczT6Mvo - +2lvPzU/TR+bH5r/Lv782ddnI8/rFnmqklf3Dy3ZlkSj4ui6eootOJjYjrheYv1insDUStpxk5VJ - e83FPMzV88yjR+CkUnTuUHatJdUxnxuPKfv9Hl+BTBCWnVqpWL5xP90c4S+CP90WPxz9Nw3BlEEc - RXH0wINl7uLtym13VQZnoiQSZjaopV7tigmqgPas1T7PwZTW103NH05mie6KEmvwwyIhenFGInBg - DhJUJxxW1yfGl1yDlJs7RoLX+OLXej/dDN/9/DetoGVLf4t5D1wlXKz9JJdwrIXZKdW7o9dVNUQc - KvxS0dSqE1OBx7ovgElcQiOu0imgm7Pqyj3myOjWHMYR2K3M3K78iNIDnTomCbx7muSP9JrXej/d - Ct/9/E0rGEs/xCVX1EHw0EqH2JFel71ChmJlZi5eSlujWutp2XuktOe253K/lVo+YbnBX8WpVDwN - TsNld9HK9nDWoHYOSuZ0WtqF2spyhbKd65jcnfGof9aavtZ6J/3XPj5Lnn8a5R+JG5HDvUlbSjSI - F7mQ0RkETZ8G07Nv8QVPNDZoIci5gY4kDOOLGF4dALP33KRCunDWFes2+QRwIJ2HA63gJ12lrxaS - 3dHhs1cC72D8zfAvwf6jOc/FsiK+UlkxCJ1r6q2diVfzpbM9k5cBjJDNzdbYiojYQDtFRZmjrTAe - fzp5hwC8SKxFyIMNBA3AjJSqKaeWCVsBAO6n/Jeznd95+TT/YWgeuAGqFguCbftYRnkZAYo0kW0+ - 7/o01WcJY0rDx9dTAPRakDq8AiTbGVxA3LFQWju752EZ0Akl2Ytm0ngdaaEoSsNU3DGYZj/V3cP3 - ZvVZnkL0NbfuwTX0sGjCo7iHfP2gyGkNrAG3ILsGp8oFdwOrN/Td1poMqo3MJHOoUD5uN9Qx6uWw - pbOdgPJYD/XidR/NpUxLx0OQQ9a7R7NfIMq/y7zn4MofzP8atTHUD72KJ8/Ok3JD5AnbsIfbILTY - XNhTiN7NB7IsjGRpaEHQRmLw6Z2/nVTZKPd8q6abY1kcBivfnOfLgUsUaa0YwdUCn1fePdb2O1r9 - S6Gfwf3VwWeB/5trG/EJxwsK0ttx2NG3yDE4+IG6ReHQN3cX5JpkVcI34e72P4orcV4MPgX3Sh3m - nKzZRM2LQycCmuqRV5qpqeXYbPTAfveiqRewPnFl4x+s/wvO/2hgDHp6BoLNzs/Z+AwqcY4Luchm - vTrkTkSX4t4PLidsY+9R+ugnvCqf7JHqGsvvSGtCrCvfOdxFtXWKSB0UlimjDf3DHVuSr7D93ej4 - R1efb440fejcL8uA8qJSR9pscIcnoas4oMA8u9Z6CWb3WGwdT9+v2KmExLMG1oSynfgD2nn4PM9D - B+x2MSjj+U5F+hVqrrhq79bWuyO+FK8E3oX62fAvwf6jLu7oq0R4LKDi7BoldlewZg7r6RmBSMij - +wjDp1U9+xF/2kH7dXNRJ5ojJ4EIfX/jsl3PH5swqSD6OpwNjMFwBWO9/q4u/lXt3/bu//Xyt/z/ - UV6th1Ire0DgRAbHK3TxqMBkAJ7WjjfyYwZF7ZoVuxKfCRBCtvrVkycLD06nnuoJKEc6TEyMLNuf - d64HBOZZx5AoZ61PNMBf5tf+1s1/0AR9/chUBDxy4yZrRtUPqdxh8FgM7REqF2YMyDYtOttI1949 - RavtcH5FUYVprU3Zg3azWWK5mbGs10iJjRdyMeZhI03WBI53jao/qL0Q+jnsTw7+FjgdB+MDQzqB - XIhutyK0jMbTZps6wDirJQU2TJxya74xdC9bek3ICQABxHqRC0HfaX0okuqqCiiG7VqECM3dwvF0 - 7dpq1xLou/VmfkMreiHzE7Cfzf8WNTPdZp9GPXbhA/u3ZoajUKLVBtuu2Pl0wAxUkyD5Iji8CZGZ - dt6JCO1eKVBYVpkMSJ7tavpkuxkiXa4TzVBotOlXCTkc19Af9uoWAkL//jH0S/wktn8p9hPYXzj5 - W/jmbZCIHw3f355wu+Mv4gUEreMRDw8J3fE2dz1KlmI7RVU7A7XBheFwXWxz4zonAJSYrZ+fprAL - KuxCz2B6Lsxpu+ENZ5K4eDhLnwguTyNi/LfwXzj5LHw1ePoIrtX1A3fIDaZTFWzTZlid0g1edPhp - skrWtSGW0fPMBoQjgIgLO8HaabEvQyguA+vb/Gb1uzERJ2/OwpzQE1hYOKfbNhbjR+YdzOtnjc1P - jXeg/mn7acLNow+jEIWzPxFkQQWrPxZ7jpXqc7hfOFI3xTxkgnx30cQz2+atM1cRs9sJcRY5+sFm - rBN6GtYjvNBTk+X2Sd4OGQ5iqfhumfyXiJpPThC/Gf4l2Ndzwn+RsK00XIa6oKXuejybzhJ/6KNg - 6CZuOqhAuGs9wjVBPcRydoH2tz5vVAVc7KgW38qwbODpWsz0zqM9wg6n1aDXy2ZN7kmK+c7t1bTu - b3K233H42QbSurzMh3x65IbXbR4Cc54iXA/luWGUDDp5pLM/3hZIHSivMbu1J4bawMIVUY8c1W9t - LdVGktpZp2hqJE0e6w4coE1a4mVciRKqza3q3DF7aX7VeAf2n7afJWzHAVM9Vdp6ZC0WRxhFR1NO - lAN6FlhXfpdflbpFLypx3IK646gumWXuEvX0zAtbrdVikcdtBpVLTRTpcgcQCwocTNwrbYJMPY+m - mt0d3X2Og/i1yDsYvzC+C/L3HdvnZK4XBantno1vzr4uyDY3lw9JOCKWOpNSeTXVYF4AtwVtpc9i - xO+A7cET8z7MLhUgA4JwzBpvL9n5tYOOrA5ZIGyuE2fFzk4HKdEFi9HT5SuJ6cUqvhfSv2+9fs3K - +llLeu6TXyW/1wAfcfXl2dWnmsOsL7f2/WL4ZfG4NoiC7bJdefMaW7OZb+Gy3Y3YCGeboejj4zVz - DgW3i4igHnuGBtmQGTM9tyS49J1zzS9Hs3IDlua0yZWc61rRwua8e/dEwmtww1ed/U+d94F/Yf8X - tJ1HUobs3RaiEh3GZROilP3RDACYRBe7G3ttwI4SzKLJNpY3Wy+npdiTrwgVO2l3oU8qQFy4zaba - a20Zqyf6zNOWhKW9nr4XXF5Tun6S7vVOqk+l+Z6+YX7hY/+xEbvQFKHJCjJAbp1SZbbRgccZjy5H - ojFIElEB/pBvdqLS5+mV9+1i17lXj2e9lIHJcPG1BjcMLzQv0mVck7MF6vpRKt6D+lRN7/lzZPZK - 3ntMfzW7K0orjPm1IlnTPC77U1T4jAPOm1jIOAQHeAKBBbqc+5k7rZU5z8YoHtgYvC3dIQdx/Y6f - KHjTW9R0ulAgYjSoDTGKUmLkAIiEZGp6yzTJB2h+rR32Q9kHQH63uCu38zvDr8UjbySf8hweR3M6 - VKSFcmoDGprKITVD2td+XinbAzmvDElGy3foFCKMh489jMWZk/XTiXWqyK0bTjHOe3+rRu0el/Gr - MbCwtJy86r2h7Tubr0Ufb4Synxo/yvWV7V8QfsKr1UUeLg+EvDvNSp4N8skyED5TcbsO3YS6DHqZ - sHlW4uKOBHtxg4a+ZQNUXExB5TZJzq2+RzcX+6zgE4VeV1XSxq01kt6KNu/WV3oN6olS81LmfZx/ - mv8laj3u62J6ZHZ4Dd1e6WLTqjzLuGgE29PKACYRHlhpUHtbPqSkDNdmzCmVgI0balXPZI1TkWei - C8JdWQqmqStBHbetd272KgIGqffu0bn/pdW9Fno/7u8OPgX8e83ZBxaarS+ArlEDY6zg9nByYoFZ - cXnaOBR37J9qKrnOoU8tSj5jNHFp92Q6xZLt2E4wJvJi6Ehid7OXkH25KBu95Ecoxnb8R+Nw84u+ - j+L9Yfcpqqbfpd+P3T2E6RUmyVTwHHVmnYvmLJw/MaHGhTquc9OZVRkDOa79RcFSRvfOtqagWJvp - vWcd9tBeFpOjzBm7cfC7MLWvmnbApjKFPtp3h1fqPkr0m9VdPO28QpEvepzmt26+PK6qNMDaxRyB - IGAOGxyF8QaCMivWdvt6dBZmNUlcDFCAGvV6MBUaEtwKUlW0Dno4rY5MDw5XphqAjkXEHScLg8kB - uxh/r4vOz+K61+Leo/na6ANVpm9d0hj8KvK76IucB53/XNMK+oI+ZFdnwAit7j2D787MPjrHwuod - gzWf3J3ITriGVBMWnpGliQQEwmgVmDyi2HQ+d8gdLHYOt5FNT1QhBcAeo3nL22DKiPye461b9d91 - Fa90/R7hb55/XgOgb9OL5+Hpa+CN/NcrrZ76LvIIdMIkxnBzJkSe6TVyR4okPRcH5kqehOo2Kb8C - 29pygXpPw+i5kUdMDMQTYu+F/qBXmz222FuATi++So65xWwsXjo3ZfT7ob/6Ker8QtSfuL16+MvX - h++B9mX30MvANpprgkJ7BE4SClOllxsGDCE6zvRmDcicaQhk0BA2dWppyWexmXdo8rQdMftqCvAU - 4tjg5gBANmh0QW1baTU2LaLfh8JfWQTv3fr1O4Mv71/vpcdl/bzVIudVe+vVD1rDJxJI4Key2UOs - sys4mrU0WeSPBS27FbcHHBeNazrdp8HQZTk0rYFDH9EKFFw+aw2pdY4JN4MjhFFw1Nk90bHWRT// - nlz3XVHxU9Hvkb168gvy7jq9G29L+zL+UvlPO7Jfvp5duAVT9DHMQrC1B0TOY8UTzvCZqyylZxCp - QFDXR3zD3I3OgcYt4rKV7A4vYNxso7kFMtEImcZm9C2xQRV7T2ZbXPMtxd3IEfGHHb5flPUvlf2B - 3e8svjxb3M/wC+0P/lP9wX2Rx9Xwpa/y2x+OPQYrRd5GB668ACcuSOx6I1zHBipu85J+Ho1Zzf1F - ZK7eLAnq2SxY9ij0I3qsaIfZ1/2OWTrb0LrlurO6qB3EJZPQnT82v49+v4cUPYnt2yL8Vew9pP/X - yZdnJ5+AL6jPJwK7bxfAPqw/B4C1FfegkKO9jm+2SbGL/Z04zzAMY8hmSM8hbcAXIGstrOeyLUvJ - Or2bxIoejuR2k1Jro5knlaX5qPU9hBmIXeMdfv8d5vfM8vr5AN9rofdAf+3g0739+y7f41B71uiJ - bVXFqZhFyOWpwnoQCKGH+l4smC3anyG8lpLDzkiazEZ5uryAA6YGU6BeQJEC+5nTIVlpD5eeysCE - SBtT/8O9zr8n9X3L7hOQf+z2fRavEYdj93xooVuaoU47v8mWp/2/In4ccbqoDxeSPI81pI6q3W3w - I0cclDAr/cSUXXuidguK5+ulk4WNVcSRAHUtQkpcD+fbOWhic6tox+4KzmZCnpDJX9sjek9U6b+r - Dl+q9l+ovqcR3vB2R7vU/fULfJuBQP93xbEv/x+1lpRtbcxPGagDM4mkHFielqOAKJ3E72SyUaFU - r2kzogNIlnHThz1EHdgrWqg+xUBesz+FYDRs7bVHO4rwUaGXIvUPyZsfYvEfteFf/hl3tOxtbfh/ - flf+sVX/5YAuB91SMYbZoEG5UUHgzMnkBB3TjSEWpgWRRSM0bNw7ZxYfOeVgt2x1Oga3ZeLsmfHo - 4wzoEqxwgPcbjFngYJDtsYneDnZ/lP93Q/z9bu8Y9J+c//k1/JcNhpJjqiYXV2zF2tmmOOPqhbfb - nBBP5DfwSSOb4eqlUWNABJuqjFlbQGHAcD0qEqIdYETrcAfUGnNzlkiEQ+mZB43r27HyD+L/vrnu - cXpvY5H4/weN5WZMZBxPvXkF9mRJ7mbC7zagdXufpj17EIbFYwkOpk4uoB4gS/NOakxZjYjZBZ4s - 0Y47ud61Ppu0jgr47gwCO+0iKm+Hyj+I/w8a6w6nH2isb61xG6v2dTXE1+FxA1Yi7YGu9OUkFtZT - 5qdXFyaO2z6fwF7rzmcpTJQUFkJSKI4XT86bmizOoe8dR8waBExsg/UcIpZ5XjmZxe2y1x2K+cM3 - 8G9EbiNC+ErV7/H+z9MfGES+cduNSfL0EfhhW62NjOyzxtd1WwAbTHaWBdPT2C5cFunT5Aw2lXWY - du2ssN0mdFJi7yiV7dnXTlUVOSUtLmJ3ZL0DGA45zthBTk01Bt6EFryS9Caxb49+YFv1G659XRTx - t4M2D+tnKB2eyQ1o7iKrkTdeB6QMszuNbIzkoVrJflEy2TZLwgusmW4QLPbopRmWlCWy9HvZ7Fr5 - OOMDaqbmIgKW3ADHAJB/v+fwjUP4P7LexPbi8Y/3tBfonlJBbxOg7vaWP47iOhT41mkgFzw5exlA - J3RgTkAhLEAwnSXlVNZNBc9xA/rIFm4sTSKi6y7CTcKuimOr1ykQwT6YGX2q9yVbCTvJ1OTfD3C/ - wRL+qvDDQH9afo6tUJbj8IQIhB/1TjOOlNNsv888G9LPnYexLj9ufRsHNOywTxl6fyl6q4/1JKtV - iAUiJz4Y/UGnCssRagi/cCK4TgAywz4yhghwuV6NP5yM+A2g/BeBHyb7w/AL/PH3vWzq6tYWX1Os - qKqqB//7e/Iguqere0RZ7qQOq0jIiRFVrsFGBFAzE34glfR0GyYHQUH4qzLQURFOLJUAltBiarIN - 6YPIiHvIN/QJvJJbUnezHeY2fygX9APSN5VfE6b8/1H5DuI/Wd8TV7+e4Xrc1gBPd8I1by9wBqEl - fskk20IcsgHHSSG2XWq0TV7I+Lg2pZFck9Omuo09oTbYWNvT/ZHmc3PCBc3amiW9OYATU2i34elt - qC8lvUPw6wG0D7/vr+eez430kG8tvEU2begWPBEolQNXWI6zG50jOhywLaZjkPPpoJwdvesuMmsJ - tlzHnTM4t9hAQg0/0bvzteawjoMaZHfi0dzRe+IPJWR+Owf8puxNeL/MGp8tPsTwR6W9/tvRvcft - BJ6ykxq1pc9txAvqRAF5zTcXYTm6FIVplakU/BUux63nou2EMbIQSUElg/4l4HwpR/RKOdm+11M9 - CnfTykbxbJ6RNztf9EJc9ELc2yR/NbqjQ76E+eP3t0NiD4uUscDrjJy79HHqD2Z9kEn4yF4chnGd - k3EyERYhB9jguniyWw2IGzaaSchYKEeQTEflO4Fx9JhVmYrpCKfg8j3CpX/YYf0dop+/X+r8OOJf - 7D8eLV/SfirgZd3msLd4K1RJ/bhOXJd7Fsfm9YgekX0stBcaL8ryGh+8geNP5ZqyB+2cWL7aL22j - 43gDir63HvzqMMM9itZ9TQWbtG2qsD/nMU4Ay0nj344FL2Q+1d2avsrMf8r8MOtfzD/XsY3hRvD5 - 9OPjKO9yPoWmdIjQDUgftudp8PdwLOmN7V07KA2PEY6h1I4juGoyimTTqBcXGZcIQ8qDKtZqKU1V - o5whFhvG2oBvfxtz/kPNxt9g6p8UDi8UfhjwT8vPsf16peLDsJ5O00VMDFc8HPDrBiEiMUWsxdYM - vRWsHeQRUXDm+wFey9l01s0+dG7PsrbejHmaBCosJ8SSeLngM6e4T6oCTDfM8uYq9CWc4YW4DxP9 - enni52De2uGp+sbDcHb9nExQAu7bS0aQHbUxyFghlbgOVwTFgLjk9oPJosVVc7c4C5RleYorfAgq - KC0UXDtMhXQMtoFGuZt4OxJJqpmXP5zO/R2ZV/I+DvSr2R1Il8ov8/CL/nW36nE4DcXKYQacEvtE - 9aDtShmzBdrCwKVWglwrqwoT4o9DRzYHgSJdBy3mBR21Qz1X9By5grGLSooFkawuGKGIrIbc2H8o - vfWdyzdp3Stpb6N8bfJxjE+FJX+WP3oYxIsbWRGSIBoVsVxQrGw/M1h2UShF3El62Sc+4mxkDqFC - m4FDAsQGqHH9GJbJKfE214lBKgnUt2LTDWZN4bBq8PYf6m1/I5L+RtibCF8ZfBLgl71fxE9pbQ+M - ltyp2A2RapuYbFqoAGxBTbSBDX5b/u4z01fb1pTZISpvfxoobyDogMjC4qTlEG0dREMs9VKK0SbE - CX5j+HvkGMpw8Icrl39LJvxF4h1Qf5h+HK9QDfFz3Zsp/kL1SxWC6MPKMnlh6OYCs9ENGBS3ZgDu - lKHuKc5K06joxRJTz9EIpLQFNRgl5IB8Sk51epAuuh8W5yMjRgjF4ZO7TuE5u81129or34yb+Qtx - /gtxbyL9H6Mv6LuHfX7ksTxwX7Q9+/x0PWp0Y6iusD+farMv63Yz4keRYvWTYKaxCWJpe2HhwD8H - RhnAl9m4MhRJ8UWdtGkoieGBHKM0j3Ul88XN/s03PP/QRDO/Yz75r/J8XL6Kljq3tlA+YrnEwfAm - Dy5ZxwEGet6VJNVs1bk+Uau6qTWassMOMtj5yJYQfz6Q9oXx7BpaJ9lc5DKYzIsNB076DqsPJ/Z8 - NpPnJ8OfZYsf2N1m5kDpZjXmNTAW1ZQD2UVXdNWdffiyFJPrZ1koXzDeqK2oAK5Xk7Viq3DVRJ47 - WhNKruihkm6DQ9atPtlWtmZGb0bBG5Cf9YU/SPCnwScBvjz+/zCW+FENEIeVw4wImBArhFDksW0l - KghvAeoeTXg67WWr31m7C+piGUtV6o5bRaQ4jcR+oWm23go7+2L0VXAxcWE3z/nh7cD3Ck3zq8Y7 - sL44/n8PYS1v4qfrKB+4UwxzO2TgywBs9fW2OFccAoDlEw4KkjaQR6nEM34grHIZwLpIUUcU5llf - lTlKOCiVUm1VTOEMxSp7wU+NxXfWge7cP5wK+Umm+UXXeyR/PP/x/Y3nNOiH9cUNHbTCqenpBorY - ZFiGdTyUIVTHh+g4n0MNZOxrf+mFFZxhM2T1i4cukrRCWpu77KFkZs2wZ6BVrJYmNJEkt+LKB29S - K37qeZPWcwr0h/vYE6UvzPV7/Hzg26tx0qWLkEvGYfuqWMT5Os++bedGbrPKjitSZxKbWIWue6fz - yK1Kd0d8ODO2AV7U1iO5mVFPlDlIw9rAsZ6WrpKEf6i5/JJE/D/a3qf3wuZOkscx7pbnz0rYo44u - uBVoJ2681Ws9KQ15Og2IGHcatDM5brnsvctRS+uzf01XFlGgWqsBkMp2pOmoTbQPlaLjUEsfer8c - JGRc+wYNW916t+d9aX9R9j7FHxbP6Rcfmvgd4rL+dqrpMQVkaNEVG24w0yuAoNQybuLxym1KyrGj - Cx1gQAB1NLT3A+gA10djy0O8w92GNilsG2fMRdq0iMRswAhIDrRYVh3eK9Obo3H5UtGbzL4++fFP - D0+5x3YcGHV4eToh9+Pn9/Ilj6PItqN8jgIQ2seHNoA341a74uZcLWyBQri9DpI94r0khZuLrbmH - qMk3O5a5RNeVq/PYZZvt6dIv3CxW+xmTJOqUiOfuzR74lEk8x0H/TeuPn81rrW/yfc/HHeTHMu6e - NoOsOBzqR+a9HI9moZkFhItgntOBuM/jxsN4ENxZna/HJ0zFmFqf4ROE8BtTvq1diGuFchXdbClH - MwrxRC9sj4322fYTxcHtjqrPb26XV9+1Ta+0vU32F5uPj9FfC9J9vUPtcacVIgcgoViatoGCS5gC - RASh+tVF4rkK3/MEDPt4EqrN4TgibHhpQHbAZPBib+214ptFhxSdmsRxWNUDryjFjrutHtc3IX6t - I1e+kPUmvxePf3y40ePkW07CA5OrDznF1jZxSETO31Y0q4TJCLANE+V8Y6dmaCB8dGjoadj2voQu - IIdxc9Npy9qeWX6rmD6nHWNb4U9AThe0IJ+3+NspGt2vqt4E9/Ppz3D7wtxm5I+DhyAky0FnORRm - 0xKXldzLrDTGVnuUUJxS/PV08CvOF/mLCuXhOReWRrIJV7ZlwfazRbhE2eZAlBYSiXFTFPJCwYb0 - 5nznBY74p7SPEnwy+TTGL4LMxdX3ulGPm3Vvh11fUJctgaKKI3cnsZsVj1mDAxWO5AXFMNWtgTkx - rCUNU29bpLuIE1YerLoUld3MCeOlWiYzJIcNyNGYnkNgdQ/TL3mR/qrzLsAv7T9PW87TbJjjp38+ - 8FutH1k8Zxx6s/R6iiVx7Ogq8AAfV+8shKN0QgvE2IaeOtMRPcaK2bUtvOhn4lKzicAxldQMuHJu - ZLRTVz3rsW5R385U/RVW8T8y72L9wvxzqH9WWXzcRzDx0ok0etkJmx0BI74+YnRjCDmvDx1+LBLP - OPYBlLl8R+89VXf27PmY1HlTI7J/OPG1uc3hHXEmDlXiM5JNsyV7VD4YYl+UzrsX78+ae58Be4gH - /ynjBoS/4I/Bulf3sJ9T4nlfUxtuxwJHSUZGuWV28YyJ/f5yLGteChTULFRP8pFEktfNvsn1o0Sv - kN5TKsP1ltSq9Caoy965rbwN86NYy9fyPgr1u9mXZ7M7kf6L/beN7gjDcd1QPXZVENA90deo6ZnL - IZtmNMZ9ZYpZ51RhfAGOkWLulewWAsjC3CZViN4e4qQMDnz/stnXUzMeTw5PFcJHA8J9m2+/NfxU - XzVv7P5FICBGfCzk0AuW627DtVB1uByHIYx25nVD5ME6A5igOkyiA73jHmt+Otsb2ZQXpSNVBDkJ - h651gzATj2JV91hc1+7qih+F+6Th08HgtfE9kL+mLPU/ft0mRDeC3eMgg2sXapeLHXmlgLFbJJVB - UxtLbUtSFj2C9rVD94bIHY+Ao+BzoHvhkhiSVWs1TORFgOZqB4V7vRWFipuVQ120mUG+A/m7yO+/ - ylci34H8B+M7ID867UAck2MOTdoRunIVFa46jFInNi3oxXIHTGqrFaY8P5e8DcAJ+xYC4QMPlioY - UyI/gCVvw+tZ2okRcbEQ3OiuUURl+ZubAXekG9ydZvAN1/PntbyIO+Mriv7Lqer9JH7cnoqXkQNZ - t3Wh+6y/nUrVS6JjCbZSfI7aFRK3l46oEXa8kY5rHt3JMKM6+W3FMF/sQTZhUVvPu6Vj4W3CjWyh - BKXWfAjj89ezJ6n9d6njS6kfwvsHFx/fUfmO/V8E2nS0oVGCkmqThKIID6LluBEBwtmGBZrYhzuC - lQ11BRNy0pg20BGPulSjTk/mkdRWKi/oKVavytlIOmjPJ8IxYS/k22uIb+rujLD/Y3V/N+b9Kioe - OSVQpdw4KQRdmnbsBmixgSmCcf1YOVTTdWYQbOsO3kosdW1iqeplpXkWKoyUUqOfkQtSuJGcmpIi - zqAnJAZTzLRuvf2F+DuW7JW0D5H8ZnI/xufkjrr5Hgweh3Oc4KVy2vwgkWUDcwf0TLfanlVwPBY3 - 88ZR6tKXEIcGzHHf1Yops1zsAfa+3B3CHb2YrFSPqIaHOi6Cx95v6YZI/lCG+Bc2+VeJ/WuJH8L6 - i+n9eL/vpz6O63LggUMSrfx5gYkCkRij0nIWieaWMIGrXBmi3xF9seQldTllYGp2xhY8HdVhIq5+ - 119EBHRoQ5kSmVN3R+0sE5r/dtrxj8Opr7V9COiP/dQPk/xReoEKby3QPx1i7b7tij+m5KhNMnUL - mYdl3UwUB+JhjJHoFdxrJJqkJWaI8UYjzQAePL8OwknrggMjE13Gw7QedW4QBDgLTS2qFmspQdpl - vvSbN+dRP4od+M8Kw1cK36T6e8uP71H/oaxFkda3/5qVD+y1NnyJEJcsXWOfhuhJNikPylQNiYyI - 27j+eOMLkVsTAi96qCCHxqBsOF9VVlc7Mb0axaFCqa5PecdP83TJgTzI4j9c1vQrq9clJX7V+jHe - f/DxiV79ivz+OWn3QR3b5tCOYJbzKd7uDxpr9HgwLJuoPrUm0G6bQCChrFDWGjEu2sXDLHP0Lpx9 - bhqCEHckMPoyRrOaHu16ygVoB4120vYPtQjfxBX+EPkJ1uFzfvJfde99/8CaRouKXDY14AF0zuq7 - adptp0jXKY7P8aCEkMNWtZ1k3x5JCTpdadSuQ7SfjlnsJQGh1SbD9tCF80MVEtb1YPcBfrjE9Ztz - 3T9w6t+uavSe8d/25OfbPB6aYg/TjH32vGLZ+rcOTWwndm59dXPx1ULYtAAKbjZ1VrYgETX0Qich - Wbgx4VpX8eRtDiyoDMFTcT5Wr2FsOWAqU2+Zkv4E6fi10k/g/u7hb5mrTVwZ/QO/Nk6quxDitJV6 - Di0iJJMHiKsZPSIRw8uxXVx0gSPPwnZhd65DXJpgOu1tt8biJZ4uGBGOouNtPdmiuoVSwpDIXQL2 - PxFB6pvQvv/Q98c3HfwtcO0SPvADuckdnQ2cXhsXlVABl8WCQWQqGaxCOLRiAoU7Lltx0iW35/MF - lcX9Dje6OacBV4GTSxuXu8nmeoA7LwdxvBR4hKf18ubE7vewmp8qP4H6yfpvI/a/2AAmAlpYLFaR - wasUs/w5q4MTdWyNRmy3rqk2AdPjpY6gKDNAsGHuDo5ChaAF7A54NLtcuN2kVgZ6CZBbjr2e0ZIh - afsTE5L79oLf8/G3PdzZQNt93A15kof+8Ej+A2KWI+4iyiAiYwnpQzhmGuFFinJ1mPRUImJcUyCk - TMXhTGXSvjrAigMRJl2gCIaVVoMeT7isMZmJ8ubAwyNLCG+f6/s9u+tNcfi/ij/RCr96+uu2KB+4 - 6skRscI7ztFxVIRW4VIIJadfaEGUsQBWEs1gAsHid0VbCwGMFIkj5Ok+oPWGLgVmnY0anODTZgE7 - V4xWzzWWvX39zHz8Wt638PnV+BOhRou7Mv+RRfkgvts0WkZKz046wQPNZn9eTjtw1S4E6IwDOp8M - jVTE4w7PvY6UUefkmIeolmOLSrcK1rUsWQsNQxyaqOUjmj8STirG0Mf4Nv+j72NoX9h9hmqXV2He - +MVTzfqonh9ZD4Qg+ER3Cq9QY8GJQNCtz7hYXUjKKYI47xO4buG6B7KrylnVyAEFZyRca86mt6tV - nWXxMwi1BO8IBRm283Hrn7j2YwNl80Pl/ErlBwn/av1xzuZTEavHT7J3uZACku0btCqYa4yfueNS - XVMcq3xKG1qO3810J/v7Ib/2/iaQcp2MGk3lKSKN0T0kisd8FRmgTy4rPN8GS0qiXO/NqPxcneue - OfUrg4/H2FcAv+zrKNZunB7YSw1oZk65FMqTXlzYkxP65JjX8Om4Cdzj6qZqqUrDvvV3xz3K6VtK - PGcYWg/hAUUErqeWyY9Y06cO81boSjwyMGZK3s7veU3m6e7A5oXEO6D+MP1k//wn3z5c6yBBuwGk - MFQv51u3qz0EiXOkKrvbXC6Nc3dm1z3mUgpQjTGps3h0duhDnUKnfQUEXdwda9dafANIs2WrgYeT - Fb59dPA1pPu+gPzJ9pMd+DlH+nF910kxDhOqKMeiVoPzkcoPxtzktrHBvDRbdRzD1KHX9yVYgsXu - wJHRaZfJlkJkckkqSqeYOpBzQZ/tNXPupqunFSX28b77nNF8d7d9trqzx+pxOhZ+908OjeiNidAU - IOP4bSk3wGzfC8x2T3GNzEasNmbxjmjkRmoq3HOUYCHONKPH5MkHlRi5cvksWxwiqu2a57615+i6 - 2vTS24eIn/F0XyXeeXbkD6Z3dNesi/3HDlbW5WRAF3UXnhLUnkvING5v9UTTHr4rDkAA8nruNzpr - nw8bFVIMSJ5yDkoLqWQlIMs0OoIdNjaiE8yVhZwFyL62GuHtCPCLqLcRfn/4E9C+7DO/quLigePT - geEhXIE6gSt1E5NV6YjsypMKCddkKgUX1Px6NFqAZo+XkUBUmQyvyUza2+3INeaeTZDpihx5WTcy - lMBy44D6fWS+3R1/qAtfq/sgxu9Wd7zjP2xNv7888N2WA+MqMZF6yqyY3MXrDtyOKsc1zQBUXoLH - sMUuMz6htIIXbT6UkGpUyOgc1GjQoANqY/khbMN8ui178VPa5vNcOfkHYQ4vpH2Q5LPJZ7rlM8bX - w/uDkkhsQzqZg5xpOpkWxSrYKnLFC6woKSEJlgOVm8XiUHmPHXe3UOhIWIAZOEuuHKU7GKiRM4/S - PNDLUeaX+5yvgMQ8wfcQfT3Av5s/8mfrj6eO/MpZ8zu/KB55niQMzjvF4xNwOu6TMMrWK3G5/a2X - tN5L6VUmS0+N69Dxqk1qZ/to5YUWD1xFsh1IpsS97WpEEPXYspPIBsLdiwbV/tvL1F85Na813sX4 - u+2nevLzrwdmk/BlYALeCuEbRRIE0ONDfuuocMSMMifAMnIhRrfvge0ePstXc7+9mJ43rid1cXh/ - 0S9AlAzbfU4nqAAePWggRWnZvblIfUHnpbaPEn3+9XGSll+MsTk+9EKEUJGZaeegEX44HHUvRo0D - q4wXK8gHmmIay1NhovUhEGH5q0e4hNawetPhJYLDG8c9gIPrugm0A+yFV8ZzK8ykPM5v9s7pSdUw - vne1wf88/XFuTlncZp1PNwbbXT48MkGU65qOAjxIPzm+jikEGNsEfIa79FAxFWMVaZ5jW85bqLPJ - E2ORH6pOPaG8wu46PGHo3V7cC1FhKe024wOf1nEEdnZvRtCn/bjuWdv8UtubDH+1uY+kQ9fhWD60 - bPJmFSGHvlJCSuYLMGD+oTpSI3RoraBdpqQ+WQW80BYOX6MatYYM29QUwtYu1miXq0vxm4TMr01p - tk7MCIu/3Vwhf//mi/yE5ObslbB3Gf4wuBNgWTweYSGS1HW6OAR3vDZ7nGP38e5Mmtlt+X0M1ysC - JGBo8+KJHM4G4SYCvp/woK4I6GwxaY/sczYoywMZbM9w7VlXKDIExH5zov5MpCzuhvjT5E6MT84e - +CEWFo8bgzGr49i3pYHqszGwxDQfURlC8lJYCwDo47kcENTiljS/QljD8AC7P8OLHQArxtGrlBfn - DrYJO5m6K+TObx9feqbR/BT1Prqnhz8B7V+8wud5W/M8I1j2Bi15d6ul3dHfkk6NCB7knbsmUs1y - mC6APqXY0BLREpXXSGlPk7hx5zPdZhWxKXeOPQz2OZcy+/8twNQY/8nniBAhPSOjasMTpCAKSNQC - AFBLAwQUAAAACAATeXtPm0fQ75UAAADgAAAAGgAAAEVjaG9Cb3QucnVudGltZWNvbmZpZy5qc29u - VY3NCsJADITvgu9Q9iwLevRWevDkD/QJypKVRXYTklSR0nc3iy3iJSEzmW+m7aZpHI9FU4YracIi - 7thMVTZDY7bLFdCADAPRwe/dbjEjDxleyI9fwNRiYs2cU2AUjOpboQtoZwDfEq1xe30CixXWb+Ma - +evMa0HAEtP9xkjAmkD+evq3KGR/6nwPbCQzlUdYEHXZmD9QSwMEFAAAAAgAE3l7T+kTJ7OmAQAA - VAQAAAsAAABFY2hvQm90LnNsbqVSwW6bQBA9B4l/QPSSStnVroEFDj0ssJsc2sqqld6xWTsbYdaC - pUrk+t87yMGNHaeK3NvMm7dvHm9wnW960ZrOLK33U3d9WXsz21faeDNT91abxpO6VjeeNO26BI5q - uwGkE0yI63w6eUQj19kje2Ckf4EJJniSBCTGlCUurG30ul+/QyZADsmEppi6zrQ1j2phr/1tymlK - SSARZTJGIWMJykQUIsBFzEMZRxHb+Z9BwReLB5MZ698cSrzoNqA0IFvOoiwCLUQSyVAY8wJxIlIU - pfmEF1EWFkGy811HNNXLdte5rc28rF3nal/MAAS312NOuWmWetW35dBM69IuIbFu8LJp1UiC11eF - mver37x59vLpPYyP+oHwQ9Wq7NQrygkCJDB2ZOONrRfb/3BlOvva1scywUduMYdlv1S+XJ37josU - s17XFSb/oXcS1pHHt0FeqvrX5wXHGXOHI21Ua7U695/c6erQfzeVAobkX2fiIwvEk1VNp+e61vZ5 - Pzp79LG+7XUF462ggeQszRBPggKFVOYoYxxaGgWZCHki42R31sABcZ0/UEsDBBQAAAAIABN5e0+/ - cE+UDgEAACMCAAAKAAAAUHJvZ3JhbS5jc32PwWrDMAyG74G8g47JxXmAboW2O6ywjLFu7DB2cB01 - Nbi2kezCGHv3OWm2JFAmDMbS9//6XVWwcf6TdHsMUKgSaq3IsTuE1CfvSAbtrICVMdBDDISMdMZG - 5FlVwYNWaBkbiLZBgnBEqLcvv+3E5FlkbdvRWKzYP2JI9rj4byjuHYc0XHQeVp6QvVQ4QdcurKM2 - ae1OnrxBzrOvPINUPu6NVqCMZIYnci3J02UyABOIQ/qigrPTDdRS24IDpa3vHyCp5XLkJ9KuNoQy - 4Bvuu5hDjqKXiP5VlOI52qJcjLLv7ifX12/nRtfd58ngdjlPNNDior3Dg4xmnmzOdyVeGXdBUoj+ - ZriXf5lT3nR+AFBLAwQUAAAACAATeXtPf6fW6KEAAAC2AAAACwAAAHB1Ymxpc2guY21kJctLDoIw - FEDROatgAxCCgJ+EgYBMNEqUROOMwqs0lBb72gCu3qDTe3OEeYG2FaCWCqweiWG8sQ91KxOpXeTC - doZdBgOX80Uky4y1MrDUwhDOsC2UpIxDXHMWBGM9I86s+tTOHYjzh+5gyNTzn6kQR6maeFZwfpoy - O66qaxvlgnYeQnjbk0fYeZMBOqbFVtDGP/mR9Gg2rvPyTbve39DUsr5QSwMEFAAAAAgAE3l7T24/ - rhdUBAAA+woAAAkAAABSRUFETUUubWS1VttuG0cMfTfgfyDsFwvw7rapg7YBUiO+AULcNIjtAoVg - QKNZSjvR7Mx2LlKVry85u6tLasiGgb7IModzeEgecnQM17KyFzYcHtAH3DhR49K6OSzOAOkEJmT1 - om405ocHhwf3lfLJVgn6i2hAOhQBS4hemRmMdlAeT6oQGv+uKEpc5HRt2p/k0taDU1AEXtmlB/qA - YDswEOAVh0yRQiUCCCmxCR6UaWKAqbM12ZGCogNhysQVPeNNhJwnqsfH8Nmhw7+j8iqgZ1sGo/zT - 9T1cWodwd/Vxi6ANBkNeK+mst9PABMm4NNqKcgALdF5ZA2/yHxkHYDweT4Sv+OsxlBjQ1cogtDC9 - O592lizbstHlxBDuLbhoKJWuqtpKofWKiV51sVOefCZtiZvML6LSJUy0IKMyyfThW6SsPlsXhIaT - WswRPFtWNoLUSs7h6C/0R7CsqG3Cz6lpR0MjdSQI0TTgMQTqoe/x+uzJ75tqYKo0nh8Nck4AIIPh - dIPMUJ/sUTIsldZgkEzcUNusgFJqCTYNOYvAhbzrgzXONuiCou6l5AjCsSd5uIWSyCjJlmrDRHue - +VdPQEyr7/efykfyuQuxVJaL+EeDbS65160r0QvVrmPOnl9i60h0vqIMcNI49B7GN2/HMMfVoIuw - Uc/l7ZDvDY0PfX6jnVMibrXfVpj03+kLTRZ9J71C0r0i3SnOg5j492Rk25t/BjlwqIc0YRyI7tas - ek2SOwUjFmrGY9NXqs9hanWJLqV3v2oQxp0WSXLjvBMg+tCjssjaKd5dBdd11CJYd3gwevrgcdTn - OKPixknKbZ1psT33GfZ3gCQvaHL8PNiG27qWRjvwWvNeYE60O1CzSDxnSJMc0siXOImJuHLs5oGu - Jo1Uljys4zQNZ+OwtgH1inydjbOKwgY6Qp23K2G7hU8nuB7/s/xt/oaxZ2lRuVayo4rWzJNF+H1d - BAJe42Y9buFQo/DoHzt5XVriRZ3jPF/UkQxuRTSy2uNww6rPfmtnIW36DK4Nkxfp1sOXW7BTGDN9 - Yr8u4buffv35l0I0qqhpEsQMfbe0rrDRdrUmSFzT5knPgwVKyBmoeQjExEZuH7tzEmLH/5QWDs1M - h5aEu328GRwxF3ntC8HWFqxGEwYkb06BykwvBalfK277FDYutMh8cFGyqnwn+JvoiDiJA0VJnNKT - sFu7Kysj305i/G58//OEre9fCK/k/mlPCfA0ZL5dben7hBc5umySAM4XCpfvk2e25Zmd5T+0sT5Q - NgsVVjzkkvpCObxgxewPLa3h1zUTHXa2wX6eT3p0uAL9vh6a4GzZVv0V9egj2AV/wWWmtvBeQWdf - O5/j82y4/2vhb+VCwHsh6f3tmG+zJWtGG4B25TZW+9tgA9ek//N0ZSPnW2FmkeYdHgypg3aj4Unp - FtHtw/DuxYKTdmYUaQr7yvlC06+xoo1zWQnewj5tc25Zt/1orLvmvVrZnaL3jtO/UEsDBBQAAAAI - ABN5e0/I6E8OsAIAAIsHAAAKAAAAU3RhcnR1cC5jc6VUUW/aMBB+r8R/OPUpSFXQ9tp1Em2piDa2 - SrD1sTLOAV6N7dkXVjTtv++cGGjalE5ahBTsfN/dd+fvPBjAlXVbr5Yrgkz2YaKkt8EuiPe9s16Q - siaHodZQgwJ4DOg3WOa9k8EAPiuJJmAJlSnRA60QJsVst82Y3kkVlFkeAufD4L4gcXjMLyulmXZ+ - FDS2gfjjcdBkIzsAl5aO5HjyNS8M4TJV24TNY9wO1uiRuDTGBUaYhVpWDe049BodcoeM3BbmB8pE - 6NSUJE3F2mkMcSe8IX4kV5bXdUAj1hickHgsaO/kd+8E+HHVXCsJUosQYErCU+WaLwlQg7zaCEKQ - XAhBIB+VcMyvXFJRTpBEKUh8wi1cwOmL/dNa1j5WkzClyopWC2OGw6p/YD0RE5826aJNOz9g/3Rk - fpaxvfoNS6TzNo9NPlupAGuklS0jIIAUWrPn59va8L4ypNaYw7eAvHHAkgVRlhDnhechxHXEs1wS - yvDBvVC3sarca8JpImZF+ndlOW9tnn3Q17u0Q+TDsuTxyPr5NA7L2nGtc6UVbb+jj+7Mujbz9L5/ - f/+u3zrC1JQrj9EUsSA+c7jxbLxf1j/AsBSOWsU9VzNlA2kkaz4UTN0zx0Qukc92Ue4UrUbeWz8W - ptToP2ZviZmzGBFAAHnBw4eGcihMcy5ShAY0nN7GNpOPDfXAn/DRxc6ys4WBKOuI/tkucq3/DNL8 - Ndo6zfd/Jtr5u9E+ns1u+Rb+WSFPo1MONXvpLStlxdA53q59ni4DEM6dQZHu15HZKG/NmssCNJvX - faUWkDEgL8I1blBbFylZv99GPSPFh9PlXF1ioR89SnRRz61YYqt3qX9Pl6gD/muGcaDQFa+9sZez - EJWmG8X34gtSwvB1RUoehdzhfGrlA6bMnZh6CtsWSS/+/QVQSwMEFAAAAAgAE3l7T1KsV9Q8AQAA - 7gEAAAoAAAB3ZWIuY29uZmlnbZBdT4MwFIbvTfwPtZcm5WMDBAMuZQxv1CxR73bT0QPDlJa0Rd2/ - l6FTs+yufXre92lOuvjsBHoHbVolM+w7HkYgK8Vb2WR4sDWJ8eLu8iKtlKzbZtDMjoMjQCg1e2Oh - cz5g+wx6rJjoyHdMcjE2/txHwjhHknWQYWb6J7BLpQGjntldhq/xQb+dDp3igwCTYfo79jghjDQY - NegKXvb9WPMqTQ9VW7fAMXKPYvfEnP7ZUK9VBcasJydXVoLFiOlm6EDa0ehsVtVO5co6XAiMjOVq - sA+qWUm2FcAzXDNh4N9D2Qo4xIRqzOabHr+SumdWk7qnK0yvCFlr9QaVvR9afovKYhXn0ZySchZT - ElAvJnRZJCQqg9Dzw9KPg5iQc0kahXnoJz7x4jIiwQ0tCPVWCQmT5YwWYR4U80PyC1BLAwQUAAAA - CAATeXtP2D4W8OEBAAD/BAAADwAAAEJvdHMvRWNob0JvdC5jc7VTUWvbMBB+D+Q/XMMebDDOe9MW - PLOtgYbB4v0AVbrEorJkdHI6U/rfJyVOYrsJG4wJG9t339193915Pofc1K2V29JBxGNYSW4NmY3z - dlsby5w0OoVMKdiDCCwS2h2KdDqZz+FJctSEAhot0IIrEVbL4mj2mOmkIam3sG7JYZXmRinkISml - 31CjlXwxghSlRSa84aojLRi90Ml94px+Nv5upPJUrnjXvMSKLQIvzSqkmnEcQrr4NatqhRQsNJ28 - TSfgT908K8mBK0YEX3hpvBduIfOCdtK1j0wLhfaA7UL2YdY4L9p3yezQWikQGLWaQ9AB3/UKidgW - j2my4IuWRWN1brTDX+5uOYI8gDt7E8iZ5qjUfliFeUENfGyJz3R6zMLZMeuHWqu28LngHj7NgrJb - eOuVSI+F0wB6ny2GKdgrk65PKV2jFkM9nYKvjDtjD3miU9nkzCBOLpDv1XsPs/v7zlbPaCkTAkXX - 1idJ7i4vmdaoMs5No90DVD1cAsPW+xefm/ZsftaCuf82hVdU3FTYzWH26EMN+J06Om7Gfd8Y/0fw - EqIQfdAAUg/UxMOIUdVw5AaiQ0S6FHBzDxfn/gO5rCVq50HxxyQX8v7LYvQ6kfTb8qfl6C3Jlc/u - 1T/89RtQSwMEFAAAAAgAE3l7T574wQZEAgAA7wQAABwAAABDb250cm9sbGVycy9Cb3RDb250cm9s - bGVyLmNzhVNNj9owEL0j8R9GewIJmXvRHrJdtYtUWgS5rfZgnCFxSWzXnoCiqv+943zwsR9tBArM - zJv3/GY8n8Nn6xqv84Jgoqaw0srbYPfEce+sl6StEZCUJbRFATwG9EfMxHg0n8M3rdAEzKA2GXqg - AmG1TIcw14xHddAmh20TCCuRFh5lxgGRynAIiyF95hVJcN+RmB3F6qjeKXiw/K11yXz/zoqlIcz7 - I3RtRey7iKqMrDA4qfAW20O3snIlBi435G1Zog/j0e/xCPjhU6eFDpBs13DJA0cUn43YC7JQSJOV - CJLt+lVjIAGP6JA9MqqBpfmJKqqCk2ZjnbdHnWFrXpJJR9yN4bBkPWdKHQVVaKg9DkgCXxvSFQpY - 1SVpzkKm93v0XNNCX0FCBJhoFmMvlazJWW14sEoa2OGZUKpCI88Zdg0Eh0rvmxYMFVvYR7QCahzC - 3naj3zGrYirytSKOSZ/XUYDouj5vbE04uZNOz9n9IHMMd9OXPpk4fbGzD7p6VzKJKmUIwGe68vvT - lfkPMvTC+xm1WK+PPA6IC2dN2bSmfPE895P1hyciN5jdvxf/wUYB7e6cqzp1N7omH7LI7j3rerFV - 00unK9nxGSD3A2hxm48N7mOLq/ifa2XPkXhtA80g/vqK9PJGtgyNURCvIcTKJP6dfKyJV+IRS8yj - LXHWvLWKZxh3wu7byFOarmH9Y5vGCxADvXjxplF6SXZXQJujPeCwQ68A8iQ1DZ6Idcfbyd10t2sG - G77MvHg4i95Mb23pX/z5C1BLAwQUAAAACAATeXtPadCRpEsBAABWAgAAMQAAAFBvc3REZXBsb3lT - Y3JpcHRzL2NsaTQ0d2N5c3N5aWF6Yy5QdWJsaXNoU2V0dGluZ3N9Ul1PwjAUffdXNI2vbAQGKmEk - yMKLQKbDYHzrtjvWbGtnb8ccv959SaIYn5r23HNyTu+Z54WfcowdptnihpB5f3eVjHgKJO/OHcvA - pkHKLasMKsSKs3MwOIA/cCBPZUVJzSWkJ29BxzK06db7C31V6ZWUgUFmsHOhoAQfuQY0BOiZZY17 - boZhK+XV2BWbkgJBdR5vr7CW3wy4B8emlYLde7F3nsbsJZ6uRZQMESbe0n+bJMPPAqJy5T6IKBxt - RlM5jJzybr3/iJJsdB+teq0QUHPBNJdimedtnFjrfGaav1NdJeoVvOeNB+oEynlcSSEgaLQ8rbg4 - 2vQ7cVVP/YPHsnFxrBd14iGotVRFtuEiuQwEUmglU5cJSDugd1lyEcoSO3dGILOeUBv1KtSQ2bTe - bPPTSBctMg/revgMAYnZtsT8WZPFzeWlLdIXUEsDBBQAAAAIABN5e0/gz3m4kQAAANwAAAAtAAAA - UG9zdERlcGxveVNjcmlwdHMvZ2l0aHViUHJvamVjdC5qc29uLnRlbXBsYXRlbYwxD4IwEEZ3E/7D - pbORnQ0Mg4MumDiSWk44Fdr0rphI+O8q6WCi6/ve+6ZkBaAG3aPKQE2nsqir3bGsD/m+nNV6WRtk - 48kJ2eGPBPkzeITCClToRzIIW9tgbDvbo9Pt8t6JOM7StCXpwnljbB8l52nU8nEu+s4YS801MQfk - NxcfvrDz9opGfocH3SjCZDW/AFBLAwQUAAAACAATeXtPWtMXbNwAAAAOAgAAKAAAAFBvc3REZXBs - b3lTY3JpcHRzL0luY2x1ZGVTb3VyY2VzLnRhcmdldHO1kj1rAzEMhvdC/4PxeMMppFtxAqWBkiUN - /diy3PkU4mCfhC2nvX9fN1xoCje2mz5e9OhFMttIR7SiPoPv00IfRPgeINkDhibVwdlIifZSWwrQ - 4Qk9MUYIqc3OdzCfze708vZGKbMWDE+RMp/TUnikwM6jeueuEVzoqtpVtU167J8VPLzRcxbOsnKx - rEFxWD74j2ZIBqa743AYp1/yDfWo1r31uftBcfGm1d/wvgG/YBdbW0qyQvY0vNroWFJBV/9GfcFA - p0JtXb+7dgmTKmqPEyoD17cyML5Aib8AUEsDBBQAAAAIABN5e0+o88lWmQIAAHUHAAAiAAAAUG9z - dERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc51VXW/aMBR9r9T/YPUFR8tM2dNUxqRNY1P7 - QJGCtAdAU5rcdGapw2yHglD++66dODjAqm55QMS+95xzP5MUQmmSKTIiEn6XXALtZaoXDC8vEnu1 - jvVP/9K8e9fxeh2B1lw8TmtDc88kqCLfoDXro4GqDRRbqUJ4viA2f3FieGUNnamDsEritKFUX3kO - tCshdLAdHsMhiwSUMtAeML5N4icwwPcPK0g0+wU7RfE4uLwg+LCM5xokzUqRaF4Iug32qEGXUpAt - 4yKF7X1Grz5Np9F4NrudfPtxFZDRaESuh9V/Q3wff45uZ2MD9QGBSHUu4Uazk4/JS8sEDhRJKUOC - oQSkpdozxuzxHM+ZKh+UlghDB4NgeWOQzPmyGlYh2Vd+8gU8e5QGxpUjJPjiKaqsV7lOYw2vqVHo - Y9eULgJb5y+FHosNxfwBBlJns9akYatRTGYij1PDEe1EYi1D0it19va9baCDR86FLbPxZGqdc037 - 84VciGW/a+j1mvU5n1tz1Wo6OK9jqZ1nw9IbtUrMwzNCrRXLQTxi+38ckXcdpAOawNra8TDmBg1l - XIdk4ONZ61LOje2yNV4VXBwzV4e/TUugX3PvFd27d6nA8+qkOK8aQheXiRqLBVuutLKl6noEnQw0 - 9HfR/YRhPArocaGP+VzJXbyVi+SU2Ek7x+g1nbdGOoBumqqTpHA1KVK4i6ayMJuEtgSNS1fG8c7j - XAl0Z7unvA6jC/4vQ+XK1sn+iboz3Wt239EmVN50do3dQBmzl/ZPt1WbXMzdMkIb8oZgp+Kv47KL - aOl3Li6tpa8AU/ksuYa2H9rY65Gt23+BXxvsaxBJkSLujeuSqi0qgVyBL/EE+DjJtifrzcmzHT1s - QlHmeYiT/DKhLesfUEsDBBQAAAAIABN5e080Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlw - dHMvcHJlcGFyZVNyYy5jbWSlVWFr2zoU/W7wf7gYTLfxbG/vyyDg0Y5ma6BrTJ2uXwzFsW9Sb5Yl - JIW0e9t++67kOLHbeHswCIl0c3V0zrnS1SkW9xz4auU6CnXNi7x2nXS6AJErteWyjP03bQAfBJc6 - Ra2rZq1i/982LFHwq5xhrGRxTeND9EbW8aqqcRJFkX8x/zQ9v559nk5+vv7njd8GkrPFxeQnzVSl - MfI7KL/FKPm2qXlexkuuA0J3HdexbP0dum8iEhkUJWgOQvIvWGiQnGvXERt1X0IYZtvtto20uVVT - aVhXNCeptRnZUG9a8GZVrWGjUIYN0QGPCKwkjciPr95IJrK8qsHb6Ko+7eeHBWf9NXlJrAYYjNFP - wMATpCuXaLR02kHxjSywD0AiuEaLs7O8b4jgohxI3QilJeasc8Qa72fGcddhX8tKwr5yRdkb992B - IFgSsyG8wTNcn+7Q93yPYpODgM5Y0OXv6bNcaZRD8KLmDR7YHOF+cNCm7j0AvzPPb6FKrJEMC9ui - l4P/LYhkEEgIVruUgcZdSVZckoRlXan7I2SyPmTraSK5QKkrVFnSrqOIuQ2qW/+7DP0o0PhIn4Qr - fY6i5o9pISuhVSYG2eEDq0ONTNQ5ifwOCksIyLko++92+v4unS2md1dnn6bZj8ingJ3vg360hndw - JB7c4jJotw1pP9rj4AvVENL55c1iNr+y2bHrGH+iFXjkdcVU7IHv53Ry4MWJMSNawqtQ1c3JSzrY - cPocgLINspU9KjgsWDmidIBmlA4CRuUgPbl5fzlLL+6S6/mH2eWINc8teAZzlqa38+tzs75rl62j - PcZ/UtU11L+u4/+k9pzIEbgwGZIzxenK37bg4WtgO3FF9X8a9yCOwfNgzalRfKvEny6PBT9pQSAX - gjS1SCe7uzo5S5I7eh0Ws6uP6YGU60ws+u7O2i56j2ZHMJfEdQ4PkJ+9pTB95ZCP8AjNuuN/Za8O - HQrzZiNsC1J6Y17Qkf430l/Geto+fbxR9Z/KfV2acvd8u461ezKdf7DODC1rLS43TDw1uOElDmTv - ZBzpQQzlGvdH9wsdEHwgH6Kl6/wCUEsDBBQAAAAIABN5e0/va091cwAAAHsAAAAmAAAAUG9zdERl - cGxveVNjcmlwdHMvcHVibGlzaC5jbWQudGVtcGxhdGXLK01PLVEoSi0uyS9K5eXKLU4qzcxJUagO - 9vcJDfH094v3c/R1rVXQLbBySS3Iya/0z3MCKbAtKSpNBYkGlCblZBZnBBTlp2XmpNpWB4Q6+XgG - e8QHBPm7efpAdAYkFheX5xelAGUdg4PD/YNcanm5eLkAUEsDBBQAAAAIABN5e082K7FwdQIAAEQF - AAAtAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlfVRNb+Iw - EL0j8R+8aK/E9ONQVSEVLXSFBN2ogaI9ISeZEG+dOPJHCl3tf187GKoGthdQ5s28mfc8tn+3LRiq - QUjKy2Hvwhv0EJQJT2m5Gfa0yvo3vbug2/G/9fvdziKnEmWUATL/WkKK4h1SOaBKx4zKHFckeSUb - 8y14AlIinqEd1wKtILax35AoD/3iGiWkRImWihf0HRqKGHJSUy5sjbJ9HEe3Y3pASpWZaA/Mo3tN - WdoM4qFpibhIQSDFEQMiSlRwAYjEXCtHZMISUE0lVShXqpK3GG+4V9BEcMkz5SW8wNkbo+UrvpuZ - 3+l4eDm4ubi88FC30+9b/eF+erTgnMmXg1/X1i/jYCmHPctsiGWSQ0Fkiz2FGhivQOBCxnZ6fDkY - XPUMM0KW2yBq90NwXTUhEzSWhXtX56ByngbzaAwV4zsfn0CuxAUNXU2NI8HoXQswyRFV4OM26opm - RKqlOcrG0wdeZnSjBVFGXvAMjXM+/iKnxRIyojIuimBU7tBDuPyoPSKuwg61FGzBZ0SXST7KFAg3 - YuCs/LOa3K+j6WKyfhrNJ389YvW8QWzOEaRXgvLxVyzH0SxiEz+hC6EbZWdBVzrZJkynMKqq9Zgo - EjwSZu1oh1324YAiEDVNYPk8C9oKZFKcqri9vr7y8Zlqx7uPT6k0DUOi8jarj08yXOUzFFyBVRfm - O0kTwiyK8PEMXmk12SpBHs1Vkj9L29tsxt6a/4AtsZ8XcTWPXh4+tJzd0klJYgaHlHvzYpil37c8 - C7kys0PiiRQQfD+Rf4Rc6joiNYSrsWM9fh7gMUjzmjT7u9hV0LonJ3BzR3H7kjYR+yQE/wBQSwME - FAAAAAgAE3l7T8oi4NElAQAAMgIAAC4AAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoU2V0dGlu - Z3MueG1sLnRlbXBsYXRlfZJfS8MwFMXfBb9DCL6ufXBPox1stoKwzmqUPo60va7B5g9JujHF7266 - bB1a8Slwzz2HX+69kerKlpkmoZbOr68Qik6FXMs31gJS/l1TDjH+LNLlhjy8pJv1Iku/JgWUkwRU - Kw8Y9WaETu4MbCPrGGfkT/lVt6OwwFQ8oB+dhj2UhlkwgQA7m05vz2Zu6mMYceLIjlFnQHvMm5Hm - A/qOvEicN18QUjw+J4NUg7FMUMukWCh15GusVbMw/I05QjxHkKcVAb0DnSzvpBBQ9WHEaia2MR7+ - cHBt/zU0sgfZuvHvWA36XuqOr5h4v3RUUlgt25wKaL1yIt0zUcu98YRBJfnZ4WjJwVjgMXYb68dn - 8NxLUe0WX1IDBoV+/+HPA3DFoXQ8km9QSwMEFAAAAAgAE3l7TxPZeEvSAAAAdwEAAB0AAABQb3N0 - RGVwbG95U2NyaXB0cy9ydW5HdWxwLmNtZH2QwW7CMAyG75HyDj5uBzrtAUAg6GESa9EGBySkqkvc - kZHUURJUeHuagOgOG77Ysj///uUpij0BNQ1nHoMmUWvOUg2LfLUst+95sa4+y83HPB9f+29FtVrO - 5nk1AOPXuKQawJPyAbJs13WdIwo7iVbTORNGwhNnAPbo9/IXEHv9TQ0DmDCyfX6Oqg4NHJQ49Cbh - 66i0jIXw1tFPHCf/DgU5edMw2AYIyqAPtbGcyTogvASYTOLdgck0fXMWwf+nSX30ZzzaWAxGJLWY - fLby/l3OLlBLAwQUAAAACAATeXtPoegHQ4oCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3Nl - dHVwR2l0aHViUmVtb3RlUmVwby5jbWS1VVFP2zAQfq/U/3CqZBUekmjbW6VOLVul8QBUtGOTKJqM - c6EBJ/ZsRxUC/vvOdkNTQfdGHpzkcvfdd5/vnAmKtQJVFP2eRSeV4LLfM1hB8mFXxKdsjb6y6hIr - 5fAStYJrE55/WjQ3cK3RWFVzORUCrV2qB6y91aj7c17hk9Ku9J9fbiKeMMgdAq9z0Eo30r9cLS7g - rnRgPHqhDLg1wvRkAULlCGVtHa8Fxvi47hiMoKEVuBCqqR3UlJNkCggtM/+RqIHz3GL8O6RHh2N8 - ipweWyNxXTe3cDlbLGE6P4Ujg3+b0qANFViwQmk83mbaChHQ99jRBxTOw241Ocqx4I0Mpl+zk8Xp - cvYnLOfTs9nxx283bXUrrJHjtXPajrKM6zKNBadCVXteJPyYfeqa5pt8zD5HS1v5mH3p98oChqy1 - sOF4PBzCvtObilkLrFWXD9slZyP2mpZNdiT3fLJdWl9HlJE2FERjZEf97X70e7qx6xzSdLXZbIxS - ZHGPGmGurPuOWqrHhTCldnYVE85jXHpPfZM6rHRo6WfwLZMg2Gz1RKXtylq9dBhld/AV2HJ2Nmfv - wPV7NOYyEk1+wOCbqh3WLlkSnxFwrWUpuB+vzHsPIGngkDqQ5DCYHMxEsb9hfkH9/IpgJMv8aGWh - p7djV/2PLM1z3u+19zDsYWraTo9ivpU3+pY1nQBhg0LR/jzwps6rUHVR3oV5T8MkDbrVDg54am7t - Rpn81dvLccgZK15KGDSulJNb5QpDaSj4wXdVN4bnVMIeRlXRLalgoEkvbtAXHs5OsKoxAn0aZ5Ts - ongpvN6hwRlU3Do0Ox23GkrkNcH4AOsa/wd4K2GApN1JDCQFxD5vYbDOw//iH1BLAwQUAAAACAAT - eXtP58hJBQgDAAAyBwAAKAAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwVnNvUmVtb3RlUmVwby5j - bWS1VV1r2zAUfQ/kP1wCIivMzrquMALZ0naB7aFtSNJusJSiyTeJW9kSkpxQuu6370q287G0D3to - CIl1pXt07rkf7qNYKFCzWbNh0UkluGw2DGYQvdqnxKfbCn1t1Qgz5XCEWsHPZb28Cc9XFs0Fz6rV - EI1VOZcnQqC1E3WPOW1oo+78mUelXeq3n25KfGGQOwSeJ6CVLqRfXI8vYZ46MP62mTLgFggnp2MQ - KkFIc+t4LrD0L389I0+oC4WRJFPw8DA2Jbw3GM9jWDinbbfT4Su0KsNfysXL1BZcWlckqYqFyuCg - glO2DooQ6Qm4EKrIHeRkqvF1FanfpFDB+VjXfJ7Rofuym78locfa6LmPBuMJcJ2WkLWCAWOHBm2g - cN65EvNNgjNeyGD6Pjgdf5sMbsPPxcn54OD164ZqhnLn83FlZI8d7lhIzR57v20arpIeOyotdZQ9 - 9qHZSGfQZrWFtXu9dht2D+1Fx0qYpXV2pJTrsTUPVl+plWdVVwPb0GJdtibE+hvP7p+PrHNLBdnZ - kNlccxY0H5ZJ+G/YKlNCSUnu1BmdW8q47VRJtZ9pFS2pYmirdxS/azbK9FG5gPC1vsl65dJs6MIu - Eojj6Wq1MiRCs+EeNMJQWfcFtVQPY2FS7ezUV2npFN9RScYOMx0a8Df4aowQbGf6SBpv9J0+bYnQ - mcMnYJPB+ZD9i9Vs0ISSJcXoK7TOVO4wd9GEmHSpqLVMBQ/x+tMtgCiBVv95rBZEP2B4Sc0AbE9x - yoTJXiQRJphE1GGMHB5TXELliV1PlaAd0Qg6KgofHb6lndQCfTmsUpnAvKCWrCIq0Q6PSWalE5+O - 8j/MstDBdT+W0u8nozyb5jTgqKYqWD/uvGlrSURn6TyMnzj0e2u7qFovnNTc2pUyyfq0r7qXDmPG - UwmtwqWyT/NwZugacr73s3DbhycUwg5GltFflEFLU0Nxgz7w8KoAqwoj0F/jjJLbKF4KYFUDMsi4 - dWg2OlYaSuQ5wXgHGsz+hbcvYYCktEcGohnEQcYaBvMkvB7/AlBLAwQUAAAACAATeXtPAAXq5r8A - AAAcAQAAKgAAAFBvc3REZXBsb3lTY3JpcHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZW2OPQvC - MBCGd8H/EDJb8CNto1uVIg66WHCUNLlCoDYhiYKW/neTtiKCyx28H89dO50ghBt2A7xBuL3k2+v5 - UOTXU3bMOzzrXQGWG6mdVM2fEMpedwNoqxw6g3lIDminBIxdzjQrZS2dBOvLbRC9/ABjPY6rxhlV - fw1vWXU3HHaDUzx1/9heOjwkutmI0EZxsLaAm66Zgx+GG8VQP4gASMp0SdZzGkG1IBGJeRVRUtEo - TWgZrygRjMSfC2H50b0BUEsDBBQAAAAAABN5e08AAAAAAAAAAAAAAAAbAAAAUHJvcGVydGllcy9Q - dWJsaXNoUHJvZmlsZXMvUEsDBBQAAAAIABN5e0/0A7LF7wAAAMYBAAAeAAAAUHJvcGVydGllcy9s - YXVuY2hTZXR0aW5ncy5qc29unZBBTwIxEIXvJPyHTc8kmHhQ9wbagwfLBpCrqWWwNW2naWdBQ/a/ - 2yKS3Xjj1OTN9+bN63E8qipmTFoBkfEfidXVsWhZPRi/xUOataTBk1GSDPo830mbYHKGpEf/7bD9 - j1FsL1QO4F8hQurtL+YQ7NnwGm0eMU0U6unUopJWY6L69uHunk0ujpRsg5EyevOrdeXpTgALEXfG - Qr8DVxrnSINUhc5JvxXSQYlsIn6Col6Ila1Xeh5zeYjDJlcdDX5vInqXv2cjo5HvgxtPyGzVCL5+ - XCz5Gxeb5+VCvHCxLsufYA8WQzGzP0PX7z4edT9QSwMEFAAAAAgAE3l7T329J29rAgAALAUAADwA - AABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy9jbGk0NHdjeXNzeWlhemMtV2ViLURlcGxveS5w - dWJ4bWx9VE1P4zAQvfdXeKu9Ni7QA1qlQYXCCqndjWgL2hNynEnjxbEjfxTCr187TkFNu1wSed7M - m5nnGcdXbxVHO1CaSTEdnkXjIQJBZc7Edjq0phhdDq+SQfxtNBqsS6ZRwTgg97cacpQ1yJSAaptx - pktcE/pCtu6sJAWtkSxQI61CT5B521+gJkJ/pEWUCEStNrJi79BSZFCSHZPKxxifp+MYuBSQM+PK - Cfbl6toynrd1ROheIKlyUMhIxIEogSqpAJFMWtPxOLMGtGOaGVQaU+sfGG9lVDGqpJaFiaiscPHK - mXjBVwv3vZ9Pz8eXZ+dnERqMRq73NJSO1lJy/biXauKlcuIJPR16XkeraQkV0T3uHHbAZQ0KVzrz - tePz8fhimAwQ8tQOMM1PJW3tLc7m1EqDoEswpcyT5WoONZdNjI+gENHZHNmOOTGS2btV4HxXzECM - +2iIWRBtNu4OWzVvpCjY1ipiXGvJA7SaxfgLn0OSlBNTSFUlM9Ggm3TzGfqBhABf0UbxtVwQK2g5 - Kwyorr6kE5FyNpm80kbrhpF3GhHfzCtk7v5ARwJMjL9i2RfmAe93AK6Vbds6CYbI2zfKbQ6zun6e - E0OSO8K9FH1zcN7fzArUjlHYPCySfvmaVsct/JhMLmJ8IjrQBvM90y5dSkzZJ43xkUcIfIBKGvCd - pWWjGSXcgwjv1X9h9e2bUeTOLY/+LXxiNxBBlf+Ah40eTt/TcvV489nHqdG8FSTjsPe4dg+Em/OQ - 8CQUotzkqF+kguT7UecfUPB8XpEdpE/zjvPj2KFz0O7paEd23dTQ24wj2K8k7u1ka/D7n/wDUEsD - BBQAAAAIABN5e0/UlzcKDxQAAMtNAAATAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bdU8a2/jOJLfD7j/ - oPEicAYXyZKopzsJLo/unQHSmMX2TAP7qVeR5Vho2TIkxen0Yf/71YOU9XScnp6bPQWxJbJIVhXr - RRat8x9uf7n59R9/e6utqnV2+Z//cY7fWhZtHi4myWYCJViWRAu40+A6XydVpMWrqCiT6mLyWC31 - YNKq20Tr5GKyS5OnbV5UEy3ON1WyAdindFGtLhbJLo0TnR7OtHSTVmmU6WUcZcmFVfdUpVWWXN7k - RaJd55X2IVpvs+R8xsUSpqye6we87vPFs/Y/+2e81lHxkG7mmrn98qZds40Wi3TzMFS1BIz1ZbRO - s+e59iF5yBPtt58bMP9CpqgH5NfZYSRWSfqwquaaZZono90Ai5Oi2/I+ij8/FPnjZqGn6+ghmWuP - RXY6WURVNKeCWbl7+K8vgMGJuIFbbZcUZZpvLqaWYU21dHExvYuek+ITPADUpryYrqpqO5/Nnp6e - jCdh5MXDzDZNE/uRIPMvWbr5PARohWE4o1oAvZgC46bas/zG+b7OsVQzNccTgRFqnmsZ3lSjebqY - JpvoPkv0PUnzTfKkdcHfEBbzchvF0GZbJGVS7JLpiXiLFGJPWvW8haoq+VLN4rLEKs0oK/PEv16m - WTY/sYXrXplvzTcn/i3WWKpmk28SVWg3wE3TDa4CVSMaNcIOrm/rGqdRc+3d3ryzVI0LNTmgnFbP - c9Ow3xAUThVAfvj4159vP1mffnwzzAHs48S8AvJmRB+TWiRxhcyleYyzqISpAyKnGmvR1PEceGDJ - uph6jmeI6YybbqNqtW8CzUEK3osw8I3gTNjC8O4cYZmGOIO+V7rnGl6mO55pWGf0GeuWb7hn+AHF - UEp3HrQ7M++EDSAhtvzJ3NGoK+FBkdDuRBCEZ44VGH5MLagX7IDvuIPMtgHgjD5XnodDY482f96I - 0EfEhBcirvLBgdHOmvh/HabUlpT6gQNDOZ5l2HeO7TgwHlEaBsIIswalN8IHwXPOHB9xEr7nY418 - 2HcyMpzg4XAiuH9hA9YZfNlALn02WVmz48wkXmRE8Rl9/oSd3Kme6puRgR1Jp+I3jNnkqmtDU1nE - n8BW4cJYjmkhP0PTQ1T4oe6kHgz0O4mKvxbRIgWzTTZEifBUe5DFv4HdBmQeQTs/oKr+svmtTEB1 - rYup8C1h+K4Pmv8Mjw6w2LJ8FyptqAwty3DMAGh4hkfLMWxXuPt+fy2iTbnMi/XFdB1VRfrl1CIT - oeOXB5IgQi/8sTYH+VbLl0v0RFOzNjRYrMd5lheoqO/oekOFexV1FbWtPqyDfagmszaHhqbIVUrn - 2ih9tqNkQa/VSm+oVaa7tjiD/5VlmSEoaLNhPTFoo/HOvJr8+GbUTxTJNonA2WxyeTsOWqZfk55X - 6sBs8xI8dA4utEBTMw7IzNL+Im1vG46M1uBQ5GsZEcfpeeLac9p9Ly0HfFqlVTLm2wU0QwdDX70e - Fmm5zSLw8ekGp1S/z/L485iDNthD6ynEM9/spt9AvBRIX31im9Jbn4jbExu1Fj6hNF1wgfTcXEiu - mcvRMZ+Iq0Ef3gK+Il893mjvz2UzBgVG8fNz6xlclBki0uzpZR0U4L/lghnDb9vlttKVIUzP7QEe - 4Phky25rcV3TAHAUB3A3KhbAatICFRAAMIYEDKXCgj0UKNQ+OsChIQrAUdjrUq21r621fQ/SdMz0 - iL65wS5Dkkzaz2U4IJWR4Mv5dULD51IWa1lMHJvVnT/UaEur0u1ZCoQUkvcuzMmNZdpGeAciFMCD - 58W6ANui/kMUrBtTt8AjZcLXBZj/DOChUIC78vHbMxwwUNQcPuWdg/jemNgl+Cvh4xyBz7zbD/l1 - LxhmuKdh9vDN5IQ2spN7B+R0QeMCljHEHbpJWIMH0W35LQwRA2kAAvOg21AiS++CkHqyTaRV9iNJ - rVGOLSKRP23Dw3oagu8hvCnlmBAN6HXhXRPLr63p+z2kmzRRXoBz4dAAph7QFAY6OFGgk0uphGC5 - 3AGKeJ4CqvXlHdTdhAzo8VyGDIpD4NN+wK81SwAhhYnroduyiW0m4MHS4cs7YFRsEqvsmoXMvH29 - Rc8ml8HMePIO6j6EXImD7HHBp+/GUAjenO/OUI/FSjIUoudgz9DGgG2Gyoo/lqEQS4g9QxtDjjL0 - +0QUyyzH6ixZdmtq9+30na8KCQaqXvLLeIHrrNI4yvQoSx8gOlmni0WWvOS80Tt0nbcMFnTEH/Dp - BigqrpFx5IGdgonaKpiMxzi+Pbzb8CQ5BWvRTnWWVBVgjo6QtysM4fb6IDYpbofe/yFH080GPnGP - J4KOexsY63Sjy5l2gv5Mr6MvqtqCdeRAPW7fyKmJHqt8uL5gwgcAXkfUAcLm82hZ9enDS25wgQB0 - J55qM1grzLX7vFoN1NYTU2GM1AFoM3wNeOhyLD0qkuiwIIs2t9t9qW5oP63bj5J4k67fK/FOf1Zf - kvimMHv2ATKIJUM6rUgITPwbR87uLzleTeBYH4pA+zCB4igC9a01Nt2wUkXlGtvg1EHyqnwNeAQH - Bko2i22ebnqMHMESL6m3rm+NLc0OsP/PY3CPdQf5ssqfAEq/f0wzWC9D3J/2V3/t3kZ3mo/Qy/Eh - L7WVGLI9DTZZfUXrscrrsYrYdYyL6fHV7vMVr3rHHf5w5rShEUmkK7XXA8vl7TYp4qg8bAHLKtmO - u5ralC6zpIsYWX89rZJ1OdfKqkiquGuNGxsdSRZV6e6wl+jgssiGZuc+L9CVyMgCeFHmWbrQ/nJl - 4t8hdzDkoAnLOmsxpBZ41fw/xMoDZFxqi2o+v0+WmHsZoIno6m37DO3CtLlwHAMaXMPttcdycNNI - XbXnnU5HIJj1jj/IKrzqELVvxdS1l4zoHvB/HCVURTLDXR0/AUaVlBUYgAwU8/VTcZ89DiH4mvkf - G+xF8cSrYZLSzSop0u6qoAWoLNN9ni3G5rBldfr29ZXULcaoOxrxYxDCqxW9jkl7100PuKtBAjvE - zWEdXOnxCpzG64wRWeEtxJObLrmdkLGK7tLN5wNbn1L+xjvsG4Jx2H0Q6l1dW93Kx6LEWgpZkuJQ - cND3eHsT2g1o0IaRF0xwsVuso+ygC5AcmS/z+LEc4nj+WKGotCyfad7HS/sl21z3vcp3w4sO8qCL - JM6LiG0TzEBS4HAvu9ChLexD3rOOpPpBZnsBZvXDBmkTxYEgq4MYqGi6GyK5RmNY49RIw7Wv2M/o - hOClnuUP+VFLXPfwEjccrP6dK9xh6yLhu8Wkb9KZscHRHNNcl+MLEKa+S7Pc8nkhJXRULoT38Y9I - h7z/oJfPa/AT/y8SIg4nNmzzG9Ih+7Z/fjLEF77jOx0QuwVy64l3ttcBES0Qy/NvMYfZAnFaIPZb - 37u+6YC47cTM7XVgiVckZryjEjMiDAYTM1bY2jc9YsPZ8i3agsVTBTtHGPZK9w33o+Mb/ko3MStv - CdqVFcIIV7pLz77OT1C/4zvPCD9iFyvLNILMsrmJvTINO4MGli7sn3go4tNX3GG2fJ82gx3L8Dkh - gvvEmCiRu8lCFzKFwrvOoYTB/uAuZsx5/9nhtlQrW8fcTrUWnCiq7wXtXHMaxuE9bF3WMJKxzKOY - tG0dSmDVvV0CngLb6hKfG8unFJTcJFfU2e1HIJapD1zaLndhznfCQraLnS6sn6iCQGzTp7a+p/gW - W5wYI3RxcELX8JBFyA7d5AQSZu0lqzzd3nlQW/PX12UmCIhx6BsT/ZxqQJbzCJjyl9S7mInwOBMB - AJissgAPKKwZhekq/IciEAWPvi1MVvBAKqHnYFNAPKb0FuHjAyzxB/NgDlHh1BRSLo/AHIWVqpdT - 5tYTLOQE2ztfYYVI4uTZhDVmFjHVRhX73JtJyQzkoE90EJ2u5FWoc5Yt2GcakVBf0sJ3MLExpzes - GhuXGMb4+YpPN7bJ+TjfZfRNZjHNLz7up5vnX9QiArzkKSAcrPqOygyrVJIqZZPncudjFskkIlE0 - QiIaszeIZC3jPlVbxAOiCb8VwZjzEVIJHClcQgmTRd2FdWqHiNlZQHwtziv8BjJXTIOv1+lLnWRX - dxRvBKu9y4TagtXI5SRbkxWSNwENhweyUM4ICkUzlPIiUNJsljSEI+l0WdJQdt2YBY9SZjQkS5bF - NmAv3LbMtIa1GHoy1WwxuE+zj5ygDCXpBQ6jxAlVghu4qDjyNpaCj0rlKaVCFYCxHFZsEBOSC0mq - zwM0Kf9ae/T3tiOTaJ4hpDhKfSdxZBpI42ByLWkBOF/HoioTxXwvqTYJV18aQjwChHWErOwRWWnL - O1IElBcSKpc0z0Z3sldIakiKiDYK89OUXaSxdJm8h5nyZJ8+8IJz4J60bIpK0XyoFSZgwtwANJYU - hBWBFVc+2zU+phyP6WcB4rmX/iC2ldnHTmuF9giWc5tSDU6Ub1HugY2AkNlR9FwWl+jsTv24dnOB - LucZOMN2EhlSs4y0T6qlTZbVZIvtkd7apNZgRlEnd8Dt2i/KUwFBPdOOHMaOlbl3a8k2pVyyzKAZ - VuaGB1DOxKxRQ4tg1p5EccJGa4venIyJ9Nk8zdzAlyce0L/g/Ds0/zo7FCoAdlB+mQ34XmZs+nbV - WYgYmcLEWVL/BbkfVFlbV1NgSfEKqHO/7UHZetZKYJJqiNqSKv/CKWv2O+HOIxcCpGCH5PmlZ2lO - mvQvnvQvAfsX6bx0u+FuJcdvUHjpdIHPMqBkmZ1CU7RZ1kP/GANYG7FvNoN/lAFUzBo3g2HIqiLV - QxKszGCDfmKIMN3vaABbxv87mcFvMYDSOwqTMZNmsKZVNB+UGRSuUOdUwBFbKLO2ix7Z2el446Kh - 8Fb05ZC2quAJFYndua0HsU2EcuAWyMAwwFge7pQNUGc7rJpRKha3avu6t6xmwzqCsn107JismkmR - mgpEpIUzSXtsWSBI2UwOPlxlE9mK4fkYKbmEVynNEVsaVgd7B+uWFTFD9zOf+rN3oCwr5IvH7LFQ - IZgcNoocXxNzsJeapKAmQ8XZMvqMzTp+5YCLiXcpVldM83TFCEsuPtia+zsvljaVOWFL+pSpIhPC - Ts2WU9M0IiJW4TuaSTK4HgWsHOGTz8Bg2KGJFUgy4/TRZS0aO9TXXqUKq7W3YDsDa1a7v2YlDeku - WWXpbHw0L0A+vzSe+G7jdajzLDV8azznj6NvZET320Y85vTUS9uHg/ubuIlYH3kYPyzl9quO3Nhs - Y1XkTyNZ7LkWysPSmGIc2K/8Ew/0dM+wZI/r3j72+GE0hbXbzSaqDEwxmNDpMW74IND4IaCDR3yG - Twe1xuyd8+lt/dPvmsYwXuRPG+DJQq9WiZ6sH7OoynvYH0hmNRIxopeIaR4/eOFU2oGDESr15R/i - vDwWkS6LaN3LhjbEzjdRdn9I1/jrw6iXV2rIr+cehFSIH+iwIxvJOt8lOiEoyR7/JeA4pf+9ThZp - pOWb7Fkr4yJJNlq0WWinLdVCnH7s9j62W9/kNR1SGciRjJ6DGzpehVfziJf5cm/D2kodscZ2hPhY - vPEa/3VJH48X0znHDvqCISSQ/Yx5A5abQQ7bwwbMeAqoT+WAfW/Qxco4buP//cgbpPQoRfGHFGX4 - x7Z4HfuDpg4s6wHijqfRhpTrmymwxb8JBd9uHvoHlcZP3Q6kppne8R+C4VVz6/sy3xy0s9+d+TJR - OmACfwfyHp4k6fuI4+dt4CTK6y2Ntbc01otmxAkPemSCbtgl6yB0H9exQ64duu1+JDPgR8aOHnc7 - O0aXjj+n1Ay4jlGrcbfbiXqPoflYHR2Z6Pp43FHm5VC4h1dTbIJXic3hALFJyQsRIl54PgcimKe5 - tkoXi2RzpP4eEywiheMBI36dz5rvwDgHQ5Buq8YbMRZ5/LiGVYkBc/12Bzd3KYgaiNjp9PaX9ze8 - ZLmDxUGymJ5py8cNHzY+7VkNXEC8Q1RPWyvd5sMuKvZg2sWh3hBUTuzFHkewYlGVvM0SfDqdMsC0 - +7skLjbKpLqqqiK9f6yS00m6mJxpE67q/ZIJR8uXyztQrZ9+fX8nqYaReys1hKQ+JBJN7B6SSpZe - P/+8OJ205LM3ZrrUTp/SDay9jE20Sx9wzWXkG8Shx40mVUUMY9KbN8r5bAaDlwYsjqjyKS8+gzqv - Ycph2RfPovtytgW3Uc6WrrGq1kMnYAeZBVKSZ7A0e0CebfIe7qMNqYzP8GFT8/iWpHnYBkP045ux - 8B9sV0/Zbbr79unCS/ViRNstOIobPEl5yvBd8H9pSVYOGqWm9Bi04YQah+p3OhnQ+B4iTXPxptZx - pdbnM/kiHrjF98wovZfxCL99YMJPk4YZOMcNp1Zt99dNTeixFgA8ka9HmAz+nmxyeT6Ddi93hW7z - pa6uozKN8d0/3T6bz8yQpFCPjaEgLhljAfvEiXrs/a7qEDNaP5yaXP4jfyxw80ZLSw1aLp5/eIkF - +7ih+due7pB4Qd9aHG00PAyuPdcDQcGKX4r0TpkF7a3c1jm/L7TZQFf3z1qCB2VB6bWI2v729zsw - ito/5Ut+gOdRtsrLai5CP5hF23S2TsoSzcs/O7QcTd/gxtMQoedRzV0+9TrRVkWyBHGRdjD6HMG6 - fQbk67Up1N+5ej1C3Xu/c7gqWGDiu6o+3WcRdH55K5sRI2vWzaIuVcdSOkTTx7RMq2+nDIy7vsrB - UvWQH6RQu/r6WCTDVfT6rKTAl24NsB6o1mDJVyQPGBkUeznD1QSYLQ2oqPIxuQLrm+aPJb4ODOxJ - Vhrar8BSaD4ttTrYRlGrnrf4K0xYrGR5/rns95SlnxOYj7Scv24S1CiTS8XS8/QSifgEWJSfUKTx - fWTns/SyJdWHrEp3DBlDt10Ivhen41Uu26apcd+Umu7+05iVkoDDvZ7PpP0np8BvbvtfUEsDBBQA - AAAIABN5e08ISi14sxMAAMxLAAAUAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bWzVPGlv21iS3xfY/8DW - wJAba1LkezwV21jHTiYNOOjBpDvAfApoiraIUKRA0nKcxfz3reORonhIitu9MyvDEvnOuqteFaXz - n25+vf7tH397py2rVXr5n/9xjp9aGmYPF5M4m0ALtsXhAq40eJ2v4irUomVYlHF1MXms7nV/stOX - hav4YrJJ4qd1XlQTLcqzKs5g7FOyqJYXi3iTRLFON2dakiVVEqZ6GYVpfGE1K1VJlcaX76Jl/jav - zmd8q/rK6rm5wdddvnjW/md7j69VWDwk2Vwz19/e7Pasw8UiyR6Guu4BUv0+XCXp81z7FD/ksfb7 - L60x/0Ri1DdIp7P9QCzj5GFZzTXLNE9GlwHSxkV35l0YfX0o8sdsoSer8CGea49FejpZhFU4p4ZZ - uXn4r28AwYm8hkttExdlkmcXU8uwplqyuJjehs9x8QVuYFRWXkyXVbWez2ZPT0/GkzTy4mEmTNPE - ddSQ+bc0yb4ODbSCIJhRLwy9mALhptqz+kQ+v82xVTM125W+EWiuYxnuVCM+XUzjLLxLY32L0jyL - n7Tu8DcExbxchxHMWRdxGRebeHoi3yGGuJJWPa+hq4q/VbOoLLFLM8rKPPHe3idpOj8R0nGuzHfm - mxPvBnusuifLs7huFK3hpun4V37dI1s9Uvhvb5oeu9Xz1r25fm/VPQ705AByUj3PTUO8oVHIKhj5 - 6fNff7n5Yn35+c0wBXCNE/MK0JsRfoxqEUcVEpf4GKVhCawDJKcaa8/Udm24Ycm6mLq2a8jpjKeu - w2q5nQLTQQo+ysD3DP9MCmm4t7a0TEOewdpL3XUMN9Vt1zSsM3qPdMsznDN8g2ZopSsX5p2Zt1LA - kABnfjA3tOtSutAktVvp+8GZbfmGF9EMWgUX4CteIBUCBpzR+9J1cWtcUfD7tQw8BEy6AcKqbmzY - 7awN//dhTIXC1PNt2Mp2LUPc2sK2YT/CNPClEaQtTK+lB4Jnn9kewiQ918MedbNdZGQ7ydshI3h9 - KQDqFD4EoEvvbVI25DgziRYpYXxG7x9wkdt6peZiZGNb4VnTG/ZsU9URMFU18TuQVTqwl21aSM/A - dBEUvmkWaTYD/Y7D4q9FuEjAXJMNqUV4qj2o5t/BXgMwj6Cdn1BVf81+L2NQXetiKj1LGp7jgeY/ - w60NJLYsz4FOAZ2BZRm26QMOz3Br2YZwpLNd97cizMr7vFhdTFdhVSTfTi0yETp+uCAJMnCDnxtz - kK+1/P4ePdDUbAwNNutRnuYFKup7er2hxq2KOjW2O2tYe9eop8x2KTTEIqdWOkeg9Am7lgW9USu9 - pVap7gh5Bv9LyzIDUND2xIYxaKPxyrya/Pxm1E8U8ToOwdlkubocH1om3+OeV+qMWecleOYcXGiB - pmZ8IBNL+4uyvbvjyGgNbkW+lgGx7Z4nbjyn6HtpteHTMqniMd8uYRo6GProrbBIynUago9PMmSp - fpfm0dcxB22wh9YTiGNe7KbfQJzkK199IkzlrU/kzYlArYV3aE0W3KA8NzeSa+Z2dMwn8mrQh+8M - viJfPT5p68/VNB4KhOL75517cFFmgECzp1d90ID/lgNmDD+Fw3OVK8MxPbcHcIDjUzO7s+XbBgcY - R3EAL1PHAthNWlAHBDAYQwIeVYcF21GgUNvoALeGKAB3Ya9Lvda2t9H27ZC2Y6Zb9M0tchkKZdJ+ - bsMNqY0EX/HXDgyPW1msVTNRbNYs/tCAraxKd2UlEEpIPjrAk2vLFEZwCyLkw43rRroE21L/ByhY - 16ZugUdKpadLMP8pjIdGCe7Kw0/XsMFA0XR4V1c2wntt4pLgr6SHPAKfebvd8vtWMMxgi8Ps4cXo - BALJyasDcLqkfQHKCOIO3SSowYPoQn1KQ0aAGgwBPugCWlTrrR/QSsJEXNU6CtUG5MgiFPldGC72 - 0xZ8DeFNqfaEaEBvGm/bUH7fYd8fQd0kRrk+8sKmDUzdJxb6OjhRwJNbqYXGcrsNGDGffOr11BX0 - XQc80GVeBjwUt8C77YbfG5IAQDUkjotuSxDZTICDpcNTV0CoyCRSiYaETLxtv0X3JrcBZ1x1BX2f - Au7ETbaw4N2rERSCN/vVCeqyWCmCQvTsbwna2nCXoKrjzyUoxBJyS9DWlqMEfZ2I4j7NsTuN77s9 - jfu2+863DgkGug75ZXyB66ySKEz1ME0eIDpZJYtFGh9y3ugdus5bBQs6wg/wdAOUOq5RceSeTMGk - ThVMxmMcTwxnG54UpeAs2ulO46oCyNERcrrCkE5vDSJTTe3A/T+kaJJl8I65nRAW7iUwVkmmK07b - fp/Tq/Bb3W3BOXKgH9M3ijXhY5UP9xeM+MCAV0FqPg/vqz5uKqEFjO8yPErhfDDX7vJqOcaICmOi - UThWsK+u1tfDIg73C63cpezuWvUylDvr48DSbdLrj0q33efgIeluC64r9qBBJBnS3xoF38S/ceBE - /3jxwwiOrVEjKPYjKI9CUF9bI9yGQynq0VguUweBq/IVgOHv2SfOFus8ybp0HIFRayy141ndnn2k - P4q2e0m7n7L7CNsl2V56LPMnGKXfPSYpHIkhtE/6B7zd1UaTyceo49B2l0vZ3bFFGeuAVrmv4DNE - 3y81qXP4Q+Zo3V1IVqs6YQNn3vU6LqKwHDdrZRWvx31FYxvv07gLDJlvHU76q3KulVURV1HXtLYy - FXEaVsnmaDgWae9AnxfoB1RIALiXeZostL9cmfg3ZtOHvOq2zDBkPBoaHw/q5aKaz+9iIHnPmPez - MUPJEcbtMFqKBpjleiwHczeNA5xOewKIhLO98YROz5a0+BfeAVyPPcDrQMHao119chlVXFagbiko - xfGEu0sff0B8gCejwjwkFC3lTrJlXCS9kLqt33d5utiru/vMzQCsiz22ZhicfdvhaydM68pR1znt - dYK74M7hcFfp0RJM5fFKShZpDUFTVo1uE1XhbZJ9PSwHw4ttdz+8Mb62UZZ79dbqdj4WJfaSU46L - H7P0W/PSVRbUfPIAMZ7cilWYHqLG/D6PHssuTfLHCtm/Yy9M8y66FwfXW+abvpUnr7GIo7wIWduB - 2nGBW+wXiqG86z6P0YQG/XBp99Rg9V2jsjRyX9jQAHW5SDZjFV85eu4d6DnyyN2JGks9zR/yo05g - zv4TWDDY/QcPYMM2QY3vRRSoQcoJsLnQbNNclYew7xk0zkgcqFgclarnNPMR2fqPn/TyeQW2+v9F - vt7mvLswX5Ct38791+fqPenZnt0ZInaG3LjyvXA7Q+TOEMv1brDEtjPE3hki3nnu2+vOEGe3bnDz - 1rfkD9QN3KPqBjLwB+sGVrCT1jsiH2p5FmUIsei9saUhlrpnOJ9tz/CWuolFY0tS0lBKI1jqDt17 - Ot9B/4avXCP4jEssLdPwU0vwFLE0DZHCBEuX4gNvRXT6jglQy/MoV2lbhsf5ekxjYh5fJTulLlWG - n5OigRqD68FVxJBzetTmudSrZkc8r54tuY7RXEtKrHKVwOYUq656GMhIpflNyqoGanC9vCgBTolz - dQXPteVRhUTlcGvsxO4tIMvY+w5lcx3g+UZaSHa50aX1gTpoiDA9muu5Nd0ii+s2BC5uTuAaLpII - yaGbXN/AorIilauLjQu9DX09XRUqABmbPrEOzZlwJDnvgBVphb2DiXKXE+UwAGspFsABjQ2hsJqC - /9AEouDSp4W5dN6orjfZOBUAj6j6QvB4MJbog2Uam7CwGwyp1ETD7Bqqul+xzGkYLBWDxcaroUIg - kXmCoMbCF1aCqGNbGjIp144U9AgPwtNRtAp0LgL520IYIuopXPgKGBtx9t1qoHGIYAyfV9PpWphc - LvIcBt9kEhN/8XbLbua/bEQEaMksIBis5oraDKusJVXJJvNy42GRwyQkUTQCQhqLCwhkI+MedVtE - A8IJP2uEsSQhlRLYSrhkLUwWLRc0lQdCZmMB8o04L/ET0FwyDp7eVNd0kl3drmkjWe0dRlRIViOH - a0BtUija+LQdPi+EckajUDQDJS8SJU2wpOE4kk6HJQ1l14lY8KiiQ1uyZFlsA7bCLVQhMGjE0FWV - UIuHe8R9pAQV0EgvcJtanFAleIKDiqMuIyX4qFRurVSoArCXzYoNYkJyoVD1eIM25t8bj/5R2KrG - 4xpSiaPSdxJHxoE0DphrKQvA5SQWVVXH5GuFtUmwesoQ4hMq2EfAqhWRlEJdkSKgvJBQOaR5At3J - ViFpIiki2igsn1Lxi/bSVW0ZOOWqNT2gBZdoXWXZaixl+6ZRGJ8Rc3zQWFIQVgRWXHUvGnhMtR/j - zwLEvFf+IBK12cdFG4V2aSyX3pQanNS+pXYPbASkKt6h57K4RWd36kWNm/N1xWegDNtJJEhDMtI+ - pZaCLKvJFtslvRWk1mBGUSc3QO3GL6qitd9w2lbbiKg2904j2aaSS5YZNMO1ueENamdiNqChRTAb - T1JTQqC1RW9OxkT5bGYzT/BUQR79C/LfJv7r7FCoAchB5U824FuZEfTp1KX6CInCyFlK/yW5H1RZ - odcssJR4+bS4t+tB2Xo2SmCSasjGktb+hSuq7HeCjUsuBFDBBcnzK8/SZpryL67yLz77F+W8dNFy - t4ri1yi8VPz2WAZqWWan0BZtlvXAO8YANkbsxWbwzzKANbHGzWAQsKoo9VAI12awhT8RRJrOKxrA - HeP/SmbwJQZQeUdpMmTKDDa4yvZNbQalI+vHKMARWyizwkGPbG90vHDQULhL+rBJW+vgCRWJ3bnQ - /UgQohy4+Sow9DGWh6vaBtSPHlgNoepY3Grs69aymi3rCMr22RYRWTWTIrU6EFEWziTtEapBkrKZ - HHw4tU1kK4aPbyjJJbhKZY7Y0rA6iA2cW5ZEDN1LPVpPbEBZlkgXl8ljoUIwOmwUOb4m4uAqDUp+ - g0YdZ6voMzKb+JUDLkbeoVi9Jpqr14Sw1OGDrbm3cSNlU5kSQuFXmyoyIezUhGJN24jIqA7f0UyS - wXUpYOUIn3wGBsM2MVYiygzTZ4e1aOyZs91TqrR2cgvCHjiziv6ZlTSke2RVrbPx3Vwf6XxoP/lq - +3Wwc616+5397D8Pv5EdnZfteMzDPQfSh0PZTEwhNjX68Sd5nFdKaRb500j9da4F6kleLKcNZCv/ - hU+bdB+6SB9XvXz1+JNSNdROt8ZWV0+KI2o9QLgffVJl9HkUmjb4GMvOnr0HU3rpffrSzRjEi/wp - A5os9GoZ6/HqMQ2rvAf9nsJTq7Aie4WVdgn9UPl7vKRfl628I4r6yX0RrnrVxZbYeSbK7k/JCr8S - F/bqRC35dZ29I2vA9yzYkY14lW9inQBUaI9/TW0c0/9exYsk1PIsfdbKqIjjTAuzhXa6o1oI08/d - 1cdy9W1a0+MVA5WRHRCY4OPP8+Gr/UySeXi1YW2lhVhjO0J8LNz4Gv/qQx+Og8WcYzc9YAhpyJZj - 7oDl5iH77WFrzHgBqI/lgH1v4cXKOG7j//3QG8T0KEXxhhRl+Jug+Dr22zadsawHCDs+RTWkXC/G - QMh/Ewxebh76D+WMLjdUgmZ8x7+lhK+GWq9LfHPQzr468VWZdMAE/gHgXXwKpO8jjudb/4m/F1ga - a2tprINmxA72emQa3bJL1t7RfVhHHsvs4i36kcyAHxl7Vra72DG6dMwTRJ11rWOUatzpdmLeYzA+ - VkNH2Nw8WnaUcdkX7OGrLTT+DwnN/vCwjcmB+BBf+PQNxC9Pc22ZLBZxdqT2HhMqIobj4SJ+nM/a - P89wDmYgWVetH2tY5NHjCs4kBvD63QYubhMQNBCw0+nNrx+v+cByC0eDeDE90+4fM34u97RnM/D4 - 8B5BPd055bZvNmGxHaZd7FsNhyrGXmxhBBsWVvG7NMa70ykPmHa/MsPNRhlXV1VVJHePVXw6SRaT - M23CXb0v2eBu+f39LSjWh98+3iqsYefeOQ1H0hoKiDZ0D3GlWt8+/7I4nezIZ2/P5F47fUoyOHkZ - WbhJHvDEZeQZwtCjRhurIoI96UchyvlsBpuXBhyNqPMpL76COq+A5XDoi2bhXTlbg9MoZ/eOsaxW - 3adDR4kFUpKncDB7QJpleQ/20YnUxk/k4VTz+JmkeTgHA/Tjp7Hw753XsOwm2bycXfiqVzHC9Rrc - xDU+D3nK47vD/6nFaTlolNrSY1CyCTUO1e90MqDxPUDa5uJNo+O1Wp/P1G/DwCX+BEqt9yoa4S/G - T/hu0jID55hu2untfvmmPXpsBgyeqG/uTwa/6jS5PJ/BvMNLodM8tFTzazS7K7bvmRxxUd+2NoKY - ZIwA7BEn9W3vS0D7SLHzLZ/J5T/yxwITN1pSajBz8fzTIQJsY4b2F1FoJS0KMw0fo9aem2WhYRlr - QAbtfW0CtHcqgXN+V2izy74I3j1jJirD7zxkDxoE8+onZoCsYbrMy2ouA8+fhetktorLEi2IcTzY - g7kkYHzYkIgfS51oyyK+B44rUxZ+DeHgPQOs9Maa6e8dvVmvWauPEb4qOCLiTyB9uUtDWP3yRs0j - AjUkmYUHRbBBZXL5OSmTSnsx6GCA9WUO1qQH3NX3xyIexgN5+Sku8FeZEFrkTxE/oFcutnzHOB5M - hgbQVfkYn8HyJfljib8OBdxOS0P7DUgB06el1oS5v//9Fn/JB7+cB8eENM+/lv2V0uRrDHRMyvkh - 4tXrTi5r4pwnlwj2F9i3/ILShT9IdT5LLncEbJ8Wd/dQEeuuwcYfSOnY8MtdU9C6bnO7m+sZswpq - 4PCq5zNlbckE8093/S9QSwECFAAUAAAAAAATeXtPAAAAAAAAAAAAAAAABQAAAAAAAAAAABAA/0EA - AAAAQm90cy9QSwECFAAUAAAAAAATeXtPAAAAAAAAAAAAAAAADAAAAAAAAAAAABAA/0EjAAAAQ29u - dHJvbGxlcnMvUEsBAhQAFAAAAAAAE3l7TwAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BTQAAAFBv - c3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAABN5e08AAAAAAAAAAAAAAAALAAAAAAAAAAAAEAD/ - QX0AAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAAABN5e08AAAAAAAAAAAAAAAAIAAAAAAAAAAAAEAD/ - QaYAAAB3d3dyb290L1BLAQIUABQAAAAIABN5e0+ZqxjsIAAAAB4AAAALAAAAAAAAAAAAAAC2gcwA - AAAuZGVwbG95bWVudFBLAQIUABQAAAAIABN5e08H3Y7aJgAAACsAAAAKAAAAAAAAAAAAAAC2gRUB - AAAuZ2l0aWdub3JlUEsBAhQAFAAAAAgAE3l7T7yqV/o3AgAATwUAABoAAAAAAAAAAAAAALaBYwEA - AEFkYXB0ZXJXaXRoRXJyb3JIYW5kbGVyLmNzUEsBAhQAFAAAAAgAFHl7T2kAXMBoAAAAegAAABAA - AAAAAAAAAAAAALaB0gMAAGFwcHNldHRpbmdzLmpzb25QSwECFAAUAAAACAATeXtPvQ5/jqgAAAAF - AQAACQAAAAAAAAAAAAAA/4FoBAAAYnVpbGQuY21kUEsBAhQAFAAAAAgAE3l7T/l0cgpqBAAAhgsA - AAoAAAAAAAAAAAAAAP+BNwUAAGRlcGxveS5jbWRQSwECFAAUAAAACAATeXtP4LGfRUQAAAB1AAAA - FQAAAAAAAAAAAAAAtoHJCQAARGlyZWN0b3J5LkJ1aWxkLnByb3BzUEsBAhQAFAAAAAgAE3l7T8Ra - 8yNUAQAAHAMAAA4AAAAAAAAAAAAAALaBQAoAAEVjaG9Cb3QuY3Nwcm9qUEsBAhQAFAAAAAgAE3l7 - T00vPwyXjAAAOLEDABEAAAAAAAAAAAAAALaBwAsAAEVjaG9Cb3QuZGVwcy5qc29uUEsBAhQAFAAA - AAgAE3l7T5tH0O+VAAAA4AAAABoAAAAAAAAAAAAAALaBhpgAAEVjaG9Cb3QucnVudGltZWNvbmZp - Zy5qc29uUEsBAhQAFAAAAAgAE3l7T+kTJ7OmAQAAVAQAAAsAAAAAAAAAAAAAALaBU5kAAEVjaG9C - b3Quc2xuUEsBAhQAFAAAAAgAE3l7T79wT5QOAQAAIwIAAAoAAAAAAAAAAAAAALaBIpsAAFByb2dy - YW0uY3NQSwECFAAUAAAACAATeXtPf6fW6KEAAAC2AAAACwAAAAAAAAAAAAAA/4FYnAAAcHVibGlz - aC5jbWRQSwECFAAUAAAACAATeXtPbj+uF1QEAAD7CgAACQAAAAAAAAAAAAAAtoEinQAAUkVBRE1F - Lm1kUEsBAhQAFAAAAAgAE3l7T8joTw6wAgAAiwcAAAoAAAAAAAAAAAAAALaBnaEAAFN0YXJ0dXAu - Y3NQSwECFAAUAAAACAATeXtPUqxX1DwBAADuAQAACgAAAAAAAAAAAAAAtoF1pAAAd2ViLmNvbmZp - Z1BLAQIUABQAAAAIABN5e0/YPhbw4QEAAP8EAAAPAAAAAAAAAAAAAAC2gdmlAABCb3RzL0VjaG9C - b3QuY3NQSwECFAAUAAAACAATeXtPnvjBBkQCAADvBAAAHAAAAAAAAAAAAAAAtoHnpwAAQ29udHJv - bGxlcnMvQm90Q29udHJvbGxlci5jc1BLAQIUABQAAAAIABN5e09p0JGkSwEAAFYCAAAxAAAAAAAA - AAAAAAC2gWWqAABQb3N0RGVwbG95U2NyaXB0cy9jbGk0NHdjeXNzeWlhemMuUHVibGlzaFNldHRp - bmdzUEsBAhQAFAAAAAgAE3l7T+DPebiRAAAA3AAAAC0AAAAAAAAAAAAAALaB/6sAAFBvc3REZXBs - b3lTY3JpcHRzL2dpdGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAIABN5e09a0xds - 3AAAAA4CAAAoAAAAAAAAAAAAAAC2gdusAABQb3N0RGVwbG95U2NyaXB0cy9JbmNsdWRlU291cmNl - cy50YXJnZXRzUEsBAhQAFAAAAAgAE3l7T6jzyVaZAgAAdQcAACIAAAAAAAAAAAAAALaB/a0AAFBv - c3REZXBsb3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanNQSwECFAAUAAAACAATeXtPNCH6uCIDAABS - CAAAIAAAAAAAAAAAAAAA/4HWsAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWRQSwEC - FAAUAAAACAATeXtP72tPdXMAAAB7AAAAJgAAAAAAAAAAAAAAtoE2tAAAUG9zdERlcGxveVNjcmlw - dHMvcHVibGlzaC5jbWQudGVtcGxhdGVQSwECFAAUAAAACAATeXtPNiuxcHUCAABEBQAALQAAAAAA - AAAAAAAAtoHttAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRl - UEsBAhQAFAAAAAgAE3l7T8oi4NElAQAAMgIAAC4AAAAAAAAAAAAAALaBrbcAAFBvc3REZXBsb3lT - Y3JpcHRzL3B1Ymxpc2hTZXR0aW5ncy54bWwudGVtcGxhdGVQSwECFAAUAAAACAATeXtPE9l4S9IA - AAB3AQAAHQAAAAAAAAAAAAAA/4EeuQAAUG9zdERlcGxveVNjcmlwdHMvcnVuR3VscC5jbWRQSwEC - FAAUAAAACAATeXtPoegHQ4oCAABDBgAAKwAAAAAAAAAAAAAA/4ErugAAUG9zdERlcGxveVNjcmlw - dHMvc2V0dXBHaXRodWJSZW1vdGVSZXBvLmNtZFBLAQIUABQAAAAIABN5e0/nyEkFCAMAADIHAAAo - AAAAAAAAAAAAAAD/gf68AABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21k - UEsBAhQAFAAAAAgAE3l7TwAF6ua/AAAAHAEAACoAAAAAAAAAAAAAALaBTMAAAFBvc3REZXBsb3lT - Y3JpcHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAAABN5e08AAAAAAAAAAAAA - AAAbAAAAAAAAAAAAEAD/QVPBAABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy9QSwECFAAUAAAA - CAATeXtP9AOyxe8AAADGAQAAHgAAAAAAAAAAAAAAtoGMwQAAUHJvcGVydGllcy9sYXVuY2hTZXR0 - aW5ncy5qc29uUEsBAhQAFAAAAAgAE3l7T329J29rAgAALAUAADwAAAAAAAAAAAAAALaBt8IAAFBy - b3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTQ0d2N5c3N5aWF6Yy1XZWItRGVwbG95LnB1Ynht - bFBLAQIUABQAAAAIABN5e0/UlzcKDxQAAMtNAAATAAAAAAAAAAAAAAC2gXzFAAB3d3dyb290L2Rl - ZmF1bHQuaHRtUEsBAhQAFAAAAAgAE3l7TwhKLXizEwAAzEsAABQAAAAAAAAAAAAAALaBvNkAAHd3 - d3Jvb3QvZGVmYXVsdC5odG1sUEsFBgAAAAAoACgA7QoAAKHtAAAAAA== - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '63652' - User-Agent: - - python-requests/2.22.0 - content-type: - - application/octet-stream - method: PUT - uri: https://cli000002.scm.azurewebsites.net/api/zip/site/clirepo - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 27 Nov 2019 23:08:44 GMT + - '"ea5c334bb492d708"' expires: - '-1' + last-modified: + - Mon, 06 Jan 2020 14:25:34 GMT pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -3534,1478 +2345,282 @@ interactions: code: 200 message: OK - request: - body: '{"command": "rm -rf clirepo && mkdir clirepo", "dir": "site"}' + body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '61' - User-Agent: - - python-requests/2.22.0 - content-type: - application/json - method: POST - uri: https://cli000002.scm.azurewebsites.net/api/command - response: - body: - string: '{"Output":"","Error":"","ExitCode":0}' - headers: - cache-control: - - no-cache - content-length: - - '37' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 23:08:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: !!binary | - UEsDBBQAAAAAABN5e08AAAAAAAAAAAAAAAAFAAAAQm90cy9QSwMEFAAAAAAAE3l7TwAAAAAAAAAA - AAAAAAwAAABDb250cm9sbGVycy9QSwMEFAAAAAAAE3l7TwAAAAAAAAAAAAAAABIAAABQb3N0RGVw - bG95U2NyaXB0cy9QSwMEFAAAAAAAE3l7TwAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQU - AAAAAAATeXtPAAAAAAAAAAAAAAAACAAAAHd3d3Jvb3QvUEsDBBQAAAAIABN5e0+ZqxjsIAAAAB4A - AAALAAAALmRlcGxveW1lbnSLTs7PS8tMj+XlSs7PzU3MS1GwVUhJLcjJr9RLzk0BAFBLAwQUAAAA - CAATeXtPB92O2iYAAAArAAAACgAAAC5naXRpZ25vcmXT0kvJyeHl0tIrSEni5cpPytLX0uLlSsrM - A9NFpXklmbmpxWAOAFBLAwQUAAAACAATeXtPvKpX+jcCAABPBQAAGgAAAEFkYXB0ZXJXaXRoRXJy - b3JIYW5kbGVyLmNznVRNi9swEL0H8h8G00MCxr5nuwvZkrKBTXtooIfSgyJPbLG2JPSxTgj57x3J - +XA2m22psIklzbx58/SUPIcvSm+NKCsHIz6GheBGWbV2tG60MswJJTOY1jXEIAsGLZpXLLLhIM/h - WXCUFgvwskADrkJYzJfHZYoZDrwVsjwDZ4+KXi9qis/m0mF5KDK1+hu6jOri3cdZS8M4zjaOSlCi - fSf6vEl4ci1K3xX5OPRZlSVt3gXWkjVoNdW5wWHGK0Xz4WA3HAAN7Ve14MBrZi1MC6Ydmp/CVTNj - lHlisqhJnglQyldD0K0yL0/O6UNkh3GA6sHdABrNL7oC3p+lMA+NoPl8o9gD1HF/fC4XxgRWzOLo - DdZV6O4y67tceiMjObgHZreSw8jREjF0uHEp4IajDmBjuH+4TH6DFUbwlCqByS3UyF7IWad8WBvV - RIsxrUmdzjbXEB3lcJqR1ugEkMKn5FeP8G9ybRUVpSqxgwnsTtHZAq1lJe6TcXTEO0x/oCyAQdMF - glORnbfHA+0P1jLhoKdMFrKn3IlX4bbTINwoWVL6SjlAyZWnKEKXB2r0rHyZRTL/h62CT5yQPjI1 - XhJbYUO9FDSJbRHWYhNbCBys8obsz1WB2V8lcOFKAjtUTKGtBK+gFfS/sUIohNU121I7QkZ8ciac - rAmzxtfMqX8SLd79N531PRj3k57rjseYQlLRHbCTPG/bNqMO10cCGVdNbnmFDbN5VJsAkhPmleT7 - 3nzffdIPPX8AUEsDBBQAAAAIABR5e09pAFzAaAAAAHoAAAAQAAAAYXBwc2V0dGluZ3MuanNvblXL - MQ7CMAwF0KtUnrGUpvkOYWNkQOIKTlxLTKkaJAbE3UFsvP296Hpvex/dH+dtuxidJpotLtE9s0ow - Ti1mLmF1Vq3ibiXVpdBh+ps3HePZ99+HqHrEyqhonAzfr6gsCTMCjhKy0fsDUEsDBBQAAAAIABN5 - e0+9Dn+OqAAAAAUBAAAJAAAAYnVpbGQuY21kbU/NCoJAEL4LvsNchLosvYBQ1NLFMswOgSCyPyiM - zpIr5qVnz9XAoE4z8833M7NVoiQgrX2vVRZJFOh7Uw8Hfoni+4mf0/wa35I9D3/wdJcceRoGL2k2 - AXNCQWaAae77/kFkM6l00aFlpa1h3hTG5GMiVo1yqJNVGtSzai0wli1CgzQwUUtY+R6A6dpSfhEc - Np6LsBAnGpmxrp2rVDgnBtmfTNXIz79vUEsDBBQAAAAIABN5e0/5dHIKagQAAIYLAAAKAAAAZGVw - bG95LmNtZMVWW2/aSBR+R+I/nCJZSlaJQ7LdixKxKgGzReW2mGRbCcka7AEmsWfcmXEIL/vb98zY - 3N20b/UDGL5z+ebc5nxgc6g5fqsfTMbNlhf0vEev59Rg4P0Dtfc1+EDDpQAxn1cr1crtLVyWPhb6 - 9NB+gDZNY7FOKNfgh5Kl2kKPVCom+C1cu3X3+o83LVlwJKmkXzOmmKbqVLyQQrNsvgYuIuo+KWBc - aRLHNKpWVkvUtwDc/MWzGMxHtdLtgOONx8Nxfkx7yjqcVSsA9px9phTji61F+krDTJNZTC8gjSlR - dONkI3IBGEASS0qi9Y4AJOSZgsqQA9MQEg4zCigTLhGbS5FAmElpgkT5C5OCm4C5hsZCaAFUSiGr - lfPimD7VWboLgvlXUR2LkMSob9hFNCZr/HxNCTeBNiK+N4HmeNLtNFsTv+H8F6V1x3WnRGo2J6FW - hXHKLU29JBq2GB6cKSOCARsMJ+B97voTrJOtPawQG7XkOWLyECh4F5ptr9MdeG38HvWGX/reYBL4 - w4dxy8v1DckTaEP2u5YmzfHfaKDMUg419ohNV6uVFEKXWx14nydBvznodjx/Eoyak487s6fYgd2E - cDanShurAEd2R2PvsTt88Mts59bLJb7hAeC8nL9pvsD/MmgFrX47N4/J7RbF+pxFGag1D7eVXiCm - 2D8Z0C/A0NZ2mmzr3KgaTbhcYPkpFmOlFud8t2uld0Ur7ZdvwaFn6jRew1OmNMiMc+OzZswanzVY - iSyOsIWUwFf5vAn6wYEaDknTiGjiTJHbdKPshklkw/FGiXj9UXmBINBwNE1SZxoEQWTn1sT8lIRH - InE2Oq2e1xwEvWGr2QuO9bXM6C4fG/dvaORUUHbTUUc49pWM4ErB1dcycL/lSsBjIn3//qHba+cl - Z1PTV7OMxdGI6GWbzhk3s9Iccl+y4YykWEiSdDDZ6uz1z9/PnSkKGMXp9Xu3Pr1nfPOHiyMS50iZ - 3duf/tgBt7uRju4REyzbCx8x4bYTmv7IHZiUC5yI/9IZNNM0ZiHROFIh2tpxi9F57cIYu9II82xB - NaQkfCYLc2HZNrr17PVBW0kEkdAcJWQhX/PQ8b3Qrop5zebsu82EDm9csEEHJAxpNouZWn7bVyGw - 8xWqVIqnGoZAZDrNdGn5XV6Ggs/ZIpP5scfU3ns/zPFX1w6UfJ6cUKs5B31t/L3Ab3W4nJeTOeZo - p7oBOAKnc9kgKSLlM9WgDGruguk7d7m4c3cpvctfzUD54XT87KdayRnxqAh9EWcIRZKYCpGYZmzF - /G5fMUxFvsxh5nE/4puz7OVnt1jYNzA5ChrOL0UmHfsbJ6NdGvcWqWJfrNdyDx3CzBKES4Ru4ZrU - 2Be92NBrbK0ZObiaHaxm9kgFQTxhwclabxbMYUkUiNBuUlj0mTQtvMKuNUvjYbvmdWj84C7lGeUe - faHxPtDBrayT8dAW/U2+LhoKpzobutdbgX3dauUs39tsXo6odxjHjkS2KgtDqtQ8w5sR+f0PUEsD - BBQAAAAIABN5e0/gsZ9FRAAAAHUAAAAVAAAARGlyZWN0b3J5LkJ1aWxkLnByb3Bzswkoys9KTS6x - 4+VSULABcgpSi0oq3YvySwvAQkDBkMSi9NQSt6LE3NTy/KLssNSi4sz8PDsbfRwSYJP00Y0Ci0Bt - AgBQSwMEFAAAAAgAE3l7T8Ra8yNUAQAAHAMAAA4AAABFY2hvQm90LmNzcHJvaqWSTU8CMRCG7yT8 - h6YX9NKNH/G0uwkCGhJFIqgXLrU7bApL20xng/vvLWsxSDhoPPTQtzPzPp2ZdIp2BYrYrFhn/FEr - tN4uSUxGcxEk8QbvPO92uh3G0hDqAKm5R1u7fCcFcS6xBLpDuYGtxXVugJRFkM5dios0OX6OWQ/S - lK+AXluTV5LAU5ocaq1fcmzYqmOCzQ+CqVRrWcIzLAHBKGBjo6q6gMPv9L2bAA0CmOg7x1nyl+Rb - G06tqwJQjA1BiZICZCwqdlU5i+QZvxY34mrvkCaHuKf5BzbUNMReXBE6kfHQOg9E2pRerLw1PAa2 - oa6Z26eaXE1DjWFuFpu8X21l49Pk9Gt0SaLNCSzGvsA2ziKxuBAZn1pPQ3CVbWYKtSO/iL2Z2RoV - eEHtbD1noXShqf396EN78me93yb3zr9bdewvxOJfCH/I31N0O+3S7fzD7RNQSwMEFAAAAAgAE3l7 - T00vPwyXjAAAOLEDABEAAABFY2hvQm90LmRlcHMuanNvbuy9aZOyXLMu+L0j+j+ceL66jwMoakec - DygoOKKgqB0dHUwCyiSDiB3nvzc4VKnlwHzX/bw74t3PrruKTMgrc+XKlStXrv/v//w//sf/+Md0 - NFtWBYoxRcH+5//6H/9f8Fv/9xqjCv4//ymOUKqtmwJsGP81F0xL1rX/tQeKlX/+6/KgJYsaYzvm - 6el/gl/+79Of/uF01ZAVxvYpxkbwX+uGPS+sZU0IfvN/n3/j/46awm30ytf/9xQdoDB5+5vgW8ZT - FCaIp78E/t/KP+df/z/Xr1MYTXQYUbh8evCN/icJlv31/Yb/77VuqqfPv/6SURTdnWkWsw7EWjOK - JVz/5DKmJmuiBVuoaeqm9fh33ZdVlY8BnW06X7/eCl5HVoS7twiqbKOabXqELmv2A8FBVRCde+TO - C6wjUp5xYmTops2wPtMb1O2TIm+hfqnBr0f8h1BO0lu6XaoUy8Xy7V9O7zQEjRc0Thas+z/5fxzK - nKlb+touwpYxEuzgTUX/VcH3+S/5NpQfz/uvK7YcWeEFs4hrtiCaJ1u58CkGjAIm1SJUBF8yuch2 - +8byP9/P/u8buqup/xDhInuRV5Tgb//7BfnZniORX3/85vNc/tJZyFiwB2zauqYJnK2bnwELHidt - U2BU34g/P44ebEELTMYqDnRRvNA8UyypOyYnDGRtW2z77G3B/ypVZTTe/5VwJmr4L4qoG0VmS5pv - z7bPiDF5oFguPbegC/q3xME4tixBZRXvZvif5PWN5L8eHl37un3y2O1TUS0j6sfHMZ1XQyeJSd2M - ZEy3bF/pRZi1bJPhrm48/NAOZ5G+Aa9l0TmLkaZV3ngKHxjMto0iJjD+d72UYiS4ts84IOlZ54+p - BF4R+F32/kLtf/c4+CBUpPFxZ1LRR0PKZvBA5Fm2oBYpyafgg+FFMdbWujHrM/K1YiV1+7mD5e+0 - lqciRLWN83yZdOIlOUlQmWwcFu5/gi3b3lDnBaXYVmT/n1YR9n3wXkBk8/T9XsCmdgp6wrEhTN3W - OV2ximNfSJy/IHFmA7z5mqkfM18+Yvple74EYBF4fPcv96Bfyv9rrf/+8yNZ/tlg/7g7TFunZ7H+ - ToXef3s0bV4D+SR+7M8EU6lbwBWKv9QIHj8/tB2EmiZK5zkiln20SYkxjWtE8sPZoxR5kao4kFmT - Oc9JvoSvoh7fIRi65n/l+YuDZIbv0/aCaV9XCz+UciVFPM0HiSvezEBvnr4a6fWx6vPHLsyKpGDK - jCIfz2FFRzdVxrYvtv3mLc/Jr9YemZAwZVUOdPfpvaTAOaavd9/Peoat+2GzIXnFRa3cbPtQymuZ - C/JcYZmcfhB8K/zKCrykWahKcYHonKMKp6TVx2dPiayHp5MN/0oRLEUcAeHdwmmofHYL18dSdAsJ - xIrpLi4Ov3SO/aLEA5GHPSIzohZkEzirSJkM99nQuorOfg2MD8/i448PFIP86/lf6dlh9aXCLtBG - sTvgZyD/zO6Cx2ploNxI1/ZCixLT1r6WHtGt7cOHfV693JNR+lY4r7GfUcWZ0RRFOOfGiqQhcCd3 - LvCfJrObAeFPgKf02id//XNKy86Av5eK/wIT/iFMUiO+Xz+nZ9JfL0jBPEMv2uJEV8+GVLHn3qQS - 8jDNOy38uwz1qWgxzfasntwcb3Y2euNqI7hXSr8MqM/heMig/TFV+5EgSG2buuEH+3uZ+xiXv6C6 - /h7X1qflyee46Pkiww/JQ68uFEZW461FYEXU/d9KMckjLmUo4RBkKUVHYUz0YJiCFUY9Xyn4PELC - i5P8F3ipe0lCO6WfSeTSJYOcSioyzZzSz08Nr7fAz4VYQZ5FzzKz9FqIDyozr08LrMxoxcb/PEDV - 4vWXGhMsQYtvB28weZGWUgqGFHB64U/ma4HXTaYIgJlyr2bCPRafsBaeFvpXn/Y4l6amgLAviK2D - Ty/Q/ccsxxKKFf+ZzF9S9f1sZi+xDsVK2f9fVi8wJd9v17Pi7rD+D06xUi2WM1P29R1QLu9IQxPh - nGwqRvzWW6Viwe/fkNR833JPZrtvWadhuKFekMRqQ74gZfTf7uWWzhu5DxQ/82EjXesKmr/64Ern - 8DrCPPhkJYcE9a8p5o39COkkpfX105DRGPHjTlRGq8X3y5EnPuR9BjI25M81mCLud89GWE3/W9R1 - uwUaW0s/pIrx8psNxwTWcssxLxXGEfZuszmN0fHho2ONo3jbCZGU8NIGUhzi/iyx+2gL64ukoR+M - 4iu+aELLd0MTmMp/ml96uiWVs3t6NTNE/4yfp0SIy1mfr3qlf18E8THfHEoJrzZ30ttBSG0PNqt0 - YJD+/IDG35TJDSnKh7zgwzZ06bwHncuYjLfzE2a9cPf818/n1c8/L8recilqiRkkx62FeVlxEGH6 - /JW+EPOHgRJ3z+1PbH2hGqfzn20pVBYqEm2+1YenLbuQsj4Jad4/dz5T8+rppzmSSA//qMUJR5VK - 5vDp2MwlQPpJQn0dOH7nvaON8B8DNhQcPhT7IEuFMDZzjV7v9r1zXvD53+Dr2vxcJZtlguvjZJDV - Ms23yiI+OK14w4XR96QDWZRsVwj++99rwywmxZhl55F89u2zEVavaVVyJJkgLk8HBezT0xkX2vfa - H3WWSm38u6evWrv9klDOMXxFUfz1frbZnDxGUbTY76PJfYgyIinu1fGUHCa1CIrNQ0mfPVcCYIMc - QmxIP062H0OUTJLgn4BLMOLzzOW/rGX8i/T1p6fk1/NZKBU8lIXm4HtSjXV/WSj2haavah8ug1Hi - quOLQc7J+qfnB/PM1Oej0fwTSNnE4zG3hX7Enn/buM9wjZvPivi/17V/eNUYZx344dzzk/H22IKr - SAssbMiXEu7T5hsUZdSFPVzz8FyxdX3Yf/blOa4IFekPGdPr6uXFmdInLxlrSrABGPRHDAHbqf/Z - uR1F0v5nN6m560z0+pTpQ9+0jqz4lhKqn8bPjmuRaKa6E5kmmJ6Clls4edN1Kw6HvmDZ5rniJCbp - yShC4HvTqeS+B9SPHjOxuKDaXjZ1LRiwc8af6tjLlB+TXbDFdu+9YjK6Dt2Y5DNLMP0gw7xJ0ofi - EroZzE+an/384nCwdCWaOq+0Xzn0M2Vy//XUhrPyXEXYn/n82NefSb20vJi/fA0Oln4HOOHdUeCv - o3V/fKSOMghuaP25b2bLih/DRByGY3bjC0roupK5DdyoKkN7MIzkdnAfSgTAnKOJz4qIpLQbQKLR - ObYUVKZw0aehe9L4tvrAp63r21CW945FVPTu6TsMJ7D+ZyTh0dV1MYwbfc2h59otgTHPMW9cJl/P - wBynO2cDjMtrHPw7EYPH1odxGVGubNvJgKGtjsALMaKvgI9u3iyQ41EWCV2RuWiD9YLcydnGHm7n - 8RXr7a/7zT0nuE2snJIzGhMtXL3j0Bc8RDjlhaMCn2AavieNj/oDn5hTc9xV0W2hQ3wRbpigp2LG - jsmogqub28gON99lWrxm2k8YXJZPCcIyVUkW1OUdQ964nO/ERAzi01LxNrmRcRB7TncIpwsyolOO - fS2bMh+D0orhWK+1wbGIEg/FL0YzPBJdsDomGJuLFhEMdO4uuxyLMFbeZSjzvCK4fkAF+9OQZ8nR - lDvcc1Gfjz/0TsTBVx7f9Hh9TWnI6MFQ9KihY0Ab2XwuRNG/MpgRYU3TbSYePt+VGCETNa/pL215 - IpHHNuSAeMoc9ei6OVHFdYjfDOay4La/7wiKx4VgxIjeMSClGBETFCOOUQdfHcufj3ReuN0SDE04 - duVo4ETX6lkhiBDc5RSDcHC5ZCkG6V0v+bCUgmX4Zie0GU6KnCm/p43vGr8Y+RZ82WuKSO8GG0mZ - p/kvNPEFvcSaQVBBerFIf8UWQ+QJJd4WxWsGlMloVnBjV2JV/ORI6tw2VHr/jll0oyWDu96UaaTo - +UITJ/D+Jj3rLjLhdzPFnhX13QYTy1vf0MWdIskgFOGC7aPICfM4hhAtz972p7Fr4Bp2pom1NHhC - FHHkPOUQPpp9Rh52inxGi2tDQdXD5MWfUU+Fc5gUJnP1jJ7cKWf3EY/8q4Nm+E3IWDPsEwahUftJ - GkXoF9unCTZe40t+x6Yla3wSCf7lu+O4JiegTri33hc8QjCvF3vmvEF/zyXU4vGGGrnuHnq4tgmb - kX5PH9/iv3O6MM8YN1sqr88f3lAH+PtT/V4OrqKJ/xH3bE4tUqxQIfpLHqjKCjx/bt0SkwUh+TMt - F8rr37M411wFZZRs1CqO0LntnzTx0Q+XVb4h+EoYhownnlCSth5qGX9XYxIl3/KCMD5KSYpykr70 - d1X1RKBE976+v/s5RKYPOjsIMeifFaKEITOiq+hCc6+imPPrfeVwaDJ/HXGqQw8VXI9eXiD2TZBW - +czdhntKFVVJKz0SVmRF34OKaQuJfUccY35qSe/t4ofWQldw3SsyuyKu11VKKZlkjF3WTBWdj8Ju - vzc37V1qwzLxJXkDeJElR+xSK85Pq/IvPY+al8oyLT9+XoSYjc4eavnywe8qUm4Ynosw/0UIngXK - Db+vEtSMPe6roR/xDu18dPAFSm5q+HrmUsT7LzLoR9Fyw/Qkba5mHblhZspQnyTOD9+7a/ryMNi/ - yol8vGQuE6Vc6ub/Rf7jIlFuCN4eG/hlk+LjiYbAnF8d3I97h2TK2rv95GxV+HXuIonS/tZl+/eh - k3wwvpxt+WWrzRcHd3LB/QxIdvC/OhmUZorrU/Xld5NjQjYERdauHTBqxZeXOyZF+ZXcWSL9fXwq - RXT/nTnDW7CyVImZqqGnUh4Rf0s+zf39v8hSzCwH7bOTiE9NJrEcz96Uk2B3ByRTGhAfznDGswbO - 58wYRjgQ76TKDsn7jcF80Iu8X5n8BOO/1S29oqFlDQSKU0GU/Td53/HI09DlRXP966Xdn+m+2gEG - 7+V1N/sA6ME+choen2PMlOXKJ7Z7eUj7D7WDCVs1mI9t3XxNdhr4PmOefiOxvL1nkrgy9jmBdAsa - s3bUyW8CuumiOBRshvdt9pRZL0IZOt2bz81jKOTgbl+8LB/xnhx8+IO1OSEPgeRgW88+JTOF3LXk - SAv+NPxmto72D6x175DOVqH/qapM6yjR7zl8k/TYSArBQOI1ZJwi+n9lAHFFMuuxn8leQGq9kJKU - zb63xYzVlk+E9AboPLd1Yue6M1bCE1gy1MVj467oGnh2b8Cp5D7zHNGPj88SJzuFnqlx/UMai+as - zw6NYh7ASaB9/2WZKvxP7zj/kSH1IHbGCN/sc5fOrTTSqKpI1Iz0Dy0IEvYUjNPK53N/j7RLO782 - yCpvzO8Widys74J5SkYYtaFt2Hs1Lo6h5azXFxebvTf4CVLGWkl9eyJZRJ6kGcDrSfHP6zWPbY+7 - 2S6lCsVnp4mzxOn6+dmi9NWZ9RcU/Pw1xTV3wGWrHyvdyri/N+kYp31QnvZgZV2Vd60xz+rgf/Rb - IlLqJp84DfqigUpGyv56W+aaznAfL3yL7MQ93EK0q8laU7nu+930/85dWTdEUftrR2rWmG6jqD9m - FzP81Ab5ewr/r8T8MjOrr/bwSYyqTUqMabzawMn9QOWXTNnBdtut6leEuCk2z/r9gfKduLno+JqQ - SknXsbvSv29XnQfc1y/IDPafF0D80VVKCrXVkTa/M9LhT1Qz1OCeS0llKVyTEW3t8RtuvEh+ZUXi - yyf+nmsjol3NkE775D9R5B2AlOWAzWJzMN7dCrnvvD5KnzHO1w7r7wqE4/L+dpUpOuBc0h8Pn5+t - DlLMeKRxpenfuL+bYIZJfqdM4stpwu4uZ9IP/NTN40qbZwPvKOu75AWblGT6DvzUH5ixto+3fQSE - mTqTbLNx1+AyrQOoceLU3PxyO9ND309C7swmr4iplA+D49QCX/O9/7k/z8OaIdvl3E/QstXQw6Im - JQ3Fu5wyV+N/EDw3lBfq884HvzyGu5cgW7QySMLmcV1kikHF88/NUL35ZF6/wExxBCROjCRMUYS+ - yfHuBrHvnRWg2HgTLMa6diyVZMjHW2EytMYzstmbYfo1fFEvBn2n38wBzqO07uW9t+km/1NJh2Yn - /OlFaTu9/Czl9PnZ2sh3jjk7mNL36YmToun56gT3XuVYqnqv6mxN6nZiTysr6NvFWjdFIYyCbujS - 6YLyeI4s4eLqt26bRbtb6aEKpdi6u/E2QzO+Na/sDPn2+vTfsl8e8laz3OuDbrHKTiPBvfSZdB7N - CJXge7NDI83l3BsHlxE2GS80bjexU94WvF9oZNKU6P4VWaN0ibmyN6WwUWBOxneRO0N473fXcm2a - nNLuYrINwnRi7PebbFmZyIPgeRlJalUjf2aV8U6aHDD0OfgxofU7Sojzqt19In2WULumbKc2WeTe - XjL9tuV/oJTgD5vbyQIyNLFUC8MTzX5JM0vJlZpSU5asbCHr0vVnGsj+0H/GaOUzKV7aRAVikl42 - N8dGT2uF3jR4XbP6iiJew/P8G5ff6yVz/eM4GfTfFzO8uSu2GfwlJZZ3XQT+8KT+1Jp/tAV5+tTz - +4mePvq9SjtXFT59aOSoghnk1ef+FKV/fP11uX3eiRTMr3zhTLOYtfDhZX9+wN4PpMzHbV/wTUZI - q2Ipzmbt/YdEH+QP9KfeC0kYUCaj+Ssd0y7+aEqVreavH5CTytMspk/saF/qIP8GhYm7jOR3+UrY - 6OX3u9u71iHtswf5IyXqnP6+M9yTMZTbgD25tl/R/fOtz84F+BMWuSH/3B+ldobgU5O+fOad50L+ - AYwv8+6/bG5KP28Sccj8ADhL1aaZHY96rVMyN/dkN+nfn20ls07ok7KoMco0pb6mjw1B//m/IrSo - vXzK16yVaSHR9WVZA/tn+8bGCWP/TK/Zjz7zDs481OYvwjLoOB1thrsTOtZgCvyzzunKdw3gexa/ - 4ebLnxeUoKpsny0M/Lz0aEuMP0qUHDJDN7aSvUXeazIl2wxnYbkXFD6XOUOMDSblWs8/1b7lthQz - ++jkG7ZcdJP+saEb5tE8c5QujPfZrw8t9UMUGfy8xCoH/eZxZukG1d+yyExSYfJbSkOeFvNnZTLf - KszOTr5H0W+s83qevhXsm8/+/vE6wyXNj35UzM3Ls9TLV24/iWYi5s//wD04t5KmjOfdydTv5la+ - 9L44iarY7w9Cn9el51PQsbT0/EPPMeTPPjwXXcGG4S9ibV9jH+L5tq4oN1mEcE8GC2TOMU1Bi8C+ - iKuqYwdXXJ6//eXuxs2xmzec7zr8CKwjRng+8JtzH0T/s3BtrUeg9P0ut6X86SHK51G6rnxCF/E0 - RpW526OZb54OjkHeNVB48yw+Lt7UrH5++PuwZZRnH8qf35ANZG0X4hHf91+/+RPH7xVs6Aef3MX5 - gsI69Yyyvn4aMhojnrdE370plBqvu4eP+3cfCYISCVM3bmPqEFTXvc0Pjz/flYQVUfd/K6nxyK/z - RiziRa3cbAumLa+DWqiP8t5NVFGePfnar0Pz7zZg76hCq+8reRI6yXLa3432dJFgTMb3ukp4stNP - Hx6fM4ojUI7x0TEH7XOmp4CCDiqYP42U4PEFonOO+nk2OT1LMLYUjUJVfj6dLGCpFMHSixk6wyjl - 3FQltVjiOxl15pgZJOfvzhKZNE9pJmpxEqvvTbqKuA+mf8KUth7ORnl2loniZkS3gxUJoTD2WjfV - H6UGkWw+uzgYH6cYQ91EJJRnCJEDgZwihweq6++D4DlofnAXeaXpRt6YRMpmnPLdQs+u2ImYWHrG - 4Xb1l8eh0OR93k45tVc0U/+LTrZ/XRMARSDdleTnRpefF5fR2seehkqg5b2vL8vTTtcOgannArO/ - w+mTCad3Jv/Tm/IQLM3u5s9e8KZJQiqXFb1/+7MbyrK2xrPEOegO186eLWV/nR9SVwFywOrbEP5a - tL5FyAEvcqecywjTDgY+3xl4nYoYmwk+o63IXwvYtPcv3kqeA8qnBGnaCD/erZLS578vj/xLekl8 - kCJtlb+KRVNCK3GdaqolWJnWrL6EMnuVpeMKU9RauB3hXPznG7QyVMztSa20lBKiW0dWyN29Oh/U - /nbf/VKWvPA7nw/MwvhyBu8sSF6wBRlf//MGspYsy/Q7sLuRJi8AUW0vm7oW7OnMGVMOckFpjd8/ - ieQzsfKCNMhZp1P4+RnMELN7nrWYITHJSxO4Jv9x+N/hkLMSfDjyQj7pFUE5Qn/PKJ+jA29xy0tH - fcEjBDOA5Y9r6lf4qG888tLAzAoaHXBmwsLgt9aUM4g3IuWFYsKLsv6Yq3lfqaV+lVinW8fwDsbs - NPYkMZSSzsKnnOKh+HXQ8wWIz96fJ4xZbSWGf2ke4p72naMXr4QqgLhayONOYMSDxZHrqCMVKt8X - +yZzCJUi9EnT533+7BT7hRXMM4Z9SXzEqUsKV2CQ0dB/lCI7wF4fzfr7km2vZckLv1M5i5WwL3TE - g3O5gPklWF5Ioior8LzA/9uAvMqVF47XJU+OOIZclr26LiwXNVxhyVYN9yJmEkP9fE12Il3OEP/x - NVHSmsdPSYEQLNK6wSpzs79+aNZGkUXokNLFBKnWDuRylD1jW8gnMgrOLee+FE9e8fxHK0ZOZ70z - 0wjOC6cqrDQb697llvqChwimvI/u0lNRSuwK84y0eYd3DmolbT3hRaOvPj5NXf4ivZwBy04zt3fa - /05X+P19/9Yekq/EzUXp2edQX74tSwFP+s4kyIvRzfyPdef7w7Z8/tCstZyHBf98UfZiZVGamSCI - uf+eHAs5nuKRC/xBB5nftVCMo7+n+OWptQDG7PV12nfKaphkDNLp27OHCN37UeV5fygff5J7RdET - SbOH9dTKKVtYM4brRoLs4Pq+IDGTSfqbfYYiGGkmD1MNC3PcxLwGBFnD/Cri+F1T8u9aHeQV3H9Q - UXa28W3n0c0gyh1OoS9lygjgbzmzw/Km2exvdGnhsqd5dRR9jlvKyrnm/c4Zx++W6rTVEfzXnZeC - tVODk1iqesE/QCzg+lot94SUvvWxKJLMuVKz9qTjyivSxWuSEUqRF+iLA5k1mWujmXIRzLkzW7UU - TSeZmsEN2unp/sw0quLjai87fdyAk6kSFvmB/4eQTL8I+rE3dIb1ek/dQ0r33TyfDx6FSxs7lDo3 - FTKMJLW/VzbnGuBge53QFZn76uD12m1fKa9lwy9rhX+SUIwp3lybkKWnMIX1yyuJHlpG/ldowrls - OYzSYiyZi0F9vt38Sfz2icWPdoNRKS/2HpXseVPuJFy+eqslYTLSta6gBc2Gk3AhDYGTg/2nm4LG - GGwik77aOk7IKehEkR63U5rMt3OBP3WZS8gtvsk/MAq6WPqGuBfM28LyeLwiUz/bZAhPfJfrDk1m - RqY5dSRp31+wFoU0Ks3NUYPAOQXrucha/nFKJBGDhwMPSXg9tPJPwspfHnCClQia7+sBknAJlsXn - 3tknVgPZf0KLPpp+XEGQiMGTNHNMNrcby2FZmIwbkMV3U1cOUcnuTztFJb+7p6HYZhQhCJ0if/w9 - myepulh8IhLf3yNRbPmLaUVOyOTm/ohkjFaycXcCOh6X6NQ3AiCmb5dxfNCrezSS8aEZm5OiO417 - JtGJcX8WZWyBD4rfGDGOQs4p3qH/e4G/v+AqPA9CNmLRzTT1dL0Hf/4I0vafiYNCRIrH+05i0V+v - fYhFPHEE04sT9Z+oI9I8dKwLSfW1aI9JF3caDeiHjBwZ14BuxKhCcHGM4sTxuCcOgh10tLzptB6H - CxFj6jvRxXZGAfVU2DmCFT3YDGi/2gvEoj3t9xC6HH0pfKJ/uMAtAiktsOdGgzGJzwmp79VrTDZ+ - KHuIBd3N9XWJ5EgAYVSSy6VGxbmPmB49tvqij0h3rlmItVC9ufQBkS0jmKhjKezh5uYiPjglXWJ5 - iUdeA1mUbFcI/puUVQLy2JHuk5u+ErCI7wZf3u+RgFFkyu8rzBg++vz38gq0+IzOi9vI9K+29c85 - 33ZcfgmUcuGAMRofI1ANf7tKWpxpWeN114q5mn3FNSabgR7LHB8us4tL73+9/L0W7pyQtmNk4J/z - u2uIlohTAt/zlN/tVmEiRjGZRCT7bjOlMLIaGYNPdxmmw69tRV6VvL8lMR1u8U0n3DWMsbn6H6Zx - ssFEtsQvDqcfBH99ngSsyHQnf3cO+fwYNyZ9zDTzqysnk/GJQzwVREdhzAT5iu+rJ8d7wVROqZ74 - PM63XgZbI2tFd5PySYDsi3s4k/KJT376KSn9XVl2dB6+z488x3+TRyU0Gc26nvI6HV5MxCEi7fcV - qVEpA28S5KjOl51H9kwxnNElEoxKFkQPcVJ+j5fCxqFPFH7cXTMbi/j+3tn4LOIQftdJxiS/YhcP - +YgkYR+/2GBQxBCaRrX8fyhyeHvXvovAvmi+SW7J45Z5neuzYMMISrSeFnwlYvxd+JVuMdkpL73/ - PvDwqcQu/tdf35Te91/AzurTv+rm0tTmpbIuDZbnMjU/DpMt2/Se3r0b5jDFVyAMc0FEeioO0YMR - 8u5+yydB/GUc/xO3VvMyaJ/Xat7LmsoQflLEWDpXMCYyzSfVlom+8v4AZuly+vKp4fz4uiflrw/8 - 0kHygWfr9KH+d0aqFI5weCCrU6nBtcPPhEkFpbtrbktA1Er0y8ALf0N11Ja+9016Xz5yu0Md5vGv - PeXzw+VXpd43Oykf2H4nwUM/eLOe+0QTqqFx5Iu3v9Yy/6R2wqVcurOoVGzUvMilMaebi88fXzp/ - b9pe8b8+kPyoQU9dsIdb4YqWJvuyVqPJeuXsytr/ZEwVqhbDvutsCtUfUNxyPKTNrwHF4Jc+8vcl - V/9eC7uWnfx7JXyRWzcMRYgu9PUVunUoVvypovxmALx5cVgnG07ehB/zFIVIHxDdtTx1Y5HfGcX5 - pPTGCO4p/hsvLOGvYzrRDfVVtJDE3i48L2eAnq7novC5iRR/i/cJF3GlgOHzA1Gx1Zxd0P2kKv4D - xV31dnqR8ovqjl8TLb9/7rxHkpkJfZ2G81e1SQflq2NlKYz3c7uz3zzW8XEqBnW3e5mq1u+nmdK5 - QUgsLO8zVimk0z4j4ZsALxD+sH1JlXbo/yqJ93M34OEdaSxWX7ncXz0Cspjt3p2qS+xW3hyzywXo - GNPeRy9zd7wlyrMPnQvC5Z6upaenNGURynkufVGul5kBfh9+jB1uRVFPnGRgXIWkjNTpNOZ/tLO6 - RLz/eRjcnyf9heuS9DcDMs7v+1452tN35yTCk8aZAO5r/v/6pVgKA+BuNv+PG/4vzoP/ahwipR0y - wOwUvgQVef6y5dTqpARGbUWVaVcusPTqQ9Nc6+DjX20kiVbvuWd4/sAe1H2K98PaPrvZ/XMa5ndN - Qg8nrJKueNKzyrjWGyIrE+nhB1tOe5h8r8Z+tfuJtu6PEMpFsupwRvqLnOBTSH7Vltill4cia8Lb - PPmrdOSzafqGZZoz9Km46/et5/6cQ08J09uV5i/EN9X0ZIjF979kNf3YZCACZfj19H+v3dMfjV9V - naVq1DrfvzB3lW3FaVpGk4Juzz2Znm57RmHz0P7l68dr6/V3L/g0hwdF7CFfk+a8/thgJvG+2o0H - /4XzWbaeLBvH9D34/u5VSqwZKwNn8DBPJ9jOyyhEyTyFnz2odyLEX3PFAPBXoXATAuYKwr/Bir5v - 1frNXi+8drKF67r3Xzpv/Mefv5+awu9WQbbI3q+UchjGmYjzIuz51YrNpiQ4C3jj1jv8vsMwD2vy - F5fMpbTQ+fCWNNc5P5MMv0VbeVvpNZH/Hyv/w/7Z78Yh1wg42v5Piiq5ZiFiz67Rpoq/eM/geVeL - 6E0y4m/y59Mi4624aU4Mn3oo5lk/ET7v9d+VDq+prs7kw+Pve1TGIg7teUPtkic4Hhyf0dg3bNL6 - 2nz71HkkwRBrnwqkI+95h+5aetNfLzsZrHxOwGeQcfyPcw+fHP3f7i4y3YN4L/3vnCOfH5b+QBRi - k/W/x84fn+7ym6Uub8phK/O/Q7rXVIlCun+Pi/+dQ4TYcs/LBiJ1aXwM3sIuJpN8ePKq0D9aT5d7 - McP75zKo4g3Xqf93hh9ZmsaLk1ZJDSqX8+P/PYn9gUnszqFGobOM/CfNh6nrV66pQkzM0Wbxa0e9 - v2vuX6gxcs8fo4mwpkoIpirfVrpmk3t+lDiTvNKNLJm1vE4fmpuvzgaVxz2GjHY6MkDm8cvTxOfO - ef3uDcwMNnJfNIfKcxPsQ+XCdchV0hf3by1giDIJpw3aqYY+0mbDkw7zLxmnPrB/XkH1q04tfkVD - 6X1V7gvLb95tidE0QYl2/vJiHu/udrryTdU67hH5uxxA+vLf+8JkR3teXW+WRuI3/O5D9m1Wf9n6 - +zckmR6vhPtVzvb71rUctiB+05G9xzvVfuFhsr+vd+OvGvs59DN5ETmHIfsZhMV1UWGe/vFxKa0d - 7i4G/IVD6EffyDyH3N9aLZNFS59Hd5u6L7+55fEX2uFftC/3H2IuwW2i/20ovzIYz0f5KcxbGXTY - +Nep7OXjX/CHeTZQWBIzOP9w+n9nkiDFYjLmnXL/QTlJb+n26Q7GO3v4x/aME7aGqQftJ76/9B/r - HFZebupbM4ol3PxRYmqV4NbJfy7ffP3em7SH/8Jiy5EV/rQGge7v0fx+McNtfTN4+eJA2mfvPf/0 - P+eFcmmONc19TYZcp74mmv1pTSSbElpYKLC9xgFrWV6XKlN2wrSpVh8YY81eh9zUm8x0UTd3LCjT - DW7Shn1mfWFNHubwmJn8r/918z3GRUXql2SsLxl7J9n30xJjScQ7iuKJoqg5xlYsXuQJg+Ep3BfP - p9KLsGUE+55BWik7bCfrmdnTug2jTlfdFV+Z6UBjaJQZqmfUOjuPKeyJ8YHY1h2xo4Hz7r7KrBrz - /mJa2C9Vuq7JvfXQxEyrA3VhciIeJQaXZh03PLZF+UZixjI0X2LuW+IomL/gFFkXbV1by6Lz1Z4h - I+Rhe4JCk7qGlyZLYdodk8ye6EpNCpD7dA1FyHZl35PhklE22YqrKnuSnoFIgd64eH+iYj0Hwg66 - 7lXo0mGON+BtwcCXXTKMVXNP5AuD8x1dHFS1Uxed7BAtmetGs9QSxx5WMrvDpscBdrUjEyJkzO1d - WxybvS2MGrOmAjfcua6vC0d7idYBsO0uD1J9QpQLNNyuzgQWGssNiaoNIRUWwyF6J1tINM80kZEk - OUlQmexgXLSADgTyRFOhjtv2gR9Ux2pTqE03KiZMVuZA6KyA1RAewMctu1huRM3DyRoJ9MpgZVbe - UPtlR197C2UBNglDcbSVfCi5ABwCRutWsDAYngmiA2j7cYF63qPJCEPJwl1xulpPOpshy7iksAV3 - 9mCz7K3Xqw7WKKs+xPv6dMkbymFdHrG9rl6Y8rMqa4jaGIaFmurZJWJbVboYCeINC6AQlw8zuK0H - 2ULBeKWJhCTux5e2bHvnS63OV/xYRfjUBBuRzZNte6Xa45XnaSGs60pBKDizDdoETL4sNHa8C8IV - cL8AqJHT9Ydu0+hg80GdaE4OZlc61AmoagFIp7RClSblOchkXTHsOrQCsflUkGVO3pY/Wal8kVk9 - ycxdZD43/uYfZP6EfChexROvWBoZ6KIY2EGtCNxv/qSlgS2r7qXh0qmNVwt6BNp6ZyGZG5AlR/VW - YXUc0Ud4NamO10btAFjmtrlqLzvKBqW6ZG3NHI6E2+VrBT/soFcKvB7j9cn+KCnRNKDcyRgN8Qtt - 8UQbC+FryzkrO4yNRbnsctO9IPTmc+0gVtXKEakx8NrlQRjEgKZjojVDlKp1mZ7OyQMwqBvWZDft - TLcatOoWGEqXCfmouIuuLS9MjKeHc/mTH7nHyXiQMhrKX9Rp4Hyq3cP5SyiRHeorxxBMYNWdeg1z - XcW1MTtc1F25VQHWbVHn7bGLczSw7tZREgb3yLh2XKFHlm1X7ZrXWNcPa8OwjDWt9/oaLaqbYQGs - L/qfAolXuOm+zDLP3ckcVwd3vBJohNK3/hI8OwW4c3ppLNYoJBpb0sSnI71GIfN23bKgPkFRpkpB - h4ZnYfJqig/JKbxqUB6GwqrBw1SrRYymqqYIew+2qu0+pBFrxGhTu0+rknvQ7FsRo+F9Jo0E71Sw - 7Msceu2XAwTFqZlMnaxbwirauNrjNYliRAKj8c7EtZUJZLLAZufWppS5IyxidzQ3Uu/A+TPn0Bt1 - +XXVELEJf+SNFjkar1cUOpHX+mx7UI/LxSenYgYSnmc5817CT+D+pCyeKd9ie32UF1iZ0YqNyPc4 - 3x5uA7JQQ31Odsfl2XTa14covCuTXJObHhsqCx1Z71BqrRCUlkSCPx4NtSNtGRVc9yoI3KU7ixZe - 1bqKyhQcom+sneGEqA0WU22M1Z57mTBgWGcwrCsY3C0YgeOwvsB4rrG0XlI8vSSUctcCr5tMEQB/ - n3bLOsxQsAoJgD7HCqWVbdtlzpG6jEBMln0cr/DLhszsiHp7PzbmfXHgsf1pZz/ZLKbAwD4sxgtq - Toz2leqmrNsNZ17AzJn63IWFQiM19SZ+Swz9Vn+ffrtAVWat9kiu9dljWV/QntbSp6Ld3VtubUXO - UXqzr4ClvtyGh4025B6bxyPX1uShMOng2x5gM9ZGB7YLZa+0VpKhDGqVbff96H2LRur6jf2WCPr9 - FZqcTCtj13YFCTuQwmS/6i+EgkzyBR5crEZblHPoYWfJAHKZ6VaUgjKtg02MkLn+UKHYnmWDlqEK - whaZt2ZknRRIALKqs9J7Taats2y0c6JwLKFY8Sl+3wjEC91RvysChzbmCFO+ojaJo4DSdXrAjkaD - o6ZSDio3SvvVol7BHH7GHiozylW6W9kdmnK9N1AavjvGYVqDS93xSHIKg7H3PIwJjUhqGk3lTXF0 - XfWD1t+n68oKpOBdxbPJCt6a2sSit0dnK35urem1MEKl1paVx+0uqjRdF15bGwJQjuCqgxxq9q5h - QOUSumPJMobb3ZohY06rXplu9Oe5htCIpK/rJG+KomvrUKyU/f/9Pj1D6qzEzVUVsycyspC04wxX - DziHDKqNLkttC5Rl2AuvBxeG+LjbHEw3hA5P2qVdq9OqLwqzkddvQKy677rthl0YQpBrLduN91HT - WzTS03HSt0TQryn5i9D671PufuN2y90uR9ElghCh/tzhG51md0AvHXheMU230urDu2VZl6obbrYT - KzV92akUdtvuFDgAK2xYRSYa3Z/UuZ64ZNcadywpy/cT7WsoUtNssldEUKvD+j84xUq1WP6F8XC9 - P+wY1BZrl446erAKhEs0Nkib5sx+E4MGdUvXXapRbs8OoFDQDkQJ7mi7MjyB6Rpdh44AvWQH8LI9 - 9Yi1u+x0oeN2P5m+H7mfAElNxWm8KIaioV+p6IOpqNO21l/1BtjB8wb4brvajBY78aD1+dVhjdsm - sd3gBcjYTvWagi0ayz25UmiTxGvw3B0M5SrGjmiiXoaqEgfTwqpv1MIp+hUgqSs6yYtiKfo3zsWK - sJDdtYxv6XpX1eqcqI043h7Bs3qZ3Kh9GtwcupuK3MfGe14rH6e0Je5LCjDuzca1I9/l5T0wn3Y0 - 2DocJEQcHvU1wdPv3fUnQDJQdKYzMnkqghvI2tbXncDYpzOxKqPx/q+C/Gcjm91nvNv0aAd1t12k - 3ay2hMasvmiXlu6xS3RnElbnOkAJPo5ARPB6rt5EDaPsL4qoxqw7EivKaItV1IW3GVNkXR+VkRW5 - G6p66/nK6FzmpwQScmcJubOEyreEz1XxlrJ4onyP7c+jZCNdO93qIXM/qyJT25Ez7Q2ODqXuTJvs - oKlGoMuB0bEbsD1gjaa3A46HMWku6/1eb2W6QK0jN+v4sbVb1uWdZbFDqIJua2xjDQ67JatbGQHW - qNZ/vhK5GCF3I6Gma+KdhC+wfUd5stv3yfMn2JKGwMlBca/w5AxYWuCOdKK1KXtbYbODabpqVMWu - bZqDAsg1qqsBue9qmLirAoDg+uu3Kt3fVDpwo9Rqe+yuXalUUFvkdjMFWvVGneWSBABsILKb0OBa - P0QMje4NaRR4VUPXBO3VhWCp1U96Xa2y6U5X8/VBkxoov0facr2yB9nhwrScBrPsjV19XidHyGAu - yejOD90ggxh6066FWAdpAasAC+rNMb4TUGo9qu3WwvH5jP0FzUUy9UayD2DeUsTF8G3XsrTg3DS6 - s23bGDbmVb66lwY4rrcGXcEDVjW2vR3ORxt0ZQkerKhVrcaYnNUbCzh43M6IwnG/Eo8WO6CWUlVZ - CkRphZREHocJMwKcReNRyCjIfhPHBjm49KWta3vBfHr0MLWcD2RMIKKA8hK3OBIy2q9uWbhZAztO - eTjqAvr+QK1mjUppZ7X5ypGYWn0OdOR1bSTuFaW9rDUbW4jFy/2Z16cba0ZT1gwyeR5/PIcqkIN7 - kDMK1Hf04dG+Lcw/dalhODtDcxYEZTplNbUwVnR5sjea7QVZlg+b0UThN5stNq76IeC0tsCAOU40 - rFmrROIGU6H4GQ2VChjCTQpDRSJAY8RUnBrJHpcO3X3rc/kbAbkHAd/i+5QwPLD3jeHe9QpJC9uO - 1Ff5KTQkugXjoLuQ2/XjZ5pfSXVNx8cGj9QodwK2DfMo4miFbbV0WS3v2WmlANMWvZmos/pxgYkT - vUrRJAEpbUGmuReB2FlG8U5G4VHGt/C+og2P8LMqkWLPzbBUZ+LCg7GKTzR3uRjXyZVzxPZGgek0 - C2hjqzs9BeghmNCUvHlpuDsqQF8au6uhMiqokocv9ZooYhw+Z0qDUR2tQjQCQGMUfeskntZ6bNz3 - pTkfaEPUilwQvnZCO+mzmgWizJgB+FqFRFl1WMAKbcute72xM1rp2NYkgIUGO6Yn1DB6KXbn81mt - ulwhe2swW073kFRpLECL0DajNjxSR/WVhBPybsi9j8GCSn3pW6a3CF6fPdlkNSxieYQFu7FTkBC3 - 4+orgj0Se9exgR1MCaAnboRJC5lsmpWDYjG7bmcyw2tydaWt2IbnTZxB10C68h4lcLuB9rZ8pTU/ - znUCrHQWH3GLFgvcU4Qf1z5++2CFhjA2c52SSH8t8eUtsoPVQ5gecADVobrhVyjSquKscCS1tqVt - JtXWQdb60hRmCGiLigOoxUIbeEQbklUjjx7SkNWd0C6BnYNoOQsK8rZbGas4M/UtrMZF2ODGwK9Z - 5omwb5H+yCQ8+C9aAVx/j2tBi5qMtcCxx+qyN9xNkWldHwjDKcsv93V1eeQKhUpdGUkk116URX0M - LIwuze9hGyq3u6NCB+MFYoZibaHU85qbmbIfwfKIHxbqG2v8Nua9JmTks9TWVerL7+UfUr9VR3hu - 0fVyNxCKnRMj/y0Zupo+VWtW4C016owpVlopjDCc79fMAZzuJKyC9hTO7dTKtFq31lpr4GDyWFhN - p33TrGgWOELJ7RAo94lVbayUHGG4q+3F6kR/G1Zc8bs34fWjrKF08IpHUuR7VpYjoG3M12OsPCw5 - qxqBFYbNQtepQf3ypqn0XHBYIPpTQaS2nLksWfYY309ngq6J4mFkrlvLAVyjx9gA2FRq/VHPoRyF - Bw9VvRlqBNzjtbGiWfxP6qQ45zGZ+mtpu15mANIdWusJYjT7Y05hViNvIq1xkQFEw9g1FXyGDCtw - VZcoS9KqvR1Vl80Gu8elhaibdH+JwCZkEkeUlUsa1X1Rgf0Wr2jT6yceSZE/N5TNCHJtNjmUauO5 - aO5QlgELm/qYl/X1fr5rbnV6BbfrK/DQxRs4PpdXO9igtVWtoAw4dylSCrvVWVMpTRm70GMbXQGp - 0hOURF4c+3oL10ENlTB6SRwe5O99FYWRn11mlha0RKnQmpYAReOqxAjB7BJFtGAamw8HwylmecsV - O6uMDImuYjh9bIvisaH2WGoyAYd9ZdNB6wMSpBlRnXeclqgPuM5xuVC2b6H93ri4Fe0toA8kMWD8 - 6uqaHZJ4xd6uJwqsD4fAbGpxM9vgpnpJWpQ3srY4QEypP7PRiX4EdZdZugq4c61xw49elvO5tjmY - x8MG00Gt1y5AgKMrotDFyWY4JI0H6cKB+UUVA8/TDwJpm0/bSaZmnNrCABvj5q4EjIWqvMKGGFTe - yhrJ7aGJLA+ABVarEhvALi8hDjj2CVSGV9awNATdlj+njagW0iHKx7VXAekRMCzvOsfa5q2r/QLn - 9INg3QoYDtVbwvDAXjrtXH1qlrnL4VKn2kQdXTUbUxP2Qy66XOvVVq617SP6qAw7qzK0Wiua7qK1 - 8oAy2GnNm4qgjXFbaq7WNiW1Wrdspyu2zTZGC4SHkfXy2wgt8Hz+/1mPwr0F9AdRCDC/D61cGhTQ - Agsb8uX0yikLAmUBqe7CCorPVgua1Lb9xqrCFY7Tah0uL/x1Xae62LCEvq0qk/7I4eTZGht0CR6a - aHjBtEuNvjKp1Am1U8CrJLguqIWJUMX3c/nTmaBLHwFXYBlfRO5WxOfAvic95XmgSPCe2j8EyaFM - 0mdNs7LTN5rENlu95a5f2Bve8Yjp+n7NVYA5NqkpUIVVcK0ywWi2MYWaVWjQ12f+KmrB2oYHklqD - 1apjuFVboUTfdWFP6G4+HQU6I8N9CxYOylMzhxNBZACLsB8s+CsNUTC97MBEhOrIsya9hUDL3nHT - xgpHtCDNhVZdFduCciyXj1ars9uaHVsc0Iy/Fq0t7FJ1B7cP0/lg1sUm1kyvNuaQ0i0Hmy29obsH - w4NZZH4IGQHYG+LYIBtGduCOOmWQr2KzFtnEwQWi8y0T2qKzmuQg+8renqPDdmPQtJy9OWPULmcw - Y33bhtzliOCMsgGSItSudrXyFK4smofJ1D0oLerFNsVzfL6EiwKqYcQG07GlIFnMnXMcmeHaaaKu - Co31mqRV2tM6JirWSusPa8awJ2z5ld7t6XJjrfXRzlifmM6hN5vMDazV4NdGq1Be9VRPYIyuVhBN - 3lxYeouWFbzz6azrLUTP5IwC8R19OmgXYdY6ZexOOyeZQU+qmxrVFdAmBDQLUhcjtiVkNVu3h8vu - fuK2mQ1szUrjOXqYso3eYi04TNVZrDpHqtmXQKO3BIaURJB2RWERbTsA+gziuaUoJn0vNPNT6Ph6 - uGWWklLaur6VhQz1sdnrHY8/oshW3iybMwXD9/AQLhx6xgQsuEBnb4zXLDk2OLYEjdWG50hgDxs2 - FKl+HKxGFrNldIyukdtlcwdi+5lGw95qES7CeAYhdydvfFVc+KSmhSzjkZUOkYPj7mDSZaIjVuBW - +UCyhanNVKW2s2hI4nhZBWoKL3V21W2fU91qTe9NgOMYFwS6BKFOy0a9guQirSbEMgdKXdhrIf6Q - iBejPGGSEvgdhhNYX53ZKYAz+T3Tn5dlGJ6gwtybdmVjKVTBHXNsiNoa6VTmk6WNdeUqOmMnu4LW - aEoI1S/NCqTYZ0Zwe43v99UZymO9VnfZGs1gu/MitRwGu/W9wPGVcGWUkiK6ui4qGY4Db9BBxbFS - mbmiZkIeseshO3lY2pCK1/P0ygpBtvZyjYwq2yNRE5lqqbbvGJQ52o4rk/oQtW3enXNNFm8vQJlT - Fy2H2liL2LNyUbwVN74SzmxSUkHPtVsCY/oL3cy0oAwZH19+uF1XTcP1CsslyPHVudDZ8bthY+/a - TYOCBlxF8PpDcUwRIiwKljh2scm62pvBZKdFbbsllSLaBVWeuN0K3fXU+FrYuDZ7K3F8RXxxSkkX - X8/AHKc7/hI5uwmCq8qHSkMD59QKMpezvlCnD9u6W9sMdqxDI5Q0cpfedm+XKadTbXQFGZsDA3KA - 8ttVe9Ed+I5sVcIBk96BuEHuFBTFRSv+BPH1DHMneHzNPDJMSUHj4N/ZaWW/4Urb43a82nEMVhpi - Y3mFb/Q27GCj0bYq7+cEAZbmoEUx0yY4W013IlGG1qW2usNrzVm1oo1HGFtDndV8p0sij3DDtfmi - zikMiDrzLW18VZy4pIX/XeOizPRQW4oEh+DQUd2u0fWsXTYkxJtC9hIs+6viOVJpbBsg0T72muWS - 0e/P5og6I7eb4Q7CDbhXp1ioXztKzUIfE5fGpkbuERkj4o+O+9ZFifVx17woHb1QrhzsPWenkbIB - 6AAHWy3cf3MPsRSdhjCCO8itSg/DFqy6mU6wQn0zGlc7/lKiscDm1HigVuXSpnEAUWCE1TqABg4H - wLzVXDOmvqtTUvwpxL6TN74uLnxS0gJtdQReMDPOdBSUPccysKY5kFfV2DVYajpdmcH6EsegSLvR - MlAAchalw6BPN0RrBR1kt0Ee9YVu8+XyEQerkNdwaaBK2rPKAdYpuzs8xndSrrV+FDq+Pm6ZJVGK - bl5rnDJTg2kdRG5XaM3qc6Q7XpUR3iMmYxItbNxai61qW4iYGN16eVZaSWK/EyhsIKBae42JWrs1 - 88CtBqxsDFz1e4OCJTWHy+O0GnGV/ShmROC/yFOBukjoisxlmJeGul7T7IwqparRFzccywIeM1Zd - YzMHGgDf1ZS64HLtPTc4TFTPNXRl6x6EGkHgUL80J9qApe8HtZZ9lA7aVAHHW7e3OrgRfdC3tMat - tLGBP3OJi/9lIj4lp/LJ9XFLU2HXPRwaCQqirhaqBh6bXdupd+pK3drWhR2Aooelg9QhpTbRuk7H - bK7bhdlsCAFWjxXorbwACzDT71ubBY+01mIfmUZwPtyNxMkSfa84xddFkJ7KegwQyk6ZqlynZ3c7 - e5yq2RVtwSELxcC5dZVQCv2JZsAr3anAnLaSld6uW8JN8kA1XcFDj/OG0Nxr1TJa6DlaW2DUMlkj - xXKEMXBOwsW1/Vvq+DibGdp3jQUP63HD44jmGlXrENbl0YNhK4fZtD9iVd/JwIA6KnQmQ4YmUKeD - VWwB6k6FFtdvT4yqLpAk7QzW8+aB1AuNgTEDqr4uouBrxrJlM77d3h4JPtXmaoySHcCiswQ3w9GW - m8mAZA571dKe0GazjuvwB2pO9hrlptheG7vCYVqeiXOIaK6w1WCM13alcn2CIatlYdsnFgfZWHS9 - 3mJi7IBtJAO+FVe+FzcK4s/YpKKCvuAhwqnqOtPwBRHNyrIDFmb9hgyVtRIsgKKqVGlxduCBJddD - hzBC6dOpMB5XR0q1UFCPDWyzsg8WC9K00J3aXWJr4uJI6iG14bjMbjpbKq4etoLHP8ocVxl3vOJq - JDggELTrPU8Q2WlhTKwQAoYH4Ngdt81jo17uNEV9VyqNemOVUKqDPcgfC/syN50IDdSw2LZQ5iB8 - ijf2vNJxhxVw4tXqSM0cTBTPYgv2wEBHEdxNUNZvPMoZAfl7+nTQzimS4TmsBpBDHJ+N3ZaArIDJ - BF2CEr3oHWtlZAssj+1SC5AOyKBVb+BKvdbCumOpreAuVCpjBb6/aru4PfPsgz4cLe02qXYLH29j - eQ1dsmDmDbOUlHJzzDC74FJAyosl1T6M4La8BRsLFUNxQtzshvwAgjbI2IEaxmagNqeFOUEBBA3T - rgvKEqV2x+sBoU2ctrb2pw9ucpiCoOlOOX7ajK8S4VHk+Aq5OYQYVx3fZ0YzLE4pWxXgWF2NGaB7 - 2BQ4AJxON5v6UOua4gIUhNaMFLQj4M3YKjJYVhvt1sQuqNB0TOwLsrqsC3upS0yJOraH7anVk/o9 - YDaPMCnwP4SMAvnNqdrkIOfkhejqHHR6S1DFZytW1TVo2B/PzQpklkaEqJUErwwNCq3+GnKOC8Jh - KtTRVbbHmlQpV9jSiGN0VyvLqO+yCBWShOWm0DFLdBSTv5E4oQt6wSkNXaCn06Ydk1EFVze32e7d - uw3f6netCtGgSqQ8mjdaC16hVFp3CKaM7pvIZj/n990VpZdX1BT0A9DmynbnxxIq9km7Dy39aIoa - 9WYtfnyg64XGQqz3q1Hm5BvBz8ds11fB4+3jf2AYV0GYz7IjK37oG5Q9Z6YOm1LoXglomXW6Dtut - Tc1Z032krK9aVsXs1UpdfFSpEQMcUxFiSLcx8SAsCp2aPeiIW1JvqxN63IMJr2BLir0WjWOzuzWg - CD5J8sVcP4gZAfw78iRQZwrycLfkysjsYEowobE1top1LONg6T2qIPaUgaXI5AEX9f262rJY1WAW - E5wvlwxEnh8HDsqqWwtwKyVlul423LIyGTv9ymYSwQ1JdwJGhDc5sDk5+zrE9TkDMGhpz88BakHt - hmIJ8ej6COKQI4VK9qCxn9MdUpqMCkvF3YPCuLSfTUygRYLYsYqvMNQYFDpjHaAKQ9tTMWSHREc5 - oaN/xiUp/sFhYMHMSQ2FPVLHessjvBjtKnW7MBKnW4MEG9zBgb1xy2nIB9MZyzCo0ZbH6kddmfHw - gJZXtUnH7k6PzIYcEB0YWFrsGBwR3E6fuVyEzP0VQOssdDraeMIstlJsVclJFW2yBIzKfLk346Xl - 2NT45kCBxsCALRTaE4bS+4IKjbxOoTnFRX4A2uiqN+5hC65Dk4sZieyGg2ZjMTmytjYv8G0KALiW - +aLb5nP0AlETKuCRRXzY7Qzrzg0C4dp0w/9uT2b74NY0DubYYDrYurbezKFtBbMUSFxL9fqo1BCn - S2Uwqw/HE2SmbQzU5RVMtQ9urz/pjQ6r3XwyVnvd6SwS0naMwvNTi4wEeOZkxtvJDJ2PZ1VF5xpt - gmQBWsc6FEruXJxp4Nu6Z7Vba8o9YjBfVnVa33PN3mSgSgiOKcvBBmM94bBbwcp2V+oQ09lqp28F - NiK4ic34gUUi2G82pk4X+WaTwdHXagPRqMKAljpzSB3ODAGpkKMNC69nE0HmCAAftIfgwMGXzKrJ - GyrGObawHlb7hS5CKYQ4YaoHqypy1IHYNtwdhoLHCIH6CTLuh6RRQb/diDpxSI75qT2nrmUH/VbZ - T46lVVtY1tjGmF+PMYQdTVBa4vpy32lqrS2yQbgWrtUme0YBBNQdGri7Mo8DdD0SKirQFcbr8YDo - Lb0FyiKIJ7GalwD6U8/NL4GTaODMKJEi8kiVaRwszgvczqLJ3Waw6Mwob8x2pSpl1klpubRAh25M - Sktj6q60ujCY13nnUFtB3cGyYFr8UcUxWWbACTCi2cFsMJHrzFHGonqcJAmyBwaJvE1HYOzgHG12 - cM+3yqou0SK5x1ocYrvL5ZYf8niJ4ZV1XWAP1Kq55Y+wtCiIM6u2ITG0qa4UilF5cd1UZdI6cJXJ - ZsQcsQWF9Pg5ser3qahwr+/FjAr2lTwJ1GM/xjRlPkuo6zpB9FuTwZh2OV7acINxA7cdot4yy0t7 - Y/C7wqG2gWoLhhL6MtLsEeSc4YkGJwx072jb2rquSkuQcNqWRxGsaiFHjlMiQq0/iBkR6i/yJFBb - WZcSjAwegTf7PoAqgnQUxuOG1gJtbNMgx50DS+4pkrIIDK5Ja2FZbwCtHblHlWZBry2Hc93CpyhZ - 1mub7U489hBlwGvglgLGUVajgZBxKwluiOOCfG3yl2HMzc3bPdITa+NtvzfzJKuzYkBZ3zsAv5vP - Ww2vKWoVREDgQp2xJ9LW2rQKs6ExrKoFdNlk3AW26roqrEFM7eBaDZPuoLobYZaU7yWMAO+VMim2 - +WZuy/0hZMAebrVaIqHseBaEpTJdQtROwTnYuIh5yyo0BTwLoFTH2otOQ5ghONHujRtE07XGJR1U - DUWhFZGrrU22J3W1wSyCRX+hlkra9h23xHqZ4Rke+pGcKnNo0YdRuzQdMzo7aSE9rcWt5jO03ofJ - LghYzfUeI5UJO8cYFd+CY9s+iJZYqDS88bYCgx5NFbojqkd2Ol2uWdqNo6yGvoBz5ASoO3JckIMG - Xv47uAwPKsw3lIVNJt0a1uhuXEiXwc1gxkG0xjW72qbCKBPcnVvs+uDoC7K2KZuUccT73HTkGQa6 - LguTNV5bz0s4QvQO4mFeHvVrCzECxEH/LeNGxAgAf5HGhXegc98tDLM7CrIrHZfbKnHYDXhpsgOg - 5lRUqSZlVKscOlx21CrTmUEtqEINjzMPwzcyvqT2I86B8ULNd+4zSIO6a/RwEDqVSg+cVYmjY0RA - WPkpZQSQb6nTwLk41Z1sdyAa6N5oF9rmHjS2JiHrU71QUo8oshTak1qtrAvLJbHYGDIBTen2pKTK - swkDrfjlfrhUuCnjIp1ld6e0l4JAtlZtraxwrgNF8N13iJl30sbF/cIlLv5DmecVwWVMAdYYxbPk - LIthWpsaPIOrjUZbWRd6TT8aLAlao9Niy9auaS3JMmGLklvYqM3FYGaT7b4tgES/q/ZFkD+WrTYw - NvUOVJ6swV2VAKdH0oTYCOirX7Iy97JGwP4nj9jI77nsoJY6ZqVKkdgQ7tL4ypmMZp7XH473FR7A - Ry20a/JDQWYwnG5uralWGOntOTnbww7vVQDLBMEFpu63y4PS6TKFkjEUDGC2f3Fd8nOYvoSLgu2e - SwBmTllYj2hzK99vuEej1GqSTrk5wIxVqWUIh5bbG+3wNc3YDcvoWuX5EBs2BqPRVp0zJFfzuqLu - cn0Iae+9KVNplcbl/rpU53T+RQewlyAlS8I+ckiEeTAIjkKWxdLk3gInPQVZO3VH6Y88YLrtmYSt - im7XXh3bLWzhdLzhaDUoc4IobloUcTSaGmx39+hiPhy1MJ7rEsjUq8I4LZpmZSozSpTGHye4HsSM - ivaVPBHUhoweDEXP9BB3CxjUTM4ZCsvGEOYsbjHwXHG/GbZEm6lvq6XtlKmTh6FrlqsOR/UHgMd4 - BOnspiu8VlUVip0s9sCitxxoqnsYl3yKPfiiZeBrtAxZuBc0KtzfDJIAnu0ykp3pfBdedQ9IGXex - 6bF36DaRllTqCa4E1MvkqLCrbDcSsdsihFSh28P+YrQlUWo4hfS5sN+uDQsCmd2hMC5XW+sFW2EY - h4zoR+ItGa+UCbHN0GWUWc8BlU0NnJMLZ7ZqKa1SUx521LqLEM7Ba69H1TFRRxdHZE9Lq/UeXBH8 - bAUpKKoQUN2WloU578w5aa4vep0hv5rJ/IyOaMXxzlhcKZNgG9TUwpqm20zWxc1qbc/5MQO/aIja - 8cBATVTY1CHyqA5HJQ2tEJgozPlu3bXghUn1K8BCnC/cul4lC1OijjdYd3Eoe+QR3DpGv74c8yWQ - AiOacFACy/wQNiLiD0ySgP/d0fzcYju7MuYGQs3mHCqII92hF2sI6tVMrb04eEN0d4RQhh+iOEmi - 4Kq1727mRG0CtsblWV3Ep8Ia2mgzBkSNfXs/3RAA4tXoHdlX2hFt/KYd+caKs4J8wiQl8IPuz5lh - X2WqOMc1+stdd9AEhkvREDiN79PLJaQDdLvG9ICFyXQUsj40y4ws96qNXr/WFtbwet5tdivNg8RX - emIDns84jzPF43rANKIsZO5hO6gxzhb95JEE+XzSJYvFyqytGXxgKF12wM0m/eEMrs+2SKtvWzNu - 1mse0AlJt3rLdY/Xh+pu5qI0wYlQv4+X3BoO9BblbQFDScgdHcadMTIqT6I0vAowS5YyeeSQBPMp - c9QzDAX3ZbjVMwrcZDUt9/YFp7IezOZ13nZbowG8bZiqLKvb2Z4ZO6heRud1g1qoi21f3jXqfVpV - 2N6YqjYYh8AZVT9OuIVu2Ec0ItjmjYgRUT6RJoY3l212fgFNuNVgxuKTDdBqF5StqsB7jDCRo7nV - 1HFlSVfg2UgCuv1tU0ZhSZmbzOFoTfRKGd8v+cVY6nUlecdA4tzbNdeKwPcrEefRM1xJ9tqfcUmO - /1wW3OBGPVnJ2LdsB54FwL1lpduvMuNhT9/uB4vGrDSvl/qdOiut5+7UXWFS1TssIU4c95jRgVZ6 - e77ToYx1ly1LnE4S1fV0s551lE7LaAwKYkSffoZv74vM/RA5liYeWCVWB+EDnOFAgA6NhlCRGuCu - arEuW2mrHaK8x1b9Nc21HEob4Va3iZk9edOA1HK91QRBtl+XLK8E1hikicgoVfEfmA1prFJ1l/3d - RlReXGTxHjjjRs44wJ/ok6BNMSImKEamiRWL5qAtxtTrs5I1azblPl/lwVbBcRXaX4z2lj112IUl - tdapaHPGPLaYFrDXEKVVFRcHBwGqnHJUS6uu2e95rbEpuS2bo6J08AzQshlRupMzItrf9EnQDpxM - 9uU9k0FFRJrabmfvh7zZJ+BG3WBorrwytiDQX7g9kRrtsY0t0+pGIul1oVGvzZX9pjqnGjZFuahT - BbfuYFulNb1Zn/mmfzxGaZAX4BU4hPgVPo8c4mI+0nnhejNXdngfZ4MBwdr44nhs9DsqMjdBBXE1 - iJZ2dpcAhi2Wg8rAXMabnrroKMS0NahvzP16JkIFQmodEM3A1DGzGvUGuFJomD2JqUIR7FvzpbTu - pYyA9S11XJzHrpzlsfK+vhd5oT/igAUKVkAINNtMbTwCy52Owm3a1ePaWkz1rYGt+PlsUYHLnKKM - lIU3EsXeutIv1BDBaJml9R5qOc4COpRWq2WEGVP/li4CrgFVXDwzjrgBb+loqLhs16Wxx1j7oSxj - BaYB1MpKQalM681NC/I98QrCG2t5gYzaZq+koqjWpMjyHpF5+ChYY0vqyKJgMFBhh9fabDmCwcaM - thNF2ucoDxEsWczQVCsLbMxigwMEl0u1+koddJviuj8cl1YlcbKZLogOPUGGCrHqLl1uLTrrPcmr - OFCYLvfTGtLdsizTxHCsDdbaymgCePMRrktRkS3yt1JGBvhMnQznAaOJjo9jhvV+LIJBgHAswasj - CXdXjgfx+LCFDOdlTG0pLN3bEW5ptSiM9WPjUNFXO0guDVjfT4PV9kSBt6ZaVzRYoVe7AofW+eN2 - 35UjOIUzVsq9nJGxvtInQ/tyL1l2YKsFpbNvtLoreVqqqLbTartt293rE+VQnhibGYtB8mG3U+v7 - RsGRFjo07Xfn1TbWQvSj05MkvLpjm/xh5Hm0NFdBsswuG6vIZm3eiRkZ6+vdZHGhFizDX2kKbYaT - Mq0d4Wjdtp0tY2l6YVWvVDR4KNQJo9yEKiVCOuycgXSk97WewtolFIWmmyWliWJLBF0BrY/KOr0g - hAa5FSez6W7Wd3YrzjSjnF41L4Jyd4JGgfueQUqA57TtblG9vcRVyw2p2muoChScInNGJROg16Y/ - VYrodAesBjhyBJer5Y5cqFvDRTbsgVSko4NNOv2h4h0qlFhxaL1TgISp2d8gEbJRj+Al24J/xy2x - Xvz1vs/fyjRbgluERNGLne54TmHvv0qtyRKw6mmkVFqoY1NtLOp1yivBhHb0Gqor0h40Pxw29mRC - iWz12GYo2qow895+WFgPbLrr6FsrwlrmC8AfwsbRwjeT+OC7pmxn6OobUofAlm3dq3kCrY89ut+h - veoCq48P7Bwfb6qN4xarFAxYGjg4IlF9tQ5XxSFZ0jleVzttr9ypFeDxTNpaDDxyN216o/GRAL8V - MBLIJ8LYwGZdEjgDm0dwWNYpc+fMW7rUB4GRBJQJerJlm2tnXOHZOUHhVRAxQQ3atQ/QHu6MurTT - PnYEfDTwKjVgIO/VuTLQquZwfKQd3okCbNwqwISFfxdgc3LfMNNotORyCcMbPDEV2uXFruUR8ry7 - RKbrDbSQAGFujdqypSliB9M1hKeb7Yk1IqQ52S849EQBt8iwc+gYQq+ytY8ld4ZZUSbPi7QJ3fYT - LnHxvzQjCA7hkF6GyJdqMxsfqhAOLmviXKhp6NRgCVRFR6y1GAnbCXVoQD3HaxzJ3aayhabccSsJ - uIWXS8Ka6jSUrQPBBR4Y8j0EUI9VcqdgcISJ89Iy4HSUxouB+T19QrRxnAyaT4pZd8/eYE32/2fu - zLbcRJp2fUGs34wCdIjEDAIEiOmMGSTmUXD1W1WeqvzZVaVyy2uf9FJ3E2G/TyaRA5GRwaoOVGt7 - iY60ZZ9cJhKlN41vJtrZI8UKZzCkTsqE9mwGcUxQF+U5m/rDsu1NymdH6whk5sgi+KEsjinTbNY7 - JubfoOV5n/+P3PvZv3bzl00gPd1EGj/w47zagpO2t2dK2zOCoNpEmmEAeg452b0c4xRdjHQrInSt - Z2xPwGYWubMZIGkdr53lFoc8wQ9qQ8wVQ1Y7Tq6uetkDwP0d/vJK5/3Qv9n/N7QfnMt2cOlkM3N7 - xd0pyUIi7GGmkENWsoVpSOSVjDztxPKcyMOoFVDh3l8BqyOKMs039jmLjkBHxZLIdhly2CsSgQfZ - RrqnWPwvyD6X1vYbJ/8R/OeDlo+jn0BXuduze7nfFuIyszXOy4ISUHRT0KxNQeAiaGa4N0rYxmpx - t7jhTlhRDOqFHVxOCxQA4IQvSub4+9uLM3S0pnHE/cHmO7jshdrP43/28h/xNzu/us30u+EfTXZ2 - hp1dW7o9X+YzPB5OmE5rB+u0I9y2rrPhfPUVQ946h7beK0zSewpwTDuY8LAdIDmFLRX5Bapy1lwF - BWb2onroDjF3x5TyF5TDD/l/N/v5kNv/vMmMOrzEwyOLcVPreX8Itzmz9ah9YDKRGNfXvus6uEoA - yQu3ZxRosbBuVFfyzyPnNb3WXEA4xSaLcQ03N2yjAm3OnjwEKlDpakHqf9Fa/Svl/0VDffP4+TZ6 - 8K5CdsQ0XuBnWC/buj17kp6YWCzjZX+KCAng5lA+cUME255JlOralgNSO5dVho5AO0ap0yuRXfLA - 2sTQurbSgeRXbHNXJPvkTkL/d7sHRp5WfqE/rpIKQdSIIm8DXFEldUdkjuBC7pzXsKQGaFSeqcWO - 6AzZwnTSbQRn2DeOXrFcgS0d1STmdGGZ0I89gAZyAhrEJGbRurpnTvQssLu/cso3wy+frJTyDezD - K9VQhZGcRzQz8C0mpUvnQIEWbykU1LstoaqCVMJ1z6gEvxX3Vl8o+uF4CkTILTrv6pFeoKXpfG0B - 2FWa1tjdYgjM2tP9fD9doOa1/d/Tvs2/Hsb6miBlUFnLXqekNawvYszvznxC1snqq+fZyM2emeqL - 4RLNdRvferlxSRxlqg68cZV33GHpqhNvzsxxN0DwMetHgebvuYP5J6sfKj9F+vYvf8n5qXB2HdbF - t1TzhxGX2CG7CFREi1U4CLYuMdYmso1OCLEpb09ynJVpsS1g325D2KMLXQyuDL09GBU9L0x1pBu8 - 37p0vwYtdZkitCIJWv5E725+6D33f9PLX/v5dCs0/uNzWBrt2OFEsSbeKjMX7OTMmIuuR6/rMjTq - +mqHIGi7CfOh220X6Dj6xZ5Q26ZsUavFyKr3zV01u9phI9SMWtjyJnVL7Z7O3vifT2F5YfzpkfEn - 5H+SirsW3ZlmoIukIFDgoWowDwuzUc8wBqpnowLWRdgjWeb6g6VtQrywqoZtdcjMIMEwCsSG6THO - q8IIS/oaXMh92BH5/p6V7Atkf5OM+3s/n26Fp4MxIZsXj+zqJi+PuMP5Y7K9RJQAqcu5bicXhGGq - AXUf9BQ+sY/nrjewAKKyaT156TK2m6vblRGFAWha69dLG/DIdeoEweC4frzcE2WeRSYvRN7D+6fx - ZyHbcfDwtc48NeRGzgV6ZKkhqDZsTmNRQzmnnYBA6LJjBilWGFiA88boTmPqIoVoNR6lAfsNu6FE - WPcGe9oVAKXBZXYZacVu/DvCyRwHn17V/LT9C8KnIS/yIX9kP9Y4SfAGDMBgxAMdrTbOkzuCRyEw - ryF1HBlWqSlYm0l/W6alCnmZsisTX1my1GETQm9x5KJBgwkittNco/CYXdjTPdeK3jiNv6i8j/IP - 67s47+voRwmJF8fCnxxAj8DMG2iu254UnmaQjD0QIjlHcpFdRVyV9aitCZnqGs8Z9ewQI+E44zbf - uoy/i3eKdHLsRCDa82QiqzPIpylQoCzqyem9rhzeRP6o++D/IvI9yr83fkYMfQbyt0UN8oV8DGEI - p1aOqFVZMvcKzFS15cpwcFwBb/ZhSD40p4qQQkCLGoXcHx29dcwlS66jJKz4ALV2UvvDTnEinoZU - OWTcZtOo03tj4StI4UuFd+H9tpB5tvwUWyPzu+ZxbPV8DVln5FOujEcvu14ZuD1GGUttC07liwt0 - EIv9acBltXL7eKoJJFXyixYGlMLyLoS4EimDwah0eRZmLmR2NTc597HtXyi8j+2z5efZPjiLNguR - rXWyChYZEDNRdTTcOEg5Vmi2kS79fLn93e1dkjAclvO1EdXMGNckEjXFXDvptuCRaYZKibBcbfHn - UFpwl5/Q9+LvK0D35NH+r+F9UfdrP8W+bB7TTy/+GbcDrK0PI4/yi8GK2XU+JjGpg73YK2JFKd00 - kXbEaodaCSR3kw2J0ocTIPP7cZM3K4BtSyQG7KPTyE63ddy4fLef9i9EvQvwa298fviD0Oh6uE0J - vmiFPzydgP2fjwIPIbmVNHqeAjCTGctxu9HiLY/cXeJgT55hgi61YIPLVauzBMa3hiaf95euYE9n - dWCbo0YhdEzRO90UwBjf+vtE3yXdrSneIRnVw21g/9J8U/o/+//v433Dw3NH/Sjzf1qiURztqAiZ - S4RbsWbAo58zCUfvR0e56DwbKSPDRHpWnDYMmF/GzNjRC3GGZCyrZUrFwHkzYm5jLJutMw99C4QC - VQPoe6w/X47xb0sv/obtP/rS5VHiSPNHfCFPh6RmtJUyFE3yM0gb/Oq6K5d0qFnW3aVYOe9mnhfi - i0uYkueZZNVKPdYYyh4OiBVIdTkwdhtB5op3L5b6Ha5PfNl6z83fN8HjayPRuXSkIKLYe7K1WRbz - DEl8BsziahdkryIB3Ec2CvvJNbVwxezYFtkqu6NUXYuCu8ze5tqR0tw1je5GfKaQHQSwrvUp/ncW - SHrTx1+Tf/Rxkt24CSEmDoHBsGGNgpQrnV5XFgoPx3PMHfcbfdgNhxLN4npGRMIBEDmLLhyrdZhA - yXjAyryYWyGDhn2Vojme7EBteG+K8Ttkd50o+bODvwYuVIe4rLsHVjm+9V3aLwAAPl4Nrr+EPoyb - GOQJ3bwP43CvSoVsiMs2n/YM6BGjI0WTs+k6L5TUc1zEE4Zu7ZLpaDKCBdKwLLaxr+/el/Y7YnlV - vpT6GejfXfw1dj3+eq77kVcpKy0PoTFYZ5DELJsybhaICTbVFdvGnipVjY+AEZnPCyGIpt+UbaTY - Vwi9jKcl9EUg8/mS2VARKQ0rLUqgsqJqwrKfAd/9KvYz6H86+Wv4Rlt8TVp4YO6mCG+EIdBGwLXL - dt8TC905iuFulbq2p03PSp0F++5En/c54mGiT8rq/mgpSyWa51tQSug8awBNk2mQr2koRnKPfrfO - zO+w9W3Rv9T6GfQ/fPw1ebOui0ee005WkhrRbUjJ1C2sT0m94r52Kc3RZ8uCduPTeR+HvlIcN1fk - fO3hjtoPdhRRG3fEaNQ1en7k22FIPQofVklSrHr77jnt3xEbXuj8DPFn+/to//xU8G+P98iBSegL - PPvK7tJXVcoqka+UTFocDyKZEiw+BEa91G3D2OjGBvdnzJ1POm3NtW4A55tw3JV6M9J4C8fQ8+Ew - irt8+y7zn2r/4ljPO17+lv+jB9azDmNcxnOltrbEcZ9Vro+e8hHowWPczdfgoFEFBTE51Ge0WHR6 - TeOsEWwzjexKw8FrP996OGbYgVPMuyxHZXA6f4b8faPqn+z/lvY/COpMGkECSrBp6QA7rxjgdMt3 - mzrWCfugGLeFU0mqKtdpCyYcO4yfdyetF1zLZewAqBX1quMFJA2AKi8MWDgTRGG7GPwE8Ltj+hsu - Po29rpI8HR+dji+fLUnFNWTZIOHGy0zZAWdyDTc85qIiKIt92pq7M7Y1B7YFM2qwlDEGbQpicZDg - Du4WumY0IUEH2sPaRo1tJ5Cn9R7kv5F5D+6X5v8J6n8U1a1k9ETFh+xTn3kgQO5Yj8pm9un2rhFs - 1dOerYYkkhv+TEyhXvUc30Yoh/B9TJD0AWjSeg1X7oCjBafpcrkAY3ZS3507/gncX8b2P/r6b1pk - l1fRI8NOEsp704DQprYZbNoOhrLr0MauoOPMpVQFT2vLO4WTTq0XqyEhT0dl9e1Q0o+eGTEhCrjZ - UZoPvTqUqCUZFOLbR/LdPbE/8Qteqv10K3z18t/wf/qa5leRnFcP3Jj0WEZ1wmabepFaC4rOpXh/ - clvmdMIdjNeN7DZXD9zt4IIdoJn2Yu3mMXTXcYx5mSEum+UqmsquEvjmOoikdpiu5/Pu3Qn9n/CF - XyUXPyV/uiVeuPpvmoOppryrbwvlarD8Ln/C+9DCY4crKySSDBAieJ6LC7lapIDDPYsCtM7B21w6 - XisjcY8nID8czlwQ2sqeZ1kQPfAJWmO96WkeSeNCDXCzxIaoKXifDlTxT+3TL9o/3UC/8/nftNRT - WtC/SM3a05fNfuYgdy30dCrwjQjlEu5nnQMjy0HvGH9AF8t0zvYe4JStmG5X3hsRgcHCo6BRBwoU - ckrYSOdUhsgk09BE218+HcCeUn3uTtD6oLf/pl2EKn9cYwAgkZcT3o6x0qGn7kQslaNvPQ/qVpC3 - AT5sThV1nq/CtSKlsN5ZE4aBp4J31wGl8sYS3aCf2XwHs+f+CAnHLEl2+adfmLz66B1Mb7n4b7A/ - tuqzwDaq0kxRZjEMaqAslpjupTFBbhH4YSwXpIT4Kj/6lUhC2hlsTizqYfO545kG5giy02jANutN - ohdZJCbjCTYnhPv0AHJH0ec3ffw35KV40eLuKRw9jj+3sta03+oSEqPcgZg7y2sNAncGh6SUtZYG - tmNjttseW8REF620h45gMFkFBkcz8kg59kxOAVc0uCr8Mi4ihWHju1eJ/5HdJb6p6pKfij/dCj89 - /TdtcbpRNeKwe2g2I8jHhyoLtz6ujlsLOAoR5/KDO6oJNED6EQTriD11IoJtWdwmyEZcLNpzCb3K - eOx0YAFbVsWmxrMMgiFaKGykalvj00FovP3d+1eSP90aL1z9N83x0GroNN2WkNyGJLCLkXqHp+BV - Gla0Au0trTrqfoVoKj05Zjr3HuJUyrrgVBfXzdYoNSmC4tXwbA/sa5XygqwYN/VQS/RnV9d3FEN/ - y8VnsdNxE9/WJFW4CNX5623PjwOvW1Gq2CZIoAco3jddzDX2tFHKgGe547raAEdU+0wi4zOJlUAE - V2tsd0Mb6m7FNJJyRXekBZ7iCzYoGmTv/b1ydqs7BoPoh9j8F7F3oP+Nk/8Q/j/a6DikbnPahLNX - Z6eDJKVoH2jZxHFATHngZstsT7M2F93psjgnQOPWdvbS7bIclXN2HSm7rJWa1eM6LuP9ZdxATeca - 3LuXxL8D8e+2O97z+PdtdKijb+URHpJvVRmII7U5AFPwWFauIjsIG5SgU637a7/JgdWxRNTa4912 - QFZI8botK1eiglnHRsrTKLR5MGfN4DA6+AG3j2Joni3hjqj0E2D5QuinWuDZwX3ZVi+A535a1f2Q - h1TkN8O3TZeHIG/maaK7QhRNi1TyU2rxXbe1k4DaH5plS1/O3uBer0cljix1cwXs5BomG7quEG8J - tGlJb9GfzMloPJm6vqna5jDsBemeePRDqv9K6j3Qf3XxWexP01Ctq6c8ekpo+TdR6MQcdxvwqI2y - 6+8nI/SO26LIwku/uS7MScowmMbhDVvHmU6x21PKWaXDh3tD5ck84nlZr6USUEXxzCxwvczT6Mvo - +2lvPzU/TR+bH5r/Lv782ddnI8/rFnmqklf3Dy3ZlkSj4ui6eootOJjYjrheYv1insDUStpxk5VJ - e83FPMzV88yjR+CkUnTuUHatJdUxnxuPKfv9Hl+BTBCWnVqpWL5xP90c4S+CP90WPxz9Nw3BlEEc - RXH0wINl7uLtym13VQZnoiQSZjaopV7tigmqgPas1T7PwZTW103NH05mie6KEmvwwyIhenFGInBg - DhJUJxxW1yfGl1yDlJs7RoLX+OLXej/dDN/9/DetoGVLf4t5D1wlXKz9JJdwrIXZKdW7o9dVNUQc - KvxS0dSqE1OBx7ovgElcQiOu0imgm7Pqyj3myOjWHMYR2K3M3K78iNIDnTomCbx7muSP9JrXej/d - Ct/9/E0rGEs/xCVX1EHw0EqH2JFel71ChmJlZi5eSlujWutp2XuktOe253K/lVo+YbnBX8WpVDwN - TsNld9HK9nDWoHYOSuZ0WtqF2spyhbKd65jcnfGof9aavtZ6J/3XPj5Lnn8a5R+JG5HDvUlbSjSI - F7mQ0RkETZ8G07Nv8QVPNDZoIci5gY4kDOOLGF4dALP33KRCunDWFes2+QRwIJ2HA63gJ12lrxaS - 3dHhs1cC72D8zfAvwf6jOc/FsiK+UlkxCJ1r6q2diVfzpbM9k5cBjJDNzdbYiojYQDtFRZmjrTAe - fzp5hwC8SKxFyIMNBA3AjJSqKaeWCVsBAO6n/Jeznd95+TT/YWgeuAGqFguCbftYRnkZAYo0kW0+ - 7/o01WcJY0rDx9dTAPRakDq8AiTbGVxA3LFQWju752EZ0Akl2Ytm0ngdaaEoSsNU3DGYZj/V3cP3 - ZvVZnkL0NbfuwTX0sGjCo7iHfP2gyGkNrAG3ILsGp8oFdwOrN/Td1poMqo3MJHOoUD5uN9Qx6uWw - pbOdgPJYD/XidR/NpUxLx0OQQ9a7R7NfIMq/y7zn4MofzP8atTHUD72KJ8/Ok3JD5AnbsIfbILTY - XNhTiN7NB7IsjGRpaEHQRmLw6Z2/nVTZKPd8q6abY1kcBivfnOfLgUsUaa0YwdUCn1fePdb2O1r9 - S6Gfwf3VwWeB/5trG/EJxwsK0ttx2NG3yDE4+IG6ReHQN3cX5JpkVcI34e72P4orcV4MPgX3Sh3m - nKzZRM2LQycCmuqRV5qpqeXYbPTAfveiqRewPnFl4x+s/wvO/2hgDHp6BoLNzs/Z+AwqcY4Luchm - vTrkTkSX4t4PLidsY+9R+ugnvCqf7JHqGsvvSGtCrCvfOdxFtXWKSB0UlimjDf3DHVuSr7D93ej4 - R1efb440fejcL8uA8qJSR9pscIcnoas4oMA8u9Z6CWb3WGwdT9+v2KmExLMG1oSynfgD2nn4PM9D - B+x2MSjj+U5F+hVqrrhq79bWuyO+FK8E3oX62fAvwf6jLu7oq0R4LKDi7BoldlewZg7r6RmBSMij - +wjDp1U9+xF/2kH7dXNRJ5ojJ4EIfX/jsl3PH5swqSD6OpwNjMFwBWO9/q4u/lXt3/bu//Xyt/z/ - UV6th1Ire0DgRAbHK3TxqMBkAJ7WjjfyYwZF7ZoVuxKfCRBCtvrVkycLD06nnuoJKEc6TEyMLNuf - d64HBOZZx5AoZ61PNMBf5tf+1s1/0AR9/chUBDxy4yZrRtUPqdxh8FgM7REqF2YMyDYtOttI1949 - RavtcH5FUYVprU3Zg3azWWK5mbGs10iJjRdyMeZhI03WBI53jao/qL0Q+jnsTw7+FjgdB+MDQzqB - XIhutyK0jMbTZps6wDirJQU2TJxya74xdC9bek3ICQABxHqRC0HfaX0okuqqCiiG7VqECM3dwvF0 - 7dpq1xLou/VmfkMreiHzE7Cfzf8WNTPdZp9GPXbhA/u3ZoajUKLVBtuu2Pl0wAxUkyD5Iji8CZGZ - dt6JCO1eKVBYVpkMSJ7tavpkuxkiXa4TzVBotOlXCTkc19Af9uoWAkL//jH0S/wktn8p9hPYXzj5 - W/jmbZCIHw3f355wu+Mv4gUEreMRDw8J3fE2dz1KlmI7RVU7A7XBheFwXWxz4zonAJSYrZ+fprAL - KuxCz2B6Lsxpu+ENZ5K4eDhLnwguTyNi/LfwXzj5LHw1ePoIrtX1A3fIDaZTFWzTZlid0g1edPhp - skrWtSGW0fPMBoQjgIgLO8HaabEvQyguA+vb/Gb1uzERJ2/OwpzQE1hYOKfbNhbjR+YdzOtnjc1P - jXeg/mn7acLNow+jEIWzPxFkQQWrPxZ7jpXqc7hfOFI3xTxkgnx30cQz2+atM1cRs9sJcRY5+sFm - rBN6GtYjvNBTk+X2Sd4OGQ5iqfhumfyXiJpPThC/Gf4l2Ndzwn+RsK00XIa6oKXuejybzhJ/6KNg - 6CZuOqhAuGs9wjVBPcRydoH2tz5vVAVc7KgW38qwbODpWsz0zqM9wg6n1aDXy2ZN7kmK+c7t1bTu - b3K233H42QbSurzMh3x65IbXbR4Cc54iXA/luWGUDDp5pLM/3hZIHSivMbu1J4bawMIVUY8c1W9t - LdVGktpZp2hqJE0e6w4coE1a4mVciRKqza3q3DF7aX7VeAf2n7afJWzHAVM9Vdp6ZC0WRxhFR1NO - lAN6FlhXfpdflbpFLypx3IK646gumWXuEvX0zAtbrdVikcdtBpVLTRTpcgcQCwocTNwrbYJMPY+m - mt0d3X2Og/i1yDsYvzC+C/L3HdvnZK4XBantno1vzr4uyDY3lw9JOCKWOpNSeTXVYF4AtwVtpc9i - xO+A7cET8z7MLhUgA4JwzBpvL9n5tYOOrA5ZIGyuE2fFzk4HKdEFi9HT5SuJ6cUqvhfSv2+9fs3K - +llLeu6TXyW/1wAfcfXl2dWnmsOsL7f2/WL4ZfG4NoiC7bJdefMaW7OZb+Gy3Y3YCGeboejj4zVz - DgW3i4igHnuGBtmQGTM9tyS49J1zzS9Hs3IDlua0yZWc61rRwua8e/dEwmtww1ed/U+d94F/Yf8X - tJ1HUobs3RaiEh3GZROilP3RDACYRBe7G3ttwI4SzKLJNpY3Wy+npdiTrwgVO2l3oU8qQFy4zaba - a20Zqyf6zNOWhKW9nr4XXF5Tun6S7vVOqk+l+Z6+YX7hY/+xEbvQFKHJCjJAbp1SZbbRgccZjy5H - ojFIElEB/pBvdqLS5+mV9+1i17lXj2e9lIHJcPG1BjcMLzQv0mVck7MF6vpRKt6D+lRN7/lzZPZK - 3ntMfzW7K0orjPm1IlnTPC77U1T4jAPOm1jIOAQHeAKBBbqc+5k7rZU5z8YoHtgYvC3dIQdx/Y6f - KHjTW9R0ulAgYjSoDTGKUmLkAIiEZGp6yzTJB2h+rR32Q9kHQH63uCu38zvDr8UjbySf8hweR3M6 - VKSFcmoDGprKITVD2td+XinbAzmvDElGy3foFCKMh489jMWZk/XTiXWqyK0bTjHOe3+rRu0el/Gr - MbCwtJy86r2h7Tubr0Ufb4Synxo/yvWV7V8QfsKr1UUeLg+EvDvNSp4N8skyED5TcbsO3YS6DHqZ - sHlW4uKOBHtxg4a+ZQNUXExB5TZJzq2+RzcX+6zgE4VeV1XSxq01kt6KNu/WV3oN6olS81LmfZx/ - mv8laj3u62J6ZHZ4Dd1e6WLTqjzLuGgE29PKACYRHlhpUHtbPqSkDNdmzCmVgI0balXPZI1TkWei - C8JdWQqmqStBHbetd272KgIGqffu0bn/pdW9Fno/7u8OPgX8e83ZBxaarS+ArlEDY6zg9nByYoFZ - cXnaOBR37J9qKrnOoU8tSj5jNHFp92Q6xZLt2E4wJvJi6Ehid7OXkH25KBu95Ecoxnb8R+Nw84u+ - j+L9Yfcpqqbfpd+P3T2E6RUmyVTwHHVmnYvmLJw/MaHGhTquc9OZVRkDOa79RcFSRvfOtqagWJvp - vWcd9tBeFpOjzBm7cfC7MLWvmnbApjKFPtp3h1fqPkr0m9VdPO28QpEvepzmt26+PK6qNMDaxRyB - IGAOGxyF8QaCMivWdvt6dBZmNUlcDFCAGvV6MBUaEtwKUlW0Dno4rY5MDw5XphqAjkXEHScLg8kB - uxh/r4vOz+K61+Leo/na6ANVpm9d0hj8KvK76IucB53/XNMK+oI+ZFdnwAit7j2D787MPjrHwuod - gzWf3J3ITriGVBMWnpGliQQEwmgVmDyi2HQ+d8gdLHYOt5FNT1QhBcAeo3nL22DKiPye461b9d91 - Fa90/R7hb55/XgOgb9OL5+Hpa+CN/NcrrZ76LvIIdMIkxnBzJkSe6TVyR4okPRcH5kqehOo2Kb8C - 29pygXpPw+i5kUdMDMQTYu+F/qBXmz222FuATi++So65xWwsXjo3ZfT7ob/6Ker8QtSfuL16+MvX - h++B9mX30MvANpprgkJ7BE4SClOllxsGDCE6zvRmDcicaQhk0BA2dWppyWexmXdo8rQdMftqCvAU - 4tjg5gBANmh0QW1baTU2LaLfh8JfWQTv3fr1O4Mv71/vpcdl/bzVIudVe+vVD1rDJxJI4Key2UOs - sys4mrU0WeSPBS27FbcHHBeNazrdp8HQZTk0rYFDH9EKFFw+aw2pdY4JN4MjhFFw1Nk90bHWRT// - nlz3XVHxU9Hvkb168gvy7jq9G29L+zL+UvlPO7Jfvp5duAVT9DHMQrC1B0TOY8UTzvCZqyylZxCp - QFDXR3zD3I3OgcYt4rKV7A4vYNxso7kFMtEImcZm9C2xQRV7T2ZbXPMtxd3IEfGHHb5flPUvlf2B - 3e8svjxb3M/wC+0P/lP9wX2Rx9Xwpa/y2x+OPQYrRd5GB668ACcuSOx6I1zHBipu85J+Ho1Zzf1F - ZK7eLAnq2SxY9ij0I3qsaIfZ1/2OWTrb0LrlurO6qB3EJZPQnT82v49+v4cUPYnt2yL8Vew9pP/X - yZdnJ5+AL6jPJwK7bxfAPqw/B4C1FfegkKO9jm+2SbGL/Z04zzAMY8hmSM8hbcAXIGstrOeyLUvJ - Or2bxIoejuR2k1Jro5knlaX5qPU9hBmIXeMdfv8d5vfM8vr5AN9rofdAf+3g0739+y7f41B71uiJ - bVXFqZhFyOWpwnoQCKGH+l4smC3anyG8lpLDzkiazEZ5uryAA6YGU6BeQJEC+5nTIVlpD5eeysCE - SBtT/8O9zr8n9X3L7hOQf+z2fRavEYdj93xooVuaoU47v8mWp/2/In4ccbqoDxeSPI81pI6q3W3w - I0cclDAr/cSUXXuidguK5+ulk4WNVcSRAHUtQkpcD+fbOWhic6tox+4KzmZCnpDJX9sjek9U6b+r - Dl+q9l+ovqcR3vB2R7vU/fULfJuBQP93xbEv/x+1lpRtbcxPGagDM4mkHFielqOAKJ3E72SyUaFU - r2kzogNIlnHThz1EHdgrWqg+xUBesz+FYDRs7bVHO4rwUaGXIvUPyZsfYvEfteFf/hl3tOxtbfh/ - flf+sVX/5YAuB91SMYbZoEG5UUHgzMnkBB3TjSEWpgWRRSM0bNw7ZxYfOeVgt2x1Oga3ZeLsmfHo - 4wzoEqxwgPcbjFngYJDtsYneDnZ/lP93Q/z9bu8Y9J+c//k1/JcNhpJjqiYXV2zF2tmmOOPqhbfb - nBBP5DfwSSOb4eqlUWNABJuqjFlbQGHAcD0qEqIdYETrcAfUGnNzlkiEQ+mZB43r27HyD+L/vrnu - cXpvY5H4/weN5WZMZBxPvXkF9mRJ7mbC7zagdXufpj17EIbFYwkOpk4uoB4gS/NOakxZjYjZBZ4s - 0Y47ud61Ppu0jgr47gwCO+0iKm+Hyj+I/w8a6w6nH2isb61xG6v2dTXE1+FxA1Yi7YGu9OUkFtZT - 5qdXFyaO2z6fwF7rzmcpTJQUFkJSKI4XT86bmizOoe8dR8waBExsg/UcIpZ5XjmZxe2y1x2K+cM3 - 8G9EbiNC+ErV7/H+z9MfGES+cduNSfL0EfhhW62NjOyzxtd1WwAbTHaWBdPT2C5cFunT5Aw2lXWY - du2ssN0mdFJi7yiV7dnXTlUVOSUtLmJ3ZL0DGA45zthBTk01Bt6EFryS9Caxb49+YFv1G659XRTx - t4M2D+tnKB2eyQ1o7iKrkTdeB6QMszuNbIzkoVrJflEy2TZLwgusmW4QLPbopRmWlCWy9HvZ7Fr5 - OOMDaqbmIgKW3ADHAJB/v+fwjUP4P7LexPbi8Y/3tBfonlJBbxOg7vaWP47iOhT41mkgFzw5exlA - J3RgTkAhLEAwnSXlVNZNBc9xA/rIFm4sTSKi6y7CTcKuimOr1ykQwT6YGX2q9yVbCTvJ1OTfD3C/ - wRL+qvDDQH9afo6tUJbj8IQIhB/1TjOOlNNsv888G9LPnYexLj9ufRsHNOywTxl6fyl6q4/1JKtV - iAUiJz4Y/UGnCssRagi/cCK4TgAywz4yhghwuV6NP5yM+A2g/BeBHyb7w/AL/PH3vWzq6tYWX1Os - qKqqB//7e/Iguqere0RZ7qQOq0jIiRFVrsFGBFAzE34glfR0GyYHQUH4qzLQURFOLJUAltBiarIN - 6YPIiHvIN/QJvJJbUnezHeY2fygX9APSN5VfE6b8/1H5DuI/Wd8TV7+e4Xrc1gBPd8I1by9wBqEl - fskk20IcsgHHSSG2XWq0TV7I+Lg2pZFck9Omuo09oTbYWNvT/ZHmc3PCBc3amiW9OYATU2i34elt - qC8lvUPw6wG0D7/vr+eez430kG8tvEU2begWPBEolQNXWI6zG50jOhywLaZjkPPpoJwdvesuMmsJ - tlzHnTM4t9hAQg0/0bvzteawjoMaZHfi0dzRe+IPJWR+Owf8puxNeL/MGp8tPsTwR6W9/tvRvcft - BJ6ykxq1pc9txAvqRAF5zTcXYTm6FIVplakU/BUux63nou2EMbIQSUElg/4l4HwpR/RKOdm+11M9 - CnfTykbxbJ6RNztf9EJc9ELc2yR/NbqjQ76E+eP3t0NiD4uUscDrjJy79HHqD2Z9kEn4yF4chnGd - k3EyERYhB9jguniyWw2IGzaaSchYKEeQTEflO4Fx9JhVmYrpCKfg8j3CpX/YYf0dop+/X+r8OOJf - 7D8eLV/SfirgZd3msLd4K1RJ/bhOXJd7Fsfm9YgekX0stBcaL8ryGh+8geNP5ZqyB+2cWL7aL22j - 43gDir63HvzqMMM9itZ9TQWbtG2qsD/nMU4Ay0nj344FL2Q+1d2avsrMf8r8MOtfzD/XsY3hRvD5 - 9OPjKO9yPoWmdIjQDUgftudp8PdwLOmN7V07KA2PEY6h1I4juGoyimTTqBcXGZcIQ8qDKtZqKU1V - o5whFhvG2oBvfxtz/kPNxt9g6p8UDi8UfhjwT8vPsf16peLDsJ5O00VMDFc8HPDrBiEiMUWsxdYM - vRWsHeQRUXDm+wFey9l01s0+dG7PsrbejHmaBCosJ8SSeLngM6e4T6oCTDfM8uYq9CWc4YW4DxP9 - enni52De2uGp+sbDcHb9nExQAu7bS0aQHbUxyFghlbgOVwTFgLjk9oPJosVVc7c4C5RleYorfAgq - KC0UXDtMhXQMtoFGuZt4OxJJqpmXP5zO/R2ZV/I+DvSr2R1Il8ov8/CL/nW36nE4DcXKYQacEvtE - 9aDtShmzBdrCwKVWglwrqwoT4o9DRzYHgSJdBy3mBR21Qz1X9By5grGLSooFkawuGKGIrIbc2H8o - vfWdyzdp3Stpb6N8bfJxjE+FJX+WP3oYxIsbWRGSIBoVsVxQrGw/M1h2UShF3El62Sc+4mxkDqFC - m4FDAsQGqHH9GJbJKfE214lBKgnUt2LTDWZN4bBq8PYf6m1/I5L+RtibCF8ZfBLgl71fxE9pbQ+M - ltyp2A2RapuYbFqoAGxBTbSBDX5b/u4z01fb1pTZISpvfxoobyDogMjC4qTlEG0dREMs9VKK0SbE - CX5j+HvkGMpw8Icrl39LJvxF4h1Qf5h+HK9QDfFz3Zsp/kL1SxWC6MPKMnlh6OYCs9ENGBS3ZgDu - lKHuKc5K06joxRJTz9EIpLQFNRgl5IB8Sk51epAuuh8W5yMjRgjF4ZO7TuE5u81129or34yb+Qtx - /gtxbyL9H6Mv6LuHfX7ksTxwX7Q9+/x0PWp0Y6iusD+farMv63Yz4keRYvWTYKaxCWJpe2HhwD8H - RhnAl9m4MhRJ8UWdtGkoieGBHKM0j3Ul88XN/s03PP/QRDO/Yz75r/J8XL6Kljq3tlA+YrnEwfAm - Dy5ZxwEGet6VJNVs1bk+Uau6qTWassMOMtj5yJYQfz6Q9oXx7BpaJ9lc5DKYzIsNB076DqsPJ/Z8 - NpPnJ8OfZYsf2N1m5kDpZjXmNTAW1ZQD2UVXdNWdffiyFJPrZ1koXzDeqK2oAK5Xk7Viq3DVRJ47 - WhNKruihkm6DQ9atPtlWtmZGb0bBG5Cf9YU/SPCnwScBvjz+/zCW+FENEIeVw4wImBArhFDksW0l - KghvAeoeTXg67WWr31m7C+piGUtV6o5bRaQ4jcR+oWm23go7+2L0VXAxcWE3z/nh7cD3Ck3zq8Y7 - sL44/n8PYS1v4qfrKB+4UwxzO2TgywBs9fW2OFccAoDlEw4KkjaQR6nEM34grHIZwLpIUUcU5llf - lTlKOCiVUm1VTOEMxSp7wU+NxXfWge7cP5wK+Umm+UXXeyR/PP/x/Y3nNOiH9cUNHbTCqenpBorY - ZFiGdTyUIVTHh+g4n0MNZOxrf+mFFZxhM2T1i4cukrRCWpu77KFkZs2wZ6BVrJYmNJEkt+LKB29S - K37qeZPWcwr0h/vYE6UvzPV7/Hzg26tx0qWLkEvGYfuqWMT5Os++bedGbrPKjitSZxKbWIWue6fz - yK1Kd0d8ODO2AV7U1iO5mVFPlDlIw9rAsZ6WrpKEf6i5/JJE/D/a3qf3wuZOkscx7pbnz0rYo44u - uBVoJ2681Ws9KQ15Og2IGHcatDM5brnsvctRS+uzf01XFlGgWqsBkMp2pOmoTbQPlaLjUEsfer8c - JGRc+wYNW916t+d9aX9R9j7FHxbP6Rcfmvgd4rL+dqrpMQVkaNEVG24w0yuAoNQybuLxym1KyrGj - Cx1gQAB1NLT3A+gA10djy0O8w92GNilsG2fMRdq0iMRswAhIDrRYVh3eK9Obo3H5UtGbzL4++fFP - D0+5x3YcGHV4eToh9+Pn9/Ilj6PItqN8jgIQ2seHNoA341a74uZcLWyBQri9DpI94r0khZuLrbmH - qMk3O5a5RNeVq/PYZZvt6dIv3CxW+xmTJOqUiOfuzR74lEk8x0H/TeuPn81rrW/yfc/HHeTHMu6e - NoOsOBzqR+a9HI9moZkFhItgntOBuM/jxsN4ENxZna/HJ0zFmFqf4ROE8BtTvq1diGuFchXdbClH - MwrxRC9sj4322fYTxcHtjqrPb26XV9+1Ta+0vU32F5uPj9FfC9J9vUPtcacVIgcgoViatoGCS5gC - RASh+tVF4rkK3/MEDPt4EqrN4TgibHhpQHbAZPBib+214ptFhxSdmsRxWNUDryjFjrutHtc3IX6t - I1e+kPUmvxePf3y40ePkW07CA5OrDznF1jZxSETO31Y0q4TJCLANE+V8Y6dmaCB8dGjoadj2voQu - IIdxc9Npy9qeWX6rmD6nHWNb4U9AThe0IJ+3+NspGt2vqt4E9/Ppz3D7wtxm5I+DhyAky0FnORRm - 0xKXldzLrDTGVnuUUJxS/PV08CvOF/mLCuXhOReWRrIJV7ZlwfazRbhE2eZAlBYSiXFTFPJCwYb0 - 5nznBY74p7SPEnwy+TTGL4LMxdX3ulGPm3Vvh11fUJctgaKKI3cnsZsVj1mDAxWO5AXFMNWtgTkx - rCUNU29bpLuIE1YerLoUld3MCeOlWiYzJIcNyNGYnkNgdQ/TL3mR/qrzLsAv7T9PW87TbJjjp38+ - 8FutH1k8Zxx6s/R6iiVx7Ogq8AAfV+8shKN0QgvE2IaeOtMRPcaK2bUtvOhn4lKzicAxldQMuHJu - ZLRTVz3rsW5R385U/RVW8T8y72L9wvxzqH9WWXzcRzDx0ok0etkJmx0BI74+YnRjCDmvDx1+LBLP - OPYBlLl8R+89VXf27PmY1HlTI7J/OPG1uc3hHXEmDlXiM5JNsyV7VD4YYl+UzrsX78+ae58Be4gH - /ynjBoS/4I/Bulf3sJ9T4nlfUxtuxwJHSUZGuWV28YyJ/f5yLGteChTULFRP8pFEktfNvsn1o0Sv - kN5TKsP1ltSq9Caoy965rbwN86NYy9fyPgr1u9mXZ7M7kf6L/beN7gjDcd1QPXZVENA90deo6ZnL - IZtmNMZ9ZYpZ51RhfAGOkWLulewWAsjC3CZViN4e4qQMDnz/stnXUzMeTw5PFcJHA8J9m2+/NfxU - XzVv7P5FICBGfCzk0AuW627DtVB1uByHIYx25nVD5ME6A5igOkyiA73jHmt+Otsb2ZQXpSNVBDkJ - h651gzATj2JV91hc1+7qih+F+6Th08HgtfE9kL+mLPU/ft0mRDeC3eMgg2sXapeLHXmlgLFbJJVB - UxtLbUtSFj2C9rVD94bIHY+Ao+BzoHvhkhiSVWs1TORFgOZqB4V7vRWFipuVQ120mUG+A/m7yO+/ - ylci34H8B+M7ID867UAck2MOTdoRunIVFa46jFInNi3oxXIHTGqrFaY8P5e8DcAJ+xYC4QMPlioY - UyI/gCVvw+tZ2okRcbEQ3OiuUURl+ZubAXekG9ydZvAN1/PntbyIO+Mriv7Lqer9JH7cnoqXkQNZ - t3Wh+6y/nUrVS6JjCbZSfI7aFRK3l46oEXa8kY5rHt3JMKM6+W3FMF/sQTZhUVvPu6Vj4W3CjWyh - BKXWfAjj89ezJ6n9d6njS6kfwvsHFx/fUfmO/V8E2nS0oVGCkmqThKIID6LluBEBwtmGBZrYhzuC - lQ11BRNy0pg20BGPulSjTk/mkdRWKi/oKVavytlIOmjPJ8IxYS/k22uIb+rujLD/Y3V/N+b9Kioe - OSVQpdw4KQRdmnbsBmixgSmCcf1YOVTTdWYQbOsO3kosdW1iqeplpXkWKoyUUqOfkQtSuJGcmpIi - zqAnJAZTzLRuvf2F+DuW7JW0D5H8ZnI/xufkjrr5Hgweh3Oc4KVy2vwgkWUDcwf0TLfanlVwPBY3 - 88ZR6tKXEIcGzHHf1Yops1zsAfa+3B3CHb2YrFSPqIaHOi6Cx95v6YZI/lCG+Bc2+VeJ/WuJH8L6 - i+n9eL/vpz6O63LggUMSrfx5gYkCkRij0nIWieaWMIGrXBmi3xF9seQldTllYGp2xhY8HdVhIq5+ - 119EBHRoQ5kSmVN3R+0sE5r/dtrxj8Opr7V9COiP/dQPk/xReoEKby3QPx1i7b7tij+m5KhNMnUL - mYdl3UwUB+JhjJHoFdxrJJqkJWaI8UYjzQAePL8OwknrggMjE13Gw7QedW4QBDgLTS2qFmspQdpl - vvSbN+dRP4od+M8Kw1cK36T6e8uP71H/oaxFkda3/5qVD+y1NnyJEJcsXWOfhuhJNikPylQNiYyI - 27j+eOMLkVsTAi96qCCHxqBsOF9VVlc7Mb0axaFCqa5PecdP83TJgTzI4j9c1vQrq9clJX7V+jHe - f/DxiV79ivz+OWn3QR3b5tCOYJbzKd7uDxpr9HgwLJuoPrUm0G6bQCChrFDWGjEu2sXDLHP0Lpx9 - bhqCEHckMPoyRrOaHu16ygVoB4120vYPtQjfxBX+EPkJ1uFzfvJfde99/8CaRouKXDY14AF0zuq7 - adptp0jXKY7P8aCEkMNWtZ1k3x5JCTpdadSuQ7SfjlnsJQGh1SbD9tCF80MVEtb1YPcBfrjE9Ztz - 3T9w6t+uavSe8d/25OfbPB6aYg/TjH32vGLZ+rcOTWwndm59dXPx1ULYtAAKbjZ1VrYgETX0Qich - Wbgx4VpX8eRtDiyoDMFTcT5Wr2FsOWAqU2+Zkv4E6fi10k/g/u7hb5mrTVwZ/QO/Nk6quxDitJV6 - Di0iJJMHiKsZPSIRw8uxXVx0gSPPwnZhd65DXJpgOu1tt8biJZ4uGBGOouNtPdmiuoVSwpDIXQL2 - PxFB6pvQvv/Q98c3HfwtcO0SPvADuckdnQ2cXhsXlVABl8WCQWQqGaxCOLRiAoU7Lltx0iW35/MF - lcX9Dje6OacBV4GTSxuXu8nmeoA7LwdxvBR4hKf18ubE7vewmp8qP4H6yfpvI/a/2AAmAlpYLFaR - wasUs/w5q4MTdWyNRmy3rqk2AdPjpY6gKDNAsGHuDo5ChaAF7A54NLtcuN2kVgZ6CZBbjr2e0ZIh - afsTE5L79oLf8/G3PdzZQNt93A15kof+8Ej+A2KWI+4iyiAiYwnpQzhmGuFFinJ1mPRUImJcUyCk - TMXhTGXSvjrAigMRJl2gCIaVVoMeT7isMZmJ8ubAwyNLCG+f6/s9u+tNcfi/ij/RCr96+uu2KB+4 - 6skRscI7ztFxVIRW4VIIJadfaEGUsQBWEs1gAsHid0VbCwGMFIkj5Ok+oPWGLgVmnY0anODTZgE7 - V4xWzzWWvX39zHz8Wt638PnV+BOhRou7Mv+RRfkgvts0WkZKz046wQPNZn9eTjtw1S4E6IwDOp8M - jVTE4w7PvY6UUefkmIeolmOLSrcK1rUsWQsNQxyaqOUjmj8STirG0Mf4Nv+j72NoX9h9hmqXV2He - +MVTzfqonh9ZD4Qg+ER3Cq9QY8GJQNCtz7hYXUjKKYI47xO4buG6B7KrylnVyAEFZyRca86mt6tV - nWXxMwi1BO8IBRm283Hrn7j2YwNl80Pl/ErlBwn/av1xzuZTEavHT7J3uZACku0btCqYa4yfueNS - XVMcq3xKG1qO3810J/v7Ib/2/iaQcp2MGk3lKSKN0T0kisd8FRmgTy4rPN8GS0qiXO/NqPxcneue - OfUrg4/H2FcAv+zrKNZunB7YSw1oZk65FMqTXlzYkxP65JjX8Om4Cdzj6qZqqUrDvvV3xz3K6VtK - PGcYWg/hAUUErqeWyY9Y06cO81boSjwyMGZK3s7veU3m6e7A5oXEO6D+MP1k//wn3z5c6yBBuwGk - MFQv51u3qz0EiXOkKrvbXC6Nc3dm1z3mUgpQjTGps3h0duhDnUKnfQUEXdwda9dafANIs2WrgYeT - Fb59dPA1pPu+gPzJ9pMd+DlH+nF910kxDhOqKMeiVoPzkcoPxtzktrHBvDRbdRzD1KHX9yVYgsXu - wJHRaZfJlkJkckkqSqeYOpBzQZ/tNXPupqunFSX28b77nNF8d7d9trqzx+pxOhZ+908OjeiNidAU - IOP4bSk3wGzfC8x2T3GNzEasNmbxjmjkRmoq3HOUYCHONKPH5MkHlRi5cvksWxwiqu2a57615+i6 - 2vTS24eIn/F0XyXeeXbkD6Z3dNesi/3HDlbW5WRAF3UXnhLUnkvING5v9UTTHr4rDkAA8nruNzpr - nw8bFVIMSJ5yDkoLqWQlIMs0OoIdNjaiE8yVhZwFyL62GuHtCPCLqLcRfn/4E9C+7DO/quLigePT - geEhXIE6gSt1E5NV6YjsypMKCddkKgUX1Px6NFqAZo+XkUBUmQyvyUza2+3INeaeTZDpihx5WTcy - lMBy44D6fWS+3R1/qAtfq/sgxu9Wd7zjP2xNv7888N2WA+MqMZF6yqyY3MXrDtyOKsc1zQBUXoLH - sMUuMz6htIIXbT6UkGpUyOgc1GjQoANqY/khbMN8ui178VPa5vNcOfkHYQ4vpH2Q5LPJZ7rlM8bX - w/uDkkhsQzqZg5xpOpkWxSrYKnLFC6woKSEJlgOVm8XiUHmPHXe3UOhIWIAZOEuuHKU7GKiRM4/S - PNDLUeaX+5yvgMQ8wfcQfT3Av5s/8mfrj6eO/MpZ8zu/KB55niQMzjvF4xNwOu6TMMrWK3G5/a2X - tN5L6VUmS0+N69Dxqk1qZ/to5YUWD1xFsh1IpsS97WpEEPXYspPIBsLdiwbV/tvL1F85Na813sX4 - u+2nevLzrwdmk/BlYALeCuEbRRIE0ONDfuuocMSMMifAMnIhRrfvge0ePstXc7+9mJ43rid1cXh/ - 0S9AlAzbfU4nqAAePWggRWnZvblIfUHnpbaPEn3+9XGSll+MsTk+9EKEUJGZaeegEX44HHUvRo0D - q4wXK8gHmmIay1NhovUhEGH5q0e4hNawetPhJYLDG8c9gIPrugm0A+yFV8ZzK8ykPM5v9s7pSdUw - vne1wf88/XFuTlncZp1PNwbbXT48MkGU65qOAjxIPzm+jikEGNsEfIa79FAxFWMVaZ5jW85bqLPJ - E2ORH6pOPaG8wu46PGHo3V7cC1FhKe024wOf1nEEdnZvRtCn/bjuWdv8UtubDH+1uY+kQ9fhWD60 - bPJmFSGHvlJCSuYLMGD+oTpSI3RoraBdpqQ+WQW80BYOX6MatYYM29QUwtYu1miXq0vxm4TMr01p - tk7MCIu/3Vwhf//mi/yE5ObslbB3Gf4wuBNgWTweYSGS1HW6OAR3vDZ7nGP38e5Mmtlt+X0M1ysC - JGBo8+KJHM4G4SYCvp/woK4I6GwxaY/sczYoywMZbM9w7VlXKDIExH5zov5MpCzuhvjT5E6MT84e - +CEWFo8bgzGr49i3pYHqszGwxDQfURlC8lJYCwDo47kcENTiljS/QljD8AC7P8OLHQArxtGrlBfn - DrYJO5m6K+TObx9feqbR/BT1Prqnhz8B7V+8wud5W/M8I1j2Bi15d6ul3dHfkk6NCB7knbsmUs1y - mC6APqXY0BLREpXXSGlPk7hx5zPdZhWxKXeOPQz2OZcy+/8twNQY/8nniBAhPSOjasMTpCAKSNQC - AFBLAwQUAAAACAATeXtPm0fQ75UAAADgAAAAGgAAAEVjaG9Cb3QucnVudGltZWNvbmZpZy5qc29u - VY3NCsJADITvgu9Q9iwLevRWevDkD/QJypKVRXYTklSR0nc3iy3iJSEzmW+m7aZpHI9FU4YracIi - 7thMVTZDY7bLFdCADAPRwe/dbjEjDxleyI9fwNRiYs2cU2AUjOpboQtoZwDfEq1xe30CixXWb+Ma - +evMa0HAEtP9xkjAmkD+evq3KGR/6nwPbCQzlUdYEHXZmD9QSwMEFAAAAAgAE3l7T+kTJ7OmAQAA - VAQAAAsAAABFY2hvQm90LnNsbqVSwW6bQBA9B4l/QPSSStnVroEFDj0ssJsc2sqqld6xWTsbYdaC - pUrk+t87yMGNHaeK3NvMm7dvHm9wnW960ZrOLK33U3d9WXsz21faeDNT91abxpO6VjeeNO26BI5q - uwGkE0yI63w6eUQj19kje2Ckf4EJJniSBCTGlCUurG30ul+/QyZADsmEppi6zrQ1j2phr/1tymlK - SSARZTJGIWMJykQUIsBFzEMZRxHb+Z9BwReLB5MZ698cSrzoNqA0IFvOoiwCLUQSyVAY8wJxIlIU - pfmEF1EWFkGy811HNNXLdte5rc28rF3nal/MAAS312NOuWmWetW35dBM69IuIbFu8LJp1UiC11eF - mver37x59vLpPYyP+oHwQ9Wq7NQrygkCJDB2ZOONrRfb/3BlOvva1scywUduMYdlv1S+XJ37josU - s17XFSb/oXcS1pHHt0FeqvrX5wXHGXOHI21Ua7U695/c6erQfzeVAobkX2fiIwvEk1VNp+e61vZ5 - Pzp79LG+7XUF462ggeQszRBPggKFVOYoYxxaGgWZCHki42R31sABcZ0/UEsDBBQAAAAIABN5e0+/ - cE+UDgEAACMCAAAKAAAAUHJvZ3JhbS5jc32PwWrDMAyG74G8g47JxXmAboW2O6ywjLFu7DB2cB01 - Nbi2kezCGHv3OWm2JFAmDMbS9//6XVWwcf6TdHsMUKgSaq3IsTuE1CfvSAbtrICVMdBDDISMdMZG - 5FlVwYNWaBkbiLZBgnBEqLcvv+3E5FlkbdvRWKzYP2JI9rj4byjuHYc0XHQeVp6QvVQ4QdcurKM2 - ae1OnrxBzrOvPINUPu6NVqCMZIYnci3J02UyABOIQ/qigrPTDdRS24IDpa3vHyCp5XLkJ9KuNoQy - 4Bvuu5hDjqKXiP5VlOI52qJcjLLv7ifX12/nRtfd58ngdjlPNNDior3Dg4xmnmzOdyVeGXdBUoj+ - ZriXf5lT3nR+AFBLAwQUAAAACAATeXtPf6fW6KEAAAC2AAAACwAAAHB1Ymxpc2guY21kJctLDoIw - FEDROatgAxCCgJ+EgYBMNEqUROOMwqs0lBb72gCu3qDTe3OEeYG2FaCWCqweiWG8sQ91KxOpXeTC - doZdBgOX80Uky4y1MrDUwhDOsC2UpIxDXHMWBGM9I86s+tTOHYjzh+5gyNTzn6kQR6maeFZwfpoy - O66qaxvlgnYeQnjbk0fYeZMBOqbFVtDGP/mR9Gg2rvPyTbve39DUsr5QSwMEFAAAAAgAE3l7T24/ - rhdUBAAA+woAAAkAAABSRUFETUUubWS1VttuG0cMfTfgfyDsFwvw7rapg7YBUiO+AULcNIjtAoVg - QKNZSjvR7Mx2LlKVry85u6tLasiGgb7IModzeEgecnQM17KyFzYcHtAH3DhR49K6OSzOAOkEJmT1 - om405ocHhwf3lfLJVgn6i2hAOhQBS4hemRmMdlAeT6oQGv+uKEpc5HRt2p/k0taDU1AEXtmlB/qA - YDswEOAVh0yRQiUCCCmxCR6UaWKAqbM12ZGCogNhysQVPeNNhJwnqsfH8Nmhw7+j8iqgZ1sGo/zT - 9T1cWodwd/Vxi6ANBkNeK+mst9PABMm4NNqKcgALdF5ZA2/yHxkHYDweT4Sv+OsxlBjQ1cogtDC9 - O592lizbstHlxBDuLbhoKJWuqtpKofWKiV51sVOefCZtiZvML6LSJUy0IKMyyfThW6SsPlsXhIaT - WswRPFtWNoLUSs7h6C/0R7CsqG3Cz6lpR0MjdSQI0TTgMQTqoe/x+uzJ75tqYKo0nh8Nck4AIIPh - dIPMUJ/sUTIsldZgkEzcUNusgFJqCTYNOYvAhbzrgzXONuiCou6l5AjCsSd5uIWSyCjJlmrDRHue - +VdPQEyr7/efykfyuQuxVJaL+EeDbS65160r0QvVrmPOnl9i60h0vqIMcNI49B7GN2/HMMfVoIuw - Uc/l7ZDvDY0PfX6jnVMibrXfVpj03+kLTRZ9J71C0r0i3SnOg5j492Rk25t/BjlwqIc0YRyI7tas - ek2SOwUjFmrGY9NXqs9hanWJLqV3v2oQxp0WSXLjvBMg+tCjssjaKd5dBdd11CJYd3gwevrgcdTn - OKPixknKbZ1psT33GfZ3gCQvaHL8PNiG27qWRjvwWvNeYE60O1CzSDxnSJMc0siXOImJuHLs5oGu - Jo1Uljys4zQNZ+OwtgH1inydjbOKwgY6Qp23K2G7hU8nuB7/s/xt/oaxZ2lRuVayo4rWzJNF+H1d - BAJe42Y9buFQo/DoHzt5XVriRZ3jPF/UkQxuRTSy2uNww6rPfmtnIW36DK4Nkxfp1sOXW7BTGDN9 - Yr8u4buffv35l0I0qqhpEsQMfbe0rrDRdrUmSFzT5knPgwVKyBmoeQjExEZuH7tzEmLH/5QWDs1M - h5aEu328GRwxF3ntC8HWFqxGEwYkb06BykwvBalfK277FDYutMh8cFGyqnwn+JvoiDiJA0VJnNKT - sFu7Kysj305i/G58//OEre9fCK/k/mlPCfA0ZL5dben7hBc5umySAM4XCpfvk2e25Zmd5T+0sT5Q - NgsVVjzkkvpCObxgxewPLa3h1zUTHXa2wX6eT3p0uAL9vh6a4GzZVv0V9egj2AV/wWWmtvBeQWdf - O5/j82y4/2vhb+VCwHsh6f3tmG+zJWtGG4B25TZW+9tgA9ek//N0ZSPnW2FmkeYdHgypg3aj4Unp - FtHtw/DuxYKTdmYUaQr7yvlC06+xoo1zWQnewj5tc25Zt/1orLvmvVrZnaL3jtO/UEsDBBQAAAAI - ABN5e0/I6E8OsAIAAIsHAAAKAAAAU3RhcnR1cC5jc6VUUW/aMBB+r8R/OPUpSFXQ9tp1Em2piDa2 - SrD1sTLOAV6N7dkXVjTtv++cGGjalE5ahBTsfN/dd+fvPBjAlXVbr5Yrgkz2YaKkt8EuiPe9s16Q - siaHodZQgwJ4DOg3WOa9k8EAPiuJJmAJlSnRA60QJsVst82Y3kkVlFkeAufD4L4gcXjMLyulmXZ+ - FDS2gfjjcdBkIzsAl5aO5HjyNS8M4TJV24TNY9wO1uiRuDTGBUaYhVpWDe049BodcoeM3BbmB8pE - 6NSUJE3F2mkMcSe8IX4kV5bXdUAj1hickHgsaO/kd+8E+HHVXCsJUosQYErCU+WaLwlQg7zaCEKQ - XAhBIB+VcMyvXFJRTpBEKUh8wi1cwOmL/dNa1j5WkzClyopWC2OGw6p/YD0RE5826aJNOz9g/3Rk - fpaxvfoNS6TzNo9NPlupAGuklS0jIIAUWrPn59va8L4ypNaYw7eAvHHAkgVRlhDnhechxHXEs1wS - yvDBvVC3sarca8JpImZF+ndlOW9tnn3Q17u0Q+TDsuTxyPr5NA7L2nGtc6UVbb+jj+7Mujbz9L5/ - f/+u3zrC1JQrj9EUsSA+c7jxbLxf1j/AsBSOWsU9VzNlA2kkaz4UTN0zx0Qukc92Ue4UrUbeWz8W - ptToP2ZviZmzGBFAAHnBw4eGcihMcy5ShAY0nN7GNpOPDfXAn/DRxc6ys4WBKOuI/tkucq3/DNL8 - Ndo6zfd/Jtr5u9E+ns1u+Rb+WSFPo1MONXvpLStlxdA53q59ni4DEM6dQZHu15HZKG/NmssCNJvX - faUWkDEgL8I1blBbFylZv99GPSPFh9PlXF1ioR89SnRRz61YYqt3qX9Pl6gD/muGcaDQFa+9sZez - EJWmG8X34gtSwvB1RUoehdzhfGrlA6bMnZh6CtsWSS/+/QVQSwMEFAAAAAgAE3l7T1KsV9Q8AQAA - 7gEAAAoAAAB3ZWIuY29uZmlnbZBdT4MwFIbvTfwPtZcm5WMDBAMuZQxv1CxR73bT0QPDlJa0Rd2/ - l6FTs+yufXre92lOuvjsBHoHbVolM+w7HkYgK8Vb2WR4sDWJ8eLu8iKtlKzbZtDMjoMjQCg1e2Oh - cz5g+wx6rJjoyHdMcjE2/txHwjhHknWQYWb6J7BLpQGjntldhq/xQb+dDp3igwCTYfo79jghjDQY - NegKXvb9WPMqTQ9VW7fAMXKPYvfEnP7ZUK9VBcasJydXVoLFiOlm6EDa0ehsVtVO5co6XAiMjOVq - sA+qWUm2FcAzXDNh4N9D2Qo4xIRqzOabHr+SumdWk7qnK0yvCFlr9QaVvR9afovKYhXn0ZySchZT - ElAvJnRZJCQqg9Dzw9KPg5iQc0kahXnoJz7x4jIiwQ0tCPVWCQmT5YwWYR4U80PyC1BLAwQUAAAA - CAATeXtP2D4W8OEBAAD/BAAADwAAAEJvdHMvRWNob0JvdC5jc7VTUWvbMBB+D+Q/XMMebDDOe9MW - PLOtgYbB4v0AVbrEorJkdHI6U/rfJyVOYrsJG4wJG9t339193915Pofc1K2V29JBxGNYSW4NmY3z - dlsby5w0OoVMKdiDCCwS2h2KdDqZz+FJctSEAhot0IIrEVbL4mj2mOmkIam3sG7JYZXmRinkISml - 31CjlXwxghSlRSa84aojLRi90Ml94px+Nv5upPJUrnjXvMSKLQIvzSqkmnEcQrr4NatqhRQsNJ28 - TSfgT908K8mBK0YEX3hpvBduIfOCdtK1j0wLhfaA7UL2YdY4L9p3yezQWikQGLWaQ9AB3/UKidgW - j2my4IuWRWN1brTDX+5uOYI8gDt7E8iZ5qjUfliFeUENfGyJz3R6zMLZMeuHWqu28LngHj7NgrJb - eOuVSI+F0wB6ny2GKdgrk65PKV2jFkM9nYKvjDtjD3miU9nkzCBOLpDv1XsPs/v7zlbPaCkTAkXX - 1idJ7i4vmdaoMs5No90DVD1cAsPW+xefm/ZsftaCuf82hVdU3FTYzWH26EMN+J06Om7Gfd8Y/0fw - EqIQfdAAUg/UxMOIUdVw5AaiQ0S6FHBzDxfn/gO5rCVq50HxxyQX8v7LYvQ6kfTb8qfl6C3Jlc/u - 1T/89RtQSwMEFAAAAAgAE3l7T574wQZEAgAA7wQAABwAAABDb250cm9sbGVycy9Cb3RDb250cm9s - bGVyLmNzhVNNj9owEL0j8R9GewIJmXvRHrJdtYtUWgS5rfZgnCFxSWzXnoCiqv+943zwsR9tBArM - zJv3/GY8n8Nn6xqv84Jgoqaw0srbYPfEce+sl6StEZCUJbRFATwG9EfMxHg0n8M3rdAEzKA2GXqg - AmG1TIcw14xHddAmh20TCCuRFh5lxgGRynAIiyF95hVJcN+RmB3F6qjeKXiw/K11yXz/zoqlIcz7 - I3RtRey7iKqMrDA4qfAW20O3snIlBi435G1Zog/j0e/xCPjhU6eFDpBs13DJA0cUn43YC7JQSJOV - CJLt+lVjIAGP6JA9MqqBpfmJKqqCk2ZjnbdHnWFrXpJJR9yN4bBkPWdKHQVVaKg9DkgCXxvSFQpY - 1SVpzkKm93v0XNNCX0FCBJhoFmMvlazJWW14sEoa2OGZUKpCI88Zdg0Eh0rvmxYMFVvYR7QCahzC - 3naj3zGrYirytSKOSZ/XUYDouj5vbE04uZNOz9n9IHMMd9OXPpk4fbGzD7p6VzKJKmUIwGe68vvT - lfkPMvTC+xm1WK+PPA6IC2dN2bSmfPE895P1hyciN5jdvxf/wUYB7e6cqzp1N7omH7LI7j3rerFV - 00unK9nxGSD3A2hxm48N7mOLq/ifa2XPkXhtA80g/vqK9PJGtgyNURCvIcTKJP6dfKyJV+IRS8yj - LXHWvLWKZxh3wu7byFOarmH9Y5vGCxADvXjxplF6SXZXQJujPeCwQ68A8iQ1DZ6Idcfbyd10t2sG - G77MvHg4i95Mb23pX/z5C1BLAwQUAAAACAATeXtPadCRpEsBAABWAgAAMQAAAFBvc3REZXBsb3lT - Y3JpcHRzL2NsaTQ0d2N5c3N5aWF6Yy5QdWJsaXNoU2V0dGluZ3N9Ul1PwjAUffdXNI2vbAQGKmEk - yMKLQKbDYHzrtjvWbGtnb8ccv959SaIYn5r23HNyTu+Z54WfcowdptnihpB5f3eVjHgKJO/OHcvA - pkHKLasMKsSKs3MwOIA/cCBPZUVJzSWkJ29BxzK06db7C31V6ZWUgUFmsHOhoAQfuQY0BOiZZY17 - boZhK+XV2BWbkgJBdR5vr7CW3wy4B8emlYLde7F3nsbsJZ6uRZQMESbe0n+bJMPPAqJy5T6IKBxt - RlM5jJzybr3/iJJsdB+teq0QUHPBNJdimedtnFjrfGaav1NdJeoVvOeNB+oEynlcSSEgaLQ8rbg4 - 2vQ7cVVP/YPHsnFxrBd14iGotVRFtuEiuQwEUmglU5cJSDugd1lyEcoSO3dGILOeUBv1KtSQ2bTe - bPPTSBctMg/revgMAYnZtsT8WZPFzeWlLdIXUEsDBBQAAAAIABN5e0/gz3m4kQAAANwAAAAtAAAA - UG9zdERlcGxveVNjcmlwdHMvZ2l0aHViUHJvamVjdC5qc29uLnRlbXBsYXRlbYwxD4IwEEZ3E/7D - pbORnQ0Mg4MumDiSWk44Fdr0rphI+O8q6WCi6/ve+6ZkBaAG3aPKQE2nsqir3bGsD/m+nNV6WRtk - 48kJ2eGPBPkzeITCClToRzIIW9tgbDvbo9Pt8t6JOM7StCXpwnljbB8l52nU8nEu+s4YS801MQfk - NxcfvrDz9opGfocH3SjCZDW/AFBLAwQUAAAACAATeXtPWtMXbNwAAAAOAgAAKAAAAFBvc3REZXBs - b3lTY3JpcHRzL0luY2x1ZGVTb3VyY2VzLnRhcmdldHO1kj1rAzEMhvdC/4PxeMMppFtxAqWBkiUN - /diy3PkU4mCfhC2nvX9fN1xoCje2mz5e9OhFMttIR7SiPoPv00IfRPgeINkDhibVwdlIifZSWwrQ - 4Qk9MUYIqc3OdzCfze708vZGKbMWDE+RMp/TUnikwM6jeueuEVzoqtpVtU167J8VPLzRcxbOsnKx - rEFxWD74j2ZIBqa743AYp1/yDfWo1r31uftBcfGm1d/wvgG/YBdbW0qyQvY0vNroWFJBV/9GfcFA - p0JtXb+7dgmTKmqPEyoD17cyML5Aib8AUEsDBBQAAAAIABN5e0+o88lWmQIAAHUHAAAiAAAAUG9z - dERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc51VXW/aMBR9r9T/YPUFR8tM2dNUxqRNY1P7 - QJGCtAdAU5rcdGapw2yHglD++66dODjAqm55QMS+95xzP5MUQmmSKTIiEn6XXALtZaoXDC8vEnu1 - jvVP/9K8e9fxeh2B1lw8TmtDc88kqCLfoDXro4GqDRRbqUJ4viA2f3FieGUNnamDsEritKFUX3kO - tCshdLAdHsMhiwSUMtAeML5N4icwwPcPK0g0+wU7RfE4uLwg+LCM5xokzUqRaF4Iug32qEGXUpAt - 4yKF7X1Grz5Np9F4NrudfPtxFZDRaESuh9V/Q3wff45uZ2MD9QGBSHUu4Uazk4/JS8sEDhRJKUOC - oQSkpdozxuzxHM+ZKh+UlghDB4NgeWOQzPmyGlYh2Vd+8gU8e5QGxpUjJPjiKaqsV7lOYw2vqVHo - Y9eULgJb5y+FHosNxfwBBlJns9akYatRTGYij1PDEe1EYi1D0it19va9baCDR86FLbPxZGqdc037 - 84VciGW/a+j1mvU5n1tz1Wo6OK9jqZ1nw9IbtUrMwzNCrRXLQTxi+38ckXcdpAOawNra8TDmBg1l - XIdk4ONZ61LOje2yNV4VXBwzV4e/TUugX3PvFd27d6nA8+qkOK8aQheXiRqLBVuutLKl6noEnQw0 - 9HfR/YRhPArocaGP+VzJXbyVi+SU2Ek7x+g1nbdGOoBumqqTpHA1KVK4i6ayMJuEtgSNS1fG8c7j - XAl0Z7unvA6jC/4vQ+XK1sn+iboz3Wt239EmVN50do3dQBmzl/ZPt1WbXMzdMkIb8oZgp+Kv47KL - aOl3Li6tpa8AU/ksuYa2H9rY65Gt23+BXxvsaxBJkSLujeuSqi0qgVyBL/EE+DjJtifrzcmzHT1s - QlHmeYiT/DKhLesfUEsDBBQAAAAIABN5e080Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlw - dHMvcHJlcGFyZVNyYy5jbWSlVWFr2zoU/W7wf7gYTLfxbG/vyyDg0Y5ma6BrTJ2uXwzFsW9Sb5Yl - JIW0e9t++67kOLHbeHswCIl0c3V0zrnS1SkW9xz4auU6CnXNi7x2nXS6AJErteWyjP03bQAfBJc6 - Ra2rZq1i/982LFHwq5xhrGRxTeND9EbW8aqqcRJFkX8x/zQ9v559nk5+vv7njd8GkrPFxeQnzVSl - MfI7KL/FKPm2qXlexkuuA0J3HdexbP0dum8iEhkUJWgOQvIvWGiQnGvXERt1X0IYZtvtto20uVVT - aVhXNCeptRnZUG9a8GZVrWGjUIYN0QGPCKwkjciPr95IJrK8qsHb6Ko+7eeHBWf9NXlJrAYYjNFP - wMATpCuXaLR02kHxjSywD0AiuEaLs7O8b4jgohxI3QilJeasc8Qa72fGcddhX8tKwr5yRdkb992B - IFgSsyG8wTNcn+7Q93yPYpODgM5Y0OXv6bNcaZRD8KLmDR7YHOF+cNCm7j0AvzPPb6FKrJEMC9ui - l4P/LYhkEEgIVruUgcZdSVZckoRlXan7I2SyPmTraSK5QKkrVFnSrqOIuQ2qW/+7DP0o0PhIn4Qr - fY6i5o9pISuhVSYG2eEDq0ONTNQ5ifwOCksIyLko++92+v4unS2md1dnn6bZj8ingJ3vg360hndw - JB7c4jJotw1pP9rj4AvVENL55c1iNr+y2bHrGH+iFXjkdcVU7IHv53Ry4MWJMSNawqtQ1c3JSzrY - cPocgLINspU9KjgsWDmidIBmlA4CRuUgPbl5fzlLL+6S6/mH2eWINc8teAZzlqa38+tzs75rl62j - PcZ/UtU11L+u4/+k9pzIEbgwGZIzxenK37bg4WtgO3FF9X8a9yCOwfNgzalRfKvEny6PBT9pQSAX - gjS1SCe7uzo5S5I7eh0Ws6uP6YGU60ws+u7O2i56j2ZHMJfEdQ4PkJ+9pTB95ZCP8AjNuuN/Za8O - HQrzZiNsC1J6Y17Qkf430l/Geto+fbxR9Z/KfV2acvd8u461ezKdf7DODC1rLS43TDw1uOElDmTv - ZBzpQQzlGvdH9wsdEHwgH6Kl6/wCUEsDBBQAAAAIABN5e0/va091cwAAAHsAAAAmAAAAUG9zdERl - cGxveVNjcmlwdHMvcHVibGlzaC5jbWQudGVtcGxhdGXLK01PLVEoSi0uyS9K5eXKLU4qzcxJUagO - 9vcJDfH094v3c/R1rVXQLbBySS3Iya/0z3MCKbAtKSpNBYkGlCblZBZnBBTlp2XmpNpWB4Q6+XgG - e8QHBPm7efpAdAYkFheX5xelAGUdg4PD/YNcanm5eLkAUEsDBBQAAAAIABN5e082K7FwdQIAAEQF - AAAtAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlfVRNb+Iw - EL0j8R+8aK/E9ONQVSEVLXSFBN2ogaI9ISeZEG+dOPJHCl3tf187GKoGthdQ5s28mfc8tn+3LRiq - QUjKy2Hvwhv0EJQJT2m5Gfa0yvo3vbug2/G/9fvdziKnEmWUATL/WkKK4h1SOaBKx4zKHFckeSUb - 8y14AlIinqEd1wKtILax35AoD/3iGiWkRImWihf0HRqKGHJSUy5sjbJ9HEe3Y3pASpWZaA/Mo3tN - WdoM4qFpibhIQSDFEQMiSlRwAYjEXCtHZMISUE0lVShXqpK3GG+4V9BEcMkz5SW8wNkbo+UrvpuZ - 3+l4eDm4ubi88FC30+9b/eF+erTgnMmXg1/X1i/jYCmHPctsiGWSQ0Fkiz2FGhivQOBCxnZ6fDkY - XPUMM0KW2yBq90NwXTUhEzSWhXtX56ByngbzaAwV4zsfn0CuxAUNXU2NI8HoXQswyRFV4OM26opm - RKqlOcrG0wdeZnSjBVFGXvAMjXM+/iKnxRIyojIuimBU7tBDuPyoPSKuwg61FGzBZ0SXST7KFAg3 - YuCs/LOa3K+j6WKyfhrNJ389YvW8QWzOEaRXgvLxVyzH0SxiEz+hC6EbZWdBVzrZJkynMKqq9Zgo - EjwSZu1oh1324YAiEDVNYPk8C9oKZFKcqri9vr7y8Zlqx7uPT6k0DUOi8jarj08yXOUzFFyBVRfm - O0kTwiyK8PEMXmk12SpBHs1Vkj9L29tsxt6a/4AtsZ8XcTWPXh4+tJzd0klJYgaHlHvzYpil37c8 - C7kys0PiiRQQfD+Rf4Rc6joiNYSrsWM9fh7gMUjzmjT7u9hV0LonJ3BzR3H7kjYR+yQE/wBQSwME - FAAAAAgAE3l7T8oi4NElAQAAMgIAAC4AAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoU2V0dGlu - Z3MueG1sLnRlbXBsYXRlfZJfS8MwFMXfBb9DCL6ufXBPox1stoKwzmqUPo60va7B5g9JujHF7266 - bB1a8Slwzz2HX+69kerKlpkmoZbOr68Qik6FXMs31gJS/l1TDjH+LNLlhjy8pJv1Iku/JgWUkwRU - Kw8Y9WaETu4MbCPrGGfkT/lVt6OwwFQ8oB+dhj2UhlkwgQA7m05vz2Zu6mMYceLIjlFnQHvMm5Hm - A/qOvEicN18QUjw+J4NUg7FMUMukWCh15GusVbMw/I05QjxHkKcVAb0DnSzvpBBQ9WHEaia2MR7+ - cHBt/zU0sgfZuvHvWA36XuqOr5h4v3RUUlgt25wKaL1yIt0zUcu98YRBJfnZ4WjJwVjgMXYb68dn - 8NxLUe0WX1IDBoV+/+HPA3DFoXQ8km9QSwMEFAAAAAgAE3l7TxPZeEvSAAAAdwEAAB0AAABQb3N0 - RGVwbG95U2NyaXB0cy9ydW5HdWxwLmNtZH2QwW7CMAyG75HyDj5uBzrtAUAg6GESa9EGBySkqkvc - kZHUURJUeHuagOgOG77Ysj///uUpij0BNQ1nHoMmUWvOUg2LfLUst+95sa4+y83HPB9f+29FtVrO - 5nk1AOPXuKQawJPyAbJs13WdIwo7iVbTORNGwhNnAPbo9/IXEHv9TQ0DmDCyfX6Oqg4NHJQ49Cbh - 66i0jIXw1tFPHCf/DgU5edMw2AYIyqAPtbGcyTogvASYTOLdgck0fXMWwf+nSX30ZzzaWAxGJLWY - fLby/l3OLlBLAwQUAAAACAATeXtPoegHQ4oCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3Nl - dHVwR2l0aHViUmVtb3RlUmVwby5jbWS1VVFP2zAQfq/U/3CqZBUekmjbW6VOLVul8QBUtGOTKJqM - c6EBJ/ZsRxUC/vvOdkNTQfdGHpzkcvfdd5/vnAmKtQJVFP2eRSeV4LLfM1hB8mFXxKdsjb6y6hIr - 5fAStYJrE55/WjQ3cK3RWFVzORUCrV2qB6y91aj7c17hk9Ku9J9fbiKeMMgdAq9z0Eo30r9cLS7g - rnRgPHqhDLg1wvRkAULlCGVtHa8Fxvi47hiMoKEVuBCqqR3UlJNkCggtM/+RqIHz3GL8O6RHh2N8 - ipweWyNxXTe3cDlbLGE6P4Ujg3+b0qANFViwQmk83mbaChHQ99jRBxTOw241Ocqx4I0Mpl+zk8Xp - cvYnLOfTs9nxx283bXUrrJHjtXPajrKM6zKNBadCVXteJPyYfeqa5pt8zD5HS1v5mH3p98oChqy1 - sOF4PBzCvtObilkLrFWXD9slZyP2mpZNdiT3fLJdWl9HlJE2FERjZEf97X70e7qx6xzSdLXZbIxS - ZHGPGmGurPuOWqrHhTCldnYVE85jXHpPfZM6rHRo6WfwLZMg2Gz1RKXtylq9dBhld/AV2HJ2Nmfv - wPV7NOYyEk1+wOCbqh3WLlkSnxFwrWUpuB+vzHsPIGngkDqQ5DCYHMxEsb9hfkH9/IpgJMv8aGWh - p7djV/2PLM1z3u+19zDsYWraTo9ivpU3+pY1nQBhg0LR/jzwps6rUHVR3oV5T8MkDbrVDg54am7t - Rpn81dvLccgZK15KGDSulJNb5QpDaSj4wXdVN4bnVMIeRlXRLalgoEkvbtAXHs5OsKoxAn0aZ5Ts - ongpvN6hwRlU3Do0Ox23GkrkNcH4AOsa/wd4K2GApN1JDCQFxD5vYbDOw//iH1BLAwQUAAAACAAT - eXtP58hJBQgDAAAyBwAAKAAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwVnNvUmVtb3RlUmVwby5j - bWS1VV1r2zAUfQ/kP1wCIivMzrquMALZ0naB7aFtSNJusJSiyTeJW9kSkpxQuu6370q287G0D3to - CIl1pXt07rkf7qNYKFCzWbNh0UkluGw2DGYQvdqnxKfbCn1t1Qgz5XCEWsHPZb28Cc9XFs0Fz6rV - EI1VOZcnQqC1E3WPOW1oo+78mUelXeq3n25KfGGQOwSeJ6CVLqRfXI8vYZ46MP62mTLgFggnp2MQ - KkFIc+t4LrD0L389I0+oC4WRJFPw8DA2Jbw3GM9jWDinbbfT4Su0KsNfysXL1BZcWlckqYqFyuCg - glO2DooQ6Qm4EKrIHeRkqvF1FanfpFDB+VjXfJ7Rofuym78locfa6LmPBuMJcJ2WkLWCAWOHBm2g - cN65EvNNgjNeyGD6Pjgdf5sMbsPPxcn54OD164ZqhnLn83FlZI8d7lhIzR57v20arpIeOyotdZQ9 - 9qHZSGfQZrWFtXu9dht2D+1Fx0qYpXV2pJTrsTUPVl+plWdVVwPb0GJdtibE+hvP7p+PrHNLBdnZ - kNlccxY0H5ZJ+G/YKlNCSUnu1BmdW8q47VRJtZ9pFS2pYmirdxS/azbK9FG5gPC1vsl65dJs6MIu - Eojj6Wq1MiRCs+EeNMJQWfcFtVQPY2FS7ezUV2npFN9RScYOMx0a8Df4aowQbGf6SBpv9J0+bYnQ - mcMnYJPB+ZD9i9Vs0ISSJcXoK7TOVO4wd9GEmHSpqLVMBQ/x+tMtgCiBVv95rBZEP2B4Sc0AbE9x - yoTJXiQRJphE1GGMHB5TXELliV1PlaAd0Qg6KgofHb6lndQCfTmsUpnAvKCWrCIq0Q6PSWalE5+O - 8j/MstDBdT+W0u8nozyb5jTgqKYqWD/uvGlrSURn6TyMnzj0e2u7qFovnNTc2pUyyfq0r7qXDmPG - UwmtwqWyT/NwZugacr73s3DbhycUwg5GltFflEFLU0Nxgz7w8KoAqwoj0F/jjJLbKF4KYFUDMsi4 - dWg2OlYaSuQ5wXgHGsz+hbcvYYCktEcGohnEQcYaBvMkvB7/AlBLAwQUAAAACAATeXtPAAXq5r8A - AAAcAQAAKgAAAFBvc3REZXBsb3lTY3JpcHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZW2OPQvC - MBCGd8H/EDJb8CNto1uVIg66WHCUNLlCoDYhiYKW/neTtiKCyx28H89dO50ghBt2A7xBuL3k2+v5 - UOTXU3bMOzzrXQGWG6mdVM2fEMpedwNoqxw6g3lIDminBIxdzjQrZS2dBOvLbRC9/ABjPY6rxhlV - fw1vWXU3HHaDUzx1/9heOjwkutmI0EZxsLaAm66Zgx+GG8VQP4gASMp0SdZzGkG1IBGJeRVRUtEo - TWgZrygRjMSfC2H50b0BUEsDBBQAAAAAABN5e08AAAAAAAAAAAAAAAAbAAAAUHJvcGVydGllcy9Q - dWJsaXNoUHJvZmlsZXMvUEsDBBQAAAAIABN5e0/0A7LF7wAAAMYBAAAeAAAAUHJvcGVydGllcy9s - YXVuY2hTZXR0aW5ncy5qc29unZBBTwIxEIXvJPyHTc8kmHhQ9wbagwfLBpCrqWWwNW2naWdBQ/a/ - 2yKS3Xjj1OTN9+bN63E8qipmTFoBkfEfidXVsWhZPRi/xUOataTBk1GSDPo830mbYHKGpEf/7bD9 - j1FsL1QO4F8hQurtL+YQ7NnwGm0eMU0U6unUopJWY6L69uHunk0ujpRsg5EyevOrdeXpTgALEXfG - Qr8DVxrnSINUhc5JvxXSQYlsIn6Col6Ila1Xeh5zeYjDJlcdDX5vInqXv2cjo5HvgxtPyGzVCL5+ - XCz5Gxeb5+VCvHCxLsufYA8WQzGzP0PX7z4edT9QSwMEFAAAAAgAE3l7T329J29rAgAALAUAADwA - AABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy9jbGk0NHdjeXNzeWlhemMtV2ViLURlcGxveS5w - dWJ4bWx9VE1P4zAQvfdXeKu9Ni7QA1qlQYXCCqndjWgL2hNynEnjxbEjfxTCr187TkFNu1wSed7M - m5nnGcdXbxVHO1CaSTEdnkXjIQJBZc7Edjq0phhdDq+SQfxtNBqsS6ZRwTgg97cacpQ1yJSAaptx - pktcE/pCtu6sJAWtkSxQI61CT5B521+gJkJ/pEWUCEStNrJi79BSZFCSHZPKxxifp+MYuBSQM+PK - Cfbl6toynrd1ROheIKlyUMhIxIEogSqpAJFMWtPxOLMGtGOaGVQaU+sfGG9lVDGqpJaFiaiscPHK - mXjBVwv3vZ9Pz8eXZ+dnERqMRq73NJSO1lJy/biXauKlcuIJPR16XkeraQkV0T3uHHbAZQ0KVzrz - tePz8fhimAwQ8tQOMM1PJW3tLc7m1EqDoEswpcyT5WoONZdNjI+gENHZHNmOOTGS2btV4HxXzECM - +2iIWRBtNu4OWzVvpCjY1ipiXGvJA7SaxfgLn0OSlBNTSFUlM9Ggm3TzGfqBhABf0UbxtVwQK2g5 - Kwyorr6kE5FyNpm80kbrhpF3GhHfzCtk7v5ARwJMjL9i2RfmAe93AK6Vbds6CYbI2zfKbQ6zun6e - E0OSO8K9FH1zcN7fzArUjlHYPCySfvmaVsct/JhMLmJ8IjrQBvM90y5dSkzZJ43xkUcIfIBKGvCd - pWWjGSXcgwjv1X9h9e2bUeTOLY/+LXxiNxBBlf+Ah40eTt/TcvV489nHqdG8FSTjsPe4dg+Em/OQ - 8CQUotzkqF+kguT7UecfUPB8XpEdpE/zjvPj2KFz0O7paEd23dTQ24wj2K8k7u1ka/D7n/wDUEsD - BBQAAAAIABN5e0/UlzcKDxQAAMtNAAATAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bdU8a2/jOJLfD7j/ - oPEicAYXyZKopzsJLo/unQHSmMX2TAP7qVeR5Vho2TIkxen0Yf/71YOU9XScnp6bPQWxJbJIVhXr - RRat8x9uf7n59R9/e6utqnV2+Z//cY7fWhZtHi4myWYCJViWRAu40+A6XydVpMWrqCiT6mLyWC31 - YNKq20Tr5GKyS5OnbV5UEy3ON1WyAdindFGtLhbJLo0TnR7OtHSTVmmU6WUcZcmFVfdUpVWWXN7k - RaJd55X2IVpvs+R8xsUSpqye6we87vPFs/Y/+2e81lHxkG7mmrn98qZds40Wi3TzMFS1BIz1ZbRO - s+e59iF5yBPtt58bMP9CpqgH5NfZYSRWSfqwquaaZZono90Ai5Oi2/I+ij8/FPnjZqGn6+ghmWuP - RXY6WURVNKeCWbl7+K8vgMGJuIFbbZcUZZpvLqaWYU21dHExvYuek+ITPADUpryYrqpqO5/Nnp6e - jCdh5MXDzDZNE/uRIPMvWbr5PARohWE4o1oAvZgC46bas/zG+b7OsVQzNccTgRFqnmsZ3lSjebqY - JpvoPkv0PUnzTfKkdcHfEBbzchvF0GZbJGVS7JLpiXiLFGJPWvW8haoq+VLN4rLEKs0oK/PEv16m - WTY/sYXrXplvzTcn/i3WWKpmk28SVWg3wE3TDa4CVSMaNcIOrm/rGqdRc+3d3ryzVI0LNTmgnFbP - c9Ow3xAUThVAfvj4159vP1mffnwzzAHs48S8AvJmRB+TWiRxhcyleYyzqISpAyKnGmvR1PEceGDJ - uph6jmeI6YybbqNqtW8CzUEK3osw8I3gTNjC8O4cYZmGOIO+V7rnGl6mO55pWGf0GeuWb7hn+AHF - UEp3HrQ7M++EDSAhtvzJ3NGoK+FBkdDuRBCEZ44VGH5MLagX7IDvuIPMtgHgjD5XnodDY482f96I - 0EfEhBcirvLBgdHOmvh/HabUlpT6gQNDOZ5l2HeO7TgwHlEaBsIIswalN8IHwXPOHB9xEr7nY418 - 2HcyMpzg4XAiuH9hA9YZfNlALn02WVmz48wkXmRE8Rl9/oSd3Kme6puRgR1Jp+I3jNnkqmtDU1nE - n8BW4cJYjmkhP0PTQ1T4oe6kHgz0O4mKvxbRIgWzTTZEifBUe5DFv4HdBmQeQTs/oKr+svmtTEB1 - rYup8C1h+K4Pmv8Mjw6w2LJ8FyptqAwty3DMAGh4hkfLMWxXuPt+fy2iTbnMi/XFdB1VRfrl1CIT - oeOXB5IgQi/8sTYH+VbLl0v0RFOzNjRYrMd5lheoqO/oekOFexV1FbWtPqyDfagmszaHhqbIVUrn - 2ih9tqNkQa/VSm+oVaa7tjiD/5VlmSEoaLNhPTFoo/HOvJr8+GbUTxTJNonA2WxyeTsOWqZfk55X - 6sBs8xI8dA4utEBTMw7IzNL+Im1vG46M1uBQ5GsZEcfpeeLac9p9Ly0HfFqlVTLm2wU0QwdDX70e - Fmm5zSLw8ekGp1S/z/L485iDNthD6ynEM9/spt9AvBRIX31im9Jbn4jbExu1Fj6hNF1wgfTcXEiu - mcvRMZ+Iq0Ef3gK+Il893mjvz2UzBgVG8fNz6xlclBki0uzpZR0U4L/lghnDb9vlttKVIUzP7QEe - 4Phky25rcV3TAHAUB3A3KhbAatICFRAAMIYEDKXCgj0UKNQ+OsChIQrAUdjrUq21r621fQ/SdMz0 - iL65wS5Dkkzaz2U4IJWR4Mv5dULD51IWa1lMHJvVnT/UaEur0u1ZCoQUkvcuzMmNZdpGeAciFMCD - 58W6ANui/kMUrBtTt8AjZcLXBZj/DOChUIC78vHbMxwwUNQcPuWdg/jemNgl+Cvh4xyBz7zbD/l1 - LxhmuKdh9vDN5IQ2spN7B+R0QeMCljHEHbpJWIMH0W35LQwRA2kAAvOg21AiS++CkHqyTaRV9iNJ - rVGOLSKRP23Dw3oagu8hvCnlmBAN6HXhXRPLr63p+z2kmzRRXoBz4dAAph7QFAY6OFGgk0uphGC5 - 3AGKeJ4CqvXlHdTdhAzo8VyGDIpD4NN+wK81SwAhhYnroduyiW0m4MHS4cs7YFRsEqvsmoXMvH29 - Rc8ml8HMePIO6j6EXImD7HHBp+/GUAjenO/OUI/FSjIUoudgz9DGgG2Gyoo/lqEQS4g9QxtDjjL0 - +0QUyyzH6ixZdmtq9+30na8KCQaqXvLLeIHrrNI4yvQoSx8gOlmni0WWvOS80Tt0nbcMFnTEH/Dp - BigqrpFx5IGdgonaKpiMxzi+Pbzb8CQ5BWvRTnWWVBVgjo6QtysM4fb6IDYpbofe/yFH080GPnGP - J4KOexsY63Sjy5l2gv5Mr6MvqtqCdeRAPW7fyKmJHqt8uL5gwgcAXkfUAcLm82hZ9enDS25wgQB0 - J55qM1grzLX7vFoN1NYTU2GM1AFoM3wNeOhyLD0qkuiwIIs2t9t9qW5oP63bj5J4k67fK/FOf1Zf - kvimMHv2ATKIJUM6rUgITPwbR87uLzleTeBYH4pA+zCB4igC9a01Nt2wUkXlGtvg1EHyqnwNeAQH - Bko2i22ebnqMHMESL6m3rm+NLc0OsP/PY3CPdQf5ssqfAEq/f0wzWC9D3J/2V3/t3kZ3mo/Qy/Eh - L7WVGLI9DTZZfUXrscrrsYrYdYyL6fHV7vMVr3rHHf5w5rShEUmkK7XXA8vl7TYp4qg8bAHLKtmO - u5ralC6zpIsYWX89rZJ1OdfKqkiquGuNGxsdSRZV6e6wl+jgssiGZuc+L9CVyMgCeFHmWbrQ/nJl - 4t8hdzDkoAnLOmsxpBZ41fw/xMoDZFxqi2o+v0+WmHsZoIno6m37DO3CtLlwHAMaXMPttcdycNNI - XbXnnU5HIJj1jj/IKrzqELVvxdS1l4zoHvB/HCVURTLDXR0/AUaVlBUYgAwU8/VTcZ89DiH4mvkf - G+xF8cSrYZLSzSop0u6qoAWoLNN9ni3G5rBldfr29ZXULcaoOxrxYxDCqxW9jkl7100PuKtBAjvE - zWEdXOnxCpzG64wRWeEtxJObLrmdkLGK7tLN5wNbn1L+xjvsG4Jx2H0Q6l1dW93Kx6LEWgpZkuJQ - cND3eHsT2g1o0IaRF0xwsVuso+ygC5AcmS/z+LEc4nj+WKGotCyfad7HS/sl21z3vcp3w4sO8qCL - JM6LiG0TzEBS4HAvu9ChLexD3rOOpPpBZnsBZvXDBmkTxYEgq4MYqGi6GyK5RmNY49RIw7Wv2M/o - hOClnuUP+VFLXPfwEjccrP6dK9xh6yLhu8Wkb9KZscHRHNNcl+MLEKa+S7Pc8nkhJXRULoT38Y9I - h7z/oJfPa/AT/y8SIg4nNmzzG9Ih+7Z/fjLEF77jOx0QuwVy64l3ttcBES0Qy/NvMYfZAnFaIPZb - 37u+6YC47cTM7XVgiVckZryjEjMiDAYTM1bY2jc9YsPZ8i3agsVTBTtHGPZK9w33o+Mb/ko3MStv - CdqVFcIIV7pLz77OT1C/4zvPCD9iFyvLNILMsrmJvTINO4MGli7sn3go4tNX3GG2fJ82gx3L8Dkh - gvvEmCiRu8lCFzKFwrvOoYTB/uAuZsx5/9nhtlQrW8fcTrUWnCiq7wXtXHMaxuE9bF3WMJKxzKOY - tG0dSmDVvV0CngLb6hKfG8unFJTcJFfU2e1HIJapD1zaLndhznfCQraLnS6sn6iCQGzTp7a+p/gW - W5wYI3RxcELX8JBFyA7d5AQSZu0lqzzd3nlQW/PX12UmCIhx6BsT/ZxqQJbzCJjyl9S7mInwOBMB - AJissgAPKKwZhekq/IciEAWPvi1MVvBAKqHnYFNAPKb0FuHjAyzxB/NgDlHh1BRSLo/AHIWVqpdT - 5tYTLOQE2ztfYYVI4uTZhDVmFjHVRhX73JtJyQzkoE90EJ2u5FWoc5Yt2GcakVBf0sJ3MLExpzes - GhuXGMb4+YpPN7bJ+TjfZfRNZjHNLz7up5vnX9QiArzkKSAcrPqOygyrVJIqZZPncudjFskkIlE0 - QiIaszeIZC3jPlVbxAOiCb8VwZjzEVIJHClcQgmTRd2FdWqHiNlZQHwtziv8BjJXTIOv1+lLnWRX - dxRvBKu9y4TagtXI5SRbkxWSNwENhweyUM4ICkUzlPIiUNJsljSEI+l0WdJQdt2YBY9SZjQkS5bF - NmAv3LbMtIa1GHoy1WwxuE+zj5ygDCXpBQ6jxAlVghu4qDjyNpaCj0rlKaVCFYCxHFZsEBOSC0mq - zwM0Kf9ae/T3tiOTaJ4hpDhKfSdxZBpI42ByLWkBOF/HoioTxXwvqTYJV18aQjwChHWErOwRWWnL - O1IElBcSKpc0z0Z3sldIakiKiDYK89OUXaSxdJm8h5nyZJ8+8IJz4J60bIpK0XyoFSZgwtwANJYU - hBWBFVc+2zU+phyP6WcB4rmX/iC2ldnHTmuF9giWc5tSDU6Ub1HugY2AkNlR9FwWl+jsTv24dnOB - LucZOMN2EhlSs4y0T6qlTZbVZIvtkd7apNZgRlEnd8Dt2i/KUwFBPdOOHMaOlbl3a8k2pVyyzKAZ - VuaGB1DOxKxRQ4tg1p5EccJGa4venIyJ9Nk8zdzAlyce0L/g/Ds0/zo7FCoAdlB+mQ34XmZs+nbV - WYgYmcLEWVL/BbkfVFlbV1NgSfEKqHO/7UHZetZKYJJqiNqSKv/CKWv2O+HOIxcCpGCH5PmlZ2lO - mvQvnvQvAfsX6bx0u+FuJcdvUHjpdIHPMqBkmZ1CU7RZ1kP/GANYG7FvNoN/lAFUzBo3g2HIqiLV - QxKszGCDfmKIMN3vaABbxv87mcFvMYDSOwqTMZNmsKZVNB+UGRSuUOdUwBFbKLO2ix7Z2el446Kh - 8Fb05ZC2quAJFYndua0HsU2EcuAWyMAwwFge7pQNUGc7rJpRKha3avu6t6xmwzqCsn107JismkmR - mgpEpIUzSXtsWSBI2UwOPlxlE9mK4fkYKbmEVynNEVsaVgd7B+uWFTFD9zOf+rN3oCwr5IvH7LFQ - IZgcNoocXxNzsJeapKAmQ8XZMvqMzTp+5YCLiXcpVldM83TFCEsuPtia+zsvljaVOWFL+pSpIhPC - Ts2WU9M0IiJW4TuaSTK4HgWsHOGTz8Bg2KGJFUgy4/TRZS0aO9TXXqUKq7W3YDsDa1a7v2YlDeku - WWXpbHw0L0A+vzSe+G7jdajzLDV8azznj6NvZET320Y85vTUS9uHg/ubuIlYH3kYPyzl9quO3Nhs - Y1XkTyNZ7LkWysPSmGIc2K/8Ew/0dM+wZI/r3j72+GE0hbXbzSaqDEwxmNDpMW74IND4IaCDR3yG - Twe1xuyd8+lt/dPvmsYwXuRPG+DJQq9WiZ6sH7OoynvYH0hmNRIxopeIaR4/eOFU2oGDESr15R/i - vDwWkS6LaN3LhjbEzjdRdn9I1/jrw6iXV2rIr+cehFSIH+iwIxvJOt8lOiEoyR7/JeA4pf+9ThZp - pOWb7Fkr4yJJNlq0WWinLdVCnH7s9j62W9/kNR1SGciRjJ6DGzpehVfziJf5cm/D2kodscZ2hPhY - vPEa/3VJH48X0znHDvqCISSQ/Yx5A5abQQ7bwwbMeAqoT+WAfW/Qxco4buP//cgbpPQoRfGHFGX4 - x7Z4HfuDpg4s6wHijqfRhpTrmymwxb8JBd9uHvoHlcZP3Q6kppne8R+C4VVz6/sy3xy0s9+d+TJR - OmACfwfyHp4k6fuI4+dt4CTK6y2Ntbc01otmxAkPemSCbtgl6yB0H9exQ64duu1+JDPgR8aOHnc7 - O0aXjj+n1Ay4jlGrcbfbiXqPoflYHR2Z6Pp43FHm5VC4h1dTbIJXic3hALFJyQsRIl54PgcimKe5 - tkoXi2RzpP4eEywiheMBI36dz5rvwDgHQ5Buq8YbMRZ5/LiGVYkBc/12Bzd3KYgaiNjp9PaX9ze8 - ZLmDxUGymJ5py8cNHzY+7VkNXEC8Q1RPWyvd5sMuKvZg2sWh3hBUTuzFHkewYlGVvM0SfDqdMsC0 - +7skLjbKpLqqqiK9f6yS00m6mJxpE67q/ZIJR8uXyztQrZ9+fX8nqYaReys1hKQ+JBJN7B6SSpZe - P/+8OJ205LM3ZrrUTp/SDay9jE20Sx9wzWXkG8Shx40mVUUMY9KbN8r5bAaDlwYsjqjyKS8+gzqv - Ycph2RfPovtytgW3Uc6WrrGq1kMnYAeZBVKSZ7A0e0CebfIe7qMNqYzP8GFT8/iWpHnYBkP045ux - 8B9sV0/Zbbr79unCS/ViRNstOIobPEl5yvBd8H9pSVYOGqWm9Bi04YQah+p3OhnQ+B4iTXPxptZx - pdbnM/kiHrjF98wovZfxCL99YMJPk4YZOMcNp1Zt99dNTeixFgA8ka9HmAz+nmxyeT6Ddi93hW7z - pa6uozKN8d0/3T6bz8yQpFCPjaEgLhljAfvEiXrs/a7qEDNaP5yaXP4jfyxw80ZLSw1aLp5/eIkF - +7ih+due7pB4Qd9aHG00PAyuPdcDQcGKX4r0TpkF7a3c1jm/L7TZQFf3z1qCB2VB6bWI2v729zsw - ito/5Ut+gOdRtsrLai5CP5hF23S2TsoSzcs/O7QcTd/gxtMQoedRzV0+9TrRVkWyBHGRdjD6HMG6 - fQbk67Up1N+5ej1C3Xu/c7gqWGDiu6o+3WcRdH55K5sRI2vWzaIuVcdSOkTTx7RMq2+nDIy7vsrB - UvWQH6RQu/r6WCTDVfT6rKTAl24NsB6o1mDJVyQPGBkUeznD1QSYLQ2oqPIxuQLrm+aPJb4ODOxJ - Vhrar8BSaD4ttTrYRlGrnrf4K0xYrGR5/rns95SlnxOYj7Scv24S1CiTS8XS8/QSifgEWJSfUKTx - fWTns/SyJdWHrEp3DBlDt10Ivhen41Uu26apcd+Umu7+05iVkoDDvZ7PpP0np8BvbvtfUEsDBBQA - AAAIABN5e08ISi14sxMAAMxLAAAUAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bWzVPGlv21iS3xfY/8DW - wJAba1LkezwV21jHTiYNOOjBpDvAfApoiraIUKRA0nKcxfz3reORonhIitu9MyvDEvnOuqteFaXz - n25+vf7tH397py2rVXr5n/9xjp9aGmYPF5M4m0ALtsXhAq40eJ2v4irUomVYlHF1MXms7nV/stOX - hav4YrJJ4qd1XlQTLcqzKs5g7FOyqJYXi3iTRLFON2dakiVVEqZ6GYVpfGE1K1VJlcaX76Jl/jav - zmd8q/rK6rm5wdddvnjW/md7j69VWDwk2Vwz19/e7Pasw8UiyR6Guu4BUv0+XCXp81z7FD/ksfb7 - L60x/0Ri1DdIp7P9QCzj5GFZzTXLNE9GlwHSxkV35l0YfX0o8sdsoSer8CGea49FejpZhFU4p4ZZ - uXn4r28AwYm8hkttExdlkmcXU8uwplqyuJjehs9x8QVuYFRWXkyXVbWez2ZPT0/GkzTy4mEmTNPE - ddSQ+bc0yb4ODbSCIJhRLwy9mALhptqz+kQ+v82xVTM125W+EWiuYxnuVCM+XUzjLLxLY32L0jyL - n7Tu8DcExbxchxHMWRdxGRebeHoi3yGGuJJWPa+hq4q/VbOoLLFLM8rKPPHe3idpOj8R0nGuzHfm - mxPvBnusuifLs7huFK3hpun4V37dI1s9Uvhvb5oeu9Xz1r25fm/VPQ705AByUj3PTUO8oVHIKhj5 - 6fNff7n5Yn35+c0wBXCNE/MK0JsRfoxqEUcVEpf4GKVhCawDJKcaa8/Udm24Ycm6mLq2a8jpjKeu - w2q5nQLTQQo+ysD3DP9MCmm4t7a0TEOewdpL3XUMN9Vt1zSsM3qPdMsznDN8g2ZopSsX5p2Zt1LA - kABnfjA3tOtSutAktVvp+8GZbfmGF9EMWgUX4CteIBUCBpzR+9J1cWtcUfD7tQw8BEy6AcKqbmzY - 7awN//dhTIXC1PNt2Mp2LUPc2sK2YT/CNPClEaQtTK+lB4Jnn9kewiQ918MedbNdZGQ7ydshI3h9 - KQDqFD4EoEvvbVI25DgziRYpYXxG7x9wkdt6peZiZGNb4VnTG/ZsU9URMFU18TuQVTqwl21aSM/A - dBEUvmkWaTYD/Y7D4q9FuEjAXJMNqUV4qj2o5t/BXgMwj6Cdn1BVf81+L2NQXetiKj1LGp7jgeY/ - w60NJLYsz4FOAZ2BZRm26QMOz3Br2YZwpLNd97cizMr7vFhdTFdhVSTfTi0yETp+uCAJMnCDnxtz - kK+1/P4ePdDUbAwNNutRnuYFKup7er2hxq2KOjW2O2tYe9eop8x2KTTEIqdWOkeg9Am7lgW9USu9 - pVap7gh5Bv9LyzIDUND2xIYxaKPxyrya/Pxm1E8U8ToOwdlkubocH1om3+OeV+qMWecleOYcXGiB - pmZ8IBNL+4uyvbvjyGgNbkW+lgGx7Z4nbjyn6HtpteHTMqniMd8uYRo6GProrbBIynUago9PMmSp - fpfm0dcxB22wh9YTiGNe7KbfQJzkK199IkzlrU/kzYlArYV3aE0W3KA8NzeSa+Z2dMwn8mrQh+8M - viJfPT5p68/VNB4KhOL75517cFFmgECzp1d90ID/lgNmDD+Fw3OVK8MxPbcHcIDjUzO7s+XbBgcY - R3EAL1PHAthNWlAHBDAYQwIeVYcF21GgUNvoALeGKAB3Ya9Lvda2t9H27ZC2Y6Zb9M0tchkKZdJ+ - bsMNqY0EX/HXDgyPW1msVTNRbNYs/tCAraxKd2UlEEpIPjrAk2vLFEZwCyLkw43rRroE21L/ByhY - 16ZugUdKpadLMP8pjIdGCe7Kw0/XsMFA0XR4V1c2wntt4pLgr6SHPAKfebvd8vtWMMxgi8Ps4cXo - BALJyasDcLqkfQHKCOIO3SSowYPoQn1KQ0aAGgwBPugCWlTrrR/QSsJEXNU6CtUG5MgiFPldGC72 - 0xZ8DeFNqfaEaEBvGm/bUH7fYd8fQd0kRrk+8sKmDUzdJxb6OjhRwJNbqYXGcrsNGDGffOr11BX0 - XQc80GVeBjwUt8C77YbfG5IAQDUkjotuSxDZTICDpcNTV0CoyCRSiYaETLxtv0X3JrcBZ1x1BX2f - Au7ETbaw4N2rERSCN/vVCeqyWCmCQvTsbwna2nCXoKrjzyUoxBJyS9DWlqMEfZ2I4j7NsTuN77s9 - jfu2+863DgkGug75ZXyB66ySKEz1ME0eIDpZJYtFGh9y3ugdus5bBQs6wg/wdAOUOq5RceSeTMGk - ThVMxmMcTwxnG54UpeAs2ulO46oCyNERcrrCkE5vDSJTTe3A/T+kaJJl8I65nRAW7iUwVkmmK07b - fp/Tq/Bb3W3BOXKgH9M3ijXhY5UP9xeM+MCAV0FqPg/vqz5uKqEFjO8yPErhfDDX7vJqOcaICmOi - UThWsK+u1tfDIg73C63cpezuWvUylDvr48DSbdLrj0q33efgIeluC64r9qBBJBnS3xoF38S/ceBE - /3jxwwiOrVEjKPYjKI9CUF9bI9yGQynq0VguUweBq/IVgOHv2SfOFus8ybp0HIFRayy141ndnn2k - P4q2e0m7n7L7CNsl2V56LPMnGKXfPSYpHIkhtE/6B7zd1UaTyceo49B2l0vZ3bFFGeuAVrmv4DNE - 3y81qXP4Q+Zo3V1IVqs6YQNn3vU6LqKwHDdrZRWvx31FYxvv07gLDJlvHU76q3KulVURV1HXtLYy - FXEaVsnmaDgWae9AnxfoB1RIALiXeZostL9cmfg3ZtOHvOq2zDBkPBoaHw/q5aKaz+9iIHnPmPez - MUPJEcbtMFqKBpjleiwHczeNA5xOewKIhLO98YROz5a0+BfeAVyPPcDrQMHao119chlVXFagbiko - xfGEu0sff0B8gCejwjwkFC3lTrJlXCS9kLqt33d5utiru/vMzQCsiz22ZhicfdvhaydM68pR1znt - dYK74M7hcFfp0RJM5fFKShZpDUFTVo1uE1XhbZJ9PSwHw4ttdz+8Mb62UZZ79dbqdj4WJfaSU46L - H7P0W/PSVRbUfPIAMZ7cilWYHqLG/D6PHssuTfLHCtm/Yy9M8y66FwfXW+abvpUnr7GIo7wIWduB - 2nGBW+wXiqG86z6P0YQG/XBp99Rg9V2jsjRyX9jQAHW5SDZjFV85eu4d6DnyyN2JGks9zR/yo05g - zv4TWDDY/QcPYMM2QY3vRRSoQcoJsLnQbNNclYew7xk0zkgcqFgclarnNPMR2fqPn/TyeQW2+v9F - vt7mvLswX5Ct38791+fqPenZnt0ZInaG3LjyvXA7Q+TOEMv1brDEtjPE3hki3nnu2+vOEGe3bnDz - 1rfkD9QN3KPqBjLwB+sGVrCT1jsiH2p5FmUIsei9saUhlrpnOJ9tz/CWuolFY0tS0lBKI1jqDt17 - Ot9B/4avXCP4jEssLdPwU0vwFLE0DZHCBEuX4gNvRXT6jglQy/MoV2lbhsf5ekxjYh5fJTulLlWG - n5OigRqD68FVxJBzetTmudSrZkc8r54tuY7RXEtKrHKVwOYUq656GMhIpflNyqoGanC9vCgBTolz - dQXPteVRhUTlcGvsxO4tIMvY+w5lcx3g+UZaSHa50aX1gTpoiDA9muu5Nd0ii+s2BC5uTuAaLpII - yaGbXN/AorIilauLjQu9DX09XRUqABmbPrEOzZlwJDnvgBVphb2DiXKXE+UwAGspFsABjQ2hsJqC - /9AEouDSp4W5dN6orjfZOBUAj6j6QvB4MJbog2Uam7CwGwyp1ETD7Bqqul+xzGkYLBWDxcaroUIg - kXmCoMbCF1aCqGNbGjIp144U9AgPwtNRtAp0LgL520IYIuopXPgKGBtx9t1qoHGIYAyfV9PpWphc - LvIcBt9kEhN/8XbLbua/bEQEaMksIBis5oraDKusJVXJJvNy42GRwyQkUTQCQhqLCwhkI+MedVtE - A8IJP2uEsSQhlRLYSrhkLUwWLRc0lQdCZmMB8o04L/ET0FwyDp7eVNd0kl3drmkjWe0dRlRIViOH - a0BtUija+LQdPi+EckajUDQDJS8SJU2wpOE4kk6HJQ1l14lY8KiiQ1uyZFlsA7bCLVQhMGjE0FWV - UIuHe8R9pAQV0EgvcJtanFAleIKDiqMuIyX4qFRurVSoArCXzYoNYkJyoVD1eIM25t8bj/5R2KrG - 4xpSiaPSdxJHxoE0DphrKQvA5SQWVVXH5GuFtUmwesoQ4hMq2EfAqhWRlEJdkSKgvJBQOaR5At3J - ViFpIiki2igsn1Lxi/bSVW0ZOOWqNT2gBZdoXWXZaixl+6ZRGJ8Rc3zQWFIQVgRWXHUvGnhMtR/j - zwLEvFf+IBK12cdFG4V2aSyX3pQanNS+pXYPbASkKt6h57K4RWd36kWNm/N1xWegDNtJJEhDMtI+ - pZaCLKvJFtslvRWk1mBGUSc3QO3GL6qitd9w2lbbiKg2904j2aaSS5YZNMO1ueENamdiNqChRTAb - T1JTQqC1RW9OxkT5bGYzT/BUQR79C/LfJv7r7FCoAchB5U824FuZEfTp1KX6CInCyFlK/yW5H1RZ - odcssJR4+bS4t+tB2Xo2SmCSasjGktb+hSuq7HeCjUsuBFDBBcnzK8/SZpryL67yLz77F+W8dNFy - t4ri1yi8VPz2WAZqWWan0BZtlvXAO8YANkbsxWbwzzKANbHGzWAQsKoo9VAI12awhT8RRJrOKxrA - HeP/SmbwJQZQeUdpMmTKDDa4yvZNbQalI+vHKMARWyizwkGPbG90vHDQULhL+rBJW+vgCRWJ3bnQ - /UgQohy4+Sow9DGWh6vaBtSPHlgNoepY3Grs69aymi3rCMr22RYRWTWTIrU6EFEWziTtEapBkrKZ - HHw4tU1kK4aPbyjJJbhKZY7Y0rA6iA2cW5ZEDN1LPVpPbEBZlkgXl8ljoUIwOmwUOb4m4uAqDUp+ - g0YdZ6voMzKb+JUDLkbeoVi9Jpqr14Sw1OGDrbm3cSNlU5kSQuFXmyoyIezUhGJN24jIqA7f0UyS - wXUpYOUIn3wGBsM2MVYiygzTZ4e1aOyZs91TqrR2cgvCHjiziv6ZlTSke2RVrbPx3Vwf6XxoP/lq - +3Wwc616+5397D8Pv5EdnZfteMzDPQfSh0PZTEwhNjX68Sd5nFdKaRb500j9da4F6kleLKcNZCv/ - hU+bdB+6SB9XvXz1+JNSNdROt8ZWV0+KI2o9QLgffVJl9HkUmjb4GMvOnr0HU3rpffrSzRjEi/wp - A5os9GoZ6/HqMQ2rvAf9nsJTq7Aie4WVdgn9UPl7vKRfl628I4r6yX0RrnrVxZbYeSbK7k/JCr8S - F/bqRC35dZ29I2vA9yzYkY14lW9inQBUaI9/TW0c0/9exYsk1PIsfdbKqIjjTAuzhXa6o1oI08/d - 1cdy9W1a0+MVA5WRHRCY4OPP8+Gr/UySeXi1YW2lhVhjO0J8LNz4Gv/qQx+Og8WcYzc9YAhpyJZj - 7oDl5iH77WFrzHgBqI/lgH1v4cXKOG7j//3QG8T0KEXxhhRl+Jug+Dr22zadsawHCDs+RTWkXC/G - QMh/Ewxebh76D+WMLjdUgmZ8x7+lhK+GWq9LfHPQzr468VWZdMAE/gHgXXwKpO8jjudb/4m/F1ga - a2tprINmxA72emQa3bJL1t7RfVhHHsvs4i36kcyAHxl7Vra72DG6dMwTRJ11rWOUatzpdmLeYzA+ - VkNH2Nw8WnaUcdkX7OGrLTT+DwnN/vCwjcmB+BBf+PQNxC9Pc22ZLBZxdqT2HhMqIobj4SJ+nM/a - P89wDmYgWVetH2tY5NHjCs4kBvD63QYubhMQNBCw0+nNrx+v+cByC0eDeDE90+4fM34u97RnM/D4 - 8B5BPd055bZvNmGxHaZd7FsNhyrGXmxhBBsWVvG7NMa70ykPmHa/MsPNRhlXV1VVJHePVXw6SRaT - M23CXb0v2eBu+f39LSjWh98+3iqsYefeOQ1H0hoKiDZ0D3GlWt8+/7I4nezIZ2/P5F47fUoyOHkZ - WbhJHvDEZeQZwtCjRhurIoI96UchyvlsBpuXBhyNqPMpL76COq+A5XDoi2bhXTlbg9MoZ/eOsaxW - 3adDR4kFUpKncDB7QJpleQ/20YnUxk/k4VTz+JmkeTgHA/Tjp7Hw753XsOwm2bycXfiqVzHC9Rrc - xDU+D3nK47vD/6nFaTlolNrSY1CyCTUO1e90MqDxPUDa5uJNo+O1Wp/P1G/DwCX+BEqt9yoa4S/G - T/hu0jID55hu2untfvmmPXpsBgyeqG/uTwa/6jS5PJ/BvMNLodM8tFTzazS7K7bvmRxxUd+2NoKY - ZIwA7BEn9W3vS0D7SLHzLZ/J5T/yxwITN1pSajBz8fzTIQJsY4b2F1FoJS0KMw0fo9aem2WhYRlr - QAbtfW0CtHcqgXN+V2izy74I3j1jJirD7zxkDxoE8+onZoCsYbrMy2ouA8+fhetktorLEi2IcTzY - g7kkYHzYkIgfS51oyyK+B44rUxZ+DeHgPQOs9Maa6e8dvVmvWauPEb4qOCLiTyB9uUtDWP3yRs0j - AjUkmYUHRbBBZXL5OSmTSnsx6GCA9WUO1qQH3NX3xyIexgN5+Sku8FeZEFrkTxE/oFcutnzHOB5M - hgbQVfkYn8HyJfljib8OBdxOS0P7DUgB06el1oS5v//9Fn/JB7+cB8eENM+/lv2V0uRrDHRMyvkh - 4tXrTi5r4pwnlwj2F9i3/ILShT9IdT5LLncEbJ8Wd/dQEeuuwcYfSOnY8MtdU9C6bnO7m+sZswpq - 4PCq5zNlbckE8093/S9QSwECFAAUAAAAAAATeXtPAAAAAAAAAAAAAAAABQAAAAAAAAAAABAA/0EA - AAAAQm90cy9QSwECFAAUAAAAAAATeXtPAAAAAAAAAAAAAAAADAAAAAAAAAAAABAA/0EjAAAAQ29u - dHJvbGxlcnMvUEsBAhQAFAAAAAAAE3l7TwAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BTQAAAFBv - c3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAABN5e08AAAAAAAAAAAAAAAALAAAAAAAAAAAAEAD/ - QX0AAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAAABN5e08AAAAAAAAAAAAAAAAIAAAAAAAAAAAAEAD/ - QaYAAAB3d3dyb290L1BLAQIUABQAAAAIABN5e0+ZqxjsIAAAAB4AAAALAAAAAAAAAAAAAAC2gcwA - AAAuZGVwbG95bWVudFBLAQIUABQAAAAIABN5e08H3Y7aJgAAACsAAAAKAAAAAAAAAAAAAAC2gRUB - AAAuZ2l0aWdub3JlUEsBAhQAFAAAAAgAE3l7T7yqV/o3AgAATwUAABoAAAAAAAAAAAAAALaBYwEA - AEFkYXB0ZXJXaXRoRXJyb3JIYW5kbGVyLmNzUEsBAhQAFAAAAAgAFHl7T2kAXMBoAAAAegAAABAA - AAAAAAAAAAAAALaB0gMAAGFwcHNldHRpbmdzLmpzb25QSwECFAAUAAAACAATeXtPvQ5/jqgAAAAF - AQAACQAAAAAAAAAAAAAA/4FoBAAAYnVpbGQuY21kUEsBAhQAFAAAAAgAE3l7T/l0cgpqBAAAhgsA - AAoAAAAAAAAAAAAAAP+BNwUAAGRlcGxveS5jbWRQSwECFAAUAAAACAATeXtP4LGfRUQAAAB1AAAA - FQAAAAAAAAAAAAAAtoHJCQAARGlyZWN0b3J5LkJ1aWxkLnByb3BzUEsBAhQAFAAAAAgAE3l7T8Ra - 8yNUAQAAHAMAAA4AAAAAAAAAAAAAALaBQAoAAEVjaG9Cb3QuY3Nwcm9qUEsBAhQAFAAAAAgAE3l7 - T00vPwyXjAAAOLEDABEAAAAAAAAAAAAAALaBwAsAAEVjaG9Cb3QuZGVwcy5qc29uUEsBAhQAFAAA - AAgAE3l7T5tH0O+VAAAA4AAAABoAAAAAAAAAAAAAALaBhpgAAEVjaG9Cb3QucnVudGltZWNvbmZp - Zy5qc29uUEsBAhQAFAAAAAgAE3l7T+kTJ7OmAQAAVAQAAAsAAAAAAAAAAAAAALaBU5kAAEVjaG9C - b3Quc2xuUEsBAhQAFAAAAAgAE3l7T79wT5QOAQAAIwIAAAoAAAAAAAAAAAAAALaBIpsAAFByb2dy - YW0uY3NQSwECFAAUAAAACAATeXtPf6fW6KEAAAC2AAAACwAAAAAAAAAAAAAA/4FYnAAAcHVibGlz - aC5jbWRQSwECFAAUAAAACAATeXtPbj+uF1QEAAD7CgAACQAAAAAAAAAAAAAAtoEinQAAUkVBRE1F - Lm1kUEsBAhQAFAAAAAgAE3l7T8joTw6wAgAAiwcAAAoAAAAAAAAAAAAAALaBnaEAAFN0YXJ0dXAu - Y3NQSwECFAAUAAAACAATeXtPUqxX1DwBAADuAQAACgAAAAAAAAAAAAAAtoF1pAAAd2ViLmNvbmZp - Z1BLAQIUABQAAAAIABN5e0/YPhbw4QEAAP8EAAAPAAAAAAAAAAAAAAC2gdmlAABCb3RzL0VjaG9C - b3QuY3NQSwECFAAUAAAACAATeXtPnvjBBkQCAADvBAAAHAAAAAAAAAAAAAAAtoHnpwAAQ29udHJv - bGxlcnMvQm90Q29udHJvbGxlci5jc1BLAQIUABQAAAAIABN5e09p0JGkSwEAAFYCAAAxAAAAAAAA - AAAAAAC2gWWqAABQb3N0RGVwbG95U2NyaXB0cy9jbGk0NHdjeXNzeWlhemMuUHVibGlzaFNldHRp - bmdzUEsBAhQAFAAAAAgAE3l7T+DPebiRAAAA3AAAAC0AAAAAAAAAAAAAALaB/6sAAFBvc3REZXBs - b3lTY3JpcHRzL2dpdGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAIABN5e09a0xds - 3AAAAA4CAAAoAAAAAAAAAAAAAAC2gdusAABQb3N0RGVwbG95U2NyaXB0cy9JbmNsdWRlU291cmNl - cy50YXJnZXRzUEsBAhQAFAAAAAgAE3l7T6jzyVaZAgAAdQcAACIAAAAAAAAAAAAAALaB/a0AAFBv - c3REZXBsb3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanNQSwECFAAUAAAACAATeXtPNCH6uCIDAABS - CAAAIAAAAAAAAAAAAAAA/4HWsAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWRQSwEC - FAAUAAAACAATeXtP72tPdXMAAAB7AAAAJgAAAAAAAAAAAAAAtoE2tAAAUG9zdERlcGxveVNjcmlw - dHMvcHVibGlzaC5jbWQudGVtcGxhdGVQSwECFAAUAAAACAATeXtPNiuxcHUCAABEBQAALQAAAAAA - AAAAAAAAtoHttAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRl - UEsBAhQAFAAAAAgAE3l7T8oi4NElAQAAMgIAAC4AAAAAAAAAAAAAALaBrbcAAFBvc3REZXBsb3lT - Y3JpcHRzL3B1Ymxpc2hTZXR0aW5ncy54bWwudGVtcGxhdGVQSwECFAAUAAAACAATeXtPE9l4S9IA - AAB3AQAAHQAAAAAAAAAAAAAA/4EeuQAAUG9zdERlcGxveVNjcmlwdHMvcnVuR3VscC5jbWRQSwEC - FAAUAAAACAATeXtPoegHQ4oCAABDBgAAKwAAAAAAAAAAAAAA/4ErugAAUG9zdERlcGxveVNjcmlw - dHMvc2V0dXBHaXRodWJSZW1vdGVSZXBvLmNtZFBLAQIUABQAAAAIABN5e0/nyEkFCAMAADIHAAAo - AAAAAAAAAAAAAAD/gf68AABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21k - UEsBAhQAFAAAAAgAE3l7TwAF6ua/AAAAHAEAACoAAAAAAAAAAAAAALaBTMAAAFBvc3REZXBsb3lT - Y3JpcHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAAABN5e08AAAAAAAAAAAAA - AAAbAAAAAAAAAAAAEAD/QVPBAABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy9QSwECFAAUAAAA - CAATeXtP9AOyxe8AAADGAQAAHgAAAAAAAAAAAAAAtoGMwQAAUHJvcGVydGllcy9sYXVuY2hTZXR0 - aW5ncy5qc29uUEsBAhQAFAAAAAgAE3l7T329J29rAgAALAUAADwAAAAAAAAAAAAAALaBt8IAAFBy - b3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTQ0d2N5c3N5aWF6Yy1XZWItRGVwbG95LnB1Ynht - bFBLAQIUABQAAAAIABN5e0/UlzcKDxQAAMtNAAATAAAAAAAAAAAAAAC2gXzFAAB3d3dyb290L2Rl - ZmF1bHQuaHRtUEsBAhQAFAAAAAgAE3l7TwhKLXizEwAAzEsAABQAAAAAAAAAAAAAALaBvNkAAHd3 - d3Jvb3QvZGVmYXVsdC5odG1sUEsFBgAAAAAoACgA7QoAAKHtAAAAAA== - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - bot download Connection: - keep-alive Content-Length: - - '63652' - User-Agent: - - python-requests/2.22.0 - content-type: - - application/octet-stream - method: POST - uri: https://cli000002.scm.azurewebsites.net/api/zipdeploy?isAsync=true - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - '0' - date: - - Wed, 27 Nov 2019 23:08:46 GMT - expires: - - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-11-27_23-08-46Z - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment - response: - body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' - headers: - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 23:08:53 GMT - expires: - - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + ParameterSetName: + - -g -n User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"39b34c33-77b2-4513-ab4c-1d06c170bf8a","MicrosoftAppPassword":"87a0681b-8a1a-4337-97ca-9f010939d443"}}' headers: cache-control: - no-cache content-length: - - '559' + - '416' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 23:08:55 GMT + - Mon, 06 Jan 2020 14:25:41 GMT expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot download Connection: - keep-alive + ParameterSetName: + - -g -n User-Agent: - - python-requests/2.22.0 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central + US","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}' headers: cache-control: - no-cache content-length: - - '559' + - '187' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 23:08:58 GMT + - Mon, 06 Jan 2020 14:25:41 GMT expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-content-type-options: + - nosniff x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot publish Connection: - keep-alive + ParameterSetName: + - -g -n --code-dir User-Agent: - - python-requests/2.22.0 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c00d7b8-0000-0100-0000-5e1342ea0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"39b34c33-77b2-4513-ab4c-1d06c170bf8a","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '559' + - '1016' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:01 GMT + - Mon, 06 Jan 2020 14:25:42 GMT + etag: + - '"0c00d7b8-0000-0100-0000-5e1342ea0000"' expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot publish Connection: - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --code-dir User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"eyc3h9dShl8hclziG7CNF4Rov2S4SaRpMmdhEJERB1lr0iiq4BQio2MkNSoj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:eyc3h9dShl8hclziG7CNF4Rov2S4SaRpMmdhEJERB1lr0iiq4BQio2MkNSoj@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache content-length: - - '559' + - '665' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 23:09:04 GMT + - Mon, 06 Jan 2020 14:25:44 GMT expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11997' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot publish Connection: - keep-alive + ParameterSetName: + - -g -n --code-dir User-Agent: - - python-requests/2.22.0 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-097.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:21:25.1466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0564722AD62F94A28CF4F500C994D028A4FB6687860C9D0CF7BD711598751968","kind":"app","inboundIpAddress":"23.100.82.11","possibleInboundIpAddresses":"23.100.82.11","outboundIpAddresses":"23.100.82.11,23.101.121.37,23.101.123.100,23.101.122.96,23.101.122.233","possibleOutboundIpAddresses":"23.100.82.11,23.101.121.37,23.101.123.100,23.101.122.96,23.101.122.233,23.101.113.59,23.101.120.15,23.101.125.15","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-097","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '559' + - '3224' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 27 Nov 2019 23:09:07 GMT + - Mon, 06 Jan 2020 14:25:44 GMT + etag: + - '"1D5C49C93D541AB"' expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 + x-content-type-options: + - nosniff x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"command": "rm -rf clirepo && mkdir clirepo", "dir": "site"}' headers: Accept: - '*/*' @@ -5013,43 +2628,1162 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '61' User-Agent: - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + content-type: + - application/json + method: POST + uri: https://cli000002.scm.azurewebsites.net/api/command response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"Output":"","Error":"","ExitCode":0}' headers: cache-control: - no-cache content-length: - - '559' + - '37' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:09 GMT + - Mon, 06 Jan 2020 14:25:46 GMT expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: !!binary | + UEsDBBQAAAAAADSzJlAAAAAAAAAAAAAAAAAFAAAAQm90cy9QSwMEFAAAAAAANLMmUAAAAAAAAAAA + AAAAAAwAAABDb250cm9sbGVycy9QSwMEFAAAAAAANLMmUAAAAAAAAAAAAAAAABIAAABQb3N0RGVw + bG95U2NyaXB0cy9QSwMEFAAAAAAANLMmUAAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQU + AAAAAAA0syZQAAAAAAAAAAAAAAAACAAAAHd3d3Jvb3QvUEsDBBQAAAAIADSzJlCZqxjsIAAAAB4A + AAALAAAALmRlcGxveW1lbnSLTs7PS8tMj+XlSs7PzU3MS1GwVUhJLcjJr9RLzk0BAFBLAwQUAAAA + CAA0syZQB92O2iYAAAArAAAACgAAAC5naXRpZ25vcmXT0kvJyeHl0tIrSEni5cpPytLX0uLlSsrM + A9NFpXklmbmpxWAOAFBLAwQUAAAACAA0syZQvKpX+jcCAABPBQAAGgAAAEFkYXB0ZXJXaXRoRXJy + b3JIYW5kbGVyLmNznVRNi9swEL0H8h8G00MCxr5nuwvZkrKBTXtooIfSgyJPbLG2JPSxTgj57x3J + +XA2m22psIklzbx58/SUPIcvSm+NKCsHIz6GheBGWbV2tG60MswJJTOY1jXEIAsGLZpXLLLhIM/h + WXCUFgvwskADrkJYzJfHZYoZDrwVsjwDZ4+KXi9qis/m0mF5KDK1+hu6jOri3cdZS8M4zjaOSlCi + fSf6vEl4ci1K3xX5OPRZlSVt3gXWkjVoNdW5wWHGK0Xz4WA3HAAN7Ve14MBrZi1MC6Ydmp/CVTNj + lHlisqhJnglQyldD0K0yL0/O6UNkh3GA6sHdABrNL7oC3p+lMA+NoPl8o9gD1HF/fC4XxgRWzOLo + DdZV6O4y67tceiMjObgHZreSw8jREjF0uHEp4IajDmBjuH+4TH6DFUbwlCqByS3UyF7IWad8WBvV + RIsxrUmdzjbXEB3lcJqR1ugEkMKn5FeP8G9ybRUVpSqxgwnsTtHZAq1lJe6TcXTEO0x/oCyAQdMF + glORnbfHA+0P1jLhoKdMFrKn3IlX4bbTINwoWVL6SjlAyZWnKEKXB2r0rHyZRTL/h62CT5yQPjI1 + XhJbYUO9FDSJbRHWYhNbCBys8obsz1WB2V8lcOFKAjtUTKGtBK+gFfS/sUIohNU121I7QkZ8ciac + rAmzxtfMqX8SLd79N531PRj3k57rjseYQlLRHbCTPG/bNqMO10cCGVdNbnmFDbN5VJsAkhPmleT7 + 3nzffdIPPX8AUEsDBBQAAAAIADWzJlB36phKZgAAAHoAAAAQAAAAYXBwc2V0dGluZ3MuanNvblXL + sQoCMQwA0F85MhtITLy0bo4Ogr+QpBScelwFB/HfBTff/t5we+Q+5ujPy7ZdG5wXkBqiKYJmcUQ9 + saCHJnKjNdkoenE4LH/z7nO+xv77xZzWwoHF2VFFDKulY+3EVKU2VYHPF1BLAwQUAAAACAA0syZQ + vQ5/jqgAAAAFAQAACQAAAGJ1aWxkLmNtZG1PzQqCQBC+C77DXIS6LL2AUNTSxTLMDoEgsj8ojM6S + K+alZ8/VwKBOM/PN9zOzVaIkIK19r1UWSRToe1MPB36J4vuJn9P8Gt+SPQ9/8HSXHHkaBi9pNgFz + QkFmgGnu+/5BZDOpdNGhZaWtYd4UxuRjIlaNcqiTVRrUs2otMJYtQoM0MFFLWPkegOnaUn4RHDae + i7AQJxqZsa6dq1Q4JwbZn0zVyM+/b1BLAwQUAAAACAA0syZQ+XRyCmoEAACGCwAACgAAAGRlcGxv + eS5jbWTFVltv2kgUfkfiP5wiWUpWiUOy3YsSsSoBs0XltphkWwnJGuwBJrFn3JlxCC/72/fM2Nzd + tG/1Axi+c/nm3OZ8YHOoOX6rH0zGzZYX9LxHr+fUYOD9A7X3NfhAw6UAMZ9XK9XK7S1clj4W+vTQ + foA2TWOxTijX4IeSpdpCj1QqJvgtXLt19/qPNy1ZcCSppF8zppim6lS8kEKzbL4GLiLqPilgXGkS + xzSqVlZL1LcA3PzFsxjMR7XS7YDjjcfDcX5Me8o6nFUrAPacfaYU44utRfpKw0yTWUwvII0pUXTj + ZCNyARhAEktKovWOACTkmYLKkAPTEBIOMwooEy4Rm0uRQJhJaYJE+QuTgpuAuYbGQmgBVEohq5Xz + 4pg+1Vm6C4L5V1Edi5DEqG/YRTQma/x8TQk3gTYivjeB5njS7TRbE7/h/Beldcd1p0RqNiehVoVx + yi1NvSQathgenCkjggEbDCfgfe76E6yTrT2sEBu15Dli8hAoeBeaba/THXht/B71hl/63mAS+MOH + ccvL9Q3JE2hD9ruWJs3x32igzFIONfaITVerlRRCl1sdeJ8nQb856HY8fxKMmpOPO7On2IHdhHA2 + p0obqwBHdkdj77E7fPDLbOfWyyW+4QHgvJy/ab7A/zJoBa1+OzePye0WxfqcRRmoNQ+3lV4gptg/ + GdAvwNDWdpps69yoGk24XGD5KRZjpRbnfLdrpXdFK+2Xb8GhZ+o0XsNTpjTIjHPjs2bMGp81WIks + jrCFlMBX+bwJ+sGBGg5J04ho4kyR23Sj7IZJZMPxRol4/VF5gSDQcDRNUmcaBEFk59bE/JSERyJx + NjqtntccBL1hq9kLjvW1zOguHxv3b2jkVFB201FHOPaVjOBKwdXXMnC/5UrAYyJ9//6h22vnJWdT + 01ezjMXRiOhlm84ZN7PSHHJfsuGMpFhIknQw2ers9c/fz50pChjF6fV7tz69Z3zzh4sjEudImd3b + n/7YAbe7kY7uERMs2wsfMeG2E5r+yB2YlAuciP/SGTTTNGYh0ThSIdracYvRee3CGLvSCPNsQTWk + JHwmC3Nh2Ta69ez1QVtJBJHQHCVkIV/z0PG90K6Kec3m7LvNhA5vXLBBByQMaTaLmVp+21chsPMV + qlSKpxqGQGQ6zXRp+V1ehoLP2SKT+bHH1N57P8zxV9cOlHyenFCrOQd9bfy9wG91uJyXkznmaKe6 + ATgCp3PZICki5TPVoAxq7oLpO3e5uHN3Kb3LX81A+eF0/OynWskZ8agIfRFnCEWSmAqRmGZsxfxu + XzFMRb7MYeZxP+Kbs+zlZ7dY2DcwOQoazi9FJh37GyejXRr3FqliX6zXcg8dwswShEuEbuGa1NgX + vdjQa2ytGTm4mh2sZvZIBUE8YcHJWm8WzGFJFIjQblJY9Jk0LbzCrjVL42G75nVo/OAu5RnlHn2h + 8T7Qwa2sk/HQFv1Nvi4aCqc6G7rXW4F93WrlLN/bbF6OqHcYx45EtioLQ6rUPMObEfn9D1BLAwQU + AAAACAA0syZQ4LGfRUQAAAB1AAAAFQAAAERpcmVjdG9yeS5CdWlsZC5wcm9wc7MJKMrPSk0usePl + UlCwAXIKUotKKt2L8ksLwEJAwZDEovTUEreixNzU8vyi7LDUouLM/Dw7G30cEmCT9NGNAotAbQIA + UEsDBBQAAAAIADSzJlDEWvMjVAEAABwDAAAOAAAARWNob0JvdC5jc3Byb2qlkk1PAjEQhu8k/Iem + F/TSjR/xtLsJAhoSRSKoFy61O2wKS9tMZ4P77y1rMUg4aDz00Lcz8z6dmXSKdgWK2KxYZ/xRK7Te + LklMRnMRJPEG7zzvdrodxtIQ6gCpuUdbu3wnBXEusQS6Q7mBrcV1boCURZDOXYqLNDl+jlkP0pSv + gF5bk1eSwFOaHGqtX3Js2Kpjgs0PgqlUa1nCMywBwShgY6OquoDD7/S9mwANApjoO8dZ8pfkWxtO + rasCUIwNQYmSAmQsKnZVOYvkGb8WN+Jq75Amh7in+Qc21DTEXlwROpHx0DoPRNqUXqy8NTwGtqGu + mdunmlxNQ41hbhabvF9tZePT5PRrdEmizQksxr7ANs4isbgQGZ9aT0NwlW1mCrUjv4i9mdkaFXhB + 7Ww9Z6F0oan9/ehDe/Jnvd8m986/W3XsL8TiXwh/yN9TdDvt0u38w+0TUEsDBBQAAAAIADSzJlBN + Lz8Ml4wAADixAwARAAAARWNob0JvdC5kZXBzLmpzb27svWmTslyzLvi9I/o/nHi+uo8DKGpHnA8o + KDiioKgdHR1MAsokg4gd5783OFSp5cB81/28O+Ldz667ikzIK3PlypUrV67/7//8P/7H//jHdDRb + VgWKMUXB/uf/+h//X/Bb//caowr+P/8pjlCqrZsCbBj/NRdMS9a1/7UHipV//uvyoCWLGmM75unp + f4Jf/u/Tn/7hdNWQFcb2KcZG8F/rhj0vrGVNCH7zf59/4/+OmsJt9MrX//cUHaAwefub4FvGUxQm + iKe/BP7fyj/nX/8/169TGE10GFG4fHrwjf4nCZb99f2G/++1bqqnz7/+klEU3Z1pFrMOxFoziiVc + /+QypiZrogVbqGnqpvX4d92XVZWPAZ1tOl+/3gpeR1aEu7cIqmyjmm16hC5r9gPBQVUQnXvkzgus + I1KecWJk6KbNsD7TG9TtkyJvoX6pwa9H/IdQTtJbul2qFMvF8u1fTu80BI0XNE4WrPs/+X8cypyp + W/raLsKWMRLs4E1F/1XB9/kv+TaUH8/7ryu2HFnhBbOIa7YgmidbufApBowCJtUiVARfMrnIdvvG + 8j/fz/7vG7qrqf8Q4SJ7kVeU4G//+wX52Z4jkV9//ObzXP7SWchYsAds2rqmCZytm58BCx4nbVNg + VN+IPz+OHmxBC0zGKg50UbzQPFMsqTsmJwxkbVts++xtwf8qVWU03v+VcCZq+C+KqBtFZkuab8+2 + z4gxeaBYLj23oAv6t8TBOLYsQWUV72b4n+T1jeS/Hh5d+7p98tjtU1EtI+rHxzGdV0MniUndjGRM + t2xf6UWYtWyT4a5uPPzQDmeRvgGvZdE5i5GmVd54Ch8YzLaNIiYw/ne9lGIkuLbPOCDpWeePqQRe + Efhd9v5C7X/3OPggVKTxcWdS0UdDymbwQORZtqAWKcmn4IPhRTHW1rox6zPytWIldfu5g+XvtJan + IkS1jfN8mXTiJTlJUJlsHBbuf4It295Q5wWl2FZk/59WEfZ98F5AZPP0/V7ApnYKesKxIUzd1jld + sYpjX0icvyBxZgO8+ZqpHzNfPmL6ZXu+BGAReHz3L/egX8r/a63//vMjWf7ZYP+4O0xbp2ex/k6F + 3n97NG1eA/kkfuzPBFOpW8AVir/UCB4/P7QdhJomSuc5IpZ9tEmJMY1rRPLD2aMUeZGqOJBZkznP + Sb6Er6Ie3yEYuuZ/5fmLg2SG79P2gmlfVws/lHIlRTzNB4kr3sxAb56+Gun1serzxy7MiqRgyowi + H89hRUc3Vca2L7b95i3Pya/WHpmQMGVVDnT36b2kwDmmr3ffz3qGrfthsyF5xUWt3Gz7UMprmQvy + XGGZnH4QfCv8ygq8pFmoSnGB6JyjCqek1cdnT4msh6eTDf9KESxFHAHh3cJpqHx2C9fHUnQLCcSK + 6S4uDr90jv2ixAORhz0iM6IWZBM4q0iZDPfZ0LqKzn4NjA/P4uOPDxSD/Ov5X+nZYfWlwi7QRrE7 + 4Gcg/8zugsdqZaDcSNf2QosS09a+lh7Rre3Dh31evdyTUfpWOK+xn1HFmdEURTjnxoqkIXAndy7w + nyazmwHhT4Cn9Nonf/1zSsvOgL+Xiv8CE/4hTFIjvl8/p2fSXy9IwTxDL9riRFfPhlSx596kEvIw + zTst/LsM9aloMc32rJ7cHG92NnrjaiO4V0q/DKjP4XjIoP0xVfuRIEhtm7rhB/t7mfsYl7+guv4e + 19an5cnnuOj5IsMPyUOvLhRGVuOtRWBF1P3fSjHJIy5lKOEQZClFR2FM9GCYghVGPV8p+DxCwouT + /Bd4qXtJQjuln0nk0iWDnEoqMs2c0s9PDa+3wM+FWEGeRc8ys/RaiA8qM69PC6zMaMXG/zxA1eL1 + lxoTLEGLbwdvMHmRllIKhhRweuFP5muB102mCICZcq9mwj0Wn7AWnhb6V5/2OJempoCwL4itg08v + 0P3HLMcSihX/mcxfUvX9bGYvsQ7FStn/X1YvMCXfb9ez4u6w/g9OsVItljNT9vUdUC7vSEMT4Zxs + Kkb81lulYsHv35DUfN9yT2a7b1mnYbihXpDEakO+IGX03+7lls4buQ8UP/NhI13rCpq/+uBK5/A6 + wjz4ZCWHBPWvKeaN/QjpJKX19dOQ0Rjx405URqvF98uRJz7kfQYyNuTPNZgi7nfPRlhN/1vUdbsF + GltLP6SK8fKbDccE1nLLMS8VxhH2brM5jdHx4aNjjaN42wmRlPDSBlIc4v4ssftoC+uLpKEfjOIr + vmhCy3dDE5jKf5pferollbN7ejUzRP+Mn6dEiMtZn696pX9fBPEx3xxKCa82d9LbQUhtDzardGCQ + /vyAxt+UyQ0pyoe84MM2dOm8B53LmIy38xNmvXD3/NfP59XPPy/K3nIpaokZJMethXlZcRBh+vyV + vhDzh4ESd8/tT2x9oRqn859tKVQWKhJtvtWHpy27kLI+CWneP3c+U/Pq6ac5kkgP/6jFCUeVSubw + 6djMJUD6SUJ9HTh+572jjfAfAzYUHD4U+yBLhTA2c41e7/a9c17w+d/g69r8XCWbZYLr42SQ1TLN + t8oiPjiteMOF0fekA1mUbFcI/vvfa8MsJsWYZeeRfPbtsxFWr2lVciSZIC5PBwXs09MZF9r32h91 + lkpt/Lunr1q7/ZJQzjF8RVH89X622Zw8RlG02O+jyX2IMiIp7tXxlBwmtQiKzUNJnz1XAmCDHEJs + SD9Oth9DlEyS4J+ASzDi88zlv6xl/Iv09aen5NfzWSgVPJSF5uB7Uo11f1ko9oWmr2ofLoNR4qrj + i0HOyfqn5wfzzNTno9H8E0jZxOMxt4V+xJ5/27jPcI2bz4r4v9e1f3jVGGcd+OHc85Px9tiCq0gL + LGzIlxLu0+YbFGXUhT1c8/BcsXV92H/25TmuCBXpDxnT6+rlxZnSJy8Za0qwARj0RwwB26n/2bkd + RdL+ZzepuetM9PqU6UPftI6s+JYSqp/Gz45rkWimuhOZJpiegpZbOHnTdSsOh75g2ea54iQm6cko + QuB706nkvgfUjx4zsbig2l42dS0YsHPGn+rYy5Qfk12wxXbvvWIyug7dmOQzSzD9IMO8SdKH4hK6 + GcxPmp/9/OJwsHQlmjqvtF859DNlcv/11Iaz8lxF2J/5/NjXn0m9tLyYv3wNDpZ+Bzjh3VHgr6N1 + f3ykjjIIbmj9uW9my4ofw0QchmN24wtK6LqSuQ3cqCpDezCM5HZwH0oEwJyjic+KiKS0G0Ci0Tm2 + FFSmcNGnoXvS+Lb6wKet69tQlveORVT07uk7DCew/mck4dHVdTGMG33NoefaLYExzzFvXCZfz8Ac + pztnA4zLaxz8OxGDx9aHcRlRrmzbyYChrY7ACzGir4CPbt4skONRFgldkblog/WC3MnZxh5u5/EV + 6+2v+809J7hNrJySMxoTLVy949AXPEQ45YWjAp9gGr4njY/6A5+YU3PcVdFtoUN8EW6YoKdixo7J + qIKrm9vIDjffZVq8ZtpPGFyWTwnCMlVJFtTlHUPeuJzvxEQM4tNS8Ta5kXEQe053CKcLMqJTjn0t + mzIfg9KK4VivtcGxiBIPxS9GMzwSXbA6JhibixYRDHTuLrscizBW3mUo87wiuH5ABfvTkGfJ0ZQ7 + 3HNRn48/9E7EwVce3/R4fU1pyOjBUPSooWNAG9l8LkTRvzKYEWFN020mHj7flRghEzWv6S9teSKR + xzbkgHjKHPXoujlRxXWI3wzmsuC2v+8IiseFYMSI3jEgpRgRExQjjlEHXx3Ln490XrjdEgxNOHbl + aOBE1+pZIYgQ3OUUg3BwuWQpBuldL/mwlIJl+GYntBlOipwpv6eN7xq/GPkWfNlrikjvBhtJmaf5 + LzTxBb3EmkFQQXqxSH/FFkPkCSXeFsVrBpTJaFZwY1diVfzkSOrcNlR6/45ZdKMlg7velGmk6PlC + Eyfw/iY96y4y4XczxZ4V9d0GE8tb39DFnSLJIBThgu2jyAnzOIYQLc/e9qexa+AadqaJtTR4QhRx + 5DzlED6afUYedop8RotrQ0HVw+TFn1FPhXOYFCZz9Yye3Cln9xGP/KuDZvhNyFgz7BMGoVH7SRpF + 6Bfbpwk2XuNLfsemJWt8Egn+5bvjuCYnoE64t94XPEIwrxd75rxBf88l1OLxhhq57h56uLYJm5F+ + Tx/f4r9zujDPGDdbKq/PH95QB/j7U/1eDq6iif8R92xOLVKsUCH6Sx6oygo8f27dEpMFIfkzLRfK + 69+zONdcBWWUbNQqjtC57Z808dEPl1W+IfhKGIaMJ55QkrYeahl/V2MSJd/ygjA+SkmKcpK+9HdV + 9USgRPe+vr/7OUSmDzo7CDHonxWihCEzoqvoQnOvopjz633lcGgyfx1xqkMPFVyPXl4g9k2QVvnM + 3YZ7ShVVSSs9ElZkRd+DimkLiX1HHGN+aknv7eKH1kJXcN0rMrsirtdVSimZZIxd1kwVnY/Cbr83 + N+1dasMy8SV5A3iRJUfsUivOT6vyLz2PmpfKMi0/fl6EmI3OHmr58sHvKlJuGJ6LMP9FCJ4Fyg2/ + rxLUjD3uq6Ef8Q7tfHTwBUpuavh65lLE+y8y6EfRcsP0JG2uZh25YWbKUJ8kzg/fu2v68jDYv8qJ + fLxkLhOlXOrm/0X+4yJRbgjeHhv4ZZPi44mGwJxfHdyPe4dkytq7/eRsVfh17iKJ0v7WZfv3oZN8 + ML6cbfllq80XB3dywf0MSHbwvzoZlGaK61P15XeTY0I2BEXWrh0wasWXlzsmRfmV3Fki/X18KkV0 + /505w1uwslSJmaqhp1IeEX9LPs39/b/IUswsB+2zk4hPTSaxHM/elJNgdwckUxoQH85wxrMGzufM + GEY4EO+kyg7J+43BfNCLvF+Z/ATjv9UtvaKhZQ0EilNBlP03ed/xyNPQ5UVz/eul3Z/pvtoBBu/l + dTf7AOjBPnIaHp9jzJTlyie2e3lI+w+1gwlbNZiPbd18TXYa+D5jnn4jsby9Z5K4MvY5gXQLGrN2 + 1MlvArrpojgUbIb3bfaUWS9CGTrdm8/NYyjk4G5fvCwf8Z4cfPiDtTkhD4HkYFvPPiUzhdy15EgL + /jT8ZraO9g+sde+Qzlah/6mqTOso0e85fJP02EgKwUDiNWScIvp/ZQBxRTLrsZ/JXkBqvZCSlM2+ + t8WM1ZZPhPQG6Dy3dWLnujNWwhNYMtTFY+Ou6Bp4dm/AqeQ+8xzRj4/PEic7hZ6pcf1DGovmrM8O + jWIewEmgff9lmSr8T+84/5Eh9SB2xgjf7HOXzq000qiqSNSM9A8tCBL2FIzTyudzf4+0Szu/Nsgq + b8zvFoncrO+CeUpGGLWhbdh7NS6OoeWs1xcXm703+AlSxlpJfXsiWUSepBnA60nxz+s1j22Pu9ku + pQrFZ6eJs8Tp+vnZovTVmfUXFPz8NcU1d8Blqx8r3cq4vzfpGKd9UJ72YGVdlXetMc/q4H/0WyJS + 6iafOA36ooFKRsr+elvmms5wHy98i+zEPdxCtKvJWlO57vvd9P/OXVk3RFH7a0dq1phuo6g/Zhcz + /NQG+XsK/6/E/DIzq6/28EmMqk1KjGm82sDJ/UDll0zZwXbbrepXhLgpNs/6/YHynbi56PiakEpJ + 17G70r9vV50H3NcvyAz2nxdA/NFVSgq11ZE2vzPS4U9UM9TgnktJZSlckxFt7fEbbrxIfmVF4ssn + /p5rI6JdzZBO++Q/UeQdgJTlgM1iczDe3Qq577w+Sp8xztcO6+8KhOPy/naVKTrgXNIfD5+frQ5S + zHikcaXp37i/m2CGSX6nTOLLacLuLmfSD/zUzeNKm2cD7yjru+QFm5Rk+g781B+YsbaPt30EhJk6 + k2yzcdfgMq0DqHHi1Nz8cjvTQ99PQu7MJq+IqZQPg+PUAl/zvf+5P8/DmiHb5dxP0LLV0MOiJiUN + xbucMlfjfxA8N5QX6vPOB788hruXIFu0MkjC5nFdZIpBxfPPzVC9+WRev8BMcQQkTowkTFGEvsnx + 7gax750VoNh4EyzGunYslWTIx1thMrTGM7LZm2H6NXxRLwZ9p9/MAc6jtO7lvbfpJv9TSYdmJ/zp + RWk7vfws5fT52drId445O5jS9+mJk6Lp+eoE917lWKp6r+psTep2Yk8rK+jbxVo3RSGMgm7o0umC + 8niOLOHi6rdum0W7W+mhCqXYurvxNkMzvjWv7Az59vr037JfHvJWs9zrg26xyk4jwb30mXQezQiV + 4HuzQyPN5dwbB5cRNhkvNG43sVPeFrxfaGTSlOj+FVmjdIm5sjelsFFgTsZ3kTtDeO9313JtmpzS + 7mKyDcJ0Yuz3m2xZmciD4HkZSWpVI39mlfFOmhww9Dn4MaH1O0qI86rdfSJ9llC7pmynNlnk3l4y + /bblf6CU4A+b28kCMjSxVAvDE81+STNLyZWaUlOWrGwh69L1ZxrI/tB/xmjlMyle2kQFYpJeNjfH + Rk9rhd40eF2z+ooiXsPz/BuX3+slc/3jOBn03xczvLkrthn8JSWWd10E/vCk/tSaf7QFefrU8/uJ + nj76vUo7VxU+fWjkqIIZ5NXn/hSlf3z9dbl93okUzK984UyzmLXw4WV/fsDeD6TMx21f8E1GSKti + Kc5m7f2HRB/kD/Sn3gtJGFAmo/krHdMu/mhKla3mrx+Qk8rTLKZP7Ghf6iD/BoWJu4zkd/lK2Ojl + 97vbu9Yh7bMH+SMl6pz+vjPckzGU24A9ubZf0f3zrc/OBfgTFrkh/9wfpXaG4FOTvnzmnedC/gGM + L/Puv2xuSj9vEnHI/AA4S9WmmR2Peq1TMjf3ZDfp359tJbNO6JOyqDHKNKW+po8NQf/5vyK0qL18 + yteslWkh0fVlWQP7Z/vGxglj/0yv2Y8+8w7OPNTmL8Iy6DgdbYa7EzrWYAr8s87pyncN4HsWv+Hm + y58XlKCqbJ8tDPy89GhLjD9KlBwyQze2kr1F3msyJdsMZ2G5FxQ+lzlDjA0m5VrPP9W+5bYUM/vo + 5Bu2XHST/rGhG+bRPHOULoz32a8PLfVDFBn8vMQqB/3mcWbpBtXfsshMUmHyW0pDnhbzZ2Uy3yrM + zk6+R9FvrPN6nr4V7JvP/v7xOsMlzY9+VMzNy7PUy1duP4lmIubP/8A9OLeSpozn3cnU7+ZWvvS+ + OImq2O8PQp/XpedT0LG09PxDzzHkzz48F13BhuEvYm1fYx/i+bauKDdZhHBPBgtkzjFNQYvAvoir + qmMHV1yev/3l7sbNsZs3nO86/AisI0Z4PvCbcx9E/7Nwba1HoPT9Lrel/OkhyudRuq58QhfxNEaV + udujmW+eDo5B3jVQePMsPi7e1Kx+fvj7sGWUZx/Kn9+QDWRtF+IR3/dfv/kTx+8VbOgHn9zF+YLC + OvWMsr5+GjIaI563RN+9KZQar7uHj/t3HwmCEglTN25j6hBU173ND48/35WEFVH3fyup8civ80Ys + 4kWt3GwLpi2vg1qoj/LeTVRRnj352q9D8+82YO+oQqvvK3kSOsly2t+N9nSRYEzG97pKeLLTTx8e + nzOKI1CO8dExB+1zpqeAgg4qmD+NlODxBaJzjvp5Njk9SzC2FI1CVX4+nSxgqRTB0osZOsMo5dxU + JbVY4jsZdeaYGSTn784SmTRPaSZqcRKr7026irgPpn/ClLYezkZ5dpaJ4mZEt4MVCaEw9lo31R+l + BpFsPrs4GB+nGEPdRCSUZwiRA4GcIocHquvvg+A5aH5wF3ml6UbemETKZpzy3ULPrtiJmFh6xuF2 + 9ZfHodDkfd5OObVXNFP/i062f10TAEUg3ZXk50aXnxeX0drHnoZKoOW9ry/L007XDoGp5wKzv8Pp + kwmndyb/05vyECzN7ubPXvCmSUIqlxW9f/uzG8qytsazxDnoDtfOni1lf50fUlcBcsDq2xD+WrS+ + RcgBL3KnnMsI0w4GPt8ZeJ2KGJsJPqOtyF8L2LT3L95KngPKpwRp2gg/3q2S0ue/L4/8S3pJfJAi + bZW/ikVTQitxnWqqJViZ1qy+hDJ7laXjClPUWrgd4Vz85xu0MlTM7UmttJQSoltHVsjdvTof1P52 + 3/1SlrzwO58PzML4cgbvLEhesAUZX//zBrKWLMv0O7C7kSYvAFFtL5u6FuzpzBlTDnJBaY3fP4nk + M7HygjTIWadT+PkZzBCze561mCExyUsTuCb/cfjf4ZCzEnw48kI+6RVBOUJ/zyifowNvcctLR33B + IwQzgOWPa+pX+KhvPPLSwMwKGh1wZsLC4LfWlDOINyLlhWLCi7L+mKt5X6mlfpVYp1vH8A7G7DT2 + JDGUks7Cp5ziofh10PMFiM/enyeMWW0lhn9pHuKe9p2jF6+EKoC4WsjjTmDEg8WR66gjFSrfF/sm + cwiVIvRJ0+d9/uwU+4UVzDOGfUl8xKlLCldgkNHQf5QiO8BeH836+5Jtr2XJC79TOYuVsC90xINz + uYD5JVheSKIqK/C8wP/bgLzKlReO1yVPjjiGXJa9ui4sFzVcYclWDfciZhJD/XxNdiJdzhD/8TVR + 0prHT0mBECzSusEqc7O/fmjWRpFF6JDSxQSp1g7kcpQ9Y1vIJzIKzi3nvhRPXvH8RytGTme9M9MI + zgunKqw0G+ve5Zb6gocIpryP7tJTUUrsCvOMtHmHdw5qJW094UWjrz4+TV3+Ir2cActOM7d32v9O + V/j9ff/WHpKvxM1F6dnnUF++LUsBT/rOJMiL0c38j3Xn+8O2fP7QrLWchwX/fFH2YmVRmpkgiLn/ + nhwLOZ7ikQv8QQeZ37VQjKO/p/jlqbUAxuz1ddp3ymqYZAzS6duzhwjd+1HleX8oH3+Se0XRE0mz + h/XUyilbWDOG60aC7OD6viAxk0n6m32GIhhpJg9TDQtz3MS8BgRZw/wq4vhdU/LvWh3kFdx/UFF2 + tvFt59HNIModTqEvZcoI4G85s8Pyptnsb3Rp4bKneXUUfY5bysq55v3OGcfvluq01RH8152XgrVT + g5NYqnrBP0As4PpaLfeElL71sSiSzLlSs/ak48or0sVrkhFKkRfoiwOZNZlro5lyEcy5M1u1FE0n + mZrBDdrp6f7MNKri42ovO33cgJOpEhb5gf+HkEy/CPqxN3SG9XpP3UNK9908nw8ehUsbO5Q6NxUy + jCS1v1c25xrgYHud0BWZ++rg9dptXymvZcMva4V/klCMKd5cm5ClpzCF9csriR5aRv5XaMK5bDmM + 0mIsmYtBfb7d/En89onFj3aDUSkv9h6V7HlT7iRcvnqrJWEy0rWuoAXNhpNwIQ2Bk4P9p5uCxhhs + IpO+2jpOyCnoRJEet1OazLdzgT91mUvILb7JPzAKulj6hrgXzNvC8ni8IlM/22QIT3yX6w5NZkam + OXUkad9fsBaFNCrNzVGDwDkF67nIWv5xSiQRg4cDD0l4PbTyT8LKXx5wgpUImu/rAZJwCZbF597Z + J1YD2X9Ciz6aflxBkIjBkzRzTDa3G8thWZiMG5DFd1NXDlHJ7k87RSW/u6eh2GYUIQidIn/8PZsn + qbpYfCIS398jUWz5i2lFTsjk5v6IZIxWsnF3Ajoel+jUNwIgpm+XcXzQq3s0kvGhGZuTojuNeybR + iXF/FmVsgQ+K3xgxjkLOKd6h/3uBv7/gKjwPQjZi0c009XS9B3/+CNL2n4mDQkSKx/tOYtFfr32I + RTxxBNOLE/WfqCPSPHSsC0n1tWiPSRd3Gg3oh4wcGdeAbsSoQnBxjOLE8bgnDoIddLS86bQehwsR + Y+o70cV2RgH1VNg5ghU92Axov9oLxKI97fcQuhx9KXyif7jALQIpLbDnRoMxic8Jqe/Va0w2fih7 + iAXdzfV1ieRIAGFUksulRsW5j5gePbb6oo9Id65ZiLVQvbn0AZEtI5ioYyns4ebmIj44JV1ieYlH + XgNZlGxXCP6blFUC8tiR7pObvhKwiO8GX97vkYBRZMrvK8wYPvr89/IKtPiMzovbyPSvtvXPOd92 + XH4JlHLhgDEaHyNQDX+7SlqcaVnjddeKuZp9xTUmm4EeyxwfLrOLS+9/vfy9Fu6ckLZjZOCf87tr + iJaIUwLf85Tf7VZhIkYxmUQk+24zpTCyGhmDT3cZpsOvbUVelby/JTEdbvFNJ9w1jLG5+h+mcbLB + RLbELw6nHwR/fZ4ErMh0J393Dvn8GDcmfcw086srJ5PxiUM8FURHYcwE+YrvqyfHe8FUTqme+DzO + t14GWyNrRXeT8kmA7It7OJPyiU9++ikp/V1ZdnQevs+PPMd/k0clNBnNup7yOh1eTMQhIu33FalR + KQNvEuSozpedR/ZMMZzRJRKMShZED3FSfo+XwsahTxR+3F0zG4v4/t7Z+CziEH7XScYkv2IXD/mI + JGEfv9hgUMQQmka1/H8ocnh7176LwL5ovkluyeOWeZ3rs2DDCEq0nhZ8JWL8XfiVbjHZKS+9/z7w + 8KnELv7XX9+U3vdfwM7q07/q5tLU5qWyLg2W5zI1Pw6TLdv0nt69G+YwxVcgDHNBRHoqDtGDEfLu + fssnQfxlHP8Tt1bzMmif12rey5rKEH5SxFg6VzAmMs0n1ZaJvvL+AGbpcvryqeH8+Lon5a8P/NJB + 8oFn6/Sh/ndGqhSOcHggq1OpwbXDz4RJBaW7a25LQNRK9MvAC39DddSWvvdNel8+crtDHebxrz3l + 88PlV6XeNzspH9h+J8FDP3iznvtEE6qhceSLt7/WMv+kdsKlXLqzqFRs1LzIpTGnm4vPH186f2/a + XvG/PpD8qEFPXbCHW+GKlib7slajyXrl7Mra/2RMFaoWw77rbArVH1Dccjykza8BxeCXPvL3JVf/ + Xgu7lp38eyV8kVs3DEWILvT1Fbp1KFb8qaL8ZgC8eXFYJxtO3oQf8xSFSB8Q3bU8dWOR3xnF+aT0 + xgjuKf4bLyzhr2M60Q31VbSQxN4uPC9ngJ6u56LwuYkUf4v3CRdxpYDh8wNRsdWcXdD9pCr+A8Vd + 9XZ6kfKL6o5fEy2/f+68R5KZCX2dhvNXtUkH5atjZSmM93O7s9881vFxKgZ1t3uZqtbvp5nSuUFI + LCzvM1YppNM+I+GbAC8Q/rB9SZV26P8qifdzN+DhHWksVl+53F89ArKY7d6dqkvsVt4cs8sF6BjT + 3kcvc3e8JcqzD50LwuWerqWnpzRlEcp5Ln1RrpeZAX4ffowdbkVRT5xkYFyFpIzU6TTmf7SzukS8 + /3kY3J8n/YXrkvQ3AzLO7/teOdrTd+ckwpPGmQDua/7/+qVYCgPgbjb/jxv+L86D/2ocIqUdMsDs + FL4EFXn+suXU6qQERm1FlWlXLrD06kPTXOvg419tJIlW77lneP7AHtR9ivfD2j672f1zGuZ3TUIP + J6ySrnjSs8q41hsiKxPp4QdbTnuYfK/GfrX7ibbujxDKRbLqcEb6i5zgU0h+1ZbYpZeHImvC2zz5 + q3Tks2n6hmWaM/SpuOv3ref+nENPCdPbleYvxDfV9GSIxfe/ZDX92GQgAmX49fR/r93TH41fVZ2l + atQ6378wd5VtxWlaRpOCbs89mZ5ue0Zh89D+5evHa+v1dy/4NIcHRewhX5PmvP7YYCbxvtqNB/+F + 81m2niwbx/Q9+P7uVUqsGSsDZ/AwTyfYzssoRMk8hZ89qHcixF9zxQDwV6FwEwLmCsK/wYq+b9X6 + zV4vvHayheu69186b/zHn7+fmsLvVkG2yN6vlHIYxpmI8yLs+dWKzaYkOAt449Y7/L7DMA9r8heX + zKW00PnwljTXOT+TDL9FW3lb6TWR/x8r/8P+2e/GIdcIONr+T4oquWYhYs+u0aaKv3jP4HlXi+hN + MuJv8ufTIuOtuGlODJ96KOZZPxE+7/XflQ6vqa7O5MPj73tUxiIO7XlD7ZInOB4cn9HYN2zS+tp8 + +9R5JMEQa58KpCPveYfuWnrTXy87Gax8TsBnkHH8j3MPnxz93+4uMt2DeC/975wjnx+W/kAUYpP1 + v8fOH5/u8pulLm/KYSvzv0O611SJQrp/j4v/nUOE2HLPywYidWl8DN7CLiaTfHjyqtA/Wk+XezHD + ++cyqOIN16n/d4YfWZrGi5NWSQ0ql/Pj/z2J/YFJ7M6hRqGzjPwnzYep61euqUJMzNFm8WtHvb9r + 7l+oMXLPH6OJsKZKCKYq31a6ZpN7fpQ4k7zSjSyZtbxOH5qbr84Glcc9hox2OjJA5vHL08Tnznn9 + 7g3MDDZyXzSHynMT7EPlwnXIVdIX928tYIgyCacN2qmGPtJmw5MO8y8Zpz6wf15B9atOLX5FQ+l9 + Ve4Ly2/ebYnRNEGJdv7yYh7v7na68k3VOu4R+bscQPry3/vCZEd7Xl1vlkbiN/zuQ/ZtVn/Z+vs3 + JJker4T7Vc72+9a1HLYgftORvcc71X7hYbK/r3fjrxr7OfQzeRE5hyH7GYTFdVFhnv7xcSmtHe4u + BvyFQ+hH38g8h9zfWi2TRUufR3ebui+/ueXxF9rhX7Qv9x9iLsFtov9tKL8yGM9H+SnMWxl02PjX + qezl41/wh3k2UFgSMzj/cPp/Z5IgxWIy5p1y/0E5SW/p9ukOxjt7+Mf2jBO2hqkH7Se+v/Qf6xxW + Xm7qWzOKJdz8UWJqleDWyX8u33z93pu0h//CYsuRFf60BoHu79H8fjHDbX0zePniQNpn7z3/9D/n + hXJpjjXNfU2GXKe+Jpr9aU0kmxJaWCiwvcYBa1lelypTdsK0qVYfGGPNXofc1JvMdFE3dywo0w1u + 0oZ9Zn1hTR7m8JiZ/K//dfM9xkVF6pdkrC8ZeyfZ99MSY0nEO4riiaKoOcZWLF7kCYPhKdwXz6fS + i7BlBPueQVopO2wn65nZ07oNo05X3RVfmelAY2iUGapn1Do7jynsifGB2NYdsaOB8+6+yqwa8/5i + WtgvVbquyb310MRMqwN1YXIiHiUGl2YdNzy2RflGYsYyNF9i7lviKJi/4BRZF21dW8ui89WeISPk + YXuCQpO6hpcmS2HaHZPMnuhKTQqQ+3QNRch2Zd+T4ZJRNtmKqyp7kp6BSIHeuHh/omI9B8IOuu5V + 6NJhjjfgbcHAl10yjFVzT+QLg/MdXRxUtVMXnewQLZnrRrPUEsceVjK7w6bHAXa1IxMiZMztXVsc + m70tjBqzpgI33LmurwtHe4nWAbDtLg9SfUKUCzTcrs4EFhrLDYmqDSEVFsMheidbSDTPNJGRJDlJ + UJnsYFy0gA4E8kRToY7b9oEfVMdqU6hNNyomTFbmQOisgNUQHsDHLbtYbkTNw8kaCfTKYGVW3lD7 + ZUdfewtlATYJQ3G0lXwouQAcAkbrVrAwGJ4JogNo+3GBet6jyQhDycJdcbpaTzqbIcu4pLAFd/Zg + s+yt16sO1iirPsT7+nTJG8phXR6xva5emPKzKmuI2hiGhZrq2SViW1W6GAniDQugEJcPM7itB9lC + wXiliYQk7seXtmx750utzlf8WEX41AQbkc2TbXul2uOV52khrOtKQSg4sw3aBEy+LDR2vAvCFXC/ + AKiR0/WHbtPoYPNBnWhODmZXOtQJqGoBSKe0QpUm5TnIZF0x7Dq0ArH5VJBlTt6WP1mpfJFZPcnM + XWQ+N/7mH2T+hHwoXsUTr1gaGeiiGNhBrQjcb/6kpYEtq+6l4dKpjVcLegTaemchmRuQJUf1VmF1 + HNFHeDWpjtdG7QBY5ra5ai87ygalumRtzRyOhNvlawU/7KBXCrwe4/XJ/igp0TSg3MkYDfELbfFE + Gwvha8s5KzuMjUW57HLTvSD05nPtIFbVyhGpMfDa5UEYxICmY6I1Q5SqdZmezskDMKgb1mQ37Uy3 + GrTqFhhKlwn5qLiLri0vTIynh3P5kx+5x8l4kDIayl/UaeB8qt3D+UsokR3qK8cQTGDVnXoNc13F + tTE7XNRduVUB1m1R5+2xi3M0sO7WURIG98i4dlyhR5ZtV+2a11jXD2vDsIw1rff6Gi2qm2EBrC/6 + nwKJV7jpvswyz93JHFcHd7wSaITSt/4SPDsFuHN6aSzWKCQaW9LEpyO9RiHzdt2yoD5BUaZKQYeG + Z2HyaooPySm8alAehsKqwcNUq0WMpqqmCHsPtqrtPqQRa8RoU7tPq5J70OxbEaPhfSaNBO9UsOzL + HHrtlwMExamZTJ2sW8Iq2rja4zWJYkQCo/HOxLWVCWSywGbn1qaUuSMsYnc0N1LvwPkz59Abdfl1 + 1RCxCX/kjRY5Gq9XFDqR1/pse1CPy8Unp2IGEp5nOfNewk/g/qQsninfYnt9lBdYmdGKjcj3ON8e + bgOyUEN9TnbH5dl02teHKLwrk1yTmx4bKgsdWe9Qaq0QlJZEgj8eDbUjbRkVXPcqCNylO4sWXtW6 + isoUHKJvrJ3hhKgNFlNtjNWee5kwYFhnMKwrGNwtGIHjsL7AeK6xtF5SPL0klHLXAq+bTBEAf592 + yzrMULAKCYA+xwqllW3bZc6RuoxATJZ9HK/wy4bM7Ih6ez825n1x4LH9aWc/2SymwMA+LMYLak6M + 9pXqpqzbDWdewMyZ+tyFhUIjNfUmfksM/VZ/n367QFVmrfZIrvXZY1lf0J7W0qei3d1bbm1FzlF6 + s6+Apb7choeNNuQem8cj19bkoTDp4NseYDPWRge2C2WvtFaSoQxqlW33/eh9i0bq+o39lgj6/RWa + nEwrY9d2BQk7kMJkv+ovhIJM8gUeXKxGW5Rz6GFnyQBymelWlIIyrYNNjJC5/lCh2J5lg5ahCsIW + mbdmZJ0USACyqrPSe02mrbNstHOicCyhWPEpft8IxAvdUb8rAoc25ghTvqI2iaOA0nV6wI5Gg6Om + Ug4qN0r71aJewRx+xh4qM8pVulvZHZpyvTdQGr47xmFag0vd8UhyCoOx9zyMCY1IahpN5U1xdF31 + g9bfp+vKCqTgXcWzyQremtrEordHZyt+bq3ptTBCpdaWlcftLqo0XRdeWxsCUI7gqoMcavauYUDl + ErpjyTKG292aIWNOq16ZbvTnuYbQiKSv6yRviqJr61CslP3//T49Q+qsxM1VFbMnMrKQtOMMVw84 + hwyqjS5LbQuUZdgLrwcXhvi42xxMN4QOT9qlXavTqi8Ks5HXb0Csuu+67YZdGEKQay3bjfdR01s0 + 0tNx0rdE0K8p+YvQ+u9T7n7jdsvdLkfRJYIQof7c4RudZndALx14XjFNt9Lqw7tlWZeqG262Eys1 + fdmpFHbb7hQ4ACtsWEUmGt2f1LmeuGTXGncsKcv3E+1rKFLTbLJXRFCrw/o/OMVKtVj+hfFwvT/s + GNQWa5eOOnqwCoRLNDZIm+bMfhODBnVL112qUW7PDqBQ0A5ECe5ouzI8gekaXYeOAL1kB/CyPfWI + tbvsdKHjdj+Zvh+5nwBJTcVpvCiGoqFfqeiDqajTttZf9QbYwfMG+G672owWO/Gg9fnVYY3bJrHd + 4AXI2E71moItGss9uVJok8Rr8NwdDOUqxo5ool6GqhIH08Kqb9TCKfoVIKkrOsmLYin6N87FirCQ + 3bWMb+l6V9XqnKiNON4ewbN6mdyofRrcHLqbitzHxnteKx+ntCXuSwow7s3GtSPf5eU9MJ92NNg6 + HCREHB71NcHT7931J0AyUHSmMzJ5KoIbyNrW153A2KczsSqj8f6vgvxnI5vdZ7zb9GgHdbddpN2s + toTGrL5ol5busUt0ZxJW5zpACT6OQETweq7eRA2j7C+KqMasOxIrymiLVdSFtxlTZF0flZEVuRuq + euv5yuhc5qcEEnJnCbmzhMq3hM9V8ZayeKJ8j+3Po2QjXTvd6iFzP6siU9uRM+0Njg6l7kyb7KCp + RqDLgdGxG7A9YI2mtwOOhzFpLuv9Xm9lukCtIzfr+LG1W9blnWWxQ6iCbmtsYw0OuyWrWxkB1qjW + f74SuRghdyOhpmvinYQvsH1HebLb98nzJ9iShsDJQXGv8OQMWFrgjnSitSl7W2Gzg2m6alTFrm2a + gwLINaqrAbnvapi4qwKA4Prrtyrd31Q6cKPUanvsrl2pVFBb5HYzBVr1Rp3lkgQAbCCym9DgWj9E + DI3uDWkUeFVD1wTt1YVgqdVPel2tsulOV/P1QZMaKL9H2nK9sgfZ4cK0nAaz7I1dfV4nR8hgLsno + zg/dIIMYetOuhVgHaQGrAAvqzTG+E1BqPart1sLx+Yz9Bc1FMvVGsg9g3lLExfBt17K04Nw0urNt + 2xg25lW+upcGOK63Bl3BA1Y1tr0dzkcbdGUJHqyoVa3GmJzVGws4eNzOiMJxvxKPFjugllJVWQpE + aYWURB6HCTMCnEXjUcgoyH4TxwY5uPSlrWt7wXx69DC1nA9kTCCigPIStzgSMtqvblm4WQM7Tnk4 + 6gL6/kCtZo1KaWe1+cqRmFp9DnTkdW0k7hWlvaw1G1uIxcv9mdenG2tGU9YMMnkefzyHKpCDe5Az + CtR39OHRvi3MP3WpYTg7Q3MWBGU6ZTW1MFZ0ebI3mu0FWZYPm9FE4TebLTau+iHgtLbAgDlONKxZ + q0TiBlOh+BkNlQoYwk0KQ0UiQGPEVJwayR6XDt1963P5GwG5BwHf4vuUMDyw943h3vUKSQvbjtRX + +Sk0JLoF46C7kNv142eaX0l1TcfHBo/UKHcCtg3zKOJohW21dFkt79lppQDTFr2ZqLP6cYGJE71K + 0SQBKW1BprkXgdhZRvFORuFRxrfwvqINj/CzKpFiz82wVGfiwoOxik80d7kY18mVc8T2RoHpNAto + Y6s7PQXoIZjQlLx5abg7KkBfGruroTIqqJKHL/WaKGIcPmdKg1EdrUI0AkBjFH3rJJ7Wemzc96U5 + H2hD1IpcEL52Qjvps5oFosyYAfhahURZdVjACm3LrXu9sTNa6djWJICFBjumJ9Qweil25/NZrbpc + IXtrMFtO95BUaSxAi9A2ozY8Ukf1lYQT8m7IvY/Bgkp96Vumtwhenz3ZZDUsYnmEBbuxU5AQt+Pq + K4I9EnvXsYEdTAmgJ26ESQuZbJqVg2Ixu25nMsNrcnWlrdiG502cQddAuvIeJXC7gfa2fKU1P851 + Aqx0Fh9xixYL3FOEH9c+fvtghYYwNnOdkkh/LfHlLbKD1UOYHnAA1aG64Vco0qrirHAktbalbSbV + 1kHW+tIUZghoi4oDqMVCG3hEG5JVI48e0pDVndAugZ2DaDkLCvK2WxmrODP1LazGRdjgxsCvWeaJ + sG+R/sgkPPgvWgFcf49rQYuajLXAscfqsjfcTZFpXR8IwynLL/d1dXnkCoVKXRlJJNdelEV9DCyM + Ls3vYRsqt7ujQgfjBWKGYm2h1POam5myH8HyiB8W6htr/DbmvSZk5LPU1lXqy+/lH1K/VUd4btH1 + cjcQip0TI/8tGbqaPlVrVuAtNeqMKVZaKYwwnO/XzAGc7iSsgvYUzu3UyrRat9Zaa+Bg8lhYTad9 + 06xoFjhCye0QKPeJVW2slBxhuKvtxepEfxtWXPG7N+H1o6yhdPCKR1Lke1aWI6BtzNdjrDwsOasa + gRWGzULXqUH98qap9FxwWCD6U0Gktpy5LFn2GN9PZ4KuieJhZK5bywFco8fYANhUav1Rz6EchQcP + Vb0ZagTc47Wxoln8T+qkOOcxmfprabteZgDSHVrrCWI0+2NOYVYjbyKtcZEBRMPYNRV8hgwrcFWX + KEvSqr0dVZfNBrvHpYWom3R/icAmZBJHlJVLGtV9UYH9Fq9o0+snHkmRPzeUzQhybTY5lGrjuWju + UJYBC5v6mJf19X6+a251egW36yvw0MUbOD6XVzvYoLVVraAMOHcpUgq71VlTKU0Zu9BjG10BqdIT + lEReHPt6C9dBDZUwekkcHuTvfRWFkZ9dZpYWtESp0JqWAEXjqsQIwewSRbRgGpsPB8MpZnnLFTur + jAyJrmI4fWyL4rGh9lhqMgGHfWXTQesDEqQZUZ13nJaoD7jOcblQtm+h/d64uBXtLaAPJDFg/Orq + mh2SeMXericKrA+HwGxqcTPb4KZ6SVqUN7K2OEBMqT+z0Yl+BHWXWboKuHOtccOPXpbzubY5mMfD + BtNBrdcuQICjK6LQxclmOCSNB+nCgflFFQPP0w8CaZtP20mmZpzawgAb4+auBIyFqrzChhhU3soa + ye2hiSwPgAVWqxIbwC4vIQ449glUhlfWsDQE3ZY/p42oFtIhyse1VwHpETAs7zrH2uatq/0C5/SD + YN0KGA7VW8LwwF467Vx9apa5y+FSp9pEHV01G1MT9kMuulzr1Vaute0j+qgMO6sytFormu6itfKA + MthpzZuKoI1xW2qu1jYltVq3bKcrts02RguEh5H18tsILfB8/v9Zj8K9BfQHUQgwvw+tXBoU0AIL + G/Ll9MopCwJlAanuwgqKz1YLmtS2/caqwhWO02odLi/8dV2nutiwhL6tKpP+yOHk2RobdAkemmh4 + wbRLjb4yqdQJtVPAqyS4LqiFiVDF93P505mgSx8BV2AZX0TuVsTnwL4nPeV5oEjwnto/BMmhTNJn + TbOy0zeaxDZbveWuX9gb3vGI6fp+zVWAOTapKVCFVXCtMsFotjGFmlVo0Ndn/ipqwdqGB5Jag9Wq + Y7hVW6FE33VhT+huPh0FOiPDfQsWDspTM4cTQWQAi7AfLPgrDVEwvezARITqyLMmvYVAy95x08YK + R7QgzYVWXRXbgnIsl49Wq7Pbmh1bHNCMvxatLexSdQe3D9P5YNbFJtZMrzbmkNItB5stvaG7B8OD + WWR+CBkB2Bvi2CAbRnbgjjplkK9isxbZxMEFovMtE9qis5rkIPvK3p6jw3Zj0LScvTlj1C5nMGN9 + 24bc5YjgjLIBkiLUrna18hSuLJqHydQ9KC3qxTbFc3y+hIsCqmHEBtOxpSBZzJ1zHJnh2mmirgqN + 9ZqkVdrTOiYq1krrD2vGsCds+ZXe7elyY6310c5Yn5jOoTebzA2s1eDXRqtQXvVUT2CMrlYQTd5c + WHqLlhW88+ms6y1Ez+SMAvEdfTpoF2HWOmXsTjsnmUFPqpsa1RXQJgQ0C1IXI7YlZDVbt4fL7n7i + tpkNbM1K4zl6mLKN3mItOEzVWaw6R6rZl0CjtwSGlESQdkVhEW07APoM4rmlKCZ9LzTzU+j4erhl + lpJS2rq+lYUM9bHZ6x2PP6LIVt4smzMFw/fwEC4cesYELLhAZ2+M1yw5Nji2BI3VhudIYA8bNhSp + fhysRhazZXSMrpHbZXMHYvuZRsPeahEuwngGIXcnb3xVXPikpoUs45GVDpGD4+5g0mWiI1bgVvlA + soWpzVSltrNoSOJ4WQVqCi91dtVtn1Pdak3vTYDjGBcEugShTstGvYLkIq0mxDIHSl3YayH+kIgX + ozxhkhL4HYYTWF+d2SmAM/k905+XZRieoMLcm3ZlYylUwR1zbIjaGulU5pOljXXlKjpjJ7uC1mhK + CNUvzQqk2GdGcHuN7/fVGcpjvVZ32RrNYLvzIrUcBrv1vcDxlXBllJIiurouKhmOA2/QQcWxUpm5 + omZCHrHrITt5WNqQitfz9MoKQbb2co2MKtsjUROZaqm27xiUOdqOK5P6ELVt3p1zTRZvL0CZUxct + h9pYi9izclG8FTe+Es5sUlJBz7VbAmP6C93MtKAMGR9ffrhdV03D9QrLJcjx1bnQ2fG7YWPv2k2D + ggZcRfD6Q3FMESIsCpY4drHJutqbwWSnRW27JZUi2gVVnrjdCt311Pha2Lg2eytxfEV8cUpJF1/P + wBynO/4SObsJgqvKh0pDA+fUCjKXs75Qpw/bulvbDHasQyOUNHKX3nZvlymnU210BRmbAwNygPLb + VXvRHfiObFXCAZPegbhB7hQUxUUr/gTx9QxzJ3h8zTwyTElB4+Df2Wllv+FK2+N2vNpxDFYaYmN5 + hW/0Nuxgo9G2Ku/nBAGW5qBFMdMmOFtNdyJRhtaltrrDa81ZtaKNRxhbQ53VfKdLIo9ww7X5os4p + DIg68y1tfFWcuKSF/13josz0UFuKBIfg0FHdrtH1rF02JMSbQvYSLPur4jlSaWwbINE+9prlktHv + z+aIOiO3m+EOwg24V6dYqF87Ss1CHxOXxqZG7hEZI+KPjvvWRYn1cde8KB29UK4c7D1np5GyAegA + B1st3H9zD7EUnYYwgjvIrUoPwxasuplOsEJ9MxpXO/5SorHA5tR4oFbl0qZxAFFghNU6gAYOB8C8 + 1Vwzpr6rU1L8KcS+kze+Li58UtICbXUEXjAzznQUlD3HMrCmOZBX1dg1WGo6XZnB+hLHoEi70TJQ + AHIWpcOgTzdEawUdZLdBHvWFbvPl8hEHq5DXcGmgStqzygHWKbs7PMZ3Uq61fhQ6vj5umSVRim5e + a5wyU4NpHURuV2jN6nOkO16VEd4jJmMSLWzcWoutaluImBjdenlWWklivxMobCCgWnuNiVq7NfPA + rQasbAxc9XuDgiU1h8vjtBpxlf0oZkTgv8hTgbpI6IrMZZiXhrpe0+yMKqWq0Rc3HMsCHjNWXWMz + BxoA39WUuuBy7T03OExUzzV0ZesehBpB4FC/NCfagKXvB7WWfZQO2lQBx1u3tzq4EX3Qt7TGrbSx + gT9ziYv/ZSI+JafyyfVxS1Nh1z0cGgkKoq4WqgYem13bqXfqSt3a1oUdgKKHpYPUIaU20bpOx2yu + 24XZbAgBVo8V6K28AAsw0+9bmwWPtNZiH5lGcD7cjcTJEn2vOMXXRZCeynoMEMpOmapcp2d3O3uc + qtkVbcEhC8XAuXWVUAr9iWbAK92pwJy2kpXerlvCTfJANV3BQ4/zhtDca9UyWug5Wltg1DJZI8Vy + hDFwTsLFtf1b6vg4mxnad40FD+txw+OI5hpV6xDW5dGDYSuH2bQ/YlXfycCAOip0JkOGJlCng1Vs + AepOhRbXb0+Mqi6QJO0M1vPmgdQLjYExA6q+LqLga8ayZTO+3d4eCT7V5mqMkh3AorMEN8PRlpvJ + gGQOe9XSntBms47r8AdqTvYa5abYXhu7wmFanolziGiusNVgjNd2pXJ9giGrZWHbJxYH2Vh0vd5i + YuyAbSQDvhVXvhc3CuLP2KSigr7gIcKp6jrT8AURzcqyAxZm/YYMlbUSLICiqlRpcXbggSXXQ4cw + QunTqTAeV0dKtVBQjw1ss7IPFgvStNCd2l1ia+LiSOohteG4zG46WyquHraCxz/KHFcZd7ziaiQ4 + IBC06z1PENlpYUysEAKGB+DYHbfNY6Ne7jRFfVcqjXpjlVCqgz3IHwv7MjedCA3UsNi2UOYgfIo3 + 9rzScYcVcOLV6kjNHEwUz2IL9sBARxHcTVDWbzzKGQH5e/p00M4pkuE5rAaQQxyfjd2WgKyAyQRd + ghK96B1rZWQLLI/tUguQDsigVW/gSr3Wwrpjqa3gLlQqYwW+v2q7uD3z7IM+HC3tNql2Cx9vY3kN + XbJg5g2zlJRyc8wwu+BSQMqLJdU+jOC2vAUbCxVDcULc7Ib8AII2yNiBGsZmoDanhTlBAQQN064L + yhKldsfrAaFNnLa29qcPbnKYgqDpTjl+2oyvEuFR5PgKuTmEGFcd32dGMyxOKVsV4FhdjRmge9gU + OACcTjeb+lDrmuICFITWjBS0I+DN2CoyWFYb7dbELqjQdEzsC7K6rAt7qUtMiTq2h+2p1ZP6PWA2 + jzAp8D+EjAL5zana5CDn5IXo6hx0ektQxWcrVtU1aNgfz80KZJZGhKiVBK8MDQqt/hpyjgvCYSrU + 0VW2x5pUKVfY0ohjdFcry6jvsggVkoTlptAxS3QUk7+ROKELesEpDV2gp9OmHZNRBVc3t9nu3bsN + 3+p3rQrRoEqkPJo3WgteoVRadwimjO6byGY/5/fdFaWXV9QU9APQ5sp258cSKvZJuw8t/WiKGvVm + LX58oOuFxkKs96tR5uQbwc/HbNdXwePt439gGFdBmM+yIyt+6BuUPWemDptS6F4JaJl1ug7brU3N + WdN9pKyvWlbF7NVKXXxUqREDHFMRYki3MfEgLAqdmj3oiFtSb6sTetyDCa9gS4q9Fo1js7s1oAg+ + SfLFXD+IGQH8O/IkUGcK8nC35MrI7GBKMKGxNbaKdSzjYOk9qiD2lIGlyOQBF/X9utqyWNVgFhOc + L5cMRJ4fBw7KqlsLcCslZbpeNtyyMhk7/cpmEsENSXcCRoQ3ObA5Ofs6xPU5AzBoac/PAWpB7YZi + CfHo+gjikCOFSvagsZ/THVKajApLxd2Dwri0n01MoEWC2LGKrzDUGBQ6Yx2gCkPbUzFkh0RHOaGj + f8YlKf7BYWDBzEkNhT1Sx3rLI7wY7Sp1uzASp1uDBBvcwYG9cctpyAfTGcswqNGWx+pHXZnx8ICW + V7VJx+5Oj8yGHBAdGFha7BgcEdxOn7lchMz9FUDrLHQ62njCLLZSbFXJSRVtsgSMyny5N+Ol5djU + +OZAgcbAgC0U2hOG0vuCCo28TqE5xUV+ANroqjfuYQuuQ5OLGYnshoNmYzE5srY2L/BtCgC4lvmi + 2+Zz9AJREyrgkUV82O0M684NAuHadMP/bk9m++DWNA7m2GA62Lq23syhbQWzFEhcS/X6qNQQp0tl + MKsPxxNkpm0M1OUVTLUPbq8/6Y0Oq918MlZ73eksEtJ2jMLzU4uMBHjmZMbbyQydj2dVRecabYJk + AVrHOhRK7lycaeDbume1W2vKPWIwX1Z1Wt9zzd5koEoIjinLwQZjPeGwW8HKdlfqENPZaqdvBTYi + uInN+IFFIthvNqZOF/lmk8HR12oD0ajCgJY6c0gdzgwBqZCjDQuvZxNB5ggAH7SH4MDBl8yqyRsq + xjm2sB5W+4UuQimEOGGqB6sqctSB2DbcHYaCxwiB+gky7oekUUG/3Yg6cUiO+ak9p65lB/1W2U+O + pVVbWNbYxphfjzGEHU1QWuL6ct9paq0tskG4Fq7VJntGAQTUHRq4uzKPA3Q9Eioq0BXG6/GA6C29 + BcoiiCexmpcA+lPPzS+Bk2jgzCiRIvJIlWkcLM4L3M6iyd1msOjMKG/MdqUqZdZJabm0QIduTEpL + Y+qutLowmNd551BbQd3BsmBa/FHFMVlmwAkwotnBbDCR68xRxqJ6nCQJsgcGibxNR2Ds4BxtdnDP + t8qqLtEiucdaHGK7y+WWH/J4ieGVdV1gD9SqueWPsLQoiDOrtiExtKmuFIpReXHdVGXSOnCVyWbE + HLEFhfT4ObHq96mocK/vxYwK9pU8CdRjP8Y0ZT5LqOs6QfRbk8GYdjle2nCDcQO3HaLeMstLe2Pw + u8KhtoFqC4YS+jLS7BHknOGJBicMdO9o29q6rkpLkHDalkcRrGohR45TIkKtP4gZEeov8iRQW1mX + EowMHoE3+z6AKoJ0FMbjhtYCbWzTIMedA0vuKZKyCAyuSWthWW8ArR25R5VmQa8th3PdwqcoWdZr + m+1OPPYQZcBr4JYCxlFWo4GQcSsJbojjgnxt8pdhzM3N2z3SE2vjbb838ySrs2JAWd87AL+bz1sN + rylqFURA4EKdsSfS1tq0CrOhMayqBXTZZNwFtuq6KqxBTO3gWg2T7qC6G2GWlO8ljADvlTIptvlm + bsv9IWTAHm61WiKh7HgWhKUyXULUTsE52LiIecsqNAU8C6BUx9qLTkOYITjR7o0bRNO1xiUdVA1F + oRWRq61Ntid1tcEsgkV/oZZK2vYdt8R6meEZHvqRnCpzaNGHUbs0HTM6O2khPa3FreYztN6HyS4I + WM31HiOVCTvHGBXfgmPbPoiWWKg0vPG2AoMeTRW6I6pHdjpdrlnajaOshr6Ac+QEqDtyXJCDBl7+ + O7gMDyrMN5SFTSbdGtboblxIl8HNYMZBtMY1u9qmwigT3J1b7Prg6AuytimblHHE+9x05BkGui4L + kzVeW89LOEL0DuJhXh71awsxAsRB/y3jRsQIAH+RxoV3oHPfLQyzOwqyKx2X2ypx2A14abIDoOZU + VKkmZVSrHDpcdtQq05lBLahCDY8zD8M3Mr6k9iPOgfFCzXfuM0iDumv0cBA6lUoPnFWJo2NEQFj5 + KWUEkG+p08C5ONWdbHcgGujeaBfa5h40tiYh61O9UFKPKLIU2pNarawLyyWx2BgyAU3p9qSkyrMJ + A6345X64VLgp4yKdZXentJeCQLZWba2scK4DRfDdd4iZd9LGxf3CJS7+Q5nnFcFlTAHWGMWz5CyL + YVqbGjyDq41GW1kXek0/GiwJWqPTYsvWrmktyTJhi5Jb2KjNxWBmk+2+LYBEv6v2RZA/lq02MDb1 + DlSerMFdlQCnR9KE2Ajoq1+yMveyRsD+J4/YyO+57KCWOmalSpHYEO7S+MqZjGae1x+O9xUewEct + tGvyQ0FmMJxubq2pVhjp7Tk528MO71UAywTBBabut8uD0ukyhZIxFAxgtn9xXfJzmL6Ei4LtnksA + Zk5ZWI9ocyvfb7hHo9Rqkk65OcCMVallCIeW2xvt8DXN2A3L6Frl+RAbNgaj0VadMyRX87qi7nJ9 + CGnvvSlTaZXG5f66VOd0/kUHsJcgJUvCPnJIhHkwCI5ClsXS5N4CJz0FWTt1R+mPPGC67ZmErYpu + 114d2y1s4XS84Wg1KHOCKG5aFHE0mhpsd/foYj4ctTCe6xLI1KvCOC2aZmUqM0qUxh8nuB7EjIr2 + lTwR1IaMHgxFz/QQdwsY1EzOGQrLxhDmLG4x8Fxxvxm2RJupb6ul7ZSpk4eha5arDkf1B4DHeATp + 7KYrvFZVFYqdLPbAorccaKp7GJd8ij34omXga7QMWbgXNCrc3wySAJ7tMpKd6XwXXnUPSBl3semx + d+g2kZZU6gmuBNTL5Kiwq2w3ErHbIoRUodvD/mK0JVFqOIX0ubDfrg0LApndoTAuV1vrBVthGIeM + 6EfiLRmvlAmxzdBllFnPAZVNDZyTC2e2aimtUlMedtS6ixDOwWuvR9UxUUcXR2RPS6v1HlwR/GwF + KSiqEFDdlpaFOe/MOWmuL3qdIb+ayfyMjmjF8c5YXCmTYBvU1MKapttM1sXNam3P+TEDv2iI2vHA + QE1U2NQh8qgORyUNrRCYKMz5bt214IVJ9SvAQpwv3LpeJQtToo43WHdxKHvkEdw6Rr++HPMlkAIj + mnBQAsv8EDYi4g9MkoD/3dH83GI7uzLmBkLN5hwqiCPdoRdrCOrVTK29OHhDdHeEUIYfojhJouCq + te9u5kRtArbG5VldxKfCGtpoMwZEjX17P90QAOLV6B3ZV9oRbfymHfnGirOCfMIkJfCD7s+ZYV9l + qjjHNfrLXXfQBIZL0RA4je/TyyWkA3S7xvSAhcl0FLI+NMuMLPeqjV6/1hbW8HrebXYrzYPEV3pi + A57POI8zxeN6wDSiLGTuYTuoMc4W/eSRBPl80iWLxcqsrRl8YChddsDNJv3hDK7Ptkirb1szbtZr + HtAJSbd6y3WP14fqbuaiNMGJUL+Pl9waDvQW5W0BQ0nIHR3GnTEyKk+iNLwKMEuWMnnkkATzKXPU + MwwF92W41TMK3GQ1Lff2BaeyHszmdd52W6MBvG2Yqiyr29meGTuoXkbndYNaqIttX9416n1aVdje + mKo2GIfAGVU/TriFbthHNCLY5o2IEVE+kSaGN5dtdn4BTbjVYMbikw3QaheUrarAe4wwkaO51dRx + ZUlX4NlIArr9bVNGYUmZm8zhaE30ShnfL/nFWOp1JXnHQOLc2zXXisD3KxHn0TNcSfban3FJjv9c + FtzgRj1Zydi3bAeeBcC9ZaXbrzLjYU/f7geLxqw0r5f6nTorrefu1F1hUtU7LCFOHPeY0YFWenu+ + 06GMdZctS5xOEtX1dLOedZROy2gMCmJEn36Gb++LzP0QOZYmHlglVgfhA5zhQIAOjYZQkRrgrmqx + Lltpqx2ivMdW/TXNtRxKG+FWt4mZPXnTgNRyvdUEQbZflyyvBNYYpInIKFXxH5gNaaxSdZf93UZU + Xlxk8R4440bOOMCf6JOgTTEiJihGpokVi+agLcbU67OSNWs25T5f5cFWwXEV2l+M9pY9ddiFJbXW + qWhzxjy2mBaw1xClVRUXBwcBqpxyVEurrtnvea2xKbktm6OidPAM0LIZUbqTMyLa3/RJ0A6cTPbl + PZNBRUSa2m5n74e82SfgRt1gaK68MrYg0F+4PZEa7bGNLdPqRiLpdaFRr82V/aY6pxo2RbmoUwW3 + 7mBbpTW9WZ/5pn88RmmQF+AVOIT4FT6PHOJiPtJ54XozV3Z4H2eDAcHa+OJ4bPQ7KjI3QQVxNYiW + dnaXAIYtloPKwFzGm5666CjEtDWob8z9eiZCBUJqHRDNwNQxsxr1BrhSaJg9ialCEexb86W07qWM + gPUtdVycx66c5bHyvr4XeaE/4oAFClZACDTbTG08AsudjsJt2tXj2lpM9a2Brfj5bFGBy5yijJSF + NxLF3rrSL9QQwWiZpfUeajnOAjqUVqtlhBlT/5YuAq4BVVw8M464AW/paKi4bNelscdY+6EsYwWm + AdTKSkGpTOvNTQvyPfEKwhtreYGM2mavpKKo1qTI8h6RefgoWGNL6siiYDBQYYfX2mw5gsHGjLYT + RdrnKA8RLFnM0FQrC2zMYoMDBJdLtfpKHXSb4ro/HJdWJXGymS6IDj1Bhgqx6i5dbi066z3JqzhQ + mC730xrS3bIs08RwrA3W2spoAnjzEa5LUZEt8rdSRgb4TJ0M5wGjiY6PY4b1fiyCQYBwLMGrIwl3 + V44H8fiwhQznZUxtKSzd2xFuabUojPVj41DRVztILg1Y30+D1fZEgbemWlc0WKFXuwKH1vnjdt+V + IziFM1bKvZyRsb7SJ0P7ci9ZdmCrBaWzb7S6K3laqqi202q7bdvd6xPlUJ4YmxmLQfJht1Pr+0bB + kRY6NO1359U21kL0o9OTJLy6Y5v8YeR5tDRXQbLMLhuryGZt3okZGevr3WRxoRYsw19pCm2GkzKt + HeFo3badLWNpemFVr1Q0eCjUCaPchColQjrsnIF0pPe1nsLaJRSFppslpYliSwRdAa2Pyjq9IIQG + uRUns+lu1nd2K840o5xeNS+CcneCRoH7nkFKgOe07W5Rvb3EVcsNqdprqAoUnCJzRiUToNemP1WK + 6HQHrAY4cgSXq+WOXKhbw0U27IFUpKODTTr9oeIdKpRYcWi9U4CEqdnfIBGyUY/gJduCf8ctsV78 + 9b7P38o0W4JbhETRi53ueE5h779KrckSsOpppFRaqGNTbSzqdcorwYR29BqqK9IeND8cNvZkQols + 9dhmKNqqMPPeflhYD2y66+hbK8Ja5gvAH8LG0cI3k/jgu6ZsZ+jqG1KHwJZt3at5Aq2PPbrfob3q + AquPD+wcH2+qjeMWqxQMWBo4OCJRfbUOV8UhWdI5Xlc7ba/cqRXg8UzaWgw8cjdteqPxkQC/FTAS + yCfC2MBmXRI4A5tHcFjWKXPnzFu61AeBkQSUCXqyZZtrZ1zh2TlB4VUQMUEN2rUP0B7ujLq00z52 + BHw08Co1YCDv1bky0KrmcHykHd6JAmzcKsCEhX8XYHNy3zDTaLTkcgnDGzwxFdrlxa7lEfK8u0Sm + 6w20kABhbo3asqUpYgfTNYSnm+2JNSKkOdkvOPREAbfIsHPoGEKvsrWPJXeGWVEmz4u0Cd32Ey5x + 8b80IwgO4ZBehsiXajMbH6oQDi5r4lyoaejUYAlURUestRgJ2wl1aEA9x2scyd2msoWm3HErCbiF + l0vCmuo0lK0DwQUeGPI9BFCPVXKnYHCEifPSMuB0lMaLgfk9fUK0cZwMmk+KWXfP3mBN9v9n7sy2 + 3ESadn1BrN+MAnSIxAwCBIjpjBkk5lFw9VtVnqr82VWlcstrn/RSdxNhv08mkQORkcGqDlRre4mO + tGWfXCYSpTeNbyba2SPFCmcwpE7KhPZsBnFMUBflOZv6w7LtTcpnR+sIZObIIvihLI4p02zWOybm + 36DleZ//j9z72b9285dNID3dRBo/8OO82oKTtrdnStszgqDaRJphAHoOOdm9HOMUXYx0KyJ0rWds + T8BmFrmzGSBpHa+d5RaHPMEPakPMFUNWO06urnrZA8D9Hf7ySuf90L/Z/ze0H5zLdnDpZDNze8Xd + KclCIuxhppBDVrKFaUjklYw87cTynMjDqBVQ4d5fAasjijLNN/Y5i45AR8WSyHYZctgrEoEH2Ua6 + p1j8L8g+l9b2Gyf/Efzng5aPo59AV7nbs3u53xbiMrM1zsuCElB0U9CsTUHgImhmuDdK2MZqcbe4 + 4U5YUQzqhR1cTgsUAOCEL0rm+PvbizN0tKZxxP3B5ju47IXaz+N/9vIf8Tc7v7rN9LvhH012doad + XVu6PV/mMzweTphOawfrtCPctq6z4Xz1FUPeOoe23itM0nsKcEw7mPCwHSA5hS0V+QWqctZcBQVm + 9qJ66A4xd8eU8heUww/5fzf7+ZDb/7zJjDq8xMMji3FT63l/CLc5s/WofWAykRjX177rOrhKAMkL + t2cUaLGwblRX8s8j5zW91lxAOMUmi3ENNzdsowJtzp48BCpQ6WpB6n/RWv0r5f9FQ33z+Pk2evCu + QnbENF7gZ1gv27o9e5KemFgs42V/iggJ4OZQPnFDBNueSZTq2pYDUjuXVYaOQDtGqdMrkV3ywNrE + 0Lq20oHkV2xzVyT75E5C/3e7B0aeVn6hP66SCkHUiCJvA1xRJXVHZI7gQu6c17CkBmhUnqnFjugM + 2cJ00m0EZ9g3jl6xXIEtHdUk5nRhmdCPPYAGcgIaxCRm0bq6Z070LLC7v3LKN8Mvn6yU8g3swyvV + UIWRnEc0M/AtJqVL50CBFm8pFNS7LaGqglTCdc+oBL8V91ZfKPrheApEyC067+qRXqCl6XxtAdhV + mtbY3WIIzNrT/Xw/XaDmtf3f077Nvx7G+pogZVBZy16npDWsL2LM7858QtbJ6qvn2cjNnpnqi+ES + zXUb33q5cUkcZaoOvHGVd9xh6aoTb87McTdA8DHrR4Hm77mD+SerHyo/Rfr2L3/J+alwdh3WxbdU + 84cRl9ghuwhURItVOAi2LjHWJrKNTgixKW9PcpyVabEtYN9uQ9ijC10Mrgy9PRgVPS9MdaQbvN+6 + dL8GLXWZIrQiCVr+RO9ufug993/Ty1/7+XQrNP7jc1ga7djhRLEm3iozF+zkzJiLrkev6zI06vpq + hyBouwnzodttF+g4+sWeUNumbFGrxciq981dNbvaYSPUjFrY8iZ1S+2ezt74n09heWH86ZHxJ+R/ + koq7Ft2ZZqCLpCBQ4KFqMA8Ls1HPMAaqZ6MC1kXYI1nm+oOlbUK8sKqGbXXIzCDBMArEhukxzqvC + CEv6GlzIfdgR+f6elewLZH+TjPt7P59uhaeDMSGbF4/s6iYvj7jD+WOyvUSUAKnLuW4nF4RhqgF1 + H/QUPrGP5643sACismk9eekytpur25URhQFoWuvXSxvwyHXqBMHguH683BNlnkUmL0Tew/un8Wch + 23Hw8LXOPDXkRs4FemSpIag2bE5jUUM5p52AQOiyYwYpVhhYgPPG6E5j6iKFaDUepQH7DbuhRFj3 + BnvaFQClwWV2GWnFbvw7wskcB59e1fy0/QvCpyEv8iF/ZD/WOEnwBgzAYMQDHa02zpM7gkchMK8h + dRwZVqkpWJtJf1umpQp5mbIrE19ZstRhE0JvceSiQYMJIrbTXKPwmF3Y0z3Xit44jb+ovI/yD+u7 + OO/r6EcJiRfHwp8cQI/AzBtortueFJ5mkIw9ECI5R3KRXUVclfWorQmZ6hrPGfXsECPhOOM237qM + v4t3inRy7EQg2vNkIqszyKcpUKAs6snpva4c3kT+qPvg/yLyPcq/N35GDH0G8rdFDfKFfAxhCKdW + jqhVWTL3CsxUteXKcHBcAW/2YUg+NKeKkEJAixqF3B8dvXXMJUuuoySs+AC1dlL7w05xIp6GVDlk + 3GbTqNN7Y+ErSOFLhXfh/baQebb8FFsj87vmcWz1fA1ZZ+RTroxHL7teGbg9RhlLbQtO5YsLdBCL + /WnAZbVy+3iqCSRV8osWBpTC8i6EuBIpg8GodHkWZi5kdjU3Ofex7V8ovI/ts+Xn2T44izYLka11 + sgoWGRAzUXU03DhIOVZotpEu/Xy5/d3tXZIwHJbztRHVzBjXJBI1xVw76bbgkWmGSomwXG3x51Ba + cJef0Pfi7ytA9+TR/q/hfVH3az/Fvmwe008v/hm3A6ytDyOP8ovBitl1PiYxqYO92CtiRSndNJF2 + xGqHWgkkd5MNidKHEyDz+3GTNyuAbUskBuyj08hOt3XcuHy3n/YvRL0L8GtvfH74g9DoerhNCb5o + hT88nYD9n48CDyG5lTR6ngIwkxnLcbvR4i2P3F3iYE+eYYIutWCDy1WrswTGt4Ymn/eXrmBPZ3Vg + m6NGIXRM0TvdFMAY3/r7RN8l3a0p3iEZ1cNtYP/SfFP6P/v/7+N9w8NzR/0o839aolEc7agImUuE + W7FmwKOfMwlH70dHueg8Gykjw0R6Vpw2DJhfxszY0QtxhmQsq2VKxcB5M2JuYyybrTMPfQuEAlUD + 6HusP1+O8W9LL/6G7T/60uVR4kjzR3whT4ekZrSVMhRN8jNIG/zquiuXdKhZ1t2lWDnvZp4X4otL + mJLnmWTVSj3WGMoeDogVSHU5MHYbQeaKdy+W+h2uT3zZes/N3zfB42sj0bl0pCCi2HuytVkW8wxJ + fAbM4moXZK8iAdxHNgr7yTW1cMXs2BbZKrujVF2LgrvM3ubakdLcNY3uRnymkB0EsK71Kf53Fkh6 + 08dfk3/0cZLduAkhJg6BwbBhjYKUK51eVxYKD8dzzB33G33YDYcSzeJ6RkTCARA5iy4cq3WYQMl4 + wMq8mFshg4Z9laI5nuxAbXhvivE7ZHedKPmzg78GLlSHuKy7B1Y5vvVd2i8AAD5eDa6/hD6Mmxjk + Cd28D+Nwr0qFbIjLNp/2DOgRoyNFk7PpOi+U1HNcxBOGbu2S6WgyggXSsCy2sa/v3pf2O2J5Vb6U + +hno3138NXY9/nqu+5FXKSstD6ExWGeQxCybMm4WiAk21RXbxp4qVY2PgBGZzwshiKbflG2k2FcI + vYynJfRFIPP5ktlQESkNKy1KoLKiasKynwHf/Sr2M+h/Ovlr+EZbfE1aeGDupghvhCHQRsC1y3bf + EwvdOYrhbpW6tqdNz0qdBfvuRJ/3OeJhok/K6v5oKUslmudbUEroPGsATZNpkK9pKEZyj363zszv + sPVt0b/U+hn0P3z8NXmzrotHntNOVpIa0W1IydQtrE9JveK+dinN0WfLgnbj03kfh75SHDdX5Hzt + 4Y7aD3YUURt3xGjUNXp+5NthSD0KH1ZJUqx6++457d8RG17o/AzxZ/v7aP/8VPBvj/fIgUnoCzz7 + yu7SV1XKKpGvlExaHA8imRIsPgRGvdRtw9joxgb3Z8ydTzptzbVuAOebcNyVejPSeAvH0PPhMIq7 + fPsu859q/+JYzzte/pb/owfWsw5jXMZzpba2xHGfVa6PnvIR6MFj3M3X4KBRBQUxOdRntFh0ek3j + rBFsM43sSsPBaz/fejhm2IFTzLssR2VwOn+G/H2j6p/s/5b2PwjqTBpBAkqwaekAO68Y4HTLd5s6 + 1gn7oBi3hVNJqirXaQsmHDuMn3cnrRdcy2XsAKgV9arjBSQNgCovDFg4E0Rhuxj8BPC7Y/obLj6N + va6SPB0fnY4vny1JxTVk2SDhxstM2QFncg03POaiIiiLfdqauzO2NQe2BTNqsJQxBm0KYnGQ4A7u + FrpmNCFBB9rD2kaNbSeQp/Ue5L+ReQ/ul+b/Cep/FNWtZPRExYfsU595IEDuWI/KZvbp9q4RbNXT + nq2GJJIb/kxMoV71HN9GKIfwfUyQ9AFo0noNV+6AowWn6XK5AGN2Ut+dO/4J3F/G9j/6+m9aZJdX + 0SPDThLKe9OA0Ka2GWzaDoay69DGrqDjzKVUBU9ryzuFk06tF6shIU9HZfXtUNKPnhkxIQq42VGa + D706lKglGRTi20fy3T2xP/ELXqr9dCt89fLf8H/6muZXkZxXD9yY9FhGdcJmm3qRWguKzqV4f3Jb + 5nTCHYzXjew2Vw/c7eCCHaCZ9mLt5jF013GMeZkhLpvlKprKrhL45jqIpHaYrufz7t0J/Z/whV8l + Fz8lf7olXrj6b5qDqaa8q28L5Wqw/C5/wvvQwmOHKyskkgwQInieiwu5WqSAwz2LArTOwdtcOl4r + I3GPJyA/HM5cENrKnmdZED3wCVpjvelpHknjQg1ws8SGqCl4nw5U8U/t0y/aP91Av/P537TUU1rQ + v0jN2tOXzX7mIHct9HQq8I0I5RLuZ50DI8tB7xh/QBfLdM72HuCUrZhuV94bEYHBwqOgUQcKFHJK + 2EjnVIbIJNPQRNtfPh3AnlJ97k7Q+qC3/6ZdhCp/XGMAIJGXE96OsdKhp+5ELJWjbz0P6laQtwE+ + bE4VdZ6vwrUipbDeWROGgaeCd9cBpfLGEt2gn9l8B7Pn/ggJxyxJdvmnX5i8+ugdTG+5+G+wP7bq + s8A2qtJMUWYxDGqgLJaY7qUxQW4R+GEsF6SE+Co/+pVIQtoZbE4s6mHzueOZBuYIstNowDbrTaIX + WSQm4wk2J4T79AByR9HnN338N+SleNHi7ikcPY4/t7LWtN/qEhKj3IGYO8trDQJ3BoeklLWWBrZj + Y7bbHlvERBettIeOYDBZBQZHM/JIOfZMTgFXNLgq/DIuIoVh47tXif+R3SW+qeqSn4o/3Qo/Pf03 + bXG6UTXisHtoNiPIx4cqC7c+ro5bCzgKEefygzuqCTRA+hEE64g9dSKCbVncJshGXCzacwm9ynjs + dGABW1bFpsazDIIhWihspGpb49NBaLz93ftXkj/dGi9c/TfN8dBq6DTdlpDchiSwi5F6h6fgVRpW + tALtLa066n6FaCo9OWY69x7iVMq64FQX183WKDUpguLV8GwP7GuV8oKsGDf1UEv0Z1fXdxRDf8vF + Z7HTcRPf1iRVuAjV+ettz48Dr1tRqtgmSKAHKN43Xcw19rRRyoBnueO62gBHVPtMIuMziZVABFdr + bHdDG+puxTSSckV3pAWe4gs2KBpk7/29cnarOwaD6IfY/Bexd6D/jZP/EP4/2ug4pG5z2oSzV2en + gySlaB9o2cRxQEx54GbLbE+zNhfd6bI4J0Dj1nb20u2yHJVzdh0pu6yVmtXjOi7j/WXcQE3nGty7 + l8S/A/Hvtjve8/j3bXSoo2/lER6Sb1UZiCO1OQBT8FhWriI7CBuUoFOt+2u/yYHVsUTU2uPddkBW + SPG6LStXooJZx0bK0yi0eTBnzeAwOvgBt49iaJ4t4Y6o9BNg+ULop1rg2cF92VYvgOd+WtX9kIdU + 5DfDt02XhyBv5mmiu0IUTYtU8lNq8V23tZOA2h+aZUtfzt7gXq9HJY4sdXMF7OQaJhu6rhBvCbRp + SW/Rn8zJaDyZur6p2uYw7AXpnnj0Q6r/Suo90H918VnsT9NQraunPHpKaPk3UejEHHcb8KiNsuvv + JyP0jtuiyMJLv7kuzEnKMJjG4Q1bx5lOsdtTylmlw4d7Q+XJPOJ5Wa+lElBF8cwscL3M0+jL6Ptp + bz81P00fmx+a/y7+/NnXZyPP6xZ5qpJX9w8t2ZZEo+LounqKLTiY2I64XmL9Yp7A1EracZOVSXvN + xTzM1fPMo0fgpFJ07lB2rSXVMZ8bjyn7/R5fgUwQlp1aqVi+cT/dHOEvgj/dFj8c/TcNwZRBHEVx + 9MCDZe7i7cptd1UGZ6IkEmY2qKVe7YoJqoD2rNU+z8GU1tdNzR9OZonuihJr8MMiIXpxRiJwYA4S + VCccVtcnxpdcg5SbO0aC1/ji13o/3Qzf/fw3raBlS3+LeQ9cJVys/SSXcKyF2SnVu6PXVTVEHCr8 + UtHUqhNTgce6L4BJXEIjrtIpoJuz6so95sjo1hzGEditzNyu/IjSA506Jgm8e5rkj/Sa13o/3Qrf + /fxNKxhLP8QlV9RB8NBKh9iRXpe9QoZiZWYuXkpbo1rradl7pLTntudyv5VaPmG5wV/FqVQ8DU7D + ZXfRyvZw1qB2DkrmdFrahdrKcoWyneuY3J3xqH/Wmr7Weif91z4+S55/GuUfiRuRw71JW0o0iBe5 + kNEZBE2fBtOzb/EFTzQ2aCHIuYGOJAzjixheHQCz99ykQrpw1hXrNvkEcCCdhwOt4Cddpa8Wkt3R + 4bNXAu9g/M3wL8H+oznPxbIivlJZMQida+qtnYlX86WzPZOXAYyQzc3W2IqI2EA7RUWZo60wHn86 + eYcAvEisRciDDQQNwIyUqimnlglbAQDup/yXs53fefk0/2FoHrgBqhYLgm37WEZ5GQGKNJFtPu/6 + NNVnCWNKw8fXUwD0WpA6vAIk2xlcQNyxUFo7u+dhGdAJJdmLZtJ4HWmhKErDVNwxmGY/1d3D92b1 + WZ5C9DW37sE19LBowqO4h3z9oMhpDawBtyC7BqfKBXcDqzf03daaDKqNzCRzqFA+bjfUMerlsKWz + nYDyWA/14nUfzaVMS8dDkEPWu0ezXyDKv8u85+DKH8z/GrUx1A+9iifPzpNyQ+QJ27CH2yC02FzY + U4jezQeyLIxkaWhB0EZi8Omdv51U2Sj3fKumm2NZHAYr35zny4FLFGmtGMHVAp9X3j3W9jta/Uuh + n8H91cFngf+baxvxCccLCtLbcdjRt8gxOPiBukXh0Dd3F+SaZFXCN+Hu9j+KK3FeDD4F90od5pys + 2UTNi0MnAprqkVeaqanl2Gz0wH73oqkXsD5xZeMfrP8Lzv9oYAx6egaCzc7P2fgMKnGOC7nIZr06 + 5E5El+LeDy4nbGPvUfroJ7wqn+yR6hrL70hrQqwr3zncRbV1ikgdFJYpow39wx1bkq+w/d3o+EdX + n2+ONH3o3C/LgPKiUkfabHCHJ6GrOKDAPLvWeglm91hsHU/fr9iphMSzBtaEsp34A9p5+DzPQwfs + djEo4/lORfoVaq64au/W1rsjvhSvBN6F+tnwL8H+oy7u6KtEeCyg4uwaJXZXsGYO6+kZgUjIo/sI + w6dVPfsRf9pB+3VzUSeaIyeBCH1/47Jdzx+bMKkg+jqcDYzBcAVjvf6uLv5V7d/27v/18rf8/1Fe + rYdSK3tA4EQGxyt08ajAZACe1o438mMGRe2aFbsSnwkQQrb61ZMnCw9Op57qCShHOkxMjCzbn3eu + BwTmWceQKGetTzTAX+bX/tbNf9AEff3IVAQ8cuMma0bVD6ncYfBYDO0RKhdmDMg2LTrbSNfePUWr + 7XB+RVGFaa1N2YN2s1liuZmxrNdIiY0XcjHmYSNN1gSOd42qP6i9EPo57E8O/hY4HQfjA0M6gVyI + brcitIzG02abOsA4qyUFNkyccmu+MXQvW3pNyAkAAcR6kQtB32l9KJLqqgoohu1ahAjN3cLxdO3a + atcS6Lv1Zn5DK3oh8xOwn83/FjUz3WafRj124QP7t2aGo1Ci1Qbbrtj5dMAMVJMg+SI4vAmRmXbe + iQjtXilQWFaZDEie7Wr6ZLsZIl2uE81QaLTpVwk5HNfQH/bqFgJC//4x9Ev8JLZ/KfYT2F84+Vv4 + 5m2QiB8N39+ecLvjL+IFBK3jEQ8PCd3xNnc9SpZiO0VVOwO1wYXhcF1sc+M6JwCUmK2fn6awCyrs + Qs9gei7MabvhDWeSuHg4S58ILk8jYvy38F84+Sx8NXj6CK7V9QN3yA2mUxVs02ZYndINXnT4abJK + 1rUhltHzzAaEI4CICzvB2mmxL0MoLgPr2/xm9bsxESdvzsKc0BNYWDin2zYW40fmHczrZ43NT413 + oP5p+2nCzaMPoxCFsz8RZEEFqz8We46V6nO4XzhSN8U8ZIJ8d9HEM9vmrTNXEbPbCXEWOfrBZqwT + ehrWI7zQU5Pl9kneDhkOYqn4bpn8l4iaT04Qvxn+JdjXc8J/kbCtNFyGuqCl7no8m84Sf+ijYOgm + bjqoQLhrPcI1QT3EcnaB9rc+b1QFXOyoFt/KsGzg6VrM9M6jPcIOp9Wg18tmTe5JivnO7dW07m9y + tt9x+NkG0rq8zId8euSG120eAnOeIlwP5blhlAw6eaSzP94WSB0orzG7tSeG2sDCFVGPHNVvbS3V + RpLaWadoaiRNHusOHKBNWuJlXIkSqs2t6twxe2l+1XgH9p+2nyVsxwFTPVXaemQtFkcYRUdTTpQD + ehZYV36XX5W6RS8qcdyCuuOoLpll7hL19MwLW63VYpHHbQaVS00U6XIHEAsKHEzcK22CTD2Ppprd + Hd19joP4tcg7GL8wvgvy9x3b52SuFwWp7Z6Nb86+Lsg2N5cPSTgiljqTUnk11WBeALcFbaXPYsTv + gO3BE/M+zC4VIAOCcMwaby/Z+bWDjqwOWSBsrhNnxc5OBynRBYvR0+UrienFKr4X0r9vvX7NyvpZ + S3ruk18lv9cAH3H15dnVp5rDrC+39v1i+GXxuDaIgu2yXXnzGluzmW/hst2N2Ahnm6Ho4+M1cw4F + t4uIoB57hgbZkBkzPbckuPSdc80vR7NyA5bmtMmVnOta0cLmvHv3RMJrcMNXnf1PnfeBf2H/F7Sd + R1KG7N0WohIdxmUTopT90QwAmEQXuxt7bcCOEsyiyTaWN1svp6XYk68IFTtpd6FPKkBcuM2m2mtt + Gasn+szTloSlvZ6+F1xeU7p+ku71TqpPpfmevmF+4WP/sRG70BShyQoyQG6dUmW20YHHGY8uR6Ix + SBJRAf6Qb3ai0ufplfftYte5V49nvZSByXDxtQY3DC80L9JlXJOzBer6USreg/pUTe/5c2T2St57 + TH81uytKK4z5tSJZ0zwu+1NU+IwDzptYyDgEB3gCgQW6nPuZO62VOc/GKB7YGLwt3SEHcf2Onyh4 + 01vUdLpQIGI0qA0xilJi5ACIhGRqess0yQdofq0d9kPZB0B+t7grt/M7w6/FI28kn/IcHkdzOlSk + hXJqAxqayiE1Q9rXfl4p2wM5rwxJRst36BQijIePPYzFmZP104l1qsitG04xznt/q0btHpfxqzGw + sLScvOq9oe07m69FH2+Esp8aP8r1le1fEH7Cq9VFHi4PhLw7zUqeDfLJMhA+U3G7Dt2Eugx6mbB5 + VuLijgR7cYOGvmUDVFxMQeU2Sc6tvkc3F/us4BOFXldV0satNZLeijbv1ld6DeqJUvNS5n2cf5r/ + JWo97utiemR2eA3dXuli06o8y7hoBNvTygAmER5YaVB7Wz6kpAzXZswplYCNG2pVz2SNU5FnogvC + XVkKpqkrQR23rXdu9ioCBqn37tG5/6XVvRZ6P+7vDj4F/HvN2QcWmq0vgK5RA2Os4PZwcmKBWXF5 + 2jgUd+yfaiq5zqFPLUo+YzRxafdkOsWS7dhOMCbyYuhIYnezl5B9uSgbveRHKMZ2/EfjcPOLvo/i + /WH3Kaqm36Xfj909hOkVJslU8Bx1Zp2L5iycPzGhxoU6rnPTmVUZAzmu/UXBUkb3zramoFib6b1n + HfbQXhaTo8wZu3HwuzC1r5p2wKYyhT7ad4dX6j5K9JvVXTztvEKRL3qc5rduvjyuqjTA2sUcgSBg + DhschfEGgjIr1nb7enQWZjVJXAxQgBr1ejAVGhLcClJVtA56OK2OTA8OV6YagI5FxB0nC4PJAbsY + f6+Lzs/iutfi3qP52ugDVaZvXdIY/Cryu+iLnAed/1zTCvqCPmRXZ8AIre49g+/OzD46x8LqHYM1 + n9ydyE64hlQTFp6RpYkEBMJoFZg8oth0PnfIHSx2DreRTU9UIQXAHqN5y9tgyoj8nuOtW/XfdRWv + dP0e4W+ef14DoG/Ti+fh6WvgjfzXK62e+i7yCHTCJMZwcyZEnuk1ckeKJD0XB+ZKnoTqNim/Atva + coF6T8PouZFHTAzEE2Lvhf6gV5s9tthbgE4vvkqOucVsLF46N2X0+6G/+inq/ELUn7i9evjL14fv + gfZl99DLwDaaa4JCewROEgpTpZcbBgwhOs70Zg3InGkIZNAQNnVqaclnsZl3aPK0HTH7agrwFOLY + 4OYAQDZodEFtW2k1Ni2i34fCX1kE79369TuDL+9f76XHZf281SLnVXvr1Q9awycSSOCnstlDrLMr + OJq1NFnkjwUtuxW3BxwXjWs63afB0GU5NK2BQx/RChRcPmsNqXWOCTeDI4RRcNTZPdGx1kU//55c + 911R8VPR75G9evIL8u46vRtvS/sy/lL5TzuyX76eXbgFU/QxzEKwtQdEzmPFE87wmasspWcQqUBQ + 10d8w9yNzoHGLeKylewOL2DcbKO5BTLRCJnGZvQtsUEVe09mW1zzLcXdyBHxhx2+X5T1L5X9gd3v + LL48W9zP8AvtD/5T/cF9kcfV8KWv8tsfjj0GK0XeRgeuvAAnLkjseiNcxwYqbvOSfh6NWc39RWSu + 3iwJ6tksWPYo9CN6rGiH2df9jlk629C65bqzuqgdxCWT0J0/Nr+Pfr+HFD2J7dsi/FXsPaT/18mX + ZyefgC+ozycCu28XwD6sPweAtRX3oJCjvY5vtkmxi/2dOM8wDGPIZkjPIW3AFyBrLaznsi1LyTq9 + m8SKHo7kdpNSa6OZJ5Wl+aj1PYQZiF3jHX7/Heb3zPL6+QDfa6H3QH/t4NO9/fsu3+NQe9boiW1V + xamYRcjlqcJ6EAihh/peLJgt2p8hvJaSw85ImsxGebq8gAOmBlOgXkCRAvuZ0yFZaQ+XnsrAhEgb + U//Dvc6/J/V9y+4TkH/s9n0WrxGHY/d8aKFbmqFOO7/Jlqf9vyJ+HHG6qA8XkjyPNaSOqt1t8CNH + HJQwK/3ElF17onYLiufrpZOFjVXEkQB1LUJKXA/n2zloYnOraMfuCs5mQp6QyV/bI3pPVOm/qw5f + qvZfqL6nEd7wdke71P31C3ybgUD/d8WxL/8ftZaUbW3MTxmoAzOJpBxYnpajgCidxO9kslGhVK9p + M6IDSJZx04c9RB3YK1qoPsVAXrM/hWA0bO21RzuK8FGhlyL1D8mbH2LxH7XhX/4Zd7TsbW34f35X + /rFV/+WALgfdUjGG2aBBuVFB4MzJ5AQd040hFqYFkUUjNGzcO2cWHznlYLdsdToGt2Xi7Jnx6OMM + 6BKscID3G4xZ4GCQ7bGJ3g52f5T/d0P8/W7vGPSfnP/5NfyXDYaSY6omF1dsxdrZpjjj6oW325wQ + T+Q38Ekjm+HqpVFjQASbqoxZW0BhwHA9KhKiHWBE63AH1Bpzc5ZIhEPpmQeN69ux8g/i/7657nF6 + b2OR+P8HjeVmTGQcT715BfZkSe5mwu82oHV7n6Y9exCGxWMJDqZOLqAeIEvzTmpMWY2I2QWeLNGO + O7netT6btI4K+O4MAjvtIipvh8o/iP8PGusOpx9orG+tcRur9nU1xNfhcQNWIu2BrvTlJBbWU+an + Vxcmjts+n8Be685nKUyUFBZCUiiOF0/Om5oszqHvHUfMGgRMbIP1HCKWeV45mcXtstcdivnDN/Bv + RG4jQvhK1e/x/s/THxhEvnHbjUny9BH4YVutjYzss8bXdVsAG0x2lgXT09guXBbp0+QMNpV1mHbt + rLDdJnRSYu8ole3Z105VFTklLS5id2S9AxgOOc7YQU5NNQbehBa8kvQmsW+PfmBb9RuufV0U8beD + Ng/rZygdnskNaO4iq5E3XgekDLM7jWyM5KFayX5RMtk2S8ILrJluECz26KUZlpQlsvR72exa+Tjj + A2qm5iICltwAxwCQf7/n8I1D+D+y3sT24vGP97QX6J5SQW8ToO72lj+O4joU+NZpIBc8OXsZQCd0 + YE5AISxAMJ0l5VTWTQXPcQP6yBZuLE0iousuwk3Cropjq9cpEME+mBl9qvclWwk7ydTk3w9wv8ES + /qrww0B/Wn6OrVCW4/CECIQf9U4zjpTTbL/PPBvSz52HsS4/bn0bBzTssE8Zen8pequP9SSrVYgF + Iic+GP1BpwrLEWoIv3AiuE4AMsM+MoYIcLlejT+cjPgNoPwXgR8m+8PwC/zx971s6urWFl9TrKiq + qgf/+3vyILqnq3tEWe6kDqtIyIkRVa7BRgRQMxN+IJX0dBsmB0FB+Ksy0FERTiyVAJbQYmqyDemD + yIh7yDf0CbySW1J3sx3mNn8oF/QD0jeVXxOm/P9R+Q7iP1nfE1e/nuF63NYAT3fCNW8vcAahJX7J + JNtCHLIBx0khtl1qtE1eyPi4NqWRXJPTprqNPaE22Fjb0/2R5nNzwgXN2polvTmAE1Not+Hpbagv + Jb1D8OsBtA+/76/nns+N9JBvLbxFNm3oFjwRKJUDV1iOsxudIzocsC2mY5Dz6aCcHb3rLjJrCbZc + x50zOLfYQEINP9G787XmsI6DGmR34tHc0XviDyVkfjsH/KbsTXi/zBqfLT7E8Eelvf7b0b3H7QSe + spMataXPbcQL6kQBec03F2E5uhSFaZWpFPwVLset56LthDGyEElBJYP+JeB8KUf0SjnZvtdTPQp3 + 08pG8WyekTc7X/RCXPRC3NskfzW6o0O+hPnj97dDYg+LlLHA64ycu/Rx6g9mfZBJ+MheHIZxnZNx + MhEWIQfY4Lp4slsNiBs2mknIWChHkExH5TuBcfSYVZmK6Qin4PI9wqV/2GH9HaKfv1/q/DjiX+w/ + Hi1f0n4q4GXd5rC3eCtUSf24TlyXexbH5vWIHpF9LLQXGi/K8hofvIHjT+WasgftnFi+2i9to+N4 + A4q+tx786jDDPYrWfU0Fm7RtqrA/5zFOAMtJ49+OBS9kPtXdmr7KzH/K/DDrX8w/17GN4Ubw+fTj + 4yjvcj6FpnSI0A1IH7bnafD3cCzpje1dOygNjxGOodSOI7hqMopk06gXFxmXCEPKgyrWailNVaOc + IRYbxtqAb38bc/5DzcbfYOqfFA4vFH4Y8E/Lz7H9eqXiw7CeTtNFTAxXPBzw6wYhIjFFrMXWDL0V + rB3kEVFw5vsBXsvZdNbNPnRuz7K23ox5mgQqLCfEkni54DOnuE+qAkw3zPLmKvQlnOGFuA8T/Xp5 + 4udg3trhqfrGw3B2/ZxMUALu20tGkB21MchYIZW4DlcExYC45PaDyaLFVXO3OAuUZXmKK3wIKigt + FFw7TIV0DLaBRrmbeDsSSaqZlz+czv0dmVfyPg70q9kdSJfKL/Pwi/51t+pxOA3FymEGnBL7RPWg + 7UoZswXawsClVoJcK6sKE+KPQ0c2B4EiXQct5gUdtUM9V/QcuYKxi0qKBZGsLhihiKyG3Nh/KL31 + ncs3ad0raW+jfG3ycYxPhSV/lj96GMSLG1kRkiAaFbFcUKxsPzNYdlEoRdxJetknPuJsZA6hQpuB + QwLEBqhx/RiWySnxNteJQSoJ1Ldi0w1mTeGwavD2H+ptfyOS/kbYmwhfGXwS4Je9X8RPaW0PjJbc + qdgNkWqbmGxaqABsQU20gQ1+W/7uM9NX29aU2SEqb38aKG8g6IDIwuKk5RBtHURDLPVSitEmxAl+ + Y/h75BjKcPCHK5d/Syb8ReIdUH+YfhyvUA3xc92bKf5C9UsVgujDyjJ5YejmArPRDRgUt2YA7pSh + 7inOStOo6MUSU8/RCKS0BTUYJeSAfEpOdXqQLrofFucjI0YIxeGTu07hObvNddvaK9+Mm/kLcf4L + cW8i/R+jL+i7h31+5LE8cF+0Pfv8dD1qdGOorrA/n2qzL+t2M+JHkWL1k2CmsQliaXth4cA/B0YZ + wJfZuDIUSfFFnbRpKInhgRyjNI91JfPFzf7NNzz/0EQzv2M++a/yfFy+ipY6t7ZQPmK5xMHwJg8u + WccBBnrelSTVbNW5PlGruqk1mrLDDjLY+ciWEH8+kPaF8ewaWifZXOQymMyLDQdO+g6rDyf2fDaT + 5yfDn2WLH9jdZuZA6WY15jUwFtWUA9lFV3TVnX34shST62dZKF8w3qitqACuV5O1Yqtw1USeO1oT + Sq7ooZJug0PWrT7ZVrZmRm9GwRuQn/WFP0jwp8EnAb48/v8wlvhRDRCHlcOMCJgQK4RQ5LFtJSoI + bwHqHk14Ou1lq99ZuwvqYhlLVeqOW0WkOI3EfqFptt4KO/ti9FVwMXFhN8/54e3A9wpN86vGO7C+ + OP5/D2Etb+Kn6ygfuFMMcztk4MsAbPX1tjhXHAKA5RMOCpI2kEepxDN+IKxyGcC6SFFHFOZZX5U5 + SjgolVJtVUzhDMUqe8FPjcV31oHu3D+cCvlJpvlF13skfzz/8f2N5zToh/XFDR20wqnp6QaK2GRY + hnU8lCFUx4foOJ9DDWTsa3/phRWcYTNk9YuHLpK0Qlqbu+yhZGbNsGegVayWJjSRJLfiygdvUit+ + 6nmT1nMK9If72BOlL8z1e/x84NurcdKli5BLxmH7qljE+TrPvm3nRm6zyo4rUmcSm1iFrnun88it + SndHfDgztgFe1NYjuZlRT5Q5SMPawLGelq6ShH+oufySRPw/2t6n98LmTpLHMe6W589K2KOOLrgV + aCduvNVrPSkNeToNiBh3GrQzOW657L3LUUvrs39NVxZRoFqrAZDKdqTpqE20D5Wi41BLH3q/HCRk + XPsGDVvderfnfWl/UfY+xR8Wz+kXH5r4HeKy/naq6TEFZGjRFRtuMNMrgKDUMm7i8cptSsqxowsd + YEAAdTS09wPoANdHY8tDvMPdhjYpbBtnzEXatIjEbMAISA60WFYd3ivTm6Nx+VLRm8y+PvnxTw9P + ucd2HBh1eHk6Iffj5/fyJY+jyLajfI4CENrHhzaAN+NWu+LmXC1sgUK4vQ6SPeK9JIWbi625h6jJ + NzuWuUTXlavz2GWb7enSL9wsVvsZkyTqlIjn7s0e+JRJPMdB/03rj5/Na61v8n3Pxx3kxzLunjaD + rDgc6kfmvRyPZqGZBYSLYJ7TgbjP48bDeBDcWZ2vxydMxZhan+EThPAbU76tXYhrhXIV3WwpRzMK + 8UQvbI+N9tn2E8XB7Y6qz29ul1fftU2vtL1N9hebj4/RXwvSfb1D7XGnFSIHIKFYmraBgkuYAkQE + ofrVReK5Ct/zBAz7eBKqzeE4Imx4aUB2wGTwYm/tteKbRYcUnZrEcVjVA68oxY67rR7XNyF+rSNX + vpD1Jr8Xj398uNHj5FtOwgOTqw85xdY2cUhEzt9WNKuEyQiwDRPlfGOnZmggfHRo6GnY9r6ELiCH + cXPTacvanll+q5g+px1jW+FPQE4XtCCft/jbKRrdr6reBPfz6c9w+8LcZuSPg4cgJMtBZzkUZtMS + l5Xcy6w0xlZ7lFCcUvz1dPArzhf5iwrl4TkXlkayCVe2ZcH2s0W4RNnmQJQWEolxUxTyQsGG9OZ8 + 5wWO+Ke0jxJ8Mvk0xi+CzMXV97pRj5t1b4ddX1CXLYGiiiN3J7GbFY9ZgwMVjuQFxTDVrYE5Mawl + DVNvW6S7iBNWHqy6FJXdzAnjpVomMySHDcjRmJ5DYHUP0y95kf6q8y7AL+0/T1vO02yY46d/PvBb + rR9ZPGccerP0eoolcezoKvAAH1fvLISjdEILxNiGnjrTET3Gitm1LbzoZ+JSs4nAMZXUDLhybmS0 + U1c967FuUd/OVP0VVvE/Mu9i/cL8c6h/Vll83Ecw8dKJNHrZCZsdASO+PmJ0Ywg5rw8dfiwSzzj2 + AZS5fEfvPVV39uz5mNR5UyOyfzjxtbnN4R1xJg5V4jOSTbMle1Q+GGJflM67F+/PmnufAXuIB/8p + 4waEv+CPwbpX97CfU+J5X1MbbscCR0lGRrlldvGMif3+cixrXgoU1CxUT/KRRJLXzb7J9aNEr5De + UyrD9ZbUqvQmqMveua28DfOjWMvX8j4K9bvZl2ezO5H+i/23je4Iw3HdUD12VRDQPdHXqOmZyyGb + ZjTGfWWKWedUYXwBjpFi7pXsFgLIwtwmVYjeHuKkDA58/7LZ11MzHk8OTxXCRwPCfZtvvzX8VF81 + b+z+RSAgRnws5NALlutuw7VQdbgchyGMduZ1Q+TBOgOYoDpMogO94x5rfjrbG9mUF6UjVQQ5CYeu + dYMwE49iVfdYXNfu6oofhfuk4dPB4LXxPZC/piz1P37dJkQ3gt3jIINrF2qXix15pYCxWySVQVMb + S21LUhY9gva1Q/eGyB2PgKPgc6B74ZIYklVrNUzkRYDmageFe70VhYqblUNdtJlBvgP5u8jvv8pX + It+B/AfjOyA/Ou1AHJNjDk3aEbpyFRWuOoxSJzYt6MVyB0xqqxWmPD+XvA3ACfsWAuEDD5YqGFMi + P4Alb8PrWdqJEXGxENzorlFEZfmbmwF3pBvcnWbwDdfz57W8iDvjK4r+y6nq/SR+3J6Kl5EDWbd1 + ofusv51K1UuiYwm2UnyO2hUSt5eOqBF2vJGOax7dyTCjOvltxTBf7EE2YVFbz7ulY+Ftwo1soQSl + 1nwI4/PXsyep/Xep40upH8L7Bxcf31H5jv1fBNp0tKFRgpJqk4SiCA+i5bgRAcLZhgWa2Ic7gpUN + dQUTctKYNtARj7pUo05P5pHUViov6ClWr8rZSDpozyfCMWEv5NtriG/q7oyw/2N1fzfm/SoqHjkl + UKXcOCkEXZp27AZosYEpgnH9WDlU03VmEGzrDt5KLHVtYqnqZaV5FiqMlFKjn5ELUriRnJqSIs6g + JyQGU8y0br39hfg7luyVtA+R/GZyP8bn5I66+R4MHodznOClctr8IJFlA3MH9Ey32p5VcDwWN/PG + UerSlxCHBsxx39WKKbNc7AH2vtwdwh29mKxUj6iGhzougsfeb+mGSP5QhvgXNvlXif1riR/C+ovp + /Xi/76c+juty4IFDEq38eYGJApEYo9JyFonmljCBq1wZot8RfbHkJXU5ZWBqdsYWPB3VYSKuftdf + RAR0aEOZEplTd0ftLBOa/3ba8Y/Dqa+1fQjoj/3UD5P8UXqBCm8t0D8dYu2+7Yo/puSoTTJ1C5mH + Zd1MFAfiYYyR6BXcaySapCVmiPFGI80AHjy/DsJJ64IDIxNdxsO0HnVuEAQ4C00tqhZrKUHaZb70 + mzfnUT+KHfjPCsNXCt+k+nvLj+9R/6GsRZHWt/+alQ/stTZ8iRCXLF1jn4boSTYpD8pUDYmMiNu4 + /njjC5FbEwIveqggh8agbDhfVVZXOzG9GsWhQqmuT3nHT/N0yYE8yOI/XNb0K6vXJSV+1fox3n/w + 8Yle/Yr8/jlp90Ed2+bQjmCW8yne7g8aa/R4MCybqD61JtBum0AgoaxQ1hoxLtrFwyxz9C6cfW4a + ghB3JDD6Mkazmh7tesoFaAeNdtL2D7UI38QV/hD5Cdbhc37yX3Xvff/AmkaLilw2NeABdM7qu2na + badI1ymOz/GghJDDVrWdZN8eSQk6XWnUrkO0n45Z7CUBodUmw/bQhfNDFRLW9WD3AX64xPWbc90/ + cOrfrmr0nvHf9uTn2zwemmIP04x99rxi2fq3Dk1sJ3ZufXVz8dVC2LQACm42dVa2IBE19EInIVm4 + MeFaV/HkbQ4sqAzBU3E+Vq9hbDlgKlNvmZL+BOn4tdJP4P7u4W+Zq01cGf0DvzZOqrsQ4rSVeg4t + IiSTB4irGT0iEcPLsV1cdIEjz8J2YXeuQ1yaYDrtbbfG4iWeLhgRjqLjbT3ZorqFUsKQyF0C9j8R + Qeqb0L7/0PfHNx38LXDtEj7wA7nJHZ0NnF4bF5VQAZfFgkFkKhmsQji0YgKFOy5bcdIlt+fzBZXF + /Q43ujmnAVeBk0sbl7vJ5nqAOy8HcbwUeISn9fLmxO73sJqfKj+B+sn6byP2v9gAJgJaWCxWkcGr + FLP8OauDE3VsjUZst66pNgHT46WOoCgzQLBh7g6OQoWgBewOeDS7XLjdpFYGegmQW469ntGSIWn7 + ExOS+/aC3/Pxtz3c2UDbfdwNeZKH/vBI/gNiliPuIsogImMJ6UM4ZhrhRYpydZj0VCJiXFMgpEzF + 4Uxl0r46wIoDESZdoAiGlVaDHk+4rDGZifLmwMMjSwhvn+v7PbvrTXH4v4o/0Qq/evrrtigfuOrJ + EbHCO87RcVSEVuFSCCWnX2hBlLEAVhLNYALB4ndFWwsBjBSJI+TpPqD1hi4FZp2NGpzg02YBO1eM + Vs81lr19/cx8/Fret/D51fgToUaLuzL/kUX5IL7bNFpGSs9OOsEDzWZ/Xk47cNUuBOiMAzqfDI1U + xOMOz72OlFHn5JiHqJZji0q3Cta1LFkLDUMcmqjlI5o/Ek4qxtDH+Db/o+9jaF/YfYZql1dh3vjF + U836qJ4fWQ+EIPhEdwqvUGPBiUDQrc+4WF1IyimCOO8TuG7hugeyq8pZ1cgBBWckXGvOprerVZ1l + 8TMItQTvCAUZtvNx65+49mMDZfND5fxK5QcJ/2r9cc7mUxGrx0+yd7mQApLtG7QqmGuMn7njUl1T + HKt8Shtajt/NdCf7+yG/9v4mkHKdjBpN5SkijdE9JIrHfBUZoE8uKzzfBktKolzvzaj8XJ3rnjn1 + K4OPx9hXAL/s6yjWbpwe2EsNaGZOuRTKk15c2JMT+uSY1/DpuAnc4+qmaqlKw771d8c9yulbSjxn + GFoP4QFFBK6nlsmPWNOnDvNW6Eo8MjBmSt7O73lN5unuwOaFxDug/jD9ZP/8J98+XOsgQbsBpDBU + L+dbt6s9BIlzpCq721wujXN3Ztc95lIKUI0xqbN4dHboQ51Cp30FBF3cHWvXWnwDSLNlq4GHkxW+ + fXTwNaT7voD8yfaTHfg5R/pxfddJMQ4TqijHolaD85HKD8bc5Laxwbw0W3Ucw9Sh1/clWILF7sCR + 0WmXyZZCZHJJKkqnmDqQc0Gf7TVz7qarpxUl9vG++5zRfHe3fba6s8fqcToWfvdPDo3ojYnQFCDj + +G0pN8Bs3wvMdk9xjcxGrDZm8Y5o5EZqKtxzlGAhzjSjx+TJB5UYuXL5LFscIqrtmue+tefoutr0 + 0tuHiJ/xdF8l3nl25A+md3TXrIv9xw5W1uVkQBd1F54S1J5LyDRub/VE0x6+Kw5AAPJ67jc6a58P + GxVSDEiecg5KC6lkJSDLNDqCHTY2ohPMlYWcBci+thrh7Qjwi6i3EX5/+BPQvuwzv6ri4oHj04Hh + IVyBOoErdROTVemI7MqTCgnXZCoFF9T8ejRagGaPl5FAVJkMr8lM2tvtyDXmnk2Q6YoceVk3MpTA + cuOA+n1kvt0df6gLX6v7IMbvVne84z9sTb+/PPDdlgPjKjGResqsmNzF6w7cjirHNc0AVF6Cx7DF + LjM+obSCF20+lJBqVMjoHNRo0KADamP5IWzDfLote/FT2ubzXDn5B2EOL6R9kOSzyWe65TPG18P7 + g5JIbEM6mYOcaTqZFsUq2CpyxQusKCkhCZYDlZvF4lB5jx13t1DoSFiAGThLrhylOxiokTOP0jzQ + y1Hml/ucr4DEPMH3EH09wL+bP/Jn64+njvzKWfM7vygeeZ4kDM47xeMTcDrukzDK1itxuf2tl7Te + S+lVJktPjevQ8apNamf7aOWFFg9cRbIdSKbEve1qRBD12LKTyAbC3YsG1f7by9RfOTWvNd7F+Lvt + p3ry868HZpPwZWAC3grhG0USBNDjQ37rqHDEjDInwDJyIUa374HtHj7LV3O/vZieN64ndXF4f9Ev + QJQM231OJ6gAHj1oIEVp2b25SH1B56W2jxJ9/vVxkpZfjLE5PvRChFCRmWnnoBF+OBx1L0aNA6uM + FyvIB5piGstTYaL1IRBh+atHuITWsHrT4SWCwxvHPYCD67oJtAPshVfGcyvMpDzOb/bO6UnVML53 + tcH/PP1xbk5Z3GadTzcG210+PDJBlOuajgI8SD85vo4pBBjbBHyGu/RQMRVjFWmeY1vOW6izyRNj + kR+qTj2hvMLuOjxh6N1e3AtRYSntNuMDn9ZxBHZ2b0bQp/247lnb/FLbmwx/tbmPpEPX4Vg+tGzy + ZhUhh75SQkrmCzBg/qE6UiN0aK2gXaakPlkFvNAWDl+jGrWGDNvUFMLWLtZol6tL8ZuEzK9NabZO + zAiLv91cIX//5ov8hOTm7JWwdxn+MLgTYFk8HmEhktR1ujgEd7w2e5xj9/HuTJrZbfl9DNcrAiRg + aPPiiRzOBuEmAr6f8KCuCOhsMWmP7HM2KMsDGWzPcO1ZVygyBMR+c6L+TKQs7ob40+ROjE/OHvgh + FhaPG4Mxq+PYt6WB6rMxsMQ0H1EZQvJSWAsA6OO5HBDU4pY0v0JYw/AAuz/Dix0AK8bRq5QX5w62 + CTuZuivkzm8fX3qm0fwU9T66p4c/Ae1fvMLneVvzPCNY9gYteXerpd3R35JOjQge5J27JlLNcpgu + gD6l2NAS0RKV10hpT5O4cecz3WYVsSl3jj0M9jmXMvv/LcDUGP/J54gQIT0jo2rDE6QgCkjUAgBQ + SwMEFAAAAAgANLMmUJtH0O+VAAAA4AAAABoAAABFY2hvQm90LnJ1bnRpbWVjb25maWcuanNvblWN + zQrCQAyE74LvUPYsC3r0Vnrw5A/0CcqSlUV2E5JUkdJ3N4st4iUhM5lvpu2maRyPRVOGK2nCIu7Y + TFU2Q2O2yxXQgAwD0cHv3W4xIw8ZXsiPX8DUYmLNnFNgFIzqW6ELaGcA3xKtcXt9AosV1m/jGvnr + zGtBwBLT/cZIwJpA/nr6tyhkf+p8D2wkM5VHWBB12Zg/UEsDBBQAAAAIADSzJlDpEyezpgEAAFQE + AAALAAAARWNob0JvdC5zbG6lUsFum0AQPQeJf0D0kkrZ1a6BBQ49LLCbHNrKqpXesVk7G2HWgqVK + 5PrfO8jBjR2nitzbzJu3bx5vcJ1vetGaziyt91N3fVl7M9tX2ngzU/dWm8aTulY3njTtugSOarsB + pBNMiOt8OnlEI9fZI3tgpH+BCSZ4kgQkxpQlLqxt9Lpfv0MmQA7JhKaYus60NY9qYa/9bcppSkkg + EWUyRiFjCcpEFCLARcxDGUcR2/mfQcEXiweTGevfHEq86DagNCBbzqIsAi1EEslQGPMCcSJSFKX5 + hBdRFhZBsvNdRzTVy3bXua3NvKxd52pfzAAEt9djTrlplnrVt+XQTOvSLiGxbvCyadVIgtdXhZr3 + q9+8efby6T2Mj/qB8EPVquzUK8oJAiQwdmTjja0X2/9wZTr72tbHMsFHbjGHZb9Uvlyd+46LFLNe + 1xUm/6F3EtaRx7dBXqr61+cFxxlzhyNtVGu1Ovef3Onq0H83lQKG5F9n4iMLxJNVTafnutb2eT86 + e/Sxvu11BeOtoIHkLM0QT4IChVTmKGMcWhoFmQh5IuNkd9bAAXGdP1BLAwQUAAAACAA0syZQv3BP + lA4BAAAjAgAACgAAAFByb2dyYW0uY3N9j8FqwzAMhu+BvIOOycV5gG6FtjussIyxbuwwdnAdNTW4 + tpHswhh79zlptiRQJgzG0vf/+l1VsHH+k3R7DFCoEmqtyLE7hNQn70gG7ayAlTHQQwyEjHTGRuRZ + VcGDVmgZG4i2QYJwRKi3L7/txORZZG3b0Vis2D9iSPa4+G8o7h2HNFx0HlaekL1UOEHXLqyjNmnt + Tp68Qc6zrzyDVD7ujVagjGSGJ3ItydNlMgATiEP6ooKz0w3UUtuCA6Wt7x8gqeVy5CfSrjaEMuAb + 7ruYQ46il4j+VZTiOdqiXIyy7+4n19dv50bX3efJ4HY5TzTQ4qK9w4OMZp5sznclXhl3QVKI/ma4 + l3+ZU950fgBQSwMEFAAAAAgANLMmUN0H7iGgAAAAtgAAAAsAAABwdWJsaXNoLmNtZCXLSw6CMBRA + 0TmrYAMQBQxqwgRFExMQYeDYQrXVR1/pB8TVG3R6b46wD2pcRbVBRZ1OE8uhdbOGYYrG1yBcT273 + VAJOZ5HOMzHK0rmWlgDXrFR450CTBngY96IfxlUoTeBdKfH+0JeWvDv4mZvWI6o2oVMTsk1bM1iz + Bj78GO+KQ1ThENRRfatk3rUsO2VVugS14LyP0gvHIH8VNT4d5wtQSwMEFAAAAAgANLMmUG4/rhdU + BAAA+woAAAkAAABSRUFETUUubWS1VttuG0cMfTfgfyDsFwvw7rapg7YBUiO+AULcNIjtAoVgQKNZ + SjvR7Mx2LlKVry85u6tLasiGgb7IModzeEgecnQM17KyFzYcHtAH3DhR49K6OSzOAOkEJmT1om40 + 5ocHhwf3lfLJVgn6i2hAOhQBS4hemRmMdlAeT6oQGv+uKEpc5HRt2p/k0taDU1AEXtmlB/qAYDsw + EOAVh0yRQiUCCCmxCR6UaWKAqbM12ZGCogNhysQVPeNNhJwnqsfH8Nmhw7+j8iqgZ1sGo/zT9T1c + Wodwd/Vxi6ANBkNeK+mst9PABMm4NNqKcgALdF5ZA2/yHxkHYDweT4Sv+OsxlBjQ1cogtDC9O592 + lizbstHlxBDuLbhoKJWuqtpKofWKiV51sVOefCZtiZvML6LSJUy0IKMyyfThW6SsPlsXhIaTWswR + PFtWNoLUSs7h6C/0R7CsqG3Cz6lpR0MjdSQI0TTgMQTqoe/x+uzJ75tqYKo0nh8Nck4AIIPhdIPM + UJ/sUTIsldZgkEzcUNusgFJqCTYNOYvAhbzrgzXONuiCou6l5AjCsSd5uIWSyCjJlmrDRHue+VdP + QEyr7/efykfyuQuxVJaL+EeDbS65160r0QvVrmPOnl9i60h0vqIMcNI49B7GN2/HMMfVoIuwUc/l + 7ZDvDY0PfX6jnVMibrXfVpj03+kLTRZ9J71C0r0i3SnOg5j492Rk25t/BjlwqIc0YRyI7tasek2S + OwUjFmrGY9NXqs9hanWJLqV3v2oQxp0WSXLjvBMg+tCjssjaKd5dBdd11CJYd3gwevrgcdTnOKPi + xknKbZ1psT33GfZ3gCQvaHL8PNiG27qWRjvwWvNeYE60O1CzSDxnSJMc0siXOImJuHLs5oGuJo1U + ljys4zQNZ+OwtgH1inydjbOKwgY6Qp23K2G7hU8nuB7/s/xt/oaxZ2lRuVayo4rWzJNF+H1dBAJe + 42Y9buFQo/DoHzt5XVriRZ3jPF/UkQxuRTSy2uNww6rPfmtnIW36DK4Nkxfp1sOXW7BTGDN9Yr8u + 4buffv35l0I0qqhpEsQMfbe0rrDRdrUmSFzT5knPgwVKyBmoeQjExEZuH7tzEmLH/5QWDs1Mh5aE + u328GRwxF3ntC8HWFqxGEwYkb06BykwvBalfK277FDYutMh8cFGyqnwn+JvoiDiJA0VJnNKTsFu7 + Kysj305i/G58//OEre9fCK/k/mlPCfA0ZL5dben7hBc5umySAM4XCpfvk2e25Zmd5T+0sT5QNgsV + VjzkkvpCObxgxewPLa3h1zUTHXa2wX6eT3p0uAL9vh6a4GzZVv0V9egj2AV/wWWmtvBeQWdfO5/j + 82y4/2vhb+VCwHsh6f3tmG+zJWtGG4B25TZW+9tgA9ek//N0ZSPnW2FmkeYdHgypg3aj4UnpFtHt + w/DuxYKTdmYUaQr7yvlC06+xoo1zWQnewj5tc25Zt/1orLvmvVrZnaL3jtO/UEsDBBQAAAAIADSz + JlDI6E8OsAIAAIsHAAAKAAAAU3RhcnR1cC5jc6VUUW/aMBB+r8R/OPUpSFXQ9tp1Em2piDa2SrD1 + sTLOAV6N7dkXVjTtv++cGGjalE5ahBTsfN/dd+fvPBjAlXVbr5Yrgkz2YaKkt8EuiPe9s16QsiaH + odZQgwJ4DOg3WOa9k8EAPiuJJmAJlSnRA60QJsVst82Y3kkVlFkeAufD4L4gcXjMLyulmXZ+FDS2 + gfjjcdBkIzsAl5aO5HjyNS8M4TJV24TNY9wO1uiRuDTGBUaYhVpWDe049BodcoeM3BbmB8pE6NSU + JE3F2mkMcSe8IX4kV5bXdUAj1hickHgsaO/kd+8E+HHVXCsJUosQYErCU+WaLwlQg7zaCEKQXAhB + IB+VcMyvXFJRTpBEKUh8wi1cwOmL/dNa1j5WkzClyopWC2OGw6p/YD0RE5826aJNOz9g/3Rkfpax + vfoNS6TzNo9NPlupAGuklS0jIIAUWrPn59va8L4ypNaYw7eAvHHAkgVRlhDnhechxHXEs1wSyvDB + vVC3sarca8JpImZF+ndlOW9tnn3Q17u0Q+TDsuTxyPr5NA7L2nGtc6UVbb+jj+7Mujbz9L5/f/+u + 3zrC1JQrj9EUsSA+c7jxbLxf1j/AsBSOWsU9VzNlA2kkaz4UTN0zx0Qukc92Ue4UrUbeWz8WptTo + P2ZviZmzGBFAAHnBw4eGcihMcy5ShAY0nN7GNpOPDfXAn/DRxc6ys4WBKOuI/tkucq3/DNL8Ndo6 + zfd/Jtr5u9E+ns1u+Rb+WSFPo1MONXvpLStlxdA53q59ni4DEM6dQZHu15HZKG/NmssCNJvXfaUW + kDEgL8I1blBbFylZv99GPSPFh9PlXF1ioR89SnRRz61YYqt3qX9Pl6gD/muGcaDQFa+9sZezEJWm + G8X34gtSwvB1RUoehdzhfGrlA6bMnZh6CtsWSS/+/QVQSwMEFAAAAAgANLMmUFKsV9Q8AQAA7gEA + AAoAAAB3ZWIuY29uZmlnbZBdT4MwFIbvTfwPtZcm5WMDBAMuZQxv1CxR73bT0QPDlJa0Rd2/l6FT + s+yufXre92lOuvjsBHoHbVolM+w7HkYgK8Vb2WR4sDWJ8eLu8iKtlKzbZtDMjoMjQCg1e2Ohcz5g + +wx6rJjoyHdMcjE2/txHwjhHknWQYWb6J7BLpQGjntldhq/xQb+dDp3igwCTYfo79jghjDQYNegK + Xvb9WPMqTQ9VW7fAMXKPYvfEnP7ZUK9VBcasJydXVoLFiOlm6EDa0ehsVtVO5co6XAiMjOVqsA+q + WUm2FcAzXDNh4N9D2Qo4xIRqzOabHr+SumdWk7qnK0yvCFlr9QaVvR9afovKYhXn0ZySchZTElAv + JnRZJCQqg9Dzw9KPg5iQc0kahXnoJz7x4jIiwQ0tCPVWCQmT5YwWYR4U80PyC1BLAwQUAAAACAA0 + syZQ2D4W8OEBAAD/BAAADwAAAEJvdHMvRWNob0JvdC5jc7VTUWvbMBB+D+Q/XMMebDDOe9MWPLOt + gYbB4v0AVbrEorJkdHI6U/rfJyVOYrsJG4wJG9t339193915Pofc1K2V29JBxGNYSW4NmY3zdlsb + y5w0OoVMKdiDCCwS2h2KdDqZz+FJctSEAhot0IIrEVbL4mj2mOmkIam3sG7JYZXmRinkISml31Cj + lXwxghSlRSa84aojLRi90Ml94px+Nv5upPJUrnjXvMSKLQIvzSqkmnEcQrr4NatqhRQsNJ28TSfg + T908K8mBK0YEX3hpvBduIfOCdtK1j0wLhfaA7UL2YdY4L9p3yezQWikQGLWaQ9AB3/UKidgWj2my + 4IuWRWN1brTDX+5uOYI8gDt7E8iZ5qjUfliFeUENfGyJz3R6zMLZMeuHWqu28LngHj7NgrJbeOuV + SI+F0wB6ny2GKdgrk65PKV2jFkM9nYKvjDtjD3miU9nkzCBOLpDv1XsPs/v7zlbPaCkTAkXX1idJ + 7i4vmdaoMs5No90DVD1cAsPW+xefm/ZsftaCuf82hVdU3FTYzWH26EMN+J06Om7Gfd8Y/0fwEqIQ + fdAAUg/UxMOIUdVw5AaiQ0S6FHBzDxfn/gO5rCVq50HxxyQX8v7LYvQ6kfTb8qfl6C3Jlc/u1T/8 + 9RtQSwMEFAAAAAgANLMmUJ74wQZEAgAA7wQAABwAAABDb250cm9sbGVycy9Cb3RDb250cm9sbGVy + LmNzhVNNj9owEL0j8R9GewIJmXvRHrJdtYtUWgS5rfZgnCFxSWzXnoCiqv+943zwsR9tBArMzJv3 + /GY8n8Nn6xqv84Jgoqaw0srbYPfEce+sl6StEZCUJbRFATwG9EfMxHg0n8M3rdAEzKA2GXqgAmG1 + TIcw14xHddAmh20TCCuRFh5lxgGRynAIiyF95hVJcN+RmB3F6qjeKXiw/K11yXz/zoqlIcz7I3Rt + Rey7iKqMrDA4qfAW20O3snIlBi435G1Zog/j0e/xCPjhU6eFDpBs13DJA0cUn43YC7JQSJOVCJLt + +lVjIAGP6JA9MqqBpfmJKqqCk2ZjnbdHnWFrXpJJR9yN4bBkPWdKHQVVaKg9DkgCXxvSFQpY1SVp + zkKm93v0XNNCX0FCBJhoFmMvlazJWW14sEoa2OGZUKpCI88Zdg0Eh0rvmxYMFVvYR7QCahzC3naj + 3zGrYirytSKOSZ/XUYDouj5vbE04uZNOz9n9IHMMd9OXPpk4fbGzD7p6VzKJKmUIwGe68vvTlfkP + MvTC+xm1WK+PPA6IC2dN2bSmfPE895P1hyciN5jdvxf/wUYB7e6cqzp1N7omH7LI7j3rerFV00un + K9nxGSD3A2hxm48N7mOLq/ifa2XPkXhtA80g/vqK9PJGtgyNURCvIcTKJP6dfKyJV+IRS8yjLXHW + vLWKZxh3wu7byFOarmH9Y5vGCxADvXjxplF6SXZXQJujPeCwQ68A8iQ1DZ6Idcfbyd10t2sGG77M + vHg4i95Mb23pX/z5C1BLAwQUAAAACAA0syZQs4kQS0kBAABWAgAAMQAAAFBvc3REZXBsb3lTY3Jp + cHRzL2NsaTM3cW5xdnc1M3B0Mi5QdWJsaXNoU2V0dGluZ3N9UlFvgjAYfPdXNM1ehU1Y3IyYTNEl + ixi1WXwu8E06S4ttgeCvHwIz2Vj21LT33eWu302zPORMJz41dDZAaNrdt0p+MA4oa88NTcHDEWfO + +CzORfnoZGY0PEA49CHjssKo5iLUkQMwiYw9HJC/0HfFe1KWjlKLXnIFJYSaGdCWADNxXafjpjpu + pEiN9dgY5RpU6/GuhzX868D24HsYqshJnmOS8Kck4hf2Ol5sVu5eFiPiErrPgjROlm/L/fyBq3vG + zu58x+QoOG2I/Oy0YtCGCWqYFC9Z1sRJjMkmtv07VS9Rp0B2awKqAOXPF1IIiK5axCgmjh7+TlzV + U//giby6ONaLKlgMaiVVnq6ZON0GIimMknxLBfAW6FyWTMSy1K07K5JpR6iNkkobSD1cb/b60xrP + GmQa1/UIqQaN7KYl9s+azAa3l6ZIX1BLAwQUAAAACAA0syZQ4M95uJEAAADcAAAALQAAAFBvc3RE + ZXBsb3lTY3JpcHRzL2dpdGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZW2MMQ+CMBBGdxP+w6WzkZ0N + DIODLpg4klpOOBXa9K6YSPjvKulgouv73vumZAWgBt2jykBNp7Koq92xrA/5vpzVelkbZOPJCdnh + jwT5M3iEwgpU6EcyCFvbYGw726PT7fLeiTjO0rQl6cJ5Y2wfJedp1PJxLvrOGEvNNTEH5DcXH76w + 8/aKRn6HB90owmQ1vwBQSwMEFAAAAAgANLMmUFrTF2zcAAAADgIAACgAAABQb3N0RGVwbG95U2Ny + aXB0cy9JbmNsdWRlU291cmNlcy50YXJnZXRztZI9awMxDIb3Qv+D8XjDKaRbcQKlgZIlDf3Ystz5 + FOJgn4Qtp71/XzdcaAo3tps+XvToRTLbSEe0oj6D79NCH0T4HiDZA4Ym1cHZSIn2UlsK0OEJPTFG + CKnNzncwn83u9PL2RimzFgxPkTKf01J4pMDOo3rnrhFc6KraVbVNeuyfFTy80XMWzrJysaxBcVg+ + +I9mSAamu+NwGKdf8g31qNa99bn7QXHxptXf8L4Bv2AXW1tKskL2NLza6FhSQVf/Rn3BQKdCbV2/ + u3YJkypqjxMqA9e3MjC+QIm/AFBLAwQUAAAACAA0syZQqPPJVpkCAAB1BwAAIgAAAFBvc3REZXBs + b3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanOdVV1v2jAUfa/U/2D1BUfLTNnTVMakTWNT+0CRgrQH + QFOa3HRmqcNsh4JQ/vuunTg4wKpueUDEvveccz+TFEJpkikyIhJ+l1wC7WWqFwwvLxJ7tY71T//S + vHvX8XodgdZcPE5rQ3PPJKgi36A166OBqg0UW6lCeL4gNn9xYnhlDZ2pg7BK4rShVF95DrQrIXSw + HR7DIYsElDLQHjC+TeInMMD3DytINPsFO0XxOLi8IPiwjOcaJM1KkWheCLoN9qhBl1KQLeMihe19 + Rq8+TafReDa7nXz7cRWQ0WhErofVf0N8H3+ObmdjA/UBgUh1LuFGs5OPyUvLBA4USSlDgqEEpKXa + M8bs8RzPmSoflJYIQweDYHljkMz5shpWIdlXfvIFPHuUBsaVIyT44imqrFe5TmMNr6lR6GPXlC4C + W+cvhR6LDcX8AQZSZ7PWpGGrUUxmIo9TwxHtRGItQ9Irdfb2vW2gg0fOhS2z8WRqnXNN+/OFXIhl + v2vo9Zr1OZ9bc9VqOjivY6mdZ8PSG7VKzMMzQq0Vy0E8Yvt/HJF3HaQDmsDa2vEw5gYNZVyHZODj + WetSzo3tsjVeFVwcM1eHv01LoF9z7xXdu3epwPPqpDivGkIXl4kaiwVbrrSypep6BJ0MNPR30f2E + YTwK6HGhj/lcyV28lYvklNhJO8foNZ23RjqAbpqqk6RwNSlSuIumsjCbhLYEjUtXxvHO41wJdGe7 + p7wOowv+L0PlytbJ/om6M91rdt/RJlTedHaN3UAZs5f2T7dVm1zM3TJCG/KGYKfir+Oyi2jpdy4u + raWvAFP5LLmGth/a2OuRrdt/gV8b7GsQSZEi7o3rkqotKoFcgS/xBPg4ybYn683Jsx09bEJR5nmI + k/wyoS3rH1BLAwQUAAAACAA0syZQNCH6uCIDAABSCAAAIAAAAFBvc3REZXBsb3lTY3JpcHRzL3By + ZXBhcmVTcmMuY21kpVVha9s6FP1u8H+4GEy38Wxv78sg4NGOZmuga0ydrl8MxbFvUm+WJSSFtHvb + fvuu5Dix23h7MAiJdHN1dM650tUpFvcc+GrlOgp1zYu8dp10ugCRK7Xlsoz9N20AHwSXOkWtq2at + Yv/fNixR8KucYaxkcU3jQ/RG1vGqqnESRZF/Mf80Pb+efZ5Ofr7+543fBpKzxcXkJ81UpTHyOyi/ + xSj5tql5XsZLrgNCdx3XsWz9HbpvIhIZFCVoDkLyL1hokJxr1xEbdV9CGGbb7baNtLlVU2lYVzQn + qbUZ2VBvWvBmVa1ho1CGDdEBjwisJI3Ij6/eSCayvKrB2+iqPu3nhwVn/TV5SawGGIzRT8DAE6Qr + l2i0dNpB8Y0ssA9AIrhGi7OzvG+I4KIcSN0IpSXmrHPEGu9nxnHXYV/LSsK+ckXZG/fdgSBYErMh + vMEzXJ/u0Pd8j2KTg4DOWNDl7+mzXGmUQ/Ci5g0e2BzhfnDQpu49AL8zz2+hSqyRDAvbopeD/y2I + ZBBICFa7lIHGXUlWXJKEZV2p+yNksj5k62kiuUCpK1RZ0q6jiLkNqlv/uwz9KND4SJ+EK32OouaP + aSEroVUmBtnhA6tDjUzUOYn8DgpLCMi5KPvvdvr+Lp0tpndXZ5+m2Y/Ip4Cd74N+tIZ3cCQe3OIy + aLcNaT/a4+AL1RDS+eXNYja/stmx6xh/ohV45HXFVOyB7+d0cuDFiTEjWsKrUNXNyUs62HD6HICy + DbKVPSo4LFg5onSAZpQOAkblID25eX85Sy/ukuv5h9nliDXPLXgGc5amt/Prc7O+a5etoz3Gf1LV + NdS/ruP/pPacyBG4MBmSM8Xpyt+24OFrYDtxRfV/GvcgjsHzYM2pUXyrxJ8ujwU/aUEgF4I0tUgn + u7s6OUuSO3odFrOrj+mBlOtMLPruztoueo9mRzCXxHUOD5CfvaUwfeWQj/AIzbrjf2WvDh0K82Yj + bAtSemNe0JH+N9JfxnraPn28UfWfyn1dmnL3fLuOtXsynX+wzgwtay0uN0w8NbjhJQ5k72Qc6UEM + 5Rr3R/cLHRB8IB+ipev8AlBLAwQUAAAACAA0syZQ72tPdXMAAAB7AAAAJgAAAFBvc3REZXBsb3lT + Y3JpcHRzL3B1Ymxpc2guY21kLnRlbXBsYXRlyytNTy1RKEotLskvSuXlyi1OKs3MSVGoDvb3CQ3x + 9PeL93P0da1V0C2wckktyMmv9M9zAimwLSkqTQWJBpQm5WQWZwQU5adl5qTaVgeEOvl4BnvEBwT5 + u3n6QHQGJBYXl+cXpQBlHYODw/2DXGp5uXi5AFBLAwQUAAAACAA0syZQNiuxcHUCAABEBQAALQAA + AFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hQcm9maWxlLnhtbC50ZW1wbGF0ZX1UTW/iMBC9I/Ef + vGivxPTjUFUhFS10hQTdqIGiPSEnmRBvnTjyRwpd7X9fOxiqBrYXUObNvJn3PLZ/ty0YqkFIysth + 78Ib9BCUCU9puRn2tMr6N727oNvxv/X73c4ipxJllAEy/1pCiuIdUjmgSseMyhxXJHklG/MteAJS + Ip6hHdcCrSC2sd+QKA/94holpESJlooX9B0aihhyUlMubI2yfRxHt2N6QEqVmWgPzKN7TVnaDOKh + aYm4SEEgxREDIkpUcAGIxFwrR2TCElBNJVUoV6qStxhvuFfQRHDJM+UlvMDZG6PlK76bmd/peHg5 + uLm4vPBQt9PvW/3hfnq04JzJl4Nf19Yv42Aphz3LbIhlkkNBZIs9hRoYr0DgQsZ2enw5GFz1DDNC + ltsgavdDcF01IRM0loV7V+egcp4G82gMFeM7H59ArsQFDV1NjSPB6F0LMMkRVeDjNuqKZkSqpTnK + xtMHXmZ0owVRRl7wDI1zPv4ip8USMqIyLopgVO7QQ7j8qD0irsIOtRRswWdEl0k+yhQIN2LgrPyz + mtyvo+lisn4azSd/PWL1vEFszhGkV4Ly8Vcsx9EsYhM/oQuhG2VnQVc62SZMpzCqqvWYKBI8Embt + aIdd9uGAIhA1TWD5PAvaCmRSnKq4vb6+8vGZase7j0+pNA1DovI2q49PMlzlMxRcgVUX5jtJE8Is + ivDxDF5pNdkqQR7NVZI/S9vbbMbemv+ALbGfF3E1j14ePrSc3dJJSWIGh5R782KYpd+3PAu5MrND + 4okUEHw/kX+EXOo6IjWEq7FjPX4e4DFI85o0+7vYVdC6Jydwc0dx+5I2EfskBP8AUEsDBBQAAAAI + ADSzJlDKIuDRJQEAADICAAAuAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFNldHRpbmdzLnht + bC50ZW1wbGF0ZX2SX0vDMBTF3wW/Qwi+rn1wT6MdbLaCsM5qlD6OtL2uweYPSboxxe9uumwdWvEp + cM89h1/uvZHqypaZJqGWzq+vEIpOhVzLN9YCUv5dUw4x/izS5YY8vKSb9SJLvyYFlJMEVCsPGPVm + hE7uDGwj6xhn5E/5VbejsMBUPKAfnYY9lIZZMIEAO5tOb89mbupjGHHiyI5RZ0B7zJuR5gP6jrxI + nDdfEFI8PieDVIOxTFDLpFgodeRrrFWzMPyNOUI8R5CnFQG9A50s76QQUPVhxGomtjEe/nBwbf81 + NLIH2brx71gN+l7qjq+YeL90VFJYLducCmi9ciLdM1HLvfGEQSX52eFoycFY4DF2G+vHZ/DcS1Ht + Fl9SAwaFfv/hzwNwxaF0PJJvUEsDBBQAAAAIADSzJlAT2XhL0gAAAHcBAAAdAAAAUG9zdERlcGxv + eVNjcmlwdHMvcnVuR3VscC5jbWR9kMFuwjAMhu+R8g4+bgc67QFAIOhhEmvRBgckpKpL3JGR1FES + VHh7moDoDhu+2LI///7lKYo9ATUNZx6DJlFrzlINi3y1LLfvebGuPsvNxzwfX/tvRbVazuZ5NQDj + 17ikGsCT8gGybNd1nSMKO4lW0zkTRsITZwD26PfyFxB7/U0NA5gwsn1+jqoODRyUOPQm4euotIyF + 8NbRTxwn/w4FOXnTMNgGCMqgD7WxnMk6ILwEmEzi3YHJNH1zFsH/p0l99Gc82lgMRiS1mHy28v5d + zi5QSwMEFAAAAAgANLMmUKHoB0OKAgAAQwYAACsAAABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cEdp + dGh1YlJlbW90ZVJlcG8uY21ktVVRT9swEH6v1P9wqmQVHpJo21ulTi1bpfEAVLRjkyiajHOhASf2 + bEcVAv77znZDU0H3Rh6c5HL33Xef75wJirUCVRT9nkUnleCy3zNYQfJhV8SnbI2+suoSK+XwErWC + axOef1o0N3Ct0VhVczkVAq1dqgesvdWo+3Ne4ZPSrvSfX24injDIHQKvc9BKN9K/XC0u4K50YDx6 + oQy4NcL0ZAFC5QhlbR2vBcb4uO4YjKChFbgQqqkd1JSTZAoILTP/kaiB89xi/DukR4djfIqcHlsj + cV03t3A5WyxhOj+FI4N/m9KgDRVYsEJpPN5m2goR0PfY0QcUzsNuNTnKseCNDKZfs5PF6XL2Jyzn + 07PZ8cdvN211K6yR47Vz2o6yjOsyjQWnQlV7XiT8mH3qmuabfMw+R0tb+Zh96ffKAoastbDheDwc + wr7Tm4pZC6xVlw/bJWcj9pqWTXYk93yyXVpfR5SRNhREY2RH/e1+9Hu6sesc0nS12WyMUmRxjxph + rqz7jlqqx4UwpXZ2FRPOY1x6T32TOqx0aOln8C2TINhs9USl7cpavXQYZXfwFdhydjZn78D1ezTm + MhJNfsDgm6od1i5ZEp8RcK1lKbgfr8x7DyBp4JA6kOQwmBzMRLG/YX5B/fyKYCTL/Ghloae3Y1f9 + jyzNc97vtfcw7GFq2k6PYr6VN/qWNZ0AYYNC0f488KbOq1B1Ud6FeU/DJA261Q4OeGpu7UaZ/NXb + y3HIGSteShg0rpSTW+UKQ2ko+MF3VTeG51TCHkZV0S2pYKBJL27QFx7OTrCqMQJ9GmeU7KJ4Kbze + ocEZVNw6NDsdtxpK5DXB+ADrGv8HeCthgKTdSQwkBcQ+b2GwzsP/4h9QSwMEFAAAAAgANLMmUOfI + SQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVd + a9swFH0P5D9cAiIrzM66rjAC2dJ2ge2hbUjSbrCUosk3iVvZEpKcULrut+9KtvOxtA97aAiJdaV7 + dO65H+6jWChQs1mzYdFJJbhsNgxmEL3ap8Sn2wp9bdUIM+VwhFrBz2W9vAnPVxbNBc+q1RCNVTmX + J0KgtRN1jzltaKPu/JlHpV3qt59uSnxhkDsEnieglS6kX1yPL2GeOjD+tpky4BYIJ6djECpBSHPr + eC6w9C9/PSNPqAuFkSRT8PAwNiW8NxjPY1g4p2230+ErtCrDX8rFy9QWXFpXJKmKhcrgoIJTtg6K + EOkJuBCqyB3kZKrxdRWp36RQwflY13ye0aH7spu/JaHH2ui5jwbjCXCdlpC1ggFjhwZtoHDeuRLz + TYIzXshg+j44HX+bDG7Dz8XJ+eDg9euGaoZy5/NxZWSPHe5YSM0ee79tGq6SHjsqLXWUPfah2Uhn + 0Ga1hbV7vXYbdg/tRcdKmKV1dqSU67E1D1ZfqZVnVVcD29BiXbYmxPobz+6fj6xzSwXZ2ZDZXHMW + NB+WSfhv2CpTQklJ7tQZnVvKuO1USbWfaRUtqWJoq3cUv2s2yvRRuYDwtb7JeuXSbOjCLhKI4+lq + tTIkQrPhHjTCUFn3BbVUD2NhUu3s1Fdp6RTfUUnGDjMdGvA3+GqMEGxn+kgab/SdPm2J0JnDJ2CT + wfmQ/YvVbNCEkiXF6Cu0zlTuMHfRhJh0qai1TAUP8frTLYAogVb/eawWRD9geEnNAGxPccqEyV4k + ESaYRNRhjBweU1xC5YldT5WgHdEIOioKHx2+pZ3UAn05rFKZwLyglqwiKtEOj0lmpROfjvI/zLLQ + wXU/ltLvJ6M8m+Y04KimKlg/7rxpa0lEZ+k8jJ849Htru6haL5zU3NqVMsn6tK+6lw5jxlMJrcKl + sk/zcGboGnK+97Nw24cnFMIORpbRX5RBS1NDcYM+8PCqAKsKI9Bf44yS2yheCmBVAzLIuHVoNjpW + GkrkOcF4BxrM/oW3L2GApLRHBqIZxEHGGgbzJLwe/wJQSwMEFAAAAAgANLMmUAAF6ua/AAAAHAEA + ACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVtjj0LwjAQhnfB + /xAyW/AjbaNblSIOulhwlDS5QqA2IYmClv53k7YigssdvB/PXTudIIQbdgO8Qbi95Nvr+VDk11N2 + zDs8610BlhupnVTNnxDKXncDaKscOoN5SA5opwSMXc40K2UtnQTry20QvfwAYz2Oq8YZVX8Nb1l1 + Nxx2g1M8df/YXjo8JLrZiNBGcbC2gJuumYMfhhvFUD+IAEjKdEnWcxpBtSARiXkVUVLRKE1oGa8o + EYzEnwth+dG9AVBLAwQUAAAAAAA0syZQAAAAAAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlz + aFByb2ZpbGVzL1BLAwQUAAAACAA0syZQ9AOyxe8AAADGAQAAHgAAAFByb3BlcnRpZXMvbGF1bmNo + U2V0dGluZ3MuanNvbp2QQU8CMRCF7yT8h03PJJh4UPcG2oMHywaQq6llsDVtp2lnQUP2v9sikt14 + 49TkzffmzetxPKoqZkxaAZHxH4nV1bFoWT0Yv8VDmrWkwZNRkgz6PN9Jm2ByhqRH/+2w/Y9RbC9U + DuBfIULq7S/mEOzZ8BptHjFNFOrp1KKSVmOi+vbh7p5NLo6UbIORMnrzq3Xl6U4ACxF3xkK/A1ca + 50iDVIXOSb8V0kGJbCJ+gqJeiJWtV3oec3mIwyZXHQ1+byJ6l79nI6OR74MbT8hs1Qi+flws+RsX + m+flQrxwsS7Ln2APFkMxsz9D1+8+HnU/UEsDBBQAAAAIADSzJlCcI4W+bQIAACwFAAA8AAAAUHJv + cGVydGllcy9QdWJsaXNoUHJvZmlsZXMvY2xpMzdxbnF2dzUzcHQyLVdlYi1EZXBsb3kucHVieG1s + fVRRT9swEH7vr/CqvTYuLdMQSoMKhQmpZRVtQXtCjnNpPBw72E4g/PrZcQpq2vGSyPfdfXf3+c7h + xVvOUQVKMykm/ZNg2EcgqEyY2E76pUkHZ/2LqBd+Gwx664xplDIOyP5LDQmKa2QyQEUZc6YzXBD6 + TLb2rCQFrZFMUS1LhR4hdra/QE2A/sgSUSIQLbWROXuHhiKGjFRMKhdjXJ6Wo2dTQMKMLcfbF6vL + kvGkqSNAtwJJlYBCRiIORAmUSwWIxLI0LY81a0AV08ygzJhCn2O8lUHOqJJapiagMsfpK2fiGV/M + 7fd2NhkNz05GJwHqDQa296UvHa2l5PphJ9Wpk8qKJ/Sk73gtraYZ5ER3uBOogMsCFM517GrHo+Fw + 3I96CDlqC5j6l5Jl4SzWZtVaekEXYDKZRIvVDAou6xAfQD6itVmyilkxoul7qcD6rpiBEHdRHzMn + 2mzsHTZqXkmRsm2piLGtRffQaBbiL3z2SZacmFSqPJqKGl0tN5+hH4gPcBVtFF/LOSkFzaapAdXW + F7UiUs7GP1/ES/X6Y1yYUUBcM68Q2/sDHQgwIf6KZVeYA5zfHrhWZdPWUdBHXr9RXiYwLYqnGTEk + uiHcSdE1e+fdzaxAVYzC5n4edcvXND9s4fz0dBziI9Ge1ptvmbbplsRkXdIQH3j4wHvIpQHX2TKr + NaOEOxDhnfrPrLh+M4rc2OXRv4VLbAfCq/IfcL/R/el7XKwerj77ODaa14LEHHYel/aBsHPuEx6F + fJSdHHVHcoi+H3T+AXnPpxWpYPk4azk/ji06A22fjmZk13UBnc04gN1K4s5ONga3/9E/UEsDBBQA + AAAIADSzJlDUlzcKDxQAAMtNAAATAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bdU8a2/jOJLfD7j/oPEi + cAYXyZKopzsJLo/unQHSmMX2TAP7qVeR5Vho2TIkxen0Yf/71YOU9XScnp6bPQWxJbJIVhXrRRat + 8x9uf7n59R9/e6utqnV2+Z//cY7fWhZtHi4myWYCJViWRAu40+A6XydVpMWrqCiT6mLyWC31YNKq + 20Tr5GKyS5OnbV5UEy3ON1WyAdindFGtLhbJLo0TnR7OtHSTVmmU6WUcZcmFVfdUpVWWXN7kRaJd + 55X2IVpvs+R8xsUSpqye6we87vPFs/Y/+2e81lHxkG7mmrn98qZds40Wi3TzMFS1BIz1ZbROs+e5 + 9iF5yBPtt58bMP9CpqgH5NfZYSRWSfqwquaaZZono90Ai5Oi2/I+ij8/FPnjZqGn6+ghmWuPRXY6 + WURVNKeCWbl7+K8vgMGJuIFbbZcUZZpvLqaWYU21dHExvYuek+ITPADUpryYrqpqO5/Nnp6ejCdh + 5MXDzDZNE/uRIPMvWbr5PARohWE4o1oAvZgC46bas/zG+b7OsVQzNccTgRFqnmsZ3lSjebqYJpvo + Pkv0PUnzTfKkdcHfEBbzchvF0GZbJGVS7JLpiXiLFGJPWvW8haoq+VLN4rLEKs0oK/PEv16mWTY/ + sYXrXplvzTcn/i3WWKpmk28SVWg3wE3TDa4CVSMaNcIOrm/rGqdRc+3d3ryzVI0LNTmgnFbPc9Ow + 3xAUThVAfvj4159vP1mffnwzzAHs48S8AvJmRB+TWiRxhcyleYyzqISpAyKnGmvR1PEceGDJuph6 + jmeI6YybbqNqtW8CzUEK3osw8I3gTNjC8O4cYZmGOIO+V7rnGl6mO55pWGf0GeuWb7hn+AHFUEp3 + HrQ7M++EDSAhtvzJ3NGoK+FBkdDuRBCEZ44VGH5MLagX7IDvuIPMtgHgjD5XnodDY482f96I0EfE + hBcirvLBgdHOmvh/HabUlpT6gQNDOZ5l2HeO7TgwHlEaBsIIswalN8IHwXPOHB9xEr7nY4182Hcy + Mpzg4XAiuH9hA9YZfNlALn02WVmz48wkXmRE8Rl9/oSd3Kme6puRgR1Jp+I3jNnkqmtDU1nEn8BW + 4cJYjmkhP0PTQ1T4oe6kHgz0O4mKvxbRIgWzTTZEifBUe5DFv4HdBmQeQTs/oKr+svmtTEB1rYup + 8C1h+K4Pmv8Mjw6w2LJ8FyptqAwty3DMAGh4hkfLMWxXuPt+fy2iTbnMi/XFdB1VRfrl1CIToeOX + B5IgQi/8sTYH+VbLl0v0RFOzNjRYrMd5lheoqO/oekOFexV1FbWtPqyDfagmszaHhqbIVUrn2ih9 + tqNkQa/VSm+oVaa7tjiD/5VlmSEoaLNhPTFoo/HOvJr8+GbUTxTJNonA2WxyeTsOWqZfk55X6sBs + 8xI8dA4utEBTMw7IzNL+Im1vG46M1uBQ5GsZEcfpeeLac9p9Ly0HfFqlVTLm2wU0QwdDX70eFmm5 + zSLw8ekGp1S/z/L485iDNthD6ynEM9/spt9AvBRIX31im9Jbn4jbExu1Fj6hNF1wgfTcXEiumcvR + MZ+Iq0Ef3gK+Il893mjvz2UzBgVG8fNz6xlclBki0uzpZR0U4L/lghnDb9vlttKVIUzP7QEe4Phk + y25rcV3TAHAUB3A3KhbAatICFRAAMIYEDKXCgj0UKNQ+OsChIQrAUdjrUq21r621fQ/SdMz0iL65 + wS5Dkkzaz2U4IJWR4Mv5dULD51IWa1lMHJvVnT/UaEur0u1ZCoQUkvcuzMmNZdpGeAciFMCD58W6 + ANui/kMUrBtTt8AjZcLXBZj/DOChUIC78vHbMxwwUNQcPuWdg/jemNgl+Cvh4xyBz7zbD/l1Lxhm + uKdh9vDN5IQ2spN7B+R0QeMCljHEHbpJWIMH0W35LQwRA2kAAvOg21AiS++CkHqyTaRV9iNJrVGO + LSKRP23Dw3oagu8hvCnlmBAN6HXhXRPLr63p+z2kmzRRXoBz4dAAph7QFAY6OFGgk0uphGC53AGK + eJ4CqvXlHdTdhAzo8VyGDIpD4NN+wK81SwAhhYnroduyiW0m4MHS4cs7YFRsEqvsmoXMvH29Rc8m + l8HMePIO6j6EXImD7HHBp+/GUAjenO/OUI/FSjIUoudgz9DGgG2Gyoo/lqEQS4g9QxtDjjL0+0QU + yyzH6ixZdmtq9+30na8KCQaqXvLLeIHrrNI4yvQoSx8gOlmni0WWvOS80Tt0nbcMFnTEH/DpBigq + rpFx5IGdgonaKpiMxzi+Pbzb8CQ5BWvRTnWWVBVgjo6QtysM4fb6IDYpbofe/yFH080GPnGPJ4KO + exsY63Sjy5l2gv5Mr6MvqtqCdeRAPW7fyKmJHqt8uL5gwgcAXkfUAcLm82hZ9enDS25wgQB0J55q + M1grzLX7vFoN1NYTU2GM1AFoM3wNeOhyLD0qkuiwIIs2t9t9qW5oP63bj5J4k67fK/FOf1Zfkvim + MHv2ATKIJUM6rUgITPwbR87uLzleTeBYH4pA+zCB4igC9a01Nt2wUkXlGtvg1EHyqnwNeAQHBko2 + i22ebnqMHMESL6m3rm+NLc0OsP/PY3CPdQf5ssqfAEq/f0wzWC9D3J/2V3/t3kZ3mo/Qy/EhL7WV + GLI9DTZZfUXrscrrsYrYdYyL6fHV7vMVr3rHHf5w5rShEUmkK7XXA8vl7TYp4qg8bAHLKtmOu5ra + lC6zpIsYWX89rZJ1OdfKqkiquGuNGxsdSRZV6e6wl+jgssiGZuc+L9CVyMgCeFHmWbrQ/nJl4t8h + dzDkoAnLOmsxpBZ41fw/xMoDZFxqi2o+v0+WmHsZoIno6m37DO3CtLlwHAMaXMPttcdycNNIXbXn + nU5HIJj1jj/IKrzqELVvxdS1l4zoHvB/HCVURTLDXR0/AUaVlBUYgAwU8/VTcZ89DiH4mvkfG+xF + 8cSrYZLSzSop0u6qoAWoLNN9ni3G5rBldfr29ZXULcaoOxrxYxDCqxW9jkl7100PuKtBAjvEzWEd + XOnxCpzG64wRWeEtxJObLrmdkLGK7tLN5wNbn1L+xjvsG4Jx2H0Q6l1dW93Kx6LEWgpZkuJQcND3 + eHsT2g1o0IaRF0xwsVuso+ygC5AcmS/z+LEc4nj+WKGotCyfad7HS/sl21z3vcp3w4sO8qCLJM6L + iG0TzEBS4HAvu9ChLexD3rOOpPpBZnsBZvXDBmkTxYEgq4MYqGi6GyK5RmNY49RIw7Wv2M/ohOCl + nuUP+VFLXPfwEjccrP6dK9xh6yLhu8Wkb9KZscHRHNNcl+MLEKa+S7Pc8nkhJXRULoT38Y9Ih7z/ + oJfPa/AT/y8SIg4nNmzzG9Ih+7Z/fjLEF77jOx0QuwVy64l3ttcBES0Qy/NvMYfZAnFaIPZb37u+ + 6YC47cTM7XVgiVckZryjEjMiDAYTM1bY2jc9YsPZ8i3agsVTBTtHGPZK9w33o+Mb/ko3MStvCdqV + FcIIV7pLz77OT1C/4zvPCD9iFyvLNILMsrmJvTINO4MGli7sn3go4tNX3GG2fJ82gx3L8DkhgvvE + mCiRu8lCFzKFwrvOoYTB/uAuZsx5/9nhtlQrW8fcTrUWnCiq7wXtXHMaxuE9bF3WMJKxzKOYtG0d + SmDVvV0CngLb6hKfG8unFJTcJFfU2e1HIJapD1zaLndhznfCQraLnS6sn6iCQGzTp7a+p/gWW5wY + I3RxcELX8JBFyA7d5AQSZu0lqzzd3nlQW/PX12UmCIhx6BsT/ZxqQJbzCJjyl9S7mInwOBMBAJis + sgAPKKwZhekq/IciEAWPvi1MVvBAKqHnYFNAPKb0FuHjAyzxB/NgDlHh1BRSLo/AHIWVqpdT5tYT + LOQE2ztfYYVI4uTZhDVmFjHVRhX73JtJyQzkoE90EJ2u5FWoc5Yt2GcakVBf0sJ3MLExpzesGhuX + GMb4+YpPN7bJ+TjfZfRNZjHNLz7up5vnX9QiArzkKSAcrPqOygyrVJIqZZPncudjFskkIlE0QiIa + szeIZC3jPlVbxAOiCb8VwZjzEVIJHClcQgmTRd2FdWqHiNlZQHwtziv8BjJXTIOv1+lLnWRXdxRv + BKu9y4TagtXI5SRbkxWSNwENhweyUM4ICkUzlPIiUNJsljSEI+l0WdJQdt2YBY9SZjQkS5bFNmAv + 3LbMtIa1GHoy1WwxuE+zj5ygDCXpBQ6jxAlVghu4qDjyNpaCj0rlKaVCFYCxHFZsEBOSC0mqzwM0 + Kf9ae/T3tiOTaJ4hpDhKfSdxZBpI42ByLWkBOF/HoioTxXwvqTYJV18aQjwChHWErOwRWWnLO1IE + lBcSKpc0z0Z3sldIakiKiDYK89OUXaSxdJm8h5nyZJ8+8IJz4J60bIpK0XyoFSZgwtwANJYUhBWB + FVc+2zU+phyP6WcB4rmX/iC2ldnHTmuF9giWc5tSDU6Ub1HugY2AkNlR9FwWl+jsTv24dnOBLucZ + OMN2EhlSs4y0T6qlTZbVZIvtkd7apNZgRlEnd8Dt2i/KUwFBPdOOHMaOlbl3a8k2pVyyzKAZVuaG + B1DOxKxRQ4tg1p5EccJGa4venIyJ9Nk8zdzAlyce0L/g/Ds0/zo7FCoAdlB+mQ34XmZs+nbVWYgY + mcLEWVL/BbkfVFlbV1NgSfEKqHO/7UHZetZKYJJqiNqSKv/CKWv2O+HOIxcCpGCH5PmlZ2lOmvQv + nvQvAfsX6bx0u+FuJcdvUHjpdIHPMqBkmZ1CU7RZ1kP/GANYG7FvNoN/lAFUzBo3g2HIqiLVQxKs + zGCDfmKIMN3vaABbxv87mcFvMYDSOwqTMZNmsKZVNB+UGRSuUOdUwBFbKLO2ix7Z2el446Kh8Fb0 + 5ZC2quAJFYndua0HsU2EcuAWyMAwwFge7pQNUGc7rJpRKha3avu6t6xmwzqCsn107JismkmRmgpE + pIUzSXtsWSBI2UwOPlxlE9mK4fkYKbmEVynNEVsaVgd7B+uWFTFD9zOf+rN3oCwr5IvH7LFQIZgc + NoocXxNzsJeapKAmQ8XZMvqMzTp+5YCLiXcpVldM83TFCEsuPtia+zsvljaVOWFL+pSpIhPCTs2W + U9M0IiJW4TuaSTK4HgWsHOGTz8Bg2KGJFUgy4/TRZS0aO9TXXqUKq7W3YDsDa1a7v2YlDekuWWXp + bHw0L0A+vzSe+G7jdajzLDV8azznj6NvZET320Y85vTUS9uHg/ubuIlYH3kYPyzl9quO3NhsY1Xk + TyNZ7LkWysPSmGIc2K/8Ew/0dM+wZI/r3j72+GE0hbXbzSaqDEwxmNDpMW74IND4IaCDR3yGTwe1 + xuyd8+lt/dPvmsYwXuRPG+DJQq9WiZ6sH7OoynvYH0hmNRIxopeIaR4/eOFU2oGDESr15R/ivDwW + kS6LaN3LhjbEzjdRdn9I1/jrw6iXV2rIr+cehFSIH+iwIxvJOt8lOiEoyR7/JeA4pf+9ThZppOWb + 7Fkr4yJJNlq0WWinLdVCnH7s9j62W9/kNR1SGciRjJ6DGzpehVfziJf5cm/D2kodscZ2hPhYvPEa + /3VJH48X0znHDvqCISSQ/Yx5A5abQQ7bwwbMeAqoT+WAfW/Qxco4buP//cgbpPQoRfGHFGX4x7Z4 + HfuDpg4s6wHijqfRhpTrmymwxb8JBd9uHvoHlcZP3Q6kppne8R+C4VVz6/sy3xy0s9+d+TJROmAC + fwfyHp4k6fuI4+dt4CTK6y2Ntbc01otmxAkPemSCbtgl6yB0H9exQ64duu1+JDPgR8aOHnc7O0aX + jj+n1Ay4jlGrcbfbiXqPoflYHR2Z6Pp43FHm5VC4h1dTbIJXic3hALFJyQsRIl54PgcimKe5tkoX + i2RzpP4eEywiheMBI36dz5rvwDgHQ5Buq8YbMRZ5/LiGVYkBc/12Bzd3KYgaiNjp9PaX9ze8ZLmD + xUGymJ5py8cNHzY+7VkNXEC8Q1RPWyvd5sMuKvZg2sWh3hBUTuzFHkewYlGVvM0SfDqdMsC0+7sk + LjbKpLqqqiK9f6yS00m6mJxpE67q/ZIJR8uXyztQrZ9+fX8nqYaReys1hKQ+JBJN7B6SSpZeP/+8 + OJ205LM3ZrrUTp/SDay9jE20Sx9wzWXkG8Shx40mVUUMY9KbN8r5bAaDlwYsjqjyKS8+gzqvYcph + 2RfPovtytgW3Uc6WrrGq1kMnYAeZBVKSZ7A0e0CebfIe7qMNqYzP8GFT8/iWpHnYBkP045ux8B9s + V0/Zbbr79unCS/ViRNstOIobPEl5yvBd8H9pSVYOGqWm9Bi04YQah+p3OhnQ+B4iTXPxptZxpdbn + M/kiHrjF98wovZfxCL99YMJPk4YZOMcNp1Zt99dNTeixFgA8ka9HmAz+nmxyeT6Ddi93hW7zpa6u + ozKN8d0/3T6bz8yQpFCPjaEgLhljAfvEiXrs/a7qEDNaP5yaXP4jfyxw80ZLSw1aLp5/eIkF+7ih + +due7pB4Qd9aHG00PAyuPdcDQcGKX4r0TpkF7a3c1jm/L7TZQFf3z1qCB2VB6bWI2v729zswito/ + 5Ut+gOdRtsrLai5CP5hF23S2TsoSzcs/O7QcTd/gxtMQoedRzV0+9TrRVkWyBHGRdjD6HMG6fQbk + 67Up1N+5ej1C3Xu/c7gqWGDiu6o+3WcRdH55K5sRI2vWzaIuVcdSOkTTx7RMq2+nDIy7vsrBUvWQ + H6RQu/r6WCTDVfT6rKTAl24NsB6o1mDJVyQPGBkUeznD1QSYLQ2oqPIxuQLrm+aPJb4ODOxJVhra + r8BSaD4ttTrYRlGrnrf4K0xYrGR5/rns95SlnxOYj7Scv24S1CiTS8XS8/QSifgEWJSfUKTxfWTn + s/SyJdWHrEp3DBlDt10Ivhen41Uu26apcd+Umu7+05iVkoDDvZ7PpP0np8BvbvtfUEsDBBQAAAAI + ADSzJlAISi14sxMAAMxLAAAUAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bWzVPGlv21iS3xfY/8DWwJAb + a1LkezwV21jHTiYNOOjBpDvAfApoiraIUKRA0nKcxfz3reORonhIitu9MyvDEvnOuqteFaXzn25+ + vf7tH397py2rVXr5n/9xjp9aGmYPF5M4m0ALtsXhAq40eJ2v4irUomVYlHF1MXms7nV/stOXhav4 + YrJJ4qd1XlQTLcqzKs5g7FOyqJYXi3iTRLFON2dakiVVEqZ6GYVpfGE1K1VJlcaX76Jl/javzmd8 + q/rK6rm5wdddvnjW/md7j69VWDwk2Vwz19/e7Pasw8UiyR6Guu4BUv0+XCXp81z7FD/ksfb7L60x + /0Ri1DdIp7P9QCzj5GFZzTXLNE9GlwHSxkV35l0YfX0o8sdsoSer8CGea49FejpZhFU4p4ZZuXn4 + r28AwYm8hkttExdlkmcXU8uwplqyuJjehs9x8QVuYFRWXkyXVbWez2ZPT0/GkzTy4mEmTNPEddSQ + +bc0yb4ODbSCIJhRLwy9mALhptqz+kQ+v82xVTM125W+EWiuYxnuVCM+XUzjLLxLY32L0jyLn7Tu + 8DcExbxchxHMWRdxGRebeHoi3yGGuJJWPa+hq4q/VbOoLLFLM8rKPPHe3idpOj8R0nGuzHfmmxPv + BnusuifLs7huFK3hpun4V37dI1s9Uvhvb5oeu9Xz1r25fm/VPQ705AByUj3PTUO8oVHIKhj56fNf + f7n5Yn35+c0wBXCNE/MK0JsRfoxqEUcVEpf4GKVhCawDJKcaa8/Udm24Ycm6mLq2a8jpjKeuw2q5 + nQLTQQo+ysD3DP9MCmm4t7a0TEOewdpL3XUMN9Vt1zSsM3qPdMsznDN8g2ZopSsX5p2Zt1LAkABn + fjA3tOtSutAktVvp+8GZbfmGF9EMWgUX4CteIBUCBpzR+9J1cWtcUfD7tQw8BEy6AcKqbmzY7awN + //dhTIXC1PNt2Mp2LUPc2sK2YT/CNPClEaQtTK+lB4Jnn9kewiQ918MedbNdZGQ7ydshI3h9KQDq + FD4EoEvvbVI25DgziRYpYXxG7x9wkdt6peZiZGNb4VnTG/ZsU9URMFU18TuQVTqwl21aSM/AdBEU + vmkWaTYD/Y7D4q9FuEjAXJMNqUV4qj2o5t/BXgMwj6Cdn1BVf81+L2NQXetiKj1LGp7jgeY/w60N + JLYsz4FOAZ2BZRm26QMOz3Br2YZwpLNd97cizMr7vFhdTFdhVSTfTi0yETp+uCAJMnCDnxtzkK+1 + /P4ePdDUbAwNNutRnuYFKup7er2hxq2KOjW2O2tYe9eop8x2KTTEIqdWOkeg9Am7lgW9USu9pVap + 7gh5Bv9LyzIDUND2xIYxaKPxyrya/Pxm1E8U8ToOwdlkubocH1om3+OeV+qMWecleOYcXGiBpmZ8 + IBNL+4uyvbvjyGgNbkW+lgGx7Z4nbjyn6HtpteHTMqniMd8uYRo6GProrbBIynUago9PMmSpfpfm + 0dcxB22wh9YTiGNe7KbfQJzkK199IkzlrU/kzYlArYV3aE0W3KA8NzeSa+Z2dMwn8mrQh+8MviJf + PT5p68/VNB4KhOL75517cFFmgECzp1d90ID/lgNmDD+Fw3OVK8MxPbcHcIDjUzO7s+XbBgcYR3EA + L1PHAthNWlAHBDAYQwIeVYcF21GgUNvoALeGKAB3Ya9Lvda2t9H27ZC2Y6Zb9M0tchkKZdJ+bsMN + qY0EX/HXDgyPW1msVTNRbNYs/tCAraxKd2UlEEpIPjrAk2vLFEZwCyLkw43rRroE21L/ByhY16Zu + gUdKpadLMP8pjIdGCe7Kw0/XsMFA0XR4V1c2wntt4pLgr6SHPAKfebvd8vtWMMxgi8Ps4cXoBALJ + yasDcLqkfQHKCOIO3SSowYPoQn1KQ0aAGgwBPugCWlTrrR/QSsJEXNU6CtUG5MgiFPldGC720xZ8 + DeFNqfaEaEBvGm/bUH7fYd8fQd0kRrk+8sKmDUzdJxb6OjhRwJNbqYXGcrsNGDGffOr11BX0XQc8 + 0GVeBjwUt8C77YbfG5IAQDUkjotuSxDZTICDpcNTV0CoyCRSiYaETLxtv0X3JrcBZ1x1BX2fAu7E + Tbaw4N2rERSCN/vVCeqyWCmCQvTsbwna2nCXoKrjzyUoxBJyS9DWlqMEfZ2I4j7NsTuN77s9jfu2 + +863DgkGug75ZXyB66ySKEz1ME0eIDpZJYtFGh9y3ugdus5bBQs6wg/wdAOUOq5RceSeTMGkThVM + xmMcTwxnG54UpeAs2ulO46oCyNERcrrCkE5vDSJTTe3A/T+kaJJl8I65nRAW7iUwVkmmK07bfp/T + q/Bb3W3BOXKgH9M3ijXhY5UP9xeM+MCAV0FqPg/vqz5uKqEFjO8yPErhfDDX7vJqOcaICmOiUThW + sK+u1tfDIg73C63cpezuWvUylDvr48DSbdLrj0q33efgIeluC64r9qBBJBnS3xoF38S/ceBE/3jx + wwiOrVEjKPYjKI9CUF9bI9yGQynq0VguUweBq/IVgOHv2SfOFus8ybp0HIFRayy141ndnn2kP4q2 + e0m7n7L7CNsl2V56LPMnGKXfPSYpHIkhtE/6B7zd1UaTyceo49B2l0vZ3bFFGeuAVrmv4DNE3y81 + qXP4Q+Zo3V1IVqs6YQNn3vU6LqKwHDdrZRWvx31FYxvv07gLDJlvHU76q3KulVURV1HXtLYyFXEa + VsnmaDgWae9AnxfoB1RIALiXeZostL9cmfg3ZtOHvOq2zDBkPBoaHw/q5aKaz+9iIHnPmPezMUPJ + EcbtMFqKBpjleiwHczeNA5xOewKIhLO98YROz5a0+BfeAVyPPcDrQMHao119chlVXFagbikoxfGE + u0sff0B8gCejwjwkFC3lTrJlXCS9kLqt33d5utiru/vMzQCsiz22ZhicfdvhaydM68pR1zntdYK7 + 4M7hcFfp0RJM5fFKShZpDUFTVo1uE1XhbZJ9PSwHw4ttdz+8Mb62UZZ79dbqdj4WJfaSU46LH7P0 + W/PSVRbUfPIAMZ7cilWYHqLG/D6PHssuTfLHCtm/Yy9M8y66FwfXW+abvpUnr7GIo7wIWduB2nGB + W+wXiqG86z6P0YQG/XBp99Rg9V2jsjRyX9jQAHW5SDZjFV85eu4d6DnyyN2JGks9zR/yo05gzv4T + WDDY/QcPYMM2QY3vRRSoQcoJsLnQbNNclYew7xk0zkgcqFgclarnNPMR2fqPn/TyeQW2+v9Fvt7m + vLswX5Ct38791+fqPenZnt0ZInaG3LjyvXA7Q+TOEMv1brDEtjPE3hki3nnu2+vOEGe3bnDz1rfk + D9QN3KPqBjLwB+sGVrCT1jsiH2p5FmUIsei9saUhlrpnOJ9tz/CWuolFY0tS0lBKI1jqDt17Ot9B + /4avXCP4jEssLdPwU0vwFLE0DZHCBEuX4gNvRXT6jglQy/MoV2lbhsf5ekxjYh5fJTulLlWGn5Oi + gRqD68FVxJBzetTmudSrZkc8r54tuY7RXEtKrHKVwOYUq656GMhIpflNyqoGanC9vCgBTolzdQXP + teVRhUTlcGvsxO4tIMvY+w5lcx3g+UZaSHa50aX1gTpoiDA9muu5Nd0ii+s2BC5uTuAaLpIIyaGb + XN/AorIilauLjQu9DX09XRUqABmbPrEOzZlwJDnvgBVphb2DiXKXE+UwAGspFsABjQ2hsJqC/9AE + ouDSp4W5dN6orjfZOBUAj6j6QvB4MJbog2Uam7CwGwyp1ETD7Bqqul+xzGkYLBWDxcaroUIgkXmC + oMbCF1aCqGNbGjIp144U9AgPwtNRtAp0LgL520IYIuopXPgKGBtx9t1qoHGIYAyfV9PpWphcLvIc + Bt9kEhN/8XbLbua/bEQEaMksIBis5oraDKusJVXJJvNy42GRwyQkUTQCQhqLCwhkI+MedVtEA8IJ + P2uEsSQhlRLYSrhkLUwWLRc0lQdCZmMB8o04L/ET0FwyDp7eVNd0kl3drmkjWe0dRlRIViOHa0Bt + Uija+LQdPi+EckajUDQDJS8SJU2wpOE4kk6HJQ1l14lY8KiiQ1uyZFlsA7bCLVQhMGjE0FWVUIuH + e8R9pAQV0EgvcJtanFAleIKDiqMuIyX4qFRurVSoArCXzYoNYkJyoVD1eIM25t8bj/5R2KrG4xpS + iaPSdxJHxoE0DphrKQvA5SQWVVXH5GuFtUmwesoQ4hMq2EfAqhWRlEJdkSKgvJBQOaR5At3JViFp + Iiki2igsn1Lxi/bSVW0ZOOWqNT2gBZdoXWXZaixl+6ZRGJ8Rc3zQWFIQVgRWXHUvGnhMtR/jzwLE + vFf+IBK12cdFG4V2aSyX3pQanNS+pXYPbASkKt6h57K4RWd36kWNm/N1xWegDNtJJEhDMtI+pZaC + LKvJFtslvRWk1mBGUSc3QO3GL6qitd9w2lbbiKg2904j2aaSS5YZNMO1ueENamdiNqChRTAbT1JT + QqC1RW9OxkT5bGYzT/BUQR79C/LfJv7r7FCoAchB5U824FuZEfTp1KX6CInCyFlK/yW5H1RZodcs + sJR4+bS4t+tB2Xo2SmCSasjGktb+hSuq7HeCjUsuBFDBBcnzK8/SZpryL67yLz77F+W8dNFyt4ri + 1yi8VPz2WAZqWWan0BZtlvXAO8YANkbsxWbwzzKANbHGzWAQsKoo9VAI12awhT8RRJrOKxrAHeP/ + SmbwJQZQeUdpMmTKDDa4yvZNbQalI+vHKMARWyizwkGPbG90vHDQULhL+rBJW+vgCRWJ3bnQ/UgQ + ohy4+Sow9DGWh6vaBtSPHlgNoepY3Grs69aymi3rCMr22RYRWTWTIrU6EFEWziTtEapBkrKZHHw4 + tU1kK4aPbyjJJbhKZY7Y0rA6iA2cW5ZEDN1LPVpPbEBZlkgXl8ljoUIwOmwUOb4m4uAqDUp+g0Yd + Z6voMzKb+JUDLkbeoVi9Jpqr14Sw1OGDrbm3cSNlU5kSQuFXmyoyIezUhGJN24jIqA7f0UySwXUp + YOUIn3wGBsM2MVYiygzTZ4e1aOyZs91TqrR2cgvCHjiziv6ZlTSke2RVrbPx3Vwf6XxoP/lq+3Ww + c616+5397D8Pv5EdnZfteMzDPQfSh0PZTEwhNjX68Sd5nFdKaRb500j9da4F6kleLKcNZCv/hU+b + dB+6SB9XvXz1+JNSNdROt8ZWV0+KI2o9QLgffVJl9HkUmjb4GMvOnr0HU3rpffrSzRjEi/wpA5os + 9GoZ6/HqMQ2rvAf9nsJTq7Aie4WVdgn9UPl7vKRfl628I4r6yX0RrnrVxZbYeSbK7k/JCr8SF/bq + RC35dZ29I2vA9yzYkY14lW9inQBUaI9/TW0c0/9exYsk1PIsfdbKqIjjTAuzhXa6o1oI08/d1cdy + 9W1a0+MVA5WRHRCY4OPP8+Gr/UySeXi1YW2lhVhjO0J8LNz4Gv/qQx+Og8WcYzc9YAhpyJZj7oDl + 5iH77WFrzHgBqI/lgH1v4cXKOG7j//3QG8T0KEXxhhRl+Jug+Dr22zadsawHCDs+RTWkXC/GQMh/ + Ewxebh76D+WMLjdUgmZ8x7+lhK+GWq9LfHPQzr468VWZdMAE/gHgXXwKpO8jjudb/4m/F1gaa2tp + rINmxA72emQa3bJL1t7RfVhHHsvs4i36kcyAHxl7Vra72DG6dMwTRJ11rWOUatzpdmLeYzA+VkNH + 2Nw8WnaUcdkX7OGrLTT+DwnN/vCwjcmB+BBf+PQNxC9Pc22ZLBZxdqT2HhMqIobj4SJ+nM/aP89w + DmYgWVetH2tY5NHjCs4kBvD63QYubhMQNBCw0+nNrx+v+cByC0eDeDE90+4fM34u97RnM/D48B5B + Pd055bZvNmGxHaZd7FsNhyrGXmxhBBsWVvG7NMa70ykPmHa/MsPNRhlXV1VVJHePVXw6SRaTM23C + Xb0v2eBu+f39LSjWh98+3iqsYefeOQ1H0hoKiDZ0D3GlWt8+/7I4nezIZ2/P5F47fUoyOHkZWbhJ + HvDEZeQZwtCjRhurIoI96UchyvlsBpuXBhyNqPMpL76COq+A5XDoi2bhXTlbg9MoZ/eOsaxW3adD + R4kFUpKncDB7QJpleQ/20YnUxk/k4VTz+JmkeTgHA/Tjp7Hw753XsOwm2bycXfiqVzHC9RrcxDU+ + D3nK47vD/6nFaTlolNrSY1CyCTUO1e90MqDxPUDa5uJNo+O1Wp/P1G/DwCX+BEqt9yoa4S/GT/hu + 0jID55hu2untfvmmPXpsBgyeqG/uTwa/6jS5PJ/BvMNLodM8tFTzazS7K7bvmRxxUd+2NoKYZIwA + 7BEn9W3vS0D7SLHzLZ/J5T/yxwITN1pSajBz8fzTIQJsY4b2F1FoJS0KMw0fo9aem2WhYRlrQAbt + fW0CtHcqgXN+V2izy74I3j1jJirD7zxkDxoE8+onZoCsYbrMy2ouA8+fhetktorLEi2IcTzYg7kk + YHzYkIgfS51oyyK+B44rUxZ+DeHgPQOs9Maa6e8dvVmvWauPEb4qOCLiTyB9uUtDWP3yRs0jAjUk + mYUHRbBBZXL5OSmTSnsx6GCA9WUO1qQH3NX3xyIexgN5+Sku8FeZEFrkTxE/oFcutnzHOB5MhgbQ + VfkYn8HyJfljib8OBdxOS0P7DUgB06el1oS5v//9Fn/JB7+cB8eENM+/lv2V0uRrDHRMyvkh4tXr + Ti5r4pwnlwj2F9i3/ILShT9IdT5LLncEbJ8Wd/dQEeuuwcYfSOnY8MtdU9C6bnO7m+sZswpq4PCq + 5zNlbckE8093/S9QSwECFAAUAAAAAAA0syZQAAAAAAAAAAAAAAAABQAAAAAAAAAAABAA/0EAAAAA + Qm90cy9QSwECFAAUAAAAAAA0syZQAAAAAAAAAAAAAAAADAAAAAAAAAAAABAA/0EjAAAAQ29udHJv + bGxlcnMvUEsBAhQAFAAAAAAANLMmUAAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BTQAAAFBvc3RE + ZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAADSzJlAAAAAAAAAAAAAAAAALAAAAAAAAAAAAEAD/QX0A + AABQcm9wZXJ0aWVzL1BLAQIUABQAAAAAADSzJlAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAEAD/QaYA + AAB3d3dyb290L1BLAQIUABQAAAAIADSzJlCZqxjsIAAAAB4AAAALAAAAAAAAAAAAAAC2gcwAAAAu + ZGVwbG95bWVudFBLAQIUABQAAAAIADSzJlAH3Y7aJgAAACsAAAAKAAAAAAAAAAAAAAC2gRUBAAAu + Z2l0aWdub3JlUEsBAhQAFAAAAAgANLMmULyqV/o3AgAATwUAABoAAAAAAAAAAAAAALaBYwEAAEFk + YXB0ZXJXaXRoRXJyb3JIYW5kbGVyLmNzUEsBAhQAFAAAAAgANbMmUHfqmEpmAAAAegAAABAAAAAA + AAAAAAAAALaB0gMAAGFwcHNldHRpbmdzLmpzb25QSwECFAAUAAAACAA0syZQvQ5/jqgAAAAFAQAA + CQAAAAAAAAAAAAAA/4FmBAAAYnVpbGQuY21kUEsBAhQAFAAAAAgANLMmUPl0cgpqBAAAhgsAAAoA + AAAAAAAAAAAAAP+BNQUAAGRlcGxveS5jbWRQSwECFAAUAAAACAA0syZQ4LGfRUQAAAB1AAAAFQAA + AAAAAAAAAAAAtoHHCQAARGlyZWN0b3J5LkJ1aWxkLnByb3BzUEsBAhQAFAAAAAgANLMmUMRa8yNU + AQAAHAMAAA4AAAAAAAAAAAAAALaBPgoAAEVjaG9Cb3QuY3Nwcm9qUEsBAhQAFAAAAAgANLMmUE0v + PwyXjAAAOLEDABEAAAAAAAAAAAAAALaBvgsAAEVjaG9Cb3QuZGVwcy5qc29uUEsBAhQAFAAAAAgA + NLMmUJtH0O+VAAAA4AAAABoAAAAAAAAAAAAAALaBhJgAAEVjaG9Cb3QucnVudGltZWNvbmZpZy5q + c29uUEsBAhQAFAAAAAgANLMmUOkTJ7OmAQAAVAQAAAsAAAAAAAAAAAAAALaBUZkAAEVjaG9Cb3Qu + c2xuUEsBAhQAFAAAAAgANLMmUL9wT5QOAQAAIwIAAAoAAAAAAAAAAAAAALaBIJsAAFByb2dyYW0u + Y3NQSwECFAAUAAAACAA0syZQ3QfuIaAAAAC2AAAACwAAAAAAAAAAAAAA/4FWnAAAcHVibGlzaC5j + bWRQSwECFAAUAAAACAA0syZQbj+uF1QEAAD7CgAACQAAAAAAAAAAAAAAtoEfnQAAUkVBRE1FLm1k + UEsBAhQAFAAAAAgANLMmUMjoTw6wAgAAiwcAAAoAAAAAAAAAAAAAALaBmqEAAFN0YXJ0dXAuY3NQ + SwECFAAUAAAACAA0syZQUqxX1DwBAADuAQAACgAAAAAAAAAAAAAAtoFypAAAd2ViLmNvbmZpZ1BL + AQIUABQAAAAIADSzJlDYPhbw4QEAAP8EAAAPAAAAAAAAAAAAAAC2gdalAABCb3RzL0VjaG9Cb3Qu + Y3NQSwECFAAUAAAACAA0syZQnvjBBkQCAADvBAAAHAAAAAAAAAAAAAAAtoHkpwAAQ29udHJvbGxl + cnMvQm90Q29udHJvbGxlci5jc1BLAQIUABQAAAAIADSzJlCziRBLSQEAAFYCAAAxAAAAAAAAAAAA + AAC2gWKqAABQb3N0RGVwbG95U2NyaXB0cy9jbGkzN3FucXZ3NTNwdDIuUHVibGlzaFNldHRpbmdz + UEsBAhQAFAAAAAgANLMmUODPebiRAAAA3AAAAC0AAAAAAAAAAAAAALaB+qsAAFBvc3REZXBsb3lT + Y3JpcHRzL2dpdGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAIADSzJlBa0xds3AAA + AA4CAAAoAAAAAAAAAAAAAAC2gdasAABQb3N0RGVwbG95U2NyaXB0cy9JbmNsdWRlU291cmNlcy50 + YXJnZXRzUEsBAhQAFAAAAAgANLMmUKjzyVaZAgAAdQcAACIAAAAAAAAAAAAAALaB+K0AAFBvc3RE + ZXBsb3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanNQSwECFAAUAAAACAA0syZQNCH6uCIDAABSCAAA + IAAAAAAAAAAAAAAA/4HRsAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWRQSwECFAAU + AAAACAA0syZQ72tPdXMAAAB7AAAAJgAAAAAAAAAAAAAAtoExtAAAUG9zdERlcGxveVNjcmlwdHMv + cHVibGlzaC5jbWQudGVtcGxhdGVQSwECFAAUAAAACAA0syZQNiuxcHUCAABEBQAALQAAAAAAAAAA + AAAAtoHotAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlUEsB + AhQAFAAAAAgANLMmUMoi4NElAQAAMgIAAC4AAAAAAAAAAAAAALaBqLcAAFBvc3REZXBsb3lTY3Jp + cHRzL3B1Ymxpc2hTZXR0aW5ncy54bWwudGVtcGxhdGVQSwECFAAUAAAACAA0syZQE9l4S9IAAAB3 + AQAAHQAAAAAAAAAAAAAA/4EZuQAAUG9zdERlcGxveVNjcmlwdHMvcnVuR3VscC5jbWRQSwECFAAU + AAAACAA0syZQoegHQ4oCAABDBgAAKwAAAAAAAAAAAAAA/4EmugAAUG9zdERlcGxveVNjcmlwdHMv + c2V0dXBHaXRodWJSZW1vdGVSZXBvLmNtZFBLAQIUABQAAAAIADSzJlDnyEkFCAMAADIHAAAoAAAA + AAAAAAAAAAD/gfm8AABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21kUEsB + AhQAFAAAAAgANLMmUAAF6ua/AAAAHAEAACoAAAAAAAAAAAAAALaBR8AAAFBvc3REZXBsb3lTY3Jp + cHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAAADSzJlAAAAAAAAAAAAAAAAAb + AAAAAAAAAAAAEAD/QU7BAABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy9QSwECFAAUAAAACAA0 + syZQ9AOyxe8AAADGAQAAHgAAAAAAAAAAAAAAtoGHwQAAUHJvcGVydGllcy9sYXVuY2hTZXR0aW5n + cy5qc29uUEsBAhQAFAAAAAgANLMmUJwjhb5tAgAALAUAADwAAAAAAAAAAAAAALaBssIAAFByb3Bl + cnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTM3cW5xdnc1M3B0Mi1XZWItRGVwbG95LnB1YnhtbFBL + AQIUABQAAAAIADSzJlDUlzcKDxQAAMtNAAATAAAAAAAAAAAAAAC2gXnFAAB3d3dyb290L2RlZmF1 + bHQuaHRtUEsBAhQAFAAAAAgANLMmUAhKLXizEwAAzEsAABQAAAAAAAAAAAAAALaBudkAAHd3d3Jv + b3QvZGVmYXVsdC5odG1sUEsFBgAAAAAoACgA7QoAAJ7tAAAAAA== headers: Accept: - '*/*' @@ -5057,43 +3791,41 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '63649' User-Agent: - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + content-type: + - application/octet-stream + method: PUT + uri: https://cli000002.scm.azurewebsites.net/api/zip/site/clirepo response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '' headers: cache-control: - no-cache content-length: - - '559' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 27 Nov 2019 23:09:11 GMT + - Mon, 06 Jan 2020 14:25:49 GMT expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"command": "rm -rf clirepo && mkdir clirepo", "dir": "site"}' headers: Accept: - '*/*' @@ -5101,43 +3833,1162 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '61' User-Agent: - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + content-type: + - application/json + method: POST + uri: https://cli000002.scm.azurewebsites.net/api/command response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"Output":"","Error":"","ExitCode":0}' headers: cache-control: - no-cache content-length: - - '559' + - '37' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:14 GMT + - Mon, 06 Jan 2020 14:25:51 GMT expires: - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: !!binary | + UEsDBBQAAAAAADSzJlAAAAAAAAAAAAAAAAAFAAAAQm90cy9QSwMEFAAAAAAANLMmUAAAAAAAAAAA + AAAAAAwAAABDb250cm9sbGVycy9QSwMEFAAAAAAANLMmUAAAAAAAAAAAAAAAABIAAABQb3N0RGVw + bG95U2NyaXB0cy9QSwMEFAAAAAAANLMmUAAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQU + AAAAAAA0syZQAAAAAAAAAAAAAAAACAAAAHd3d3Jvb3QvUEsDBBQAAAAIADSzJlCZqxjsIAAAAB4A + AAALAAAALmRlcGxveW1lbnSLTs7PS8tMj+XlSs7PzU3MS1GwVUhJLcjJr9RLzk0BAFBLAwQUAAAA + CAA0syZQB92O2iYAAAArAAAACgAAAC5naXRpZ25vcmXT0kvJyeHl0tIrSEni5cpPytLX0uLlSsrM + A9NFpXklmbmpxWAOAFBLAwQUAAAACAA0syZQvKpX+jcCAABPBQAAGgAAAEFkYXB0ZXJXaXRoRXJy + b3JIYW5kbGVyLmNznVRNi9swEL0H8h8G00MCxr5nuwvZkrKBTXtooIfSgyJPbLG2JPSxTgj57x3J + +XA2m22psIklzbx58/SUPIcvSm+NKCsHIz6GheBGWbV2tG60MswJJTOY1jXEIAsGLZpXLLLhIM/h + WXCUFgvwskADrkJYzJfHZYoZDrwVsjwDZ4+KXi9qis/m0mF5KDK1+hu6jOri3cdZS8M4zjaOSlCi + fSf6vEl4ci1K3xX5OPRZlSVt3gXWkjVoNdW5wWHGK0Xz4WA3HAAN7Ve14MBrZi1MC6Ydmp/CVTNj + lHlisqhJnglQyldD0K0yL0/O6UNkh3GA6sHdABrNL7oC3p+lMA+NoPl8o9gD1HF/fC4XxgRWzOLo + DdZV6O4y67tceiMjObgHZreSw8jREjF0uHEp4IajDmBjuH+4TH6DFUbwlCqByS3UyF7IWad8WBvV + RIsxrUmdzjbXEB3lcJqR1ugEkMKn5FeP8G9ybRUVpSqxgwnsTtHZAq1lJe6TcXTEO0x/oCyAQdMF + glORnbfHA+0P1jLhoKdMFrKn3IlX4bbTINwoWVL6SjlAyZWnKEKXB2r0rHyZRTL/h62CT5yQPjI1 + XhJbYUO9FDSJbRHWYhNbCBys8obsz1WB2V8lcOFKAjtUTKGtBK+gFfS/sUIohNU121I7QkZ8ciac + rAmzxtfMqX8SLd79N531PRj3k57rjseYQlLRHbCTPG/bNqMO10cCGVdNbnmFDbN5VJsAkhPmleT7 + 3nzffdIPPX8AUEsDBBQAAAAIADWzJlB36phKZgAAAHoAAAAQAAAAYXBwc2V0dGluZ3MuanNvblXL + sQoCMQwA0F85MhtITLy0bo4Ogr+QpBScelwFB/HfBTff/t5we+Q+5ujPy7ZdG5wXkBqiKYJmcUQ9 + saCHJnKjNdkoenE4LH/z7nO+xv77xZzWwoHF2VFFDKulY+3EVKU2VYHPF1BLAwQUAAAACAA0syZQ + vQ5/jqgAAAAFAQAACQAAAGJ1aWxkLmNtZG1PzQqCQBC+C77DXIS6LL2AUNTSxTLMDoEgsj8ojM6S + K+alZ8/VwKBOM/PN9zOzVaIkIK19r1UWSRToe1MPB36J4vuJn9P8Gt+SPQ9/8HSXHHkaBi9pNgFz + QkFmgGnu+/5BZDOpdNGhZaWtYd4UxuRjIlaNcqiTVRrUs2otMJYtQoM0MFFLWPkegOnaUn4RHDae + i7AQJxqZsa6dq1Q4JwbZn0zVyM+/b1BLAwQUAAAACAA0syZQ+XRyCmoEAACGCwAACgAAAGRlcGxv + eS5jbWTFVltv2kgUfkfiP5wiWUpWiUOy3YsSsSoBs0XltphkWwnJGuwBJrFn3JlxCC/72/fM2Nzd + tG/1Axi+c/nm3OZ8YHOoOX6rH0zGzZYX9LxHr+fUYOD9A7X3NfhAw6UAMZ9XK9XK7S1clj4W+vTQ + foA2TWOxTijX4IeSpdpCj1QqJvgtXLt19/qPNy1ZcCSppF8zppim6lS8kEKzbL4GLiLqPilgXGkS + xzSqVlZL1LcA3PzFsxjMR7XS7YDjjcfDcX5Me8o6nFUrAPacfaYU44utRfpKw0yTWUwvII0pUXTj + ZCNyARhAEktKovWOACTkmYLKkAPTEBIOMwooEy4Rm0uRQJhJaYJE+QuTgpuAuYbGQmgBVEohq5Xz + 4pg+1Vm6C4L5V1Edi5DEqG/YRTQma/x8TQk3gTYivjeB5njS7TRbE7/h/Beldcd1p0RqNiehVoVx + yi1NvSQathgenCkjggEbDCfgfe76E6yTrT2sEBu15Dli8hAoeBeaba/THXht/B71hl/63mAS+MOH + ccvL9Q3JE2hD9ruWJs3x32igzFIONfaITVerlRRCl1sdeJ8nQb856HY8fxKMmpOPO7On2IHdhHA2 + p0obqwBHdkdj77E7fPDLbOfWyyW+4QHgvJy/ab7A/zJoBa1+OzePye0WxfqcRRmoNQ+3lV4gptg/ + GdAvwNDWdpps69yoGk24XGD5KRZjpRbnfLdrpXdFK+2Xb8GhZ+o0XsNTpjTIjHPjs2bMGp81WIks + jrCFlMBX+bwJ+sGBGg5J04ho4kyR23Sj7IZJZMPxRol4/VF5gSDQcDRNUmcaBEFk59bE/JSERyJx + NjqtntccBL1hq9kLjvW1zOguHxv3b2jkVFB201FHOPaVjOBKwdXXMnC/5UrAYyJ9//6h22vnJWdT + 01ezjMXRiOhlm84ZN7PSHHJfsuGMpFhIknQw2ers9c/fz50pChjF6fV7tz69Z3zzh4sjEudImd3b + n/7YAbe7kY7uERMs2wsfMeG2E5r+yB2YlAuciP/SGTTTNGYh0ThSIdracYvRee3CGLvSCPNsQTWk + JHwmC3Nh2Ta69ez1QVtJBJHQHCVkIV/z0PG90K6Kec3m7LvNhA5vXLBBByQMaTaLmVp+21chsPMV + qlSKpxqGQGQ6zXRp+V1ehoLP2SKT+bHH1N57P8zxV9cOlHyenFCrOQd9bfy9wG91uJyXkznmaKe6 + ATgCp3PZICki5TPVoAxq7oLpO3e5uHN3Kb3LX81A+eF0/OynWskZ8agIfRFnCEWSmAqRmGZsxfxu + XzFMRb7MYeZxP+Kbs+zlZ7dY2DcwOQoazi9FJh37GyejXRr3FqliX6zXcg8dwswShEuEbuGa1NgX + vdjQa2ytGTm4mh2sZvZIBUE8YcHJWm8WzGFJFIjQblJY9Jk0LbzCrjVL42G75nVo/OAu5RnlHn2h + 8T7Qwa2sk/HQFv1Nvi4aCqc6G7rXW4F93WrlLN/bbF6OqHcYx45EtioLQ6rUPMObEfn9D1BLAwQU + AAAACAA0syZQ4LGfRUQAAAB1AAAAFQAAAERpcmVjdG9yeS5CdWlsZC5wcm9wc7MJKMrPSk0usePl + UlCwAXIKUotKKt2L8ksLwEJAwZDEovTUEreixNzU8vyi7LDUouLM/Dw7G30cEmCT9NGNAotAbQIA + UEsDBBQAAAAIADSzJlDEWvMjVAEAABwDAAAOAAAARWNob0JvdC5jc3Byb2qlkk1PAjEQhu8k/Iem + F/TSjR/xtLsJAhoSRSKoFy61O2wKS9tMZ4P77y1rMUg4aDz00Lcz8z6dmXSKdgWK2KxYZ/xRK7Te + LklMRnMRJPEG7zzvdrodxtIQ6gCpuUdbu3wnBXEusQS6Q7mBrcV1boCURZDOXYqLNDl+jlkP0pSv + gF5bk1eSwFOaHGqtX3Js2Kpjgs0PgqlUa1nCMywBwShgY6OquoDD7/S9mwANApjoO8dZ8pfkWxtO + rasCUIwNQYmSAmQsKnZVOYvkGb8WN+Jq75Amh7in+Qc21DTEXlwROpHx0DoPRNqUXqy8NTwGtqGu + mdunmlxNQ41hbhabvF9tZePT5PRrdEmizQksxr7ANs4isbgQGZ9aT0NwlW1mCrUjv4i9mdkaFXhB + 7Ww9Z6F0oan9/ehDe/Jnvd8m986/W3XsL8TiXwh/yN9TdDvt0u38w+0TUEsDBBQAAAAIADSzJlBN + Lz8Ml4wAADixAwARAAAARWNob0JvdC5kZXBzLmpzb27svWmTslyzLvi9I/o/nHi+uo8DKGpHnA8o + KDiioKgdHR1MAsokg4gd5783OFSp5cB81/28O+Ldz667ikzIK3PlypUrV67/7//8P/7H//jHdDRb + VgWKMUXB/uf/+h//X/Bb//caowr+P/8pjlCqrZsCbBj/NRdMS9a1/7UHipV//uvyoCWLGmM75unp + f4Jf/u/Tn/7hdNWQFcb2KcZG8F/rhj0vrGVNCH7zf59/4/+OmsJt9MrX//cUHaAwefub4FvGUxQm + iKe/BP7fyj/nX/8/169TGE10GFG4fHrwjf4nCZb99f2G/++1bqqnz7/+klEU3Z1pFrMOxFoziiVc + /+QypiZrogVbqGnqpvX4d92XVZWPAZ1tOl+/3gpeR1aEu7cIqmyjmm16hC5r9gPBQVUQnXvkzgus + I1KecWJk6KbNsD7TG9TtkyJvoX6pwa9H/IdQTtJbul2qFMvF8u1fTu80BI0XNE4WrPs/+X8cypyp + W/raLsKWMRLs4E1F/1XB9/kv+TaUH8/7ryu2HFnhBbOIa7YgmidbufApBowCJtUiVARfMrnIdvvG + 8j/fz/7vG7qrqf8Q4SJ7kVeU4G//+wX52Z4jkV9//ObzXP7SWchYsAds2rqmCZytm58BCx4nbVNg + VN+IPz+OHmxBC0zGKg50UbzQPFMsqTsmJwxkbVts++xtwf8qVWU03v+VcCZq+C+KqBtFZkuab8+2 + z4gxeaBYLj23oAv6t8TBOLYsQWUV72b4n+T1jeS/Hh5d+7p98tjtU1EtI+rHxzGdV0MniUndjGRM + t2xf6UWYtWyT4a5uPPzQDmeRvgGvZdE5i5GmVd54Ch8YzLaNIiYw/ne9lGIkuLbPOCDpWeePqQRe + Efhd9v5C7X/3OPggVKTxcWdS0UdDymbwQORZtqAWKcmn4IPhRTHW1rox6zPytWIldfu5g+XvtJan + IkS1jfN8mXTiJTlJUJlsHBbuf4It295Q5wWl2FZk/59WEfZ98F5AZPP0/V7ApnYKesKxIUzd1jld + sYpjX0icvyBxZgO8+ZqpHzNfPmL6ZXu+BGAReHz3L/egX8r/a63//vMjWf7ZYP+4O0xbp2ex/k6F + 3n97NG1eA/kkfuzPBFOpW8AVir/UCB4/P7QdhJomSuc5IpZ9tEmJMY1rRPLD2aMUeZGqOJBZkznP + Sb6Er6Ie3yEYuuZ/5fmLg2SG79P2gmlfVws/lHIlRTzNB4kr3sxAb56+Gun1serzxy7MiqRgyowi + H89hRUc3Vca2L7b95i3Pya/WHpmQMGVVDnT36b2kwDmmr3ffz3qGrfthsyF5xUWt3Gz7UMprmQvy + XGGZnH4QfCv8ygq8pFmoSnGB6JyjCqek1cdnT4msh6eTDf9KESxFHAHh3cJpqHx2C9fHUnQLCcSK + 6S4uDr90jv2ixAORhz0iM6IWZBM4q0iZDPfZ0LqKzn4NjA/P4uOPDxSD/Ov5X+nZYfWlwi7QRrE7 + 4Gcg/8zugsdqZaDcSNf2QosS09a+lh7Rre3Dh31evdyTUfpWOK+xn1HFmdEURTjnxoqkIXAndy7w + nyazmwHhT4Cn9Nonf/1zSsvOgL+Xiv8CE/4hTFIjvl8/p2fSXy9IwTxDL9riRFfPhlSx596kEvIw + zTst/LsM9aloMc32rJ7cHG92NnrjaiO4V0q/DKjP4XjIoP0xVfuRIEhtm7rhB/t7mfsYl7+guv4e + 19an5cnnuOj5IsMPyUOvLhRGVuOtRWBF1P3fSjHJIy5lKOEQZClFR2FM9GCYghVGPV8p+DxCwouT + /Bd4qXtJQjuln0nk0iWDnEoqMs2c0s9PDa+3wM+FWEGeRc8ys/RaiA8qM69PC6zMaMXG/zxA1eL1 + lxoTLEGLbwdvMHmRllIKhhRweuFP5muB102mCICZcq9mwj0Wn7AWnhb6V5/2OJempoCwL4itg08v + 0P3HLMcSihX/mcxfUvX9bGYvsQ7FStn/X1YvMCXfb9ez4u6w/g9OsVItljNT9vUdUC7vSEMT4Zxs + Kkb81lulYsHv35DUfN9yT2a7b1mnYbihXpDEakO+IGX03+7lls4buQ8UP/NhI13rCpq/+uBK5/A6 + wjz4ZCWHBPWvKeaN/QjpJKX19dOQ0Rjx405URqvF98uRJz7kfQYyNuTPNZgi7nfPRlhN/1vUdbsF + GltLP6SK8fKbDccE1nLLMS8VxhH2brM5jdHx4aNjjaN42wmRlPDSBlIc4v4ssftoC+uLpKEfjOIr + vmhCy3dDE5jKf5pferollbN7ejUzRP+Mn6dEiMtZn696pX9fBPEx3xxKCa82d9LbQUhtDzardGCQ + /vyAxt+UyQ0pyoe84MM2dOm8B53LmIy38xNmvXD3/NfP59XPPy/K3nIpaokZJMethXlZcRBh+vyV + vhDzh4ESd8/tT2x9oRqn859tKVQWKhJtvtWHpy27kLI+CWneP3c+U/Pq6ac5kkgP/6jFCUeVSubw + 6djMJUD6SUJ9HTh+572jjfAfAzYUHD4U+yBLhTA2c41e7/a9c17w+d/g69r8XCWbZYLr42SQ1TLN + t8oiPjiteMOF0fekA1mUbFcI/vvfa8MsJsWYZeeRfPbtsxFWr2lVciSZIC5PBwXs09MZF9r32h91 + lkpt/Lunr1q7/ZJQzjF8RVH89X622Zw8RlG02O+jyX2IMiIp7tXxlBwmtQiKzUNJnz1XAmCDHEJs + SD9Oth9DlEyS4J+ASzDi88zlv6xl/Iv09aen5NfzWSgVPJSF5uB7Uo11f1ko9oWmr2ofLoNR4qrj + i0HOyfqn5wfzzNTno9H8E0jZxOMxt4V+xJ5/27jPcI2bz4r4v9e1f3jVGGcd+OHc85Px9tiCq0gL + LGzIlxLu0+YbFGXUhT1c8/BcsXV92H/25TmuCBXpDxnT6+rlxZnSJy8Za0qwARj0RwwB26n/2bkd + RdL+ZzepuetM9PqU6UPftI6s+JYSqp/Gz45rkWimuhOZJpiegpZbOHnTdSsOh75g2ea54iQm6cko + QuB706nkvgfUjx4zsbig2l42dS0YsHPGn+rYy5Qfk12wxXbvvWIyug7dmOQzSzD9IMO8SdKH4hK6 + GcxPmp/9/OJwsHQlmjqvtF859DNlcv/11Iaz8lxF2J/5/NjXn0m9tLyYv3wNDpZ+Bzjh3VHgr6N1 + f3ykjjIIbmj9uW9my4ofw0QchmN24wtK6LqSuQ3cqCpDezCM5HZwH0oEwJyjic+KiKS0G0Ci0Tm2 + FFSmcNGnoXvS+Lb6wKet69tQlveORVT07uk7DCew/mck4dHVdTGMG33NoefaLYExzzFvXCZfz8Ac + pztnA4zLaxz8OxGDx9aHcRlRrmzbyYChrY7ACzGir4CPbt4skONRFgldkblog/WC3MnZxh5u5/EV + 6+2v+809J7hNrJySMxoTLVy949AXPEQ45YWjAp9gGr4njY/6A5+YU3PcVdFtoUN8EW6YoKdixo7J + qIKrm9vIDjffZVq8ZtpPGFyWTwnCMlVJFtTlHUPeuJzvxEQM4tNS8Ta5kXEQe053CKcLMqJTjn0t + mzIfg9KK4VivtcGxiBIPxS9GMzwSXbA6JhibixYRDHTuLrscizBW3mUo87wiuH5ABfvTkGfJ0ZQ7 + 3HNRn48/9E7EwVce3/R4fU1pyOjBUPSooWNAG9l8LkTRvzKYEWFN020mHj7flRghEzWv6S9teSKR + xzbkgHjKHPXoujlRxXWI3wzmsuC2v+8IiseFYMSI3jEgpRgRExQjjlEHXx3Ln490XrjdEgxNOHbl + aOBE1+pZIYgQ3OUUg3BwuWQpBuldL/mwlIJl+GYntBlOipwpv6eN7xq/GPkWfNlrikjvBhtJmaf5 + LzTxBb3EmkFQQXqxSH/FFkPkCSXeFsVrBpTJaFZwY1diVfzkSOrcNlR6/45ZdKMlg7velGmk6PlC + Eyfw/iY96y4y4XczxZ4V9d0GE8tb39DFnSLJIBThgu2jyAnzOIYQLc/e9qexa+AadqaJtTR4QhRx + 5DzlED6afUYedop8RotrQ0HVw+TFn1FPhXOYFCZz9Yye3Cln9xGP/KuDZvhNyFgz7BMGoVH7SRpF + 6Bfbpwk2XuNLfsemJWt8Egn+5bvjuCYnoE64t94XPEIwrxd75rxBf88l1OLxhhq57h56uLYJm5F+ + Tx/f4r9zujDPGDdbKq/PH95QB/j7U/1eDq6iif8R92xOLVKsUCH6Sx6oygo8f27dEpMFIfkzLRfK + 69+zONdcBWWUbNQqjtC57Z808dEPl1W+IfhKGIaMJ55QkrYeahl/V2MSJd/ygjA+SkmKcpK+9HdV + 9USgRPe+vr/7OUSmDzo7CDHonxWihCEzoqvoQnOvopjz633lcGgyfx1xqkMPFVyPXl4g9k2QVvnM + 3YZ7ShVVSSs9ElZkRd+DimkLiX1HHGN+aknv7eKH1kJXcN0rMrsirtdVSimZZIxd1kwVnY/Cbr83 + N+1dasMy8SV5A3iRJUfsUivOT6vyLz2PmpfKMi0/fl6EmI3OHmr58sHvKlJuGJ6LMP9FCJ4Fyg2/ + rxLUjD3uq6Ef8Q7tfHTwBUpuavh65lLE+y8y6EfRcsP0JG2uZh25YWbKUJ8kzg/fu2v68jDYv8qJ + fLxkLhOlXOrm/0X+4yJRbgjeHhv4ZZPi44mGwJxfHdyPe4dkytq7/eRsVfh17iKJ0v7WZfv3oZN8 + ML6cbfllq80XB3dywf0MSHbwvzoZlGaK61P15XeTY0I2BEXWrh0wasWXlzsmRfmV3Fki/X18KkV0 + /505w1uwslSJmaqhp1IeEX9LPs39/b/IUswsB+2zk4hPTSaxHM/elJNgdwckUxoQH85wxrMGzufM + GEY4EO+kyg7J+43BfNCLvF+Z/ATjv9UtvaKhZQ0EilNBlP03ed/xyNPQ5UVz/eul3Z/pvtoBBu/l + dTf7AOjBPnIaHp9jzJTlyie2e3lI+w+1gwlbNZiPbd18TXYa+D5jnn4jsby9Z5K4MvY5gXQLGrN2 + 1MlvArrpojgUbIb3bfaUWS9CGTrdm8/NYyjk4G5fvCwf8Z4cfPiDtTkhD4HkYFvPPiUzhdy15EgL + /jT8ZraO9g+sde+Qzlah/6mqTOso0e85fJP02EgKwUDiNWScIvp/ZQBxRTLrsZ/JXkBqvZCSlM2+ + t8WM1ZZPhPQG6Dy3dWLnujNWwhNYMtTFY+Ou6Bp4dm/AqeQ+8xzRj4/PEic7hZ6pcf1DGovmrM8O + jWIewEmgff9lmSr8T+84/5Eh9SB2xgjf7HOXzq000qiqSNSM9A8tCBL2FIzTyudzf4+0Szu/Nsgq + b8zvFoncrO+CeUpGGLWhbdh7NS6OoeWs1xcXm703+AlSxlpJfXsiWUSepBnA60nxz+s1j22Pu9ku + pQrFZ6eJs8Tp+vnZovTVmfUXFPz8NcU1d8Blqx8r3cq4vzfpGKd9UJ72YGVdlXetMc/q4H/0WyJS + 6iafOA36ooFKRsr+elvmms5wHy98i+zEPdxCtKvJWlO57vvd9P/OXVk3RFH7a0dq1phuo6g/Zhcz + /NQG+XsK/6/E/DIzq6/28EmMqk1KjGm82sDJ/UDll0zZwXbbrepXhLgpNs/6/YHynbi56PiakEpJ + 17G70r9vV50H3NcvyAz2nxdA/NFVSgq11ZE2vzPS4U9UM9TgnktJZSlckxFt7fEbbrxIfmVF4ssn + /p5rI6JdzZBO++Q/UeQdgJTlgM1iczDe3Qq577w+Sp8xztcO6+8KhOPy/naVKTrgXNIfD5+frQ5S + zHikcaXp37i/m2CGSX6nTOLLacLuLmfSD/zUzeNKm2cD7yjru+QFm5Rk+g781B+YsbaPt30EhJk6 + k2yzcdfgMq0DqHHi1Nz8cjvTQ99PQu7MJq+IqZQPg+PUAl/zvf+5P8/DmiHb5dxP0LLV0MOiJiUN + xbucMlfjfxA8N5QX6vPOB788hruXIFu0MkjC5nFdZIpBxfPPzVC9+WRev8BMcQQkTowkTFGEvsnx + 7gax750VoNh4EyzGunYslWTIx1thMrTGM7LZm2H6NXxRLwZ9p9/MAc6jtO7lvbfpJv9TSYdmJ/zp + RWk7vfws5fT52drId445O5jS9+mJk6Lp+eoE917lWKp6r+psTep2Yk8rK+jbxVo3RSGMgm7o0umC + 8niOLOHi6rdum0W7W+mhCqXYurvxNkMzvjWv7Az59vr037JfHvJWs9zrg26xyk4jwb30mXQezQiV + 4HuzQyPN5dwbB5cRNhkvNG43sVPeFrxfaGTSlOj+FVmjdIm5sjelsFFgTsZ3kTtDeO9313JtmpzS + 7mKyDcJ0Yuz3m2xZmciD4HkZSWpVI39mlfFOmhww9Dn4MaH1O0qI86rdfSJ9llC7pmynNlnk3l4y + /bblf6CU4A+b28kCMjSxVAvDE81+STNLyZWaUlOWrGwh69L1ZxrI/tB/xmjlMyle2kQFYpJeNjfH + Rk9rhd40eF2z+ooiXsPz/BuX3+slc/3jOBn03xczvLkrthn8JSWWd10E/vCk/tSaf7QFefrU8/uJ + nj76vUo7VxU+fWjkqIIZ5NXn/hSlf3z9dbl93okUzK984UyzmLXw4WV/fsDeD6TMx21f8E1GSKti + Kc5m7f2HRB/kD/Sn3gtJGFAmo/krHdMu/mhKla3mrx+Qk8rTLKZP7Ghf6iD/BoWJu4zkd/lK2Ojl + 97vbu9Yh7bMH+SMl6pz+vjPckzGU24A9ubZf0f3zrc/OBfgTFrkh/9wfpXaG4FOTvnzmnedC/gGM + L/Puv2xuSj9vEnHI/AA4S9WmmR2Peq1TMjf3ZDfp359tJbNO6JOyqDHKNKW+po8NQf/5vyK0qL18 + yteslWkh0fVlWQP7Z/vGxglj/0yv2Y8+8w7OPNTmL8Iy6DgdbYa7EzrWYAr8s87pyncN4HsWv+Hm + y58XlKCqbJ8tDPy89GhLjD9KlBwyQze2kr1F3msyJdsMZ2G5FxQ+lzlDjA0m5VrPP9W+5bYUM/vo + 5Bu2XHST/rGhG+bRPHOULoz32a8PLfVDFBn8vMQqB/3mcWbpBtXfsshMUmHyW0pDnhbzZ2Uy3yrM + zk6+R9FvrPN6nr4V7JvP/v7xOsMlzY9+VMzNy7PUy1duP4lmIubP/8A9OLeSpozn3cnU7+ZWvvS+ + OImq2O8PQp/XpedT0LG09PxDzzHkzz48F13BhuEvYm1fYx/i+bauKDdZhHBPBgtkzjFNQYvAvoir + qmMHV1yev/3l7sbNsZs3nO86/AisI0Z4PvCbcx9E/7Nwba1HoPT9Lrel/OkhyudRuq58QhfxNEaV + udujmW+eDo5B3jVQePMsPi7e1Kx+fvj7sGWUZx/Kn9+QDWRtF+IR3/dfv/kTx+8VbOgHn9zF+YLC + OvWMsr5+GjIaI563RN+9KZQar7uHj/t3HwmCEglTN25j6hBU173ND48/35WEFVH3fyup8civ80Ys + 4kWt3GwLpi2vg1qoj/LeTVRRnj352q9D8+82YO+oQqvvK3kSOsly2t+N9nSRYEzG97pKeLLTTx8e + nzOKI1CO8dExB+1zpqeAgg4qmD+NlODxBaJzjvp5Njk9SzC2FI1CVX4+nSxgqRTB0osZOsMo5dxU + JbVY4jsZdeaYGSTn784SmTRPaSZqcRKr7026irgPpn/ClLYezkZ5dpaJ4mZEt4MVCaEw9lo31R+l + BpFsPrs4GB+nGEPdRCSUZwiRA4GcIocHquvvg+A5aH5wF3ml6UbemETKZpzy3ULPrtiJmFh6xuF2 + 9ZfHodDkfd5OObVXNFP/i062f10TAEUg3ZXk50aXnxeX0drHnoZKoOW9ry/L007XDoGp5wKzv8Pp + kwmndyb/05vyECzN7ubPXvCmSUIqlxW9f/uzG8qytsazxDnoDtfOni1lf50fUlcBcsDq2xD+WrS+ + RcgBL3KnnMsI0w4GPt8ZeJ2KGJsJPqOtyF8L2LT3L95KngPKpwRp2gg/3q2S0ue/L4/8S3pJfJAi + bZW/ikVTQitxnWqqJViZ1qy+hDJ7laXjClPUWrgd4Vz85xu0MlTM7UmttJQSoltHVsjdvTof1P52 + 3/1SlrzwO58PzML4cgbvLEhesAUZX//zBrKWLMv0O7C7kSYvAFFtL5u6FuzpzBlTDnJBaY3fP4nk + M7HygjTIWadT+PkZzBCze561mCExyUsTuCb/cfjf4ZCzEnw48kI+6RVBOUJ/zyifowNvcctLR33B + IwQzgOWPa+pX+KhvPPLSwMwKGh1wZsLC4LfWlDOINyLlhWLCi7L+mKt5X6mlfpVYp1vH8A7G7DT2 + JDGUks7Cp5ziofh10PMFiM/enyeMWW0lhn9pHuKe9p2jF6+EKoC4WsjjTmDEg8WR66gjFSrfF/sm + cwiVIvRJ0+d9/uwU+4UVzDOGfUl8xKlLCldgkNHQf5QiO8BeH836+5Jtr2XJC79TOYuVsC90xINz + uYD5JVheSKIqK/C8wP/bgLzKlReO1yVPjjiGXJa9ui4sFzVcYclWDfciZhJD/XxNdiJdzhD/8TVR + 0prHT0mBECzSusEqc7O/fmjWRpFF6JDSxQSp1g7kcpQ9Y1vIJzIKzi3nvhRPXvH8RytGTme9M9MI + zgunKqw0G+ve5Zb6gocIpryP7tJTUUrsCvOMtHmHdw5qJW094UWjrz4+TV3+Ir2cActOM7d32v9O + V/j9ff/WHpKvxM1F6dnnUF++LUsBT/rOJMiL0c38j3Xn+8O2fP7QrLWchwX/fFH2YmVRmpkgiLn/ + nhwLOZ7ikQv8QQeZ37VQjKO/p/jlqbUAxuz1ddp3ymqYZAzS6duzhwjd+1HleX8oH3+Se0XRE0mz + h/XUyilbWDOG60aC7OD6viAxk0n6m32GIhhpJg9TDQtz3MS8BgRZw/wq4vhdU/LvWh3kFdx/UFF2 + tvFt59HNIModTqEvZcoI4G85s8Pyptnsb3Rp4bKneXUUfY5bysq55v3OGcfvluq01RH8152XgrVT + g5NYqnrBP0As4PpaLfeElL71sSiSzLlSs/ak48or0sVrkhFKkRfoiwOZNZlro5lyEcy5M1u1FE0n + mZrBDdrp6f7MNKri42ovO33cgJOpEhb5gf+HkEy/CPqxN3SG9XpP3UNK9908nw8ehUsbO5Q6NxUy + jCS1v1c25xrgYHud0BWZ++rg9dptXymvZcMva4V/klCMKd5cm5ClpzCF9csriR5aRv5XaMK5bDmM + 0mIsmYtBfb7d/En89onFj3aDUSkv9h6V7HlT7iRcvnqrJWEy0rWuoAXNhpNwIQ2Bk4P9p5uCxhhs + IpO+2jpOyCnoRJEet1OazLdzgT91mUvILb7JPzAKulj6hrgXzNvC8ni8IlM/22QIT3yX6w5NZkam + OXUkad9fsBaFNCrNzVGDwDkF67nIWv5xSiQRg4cDD0l4PbTyT8LKXx5wgpUImu/rAZJwCZbF597Z + J1YD2X9Ciz6aflxBkIjBkzRzTDa3G8thWZiMG5DFd1NXDlHJ7k87RSW/u6eh2GYUIQidIn/8PZsn + qbpYfCIS398jUWz5i2lFTsjk5v6IZIxWsnF3Ajoel+jUNwIgpm+XcXzQq3s0kvGhGZuTojuNeybR + iXF/FmVsgQ+K3xgxjkLOKd6h/3uBv7/gKjwPQjZi0c009XS9B3/+CNL2n4mDQkSKx/tOYtFfr32I + RTxxBNOLE/WfqCPSPHSsC0n1tWiPSRd3Gg3oh4wcGdeAbsSoQnBxjOLE8bgnDoIddLS86bQehwsR + Y+o70cV2RgH1VNg5ghU92Axov9oLxKI97fcQuhx9KXyif7jALQIpLbDnRoMxic8Jqe/Va0w2fih7 + iAXdzfV1ieRIAGFUksulRsW5j5gePbb6oo9Id65ZiLVQvbn0AZEtI5ioYyns4ebmIj44JV1ieYlH + XgNZlGxXCP6blFUC8tiR7pObvhKwiO8GX97vkYBRZMrvK8wYPvr89/IKtPiMzovbyPSvtvXPOd92 + XH4JlHLhgDEaHyNQDX+7SlqcaVnjddeKuZp9xTUmm4EeyxwfLrOLS+9/vfy9Fu6ckLZjZOCf87tr + iJaIUwLf85Tf7VZhIkYxmUQk+24zpTCyGhmDT3cZpsOvbUVelby/JTEdbvFNJ9w1jLG5+h+mcbLB + RLbELw6nHwR/fZ4ErMh0J393Dvn8GDcmfcw086srJ5PxiUM8FURHYcwE+YrvqyfHe8FUTqme+DzO + t14GWyNrRXeT8kmA7It7OJPyiU9++ikp/V1ZdnQevs+PPMd/k0clNBnNup7yOh1eTMQhIu33FalR + KQNvEuSozpedR/ZMMZzRJRKMShZED3FSfo+XwsahTxR+3F0zG4v4/t7Z+CziEH7XScYkv2IXD/mI + JGEfv9hgUMQQmka1/H8ocnh7176LwL5ovkluyeOWeZ3rs2DDCEq0nhZ8JWL8XfiVbjHZKS+9/z7w + 8KnELv7XX9+U3vdfwM7q07/q5tLU5qWyLg2W5zI1Pw6TLdv0nt69G+YwxVcgDHNBRHoqDtGDEfLu + fssnQfxlHP8Tt1bzMmif12rey5rKEH5SxFg6VzAmMs0n1ZaJvvL+AGbpcvryqeH8+Lon5a8P/NJB + 8oFn6/Sh/ndGqhSOcHggq1OpwbXDz4RJBaW7a25LQNRK9MvAC39DddSWvvdNel8+crtDHebxrz3l + 88PlV6XeNzspH9h+J8FDP3iznvtEE6qhceSLt7/WMv+kdsKlXLqzqFRs1LzIpTGnm4vPH186f2/a + XvG/PpD8qEFPXbCHW+GKlib7slajyXrl7Mra/2RMFaoWw77rbArVH1Dccjykza8BxeCXPvL3JVf/ + Xgu7lp38eyV8kVs3DEWILvT1Fbp1KFb8qaL8ZgC8eXFYJxtO3oQf8xSFSB8Q3bU8dWOR3xnF+aT0 + xgjuKf4bLyzhr2M60Q31VbSQxN4uPC9ngJ6u56LwuYkUf4v3CRdxpYDh8wNRsdWcXdD9pCr+A8Vd + 9XZ6kfKL6o5fEy2/f+68R5KZCX2dhvNXtUkH5atjZSmM93O7s9881vFxKgZ1t3uZqtbvp5nSuUFI + LCzvM1YppNM+I+GbAC8Q/rB9SZV26P8qifdzN+DhHWksVl+53F89ArKY7d6dqkvsVt4cs8sF6BjT + 3kcvc3e8JcqzD50LwuWerqWnpzRlEcp5Ln1RrpeZAX4ffowdbkVRT5xkYFyFpIzU6TTmf7SzukS8 + /3kY3J8n/YXrkvQ3AzLO7/teOdrTd+ckwpPGmQDua/7/+qVYCgPgbjb/jxv+L86D/2ocIqUdMsDs + FL4EFXn+suXU6qQERm1FlWlXLrD06kPTXOvg419tJIlW77lneP7AHtR9ivfD2j672f1zGuZ3TUIP + J6ySrnjSs8q41hsiKxPp4QdbTnuYfK/GfrX7ibbujxDKRbLqcEb6i5zgU0h+1ZbYpZeHImvC2zz5 + q3Tks2n6hmWaM/SpuOv3ref+nENPCdPbleYvxDfV9GSIxfe/ZDX92GQgAmX49fR/r93TH41fVZ2l + atQ6378wd5VtxWlaRpOCbs89mZ5ue0Zh89D+5evHa+v1dy/4NIcHRewhX5PmvP7YYCbxvtqNB/+F + 81m2niwbx/Q9+P7uVUqsGSsDZ/AwTyfYzssoRMk8hZ89qHcixF9zxQDwV6FwEwLmCsK/wYq+b9X6 + zV4vvHayheu69186b/zHn7+fmsLvVkG2yN6vlHIYxpmI8yLs+dWKzaYkOAt449Y7/L7DMA9r8heX + zKW00PnwljTXOT+TDL9FW3lb6TWR/x8r/8P+2e/GIdcIONr+T4oquWYhYs+u0aaKv3jP4HlXi+hN + MuJv8ufTIuOtuGlODJ96KOZZPxE+7/XflQ6vqa7O5MPj73tUxiIO7XlD7ZInOB4cn9HYN2zS+tp8 + +9R5JMEQa58KpCPveYfuWnrTXy87Gax8TsBnkHH8j3MPnxz93+4uMt2DeC/975wjnx+W/kAUYpP1 + v8fOH5/u8pulLm/KYSvzv0O611SJQrp/j4v/nUOE2HLPywYidWl8DN7CLiaTfHjyqtA/Wk+XezHD + ++cyqOIN16n/d4YfWZrGi5NWSQ0ql/Pj/z2J/YFJ7M6hRqGzjPwnzYep61euqUJMzNFm8WtHvb9r + 7l+oMXLPH6OJsKZKCKYq31a6ZpN7fpQ4k7zSjSyZtbxOH5qbr84Glcc9hox2OjJA5vHL08Tnznn9 + 7g3MDDZyXzSHynMT7EPlwnXIVdIX928tYIgyCacN2qmGPtJmw5MO8y8Zpz6wf15B9atOLX5FQ+l9 + Ve4Ly2/ebYnRNEGJdv7yYh7v7na68k3VOu4R+bscQPry3/vCZEd7Xl1vlkbiN/zuQ/ZtVn/Z+vs3 + JJker4T7Vc72+9a1HLYgftORvcc71X7hYbK/r3fjrxr7OfQzeRE5hyH7GYTFdVFhnv7xcSmtHe4u + BvyFQ+hH38g8h9zfWi2TRUufR3ebui+/ueXxF9rhX7Qv9x9iLsFtov9tKL8yGM9H+SnMWxl02PjX + qezl41/wh3k2UFgSMzj/cPp/Z5IgxWIy5p1y/0E5SW/p9ukOxjt7+Mf2jBO2hqkH7Se+v/Qf6xxW + Xm7qWzOKJdz8UWJqleDWyX8u33z93pu0h//CYsuRFf60BoHu79H8fjHDbX0zePniQNpn7z3/9D/n + hXJpjjXNfU2GXKe+Jpr9aU0kmxJaWCiwvcYBa1lelypTdsK0qVYfGGPNXofc1JvMdFE3dywo0w1u + 0oZ9Zn1hTR7m8JiZ/K//dfM9xkVF6pdkrC8ZeyfZ99MSY0nEO4riiaKoOcZWLF7kCYPhKdwXz6fS + i7BlBPueQVopO2wn65nZ07oNo05X3RVfmelAY2iUGapn1Do7jynsifGB2NYdsaOB8+6+yqwa8/5i + WtgvVbquyb310MRMqwN1YXIiHiUGl2YdNzy2RflGYsYyNF9i7lviKJi/4BRZF21dW8ui89WeISPk + YXuCQpO6hpcmS2HaHZPMnuhKTQqQ+3QNRch2Zd+T4ZJRNtmKqyp7kp6BSIHeuHh/omI9B8IOuu5V + 6NJhjjfgbcHAl10yjFVzT+QLg/MdXRxUtVMXnewQLZnrRrPUEsceVjK7w6bHAXa1IxMiZMztXVsc + m70tjBqzpgI33LmurwtHe4nWAbDtLg9SfUKUCzTcrs4EFhrLDYmqDSEVFsMheidbSDTPNJGRJDlJ + UJnsYFy0gA4E8kRToY7b9oEfVMdqU6hNNyomTFbmQOisgNUQHsDHLbtYbkTNw8kaCfTKYGVW3lD7 + ZUdfewtlATYJQ3G0lXwouQAcAkbrVrAwGJ4JogNo+3GBet6jyQhDycJdcbpaTzqbIcu4pLAFd/Zg + s+yt16sO1iirPsT7+nTJG8phXR6xva5emPKzKmuI2hiGhZrq2SViW1W6GAniDQugEJcPM7itB9lC + wXiliYQk7seXtmx750utzlf8WEX41AQbkc2TbXul2uOV52khrOtKQSg4sw3aBEy+LDR2vAvCFXC/ + AKiR0/WHbtPoYPNBnWhODmZXOtQJqGoBSKe0QpUm5TnIZF0x7Dq0ArH5VJBlTt6WP1mpfJFZPcnM + XWQ+N/7mH2T+hHwoXsUTr1gaGeiiGNhBrQjcb/6kpYEtq+6l4dKpjVcLegTaemchmRuQJUf1VmF1 + HNFHeDWpjtdG7QBY5ra5ai87ygalumRtzRyOhNvlawU/7KBXCrwe4/XJ/igp0TSg3MkYDfELbfFE + Gwvha8s5KzuMjUW57HLTvSD05nPtIFbVyhGpMfDa5UEYxICmY6I1Q5SqdZmezskDMKgb1mQ37Uy3 + GrTqFhhKlwn5qLiLri0vTIynh3P5kx+5x8l4kDIayl/UaeB8qt3D+UsokR3qK8cQTGDVnXoNc13F + tTE7XNRduVUB1m1R5+2xi3M0sO7WURIG98i4dlyhR5ZtV+2a11jXD2vDsIw1rff6Gi2qm2EBrC/6 + nwKJV7jpvswyz93JHFcHd7wSaITSt/4SPDsFuHN6aSzWKCQaW9LEpyO9RiHzdt2yoD5BUaZKQYeG + Z2HyaooPySm8alAehsKqwcNUq0WMpqqmCHsPtqrtPqQRa8RoU7tPq5J70OxbEaPhfSaNBO9UsOzL + HHrtlwMExamZTJ2sW8Iq2rja4zWJYkQCo/HOxLWVCWSywGbn1qaUuSMsYnc0N1LvwPkz59Abdfl1 + 1RCxCX/kjRY5Gq9XFDqR1/pse1CPy8Unp2IGEp5nOfNewk/g/qQsninfYnt9lBdYmdGKjcj3ON8e + bgOyUEN9TnbH5dl02teHKLwrk1yTmx4bKgsdWe9Qaq0QlJZEgj8eDbUjbRkVXPcqCNylO4sWXtW6 + isoUHKJvrJ3hhKgNFlNtjNWee5kwYFhnMKwrGNwtGIHjsL7AeK6xtF5SPL0klHLXAq+bTBEAf592 + yzrMULAKCYA+xwqllW3bZc6RuoxATJZ9HK/wy4bM7Ih6ez825n1x4LH9aWc/2SymwMA+LMYLak6M + 9pXqpqzbDWdewMyZ+tyFhUIjNfUmfksM/VZ/n367QFVmrfZIrvXZY1lf0J7W0qei3d1bbm1FzlF6 + s6+Apb7choeNNuQem8cj19bkoTDp4NseYDPWRge2C2WvtFaSoQxqlW33/eh9i0bq+o39lgj6/RWa + nEwrY9d2BQk7kMJkv+ovhIJM8gUeXKxGW5Rz6GFnyQBymelWlIIyrYNNjJC5/lCh2J5lg5ahCsIW + mbdmZJ0USACyqrPSe02mrbNstHOicCyhWPEpft8IxAvdUb8rAoc25ghTvqI2iaOA0nV6wI5Gg6Om + Ug4qN0r71aJewRx+xh4qM8pVulvZHZpyvTdQGr47xmFag0vd8UhyCoOx9zyMCY1IahpN5U1xdF31 + g9bfp+vKCqTgXcWzyQremtrEordHZyt+bq3ptTBCpdaWlcftLqo0XRdeWxsCUI7gqoMcavauYUDl + ErpjyTKG292aIWNOq16ZbvTnuYbQiKSv6yRviqJr61CslP3//T49Q+qsxM1VFbMnMrKQtOMMVw84 + hwyqjS5LbQuUZdgLrwcXhvi42xxMN4QOT9qlXavTqi8Ks5HXb0Csuu+67YZdGEKQay3bjfdR01s0 + 0tNx0rdE0K8p+YvQ+u9T7n7jdsvdLkfRJYIQof7c4RudZndALx14XjFNt9Lqw7tlWZeqG262Eys1 + fdmpFHbb7hQ4ACtsWEUmGt2f1LmeuGTXGncsKcv3E+1rKFLTbLJXRFCrw/o/OMVKtVj+hfFwvT/s + GNQWa5eOOnqwCoRLNDZIm+bMfhODBnVL112qUW7PDqBQ0A5ECe5ouzI8gekaXYeOAL1kB/CyPfWI + tbvsdKHjdj+Zvh+5nwBJTcVpvCiGoqFfqeiDqajTttZf9QbYwfMG+G672owWO/Gg9fnVYY3bJrHd + 4AXI2E71moItGss9uVJok8Rr8NwdDOUqxo5ool6GqhIH08Kqb9TCKfoVIKkrOsmLYin6N87FirCQ + 3bWMb+l6V9XqnKiNON4ewbN6mdyofRrcHLqbitzHxnteKx+ntCXuSwow7s3GtSPf5eU9MJ92NNg6 + HCREHB71NcHT7931J0AyUHSmMzJ5KoIbyNrW153A2KczsSqj8f6vgvxnI5vdZ7zb9GgHdbddpN2s + toTGrL5ol5busUt0ZxJW5zpACT6OQETweq7eRA2j7C+KqMasOxIrymiLVdSFtxlTZF0flZEVuRuq + euv5yuhc5qcEEnJnCbmzhMq3hM9V8ZayeKJ8j+3Po2QjXTvd6iFzP6siU9uRM+0Njg6l7kyb7KCp + RqDLgdGxG7A9YI2mtwOOhzFpLuv9Xm9lukCtIzfr+LG1W9blnWWxQ6iCbmtsYw0OuyWrWxkB1qjW + f74SuRghdyOhpmvinYQvsH1HebLb98nzJ9iShsDJQXGv8OQMWFrgjnSitSl7W2Gzg2m6alTFrm2a + gwLINaqrAbnvapi4qwKA4Prrtyrd31Q6cKPUanvsrl2pVFBb5HYzBVr1Rp3lkgQAbCCym9DgWj9E + DI3uDWkUeFVD1wTt1YVgqdVPel2tsulOV/P1QZMaKL9H2nK9sgfZ4cK0nAaz7I1dfV4nR8hgLsno + zg/dIIMYetOuhVgHaQGrAAvqzTG+E1BqPart1sLx+Yz9Bc1FMvVGsg9g3lLExfBt17K04Nw0urNt + 2xg25lW+upcGOK63Bl3BA1Y1tr0dzkcbdGUJHqyoVa3GmJzVGws4eNzOiMJxvxKPFjugllJVWQpE + aYWURB6HCTMCnEXjUcgoyH4TxwY5uPSlrWt7wXx69DC1nA9kTCCigPIStzgSMtqvblm4WQM7Tnk4 + 6gL6/kCtZo1KaWe1+cqRmFp9DnTkdW0k7hWlvaw1G1uIxcv9mdenG2tGU9YMMnkefzyHKpCDe5Az + CtR39OHRvi3MP3WpYTg7Q3MWBGU6ZTW1MFZ0ebI3mu0FWZYPm9FE4TebLTau+iHgtLbAgDlONKxZ + q0TiBlOh+BkNlQoYwk0KQ0UiQGPEVJwayR6XDt1963P5GwG5BwHf4vuUMDyw943h3vUKSQvbjtRX + +Sk0JLoF46C7kNv142eaX0l1TcfHBo/UKHcCtg3zKOJohW21dFkt79lppQDTFr2ZqLP6cYGJE71K + 0SQBKW1BprkXgdhZRvFORuFRxrfwvqINj/CzKpFiz82wVGfiwoOxik80d7kY18mVc8T2RoHpNAto + Y6s7PQXoIZjQlLx5abg7KkBfGruroTIqqJKHL/WaKGIcPmdKg1EdrUI0AkBjFH3rJJ7Wemzc96U5 + H2hD1IpcEL52Qjvps5oFosyYAfhahURZdVjACm3LrXu9sTNa6djWJICFBjumJ9Qweil25/NZrbpc + IXtrMFtO95BUaSxAi9A2ozY8Ukf1lYQT8m7IvY/Bgkp96Vumtwhenz3ZZDUsYnmEBbuxU5AQt+Pq + K4I9EnvXsYEdTAmgJ26ESQuZbJqVg2Ixu25nMsNrcnWlrdiG502cQddAuvIeJXC7gfa2fKU1P851 + Aqx0Fh9xixYL3FOEH9c+fvtghYYwNnOdkkh/LfHlLbKD1UOYHnAA1aG64Vco0qrirHAktbalbSbV + 1kHW+tIUZghoi4oDqMVCG3hEG5JVI48e0pDVndAugZ2DaDkLCvK2WxmrODP1LazGRdjgxsCvWeaJ + sG+R/sgkPPgvWgFcf49rQYuajLXAscfqsjfcTZFpXR8IwynLL/d1dXnkCoVKXRlJJNdelEV9DCyM + Ls3vYRsqt7ujQgfjBWKGYm2h1POam5myH8HyiB8W6htr/DbmvSZk5LPU1lXqy+/lH1K/VUd4btH1 + cjcQip0TI/8tGbqaPlVrVuAtNeqMKVZaKYwwnO/XzAGc7iSsgvYUzu3UyrRat9Zaa+Bg8lhYTad9 + 06xoFjhCye0QKPeJVW2slBxhuKvtxepEfxtWXPG7N+H1o6yhdPCKR1Lke1aWI6BtzNdjrDwsOasa + gRWGzULXqUH98qap9FxwWCD6U0Gktpy5LFn2GN9PZ4KuieJhZK5bywFco8fYANhUav1Rz6EchQcP + Vb0ZagTc47Wxoln8T+qkOOcxmfprabteZgDSHVrrCWI0+2NOYVYjbyKtcZEBRMPYNRV8hgwrcFWX + KEvSqr0dVZfNBrvHpYWom3R/icAmZBJHlJVLGtV9UYH9Fq9o0+snHkmRPzeUzQhybTY5lGrjuWju + UJYBC5v6mJf19X6+a251egW36yvw0MUbOD6XVzvYoLVVraAMOHcpUgq71VlTKU0Zu9BjG10BqdIT + lEReHPt6C9dBDZUwekkcHuTvfRWFkZ9dZpYWtESp0JqWAEXjqsQIwewSRbRgGpsPB8MpZnnLFTur + jAyJrmI4fWyL4rGh9lhqMgGHfWXTQesDEqQZUZ13nJaoD7jOcblQtm+h/d64uBXtLaAPJDFg/Orq + mh2SeMXericKrA+HwGxqcTPb4KZ6SVqUN7K2OEBMqT+z0Yl+BHWXWboKuHOtccOPXpbzubY5mMfD + BtNBrdcuQICjK6LQxclmOCSNB+nCgflFFQPP0w8CaZtP20mmZpzawgAb4+auBIyFqrzChhhU3soa + ye2hiSwPgAVWqxIbwC4vIQ449glUhlfWsDQE3ZY/p42oFtIhyse1VwHpETAs7zrH2uatq/0C5/SD + YN0KGA7VW8LwwF467Vx9apa5y+FSp9pEHV01G1MT9kMuulzr1Vaute0j+qgMO6sytFormu6itfKA + MthpzZuKoI1xW2qu1jYltVq3bKcrts02RguEh5H18tsILfB8/v9Zj8K9BfQHUQgwvw+tXBoU0AIL + G/Ll9MopCwJlAanuwgqKz1YLmtS2/caqwhWO02odLi/8dV2nutiwhL6tKpP+yOHk2RobdAkemmh4 + wbRLjb4yqdQJtVPAqyS4LqiFiVDF93P505mgSx8BV2AZX0TuVsTnwL4nPeV5oEjwnto/BMmhTNJn + TbOy0zeaxDZbveWuX9gb3vGI6fp+zVWAOTapKVCFVXCtMsFotjGFmlVo0Ndn/ipqwdqGB5Jag9Wq + Y7hVW6FE33VhT+huPh0FOiPDfQsWDspTM4cTQWQAi7AfLPgrDVEwvezARITqyLMmvYVAy95x08YK + R7QgzYVWXRXbgnIsl49Wq7Pbmh1bHNCMvxatLexSdQe3D9P5YNbFJtZMrzbmkNItB5stvaG7B8OD + WWR+CBkB2Bvi2CAbRnbgjjplkK9isxbZxMEFovMtE9qis5rkIPvK3p6jw3Zj0LScvTlj1C5nMGN9 + 24bc5YjgjLIBkiLUrna18hSuLJqHydQ9KC3qxTbFc3y+hIsCqmHEBtOxpSBZzJ1zHJnh2mmirgqN + 9ZqkVdrTOiYq1krrD2vGsCds+ZXe7elyY6310c5Yn5jOoTebzA2s1eDXRqtQXvVUT2CMrlYQTd5c + WHqLlhW88+ms6y1Ez+SMAvEdfTpoF2HWOmXsTjsnmUFPqpsa1RXQJgQ0C1IXI7YlZDVbt4fL7n7i + tpkNbM1K4zl6mLKN3mItOEzVWaw6R6rZl0CjtwSGlESQdkVhEW07APoM4rmlKCZ9LzTzU+j4erhl + lpJS2rq+lYUM9bHZ6x2PP6LIVt4smzMFw/fwEC4cesYELLhAZ2+M1yw5Nji2BI3VhudIYA8bNhSp + fhysRhazZXSMrpHbZXMHYvuZRsPeahEuwngGIXcnb3xVXPikpoUs45GVDpGD4+5g0mWiI1bgVvlA + soWpzVSltrNoSOJ4WQVqCi91dtVtn1Pdak3vTYDjGBcEugShTstGvYLkIq0mxDIHSl3YayH+kIgX + ozxhkhL4HYYTWF+d2SmAM/k905+XZRieoMLcm3ZlYylUwR1zbIjaGulU5pOljXXlKjpjJ7uC1mhK + CNUvzQqk2GdGcHuN7/fVGcpjvVZ32RrNYLvzIrUcBrv1vcDxlXBllJIiurouKhmOA2/QQcWxUpm5 + omZCHrHrITt5WNqQitfz9MoKQbb2co2MKtsjUROZaqm27xiUOdqOK5P6ELVt3p1zTRZvL0CZUxct + h9pYi9izclG8FTe+Es5sUlJBz7VbAmP6C93MtKAMGR9ffrhdV03D9QrLJcjx1bnQ2fG7YWPv2k2D + ggZcRfD6Q3FMESIsCpY4drHJutqbwWSnRW27JZUi2gVVnrjdCt311Pha2Lg2eytxfEV8cUpJF1/P + wBynO/4SObsJgqvKh0pDA+fUCjKXs75Qpw/bulvbDHasQyOUNHKX3nZvlymnU210BRmbAwNygPLb + VXvRHfiObFXCAZPegbhB7hQUxUUr/gTx9QxzJ3h8zTwyTElB4+Df2Wllv+FK2+N2vNpxDFYaYmN5 + hW/0Nuxgo9G2Ku/nBAGW5qBFMdMmOFtNdyJRhtaltrrDa81ZtaKNRxhbQ53VfKdLIo9ww7X5os4p + DIg68y1tfFWcuKSF/13josz0UFuKBIfg0FHdrtH1rF02JMSbQvYSLPur4jlSaWwbINE+9prlktHv + z+aIOiO3m+EOwg24V6dYqF87Ss1CHxOXxqZG7hEZI+KPjvvWRYn1cde8KB29UK4c7D1np5GyAegA + B1st3H9zD7EUnYYwgjvIrUoPwxasuplOsEJ9MxpXO/5SorHA5tR4oFbl0qZxAFFghNU6gAYOB8C8 + 1Vwzpr6rU1L8KcS+kze+Li58UtICbXUEXjAzznQUlD3HMrCmOZBX1dg1WGo6XZnB+hLHoEi70TJQ + AHIWpcOgTzdEawUdZLdBHvWFbvPl8hEHq5DXcGmgStqzygHWKbs7PMZ3Uq61fhQ6vj5umSVRim5e + a5wyU4NpHURuV2jN6nOkO16VEd4jJmMSLWzcWoutaluImBjdenlWWklivxMobCCgWnuNiVq7NfPA + rQasbAxc9XuDgiU1h8vjtBpxlf0oZkTgv8hTgbpI6IrMZZiXhrpe0+yMKqWq0Rc3HMsCHjNWXWMz + BxoA39WUuuBy7T03OExUzzV0ZesehBpB4FC/NCfagKXvB7WWfZQO2lQBx1u3tzq4EX3Qt7TGrbSx + gT9ziYv/ZSI+JafyyfVxS1Nh1z0cGgkKoq4WqgYem13bqXfqSt3a1oUdgKKHpYPUIaU20bpOx2yu + 24XZbAgBVo8V6K28AAsw0+9bmwWPtNZiH5lGcD7cjcTJEn2vOMXXRZCeynoMEMpOmapcp2d3O3uc + qtkVbcEhC8XAuXWVUAr9iWbAK92pwJy2kpXerlvCTfJANV3BQ4/zhtDca9UyWug5Wltg1DJZI8Vy + hDFwTsLFtf1b6vg4mxnad40FD+txw+OI5hpV6xDW5dGDYSuH2bQ/YlXfycCAOip0JkOGJlCng1Vs + AepOhRbXb0+Mqi6QJO0M1vPmgdQLjYExA6q+LqLga8ayZTO+3d4eCT7V5mqMkh3AorMEN8PRlpvJ + gGQOe9XSntBms47r8AdqTvYa5abYXhu7wmFanolziGiusNVgjNd2pXJ9giGrZWHbJxYH2Vh0vd5i + YuyAbSQDvhVXvhc3CuLP2KSigr7gIcKp6jrT8AURzcqyAxZm/YYMlbUSLICiqlRpcXbggSXXQ4cw + QunTqTAeV0dKtVBQjw1ss7IPFgvStNCd2l1ia+LiSOohteG4zG46WyquHraCxz/KHFcZd7ziaiQ4 + IBC06z1PENlpYUysEAKGB+DYHbfNY6Ne7jRFfVcqjXpjlVCqgz3IHwv7MjedCA3UsNi2UOYgfIo3 + 9rzScYcVcOLV6kjNHEwUz2IL9sBARxHcTVDWbzzKGQH5e/p00M4pkuE5rAaQQxyfjd2WgKyAyQRd + ghK96B1rZWQLLI/tUguQDsigVW/gSr3Wwrpjqa3gLlQqYwW+v2q7uD3z7IM+HC3tNql2Cx9vY3kN + XbJg5g2zlJRyc8wwu+BSQMqLJdU+jOC2vAUbCxVDcULc7Ib8AII2yNiBGsZmoDanhTlBAQQN064L + yhKldsfrAaFNnLa29qcPbnKYgqDpTjl+2oyvEuFR5PgKuTmEGFcd32dGMyxOKVsV4FhdjRmge9gU + OACcTjeb+lDrmuICFITWjBS0I+DN2CoyWFYb7dbELqjQdEzsC7K6rAt7qUtMiTq2h+2p1ZP6PWA2 + jzAp8D+EjAL5zana5CDn5IXo6hx0ektQxWcrVtU1aNgfz80KZJZGhKiVBK8MDQqt/hpyjgvCYSrU + 0VW2x5pUKVfY0ohjdFcry6jvsggVkoTlptAxS3QUk7+ROKELesEpDV2gp9OmHZNRBVc3t9nu3bsN + 3+p3rQrRoEqkPJo3WgteoVRadwimjO6byGY/5/fdFaWXV9QU9APQ5sp258cSKvZJuw8t/WiKGvVm + LX58oOuFxkKs96tR5uQbwc/HbNdXwePt439gGFdBmM+yIyt+6BuUPWemDptS6F4JaJl1ug7brU3N + WdN9pKyvWlbF7NVKXXxUqREDHFMRYki3MfEgLAqdmj3oiFtSb6sTetyDCa9gS4q9Fo1js7s1oAg+ + SfLFXD+IGQH8O/IkUGcK8nC35MrI7GBKMKGxNbaKdSzjYOk9qiD2lIGlyOQBF/X9utqyWNVgFhOc + L5cMRJ4fBw7KqlsLcCslZbpeNtyyMhk7/cpmEsENSXcCRoQ3ObA5Ofs6xPU5AzBoac/PAWpB7YZi + CfHo+gjikCOFSvagsZ/THVKajApLxd2Dwri0n01MoEWC2LGKrzDUGBQ6Yx2gCkPbUzFkh0RHOaGj + f8YlKf7BYWDBzEkNhT1Sx3rLI7wY7Sp1uzASp1uDBBvcwYG9cctpyAfTGcswqNGWx+pHXZnx8ICW + V7VJx+5Oj8yGHBAdGFha7BgcEdxOn7lchMz9FUDrLHQ62njCLLZSbFXJSRVtsgSMyny5N+Ol5djU + +OZAgcbAgC0U2hOG0vuCCo28TqE5xUV+ANroqjfuYQuuQ5OLGYnshoNmYzE5srY2L/BtCgC4lvmi + 2+Zz9AJREyrgkUV82O0M684NAuHadMP/bk9m++DWNA7m2GA62Lq23syhbQWzFEhcS/X6qNQQp0tl + MKsPxxNkpm0M1OUVTLUPbq8/6Y0Oq918MlZ73eksEtJ2jMLzU4uMBHjmZMbbyQydj2dVRecabYJk + AVrHOhRK7lycaeDbume1W2vKPWIwX1Z1Wt9zzd5koEoIjinLwQZjPeGwW8HKdlfqENPZaqdvBTYi + uInN+IFFIthvNqZOF/lmk8HR12oD0ajCgJY6c0gdzgwBqZCjDQuvZxNB5ggAH7SH4MDBl8yqyRsq + xjm2sB5W+4UuQimEOGGqB6sqctSB2DbcHYaCxwiB+gky7oekUUG/3Yg6cUiO+ak9p65lB/1W2U+O + pVVbWNbYxphfjzGEHU1QWuL6ct9paq0tskG4Fq7VJntGAQTUHRq4uzKPA3Q9Eioq0BXG6/GA6C29 + BcoiiCexmpcA+lPPzS+Bk2jgzCiRIvJIlWkcLM4L3M6iyd1msOjMKG/MdqUqZdZJabm0QIduTEpL + Y+qutLowmNd551BbQd3BsmBa/FHFMVlmwAkwotnBbDCR68xRxqJ6nCQJsgcGibxNR2Ds4BxtdnDP + t8qqLtEiucdaHGK7y+WWH/J4ieGVdV1gD9SqueWPsLQoiDOrtiExtKmuFIpReXHdVGXSOnCVyWbE + HLEFhfT4ObHq96mocK/vxYwK9pU8CdRjP8Y0ZT5LqOs6QfRbk8GYdjle2nCDcQO3HaLeMstLe2Pw + u8KhtoFqC4YS+jLS7BHknOGJBicMdO9o29q6rkpLkHDalkcRrGohR45TIkKtP4gZEeov8iRQW1mX + EowMHoE3+z6AKoJ0FMbjhtYCbWzTIMedA0vuKZKyCAyuSWthWW8ArR25R5VmQa8th3PdwqcoWdZr + m+1OPPYQZcBr4JYCxlFWo4GQcSsJbojjgnxt8pdhzM3N2z3SE2vjbb838ySrs2JAWd87AL+bz1sN + rylqFURA4EKdsSfS1tq0CrOhMayqBXTZZNwFtuq6KqxBTO3gWg2T7qC6G2GWlO8ljADvlTIptvlm + bsv9IWTAHm61WiKh7HgWhKUyXULUTsE52LiIecsqNAU8C6BUx9qLTkOYITjR7o0bRNO1xiUdVA1F + oRWRq61Ntid1tcEsgkV/oZZK2vYdt8R6meEZHvqRnCpzaNGHUbs0HTM6O2khPa3FreYztN6HyS4I + WM31HiOVCTvHGBXfgmPbPoiWWKg0vPG2AoMeTRW6I6pHdjpdrlnajaOshr6Ac+QEqDtyXJCDBl7+ + O7gMDyrMN5SFTSbdGtboblxIl8HNYMZBtMY1u9qmwigT3J1b7Prg6AuytimblHHE+9x05BkGui4L + kzVeW89LOEL0DuJhXh71awsxAsRB/y3jRsQIAH+RxoV3oHPfLQyzOwqyKx2X2ypx2A14abIDoOZU + VKkmZVSrHDpcdtQq05lBLahCDY8zD8M3Mr6k9iPOgfFCzXfuM0iDumv0cBA6lUoPnFWJo2NEQFj5 + KWUEkG+p08C5ONWdbHcgGujeaBfa5h40tiYh61O9UFKPKLIU2pNarawLyyWx2BgyAU3p9qSkyrMJ + A6345X64VLgp4yKdZXentJeCQLZWba2scK4DRfDdd4iZd9LGxf3CJS7+Q5nnFcFlTAHWGMWz5CyL + YVqbGjyDq41GW1kXek0/GiwJWqPTYsvWrmktyTJhi5Jb2KjNxWBmk+2+LYBEv6v2RZA/lq02MDb1 + DlSerMFdlQCnR9KE2Ajoq1+yMveyRsD+J4/YyO+57KCWOmalSpHYEO7S+MqZjGae1x+O9xUewEct + tGvyQ0FmMJxubq2pVhjp7Tk528MO71UAywTBBabut8uD0ukyhZIxFAxgtn9xXfJzmL6Ei4LtnksA + Zk5ZWI9ocyvfb7hHo9Rqkk65OcCMVallCIeW2xvt8DXN2A3L6Frl+RAbNgaj0VadMyRX87qi7nJ9 + CGnvvSlTaZXG5f66VOd0/kUHsJcgJUvCPnJIhHkwCI5ClsXS5N4CJz0FWTt1R+mPPGC67ZmErYpu + 114d2y1s4XS84Wg1KHOCKG5aFHE0mhpsd/foYj4ctTCe6xLI1KvCOC2aZmUqM0qUxh8nuB7EjIr2 + lTwR1IaMHgxFz/QQdwsY1EzOGQrLxhDmLG4x8Fxxvxm2RJupb6ul7ZSpk4eha5arDkf1B4DHeATp + 7KYrvFZVFYqdLPbAorccaKp7GJd8ij34omXga7QMWbgXNCrc3wySAJ7tMpKd6XwXXnUPSBl3semx + d+g2kZZU6gmuBNTL5Kiwq2w3ErHbIoRUodvD/mK0JVFqOIX0ubDfrg0LApndoTAuV1vrBVthGIeM + 6EfiLRmvlAmxzdBllFnPAZVNDZyTC2e2aimtUlMedtS6ixDOwWuvR9UxUUcXR2RPS6v1HlwR/GwF + KSiqEFDdlpaFOe/MOWmuL3qdIb+ayfyMjmjF8c5YXCmTYBvU1MKapttM1sXNam3P+TEDv2iI2vHA + QE1U2NQh8qgORyUNrRCYKMz5bt214IVJ9SvAQpwv3LpeJQtToo43WHdxKHvkEdw6Rr++HPMlkAIj + mnBQAsv8EDYi4g9MkoD/3dH83GI7uzLmBkLN5hwqiCPdoRdrCOrVTK29OHhDdHeEUIYfojhJouCq + te9u5kRtArbG5VldxKfCGtpoMwZEjX17P90QAOLV6B3ZV9oRbfymHfnGirOCfMIkJfCD7s+ZYV9l + qjjHNfrLXXfQBIZL0RA4je/TyyWkA3S7xvSAhcl0FLI+NMuMLPeqjV6/1hbW8HrebXYrzYPEV3pi + A57POI8zxeN6wDSiLGTuYTuoMc4W/eSRBPl80iWLxcqsrRl8YChddsDNJv3hDK7Ptkirb1szbtZr + HtAJSbd6y3WP14fqbuaiNMGJUL+Pl9waDvQW5W0BQ0nIHR3GnTEyKk+iNLwKMEuWMnnkkATzKXPU + MwwF92W41TMK3GQ1Lff2BaeyHszmdd52W6MBvG2Yqiyr29meGTuoXkbndYNaqIttX9416n1aVdje + mKo2GIfAGVU/TriFbthHNCLY5o2IEVE+kSaGN5dtdn4BTbjVYMbikw3QaheUrarAe4wwkaO51dRx + ZUlX4NlIArr9bVNGYUmZm8zhaE30ShnfL/nFWOp1JXnHQOLc2zXXisD3KxHn0TNcSfban3FJjv9c + FtzgRj1Zydi3bAeeBcC9ZaXbrzLjYU/f7geLxqw0r5f6nTorrefu1F1hUtU7LCFOHPeY0YFWenu+ + 06GMdZctS5xOEtX1dLOedZROy2gMCmJEn36Gb++LzP0QOZYmHlglVgfhA5zhQIAOjYZQkRrgrmqx + Lltpqx2ivMdW/TXNtRxKG+FWt4mZPXnTgNRyvdUEQbZflyyvBNYYpInIKFXxH5gNaaxSdZf93UZU + Xlxk8R4440bOOMCf6JOgTTEiJihGpokVi+agLcbU67OSNWs25T5f5cFWwXEV2l+M9pY9ddiFJbXW + qWhzxjy2mBaw1xClVRUXBwcBqpxyVEurrtnvea2xKbktm6OidPAM0LIZUbqTMyLa3/RJ0A6cTPbl + PZNBRUSa2m5n74e82SfgRt1gaK68MrYg0F+4PZEa7bGNLdPqRiLpdaFRr82V/aY6pxo2RbmoUwW3 + 7mBbpTW9WZ/5pn88RmmQF+AVOIT4FT6PHOJiPtJ54XozV3Z4H2eDAcHa+OJ4bPQ7KjI3QQVxNYiW + dnaXAIYtloPKwFzGm5666CjEtDWob8z9eiZCBUJqHRDNwNQxsxr1BrhSaJg9ialCEexb86W07qWM + gPUtdVycx66c5bHyvr4XeaE/4oAFClZACDTbTG08AsudjsJt2tXj2lpM9a2Brfj5bFGBy5yijJSF + NxLF3rrSL9QQwWiZpfUeajnOAjqUVqtlhBlT/5YuAq4BVVw8M464AW/paKi4bNelscdY+6EsYwWm + AdTKSkGpTOvNTQvyPfEKwhtreYGM2mavpKKo1qTI8h6RefgoWGNL6siiYDBQYYfX2mw5gsHGjLYT + RdrnKA8RLFnM0FQrC2zMYoMDBJdLtfpKHXSb4ro/HJdWJXGymS6IDj1Bhgqx6i5dbi066z3JqzhQ + mC730xrS3bIs08RwrA3W2spoAnjzEa5LUZEt8rdSRgb4TJ0M5wGjiY6PY4b1fiyCQYBwLMGrIwl3 + V44H8fiwhQznZUxtKSzd2xFuabUojPVj41DRVztILg1Y30+D1fZEgbemWlc0WKFXuwKH1vnjdt+V + IziFM1bKvZyRsb7SJ0P7ci9ZdmCrBaWzb7S6K3laqqi202q7bdvd6xPlUJ4YmxmLQfJht1Pr+0bB + kRY6NO1359U21kL0o9OTJLy6Y5v8YeR5tDRXQbLMLhuryGZt3okZGevr3WRxoRYsw19pCm2GkzKt + HeFo3badLWNpemFVr1Q0eCjUCaPchColQjrsnIF0pPe1nsLaJRSFppslpYliSwRdAa2Pyjq9IIQG + uRUns+lu1nd2K840o5xeNS+CcneCRoH7nkFKgOe07W5Rvb3EVcsNqdprqAoUnCJzRiUToNemP1WK + 6HQHrAY4cgSXq+WOXKhbw0U27IFUpKODTTr9oeIdKpRYcWi9U4CEqdnfIBGyUY/gJduCf8ctsV78 + 9b7P38o0W4JbhETRi53ueE5h779KrckSsOpppFRaqGNTbSzqdcorwYR29BqqK9IeND8cNvZkQols + 9dhmKNqqMPPeflhYD2y66+hbK8Ja5gvAH8LG0cI3k/jgu6ZsZ+jqG1KHwJZt3at5Aq2PPbrfob3q + AquPD+wcH2+qjeMWqxQMWBo4OCJRfbUOV8UhWdI5Xlc7ba/cqRXg8UzaWgw8cjdteqPxkQC/FTAS + yCfC2MBmXRI4A5tHcFjWKXPnzFu61AeBkQSUCXqyZZtrZ1zh2TlB4VUQMUEN2rUP0B7ujLq00z52 + BHw08Co1YCDv1bky0KrmcHykHd6JAmzcKsCEhX8XYHNy3zDTaLTkcgnDGzwxFdrlxa7lEfK8u0Sm + 6w20kABhbo3asqUpYgfTNYSnm+2JNSKkOdkvOPREAbfIsHPoGEKvsrWPJXeGWVEmz4u0Cd32Ey5x + 8b80IwgO4ZBehsiXajMbH6oQDi5r4lyoaejUYAlURUestRgJ2wl1aEA9x2scyd2msoWm3HErCbiF + l0vCmuo0lK0DwQUeGPI9BFCPVXKnYHCEifPSMuB0lMaLgfk9fUK0cZwMmk+KWXfP3mBN9v9n7sy2 + 3ESadn1BrN+MAnSIxAwCBIjpjBkk5lFw9VtVnqr82VWlcstrn/RSdxNhv08mkQORkcGqDlRre4mO + tGWfXCYSpTeNbyba2SPFCmcwpE7KhPZsBnFMUBflOZv6w7LtTcpnR+sIZObIIvihLI4p02zWOybm + 36DleZ//j9z72b9285dNID3dRBo/8OO82oKTtrdnStszgqDaRJphAHoOOdm9HOMUXYx0KyJ0rWds + T8BmFrmzGSBpHa+d5RaHPMEPakPMFUNWO06urnrZA8D9Hf7ySuf90L/Z/ze0H5zLdnDpZDNze8Xd + KclCIuxhppBDVrKFaUjklYw87cTynMjDqBVQ4d5fAasjijLNN/Y5i45AR8WSyHYZctgrEoEH2Ua6 + p1j8L8g+l9b2Gyf/Efzng5aPo59AV7nbs3u53xbiMrM1zsuCElB0U9CsTUHgImhmuDdK2MZqcbe4 + 4U5YUQzqhR1cTgsUAOCEL0rm+PvbizN0tKZxxP3B5ju47IXaz+N/9vIf8Tc7v7rN9LvhH012doad + XVu6PV/mMzweTphOawfrtCPctq6z4Xz1FUPeOoe23itM0nsKcEw7mPCwHSA5hS0V+QWqctZcBQVm + 9qJ66A4xd8eU8heUww/5fzf7+ZDb/7zJjDq8xMMji3FT63l/CLc5s/WofWAykRjX177rOrhKAMkL + t2cUaLGwblRX8s8j5zW91lxAOMUmi3ENNzdsowJtzp48BCpQ6WpB6n/RWv0r5f9FQ33z+Pk2evCu + QnbENF7gZ1gv27o9e5KemFgs42V/iggJ4OZQPnFDBNueSZTq2pYDUjuXVYaOQDtGqdMrkV3ywNrE + 0Lq20oHkV2xzVyT75E5C/3e7B0aeVn6hP66SCkHUiCJvA1xRJXVHZI7gQu6c17CkBmhUnqnFjugM + 2cJ00m0EZ9g3jl6xXIEtHdUk5nRhmdCPPYAGcgIaxCRm0bq6Z070LLC7v3LKN8Mvn6yU8g3swyvV + UIWRnEc0M/AtJqVL50CBFm8pFNS7LaGqglTCdc+oBL8V91ZfKPrheApEyC067+qRXqCl6XxtAdhV + mtbY3WIIzNrT/Xw/XaDmtf3f077Nvx7G+pogZVBZy16npDWsL2LM7858QtbJ6qvn2cjNnpnqi+ES + zXUb33q5cUkcZaoOvHGVd9xh6aoTb87McTdA8DHrR4Hm77mD+SerHyo/Rfr2L3/J+alwdh3WxbdU + 84cRl9ghuwhURItVOAi2LjHWJrKNTgixKW9PcpyVabEtYN9uQ9ijC10Mrgy9PRgVPS9MdaQbvN+6 + dL8GLXWZIrQiCVr+RO9ufug993/Ty1/7+XQrNP7jc1ga7djhRLEm3iozF+zkzJiLrkev6zI06vpq + hyBouwnzodttF+g4+sWeUNumbFGrxciq981dNbvaYSPUjFrY8iZ1S+2ezt74n09heWH86ZHxJ+R/ + koq7Ft2ZZqCLpCBQ4KFqMA8Ls1HPMAaqZ6MC1kXYI1nm+oOlbUK8sKqGbXXIzCDBMArEhukxzqvC + CEv6GlzIfdgR+f6elewLZH+TjPt7P59uhaeDMSGbF4/s6iYvj7jD+WOyvUSUAKnLuW4nF4RhqgF1 + H/QUPrGP5643sACismk9eekytpur25URhQFoWuvXSxvwyHXqBMHguH683BNlnkUmL0Tew/un8Wch + 23Hw8LXOPDXkRs4FemSpIag2bE5jUUM5p52AQOiyYwYpVhhYgPPG6E5j6iKFaDUepQH7DbuhRFj3 + BnvaFQClwWV2GWnFbvw7wskcB59e1fy0/QvCpyEv8iF/ZD/WOEnwBgzAYMQDHa02zpM7gkchMK8h + dRwZVqkpWJtJf1umpQp5mbIrE19ZstRhE0JvceSiQYMJIrbTXKPwmF3Y0z3Xit44jb+ovI/yD+u7 + OO/r6EcJiRfHwp8cQI/AzBtortueFJ5mkIw9ECI5R3KRXUVclfWorQmZ6hrPGfXsECPhOOM237qM + v4t3inRy7EQg2vNkIqszyKcpUKAs6snpva4c3kT+qPvg/yLyPcq/N35GDH0G8rdFDfKFfAxhCKdW + jqhVWTL3CsxUteXKcHBcAW/2YUg+NKeKkEJAixqF3B8dvXXMJUuuoySs+AC1dlL7w05xIp6GVDlk + 3GbTqNN7Y+ErSOFLhXfh/baQebb8FFsj87vmcWz1fA1ZZ+RTroxHL7teGbg9RhlLbQtO5YsLdBCL + /WnAZbVy+3iqCSRV8osWBpTC8i6EuBIpg8GodHkWZi5kdjU3Ofex7V8ovI/ts+Xn2T44izYLka11 + sgoWGRAzUXU03DhIOVZotpEu/Xy5/d3tXZIwHJbztRHVzBjXJBI1xVw76bbgkWmGSomwXG3x51Ba + cJef0Pfi7ytA9+TR/q/hfVH3az/Fvmwe008v/hm3A6ytDyOP8ovBitl1PiYxqYO92CtiRSndNJF2 + xGqHWgkkd5MNidKHEyDz+3GTNyuAbUskBuyj08hOt3XcuHy3n/YvRL0L8GtvfH74g9DoerhNCb5o + hT88nYD9n48CDyG5lTR6ngIwkxnLcbvR4i2P3F3iYE+eYYIutWCDy1WrswTGt4Ymn/eXrmBPZ3Vg + m6NGIXRM0TvdFMAY3/r7RN8l3a0p3iEZ1cNtYP/SfFP6P/v/7+N9w8NzR/0o839aolEc7agImUuE + W7FmwKOfMwlH70dHueg8Gykjw0R6Vpw2DJhfxszY0QtxhmQsq2VKxcB5M2JuYyybrTMPfQuEAlUD + 6HusP1+O8W9LL/6G7T/60uVR4kjzR3whT4ekZrSVMhRN8jNIG/zquiuXdKhZ1t2lWDnvZp4X4otL + mJLnmWTVSj3WGMoeDogVSHU5MHYbQeaKdy+W+h2uT3zZes/N3zfB42sj0bl0pCCi2HuytVkW8wxJ + fAbM4moXZK8iAdxHNgr7yTW1cMXs2BbZKrujVF2LgrvM3ubakdLcNY3uRnymkB0EsK71Kf53Fkh6 + 08dfk3/0cZLduAkhJg6BwbBhjYKUK51eVxYKD8dzzB33G33YDYcSzeJ6RkTCARA5iy4cq3WYQMl4 + wMq8mFshg4Z9laI5nuxAbXhvivE7ZHedKPmzg78GLlSHuKy7B1Y5vvVd2i8AAD5eDa6/hD6Mmxjk + Cd28D+Nwr0qFbIjLNp/2DOgRoyNFk7PpOi+U1HNcxBOGbu2S6WgyggXSsCy2sa/v3pf2O2J5Vb6U + +hno3138NXY9/nqu+5FXKSstD6ExWGeQxCybMm4WiAk21RXbxp4qVY2PgBGZzwshiKbflG2k2FcI + vYynJfRFIPP5ktlQESkNKy1KoLKiasKynwHf/Sr2M+h/Ovlr+EZbfE1aeGDupghvhCHQRsC1y3bf + EwvdOYrhbpW6tqdNz0qdBfvuRJ/3OeJhok/K6v5oKUslmudbUEroPGsATZNpkK9pKEZyj363zszv + sPVt0b/U+hn0P3z8NXmzrotHntNOVpIa0W1IydQtrE9JveK+dinN0WfLgnbj03kfh75SHDdX5Hzt + 4Y7aD3YUURt3xGjUNXp+5NthSD0KH1ZJUqx6++457d8RG17o/AzxZ/v7aP/8VPBvj/fIgUnoCzz7 + yu7SV1XKKpGvlExaHA8imRIsPgRGvdRtw9joxgb3Z8ydTzptzbVuAOebcNyVejPSeAvH0PPhMIq7 + fPsu859q/+JYzzte/pb/owfWsw5jXMZzpba2xHGfVa6PnvIR6MFj3M3X4KBRBQUxOdRntFh0ek3j + rBFsM43sSsPBaz/fejhm2IFTzLssR2VwOn+G/H2j6p/s/5b2PwjqTBpBAkqwaekAO68Y4HTLd5s6 + 1gn7oBi3hVNJqirXaQsmHDuMn3cnrRdcy2XsAKgV9arjBSQNgCovDFg4E0Rhuxj8BPC7Y/obLj6N + va6SPB0fnY4vny1JxTVk2SDhxstM2QFncg03POaiIiiLfdqauzO2NQe2BTNqsJQxBm0KYnGQ4A7u + FrpmNCFBB9rD2kaNbSeQp/Ue5L+ReQ/ul+b/Cep/FNWtZPRExYfsU595IEDuWI/KZvbp9q4RbNXT + nq2GJJIb/kxMoV71HN9GKIfwfUyQ9AFo0noNV+6AowWn6XK5AGN2Ut+dO/4J3F/G9j/6+m9aZJdX + 0SPDThLKe9OA0Ka2GWzaDoay69DGrqDjzKVUBU9ryzuFk06tF6shIU9HZfXtUNKPnhkxIQq42VGa + D706lKglGRTi20fy3T2xP/ELXqr9dCt89fLf8H/6muZXkZxXD9yY9FhGdcJmm3qRWguKzqV4f3Jb + 5nTCHYzXjew2Vw/c7eCCHaCZ9mLt5jF013GMeZkhLpvlKprKrhL45jqIpHaYrufz7t0J/Z/whV8l + Fz8lf7olXrj6b5qDqaa8q28L5Wqw/C5/wvvQwmOHKyskkgwQInieiwu5WqSAwz2LArTOwdtcOl4r + I3GPJyA/HM5cENrKnmdZED3wCVpjvelpHknjQg1ws8SGqCl4nw5U8U/t0y/aP91Av/P537TUU1rQ + v0jN2tOXzX7mIHct9HQq8I0I5RLuZ50DI8tB7xh/QBfLdM72HuCUrZhuV94bEYHBwqOgUQcKFHJK + 2EjnVIbIJNPQRNtfPh3AnlJ97k7Q+qC3/6ZdhCp/XGMAIJGXE96OsdKhp+5ELJWjbz0P6laQtwE+ + bE4VdZ6vwrUipbDeWROGgaeCd9cBpfLGEt2gn9l8B7Pn/ggJxyxJdvmnX5i8+ugdTG+5+G+wP7bq + s8A2qtJMUWYxDGqgLJaY7qUxQW4R+GEsF6SE+Co/+pVIQtoZbE4s6mHzueOZBuYIstNowDbrTaIX + WSQm4wk2J4T79AByR9HnN338N+SleNHi7ikcPY4/t7LWtN/qEhKj3IGYO8trDQJ3BoeklLWWBrZj + Y7bbHlvERBettIeOYDBZBQZHM/JIOfZMTgFXNLgq/DIuIoVh47tXif+R3SW+qeqSn4o/3Qo/Pf03 + bXG6UTXisHtoNiPIx4cqC7c+ro5bCzgKEefygzuqCTRA+hEE64g9dSKCbVncJshGXCzacwm9ynjs + dGABW1bFpsazDIIhWihspGpb49NBaLz93ftXkj/dGi9c/TfN8dBq6DTdlpDchiSwi5F6h6fgVRpW + tALtLa066n6FaCo9OWY69x7iVMq64FQX183WKDUpguLV8GwP7GuV8oKsGDf1UEv0Z1fXdxRDf8vF + Z7HTcRPf1iRVuAjV+ettz48Dr1tRqtgmSKAHKN43Xcw19rRRyoBnueO62gBHVPtMIuMziZVABFdr + bHdDG+puxTSSckV3pAWe4gs2KBpk7/29cnarOwaD6IfY/Bexd6D/jZP/EP4/2ug4pG5z2oSzV2en + gySlaB9o2cRxQEx54GbLbE+zNhfd6bI4J0Dj1nb20u2yHJVzdh0pu6yVmtXjOi7j/WXcQE3nGty7 + l8S/A/Hvtjve8/j3bXSoo2/lER6Sb1UZiCO1OQBT8FhWriI7CBuUoFOt+2u/yYHVsUTU2uPddkBW + SPG6LStXooJZx0bK0yi0eTBnzeAwOvgBt49iaJ4t4Y6o9BNg+ULop1rg2cF92VYvgOd+WtX9kIdU + 5DfDt02XhyBv5mmiu0IUTYtU8lNq8V23tZOA2h+aZUtfzt7gXq9HJY4sdXMF7OQaJhu6rhBvCbRp + SW/Rn8zJaDyZur6p2uYw7AXpnnj0Q6r/Suo90H918VnsT9NQraunPHpKaPk3UejEHHcb8KiNsuvv + JyP0jtuiyMJLv7kuzEnKMJjG4Q1bx5lOsdtTylmlw4d7Q+XJPOJ5Wa+lElBF8cwscL3M0+jL6Ptp + bz81P00fmx+a/y7+/NnXZyPP6xZ5qpJX9w8t2ZZEo+LounqKLTiY2I64XmL9Yp7A1EracZOVSXvN + xTzM1fPMo0fgpFJ07lB2rSXVMZ8bjyn7/R5fgUwQlp1aqVi+cT/dHOEvgj/dFj8c/TcNwZRBHEVx + 9MCDZe7i7cptd1UGZ6IkEmY2qKVe7YoJqoD2rNU+z8GU1tdNzR9OZonuihJr8MMiIXpxRiJwYA4S + VCccVtcnxpdcg5SbO0aC1/ji13o/3Qzf/fw3raBlS3+LeQ9cJVys/SSXcKyF2SnVu6PXVTVEHCr8 + UtHUqhNTgce6L4BJXEIjrtIpoJuz6so95sjo1hzGEditzNyu/IjSA506Jgm8e5rkj/Sa13o/3Qrf + /fxNKxhLP8QlV9RB8NBKh9iRXpe9QoZiZWYuXkpbo1rradl7pLTntudyv5VaPmG5wV/FqVQ8DU7D + ZXfRyvZw1qB2DkrmdFrahdrKcoWyneuY3J3xqH/Wmr7Weif91z4+S55/GuUfiRuRw71JW0o0iBe5 + kNEZBE2fBtOzb/EFTzQ2aCHIuYGOJAzjixheHQCz99ykQrpw1hXrNvkEcCCdhwOt4Cddpa8Wkt3R + 4bNXAu9g/M3wL8H+oznPxbIivlJZMQida+qtnYlX86WzPZOXAYyQzc3W2IqI2EA7RUWZo60wHn86 + eYcAvEisRciDDQQNwIyUqimnlglbAQDup/yXs53fefk0/2FoHrgBqhYLgm37WEZ5GQGKNJFtPu/6 + NNVnCWNKw8fXUwD0WpA6vAIk2xlcQNyxUFo7u+dhGdAJJdmLZtJ4HWmhKErDVNwxmGY/1d3D92b1 + WZ5C9DW37sE19LBowqO4h3z9oMhpDawBtyC7BqfKBXcDqzf03daaDKqNzCRzqFA+bjfUMerlsKWz + nYDyWA/14nUfzaVMS8dDkEPWu0ezXyDKv8u85+DKH8z/GrUx1A+9iifPzpNyQ+QJ27CH2yC02FzY + U4jezQeyLIxkaWhB0EZi8Omdv51U2Sj3fKumm2NZHAYr35zny4FLFGmtGMHVAp9X3j3W9jta/Uuh + n8H91cFngf+baxvxCccLCtLbcdjRt8gxOPiBukXh0Dd3F+SaZFXCN+Hu9j+KK3FeDD4F90od5pys + 2UTNi0MnAprqkVeaqanl2Gz0wH73oqkXsD5xZeMfrP8Lzv9oYAx6egaCzc7P2fgMKnGOC7nIZr06 + 5E5El+LeDy4nbGPvUfroJ7wqn+yR6hrL70hrQqwr3zncRbV1ikgdFJYpow39wx1bkq+w/d3o+EdX + n2+ONH3o3C/LgPKiUkfabHCHJ6GrOKDAPLvWeglm91hsHU/fr9iphMSzBtaEsp34A9p5+DzPQwfs + djEo4/lORfoVaq64au/W1rsjvhSvBN6F+tnwL8H+oy7u6KtEeCyg4uwaJXZXsGYO6+kZgUjIo/sI + w6dVPfsRf9pB+3VzUSeaIyeBCH1/47Jdzx+bMKkg+jqcDYzBcAVjvf6uLv5V7d/27v/18rf8/1Fe + rYdSK3tA4EQGxyt08ajAZACe1o438mMGRe2aFbsSnwkQQrb61ZMnCw9Op57qCShHOkxMjCzbn3eu + BwTmWceQKGetTzTAX+bX/tbNf9AEff3IVAQ8cuMma0bVD6ncYfBYDO0RKhdmDMg2LTrbSNfePUWr + 7XB+RVGFaa1N2YN2s1liuZmxrNdIiY0XcjHmYSNN1gSOd42qP6i9EPo57E8O/hY4HQfjA0M6gVyI + brcitIzG02abOsA4qyUFNkyccmu+MXQvW3pNyAkAAcR6kQtB32l9KJLqqgoohu1ahAjN3cLxdO3a + atcS6Lv1Zn5DK3oh8xOwn83/FjUz3WafRj124QP7t2aGo1Ci1Qbbrtj5dMAMVJMg+SI4vAmRmXbe + iQjtXilQWFaZDEie7Wr6ZLsZIl2uE81QaLTpVwk5HNfQH/bqFgJC//4x9Ev8JLZ/KfYT2F84+Vv4 + 5m2QiB8N39+ecLvjL+IFBK3jEQ8PCd3xNnc9SpZiO0VVOwO1wYXhcF1sc+M6JwCUmK2fn6awCyrs + Qs9gei7MabvhDWeSuHg4S58ILk8jYvy38F84+Sx8NXj6CK7V9QN3yA2mUxVs02ZYndINXnT4abJK + 1rUhltHzzAaEI4CICzvB2mmxL0MoLgPr2/xm9bsxESdvzsKc0BNYWDin2zYW40fmHczrZ43NT413 + oP5p+2nCzaMPoxCFsz8RZEEFqz8We46V6nO4XzhSN8U8ZIJ8d9HEM9vmrTNXEbPbCXEWOfrBZqwT + ehrWI7zQU5Pl9kneDhkOYqn4bpn8l4iaT04Qvxn+JdjXc8J/kbCtNFyGuqCl7no8m84Sf+ijYOgm + bjqoQLhrPcI1QT3EcnaB9rc+b1QFXOyoFt/KsGzg6VrM9M6jPcIOp9Wg18tmTe5JivnO7dW07m9y + tt9x+NkG0rq8zId8euSG120eAnOeIlwP5blhlAw6eaSzP94WSB0orzG7tSeG2sDCFVGPHNVvbS3V + RpLaWadoaiRNHusOHKBNWuJlXIkSqs2t6twxe2l+1XgH9p+2nyVsxwFTPVXaemQtFkcYRUdTTpQD + ehZYV36XX5W6RS8qcdyCuuOoLpll7hL19MwLW63VYpHHbQaVS00U6XIHEAsKHEzcK22CTD2Ppprd + Hd19joP4tcg7GL8wvgvy9x3b52SuFwWp7Z6Nb86+Lsg2N5cPSTgiljqTUnk11WBeALcFbaXPYsTv + gO3BE/M+zC4VIAOCcMwaby/Z+bWDjqwOWSBsrhNnxc5OBynRBYvR0+UrienFKr4X0r9vvX7NyvpZ + S3ruk18lv9cAH3H15dnVp5rDrC+39v1i+GXxuDaIgu2yXXnzGluzmW/hst2N2Ahnm6Ho4+M1cw4F + t4uIoB57hgbZkBkzPbckuPSdc80vR7NyA5bmtMmVnOta0cLmvHv3RMJrcMNXnf1PnfeBf2H/F7Sd + R1KG7N0WohIdxmUTopT90QwAmEQXuxt7bcCOEsyiyTaWN1svp6XYk68IFTtpd6FPKkBcuM2m2mtt + Gasn+szTloSlvZ6+F1xeU7p+ku71TqpPpfmevmF+4WP/sRG70BShyQoyQG6dUmW20YHHGY8uR6Ix + SBJRAf6Qb3ai0ufplfftYte5V49nvZSByXDxtQY3DC80L9JlXJOzBer6USreg/pUTe/5c2T2St57 + TH81uytKK4z5tSJZ0zwu+1NU+IwDzptYyDgEB3gCgQW6nPuZO62VOc/GKB7YGLwt3SEHcf2Onyh4 + 01vUdLpQIGI0qA0xilJi5ACIhGRqess0yQdofq0d9kPZB0B+t7grt/M7w6/FI28kn/IcHkdzOlSk + hXJqAxqayiE1Q9rXfl4p2wM5rwxJRst36BQijIePPYzFmZP104l1qsitG04xznt/q0btHpfxqzGw + sLScvOq9oe07m69FH2+Esp8aP8r1le1fEH7Cq9VFHi4PhLw7zUqeDfLJMhA+U3G7Dt2Eugx6mbB5 + VuLijgR7cYOGvmUDVFxMQeU2Sc6tvkc3F/us4BOFXldV0satNZLeijbv1ld6DeqJUvNS5n2cf5r/ + JWo97utiemR2eA3dXuli06o8y7hoBNvTygAmER5YaVB7Wz6kpAzXZswplYCNG2pVz2SNU5FnogvC + XVkKpqkrQR23rXdu9ioCBqn37tG5/6XVvRZ6P+7vDj4F/HvN2QcWmq0vgK5RA2Os4PZwcmKBWXF5 + 2jgUd+yfaiq5zqFPLUo+YzRxafdkOsWS7dhOMCbyYuhIYnezl5B9uSgbveRHKMZ2/EfjcPOLvo/i + /WH3Kaqm36Xfj909hOkVJslU8Bx1Zp2L5iycPzGhxoU6rnPTmVUZAzmu/UXBUkb3zramoFib6b1n + HfbQXhaTo8wZu3HwuzC1r5p2wKYyhT7ad4dX6j5K9JvVXTztvEKRL3qc5rduvjyuqjTA2sUcgSBg + DhschfEGgjIr1nb7enQWZjVJXAxQgBr1ejAVGhLcClJVtA56OK2OTA8OV6YagI5FxB0nC4PJAbsY + f6+Lzs/iutfi3qP52ugDVaZvXdIY/Cryu+iLnAed/1zTCvqCPmRXZ8AIre49g+/OzD46x8LqHYM1 + n9ydyE64hlQTFp6RpYkEBMJoFZg8oth0PnfIHSx2DreRTU9UIQXAHqN5y9tgyoj8nuOtW/XfdRWv + dP0e4W+ef14DoG/Ti+fh6WvgjfzXK62e+i7yCHTCJMZwcyZEnuk1ckeKJD0XB+ZKnoTqNim/Atva + coF6T8PouZFHTAzEE2Lvhf6gV5s9tthbgE4vvkqOucVsLF46N2X0+6G/+inq/ELUn7i9evjL14fv + gfZl99DLwDaaa4JCewROEgpTpZcbBgwhOs70Zg3InGkIZNAQNnVqaclnsZl3aPK0HTH7agrwFOLY + 4OYAQDZodEFtW2k1Ni2i34fCX1kE79369TuDL+9f76XHZf281SLnVXvr1Q9awycSSOCnstlDrLMr + OJq1NFnkjwUtuxW3BxwXjWs63afB0GU5NK2BQx/RChRcPmsNqXWOCTeDI4RRcNTZPdGx1kU//55c + 911R8VPR75G9evIL8u46vRtvS/sy/lL5TzuyX76eXbgFU/QxzEKwtQdEzmPFE87wmasspWcQqUBQ + 10d8w9yNzoHGLeKylewOL2DcbKO5BTLRCJnGZvQtsUEVe09mW1zzLcXdyBHxhx2+X5T1L5X9gd3v + LL48W9zP8AvtD/5T/cF9kcfV8KWv8tsfjj0GK0XeRgeuvAAnLkjseiNcxwYqbvOSfh6NWc39RWSu + 3iwJ6tksWPYo9CN6rGiH2df9jlk629C65bqzuqgdxCWT0J0/Nr+Pfr+HFD2J7dsi/FXsPaT/18mX + ZyefgC+ozycCu28XwD6sPweAtRX3oJCjvY5vtkmxi/2dOM8wDGPIZkjPIW3AFyBrLaznsi1LyTq9 + m8SKHo7kdpNSa6OZJ5Wl+aj1PYQZiF3jHX7/Heb3zPL6+QDfa6H3QH/t4NO9/fsu3+NQe9boiW1V + xamYRcjlqcJ6EAihh/peLJgt2p8hvJaSw85ImsxGebq8gAOmBlOgXkCRAvuZ0yFZaQ+XnsrAhEgb + U//Dvc6/J/V9y+4TkH/s9n0WrxGHY/d8aKFbmqFOO7/Jlqf9vyJ+HHG6qA8XkjyPNaSOqt1t8CNH + HJQwK/3ElF17onYLiufrpZOFjVXEkQB1LUJKXA/n2zloYnOraMfuCs5mQp6QyV/bI3pPVOm/qw5f + qvZfqL6nEd7wdke71P31C3ybgUD/d8WxL/8ftZaUbW3MTxmoAzOJpBxYnpajgCidxO9kslGhVK9p + M6IDSJZx04c9RB3YK1qoPsVAXrM/hWA0bO21RzuK8FGhlyL1D8mbH2LxH7XhX/4Zd7TsbW34f35X + /rFV/+WALgfdUjGG2aBBuVFB4MzJ5AQd040hFqYFkUUjNGzcO2cWHznlYLdsdToGt2Xi7Jnx6OMM + 6BKscID3G4xZ4GCQ7bGJ3g52f5T/d0P8/W7vGPSfnP/5NfyXDYaSY6omF1dsxdrZpjjj6oW325wQ + T+Q38Ekjm+HqpVFjQASbqoxZW0BhwHA9KhKiHWBE63AH1Bpzc5ZIhEPpmQeN69ux8g/i/7657nF6 + b2OR+P8HjeVmTGQcT715BfZkSe5mwu82oHV7n6Y9exCGxWMJDqZOLqAeIEvzTmpMWY2I2QWeLNGO + O7netT6btI4K+O4MAjvtIipvh8o/iP8PGusOpx9orG+tcRur9nU1xNfhcQNWIu2BrvTlJBbWU+an + Vxcmjts+n8Be685nKUyUFBZCUiiOF0/Om5oszqHvHUfMGgRMbIP1HCKWeV45mcXtstcdivnDN/Bv + RG4jQvhK1e/x/s/THxhEvnHbjUny9BH4YVutjYzss8bXdVsAG0x2lgXT09guXBbp0+QMNpV1mHbt + rLDdJnRSYu8ole3Z105VFTklLS5id2S9AxgOOc7YQU5NNQbehBa8kvQmsW+PfmBb9RuufV0U8beD + Ng/rZygdnskNaO4iq5E3XgekDLM7jWyM5KFayX5RMtk2S8ILrJluECz26KUZlpQlsvR72exa+Tjj + A2qm5iICltwAxwCQf7/n8I1D+D+y3sT24vGP97QX6J5SQW8ToO72lj+O4joU+NZpIBc8OXsZQCd0 + YE5AISxAMJ0l5VTWTQXPcQP6yBZuLE0iousuwk3Cropjq9cpEME+mBl9qvclWwk7ydTk3w9wv8ES + /qrww0B/Wn6OrVCW4/CECIQf9U4zjpTTbL/PPBvSz52HsS4/bn0bBzTssE8Zen8pequP9SSrVYgF + Iic+GP1BpwrLEWoIv3AiuE4AMsM+MoYIcLlejT+cjPgNoPwXgR8m+8PwC/zx971s6urWFl9TrKiq + qgf/+3vyILqnq3tEWe6kDqtIyIkRVa7BRgRQMxN+IJX0dBsmB0FB+Ksy0FERTiyVAJbQYmqyDemD + yIh7yDf0CbySW1J3sx3mNn8oF/QD0jeVXxOm/P9R+Q7iP1nfE1e/nuF63NYAT3fCNW8vcAahJX7J + JNtCHLIBx0khtl1qtE1eyPi4NqWRXJPTprqNPaE22Fjb0/2R5nNzwgXN2polvTmAE1Not+Hpbagv + Jb1D8OsBtA+/76/nns+N9JBvLbxFNm3oFjwRKJUDV1iOsxudIzocsC2mY5Dz6aCcHb3rLjJrCbZc + x50zOLfYQEINP9G787XmsI6DGmR34tHc0XviDyVkfjsH/KbsTXi/zBqfLT7E8Eelvf7b0b3H7QSe + spMataXPbcQL6kQBec03F2E5uhSFaZWpFPwVLset56LthDGyEElBJYP+JeB8KUf0SjnZvtdTPQp3 + 08pG8WyekTc7X/RCXPRC3NskfzW6o0O+hPnj97dDYg+LlLHA64ycu/Rx6g9mfZBJ+MheHIZxnZNx + MhEWIQfY4Lp4slsNiBs2mknIWChHkExH5TuBcfSYVZmK6Qin4PI9wqV/2GH9HaKfv1/q/DjiX+w/ + Hi1f0n4q4GXd5rC3eCtUSf24TlyXexbH5vWIHpF9LLQXGi/K8hofvIHjT+WasgftnFi+2i9to+N4 + A4q+tx786jDDPYrWfU0Fm7RtqrA/5zFOAMtJ49+OBS9kPtXdmr7KzH/K/DDrX8w/17GN4Ubw+fTj + 4yjvcj6FpnSI0A1IH7bnafD3cCzpje1dOygNjxGOodSOI7hqMopk06gXFxmXCEPKgyrWailNVaOc + IRYbxtqAb38bc/5DzcbfYOqfFA4vFH4Y8E/Lz7H9eqXiw7CeTtNFTAxXPBzw6wYhIjFFrMXWDL0V + rB3kEVFw5vsBXsvZdNbNPnRuz7K23ox5mgQqLCfEkni54DOnuE+qAkw3zPLmKvQlnOGFuA8T/Xp5 + 4udg3trhqfrGw3B2/ZxMUALu20tGkB21MchYIZW4DlcExYC45PaDyaLFVXO3OAuUZXmKK3wIKigt + FFw7TIV0DLaBRrmbeDsSSaqZlz+czv0dmVfyPg70q9kdSJfKL/Pwi/51t+pxOA3FymEGnBL7RPWg + 7UoZswXawsClVoJcK6sKE+KPQ0c2B4EiXQct5gUdtUM9V/QcuYKxi0qKBZGsLhihiKyG3Nh/KL31 + ncs3ad0raW+jfG3ycYxPhSV/lj96GMSLG1kRkiAaFbFcUKxsPzNYdlEoRdxJetknPuJsZA6hQpuB + QwLEBqhx/RiWySnxNteJQSoJ1Ldi0w1mTeGwavD2H+ptfyOS/kbYmwhfGXwS4Je9X8RPaW0PjJbc + qdgNkWqbmGxaqABsQU20gQ1+W/7uM9NX29aU2SEqb38aKG8g6IDIwuKk5RBtHURDLPVSitEmxAl+ + Y/h75BjKcPCHK5d/Syb8ReIdUH+YfhyvUA3xc92bKf5C9UsVgujDyjJ5YejmArPRDRgUt2YA7pSh + 7inOStOo6MUSU8/RCKS0BTUYJeSAfEpOdXqQLrofFucjI0YIxeGTu07hObvNddvaK9+Mm/kLcf4L + cW8i/R+jL+i7h31+5LE8cF+0Pfv8dD1qdGOorrA/n2qzL+t2M+JHkWL1k2CmsQliaXth4cA/B0YZ + wJfZuDIUSfFFnbRpKInhgRyjNI91JfPFzf7NNzz/0EQzv2M++a/yfFy+ipY6t7ZQPmK5xMHwJg8u + WccBBnrelSTVbNW5PlGruqk1mrLDDjLY+ciWEH8+kPaF8ewaWifZXOQymMyLDQdO+g6rDyf2fDaT + 5yfDn2WLH9jdZuZA6WY15jUwFtWUA9lFV3TVnX34shST62dZKF8w3qitqACuV5O1Yqtw1USeO1oT + Sq7ooZJug0PWrT7ZVrZmRm9GwRuQn/WFP0jwp8EnAb48/v8wlvhRDRCHlcOMCJgQK4RQ5LFtJSoI + bwHqHk14Ou1lq99ZuwvqYhlLVeqOW0WkOI3EfqFptt4KO/ti9FVwMXFhN8/54e3A9wpN86vGO7C+ + OP5/D2Etb+Kn6ygfuFMMcztk4MsAbPX1tjhXHAKA5RMOCpI2kEepxDN+IKxyGcC6SFFHFOZZX5U5 + SjgolVJtVUzhDMUqe8FPjcV31oHu3D+cCvlJpvlF13skfzz/8f2N5zToh/XFDR20wqnp6QaK2GRY + hnU8lCFUx4foOJ9DDWTsa3/phRWcYTNk9YuHLpK0Qlqbu+yhZGbNsGegVayWJjSRJLfiygdvUit+ + 6nmT1nMK9If72BOlL8z1e/x84NurcdKli5BLxmH7qljE+TrPvm3nRm6zyo4rUmcSm1iFrnun88it + SndHfDgztgFe1NYjuZlRT5Q5SMPawLGelq6ShH+oufySRPw/2t6n98LmTpLHMe6W589K2KOOLrgV + aCduvNVrPSkNeToNiBh3GrQzOW657L3LUUvrs39NVxZRoFqrAZDKdqTpqE20D5Wi41BLH3q/HCRk + XPsGDVvderfnfWl/UfY+xR8Wz+kXH5r4HeKy/naq6TEFZGjRFRtuMNMrgKDUMm7i8cptSsqxowsd + YEAAdTS09wPoANdHY8tDvMPdhjYpbBtnzEXatIjEbMAISA60WFYd3ivTm6Nx+VLRm8y+PvnxTw9P + ucd2HBh1eHk6Iffj5/fyJY+jyLajfI4CENrHhzaAN+NWu+LmXC1sgUK4vQ6SPeK9JIWbi625h6jJ + NzuWuUTXlavz2GWb7enSL9wsVvsZkyTqlIjn7s0e+JRJPMdB/03rj5/Na61v8n3Pxx3kxzLunjaD + rDgc6kfmvRyPZqGZBYSLYJ7TgbjP48bDeBDcWZ2vxydMxZhan+EThPAbU76tXYhrhXIV3WwpRzMK + 8UQvbI+N9tn2E8XB7Y6qz29ul1fftU2vtL1N9hebj4/RXwvSfb1D7XGnFSIHIKFYmraBgkuYAkQE + ofrVReK5Ct/zBAz7eBKqzeE4Imx4aUB2wGTwYm/tteKbRYcUnZrEcVjVA68oxY67rR7XNyF+rSNX + vpD1Jr8Xj398uNHj5FtOwgOTqw85xdY2cUhEzt9WNKuEyQiwDRPlfGOnZmggfHRo6GnY9r6ELiCH + cXPTacvanll+q5g+px1jW+FPQE4XtCCft/jbKRrdr6reBPfz6c9w+8LcZuSPg4cgJMtBZzkUZtMS + l5Xcy6w0xlZ7lFCcUvz1dPArzhf5iwrl4TkXlkayCVe2ZcH2s0W4RNnmQJQWEolxUxTyQsGG9OZ8 + 5wWO+Ke0jxJ8Mvk0xi+CzMXV97pRj5t1b4ddX1CXLYGiiiN3J7GbFY9ZgwMVjuQFxTDVrYE5Mawl + DVNvW6S7iBNWHqy6FJXdzAnjpVomMySHDcjRmJ5DYHUP0y95kf6q8y7AL+0/T1vO02yY46d/PvBb + rR9ZPGccerP0eoolcezoKvAAH1fvLISjdEILxNiGnjrTET3Gitm1LbzoZ+JSs4nAMZXUDLhybmS0 + U1c967FuUd/OVP0VVvE/Mu9i/cL8c6h/Vll83Ecw8dKJNHrZCZsdASO+PmJ0Ywg5rw8dfiwSzzj2 + AZS5fEfvPVV39uz5mNR5UyOyfzjxtbnN4R1xJg5V4jOSTbMle1Q+GGJflM67F+/PmnufAXuIB/8p + 4waEv+CPwbpX97CfU+J5X1MbbscCR0lGRrlldvGMif3+cixrXgoU1CxUT/KRRJLXzb7J9aNEr5De + UyrD9ZbUqvQmqMveua28DfOjWMvX8j4K9bvZl2ezO5H+i/23je4Iw3HdUD12VRDQPdHXqOmZyyGb + ZjTGfWWKWedUYXwBjpFi7pXsFgLIwtwmVYjeHuKkDA58/7LZ11MzHk8OTxXCRwPCfZtvvzX8VF81 + b+z+RSAgRnws5NALlutuw7VQdbgchyGMduZ1Q+TBOgOYoDpMogO94x5rfjrbG9mUF6UjVQQ5CYeu + dYMwE49iVfdYXNfu6oofhfuk4dPB4LXxPZC/piz1P37dJkQ3gt3jIINrF2qXix15pYCxWySVQVMb + S21LUhY9gva1Q/eGyB2PgKPgc6B74ZIYklVrNUzkRYDmageFe70VhYqblUNdtJlBvgP5u8jvv8pX + It+B/AfjOyA/Ou1AHJNjDk3aEbpyFRWuOoxSJzYt6MVyB0xqqxWmPD+XvA3ACfsWAuEDD5YqGFMi + P4Alb8PrWdqJEXGxENzorlFEZfmbmwF3pBvcnWbwDdfz57W8iDvjK4r+y6nq/SR+3J6Kl5EDWbd1 + ofusv51K1UuiYwm2UnyO2hUSt5eOqBF2vJGOax7dyTCjOvltxTBf7EE2YVFbz7ulY+Ftwo1soQSl + 1nwI4/PXsyep/Xep40upH8L7Bxcf31H5jv1fBNp0tKFRgpJqk4SiCA+i5bgRAcLZhgWa2Ic7gpUN + dQUTctKYNtARj7pUo05P5pHUViov6ClWr8rZSDpozyfCMWEv5NtriG/q7oyw/2N1fzfm/SoqHjkl + UKXcOCkEXZp27AZosYEpgnH9WDlU03VmEGzrDt5KLHVtYqnqZaV5FiqMlFKjn5ELUriRnJqSIs6g + JyQGU8y0br39hfg7luyVtA+R/GZyP8bn5I66+R4MHodznOClctr8IJFlA3MH9Ey32p5VcDwWN/PG + UerSlxCHBsxx39WKKbNc7AH2vtwdwh29mKxUj6iGhzougsfeb+mGSP5QhvgXNvlXif1riR/C+ovp + /Xi/76c+juty4IFDEq38eYGJApEYo9JyFonmljCBq1wZot8RfbHkJXU5ZWBqdsYWPB3VYSKuftdf + RAR0aEOZEplTd0ftLBOa/3ba8Y/Dqa+1fQjoj/3UD5P8UXqBCm8t0D8dYu2+7Yo/puSoTTJ1C5mH + Zd1MFAfiYYyR6BXcaySapCVmiPFGI80AHjy/DsJJ64IDIxNdxsO0HnVuEAQ4C00tqhZrKUHaZb70 + mzfnUT+KHfjPCsNXCt+k+nvLj+9R/6GsRZHWt/+alQ/stTZ8iRCXLF1jn4boSTYpD8pUDYmMiNu4 + /njjC5FbEwIveqggh8agbDhfVVZXOzG9GsWhQqmuT3nHT/N0yYE8yOI/XNb0K6vXJSV+1fox3n/w + 8Yle/Yr8/jlp90Ed2+bQjmCW8yne7g8aa/R4MCybqD61JtBum0AgoaxQ1hoxLtrFwyxz9C6cfW4a + ghB3JDD6Mkazmh7tesoFaAeNdtL2D7UI38QV/hD5Cdbhc37yX3Xvff/AmkaLilw2NeABdM7qu2na + badI1ymOz/GghJDDVrWdZN8eSQk6XWnUrkO0n45Z7CUBodUmw/bQhfNDFRLW9WD3AX64xPWbc90/ + cOrfrmr0nvHf9uTn2zwemmIP04x99rxi2fq3Dk1sJ3ZufXVz8dVC2LQACm42dVa2IBE19EInIVm4 + MeFaV/HkbQ4sqAzBU3E+Vq9hbDlgKlNvmZL+BOn4tdJP4P7u4W+Zq01cGf0DvzZOqrsQ4rSVeg4t + IiSTB4irGT0iEcPLsV1cdIEjz8J2YXeuQ1yaYDrtbbfG4iWeLhgRjqLjbT3ZorqFUsKQyF0C9j8R + Qeqb0L7/0PfHNx38LXDtEj7wA7nJHZ0NnF4bF5VQAZfFgkFkKhmsQji0YgKFOy5bcdIlt+fzBZXF + /Q43ujmnAVeBk0sbl7vJ5nqAOy8HcbwUeISn9fLmxO73sJqfKj+B+sn6byP2v9gAJgJaWCxWkcGr + FLP8OauDE3VsjUZst66pNgHT46WOoCgzQLBh7g6OQoWgBewOeDS7XLjdpFYGegmQW469ntGSIWn7 + ExOS+/aC3/Pxtz3c2UDbfdwNeZKH/vBI/gNiliPuIsogImMJ6UM4ZhrhRYpydZj0VCJiXFMgpEzF + 4Uxl0r46wIoDESZdoAiGlVaDHk+4rDGZifLmwMMjSwhvn+v7PbvrTXH4v4o/0Qq/evrrtigfuOrJ + EbHCO87RcVSEVuFSCCWnX2hBlLEAVhLNYALB4ndFWwsBjBSJI+TpPqD1hi4FZp2NGpzg02YBO1eM + Vs81lr19/cx8/Fret/D51fgToUaLuzL/kUX5IL7bNFpGSs9OOsEDzWZ/Xk47cNUuBOiMAzqfDI1U + xOMOz72OlFHn5JiHqJZji0q3Cta1LFkLDUMcmqjlI5o/Ek4qxtDH+Db/o+9jaF/YfYZql1dh3vjF + U836qJ4fWQ+EIPhEdwqvUGPBiUDQrc+4WF1IyimCOO8TuG7hugeyq8pZ1cgBBWckXGvOprerVZ1l + 8TMItQTvCAUZtvNx65+49mMDZfND5fxK5QcJ/2r9cc7mUxGrx0+yd7mQApLtG7QqmGuMn7njUl1T + HKt8Shtajt/NdCf7+yG/9v4mkHKdjBpN5SkijdE9JIrHfBUZoE8uKzzfBktKolzvzaj8XJ3rnjn1 + K4OPx9hXAL/s6yjWbpwe2EsNaGZOuRTKk15c2JMT+uSY1/DpuAnc4+qmaqlKw771d8c9yulbSjxn + GFoP4QFFBK6nlsmPWNOnDvNW6Eo8MjBmSt7O73lN5unuwOaFxDug/jD9ZP/8J98+XOsgQbsBpDBU + L+dbt6s9BIlzpCq721wujXN3Ztc95lIKUI0xqbN4dHboQ51Cp30FBF3cHWvXWnwDSLNlq4GHkxW+ + fXTwNaT7voD8yfaTHfg5R/pxfddJMQ4TqijHolaD85HKD8bc5Laxwbw0W3Ucw9Sh1/clWILF7sCR + 0WmXyZZCZHJJKkqnmDqQc0Gf7TVz7qarpxUl9vG++5zRfHe3fba6s8fqcToWfvdPDo3ojYnQFCDj + +G0pN8Bs3wvMdk9xjcxGrDZm8Y5o5EZqKtxzlGAhzjSjx+TJB5UYuXL5LFscIqrtmue+tefoutr0 + 0tuHiJ/xdF8l3nl25A+md3TXrIv9xw5W1uVkQBd1F54S1J5LyDRub/VE0x6+Kw5AAPJ67jc6a58P + GxVSDEiecg5KC6lkJSDLNDqCHTY2ohPMlYWcBci+thrh7Qjwi6i3EX5/+BPQvuwzv6ri4oHj04Hh + IVyBOoErdROTVemI7MqTCgnXZCoFF9T8ejRagGaPl5FAVJkMr8lM2tvtyDXmnk2Q6YoceVk3MpTA + cuOA+n1kvt0df6gLX6v7IMbvVne84z9sTb+/PPDdlgPjKjGResqsmNzF6w7cjirHNc0AVF6Cx7DF + LjM+obSCF20+lJBqVMjoHNRo0KADamP5IWzDfLote/FT2ubzXDn5B2EOL6R9kOSzyWe65TPG18P7 + g5JIbEM6mYOcaTqZFsUq2CpyxQusKCkhCZYDlZvF4lB5jx13t1DoSFiAGThLrhylOxiokTOP0jzQ + y1Hml/ucr4DEPMH3EH09wL+bP/Jn64+njvzKWfM7vygeeZ4kDM47xeMTcDrukzDK1itxuf2tl7Te + S+lVJktPjevQ8apNamf7aOWFFg9cRbIdSKbEve1qRBD12LKTyAbC3YsG1f7by9RfOTWvNd7F+Lvt + p3ry868HZpPwZWAC3grhG0USBNDjQ37rqHDEjDInwDJyIUa374HtHj7LV3O/vZieN64ndXF4f9Ev + QJQM231OJ6gAHj1oIEVp2b25SH1B56W2jxJ9/vVxkpZfjLE5PvRChFCRmWnnoBF+OBx1L0aNA6uM + FyvIB5piGstTYaL1IRBh+atHuITWsHrT4SWCwxvHPYCD67oJtAPshVfGcyvMpDzOb/bO6UnVML53 + tcH/PP1xbk5Z3GadTzcG210+PDJBlOuajgI8SD85vo4pBBjbBHyGu/RQMRVjFWmeY1vOW6izyRNj + kR+qTj2hvMLuOjxh6N1e3AtRYSntNuMDn9ZxBHZ2b0bQp/247lnb/FLbmwx/tbmPpEPX4Vg+tGzy + ZhUhh75SQkrmCzBg/qE6UiN0aK2gXaakPlkFvNAWDl+jGrWGDNvUFMLWLtZol6tL8ZuEzK9NabZO + zAiLv91cIX//5ov8hOTm7JWwdxn+MLgTYFk8HmEhktR1ujgEd7w2e5xj9/HuTJrZbfl9DNcrAiRg + aPPiiRzOBuEmAr6f8KCuCOhsMWmP7HM2KMsDGWzPcO1ZVygyBMR+c6L+TKQs7ob40+ROjE/OHvgh + FhaPG4Mxq+PYt6WB6rMxsMQ0H1EZQvJSWAsA6OO5HBDU4pY0v0JYw/AAuz/Dix0AK8bRq5QX5w62 + CTuZuivkzm8fX3qm0fwU9T66p4c/Ae1fvMLneVvzPCNY9gYteXerpd3R35JOjQge5J27JlLNcpgu + gD6l2NAS0RKV10hpT5O4cecz3WYVsSl3jj0M9jmXMvv/LcDUGP/J54gQIT0jo2rDE6QgCkjUAgBQ + SwMEFAAAAAgANLMmUJtH0O+VAAAA4AAAABoAAABFY2hvQm90LnJ1bnRpbWVjb25maWcuanNvblWN + zQrCQAyE74LvUPYsC3r0Vnrw5A/0CcqSlUV2E5JUkdJ3N4st4iUhM5lvpu2maRyPRVOGK2nCIu7Y + TFU2Q2O2yxXQgAwD0cHv3W4xIw8ZXsiPX8DUYmLNnFNgFIzqW6ELaGcA3xKtcXt9AosV1m/jGvnr + zGtBwBLT/cZIwJpA/nr6tyhkf+p8D2wkM5VHWBB12Zg/UEsDBBQAAAAIADSzJlDpEyezpgEAAFQE + AAALAAAARWNob0JvdC5zbG6lUsFum0AQPQeJf0D0kkrZ1a6BBQ49LLCbHNrKqpXesVk7G2HWgqVK + 5PrfO8jBjR2nitzbzJu3bx5vcJ1vetGaziyt91N3fVl7M9tX2ngzU/dWm8aTulY3njTtugSOarsB + pBNMiOt8OnlEI9fZI3tgpH+BCSZ4kgQkxpQlLqxt9Lpfv0MmQA7JhKaYus60NY9qYa/9bcppSkkg + EWUyRiFjCcpEFCLARcxDGUcR2/mfQcEXiweTGevfHEq86DagNCBbzqIsAi1EEslQGPMCcSJSFKX5 + hBdRFhZBsvNdRzTVy3bXua3NvKxd52pfzAAEt9djTrlplnrVt+XQTOvSLiGxbvCyadVIgtdXhZr3 + q9+8efby6T2Mj/qB8EPVquzUK8oJAiQwdmTjja0X2/9wZTr72tbHMsFHbjGHZb9Uvlyd+46LFLNe + 1xUm/6F3EtaRx7dBXqr61+cFxxlzhyNtVGu1Ovef3Onq0H83lQKG5F9n4iMLxJNVTafnutb2eT86 + e/Sxvu11BeOtoIHkLM0QT4IChVTmKGMcWhoFmQh5IuNkd9bAAXGdP1BLAwQUAAAACAA0syZQv3BP + lA4BAAAjAgAACgAAAFByb2dyYW0uY3N9j8FqwzAMhu+BvIOOycV5gG6FtjussIyxbuwwdnAdNTW4 + tpHswhh79zlptiRQJgzG0vf/+l1VsHH+k3R7DFCoEmqtyLE7hNQn70gG7ayAlTHQQwyEjHTGRuRZ + VcGDVmgZG4i2QYJwRKi3L7/txORZZG3b0Vis2D9iSPa4+G8o7h2HNFx0HlaekL1UOEHXLqyjNmnt + Tp68Qc6zrzyDVD7ujVagjGSGJ3ItydNlMgATiEP6ooKz0w3UUtuCA6Wt7x8gqeVy5CfSrjaEMuAb + 7ruYQ46il4j+VZTiOdqiXIyy7+4n19dv50bX3efJ4HY5TzTQ4qK9w4OMZp5sznclXhl3QVKI/ma4 + l3+ZU950fgBQSwMEFAAAAAgANLMmUN0H7iGgAAAAtgAAAAsAAABwdWJsaXNoLmNtZCXLSw6CMBRA + 0TmrYAMQBQxqwgRFExMQYeDYQrXVR1/pB8TVG3R6b46wD2pcRbVBRZ1OE8uhdbOGYYrG1yBcT273 + VAJOZ5HOMzHK0rmWlgDXrFR450CTBngY96IfxlUoTeBdKfH+0JeWvDv4mZvWI6o2oVMTsk1bM1iz + Bj78GO+KQ1ThENRRfatk3rUsO2VVugS14LyP0gvHIH8VNT4d5wtQSwMEFAAAAAgANLMmUG4/rhdU + BAAA+woAAAkAAABSRUFETUUubWS1VttuG0cMfTfgfyDsFwvw7rapg7YBUiO+AULcNIjtAoVgQKNZ + SjvR7Mx2LlKVry85u6tLasiGgb7IModzeEgecnQM17KyFzYcHtAH3DhR49K6OSzOAOkEJmT1om40 + 5ocHhwf3lfLJVgn6i2hAOhQBS4hemRmMdlAeT6oQGv+uKEpc5HRt2p/k0taDU1AEXtmlB/qAYDsw + EOAVh0yRQiUCCCmxCR6UaWKAqbM12ZGCogNhysQVPeNNhJwnqsfH8Nmhw7+j8iqgZ1sGo/zT9T1c + Wodwd/Vxi6ANBkNeK+mst9PABMm4NNqKcgALdF5ZA2/yHxkHYDweT4Sv+OsxlBjQ1cogtDC9O592 + lizbstHlxBDuLbhoKJWuqtpKofWKiV51sVOefCZtiZvML6LSJUy0IKMyyfThW6SsPlsXhIaTWswR + PFtWNoLUSs7h6C/0R7CsqG3Cz6lpR0MjdSQI0TTgMQTqoe/x+uzJ75tqYKo0nh8Nck4AIIPhdIPM + UJ/sUTIsldZgkEzcUNusgFJqCTYNOYvAhbzrgzXONuiCou6l5AjCsSd5uIWSyCjJlmrDRHue+VdP + QEyr7/efykfyuQuxVJaL+EeDbS65160r0QvVrmPOnl9i60h0vqIMcNI49B7GN2/HMMfVoIuwUc/l + 7ZDvDY0PfX6jnVMibrXfVpj03+kLTRZ9J71C0r0i3SnOg5j492Rk25t/BjlwqIc0YRyI7tasek2S + OwUjFmrGY9NXqs9hanWJLqV3v2oQxp0WSXLjvBMg+tCjssjaKd5dBdd11CJYd3gwevrgcdTnOKPi + xknKbZ1psT33GfZ3gCQvaHL8PNiG27qWRjvwWvNeYE60O1CzSDxnSJMc0siXOImJuHLs5oGuJo1U + ljys4zQNZ+OwtgH1inydjbOKwgY6Qp23K2G7hU8nuB7/s/xt/oaxZ2lRuVayo4rWzJNF+H1dBAJe + 42Y9buFQo/DoHzt5XVriRZ3jPF/UkQxuRTSy2uNww6rPfmtnIW36DK4Nkxfp1sOXW7BTGDN9Yr8u + 4buffv35l0I0qqhpEsQMfbe0rrDRdrUmSFzT5knPgwVKyBmoeQjExEZuH7tzEmLH/5QWDs1Mh5aE + u328GRwxF3ntC8HWFqxGEwYkb06BykwvBalfK277FDYutMh8cFGyqnwn+JvoiDiJA0VJnNKTsFu7 + Kysj305i/G58//OEre9fCK/k/mlPCfA0ZL5dben7hBc5umySAM4XCpfvk2e25Zmd5T+0sT5QNgsV + VjzkkvpCObxgxewPLa3h1zUTHXa2wX6eT3p0uAL9vh6a4GzZVv0V9egj2AV/wWWmtvBeQWdfO5/j + 82y4/2vhb+VCwHsh6f3tmG+zJWtGG4B25TZW+9tgA9ek//N0ZSPnW2FmkeYdHgypg3aj4UnpFtHt + w/DuxYKTdmYUaQr7yvlC06+xoo1zWQnewj5tc25Zt/1orLvmvVrZnaL3jtO/UEsDBBQAAAAIADSz + JlDI6E8OsAIAAIsHAAAKAAAAU3RhcnR1cC5jc6VUUW/aMBB+r8R/OPUpSFXQ9tp1Em2piDa2SrD1 + sTLOAV6N7dkXVjTtv++cGGjalE5ahBTsfN/dd+fvPBjAlXVbr5Yrgkz2YaKkt8EuiPe9s16QsiaH + odZQgwJ4DOg3WOa9k8EAPiuJJmAJlSnRA60QJsVst82Y3kkVlFkeAufD4L4gcXjMLyulmXZ+FDS2 + gfjjcdBkIzsAl5aO5HjyNS8M4TJV24TNY9wO1uiRuDTGBUaYhVpWDe049BodcoeM3BbmB8pE6NSU + JE3F2mkMcSe8IX4kV5bXdUAj1hickHgsaO/kd+8E+HHVXCsJUosQYErCU+WaLwlQg7zaCEKQXAhB + IB+VcMyvXFJRTpBEKUh8wi1cwOmL/dNa1j5WkzClyopWC2OGw6p/YD0RE5826aJNOz9g/3Rkfpax + vfoNS6TzNo9NPlupAGuklS0jIIAUWrPn59va8L4ypNaYw7eAvHHAkgVRlhDnhechxHXEs1wSyvDB + vVC3sarca8JpImZF+ndlOW9tnn3Q17u0Q+TDsuTxyPr5NA7L2nGtc6UVbb+jj+7Mujbz9L5/f/+u + 3zrC1JQrj9EUsSA+c7jxbLxf1j/AsBSOWsU9VzNlA2kkaz4UTN0zx0Qukc92Ue4UrUbeWz8WptTo + P2ZviZmzGBFAAHnBw4eGcihMcy5ShAY0nN7GNpOPDfXAn/DRxc6ys4WBKOuI/tkucq3/DNL8Ndo6 + zfd/Jtr5u9E+ns1u+Rb+WSFPo1MONXvpLStlxdA53q59ni4DEM6dQZHu15HZKG/NmssCNJvXfaUW + kDEgL8I1blBbFylZv99GPSPFh9PlXF1ioR89SnRRz61YYqt3qX9Pl6gD/muGcaDQFa+9sZezEJWm + G8X34gtSwvB1RUoehdzhfGrlA6bMnZh6CtsWSS/+/QVQSwMEFAAAAAgANLMmUFKsV9Q8AQAA7gEA + AAoAAAB3ZWIuY29uZmlnbZBdT4MwFIbvTfwPtZcm5WMDBAMuZQxv1CxR73bT0QPDlJa0Rd2/l6FT + s+yufXre92lOuvjsBHoHbVolM+w7HkYgK8Vb2WR4sDWJ8eLu8iKtlKzbZtDMjoMjQCg1e2Ohcz5g + +wx6rJjoyHdMcjE2/txHwjhHknWQYWb6J7BLpQGjntldhq/xQb+dDp3igwCTYfo79jghjDQYNegK + Xvb9WPMqTQ9VW7fAMXKPYvfEnP7ZUK9VBcasJydXVoLFiOlm6EDa0ehsVtVO5co6XAiMjOVqsA+q + WUm2FcAzXDNh4N9D2Qo4xIRqzOabHr+SumdWk7qnK0yvCFlr9QaVvR9afovKYhXn0ZySchZTElAv + JnRZJCQqg9Dzw9KPg5iQc0kahXnoJz7x4jIiwQ0tCPVWCQmT5YwWYR4U80PyC1BLAwQUAAAACAA0 + syZQ2D4W8OEBAAD/BAAADwAAAEJvdHMvRWNob0JvdC5jc7VTUWvbMBB+D+Q/XMMebDDOe9MWPLOt + gYbB4v0AVbrEorJkdHI6U/rfJyVOYrsJG4wJG9t339193915Pofc1K2V29JBxGNYSW4NmY3zdlsb + y5w0OoVMKdiDCCwS2h2KdDqZz+FJctSEAhot0IIrEVbL4mj2mOmkIam3sG7JYZXmRinkISml31Cj + lXwxghSlRSa84aojLRi90Ml94px+Nv5upPJUrnjXvMSKLQIvzSqkmnEcQrr4NatqhRQsNJ28TSfg + T908K8mBK0YEX3hpvBduIfOCdtK1j0wLhfaA7UL2YdY4L9p3yezQWikQGLWaQ9AB3/UKidgWj2my + 4IuWRWN1brTDX+5uOYI8gDt7E8iZ5qjUfliFeUENfGyJz3R6zMLZMeuHWqu28LngHj7NgrJbeOuV + SI+F0wB6ny2GKdgrk65PKV2jFkM9nYKvjDtjD3miU9nkzCBOLpDv1XsPs/v7zlbPaCkTAkXX1idJ + 7i4vmdaoMs5No90DVD1cAsPW+xefm/ZsftaCuf82hVdU3FTYzWH26EMN+J06Om7Gfd8Y/0fwEqIQ + fdAAUg/UxMOIUdVw5AaiQ0S6FHBzDxfn/gO5rCVq50HxxyQX8v7LYvQ6kfTb8qfl6C3Jlc/u1T/8 + 9RtQSwMEFAAAAAgANLMmUJ74wQZEAgAA7wQAABwAAABDb250cm9sbGVycy9Cb3RDb250cm9sbGVy + LmNzhVNNj9owEL0j8R9GewIJmXvRHrJdtYtUWgS5rfZgnCFxSWzXnoCiqv+943zwsR9tBArMzJv3 + /GY8n8Nn6xqv84Jgoqaw0srbYPfEce+sl6StEZCUJbRFATwG9EfMxHg0n8M3rdAEzKA2GXqgAmG1 + TIcw14xHddAmh20TCCuRFh5lxgGRynAIiyF95hVJcN+RmB3F6qjeKXiw/K11yXz/zoqlIcz7I3Rt + Rey7iKqMrDA4qfAW20O3snIlBi435G1Zog/j0e/xCPjhU6eFDpBs13DJA0cUn43YC7JQSJOVCJLt + +lVjIAGP6JA9MqqBpfmJKqqCk2ZjnbdHnWFrXpJJR9yN4bBkPWdKHQVVaKg9DkgCXxvSFQpY1SVp + zkKm93v0XNNCX0FCBJhoFmMvlazJWW14sEoa2OGZUKpCI88Zdg0Eh0rvmxYMFVvYR7QCahzC3naj + 3zGrYirytSKOSZ/XUYDouj5vbE04uZNOz9n9IHMMd9OXPpk4fbGzD7p6VzKJKmUIwGe68vvTlfkP + MvTC+xm1WK+PPA6IC2dN2bSmfPE895P1hyciN5jdvxf/wUYB7e6cqzp1N7omH7LI7j3rerFV00un + K9nxGSD3A2hxm48N7mOLq/ifa2XPkXhtA80g/vqK9PJGtgyNURCvIcTKJP6dfKyJV+IRS8yjLXHW + vLWKZxh3wu7byFOarmH9Y5vGCxADvXjxplF6SXZXQJujPeCwQ68A8iQ1DZ6Idcfbyd10t2sGG77M + vHg4i95Mb23pX/z5C1BLAwQUAAAACAA0syZQs4kQS0kBAABWAgAAMQAAAFBvc3REZXBsb3lTY3Jp + cHRzL2NsaTM3cW5xdnc1M3B0Mi5QdWJsaXNoU2V0dGluZ3N9UlFvgjAYfPdXNM1ehU1Y3IyYTNEl + ixi1WXwu8E06S4ttgeCvHwIz2Vj21LT33eWu302zPORMJz41dDZAaNrdt0p+MA4oa88NTcHDEWfO + +CzORfnoZGY0PEA49CHjssKo5iLUkQMwiYw9HJC/0HfFe1KWjlKLXnIFJYSaGdCWADNxXafjpjpu + pEiN9dgY5RpU6/GuhzX868D24HsYqshJnmOS8Kck4hf2Ol5sVu5eFiPiErrPgjROlm/L/fyBq3vG + zu58x+QoOG2I/Oy0YtCGCWqYFC9Z1sRJjMkmtv07VS9Rp0B2awKqAOXPF1IIiK5axCgmjh7+TlzV + U//giby6ONaLKlgMaiVVnq6ZON0GIimMknxLBfAW6FyWTMSy1K07K5JpR6iNkkobSD1cb/b60xrP + GmQa1/UIqQaN7KYl9s+azAa3l6ZIX1BLAwQUAAAACAA0syZQ4M95uJEAAADcAAAALQAAAFBvc3RE + ZXBsb3lTY3JpcHRzL2dpdGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZW2MMQ+CMBBGdxP+w6WzkZ0N + DIODLpg4klpOOBXa9K6YSPjvKulgouv73vumZAWgBt2jykBNp7Koq92xrA/5vpzVelkbZOPJCdnh + jwT5M3iEwgpU6EcyCFvbYGw726PT7fLeiTjO0rQl6cJ5Y2wfJedp1PJxLvrOGEvNNTEH5DcXH76w + 8/aKRn6HB90owmQ1vwBQSwMEFAAAAAgANLMmUFrTF2zcAAAADgIAACgAAABQb3N0RGVwbG95U2Ny + aXB0cy9JbmNsdWRlU291cmNlcy50YXJnZXRztZI9awMxDIb3Qv+D8XjDKaRbcQKlgZIlDf3Ystz5 + FOJgn4Qtp71/XzdcaAo3tps+XvToRTLbSEe0oj6D79NCH0T4HiDZA4Ym1cHZSIn2UlsK0OEJPTFG + CKnNzncwn83u9PL2RimzFgxPkTKf01J4pMDOo3rnrhFc6KraVbVNeuyfFTy80XMWzrJysaxBcVg+ + +I9mSAamu+NwGKdf8g31qNa99bn7QXHxptXf8L4Bv2AXW1tKskL2NLza6FhSQVf/Rn3BQKdCbV2/ + u3YJkypqjxMqA9e3MjC+QIm/AFBLAwQUAAAACAA0syZQqPPJVpkCAAB1BwAAIgAAAFBvc3REZXBs + b3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanOdVV1v2jAUfa/U/2D1BUfLTNnTVMakTWNT+0CRgrQH + QFOa3HRmqcNsh4JQ/vuunTg4wKpueUDEvveccz+TFEJpkikyIhJ+l1wC7WWqFwwvLxJ7tY71T//S + vHvX8XodgdZcPE5rQ3PPJKgi36A166OBqg0UW6lCeL4gNn9xYnhlDZ2pg7BK4rShVF95DrQrIXSw + HR7DIYsElDLQHjC+TeInMMD3DytINPsFO0XxOLi8IPiwjOcaJM1KkWheCLoN9qhBl1KQLeMihe19 + Rq8+TafReDa7nXz7cRWQ0WhErofVf0N8H3+ObmdjA/UBgUh1LuFGs5OPyUvLBA4USSlDgqEEpKXa + M8bs8RzPmSoflJYIQweDYHljkMz5shpWIdlXfvIFPHuUBsaVIyT44imqrFe5TmMNr6lR6GPXlC4C + W+cvhR6LDcX8AQZSZ7PWpGGrUUxmIo9TwxHtRGItQ9Irdfb2vW2gg0fOhS2z8WRqnXNN+/OFXIhl + v2vo9Zr1OZ9bc9VqOjivY6mdZ8PSG7VKzMMzQq0Vy0E8Yvt/HJF3HaQDmsDa2vEw5gYNZVyHZODj + WetSzo3tsjVeFVwcM1eHv01LoF9z7xXdu3epwPPqpDivGkIXl4kaiwVbrrSypep6BJ0MNPR30f2E + YTwK6HGhj/lcyV28lYvklNhJO8foNZ23RjqAbpqqk6RwNSlSuIumsjCbhLYEjUtXxvHO41wJdGe7 + p7wOowv+L0PlytbJ/om6M91rdt/RJlTedHaN3UAZs5f2T7dVm1zM3TJCG/KGYKfir+Oyi2jpdy4u + raWvAFP5LLmGth/a2OuRrdt/gV8b7GsQSZEi7o3rkqotKoFcgS/xBPg4ybYn683Jsx09bEJR5nmI + k/wyoS3rH1BLAwQUAAAACAA0syZQNCH6uCIDAABSCAAAIAAAAFBvc3REZXBsb3lTY3JpcHRzL3By + ZXBhcmVTcmMuY21kpVVha9s6FP1u8H+4GEy38Wxv78sg4NGOZmuga0ydrl8MxbFvUm+WJSSFtHvb + fvuu5Dix23h7MAiJdHN1dM650tUpFvcc+GrlOgp1zYu8dp10ugCRK7Xlsoz9N20AHwSXOkWtq2at + Yv/fNixR8KucYaxkcU3jQ/RG1vGqqnESRZF/Mf80Pb+efZ5Ofr7+543fBpKzxcXkJ81UpTHyOyi/ + xSj5tql5XsZLrgNCdx3XsWz9HbpvIhIZFCVoDkLyL1hokJxr1xEbdV9CGGbb7baNtLlVU2lYVzQn + qbUZ2VBvWvBmVa1ho1CGDdEBjwisJI3Ij6/eSCayvKrB2+iqPu3nhwVn/TV5SawGGIzRT8DAE6Qr + l2i0dNpB8Y0ssA9AIrhGi7OzvG+I4KIcSN0IpSXmrHPEGu9nxnHXYV/LSsK+ckXZG/fdgSBYErMh + vMEzXJ/u0Pd8j2KTg4DOWNDl7+mzXGmUQ/Ci5g0e2BzhfnDQpu49AL8zz2+hSqyRDAvbopeD/y2I + ZBBICFa7lIHGXUlWXJKEZV2p+yNksj5k62kiuUCpK1RZ0q6jiLkNqlv/uwz9KND4SJ+EK32OouaP + aSEroVUmBtnhA6tDjUzUOYn8DgpLCMi5KPvvdvr+Lp0tpndXZ5+m2Y/Ip4Cd74N+tIZ3cCQe3OIy + aLcNaT/a4+AL1RDS+eXNYja/stmx6xh/ohV45HXFVOyB7+d0cuDFiTEjWsKrUNXNyUs62HD6HICy + DbKVPSo4LFg5onSAZpQOAkblID25eX85Sy/ukuv5h9nliDXPLXgGc5amt/Prc7O+a5etoz3Gf1LV + NdS/ruP/pPacyBG4MBmSM8Xpyt+24OFrYDtxRfV/GvcgjsHzYM2pUXyrxJ8ujwU/aUEgF4I0tUgn + u7s6OUuSO3odFrOrj+mBlOtMLPruztoueo9mRzCXxHUOD5CfvaUwfeWQj/AIzbrjf2WvDh0K82Yj + bAtSemNe0JH+N9JfxnraPn28UfWfyn1dmnL3fLuOtXsynX+wzgwtay0uN0w8NbjhJQ5k72Qc6UEM + 5Rr3R/cLHRB8IB+ipev8AlBLAwQUAAAACAA0syZQ72tPdXMAAAB7AAAAJgAAAFBvc3REZXBsb3lT + Y3JpcHRzL3B1Ymxpc2guY21kLnRlbXBsYXRlyytNTy1RKEotLskvSuXlyi1OKs3MSVGoDvb3CQ3x + 9PeL93P0da1V0C2wckktyMmv9M9zAimwLSkqTQWJBpQm5WQWZwQU5adl5qTaVgeEOvl4BnvEBwT5 + u3n6QHQGJBYXl+cXpQBlHYODw/2DXGp5uXi5AFBLAwQUAAAACAA0syZQNiuxcHUCAABEBQAALQAA + AFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hQcm9maWxlLnhtbC50ZW1wbGF0ZX1UTW/iMBC9I/Ef + vGivxPTjUFUhFS10hQTdqIGiPSEnmRBvnTjyRwpd7X9fOxiqBrYXUObNvJn3PLZ/ty0YqkFIysth + 78Ib9BCUCU9puRn2tMr6N727oNvxv/X73c4ipxJllAEy/1pCiuIdUjmgSseMyhxXJHklG/MteAJS + Ip6hHdcCrSC2sd+QKA/94holpESJlooX9B0aihhyUlMubI2yfRxHt2N6QEqVmWgPzKN7TVnaDOKh + aYm4SEEgxREDIkpUcAGIxFwrR2TCElBNJVUoV6qStxhvuFfQRHDJM+UlvMDZG6PlK76bmd/peHg5 + uLm4vPBQt9PvW/3hfnq04JzJl4Nf19Yv42Aphz3LbIhlkkNBZIs9hRoYr0DgQsZ2enw5GFz1DDNC + ltsgavdDcF01IRM0loV7V+egcp4G82gMFeM7H59ArsQFDV1NjSPB6F0LMMkRVeDjNuqKZkSqpTnK + xtMHXmZ0owVRRl7wDI1zPv4ip8USMqIyLopgVO7QQ7j8qD0irsIOtRRswWdEl0k+yhQIN2LgrPyz + mtyvo+lisn4azSd/PWL1vEFszhGkV4Ly8Vcsx9EsYhM/oQuhG2VnQVc62SZMpzCqqvWYKBI8Embt + aIdd9uGAIhA1TWD5PAvaCmRSnKq4vb6+8vGZase7j0+pNA1DovI2q49PMlzlMxRcgVUX5jtJE8Is + ivDxDF5pNdkqQR7NVZI/S9vbbMbemv+ALbGfF3E1j14ePrSc3dJJSWIGh5R782KYpd+3PAu5MrND + 4okUEHw/kX+EXOo6IjWEq7FjPX4e4DFI85o0+7vYVdC6Jydwc0dx+5I2EfskBP8AUEsDBBQAAAAI + ADSzJlDKIuDRJQEAADICAAAuAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFNldHRpbmdzLnht + bC50ZW1wbGF0ZX2SX0vDMBTF3wW/Qwi+rn1wT6MdbLaCsM5qlD6OtL2uweYPSboxxe9uumwdWvEp + cM89h1/uvZHqypaZJqGWzq+vEIpOhVzLN9YCUv5dUw4x/izS5YY8vKSb9SJLvyYFlJMEVCsPGPVm + hE7uDGwj6xhn5E/5VbejsMBUPKAfnYY9lIZZMIEAO5tOb89mbupjGHHiyI5RZ0B7zJuR5gP6jrxI + nDdfEFI8PieDVIOxTFDLpFgodeRrrFWzMPyNOUI8R5CnFQG9A50s76QQUPVhxGomtjEe/nBwbf81 + NLIH2brx71gN+l7qjq+YeL90VFJYLducCmi9ciLdM1HLvfGEQSX52eFoycFY4DF2G+vHZ/DcS1Ht + Fl9SAwaFfv/hzwNwxaF0PJJvUEsDBBQAAAAIADSzJlAT2XhL0gAAAHcBAAAdAAAAUG9zdERlcGxv + eVNjcmlwdHMvcnVuR3VscC5jbWR9kMFuwjAMhu+R8g4+bgc67QFAIOhhEmvRBgckpKpL3JGR1FES + VHh7moDoDhu+2LI///7lKYo9ATUNZx6DJlFrzlINi3y1LLfvebGuPsvNxzwfX/tvRbVazuZ5NQDj + 17ikGsCT8gGybNd1nSMKO4lW0zkTRsITZwD26PfyFxB7/U0NA5gwsn1+jqoODRyUOPQm4euotIyF + 8NbRTxwn/w4FOXnTMNgGCMqgD7WxnMk6ILwEmEzi3YHJNH1zFsH/p0l99Gc82lgMRiS1mHy28v5d + zi5QSwMEFAAAAAgANLMmUKHoB0OKAgAAQwYAACsAAABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cEdp + dGh1YlJlbW90ZVJlcG8uY21ktVVRT9swEH6v1P9wqmQVHpJo21ulTi1bpfEAVLRjkyiajHOhASf2 + bEcVAv77znZDU0H3Rh6c5HL33Xef75wJirUCVRT9nkUnleCy3zNYQfJhV8SnbI2+suoSK+XwErWC + axOef1o0N3Ct0VhVczkVAq1dqgesvdWo+3Ne4ZPSrvSfX24injDIHQKvc9BKN9K/XC0u4K50YDx6 + oQy4NcL0ZAFC5QhlbR2vBcb4uO4YjKChFbgQqqkd1JSTZAoILTP/kaiB89xi/DukR4djfIqcHlsj + cV03t3A5WyxhOj+FI4N/m9KgDRVYsEJpPN5m2goR0PfY0QcUzsNuNTnKseCNDKZfs5PF6XL2Jyzn + 07PZ8cdvN211K6yR47Vz2o6yjOsyjQWnQlV7XiT8mH3qmuabfMw+R0tb+Zh96ffKAoastbDheDwc + wr7Tm4pZC6xVlw/bJWcj9pqWTXYk93yyXVpfR5SRNhREY2RH/e1+9Hu6sesc0nS12WyMUmRxjxph + rqz7jlqqx4UwpXZ2FRPOY1x6T32TOqx0aOln8C2TINhs9USl7cpavXQYZXfwFdhydjZn78D1ezTm + MhJNfsDgm6od1i5ZEp8RcK1lKbgfr8x7DyBp4JA6kOQwmBzMRLG/YX5B/fyKYCTL/Ghloae3Y1f9 + jyzNc97vtfcw7GFq2k6PYr6VN/qWNZ0AYYNC0f488KbOq1B1Ud6FeU/DJA261Q4OeGpu7UaZ/NXb + y3HIGSteShg0rpSTW+UKQ2ko+MF3VTeG51TCHkZV0S2pYKBJL27QFx7OTrCqMQJ9GmeU7KJ4Kbze + ocEZVNw6NDsdtxpK5DXB+ADrGv8HeCthgKTdSQwkBcQ+b2GwzsP/4h9QSwMEFAAAAAgANLMmUOfI + SQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVd + a9swFH0P5D9cAiIrzM66rjAC2dJ2ge2hbUjSbrCUosk3iVvZEpKcULrut+9KtvOxtA97aAiJdaV7 + dO65H+6jWChQs1mzYdFJJbhsNgxmEL3ap8Sn2wp9bdUIM+VwhFrBz2W9vAnPVxbNBc+q1RCNVTmX + J0KgtRN1jzltaKPu/JlHpV3qt59uSnxhkDsEnieglS6kX1yPL2GeOjD+tpky4BYIJ6djECpBSHPr + eC6w9C9/PSNPqAuFkSRT8PAwNiW8NxjPY1g4p2230+ErtCrDX8rFy9QWXFpXJKmKhcrgoIJTtg6K + EOkJuBCqyB3kZKrxdRWp36RQwflY13ye0aH7spu/JaHH2ui5jwbjCXCdlpC1ggFjhwZtoHDeuRLz + TYIzXshg+j44HX+bDG7Dz8XJ+eDg9euGaoZy5/NxZWSPHe5YSM0ee79tGq6SHjsqLXWUPfah2Uhn + 0Ga1hbV7vXYbdg/tRcdKmKV1dqSU67E1D1ZfqZVnVVcD29BiXbYmxPobz+6fj6xzSwXZ2ZDZXHMW + NB+WSfhv2CpTQklJ7tQZnVvKuO1USbWfaRUtqWJoq3cUv2s2yvRRuYDwtb7JeuXSbOjCLhKI4+lq + tTIkQrPhHjTCUFn3BbVUD2NhUu3s1Fdp6RTfUUnGDjMdGvA3+GqMEGxn+kgab/SdPm2J0JnDJ2CT + wfmQ/YvVbNCEkiXF6Cu0zlTuMHfRhJh0qai1TAUP8frTLYAogVb/eawWRD9geEnNAGxPccqEyV4k + ESaYRNRhjBweU1xC5YldT5WgHdEIOioKHx2+pZ3UAn05rFKZwLyglqwiKtEOj0lmpROfjvI/zLLQ + wXU/ltLvJ6M8m+Y04KimKlg/7rxpa0lEZ+k8jJ849Htru6haL5zU3NqVMsn6tK+6lw5jxlMJrcKl + sk/zcGboGnK+97Nw24cnFMIORpbRX5RBS1NDcYM+8PCqAKsKI9Bf44yS2yheCmBVAzLIuHVoNjpW + GkrkOcF4BxrM/oW3L2GApLRHBqIZxEHGGgbzJLwe/wJQSwMEFAAAAAgANLMmUAAF6ua/AAAAHAEA + ACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVtjj0LwjAQhnfB + /xAyW/AjbaNblSIOulhwlDS5QqA2IYmClv53k7YigssdvB/PXTudIIQbdgO8Qbi95Nvr+VDk11N2 + zDs8610BlhupnVTNnxDKXncDaKscOoN5SA5opwSMXc40K2UtnQTry20QvfwAYz2Oq8YZVX8Nb1l1 + Nxx2g1M8df/YXjo8JLrZiNBGcbC2gJuumYMfhhvFUD+IAEjKdEnWcxpBtSARiXkVUVLRKE1oGa8o + EYzEnwth+dG9AVBLAwQUAAAAAAA0syZQAAAAAAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlz + aFByb2ZpbGVzL1BLAwQUAAAACAA0syZQ9AOyxe8AAADGAQAAHgAAAFByb3BlcnRpZXMvbGF1bmNo + U2V0dGluZ3MuanNvbp2QQU8CMRCF7yT8h03PJJh4UPcG2oMHywaQq6llsDVtp2lnQUP2v9sikt14 + 49TkzffmzetxPKoqZkxaAZHxH4nV1bFoWT0Yv8VDmrWkwZNRkgz6PN9Jm2ByhqRH/+2w/Y9RbC9U + DuBfIULq7S/mEOzZ8BptHjFNFOrp1KKSVmOi+vbh7p5NLo6UbIORMnrzq3Xl6U4ACxF3xkK/A1ca + 50iDVIXOSb8V0kGJbCJ+gqJeiJWtV3oec3mIwyZXHQ1+byJ6l79nI6OR74MbT8hs1Qi+flws+RsX + m+flQrxwsS7Ln2APFkMxsz9D1+8+HnU/UEsDBBQAAAAIADSzJlCcI4W+bQIAACwFAAA8AAAAUHJv + cGVydGllcy9QdWJsaXNoUHJvZmlsZXMvY2xpMzdxbnF2dzUzcHQyLVdlYi1EZXBsb3kucHVieG1s + fVRRT9swEH7vr/CqvTYuLdMQSoMKhQmpZRVtQXtCjnNpPBw72E4g/PrZcQpq2vGSyPfdfXf3+c7h + xVvOUQVKMykm/ZNg2EcgqEyY2E76pUkHZ/2LqBd+Gwx664xplDIOyP5LDQmKa2QyQEUZc6YzXBD6 + TLb2rCQFrZFMUS1LhR4hdra/QE2A/sgSUSIQLbWROXuHhiKGjFRMKhdjXJ6Wo2dTQMKMLcfbF6vL + kvGkqSNAtwJJlYBCRiIORAmUSwWIxLI0LY81a0AV08ygzJhCn2O8lUHOqJJapiagMsfpK2fiGV/M + 7fd2NhkNz05GJwHqDQa296UvHa2l5PphJ9Wpk8qKJ/Sk73gtraYZ5ER3uBOogMsCFM517GrHo+Fw + 3I96CDlqC5j6l5Jl4SzWZtVaekEXYDKZRIvVDAou6xAfQD6itVmyilkxoul7qcD6rpiBEHdRHzMn + 2mzsHTZqXkmRsm2piLGtRffQaBbiL3z2SZacmFSqPJqKGl0tN5+hH4gPcBVtFF/LOSkFzaapAdXW + F7UiUs7GP1/ES/X6Y1yYUUBcM68Q2/sDHQgwIf6KZVeYA5zfHrhWZdPWUdBHXr9RXiYwLYqnGTEk + uiHcSdE1e+fdzaxAVYzC5n4edcvXND9s4fz0dBziI9Ge1ptvmbbplsRkXdIQH3j4wHvIpQHX2TKr + NaOEOxDhnfrPrLh+M4rc2OXRv4VLbAfCq/IfcL/R/el7XKwerj77ODaa14LEHHYel/aBsHPuEx6F + fJSdHHVHcoi+H3T+AXnPpxWpYPk4azk/ji06A22fjmZk13UBnc04gN1K4s5ONga3/9E/UEsDBBQA + AAAIADSzJlDUlzcKDxQAAMtNAAATAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bdU8a2/jOJLfD7j/oPEi + cAYXyZKopzsJLo/unQHSmMX2TAP7qVeR5Vho2TIkxen0Yf/71YOU9XScnp6bPQWxJbJIVhXrRRat + 8x9uf7n59R9/e6utqnV2+Z//cY7fWhZtHi4myWYCJViWRAu40+A6XydVpMWrqCiT6mLyWC31YNKq + 20Tr5GKyS5OnbV5UEy3ON1WyAdindFGtLhbJLo0TnR7OtHSTVmmU6WUcZcmFVfdUpVWWXN7kRaJd + 55X2IVpvs+R8xsUSpqye6we87vPFs/Y/+2e81lHxkG7mmrn98qZds40Wi3TzMFS1BIz1ZbROs+e5 + 9iF5yBPtt58bMP9CpqgH5NfZYSRWSfqwquaaZZono90Ai5Oi2/I+ij8/FPnjZqGn6+ghmWuPRXY6 + WURVNKeCWbl7+K8vgMGJuIFbbZcUZZpvLqaWYU21dHExvYuek+ITPADUpryYrqpqO5/Nnp6ejCdh + 5MXDzDZNE/uRIPMvWbr5PARohWE4o1oAvZgC46bas/zG+b7OsVQzNccTgRFqnmsZ3lSjebqYJpvo + Pkv0PUnzTfKkdcHfEBbzchvF0GZbJGVS7JLpiXiLFGJPWvW8haoq+VLN4rLEKs0oK/PEv16mWTY/ + sYXrXplvzTcn/i3WWKpmk28SVWg3wE3TDa4CVSMaNcIOrm/rGqdRc+3d3ryzVI0LNTmgnFbPc9Ow + 3xAUThVAfvj4159vP1mffnwzzAHs48S8AvJmRB+TWiRxhcyleYyzqISpAyKnGmvR1PEceGDJuph6 + jmeI6YybbqNqtW8CzUEK3osw8I3gTNjC8O4cYZmGOIO+V7rnGl6mO55pWGf0GeuWb7hn+AHFUEp3 + HrQ7M++EDSAhtvzJ3NGoK+FBkdDuRBCEZ44VGH5MLagX7IDvuIPMtgHgjD5XnodDY482f96I0EfE + hBcirvLBgdHOmvh/HabUlpT6gQNDOZ5l2HeO7TgwHlEaBsIIswalN8IHwXPOHB9xEr7nY4182Hcy + Mpzg4XAiuH9hA9YZfNlALn02WVmz48wkXmRE8Rl9/oSd3Kme6puRgR1Jp+I3jNnkqmtDU1nEn8BW + 4cJYjmkhP0PTQ1T4oe6kHgz0O4mKvxbRIgWzTTZEifBUe5DFv4HdBmQeQTs/oKr+svmtTEB1rYup + 8C1h+K4Pmv8Mjw6w2LJ8FyptqAwty3DMAGh4hkfLMWxXuPt+fy2iTbnMi/XFdB1VRfrl1CIToeOX + B5IgQi/8sTYH+VbLl0v0RFOzNjRYrMd5lheoqO/oekOFexV1FbWtPqyDfagmszaHhqbIVUrn2ih9 + tqNkQa/VSm+oVaa7tjiD/5VlmSEoaLNhPTFoo/HOvJr8+GbUTxTJNonA2WxyeTsOWqZfk55X6sBs + 8xI8dA4utEBTMw7IzNL+Im1vG46M1uBQ5GsZEcfpeeLac9p9Ly0HfFqlVTLm2wU0QwdDX70eFmm5 + zSLw8ekGp1S/z/L485iDNthD6ynEM9/spt9AvBRIX31im9Jbn4jbExu1Fj6hNF1wgfTcXEiumcvR + MZ+Iq0Ef3gK+Il893mjvz2UzBgVG8fNz6xlclBki0uzpZR0U4L/lghnDb9vlttKVIUzP7QEe4Phk + y25rcV3TAHAUB3A3KhbAatICFRAAMIYEDKXCgj0UKNQ+OsChIQrAUdjrUq21r621fQ/SdMz0iL65 + wS5Dkkzaz2U4IJWR4Mv5dULD51IWa1lMHJvVnT/UaEur0u1ZCoQUkvcuzMmNZdpGeAciFMCD58W6 + ANui/kMUrBtTt8AjZcLXBZj/DOChUIC78vHbMxwwUNQcPuWdg/jemNgl+Cvh4xyBz7zbD/l1Lxhm + uKdh9vDN5IQ2spN7B+R0QeMCljHEHbpJWIMH0W35LQwRA2kAAvOg21AiS++CkHqyTaRV9iNJrVGO + LSKRP23Dw3oagu8hvCnlmBAN6HXhXRPLr63p+z2kmzRRXoBz4dAAph7QFAY6OFGgk0uphGC53AGK + eJ4CqvXlHdTdhAzo8VyGDIpD4NN+wK81SwAhhYnroduyiW0m4MHS4cs7YFRsEqvsmoXMvH29Rc8m + l8HMePIO6j6EXImD7HHBp+/GUAjenO/OUI/FSjIUoudgz9DGgG2Gyoo/lqEQS4g9QxtDjjL0+0QU + yyzH6ixZdmtq9+30na8KCQaqXvLLeIHrrNI4yvQoSx8gOlmni0WWvOS80Tt0nbcMFnTEH/DpBigq + rpFx5IGdgonaKpiMxzi+Pbzb8CQ5BWvRTnWWVBVgjo6QtysM4fb6IDYpbofe/yFH080GPnGPJ4KO + exsY63Sjy5l2gv5Mr6MvqtqCdeRAPW7fyKmJHqt8uL5gwgcAXkfUAcLm82hZ9enDS25wgQB0J55q + M1grzLX7vFoN1NYTU2GM1AFoM3wNeOhyLD0qkuiwIIs2t9t9qW5oP63bj5J4k67fK/FOf1Zfkvim + MHv2ATKIJUM6rUgITPwbR87uLzleTeBYH4pA+zCB4igC9a01Nt2wUkXlGtvg1EHyqnwNeAQHBko2 + i22ebnqMHMESL6m3rm+NLc0OsP/PY3CPdQf5ssqfAEq/f0wzWC9D3J/2V3/t3kZ3mo/Qy/EhL7WV + GLI9DTZZfUXrscrrsYrYdYyL6fHV7vMVr3rHHf5w5rShEUmkK7XXA8vl7TYp4qg8bAHLKtmOu5ra + lC6zpIsYWX89rZJ1OdfKqkiquGuNGxsdSRZV6e6wl+jgssiGZuc+L9CVyMgCeFHmWbrQ/nJl4t8h + dzDkoAnLOmsxpBZ41fw/xMoDZFxqi2o+v0+WmHsZoIno6m37DO3CtLlwHAMaXMPttcdycNNIXbXn + nU5HIJj1jj/IKrzqELVvxdS1l4zoHvB/HCVURTLDXR0/AUaVlBUYgAwU8/VTcZ89DiH4mvkfG+xF + 8cSrYZLSzSop0u6qoAWoLNN9ni3G5rBldfr29ZXULcaoOxrxYxDCqxW9jkl7100PuKtBAjvEzWEd + XOnxCpzG64wRWeEtxJObLrmdkLGK7tLN5wNbn1L+xjvsG4Jx2H0Q6l1dW93Kx6LEWgpZkuJQcND3 + eHsT2g1o0IaRF0xwsVuso+ygC5AcmS/z+LEc4nj+WKGotCyfad7HS/sl21z3vcp3w4sO8qCLJM6L + iG0TzEBS4HAvu9ChLexD3rOOpPpBZnsBZvXDBmkTxYEgq4MYqGi6GyK5RmNY49RIw7Wv2M/ohOCl + nuUP+VFLXPfwEjccrP6dK9xh6yLhu8Wkb9KZscHRHNNcl+MLEKa+S7Pc8nkhJXRULoT38Y9Ih7z/ + oJfPa/AT/y8SIg4nNmzzG9Ih+7Z/fjLEF77jOx0QuwVy64l3ttcBES0Qy/NvMYfZAnFaIPZb37u+ + 6YC47cTM7XVgiVckZryjEjMiDAYTM1bY2jc9YsPZ8i3agsVTBTtHGPZK9w33o+Mb/ko3MStvCdqV + FcIIV7pLz77OT1C/4zvPCD9iFyvLNILMsrmJvTINO4MGli7sn3go4tNX3GG2fJ82gx3L8DkhgvvE + mCiRu8lCFzKFwrvOoYTB/uAuZsx5/9nhtlQrW8fcTrUWnCiq7wXtXHMaxuE9bF3WMJKxzKOYtG0d + SmDVvV0CngLb6hKfG8unFJTcJFfU2e1HIJapD1zaLndhznfCQraLnS6sn6iCQGzTp7a+p/gWW5wY + I3RxcELX8JBFyA7d5AQSZu0lqzzd3nlQW/PX12UmCIhx6BsT/ZxqQJbzCJjyl9S7mInwOBMBAJis + sgAPKKwZhekq/IciEAWPvi1MVvBAKqHnYFNAPKb0FuHjAyzxB/NgDlHh1BRSLo/AHIWVqpdT5tYT + LOQE2ztfYYVI4uTZhDVmFjHVRhX73JtJyQzkoE90EJ2u5FWoc5Yt2GcakVBf0sJ3MLExpzesGhuX + GMb4+YpPN7bJ+TjfZfRNZjHNLz7up5vnX9QiArzkKSAcrPqOygyrVJIqZZPncudjFskkIlE0QiIa + szeIZC3jPlVbxAOiCb8VwZjzEVIJHClcQgmTRd2FdWqHiNlZQHwtziv8BjJXTIOv1+lLnWRXdxRv + BKu9y4TagtXI5SRbkxWSNwENhweyUM4ICkUzlPIiUNJsljSEI+l0WdJQdt2YBY9SZjQkS5bFNmAv + 3LbMtIa1GHoy1WwxuE+zj5ygDCXpBQ6jxAlVghu4qDjyNpaCj0rlKaVCFYCxHFZsEBOSC0mqzwM0 + Kf9ae/T3tiOTaJ4hpDhKfSdxZBpI42ByLWkBOF/HoioTxXwvqTYJV18aQjwChHWErOwRWWnLO1IE + lBcSKpc0z0Z3sldIakiKiDYK89OUXaSxdJm8h5nyZJ8+8IJz4J60bIpK0XyoFSZgwtwANJYUhBWB + FVc+2zU+phyP6WcB4rmX/iC2ldnHTmuF9giWc5tSDU6Ub1HugY2AkNlR9FwWl+jsTv24dnOBLucZ + OMN2EhlSs4y0T6qlTZbVZIvtkd7apNZgRlEnd8Dt2i/KUwFBPdOOHMaOlbl3a8k2pVyyzKAZVuaG + B1DOxKxRQ4tg1p5EccJGa4venIyJ9Nk8zdzAlyce0L/g/Ds0/zo7FCoAdlB+mQ34XmZs+nbVWYgY + mcLEWVL/BbkfVFlbV1NgSfEKqHO/7UHZetZKYJJqiNqSKv/CKWv2O+HOIxcCpGCH5PmlZ2lOmvQv + nvQvAfsX6bx0u+FuJcdvUHjpdIHPMqBkmZ1CU7RZ1kP/GANYG7FvNoN/lAFUzBo3g2HIqiLVQxKs + zGCDfmKIMN3vaABbxv87mcFvMYDSOwqTMZNmsKZVNB+UGRSuUOdUwBFbKLO2ix7Z2el446Kh8Fb0 + 5ZC2quAJFYndua0HsU2EcuAWyMAwwFge7pQNUGc7rJpRKha3avu6t6xmwzqCsn107JismkmRmgpE + pIUzSXtsWSBI2UwOPlxlE9mK4fkYKbmEVynNEVsaVgd7B+uWFTFD9zOf+rN3oCwr5IvH7LFQIZgc + NoocXxNzsJeapKAmQ8XZMvqMzTp+5YCLiXcpVldM83TFCEsuPtia+zsvljaVOWFL+pSpIhPCTs2W + U9M0IiJW4TuaSTK4HgWsHOGTz8Bg2KGJFUgy4/TRZS0aO9TXXqUKq7W3YDsDa1a7v2YlDekuWWXp + bHw0L0A+vzSe+G7jdajzLDV8azznj6NvZET320Y85vTUS9uHg/ubuIlYH3kYPyzl9quO3NhsY1Xk + TyNZ7LkWysPSmGIc2K/8Ew/0dM+wZI/r3j72+GE0hbXbzSaqDEwxmNDpMW74IND4IaCDR3yGTwe1 + xuyd8+lt/dPvmsYwXuRPG+DJQq9WiZ6sH7OoynvYH0hmNRIxopeIaR4/eOFU2oGDESr15R/ivDwW + kS6LaN3LhjbEzjdRdn9I1/jrw6iXV2rIr+cehFSIH+iwIxvJOt8lOiEoyR7/JeA4pf+9ThZppOWb + 7Fkr4yJJNlq0WWinLdVCnH7s9j62W9/kNR1SGciRjJ6DGzpehVfziJf5cm/D2kodscZ2hPhYvPEa + /3VJH48X0znHDvqCISSQ/Yx5A5abQQ7bwwbMeAqoT+WAfW/Qxco4buP//cgbpPQoRfGHFGX4x7Z4 + HfuDpg4s6wHijqfRhpTrmymwxb8JBd9uHvoHlcZP3Q6kppne8R+C4VVz6/sy3xy0s9+d+TJROmAC + fwfyHp4k6fuI4+dt4CTK6y2Ntbc01otmxAkPemSCbtgl6yB0H9exQ64duu1+JDPgR8aOHnc7O0aX + jj+n1Ay4jlGrcbfbiXqPoflYHR2Z6Pp43FHm5VC4h1dTbIJXic3hALFJyQsRIl54PgcimKe5tkoX + i2RzpP4eEywiheMBI36dz5rvwDgHQ5Buq8YbMRZ5/LiGVYkBc/12Bzd3KYgaiNjp9PaX9ze8ZLmD + xUGymJ5py8cNHzY+7VkNXEC8Q1RPWyvd5sMuKvZg2sWh3hBUTuzFHkewYlGVvM0SfDqdMsC0+7sk + LjbKpLqqqiK9f6yS00m6mJxpE67q/ZIJR8uXyztQrZ9+fX8nqYaReys1hKQ+JBJN7B6SSpZeP/+8 + OJ205LM3ZrrUTp/SDay9jE20Sx9wzWXkG8Shx40mVUUMY9KbN8r5bAaDlwYsjqjyKS8+gzqvYcph + 2RfPovtytgW3Uc6WrrGq1kMnYAeZBVKSZ7A0e0CebfIe7qMNqYzP8GFT8/iWpHnYBkP045ux8B9s + V0/Zbbr79unCS/ViRNstOIobPEl5yvBd8H9pSVYOGqWm9Bi04YQah+p3OhnQ+B4iTXPxptZxpdbn + M/kiHrjF98wovZfxCL99YMJPk4YZOMcNp1Zt99dNTeixFgA8ka9HmAz+nmxyeT6Ddi93hW7zpa6u + ozKN8d0/3T6bz8yQpFCPjaEgLhljAfvEiXrs/a7qEDNaP5yaXP4jfyxw80ZLSw1aLp5/eIkF+7ih + +due7pB4Qd9aHG00PAyuPdcDQcGKX4r0TpkF7a3c1jm/L7TZQFf3z1qCB2VB6bWI2v729zswito/ + 5Ut+gOdRtsrLai5CP5hF23S2TsoSzcs/O7QcTd/gxtMQoedRzV0+9TrRVkWyBHGRdjD6HMG6fQbk + 67Up1N+5ej1C3Xu/c7gqWGDiu6o+3WcRdH55K5sRI2vWzaIuVcdSOkTTx7RMq2+nDIy7vsrBUvWQ + H6RQu/r6WCTDVfT6rKTAl24NsB6o1mDJVyQPGBkUeznD1QSYLQ2oqPIxuQLrm+aPJb4ODOxJVhra + r8BSaD4ttTrYRlGrnrf4K0xYrGR5/rns95SlnxOYj7Scv24S1CiTS8XS8/QSifgEWJSfUKTxfWTn + s/SyJdWHrEp3DBlDt10Ivhen41Uu26apcd+Umu7+05iVkoDDvZ7PpP0np8BvbvtfUEsDBBQAAAAI + ADSzJlAISi14sxMAAMxLAAAUAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bWzVPGlv21iS3xfY/8DWwJAb + a1LkezwV21jHTiYNOOjBpDvAfApoiraIUKRA0nKcxfz3reORonhIitu9MyvDEvnOuqteFaXzn25+ + vf7tH397py2rVXr5n/9xjp9aGmYPF5M4m0ALtsXhAq40eJ2v4irUomVYlHF1MXms7nV/stOXhav4 + YrJJ4qd1XlQTLcqzKs5g7FOyqJYXi3iTRLFON2dakiVVEqZ6GYVpfGE1K1VJlcaX76Jl/javzmd8 + q/rK6rm5wdddvnjW/md7j69VWDwk2Vwz19/e7Pasw8UiyR6Guu4BUv0+XCXp81z7FD/ksfb7L60x + /0Ri1DdIp7P9QCzj5GFZzTXLNE9GlwHSxkV35l0YfX0o8sdsoSer8CGea49FejpZhFU4p4ZZuXn4 + r28AwYm8hkttExdlkmcXU8uwplqyuJjehs9x8QVuYFRWXkyXVbWez2ZPT0/GkzTy4mEmTNPEddSQ + +bc0yb4ODbSCIJhRLwy9mALhptqz+kQ+v82xVTM125W+EWiuYxnuVCM+XUzjLLxLY32L0jyLn7Tu + 8DcExbxchxHMWRdxGRebeHoi3yGGuJJWPa+hq4q/VbOoLLFLM8rKPPHe3idpOj8R0nGuzHfmmxPv + BnusuifLs7huFK3hpun4V37dI1s9Uvhvb5oeu9Xz1r25fm/VPQ705AByUj3PTUO8oVHIKhj56fNf + f7n5Yn35+c0wBXCNE/MK0JsRfoxqEUcVEpf4GKVhCawDJKcaa8/Udm24Ycm6mLq2a8jpjKeuw2q5 + nQLTQQo+ysD3DP9MCmm4t7a0TEOewdpL3XUMN9Vt1zSsM3qPdMsznDN8g2ZopSsX5p2Zt1LAkABn + fjA3tOtSutAktVvp+8GZbfmGF9EMWgUX4CteIBUCBpzR+9J1cWtcUfD7tQw8BEy6AcKqbmzY7awN + //dhTIXC1PNt2Mp2LUPc2sK2YT/CNPClEaQtTK+lB4Jnn9kewiQ918MedbNdZGQ7ydshI3h9KQDq + FD4EoEvvbVI25DgziRYpYXxG7x9wkdt6peZiZGNb4VnTG/ZsU9URMFU18TuQVTqwl21aSM/AdBEU + vmkWaTYD/Y7D4q9FuEjAXJMNqUV4qj2o5t/BXgMwj6Cdn1BVf81+L2NQXetiKj1LGp7jgeY/w60N + JLYsz4FOAZ2BZRm26QMOz3Br2YZwpLNd97cizMr7vFhdTFdhVSTfTi0yETp+uCAJMnCDnxtzkK+1 + /P4ePdDUbAwNNutRnuYFKup7er2hxq2KOjW2O2tYe9eop8x2KTTEIqdWOkeg9Am7lgW9USu9pVap + 7gh5Bv9LyzIDUND2xIYxaKPxyrya/Pxm1E8U8ToOwdlkubocH1om3+OeV+qMWecleOYcXGiBpmZ8 + IBNL+4uyvbvjyGgNbkW+lgGx7Z4nbjyn6HtpteHTMqniMd8uYRo6GProrbBIynUago9PMmSpfpfm + 0dcxB22wh9YTiGNe7KbfQJzkK199IkzlrU/kzYlArYV3aE0W3KA8NzeSa+Z2dMwn8mrQh+8MviJf + PT5p68/VNB4KhOL75517cFFmgECzp1d90ID/lgNmDD+Fw3OVK8MxPbcHcIDjUzO7s+XbBgcYR3EA + L1PHAthNWlAHBDAYQwIeVYcF21GgUNvoALeGKAB3Ya9Lvda2t9H27ZC2Y6Zb9M0tchkKZdJ+bsMN + qY0EX/HXDgyPW1msVTNRbNYs/tCAraxKd2UlEEpIPjrAk2vLFEZwCyLkw43rRroE21L/ByhY16Zu + gUdKpadLMP8pjIdGCe7Kw0/XsMFA0XR4V1c2wntt4pLgr6SHPAKfebvd8vtWMMxgi8Ps4cXoBALJ + yasDcLqkfQHKCOIO3SSowYPoQn1KQ0aAGgwBPugCWlTrrR/QSsJEXNU6CtUG5MgiFPldGC720xZ8 + DeFNqfaEaEBvGm/bUH7fYd8fQd0kRrk+8sKmDUzdJxb6OjhRwJNbqYXGcrsNGDGffOr11BX0XQc8 + 0GVeBjwUt8C77YbfG5IAQDUkjotuSxDZTICDpcNTV0CoyCRSiYaETLxtv0X3JrcBZ1x1BX2fAu7E + Tbaw4N2rERSCN/vVCeqyWCmCQvTsbwna2nCXoKrjzyUoxBJyS9DWlqMEfZ2I4j7NsTuN77s9jfu2 + +863DgkGug75ZXyB66ySKEz1ME0eIDpZJYtFGh9y3ugdus5bBQs6wg/wdAOUOq5RceSeTMGkThVM + xmMcTwxnG54UpeAs2ulO46oCyNERcrrCkE5vDSJTTe3A/T+kaJJl8I65nRAW7iUwVkmmK07bfp/T + q/Bb3W3BOXKgH9M3ijXhY5UP9xeM+MCAV0FqPg/vqz5uKqEFjO8yPErhfDDX7vJqOcaICmOiUThW + sK+u1tfDIg73C63cpezuWvUylDvr48DSbdLrj0q33efgIeluC64r9qBBJBnS3xoF38S/ceBE/3jx + wwiOrVEjKPYjKI9CUF9bI9yGQynq0VguUweBq/IVgOHv2SfOFus8ybp0HIFRayy141ndnn2kP4q2 + e0m7n7L7CNsl2V56LPMnGKXfPSYpHIkhtE/6B7zd1UaTyceo49B2l0vZ3bFFGeuAVrmv4DNE3y81 + qXP4Q+Zo3V1IVqs6YQNn3vU6LqKwHDdrZRWvx31FYxvv07gLDJlvHU76q3KulVURV1HXtLYyFXEa + VsnmaDgWae9AnxfoB1RIALiXeZostL9cmfg3ZtOHvOq2zDBkPBoaHw/q5aKaz+9iIHnPmPezMUPJ + EcbtMFqKBpjleiwHczeNA5xOewKIhLO98YROz5a0+BfeAVyPPcDrQMHao119chlVXFagbikoxfGE + u0sff0B8gCejwjwkFC3lTrJlXCS9kLqt33d5utiru/vMzQCsiz22ZhicfdvhaydM68pR1zntdYK7 + 4M7hcFfp0RJM5fFKShZpDUFTVo1uE1XhbZJ9PSwHw4ttdz+8Mb62UZZ79dbqdj4WJfaSU46LH7P0 + W/PSVRbUfPIAMZ7cilWYHqLG/D6PHssuTfLHCtm/Yy9M8y66FwfXW+abvpUnr7GIo7wIWduB2nGB + W+wXiqG86z6P0YQG/XBp99Rg9V2jsjRyX9jQAHW5SDZjFV85eu4d6DnyyN2JGks9zR/yo05gzv4T + WDDY/QcPYMM2QY3vRRSoQcoJsLnQbNNclYew7xk0zkgcqFgclarnNPMR2fqPn/TyeQW2+v9Fvt7m + vLswX5Ct38791+fqPenZnt0ZInaG3LjyvXA7Q+TOEMv1brDEtjPE3hki3nnu2+vOEGe3bnDz1rfk + D9QN3KPqBjLwB+sGVrCT1jsiH2p5FmUIsei9saUhlrpnOJ9tz/CWuolFY0tS0lBKI1jqDt17Ot9B + /4avXCP4jEssLdPwU0vwFLE0DZHCBEuX4gNvRXT6jglQy/MoV2lbhsf5ekxjYh5fJTulLlWGn5Oi + gRqD68FVxJBzetTmudSrZkc8r54tuY7RXEtKrHKVwOYUq656GMhIpflNyqoGanC9vCgBTolzdQXP + teVRhUTlcGvsxO4tIMvY+w5lcx3g+UZaSHa50aX1gTpoiDA9muu5Nd0ii+s2BC5uTuAaLpIIyaGb + XN/AorIilauLjQu9DX09XRUqABmbPrEOzZlwJDnvgBVphb2DiXKXE+UwAGspFsABjQ2hsJqC/9AE + ouDSp4W5dN6orjfZOBUAj6j6QvB4MJbog2Uam7CwGwyp1ETD7Bqqul+xzGkYLBWDxcaroUIgkXmC + oMbCF1aCqGNbGjIp144U9AgPwtNRtAp0LgL520IYIuopXPgKGBtx9t1qoHGIYAyfV9PpWphcLvIc + Bt9kEhN/8XbLbua/bEQEaMksIBis5oraDKusJVXJJvNy42GRwyQkUTQCQhqLCwhkI+MedVtEA8IJ + P2uEsSQhlRLYSrhkLUwWLRc0lQdCZmMB8o04L/ET0FwyDp7eVNd0kl3drmkjWe0dRlRIViOHa0Bt + Uija+LQdPi+EckajUDQDJS8SJU2wpOE4kk6HJQ1l14lY8KiiQ1uyZFlsA7bCLVQhMGjE0FWVUIuH + e8R9pAQV0EgvcJtanFAleIKDiqMuIyX4qFRurVSoArCXzYoNYkJyoVD1eIM25t8bj/5R2KrG4xpS + iaPSdxJHxoE0DphrKQvA5SQWVVXH5GuFtUmwesoQ4hMq2EfAqhWRlEJdkSKgvJBQOaR5At3JViFp + Iiki2igsn1Lxi/bSVW0ZOOWqNT2gBZdoXWXZaixl+6ZRGJ8Rc3zQWFIQVgRWXHUvGnhMtR/jzwLE + vFf+IBK12cdFG4V2aSyX3pQanNS+pXYPbASkKt6h57K4RWd36kWNm/N1xWegDNtJJEhDMtI+pZaC + LKvJFtslvRWk1mBGUSc3QO3GL6qitd9w2lbbiKg2904j2aaSS5YZNMO1ueENamdiNqChRTAbT1JT + QqC1RW9OxkT5bGYzT/BUQR79C/LfJv7r7FCoAchB5U824FuZEfTp1KX6CInCyFlK/yW5H1RZodcs + sJR4+bS4t+tB2Xo2SmCSasjGktb+hSuq7HeCjUsuBFDBBcnzK8/SZpryL67yLz77F+W8dNFyt4ri + 1yi8VPz2WAZqWWan0BZtlvXAO8YANkbsxWbwzzKANbHGzWAQsKoo9VAI12awhT8RRJrOKxrAHeP/ + SmbwJQZQeUdpMmTKDDa4yvZNbQalI+vHKMARWyizwkGPbG90vHDQULhL+rBJW+vgCRWJ3bnQ/UgQ + ohy4+Sow9DGWh6vaBtSPHlgNoepY3Grs69aymi3rCMr22RYRWTWTIrU6EFEWziTtEapBkrKZHHw4 + tU1kK4aPbyjJJbhKZY7Y0rA6iA2cW5ZEDN1LPVpPbEBZlkgXl8ljoUIwOmwUOb4m4uAqDUp+g0Yd + Z6voMzKb+JUDLkbeoVi9Jpqr14Sw1OGDrbm3cSNlU5kSQuFXmyoyIezUhGJN24jIqA7f0UySwXUp + YOUIn3wGBsM2MVYiygzTZ4e1aOyZs91TqrR2cgvCHjiziv6ZlTSke2RVrbPx3Vwf6XxoP/lq+3Ww + c616+5397D8Pv5EdnZfteMzDPQfSh0PZTEwhNjX68Sd5nFdKaRb500j9da4F6kleLKcNZCv/hU+b + dB+6SB9XvXz1+JNSNdROt8ZWV0+KI2o9QLgffVJl9HkUmjb4GMvOnr0HU3rpffrSzRjEi/wpA5os + 9GoZ6/HqMQ2rvAf9nsJTq7Aie4WVdgn9UPl7vKRfl628I4r6yX0RrnrVxZbYeSbK7k/JCr8SF/bq + RC35dZ29I2vA9yzYkY14lW9inQBUaI9/TW0c0/9exYsk1PIsfdbKqIjjTAuzhXa6o1oI08/d1cdy + 9W1a0+MVA5WRHRCY4OPP8+Gr/UySeXi1YW2lhVhjO0J8LNz4Gv/qQx+Og8WcYzc9YAhpyJZj7oDl + 5iH77WFrzHgBqI/lgH1v4cXKOG7j//3QG8T0KEXxhhRl+Jug+Dr22zadsawHCDs+RTWkXC/GQMh/ + Ewxebh76D+WMLjdUgmZ8x7+lhK+GWq9LfHPQzr468VWZdMAE/gHgXXwKpO8jjudb/4m/F1gaa2tp + rINmxA72emQa3bJL1t7RfVhHHsvs4i36kcyAHxl7Vra72DG6dMwTRJ11rWOUatzpdmLeYzA+VkNH + 2Nw8WnaUcdkX7OGrLTT+DwnN/vCwjcmB+BBf+PQNxC9Pc22ZLBZxdqT2HhMqIobj4SJ+nM/aP89w + DmYgWVetH2tY5NHjCs4kBvD63QYubhMQNBCw0+nNrx+v+cByC0eDeDE90+4fM34u97RnM/D48B5B + Pd055bZvNmGxHaZd7FsNhyrGXmxhBBsWVvG7NMa70ykPmHa/MsPNRhlXV1VVJHePVXw6SRaTM23C + Xb0v2eBu+f39LSjWh98+3iqsYefeOQ1H0hoKiDZ0D3GlWt8+/7I4nezIZ2/P5F47fUoyOHkZWbhJ + HvDEZeQZwtCjRhurIoI96UchyvlsBpuXBhyNqPMpL76COq+A5XDoi2bhXTlbg9MoZ/eOsaxW3adD + R4kFUpKncDB7QJpleQ/20YnUxk/k4VTz+JmkeTgHA/Tjp7Hw753XsOwm2bycXfiqVzHC9RrcxDU+ + D3nK47vD/6nFaTlolNrSY1CyCTUO1e90MqDxPUDa5uJNo+O1Wp/P1G/DwCX+BEqt9yoa4S/GT/hu + 0jID55hu2untfvmmPXpsBgyeqG/uTwa/6jS5PJ/BvMNLodM8tFTzazS7K7bvmRxxUd+2NoKYZIwA + 7BEn9W3vS0D7SLHzLZ/J5T/yxwITN1pSajBz8fzTIQJsY4b2F1FoJS0KMw0fo9aem2WhYRlrQAbt + fW0CtHcqgXN+V2izy74I3j1jJirD7zxkDxoE8+onZoCsYbrMy2ouA8+fhetktorLEi2IcTzYg7kk + YHzYkIgfS51oyyK+B44rUxZ+DeHgPQOs9Maa6e8dvVmvWauPEb4qOCLiTyB9uUtDWP3yRs0jAjUk + mYUHRbBBZXL5OSmTSnsx6GCA9WUO1qQH3NX3xyIexgN5+Sku8FeZEFrkTxE/oFcutnzHOB5MhgbQ + VfkYn8HyJfljib8OBdxOS0P7DUgB06el1oS5v//9Fn/JB7+cB8eENM+/lv2V0uRrDHRMyvkh4tXr + Ti5r4pwnlwj2F9i3/ILShT9IdT5LLncEbJ8Wd/dQEeuuwcYfSOnY8MtdU9C6bnO7m+sZswpq4PCq + 5zNlbckE8093/S9QSwECFAAUAAAAAAA0syZQAAAAAAAAAAAAAAAABQAAAAAAAAAAABAA/0EAAAAA + Qm90cy9QSwECFAAUAAAAAAA0syZQAAAAAAAAAAAAAAAADAAAAAAAAAAAABAA/0EjAAAAQ29udHJv + bGxlcnMvUEsBAhQAFAAAAAAANLMmUAAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BTQAAAFBvc3RE + ZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAADSzJlAAAAAAAAAAAAAAAAALAAAAAAAAAAAAEAD/QX0A + AABQcm9wZXJ0aWVzL1BLAQIUABQAAAAAADSzJlAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAEAD/QaYA + AAB3d3dyb290L1BLAQIUABQAAAAIADSzJlCZqxjsIAAAAB4AAAALAAAAAAAAAAAAAAC2gcwAAAAu + ZGVwbG95bWVudFBLAQIUABQAAAAIADSzJlAH3Y7aJgAAACsAAAAKAAAAAAAAAAAAAAC2gRUBAAAu + Z2l0aWdub3JlUEsBAhQAFAAAAAgANLMmULyqV/o3AgAATwUAABoAAAAAAAAAAAAAALaBYwEAAEFk + YXB0ZXJXaXRoRXJyb3JIYW5kbGVyLmNzUEsBAhQAFAAAAAgANbMmUHfqmEpmAAAAegAAABAAAAAA + AAAAAAAAALaB0gMAAGFwcHNldHRpbmdzLmpzb25QSwECFAAUAAAACAA0syZQvQ5/jqgAAAAFAQAA + CQAAAAAAAAAAAAAA/4FmBAAAYnVpbGQuY21kUEsBAhQAFAAAAAgANLMmUPl0cgpqBAAAhgsAAAoA + AAAAAAAAAAAAAP+BNQUAAGRlcGxveS5jbWRQSwECFAAUAAAACAA0syZQ4LGfRUQAAAB1AAAAFQAA + AAAAAAAAAAAAtoHHCQAARGlyZWN0b3J5LkJ1aWxkLnByb3BzUEsBAhQAFAAAAAgANLMmUMRa8yNU + AQAAHAMAAA4AAAAAAAAAAAAAALaBPgoAAEVjaG9Cb3QuY3Nwcm9qUEsBAhQAFAAAAAgANLMmUE0v + PwyXjAAAOLEDABEAAAAAAAAAAAAAALaBvgsAAEVjaG9Cb3QuZGVwcy5qc29uUEsBAhQAFAAAAAgA + NLMmUJtH0O+VAAAA4AAAABoAAAAAAAAAAAAAALaBhJgAAEVjaG9Cb3QucnVudGltZWNvbmZpZy5q + c29uUEsBAhQAFAAAAAgANLMmUOkTJ7OmAQAAVAQAAAsAAAAAAAAAAAAAALaBUZkAAEVjaG9Cb3Qu + c2xuUEsBAhQAFAAAAAgANLMmUL9wT5QOAQAAIwIAAAoAAAAAAAAAAAAAALaBIJsAAFByb2dyYW0u + Y3NQSwECFAAUAAAACAA0syZQ3QfuIaAAAAC2AAAACwAAAAAAAAAAAAAA/4FWnAAAcHVibGlzaC5j + bWRQSwECFAAUAAAACAA0syZQbj+uF1QEAAD7CgAACQAAAAAAAAAAAAAAtoEfnQAAUkVBRE1FLm1k + UEsBAhQAFAAAAAgANLMmUMjoTw6wAgAAiwcAAAoAAAAAAAAAAAAAALaBmqEAAFN0YXJ0dXAuY3NQ + SwECFAAUAAAACAA0syZQUqxX1DwBAADuAQAACgAAAAAAAAAAAAAAtoFypAAAd2ViLmNvbmZpZ1BL + AQIUABQAAAAIADSzJlDYPhbw4QEAAP8EAAAPAAAAAAAAAAAAAAC2gdalAABCb3RzL0VjaG9Cb3Qu + Y3NQSwECFAAUAAAACAA0syZQnvjBBkQCAADvBAAAHAAAAAAAAAAAAAAAtoHkpwAAQ29udHJvbGxl + cnMvQm90Q29udHJvbGxlci5jc1BLAQIUABQAAAAIADSzJlCziRBLSQEAAFYCAAAxAAAAAAAAAAAA + AAC2gWKqAABQb3N0RGVwbG95U2NyaXB0cy9jbGkzN3FucXZ3NTNwdDIuUHVibGlzaFNldHRpbmdz + UEsBAhQAFAAAAAgANLMmUODPebiRAAAA3AAAAC0AAAAAAAAAAAAAALaB+qsAAFBvc3REZXBsb3lT + Y3JpcHRzL2dpdGh1YlByb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAIADSzJlBa0xds3AAA + AA4CAAAoAAAAAAAAAAAAAAC2gdasAABQb3N0RGVwbG95U2NyaXB0cy9JbmNsdWRlU291cmNlcy50 + YXJnZXRzUEsBAhQAFAAAAAgANLMmUKjzyVaZAgAAdQcAACIAAAAAAAAAAAAAALaB+K0AAFBvc3RE + ZXBsb3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanNQSwECFAAUAAAACAA0syZQNCH6uCIDAABSCAAA + IAAAAAAAAAAAAAAA/4HRsAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWRQSwECFAAU + AAAACAA0syZQ72tPdXMAAAB7AAAAJgAAAAAAAAAAAAAAtoExtAAAUG9zdERlcGxveVNjcmlwdHMv + cHVibGlzaC5jbWQudGVtcGxhdGVQSwECFAAUAAAACAA0syZQNiuxcHUCAABEBQAALQAAAAAAAAAA + AAAAtoHotAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlUEsB + AhQAFAAAAAgANLMmUMoi4NElAQAAMgIAAC4AAAAAAAAAAAAAALaBqLcAAFBvc3REZXBsb3lTY3Jp + cHRzL3B1Ymxpc2hTZXR0aW5ncy54bWwudGVtcGxhdGVQSwECFAAUAAAACAA0syZQE9l4S9IAAAB3 + AQAAHQAAAAAAAAAAAAAA/4EZuQAAUG9zdERlcGxveVNjcmlwdHMvcnVuR3VscC5jbWRQSwECFAAU + AAAACAA0syZQoegHQ4oCAABDBgAAKwAAAAAAAAAAAAAA/4EmugAAUG9zdERlcGxveVNjcmlwdHMv + c2V0dXBHaXRodWJSZW1vdGVSZXBvLmNtZFBLAQIUABQAAAAIADSzJlDnyEkFCAMAADIHAAAoAAAA + AAAAAAAAAAD/gfm8AABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21kUEsB + AhQAFAAAAAgANLMmUAAF6ua/AAAAHAEAACoAAAAAAAAAAAAAALaBR8AAAFBvc3REZXBsb3lTY3Jp + cHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZVBLAQIUABQAAAAAADSzJlAAAAAAAAAAAAAAAAAb + AAAAAAAAAAAAEAD/QU7BAABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy9QSwECFAAUAAAACAA0 + syZQ9AOyxe8AAADGAQAAHgAAAAAAAAAAAAAAtoGHwQAAUHJvcGVydGllcy9sYXVuY2hTZXR0aW5n + cy5qc29uUEsBAhQAFAAAAAgANLMmUJwjhb5tAgAALAUAADwAAAAAAAAAAAAAALaBssIAAFByb3Bl + cnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTM3cW5xdnc1M3B0Mi1XZWItRGVwbG95LnB1YnhtbFBL + AQIUABQAAAAIADSzJlDUlzcKDxQAAMtNAAATAAAAAAAAAAAAAAC2gXnFAAB3d3dyb290L2RlZmF1 + bHQuaHRtUEsBAhQAFAAAAAgANLMmUAhKLXizEwAAzEsAABQAAAAAAAAAAAAAALaBudkAAHd3d3Jv + b3QvZGVmYXVsdC5odG1sUEsFBgAAAAAoACgA7QoAAJ7tAAAAAA== headers: Accept: - '*/*' @@ -5145,34 +4996,34 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '63649' User-Agent: - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + content-type: + - application/octet-stream + method: POST + uri: https://cli000002.scm.azurewebsites.net/api/zipdeploy?isAsync=true response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '' headers: cache-control: - no-cache content-length: - - '559' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 27 Nov 2019 23:09:17 GMT + - Mon, 06 Jan 2020 14:25:53 GMT expires: - '-1' location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest + - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2020-01-06_14-25-53Z pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5195,9 +5046,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5206,7 +5057,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:20 GMT + - Mon, 06 Jan 2020 14:25:57 GMT expires: - '-1' location: @@ -5216,7 +5067,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5239,9 +5090,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5250,7 +5101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:22 GMT + - Mon, 06 Jan 2020 14:26:00 GMT expires: - '-1' location: @@ -5260,7 +5111,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5283,9 +5134,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5294,7 +5145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:25 GMT + - Mon, 06 Jan 2020 14:26:05 GMT expires: - '-1' location: @@ -5304,7 +5155,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5327,9 +5178,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5338,7 +5189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:30 GMT + - Mon, 06 Jan 2020 14:26:08 GMT expires: - '-1' location: @@ -5348,7 +5199,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5371,9 +5222,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5382,7 +5233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:34 GMT + - Mon, 06 Jan 2020 14:26:12 GMT expires: - '-1' location: @@ -5392,7 +5243,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5415,9 +5266,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5426,7 +5277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:36 GMT + - Mon, 06 Jan 2020 14:26:15 GMT expires: - '-1' location: @@ -5436,7 +5287,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5459,9 +5310,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5470,7 +5321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:39 GMT + - Mon, 06 Jan 2020 14:26:19 GMT expires: - '-1' location: @@ -5480,7 +5331,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5503,9 +5354,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5514,7 +5365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:41 GMT + - Mon, 06 Jan 2020 14:26:22 GMT expires: - '-1' location: @@ -5524,7 +5375,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5547,9 +5398,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5558,7 +5409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:44 GMT + - Mon, 06 Jan 2020 14:26:27 GMT expires: - '-1' location: @@ -5568,7 +5419,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5591,9 +5442,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5602,7 +5453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:48 GMT + - Mon, 06 Jan 2020 14:26:31 GMT expires: - '-1' location: @@ -5612,7 +5463,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5635,9 +5486,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5646,7 +5497,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:50 GMT + - Mon, 06 Jan 2020 14:26:35 GMT expires: - '-1' location: @@ -5656,7 +5507,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5679,9 +5530,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5690,7 +5541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:52 GMT + - Mon, 06 Jan 2020 14:26:42 GMT expires: - '-1' location: @@ -5700,7 +5551,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5723,9 +5574,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":1,"status_text":"Building - and Deploying ''7e5a92ceed194e91907c2f6e537182c8''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":1,"status_text":"Building + and Deploying ''a889edeed33a46288338d96d8f9b22d7''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5734,7 +5585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:55 GMT + - Mon, 06 Jan 2020 14:26:45 GMT expires: - '-1' location: @@ -5744,7 +5595,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5767,8 +5618,8 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7e5a92ceed194e91907c2f6e537182c8","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"","received_time":"2019-11-27T23:08:46.9752955Z","start_time":"2019-11-27T23:08:47.1315587Z","end_time":"2019-11-27T23:09:58.2043988Z","last_success_end_time":"2019-11-27T23:09:58.2043988Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' + string: '{"id":"a889edeed33a46288338d96d8f9b22d7","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-01-06T14:25:54.1807578Z","start_time":"2020-01-06T14:25:54.3213901Z","end_time":"2020-01-06T14:26:47.1501885Z","last_success_end_time":"2020-01-06T14:26:47.1501885Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5777,7 +5628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:09:57 GMT + - Mon, 06 Jan 2020 14:26:49 GMT expires: - '-1' pragma: @@ -5785,7 +5636,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=47afd90dd28b01a0890189c36a5583e8c56e8e1f2d81ef4b4ff855b2bd14dcaf;Path=/;HttpOnly;Domain=cli44wcyssyiazc.scm.azurewebsites.net + - ARRAffinity=eae7f39249ae9ad778f983b06fc0bd9216890d75da28fa5b68394ab138ca17a5;Path=/;HttpOnly;Domain=cli37qnqvw53pt2.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -5811,8 +5662,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -5826,19 +5677,17 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 23:10:03 GMT + - Mon, 06 Jan 2020 14:27:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml index e2493b9548d..8545d4d1532 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_create_v4_js_echo_webapp_bot.yaml @@ -15,8 +15,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -28,7 +28,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 Nov 2019 23:11:07 GMT + - Mon, 06 Jan 2020 14:20:37 GMT expires: - '-1' pragma: @@ -38,7 +38,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 204 message: No Content @@ -56,8 +56,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,7 +113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:11:08 GMT + - Mon, 06 Jan 2020 14:20:38 GMT expires: - '-1' pragma: @@ -145,40 +145,607 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:11:08 GMT + - Mon, 06 Jan 2020 14:20:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-tenant-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://dev.botframework.com/api/misc/bottemplateroot + response: + body: + string: '"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/"' + headers: + cache-control: + - no-cache + content-length: + - '89' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:20:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000 + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: 'b''{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", "parameters": {"botEnv": {"type": "string", "defaultValue": + "prod"}, "botId": {"type": "string"}, "description": {"type": "string", "defaultValue": + ""}, "location": {"type": "string"}, "sku": {"type": "string"}, "kind": {"type": + "string"}, "siteName": {"type": "string"}, "appId": {"type": "string", "defaultValue": + "1234"}, "appSecret": {"type": "string", "defaultValue": "blank"}, "zipUrl": + {"type": "string", "defaultValue": ""}, "serverFarmId": {"type": "string"}, + "createServerFarm": {"type": "bool"}, "serverFarmLocation": {"type": "string", + "defaultValue": ""}, "serverFarmSku": {"type": "object", "defaultValue": {"name": + "S1", "tier": "Standard", "size": "S1", "family": "S", "capacity": 1}}, "endpoint": + {"type": "string", "defaultValue": ""}, "botFileEncryptionKey": {"type": "string", + "defaultValue": ""}}, "variables": {"serverFarmName": "[last(split(parameters(\''serverFarmId\''), + \''/\''))]", "botAppKinds": {"sdk": "app", "bot": ""}, "botAppKind": "[variables(\''botAppKinds\'')[parameters(\''kind\'')]]", + "siteHost": "[concat(parameters(\''siteName\''), \''.azurewebsites.net\'')]", + "botEndpointConfig": {"bot": "[parameters(\''endpoint\'')]", "sdk": "[concat(\''https://\'', + variables(\''siteHost\''), \''/api/messages\'')]"}, "botEndpoint": "[variables(\''botEndpointConfig\'')[parameters(\''kind\'')]]"}, + "resources": [{"type": "Microsoft.Web/serverfarms", "condition": "[parameters(\''createServerFarm\'')]", + "name": "[variables(\''serverFarmName\'')]", "apiVersion": "2016-09-01", "location": + "[parameters(\''serverFarmLocation\'')]", "sku": "[parameters(\''serverFarmSku\'')]", + "properties": {"name": "[variables(\''serverFarmName\'')]"}}, {"name": "[parameters(\''siteName\'')]", + "type": "Microsoft.Web/sites", "apiVersion": "2015-08-01", "location": "[parameters(\''location\'')]", + "kind": "[variables(\''botAppKind\'')]", "dependsOn": ["[parameters(\''serverFarmId\'')]"], + "properties": {"name": "[parameters(\''siteName\'')]", "serverFarmId": "[parameters(\''serverFarmId\'')]", + "siteConfig": {"appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": + "10.14.1"}, {"name": "MicrosoftAppId", "value": "[parameters(\''appId\'')]"}, + {"name": "MicrosoftAppPassword", "value": "[parameters(\''appSecret\'')]"}], + "cors": {"allowedOrigins": ["https://botservice.hosting.portal.azure.net", "https://hosting.onecloud.azure-test.net/"]}}}, + "resources": [{"name": "MSDeploy", "type": "Extensions", "apiVersion": "2015-02-01", + "condition": "[not(equals(parameters(\''zipUrl\''), \''\''))]", "dependsOn": + ["[concat(\''Microsoft.Web/Sites/\'', parameters(\''siteName\''))]"], "properties": + {"packageUri": "[parameters(\''zipUrl\'')]", "dbType": "None", "connectionString": + "", "setParameters": {"IIS Web Application Name": "[parameters(\''siteName\'')]"}}}]}, + {"apiVersion": "2017-12-01", "type": "Microsoft.BotService/botServices", "name": + "[parameters(\''botId\'')]", "location": "global", "kind": "[parameters(\''kind\'')]", + "sku": {"name": "[parameters(\''sku\'')]"}, "properties": {"name": "[parameters(\''botId\'')]", + "displayName": "[parameters(\''botId\'')]", "endpoint": "[variables(\''botEndpoint\'')]", + "msaAppId": "[parameters(\''appId\'')]", "publishingCredentials": "[list(concat(resourceId(\''Microsoft.Web/Sites\'', + parameters(\''siteName\'')), \''/config/publishingcredentials\''), \''2018-02-01\'')]", + "allSettings": {"WEBSITE_NODE_DEFAULT_VERSION": "10.14.1", "SCM_DO_BUILD_DURING_DEPLOYMENT": + "true", "BotId": "[parameters(\''botId\'')]", "MicrosoftAppId": "[parameters(\''appId\'')]", + "MicrosoftAppPassword": "[parameters(\''appSecret\'')]", "botFilePath": "[concat(\''./\'', + parameters(\''botId\''), \''.bot\'')]", "botFileSecret": "[parameters(\''botFileEncryptionKey\'')]", + "description": "[parameters(\''description\'')]"}}, "dependsOn": ["[parameters(\''serverFarmId\'')]", + "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, + "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, + "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": + "8f538b9d-3a92-4f31-94dc-582818631645"}, "appSecret": {"value": "2a18c8af-a4ee-4bf3-a46f-14122a75b235"}, + "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, + "zipUrl": {"value": "https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"}, + "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": + {"value": "centralus"}, "botId": {"value": "cli000002"}}, "mode": "Incremental"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - bot create + Connection: + - keep-alive + Content-Length: + - '4606' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"8f538b9d-3a92-4f31-94dc-582818631645"},"appSecret":{"type":"String","value":"2a18c8af-a4ee-4bf3-a46f-14122a75b235"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:20:44.3618633Z","duration":"PT3.5402671S","correlationId":"6bd9f642-c1e8-4ae9-a1ec-12f184ab4c4f","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232864446560476?api-version=2019-07-01 + cache-control: + - no-cache + content-length: + - '4127' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:20:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:23:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:23:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:24:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:24:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-tenant-writes: - - '1199' status: code: 200 message: OK @@ -186,35 +753,38 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - bot create Connection: - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo User-Agent: - - python-requests/2.22.0 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://dev.botframework.com/api/misc/bottemplateroot + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: - string: '"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/"' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '83' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:11:08 GMT + - Mon, 06 Jan 2020 14:26:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains vary: - Accept-Encoding x-content-type-options: @@ -223,57 +793,7 @@ interactions: code: 200 message: OK - request: - body: 'b''{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", "parameters": {"botEnv": {"type": "string", "defaultValue": - "prod"}, "botId": {"type": "string"}, "description": {"type": "string", "defaultValue": - ""}, "location": {"type": "string"}, "sku": {"type": "string"}, "kind": {"type": - "string"}, "siteName": {"type": "string"}, "appId": {"type": "string", "defaultValue": - "1234"}, "appSecret": {"type": "string", "defaultValue": "blank"}, "zipUrl": - {"type": "string", "defaultValue": ""}, "serverFarmId": {"type": "string"}, - "createServerFarm": {"type": "bool"}, "serverFarmLocation": {"type": "string", - "defaultValue": ""}, "serverFarmSku": {"type": "object", "defaultValue": {"name": - "S1", "tier": "Standard", "size": "S1", "family": "S", "capacity": 1}}, "endpoint": - {"type": "string", "defaultValue": ""}, "botFileEncryptionKey": {"type": "string", - "defaultValue": ""}}, "variables": {"serverFarmName": "[last(split(parameters(\''serverFarmId\''), - \''/\''))]", "botAppKinds": {"sdk": "app", "bot": ""}, "botAppKind": "[variables(\''botAppKinds\'')[parameters(\''kind\'')]]", - "siteHost": "[concat(parameters(\''siteName\''), \''.azurewebsites.net\'')]", - "botEndpointConfig": {"bot": "[parameters(\''endpoint\'')]", "sdk": "[concat(\''https://\'', - variables(\''siteHost\''), \''/api/messages\'')]"}, "botEndpoint": "[variables(\''botEndpointConfig\'')[parameters(\''kind\'')]]"}, - "resources": [{"type": "Microsoft.Web/serverfarms", "condition": "[parameters(\''createServerFarm\'')]", - "name": "[variables(\''serverFarmName\'')]", "apiVersion": "2016-09-01", "location": - "[parameters(\''serverFarmLocation\'')]", "sku": "[parameters(\''serverFarmSku\'')]", - "properties": {"name": "[variables(\''serverFarmName\'')]"}}, {"name": "[parameters(\''siteName\'')]", - "type": "Microsoft.Web/sites", "apiVersion": "2015-08-01", "location": "[parameters(\''location\'')]", - "kind": "[variables(\''botAppKind\'')]", "dependsOn": ["[parameters(\''serverFarmId\'')]"], - "properties": {"name": "[parameters(\''siteName\'')]", "serverFarmId": "[parameters(\''serverFarmId\'')]", - "siteConfig": {"appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": - "10.14.1"}, {"name": "MicrosoftAppId", "value": "[parameters(\''appId\'')]"}, - {"name": "MicrosoftAppPassword", "value": "[parameters(\''appSecret\'')]"}], - "cors": {"allowedOrigins": ["https://botservice.hosting.portal.azure.net", "https://hosting.onecloud.azure-test.net/"]}}}, - "resources": [{"name": "MSDeploy", "type": "Extensions", "apiVersion": "2015-02-01", - "condition": "[not(equals(parameters(\''zipUrl\''), \''\''))]", "dependsOn": - ["[concat(\''Microsoft.Web/Sites/\'', parameters(\''siteName\''))]"], "properties": - {"packageUri": "[parameters(\''zipUrl\'')]", "dbType": "None", "connectionString": - "", "setParameters": {"IIS Web Application Name": "[parameters(\''siteName\'')]"}}}]}, - {"apiVersion": "2017-12-01", "type": "Microsoft.BotService/botServices", "name": - "[parameters(\''botId\'')]", "location": "global", "kind": "[parameters(\''kind\'')]", - "sku": {"name": "[parameters(\''sku\'')]"}, "properties": {"name": "[parameters(\''botId\'')]", - "displayName": "[parameters(\''botId\'')]", "endpoint": "[variables(\''botEndpoint\'')]", - "msaAppId": "[parameters(\''appId\'')]", "publishingCredentials": "[list(concat(resourceId(\''Microsoft.Web/Sites\'', - parameters(\''siteName\'')), \''/config/publishingcredentials\''), \''2018-02-01\'')]", - "allSettings": {"WEBSITE_NODE_DEFAULT_VERSION": "10.14.1", "SCM_DO_BUILD_DURING_DEPLOYMENT": - "true", "BotId": "[parameters(\''botId\'')]", "MicrosoftAppId": "[parameters(\''appId\'')]", - "MicrosoftAppPassword": "[parameters(\''appSecret\'')]", "botFilePath": "[concat(\''./\'', - parameters(\''botId\''), \''.bot\'')]", "botFileSecret": "[parameters(\''botFileEncryptionKey\'')]", - "description": "[parameters(\''description\'')]"}}, "dependsOn": ["[parameters(\''serverFarmId\'')]", - "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, - "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, - "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "163e6acc-10f7-4cbf-b750-740b2c30a372"}, "appSecret": {"value": "c68fad01-902a-4276-a8e6-035fa60fe803"}, - "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, - "zipUrl": {"value": "https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"}, - "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": - {"value": "centralus"}, "botId": {"value": "cli000002"}}, "mode": "Incremental"}}''' + body: null headers: Accept: - application/json @@ -283,46 +803,167 @@ interactions: - bot create Connection: - keep-alive - Content-Length: - - '4600' - Content-Type: + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:26:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"163e6acc-10f7-4cbf-b750-740b2c30a372"},"appSecret":{"type":"String","value":"c68fad01-902a-4276-a8e6-035fa60fe803"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-27T23:11:10.2616768Z","duration":"PT0.7687276S","correlationId":"bfffe047-7136-4ada-93c5-2a223dd0dc93","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267106159846891?api-version=2019-07-01 cache-control: - no-cache content-length: - - '4121' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:11:09 GMT + - Mon, 06 Jan 2020 14:27:21 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:27:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:28:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -337,10 +978,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -352,7 +993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:11:39 GMT + - Mon, 06 Jan 2020 14:28:53 GMT expires: - '-1' pragma: @@ -380,10 +1021,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -395,7 +1036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:12:10 GMT + - Mon, 06 Jan 2020 14:29:24 GMT expires: - '-1' pragma: @@ -423,10 +1064,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -438,7 +1079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:12:40 GMT + - Mon, 06 Jan 2020 14:29:54 GMT expires: - '-1' pragma: @@ -466,10 +1107,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -481,7 +1122,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:13:10 GMT + - Mon, 06 Jan 2020 14:30:25 GMT expires: - '-1' pragma: @@ -509,10 +1150,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -524,7 +1165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:13:40 GMT + - Mon, 06 Jan 2020 14:30:55 GMT expires: - '-1' pragma: @@ -552,10 +1193,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -567,7 +1208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:14:10 GMT + - Mon, 06 Jan 2020 14:31:26 GMT expires: - '-1' pragma: @@ -595,10 +1236,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -610,7 +1251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:14:41 GMT + - Mon, 06 Jan 2020 14:31:56 GMT expires: - '-1' pragma: @@ -638,10 +1279,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -653,7 +1294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:15:10 GMT + - Mon, 06 Jan 2020 14:32:26 GMT expires: - '-1' pragma: @@ -681,10 +1322,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -696,7 +1337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:15:40 GMT + - Mon, 06 Jan 2020 14:32:57 GMT expires: - '-1' pragma: @@ -724,10 +1365,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -739,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:16:11 GMT + - Mon, 06 Jan 2020 14:33:28 GMT expires: - '-1' pragma: @@ -767,10 +1408,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -782,7 +1423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:16:40 GMT + - Mon, 06 Jan 2020 14:33:59 GMT expires: - '-1' pragma: @@ -810,10 +1451,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267106159846891?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864446560476?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -825,7 +1466,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:11 GMT + - Mon, 06 Jan 2020 14:34:29 GMT expires: - '-1' pragma: @@ -853,22 +1494,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"163e6acc-10f7-4cbf-b750-740b2c30a372"},"appSecret":{"type":"String","value":"c68fad01-902a-4276-a8e6-035fa60fe803"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-27T23:17:04.0037839Z","duration":"PT5M54.5108347S","correlationId":"bfffe047-7136-4ada-93c5-2a223dd0dc93","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"8f538b9d-3a92-4f31-94dc-582818631645"},"appSecret":{"type":"String","value":"2a18c8af-a4ee-4bf3-a46f-14122a75b235"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:33:59.7614131Z","duration":"PT13M18.9398169S","correlationId":"6bd9f642-c1e8-4ae9-a1ec-12f184ab4c4f","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' headers: cache-control: - no-cache content-length: - - '4756' + - '4763' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:11 GMT + - Mon, 06 Jan 2020 14:34:29 GMT expires: - '-1' pragma: @@ -896,15 +1537,15 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"53001a80-0000-0100-0000-5ddf03ef0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"163e6acc-10f7-4cbf-b750-740b2c30a372","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c005ab9-0000-0100-0000-5e13454f0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"8f538b9d-3a92-4f31-94dc-582818631645","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -913,15 +1554,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:11 GMT + - Mon, 06 Jan 2020 14:34:30 GMT etag: - - '"53001a80-0000-0100-0000-5ddf03ef0000"' + - '"0c005ab9-0000-0100-0000-5e13454f0000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -947,15 +1586,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"53001a80-0000-0100-0000-5ddf03ef0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"163e6acc-10f7-4cbf-b750-740b2c30a372","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c005ab9-0000-0100-0000-5e13454f0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"8f538b9d-3a92-4f31-94dc-582818631645","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -964,15 +1603,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:12 GMT + - Mon, 06 Jan 2020 14:34:31 GMT etag: - - '"53001a80-0000-0100-0000-5ddf03ef0000"' + - '"0c005ab9-0000-0100-0000-5e13454f0000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1000,16 +1637,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"HFTnCkw4lGbJijadwfkK4cDTw7iedj1BiFSwNYMuP0nL3ktXe0vGDuecbrJj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:HFTnCkw4lGbJijadwfkK4cDTw7iedj1BiFSwNYMuP0nL3ktXe0vGDuecbrJj@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"vdYJTmnMlYQlmTgLBBMWP3on6elpbikEDzpeYhHiKKbfsifS2qAP2b975oRe","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:vdYJTmnMlYQlmTgLBBMWP3on6elpbikEDzpeYhHiKKbfsifS2qAP2b975oRe@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1018,7 +1655,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:17:13 GMT + - Mon, 06 Jan 2020 14:34:33 GMT expires: - '-1' pragma: @@ -1036,7 +1673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -1056,27 +1693,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-131.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:12:33.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A407D2D2169295138CA4CD71EB7523BF68A55D86FB46FBCAC5EDEF8732112F4A","kind":"app","inboundIpAddress":"23.101.119.44","possibleInboundIpAddresses":"23.101.119.44","outboundIpAddresses":"23.101.119.44,23.99.215.110,23.99.213.182,168.61.218.60,23.99.208.251","possibleOutboundIpAddresses":"23.101.119.44,23.99.215.110,23.99.213.182,168.61.218.60,23.99.208.251,23.99.211.22,23.99.209.158,23.99.214.44","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-131","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:26:01.537","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FC66567DEB341BF0EB1AB36918BA40791E8021C3E1DDA265B521FAFE46CD3DA6","kind":"app","inboundIpAddress":"168.61.152.29","possibleInboundIpAddresses":"168.61.152.29","outboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","possibleOutboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3222' + - '3156' content-type: - application/json date: - - Wed, 27 Nov 2019 23:17:12 GMT + - Mon, 06 Jan 2020 14:34:34 GMT etag: - - '"1D5A578266A72EB"' + - '"1D5C49D38931310"' expires: - '-1' pragma: @@ -1124,7 +1761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:17 GMT + - Mon, 06 Jan 2020 14:34:39 GMT expires: - '-1' pragma: @@ -1132,7 +1769,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -1141,7 +1778,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"command": "PostDeployScripts\\prepareSrc.cmd HFTnCkw4lGbJijadwfkK4cDTw7iedj1BiFSwNYMuP0nL3ktXe0vGDuecbrJj", + body: '{"command": "PostDeployScripts\\prepareSrc.cmd vdYJTmnMlYQlmTgLBBMWP3on6elpbikEDzpeYhHiKKbfsifS2qAP2b975oRe", "dir": "site\\wwwroot"}' headers: Accept: @@ -1161,7 +1798,7 @@ interactions: response: body: string: '{"Output":"file:///D/home/site/srcRepo\r\nInitialized empty Git repository - in D:/home/site/wwwroot/.git/\r\n[master (root-commit) decc800] prepare to + in D:/home/site/wwwroot/.git/\r\n[master (root-commit) 0cd4aa9] prepare to download source\r\n 19 files changed, 5738 insertions(+)\r\n create mode 100644 .deployment\r\n create mode 100644 .eslintrc.js\r\n create mode 100644 .gitignore\r\n create mode 100644 PostDeployScripts/githubProject.json.template\r\n create @@ -1189,7 +1826,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:38 GMT + - Mon, 06 Jan 2020 14:35:04 GMT expires: - '-1' pragma: @@ -1197,7 +1834,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -1225,13 +1862,13 @@ interactions: response: body: string: !!binary | - UEsDBAoAAAAAADC6e0+ZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu - ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgAMLp7T1stvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 + UEsDBAoAAAAAAFx0JlCZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu + ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgAXHQmUFstvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 kEEOgjAQRfcm3qHpmhpjXGlceA7jYqSjaUKnZNoKhHB3qUAAF3bX//5MXmudjgXusC4dBy8uot1u RH8k1gFJe3kS0gcgDaxlNjLuRxJp023IvrlHa/r4dsiEhKKCxst7tuCGNFIYG8cVIqcYQ2RSUIFJ nf0S+xJyVA98Okb1jJQH40iVwEjDusl7XggWdbInfCOP6jMGctRYF/2fim8ovzK7qu9M75k73co/ - oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAAAwuntPGI8ybh8AAAAfAAAACgAAAC5naXRp - Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIADC6e082YHQO3AEA + oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAABcdCZQGI8ybh8AAAAfAAAACgAAAC5naXRp + Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIAFx0JlA2YHQO3AEA AHYEAAAGAAAAYm90LmpzxVTBbtswDL0HyD+wwAA76CLvPM8D0mFAByyn7TIMA6rITCxMljyJbmsE /vcxit3ESw69jQfDJh8fH0nJWQafXNN5vasIUrWAtVbeBbcl9vvGeUnaWQErYyCCAngM6B+xFPMZ Z3/VCm3AElpbogeqENZfvo9uxsxnytlAsIeVIv2oqbuXtjSM7aFgsj+t9pgmG0ebVhvmSBZ5zDIy @@ -1240,7 +1877,7 @@ interactions: j8JPJp+kJhhgIvAAxvbThx+uhSB1Ccmb/QtkFCAOX9AnD4fGB85T+3cdKGmMtrtYmQfWMRmvq/XI UmVsL4aARz9OWvPmWyuuKIzQyYz7w8eV9usN+rAqSyxfPYPj4anPUqG47Pc8nk8Jts5DapDnaIlT 3+Xx5cOEUhi0O6pyuL3l4PEA/WN6C+l5yk8G/hI8/5viih6PSjcaLTFiQvfK9Sb3aIyLR+sJjXI1 - 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgAMLp7T3ohM0mMBAAA + 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgAXHQmUHohM0mMBAAA 7gwAAAoAAABkZXBsb3kuY21kzVZbj9JAFH4n4T8cmjRRI3XXS0xWMRIYFOUm7a6akDTddoBxy0xt p4v44G/3zLSlZYsbfNJ96Jaey3znzHcub9kSDNPujV1n3u0Rd0SuyMg0YEI+gfHcgLfUXwsQy2Wz 0WxcXED76J8WfbzsX0KfRqHYbSiXYPsxi6QWXdE4YYJfwLl1Zp2/vNeTFs5iGtPvKUuYpIn+cker @@ -1261,9 +1898,9 @@ interactions: 4HiWjt5BK6d2az+b2u0oFkGqm/tpseOpIlIz43+hfQaOB3l283DBF5sN0htikUqGI0SuPQlbhjFn S3OKv9aUF2FV0lQucPoNVMbcjvkov1dT/zabDb2cl8kqKuDMyE4YeEwtm/QHkz3kQKeq+riA19l7 U3rw5PpgBdYh5QAxwhyT9t7NkcPaS0D4amPFw4I0VuW8pdegJmO1ngtWqnNwZyXKeERvaVgVDHD7 - LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAADC6e089 + LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAAFx0JlA9 suZSSAAAAEgAAAALAAAAaWlzbm9kZS55bWxub2RlUHJvY2Vzc0NvbW1hbmRMaW5lOiAiRDpcUHJv - Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgAMLp7T6IT + Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgAXHQmUKIT 5UHvAwAASgkAAAgAAABpbmRleC5qc41VTY/TMBC9I/EfRggpWSnrHjgARSAVVKAS0BUbcQG06ybT xmxiB9vZUJb+d8aOk6bQIqI9bO03b2befHgygVeq3mqxKSzE2Rm8F5lWRq0tnetaaW6FkgxmZQke ZECjQX2LObt/j6zfiQylwRwamaMGWyC8X6T9MWHu38uUNBZyZVHewnOy/94IjXHUnURnz3pIzW0x @@ -1282,7 +1919,7 @@ interactions: nqLu8JgCFfUg3yDVws95Y/BkTkM6UUpIioPKnamGAEQkQ+D0t2o2jLbCf9AofyFk4/3rRvq+6FZP TdvAIKzFDxdY92bSXsqQbHLsHOwOt44DHn2vqi1Vr9sX/csVD/P1zi9hP1yC8qmoPf2bhYbabngM amVsHE14LSZBMhPRtidg4h6S8Yj1kxkmvM93wCZ/TOnYNhTnI02k0+SPbNxtL2rIipFqPVGv+W5Y - yb8BUEsDBBQAAAAIADC6e08IIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 + yb8BUEsDBBQAAAAIAFx0JlAIIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 PVX5h1QeY7jMoKlKVUDBERVw5CFVzCKjDCKmkm9P47Ddk0F0Z6zce86xG9tedK/u1avX+Jdf/+o3 4L/fBqpv/vYPv/mtqW9CLUx/+/vL870ZJ04YlF+hvyC/IG9feKHuWo5nLt4aoNevYnOXObGZgGdp nJnXx4YZmYFhBrpz+uoC+fTVn9RjFpuwn0DgZym0/fT91zfBfqEub3JrAH4aenvTKFts0jRK/gDD @@ -2066,7 +2703,7 @@ interactions: WaNcRd42T7XIp4U9IwN85NG6XEGstQRw5sWM329hl5Q5eWuTcjTcrj23BATJOWxlNq+spB/q5T4c Gpstz/egkVdk25ohm/EAgcKRpBWz/AwvqBq9eprHBnbMRJJe3ebFQQ0CN7+bqvYJ54x3ChD4cdfR SUPFtpOVKi1ZfBgu5O0+IieIWUf6aoO5GIOhYoVyMSkAObIbk+FmOM/5wSQZC7NsxC79nBH7DsoT - 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgAMLp7T7YeHpF/AQAAiQMAAAwAAABwYWNr + 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgAXHQmULYeHpF/AQAAiQMAAAwAAABwYWNr YWdlLmpzb259UrFOwzAQ3ZH4BysDE3UJilDpWMHAwMZYIaXOtTmU+CzbKa0QfDtnp0lIaRtliO69 e+/eXb6urwQ/ic5rSOYiAVXSinxye6hvwTokHaBU3sm7HijAKYvGH8AFebFosCrAim0mgoxYcc3l tamg78obX5INDa+oLDlaD1YVKtAOIvjy1pfrHKMD6gJ28sP1QOvvGDuEaKs+tz7wNRUg5HRo+0P6 @@ -2074,13 +2711,13 @@ interactions: nuz+KIXfm7iIDfqRZ2OrUC69N24+nTJcNiupqO6Uh/MY4ERaIRxviM+yai8VpH4y+SDTkUlBHvQ2 gO8zeT/cvB2Zw+F6H1tnMmP0n/P26Zx5t8mo/cDGg/YAThTpNW4mfEld5LaI5DST6Wm2qZoN6gnW hmwrfC9TnvsCN1y9VeU/+qKqsVSja8mZZOHz3PG8vJgRuf/V4uJSmT7KrNvc9RW/v1BLAwQUAAAA - AAAwuntPAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAAAxuntPAAAA - AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaW1pNXZlc3N1YnBrMy5QdWJsaXNoU2V0 - dGluZ3NQSwMEFAAAAAgAMLp7T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo + AABgdCZQAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAABgdCZQAAAA + AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaWZ0bjRvbGxlbWJzay5QdWJsaXNoU2V0 + dGluZ3NQSwMEFAAAAAgAXHQmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo dWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJaTjgV2vSumEj4 7yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIKVOhHMghb22Bs O9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfdKMJkNb8AUEsD - BBQAAAAIADC6e0+o88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n + BBQAAAAIAFx0JlCo88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n cy5qc51VXW/TMBR9n7T/YO2ljgjeuie0EiQQBW0PbaVU4qGNUJc4wyVzSux0rar8d67tOHESFQZ+ mBbfc88998O3cc6FRKlAASror5IVFI9SMfImlxfGtNvIH65RfTvmzW4XUikZf1oYoLKTgoo82wOa XANAGIAgW5Fzx5fy/RknAiYNtNCawsjcJGH9+YVlFHcl+Ja2E0fFKPKYCqGoweLYZptnqojnj1sa @@ -2092,7 +2729,7 @@ interactions: 01t7Uwq4r9zmvP4Rqrxs1tAsemBCCtWqnofXIJ3wD+F8RiAfQbHb6KF323KVQp3rucBW2jCiO3QW 1idsXlM1KAoTszyhD+GiyNUmwSZA69KV0d95jAkO7uT4nEEaA/J/eVS2bZ3qD9QNp1ctjP4mtFy2 DoMHpZz+uH+MX6/QK1gcFoPeIJhU+Gtj6UUUuZMLSytyFKhSvhRM0mYebO5alR3/NfzawFxTHucJ - 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACAAwuntPNCH6uBsD + 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACABcdCZQNCH6uBsD AABSCAAAIAAAAFBvc3REZXBsb3lTY3JpcHRzL3ByZXBhcmVTcmMuY21kpVVda9swFH03+D9cDKZb me11L4OAR1uaroG2MXW6vgSCY8uJW8sSkkLaffS378qO4rj5WGEkJNLV1dE5R9LVKUnnDFie25Yk qmRpUtpW3B8BT6RcMpGF7kkTIM+cCRUTpYpqJkP3SxMWhLPbhJJQivQO2230XpRhXpSkFwSBezW8 @@ -2107,7 +2744,7 @@ interactions: B9d6wrss2II5i+OH4d2Fnm/KZePoBuN/qTIF9b/38Z3UtonsgPOjLjnbara/LcHd16CuxAXu/9u4 A2EIjgMzhoXiZ8EPX54V+FEDAgnnIFdIR6u72juLogm+DqPB7ffYkNKfHqKv72xdRedErwj6ktjW +gHCVb9iGH8SSPbw8DFhz9D4uK1QJKkWvC5BUi3yfLv+Hawv2068ST9QqNqncmNfqqx+vnW7trvX - H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIADC6e09qiU91 + H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIAFx0JlBqiU91 GwIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaC5qcy50ZW1wbGF0ZXVUXW/aMBR9 r8R/8NDUJBJ10LansE5iHZP6sK4qlSrtpTLJZVgY2/NHUYv477ONHULYeCG559xzzz3YvBCF3qj8 LlgDCl0jBX8sVZBnrni1DNWsmAwuPE8Ss+pS/HsLLnUXWuoEhBpo00VjKVAiSQiTPIQ5WIEW7MWR @@ -2118,10 +2755,10 @@ interactions: +/3Xvij8Fxbcnw8tBdeQjVDKJve1IgrTJQrvWBtirL4RDaAv1+jDeIwuL1Ef+Yw+jsdFMhXCtJxR vm4jnCQoxZ5zy1gq7xEwDf8b+ilo9wUOdifd/Y7rgVJCdXdzhahxVAjF0Ohl9ifnRNoFo3rVOyXH e3xyJeKSZ+OOUb7rFtA/TuFpEgdm32tv2Wg5OT2ffT65dj+5YICZ+J1nvWuUVg4XORnpN4Zc3X8P - oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIADC6e084K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv + oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIAFx0JlA4K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv eVNjcmlwdHMvcnVuR3VscC5jbWR9TjkOgCAQ7En4w35A/AGx8Bk2BBY1AZbANv5eMSY06kw3V2ZC uxGQ91JU5EDWBCkab72gpeLAYQ50REwMvEesbGKWwhlGGBm0BqWWnlGBVimu4Kf7rA+v+GvM/Yij - hO3nCVBLAwQUAAAACAAwuntPoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw + hO3nCVBLAwQUAAAACABcdCZQoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw R2l0aHViUmVtb3RlUmVwby5jbWS1VcFu2zAMvQfIPxAGhKwH29h2C5Ah6RZgPbQNmqwb0BSDKtON W9nUJBlB0fXfJ1lx7KDNbs1Bliny8fGJjKcoNgSU58OBQStJcDkcaCwhfrdfwHfZanVt6ApLsniF iuBGN/sfBvUt3CjUhiouZ0KgMSt6xMpbNT1c8BKfSdnCH7/cBjyhkVsEXmWgSNXSv1wvL+G+sKA9 @@ -2133,7 +2770,7 @@ interactions: cxmIxt8h+kqVxcrGK8dnDFwpWQjuxyv13hHENRxTB+IMoumbmXaxv2Bx6fp5j6AlS/1opU1P78au /B9ZN8/ZcBCeu2H3U7Pv9CDma3mDb1EV1k9WKNrvnOngVVCVF/fNvCfNJEX9aqMjnoobsyXtyu/k OOqMJS8kRLUt5PSObK5dGhf86LuqH8MzV8IBRlm6R1xCpJxeXKMrPPx3gqFaC/RprCbZR/FSANs1 - OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIADC6e0/nyEkF + OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIAFx0JlDnyEkF /wIAADIHAAAoAAAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNtZLVVWY/T MBB+r9T/MKpkLUgk5ZRQpcJyVIIHoNqWQ2LRyjiTrsHJWLazFeL47YztdNOl7AMPVFViz3g+z3xz 5BjVOQHV9XjkMRhS0oxHDhso/tsv4/NtnX3n6QQbCniCluDjxW77Ka3fenSvZdPvlug8tdI8UQq9 @@ -2148,16 +2785,16 @@ interactions: bRojdx5wXIrayu+mSuQuuZF4JA4fA95ijfbAfwlbbSrYdNySOaKMxkhMM9lqPMrvfpbFDr7sx0z9 YTLyWd3qEIdcho0rFl3ZsqO13qTxU6Z+n+wX1eSak1Z6vyXHbA5Vd+1hbKQ2MOmCNsc8D2vH17Dx 1zgL921kxSFcwWgafhUNTCw3lHTIgedPBXjqnMJ4TXBk9lEiFSD6BhTQSB/QDTz2HBqULcNEAx7M - dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIADC6e08ABermvwAAABwBAAAqAAAAUG9zdERl + dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIAFx0JlAABermvwAAABwBAAAqAAAAUG9zdERl cGxveVNjcmlwdHMvdnNvUHJvamVjdC5qc29uLnRlbXBsYXRlbY7NCoMwEITvhb5DyLlCf2Kb9qYi xUN7UehRYlwhoCYkUWjFd6+/h0Ivu7Az88122w1CuGYV4BvC3Sv00zhKwvTpPcIe7yY1B8O1UFbI +o8JeZ9GA/KlRTHoVnBAgcxhyXKmWCZKYQWYITzVDecWtBlwXNZWy3IVJsnIRnMIZiV5q+mxu7B4 dvS7BaG05GBMApUqmYUfhl2OYzzKR8A5uxzJdU8dKA7EIS4vHEoK6lzONHNPlOSMuGvDsMbRfwFQ - SwMEFAAAAAAAMLp7TwAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAAAwuntPAAAA - AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAAAwuntPAAAA - AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaW1pNXZlc3N1YnBrMy1X - ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAAAxuntPAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k - UEsDBBQAAAAIADC6e0/iRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d + SwMEFAAAAAAAXXQmUAAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAABddCZQAAAA + AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAABddCZQAAAA + AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWZ0bjRvbGxlbWJzay1X + ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAABddCZQAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k + UEsDBBQAAAAIAFx0JlDiRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d sQuwDbsCBboLdnkYigFVZCZWI0ueKCfIvn6kFNtp17VF+9AkFHl4SPHQPoT3uvbwxkeI2LRWRdzf 29/7XhuCGRtrxZ+IDnRAPqugI+MWcCIBH4JqcO3D8tedOsaWnk+nFa5KDpv3J6X2zeQumAhU+zUB /4Pot2CggAznxJQp1iqC0hrbSGBc20WYB9+wHTkpBlCuAmSySII3U3pZCtXDQ/gSMODvzpCJSPt7 @@ -2175,7 +2812,7 @@ interactions: qLyXc6XmyMUN++TIxeCrXOYt8vcZPI+4JC/MDt4t6AztuwWfa9Pdelp2yL49PrqSFj8AUvh5Omwt 5CWBBqzx4TTCtel3mULG+XjNvVyZuJFng0YSRV/JAF3R0TXjor2TN4ZCbbGLEfvaLh4rt+hY0fDD MRTvPidS2K6a4x9H327MTvuFM0wA+yQ0tfw6Ms153tZKtizJtpYZ6febD/203DjRhTb05V+vl6/y - hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgAMLp7T0bNGjh0BAAA + hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgAXHQmUEbNGjh0BAAA +QkAAAoAAAB3ZWIuY29uZmlntVbbbhMxEH2v1H8Y9gUJsTEFHlBIihCkUiQo0BQQ4ibv2skavLbx JRcQ/87Ye0tKK/FCVDWx13M5Z854dvJkW0tYc+uEVtPsZHQvA65KzYRaTbPgl/mj7Mnp8dHkVp4f H0H8XFbCQanVUqyCpR7tYCkkB9y1/EcQljMQSxDCKc3SdnC45TXYoCDtGatL7hx3UPBKKNZ6ns8X @@ -2196,53 +2833,53 @@ interactions: 3iBR7LE3pd7ElTZJOuOBkDuwSQ3OovjcGKmrRV5qqRX+NNTS6FViqqCXsfHbqx8DSYkl7azTxVji lbuKB3Tkw1O7PyH2QiZ9fOVqPW7dpFcDQ1H3TYem0YDqOn/1fPZ1dv4O8KywWsWSwZpaEYfWnsPh Dp418wzyjiR3cLMVAauLd3drgLvCdTOwf6uABef/5dUikURhGaTsKO0q0oTO872qT9owBwWaZoO7 - x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAAMLp7T5mrGOweAAAAHgAAAAsAJAAAAAAAAAAg - AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgATDhT13il1QGI1FDXeKXVAYjUUNd4pdUBUEsB - Aj8AFAAAAAgAMLp7T1stvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA - IAAAAAAAAQAYAEw4U9d4pdUBTDhT13il1QFMOFPXeKXVAVBLAQI/AAoAAAAAADC6e08YjzJuHwAA - AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgAOZlV13il1QFMOFPX - eKXVAUw4U9d4pdUBUEsBAj8AFAAAAAgAMLp7TzZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA - AGJvdC5qcwoAIAAAAAAAAQAYAA6FYdd4pdUBDoVh13il1QEOhWHXeKXVAVBLAQI/ABQAAAAIADC6 - e096ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgATedj - 13il1QEOhWHXeKXVAQ6FYdd4pdUBUEsBAj8ACgAAAAAAMLp7Tz2y5lJIAAAASAAAAAsAJAAAAAAA - AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgAtUpm13il1QFN52PXeKXVAU3nY9d4pdUB - UEsBAj8AFAAAAAgAMLp7T6IT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg - AAAAAAABABgAtUpm13il1QG1SmbXeKXVAbVKZtd4pdUBUEsBAj8AFAAAAAgAMLp7TwgjAlZ1rgAA - Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgAxhFr13il - 1QFBrGjXeKXVAUGsaNd4pdUBUEsBAj8AFAAAAAgAMLp7T7YeHpF/AQAAiQMAAAwAJAAAAAAAAAAg - AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYAMYRa9d4pdUBxhFr13il1QHGEWvXeKXVAVBL - AQI/ABQAAAAAADC6e08AAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny - aXB0cy8KACAAAAAAAAEAGACqIl/XeKXVAaoiX9d4pdUBOZlV13il1QFQSwECPwAKAAAAAAAxuntP - AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpbWk1dmVz - c3VicGszLlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYABE5Hdl4pdUBETkd2Xil1QEROR3ZeKXV - AVBLAQI/ABQAAAAIADC6e0/gz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 - U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGAA5mVXXeKXVATmZ - Vdd4pdUBOZlV13il1QFQSwECPwAUAAAACAAwuntPqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc - vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYAHn7V9d4pdUB - eftX13il1QF5+1fXeKXVAVBLAQI/ABQAAAAIADC6e080Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA - ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYAHn7V9d4pdUB - eftX13il1QF5+1fXeKXVAVBLAQI/ABQAAAAIADC6e09qiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA - AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgA/l5a - 13il1QH+XlrXeKXVAf5eWtd4pdUBUEsBAj8AFAAAAAgAMLp7Tzgr1xpiAAAAwQAAAB0AJAAAAAAA - AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgA/l5a13il - 1QH+XlrXeKXVAf5eWtd4pdUBUEsBAj8AFAAAAAgAMLp7T6HoB0OGAgAAQwYAACsAJAAAAAAAAAAg + x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAAXHQmUJmrGOweAAAAHgAAAAsAJAAAAAAAAAAg + AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgAyrKTdp7E1QFgUJF2nsTVAWBQkXaexNUBUEsB + Aj8AFAAAAAgAXHQmUFstvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA + IAAAAAAAAQAYAMqyk3aexNUByrKTdp7E1QHKspN2nsTVAVBLAQI/AAoAAAAAAFx0JlAYjzJuHwAA + AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgALBaWdp7E1QEsFpZ2 + nsTVASwWlnaexNUBUEsBAj8AFAAAAAgAXHQmUDZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA + AGJvdC5qcwoAIAAAAAAAAQAYAMLsrXaexNUBYoqrdp7E1QFiiqt2nsTVAVBLAQI/ABQAAAAIAFx0 + JlB6ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgAOE+w + dp7E1QHC7K12nsTVAcLsrXaexNUBUEsBAj8ACgAAAAAAXHQmUD2y5lJIAAAASAAAAAsAJAAAAAAA + AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgAeLGydp7E1QE4T7B2nsTVAThPsHaexNUB + UEsBAj8AFAAAAAgAXHQmUKIT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg + AAAAAAABABgA0b2ydp7E1QHRvbJ2nsTVAdG9snaexNUBUEsBAj8AFAAAAAgAXHQmUAgjAlZ1rgAA + Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgAUoK3dp7E + 1QHRvbJ2nsTVAdG9snaexNUBUEsBAj8AFAAAAAgAXHQmULYeHpF/AQAAiQMAAAwAJAAAAAAAAAAg + AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYAMnmuXaexNUByea5dp7E1QHJ5rl2nsTVAVBL + AQI/ABQAAAAAAGB0JlAAAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny + aXB0cy8KACAAAAAAAAEAGACdPKN4nsTVAZ08o3iexNUBVHiYdp7E1QFQSwECPwAKAAAAAABgdCZQ + AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpZnRuNG9s + bGVtYnNrLlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYAJ08o3iexNUBnTyjeJ7E1QGdPKN4nsTV + AVBLAQI/ABQAAAAIAFx0JlDgz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 + U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGADv2Zp2nsTVAe/Z + mnaexNUB79madp7E1QFQSwECPwAUAAAACABcdCZQqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc + vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYANk9nXaexNUB + 79madp7E1QHv2Zp2nsTVAVBLAQI/ABQAAAAIAFx0JlA0Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA + ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYANk9nXaexNUB + 2T2ddp7E1QHZPZ12nsTVAVBLAQI/ABQAAAAIAFx0JlBqiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA + AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgA2T2d + dp7E1QHZPZ12nsTVAdk9nXaexNUBUEsBAj8AFAAAAAgAXHQmUDgr1xpiAAAAwQAAAB0AJAAAAAAA + AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgAl56fdp7E + 1QGXnp92nsTVAZeen3aexNUBUEsBAj8AFAAAAAgAXHQmUKHoB0OGAgAAQwYAACsAJAAAAAAAAAAg AAAAhMcAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWQKACAAAAAA - AAEAGABuwVzXeKXVAW7BXNd4pdUBbsFc13il1QFQSwECPwAUAAAACAAwuntP58hJBf8CAAAyBwAA + AAEAGADTZKR2nsTVAZeen3aexNUBl56fdp7E1QFQSwECPwAUAAAACABcdCZQ58hJBf8CAAAyBwAA KAAkAAAAAAAAACAAAABTygAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNt - ZAoAIAAAAAAAAQAYAG7BXNd4pdUBbsFc13il1QFuwVzXeKXVAVBLAQI/ABQAAAAIADC6e08ABerm + ZAoAIAAAAAAAAQAYABvGpnaexNUBG8amdp7E1QEbxqZ2nsTVAVBLAQI/ABQAAAAIAFx0JlAABerm vwAAABwBAAAqACQAAAAAAAAAIAAAAJjNAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpz - b24udGVtcGxhdGUKACAAAAAAAAEAGACqIl/XeKXVAaoiX9d4pdUBqiJf13il1QFQSwECPwAUAAAA - AAAwuntPAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA - GACTRCXYeKXVAZNEJdh4pdUBk0Ql2Hil1QFQSwECPwAUAAAAAAAwuntPAAAAAAAAAAAAAAAAGwAk - AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgAvcsu - 2Hil1QG9yy7YeKXVAZNEJdh4pdUBUEsBAj8ACgAAAAAAMLp7TwAAAAAAAAAAAAAAADwAJAAAAAAA - AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaW1pNXZlc3N1YnBrMy1XZWIt - RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYAL3LLth4pdUBvcsu2Hil1QG9yy7YeKXVAVBLAQI/AAoA - AAAAADG6e08AAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA - AQAYAFuKzth4pdUBW4rO2Hil1QFbis7YeKXVAVBLAQI/ABQAAAAIADC6e0/iRs24/gMAAEsKAAAJ - ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGAAOhWHXeKXVAaoiX9d4pdUBqiJf - 13il1QFQSwECPwAUAAAACAAwuntPRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv - bmZpZwoAIAAAAAAAAQAYAAFxbdd4pdUBAXFt13il1QEBcW3XeKXVAVBLBQYAAAAAGQAZAFQKAABF + b24udGVtcGxhdGUKACAAAAAAAAEAGAAcKKl2nsTVARwoqXaexNUBHCipdp7E1QFQSwECPwAUAAAA + AABddCZQAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA + GABJK4d3nsTVAUkrh3eexNUBSSuHd57E1QFQSwECPwAUAAAAAABddCZQAAAAAAAAAAAAAAAAGwAk + AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgAeQGf + d57E1QF5AZ93nsTVAUkrh3eexNUBUEsBAj8ACgAAAAAAXXQmUAAAAAAAAAAAAAAAADwAJAAAAAAA + AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWZ0bjRvbGxlbWJzay1XZWIt + RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYAHkBn3eexNUBeQGfd57E1QF5AZ93nsTVAVBLAQI/AAoA + AAAAAF10JlAAAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA + AQAYAPzISniexNUB/MhKeJ7E1QH8yEp4nsTVAVBLAQI/ABQAAAAIAFx0JlDiRs24/gMAAEsKAAAJ + ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGABiiqt2nsTVAWKKq3aexNUBYoqr + dp7E1QFQSwECPwAUAAAACABcdCZQRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv + bmZpZwoAIAAAAAAAAQAYAA1HvHaexNUByea5dp7E1QHJ5rl2nsTVAVBLBQYAAAAAGQAZAFQKAABF 2AAAAAA= headers: cache-control: @@ -2252,19 +2889,19 @@ interactions: content-type: - application/x-zip-compressed date: - - Wed, 27 Nov 2019 23:17:38 GMT + - Mon, 06 Jan 2020 14:35:06 GMT etag: - - '"785f21fc8f73d708"' + - '"e5f1b99bb592d708"' expires: - '-1' last-modified: - - Wed, 27 Nov 2019 23:17:34 GMT + - Mon, 06 Jan 2020 14:34:59 GMT pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -2288,16 +2925,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"163e6acc-10f7-4cbf-b750-740b2c30a372","MicrosoftAppPassword":"c68fad01-902a-4276-a8e6-035fa60fe803"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"8f538b9d-3a92-4f31-94dc-582818631645","MicrosoftAppPassword":"2a18c8af-a4ee-4bf3-a46f-14122a75b235"}}' headers: cache-control: - no-cache @@ -2306,7 +2943,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:17:40 GMT + - Mon, 06 Jan 2020 14:35:07 GMT expires: - '-1' pragma: @@ -2324,7 +2961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -2344,12 +2981,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central @@ -2362,7 +2999,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:17:40 GMT + - Mon, 06 Jan 2020 14:35:08 GMT expires: - '-1' pragma: @@ -2398,15 +3035,15 @@ interactions: ParameterSetName: - -g -n --code-dir User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"53001a80-0000-0100-0000-5ddf03ef0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"163e6acc-10f7-4cbf-b750-740b2c30a372","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c005ab9-0000-0100-0000-5e13454f0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"8f538b9d-3a92-4f31-94dc-582818631645","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2415,15 +3052,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:40 GMT + - Mon, 06 Jan 2020 14:35:08 GMT etag: - - '"53001a80-0000-0100-0000-5ddf03ef0000"' + - '"0c005ab9-0000-0100-0000-5e13454f0000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2451,16 +3086,16 @@ interactions: ParameterSetName: - -g -n --code-dir User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"HFTnCkw4lGbJijadwfkK4cDTw7iedj1BiFSwNYMuP0nL3ktXe0vGDuecbrJj","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:HFTnCkw4lGbJijadwfkK4cDTw7iedj1BiFSwNYMuP0nL3ktXe0vGDuecbrJj@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"vdYJTmnMlYQlmTgLBBMWP3on6elpbikEDzpeYhHiKKbfsifS2qAP2b975oRe","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:vdYJTmnMlYQlmTgLBBMWP3on6elpbikEDzpeYhHiKKbfsifS2qAP2b975oRe@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -2469,7 +3104,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:17:41 GMT + - Mon, 06 Jan 2020 14:35:09 GMT expires: - '-1' pragma: @@ -2487,7 +3122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' x-powered-by: - ASP.NET status: @@ -2507,27 +3142,27 @@ interactions: ParameterSetName: - -g -n --code-dir User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-131.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:12:33.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A407D2D2169295138CA4CD71EB7523BF68A55D86FB46FBCAC5EDEF8732112F4A","kind":"app","inboundIpAddress":"23.101.119.44","possibleInboundIpAddresses":"23.101.119.44","outboundIpAddresses":"23.101.119.44,23.99.215.110,23.99.213.182,168.61.218.60,23.99.208.251","possibleOutboundIpAddresses":"23.101.119.44,23.99.215.110,23.99.213.182,168.61.218.60,23.99.208.251,23.99.211.22,23.99.209.158,23.99.214.44","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-131","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:26:01.537","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"FC66567DEB341BF0EB1AB36918BA40791E8021C3E1DDA265B521FAFE46CD3DA6","kind":"app","inboundIpAddress":"168.61.152.29","possibleInboundIpAddresses":"168.61.152.29","outboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","possibleOutboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3222' + - '3156' content-type: - application/json date: - - Wed, 27 Nov 2019 23:17:41 GMT + - Mon, 06 Jan 2020 14:35:11 GMT etag: - - '"1D5A578266A72EB"' + - '"1D5C49D38931310"' expires: - '-1' pragma: @@ -2577,7 +3212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:42 GMT + - Mon, 06 Jan 2020 14:35:13 GMT expires: - '-1' pragma: @@ -2585,7 +3220,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -2597,15 +3232,15 @@ interactions: message: OK - request: body: !!binary | - UEsDBBQAAAAAADN6e08AAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA - ADN6e08AAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAM3p7T5mrGOwgAAAAHgAA + UEsDBBQAAAAAAGO0JlAAAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA + AGO0JlAAAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAY7QmUJmrGOwgAAAAHgAA AAsAAAAuZGVwbG95bWVudItOzs9Ly0yP5eVKzs/NTcxLUbBVSEktyMmv1EvOTQEAUEsDBBQAAAAI - ADN6e09bLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN + AGO0JlBbLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN KIFmUiaJtZT+u40t9LEwu9xzZriJdTpWuMNP7Th4cRFdnonhSPwEJO3lSUgfgDSwlsXEeBhJpEu3 MfvlHq0Z4tuhEBKqBlov78WCG9JIYTKOK0ROMYbIpKABk5z9EvsaSlQPfDpG9YxUBuNI1cBI07pu tseFYFGn9oRvZFlsMJCj1rro/yi+pfLK7JrkTO+ZnX7VP6CtKwioyshVq1JfQ6/tZ4wDfZ715y9Q - SwMEFAAAAAgAM3p7TxiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL - KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIADN6e082YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw + SwMEFAAAAAgAY7QmUBiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL + KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAGO0JlA2YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw EH4P5D9cYWCbLvKe52WQjkEHy9P2MsaginSJxWTJk85tTfB/39mJW2cJrG+9B2Pffffd3XeS8xw+ +boNZlcSpCqDtVHBR78l9ofaB0nGOwEra2EARQgYMdyjFvNZnsNXo9BF1NA4jQGoRFh/+T66GTOf Ke8iwR5Wisy9ofZWOm0Z28GSyf40JmCabDxtGmOZI8mKIcvKGOGzKv2NJ8BHQqfjGcd+PgO2oURo @@ -2614,7 +3249,7 @@ interactions: Gg3Jm/0TZGxA9F/QJXcHKaecPP5NC0paa9xuqMyCtUzG62p4PirlYbw+BCz9qLThzTdOXOrwwDLR uDut+zR+tcEQV1qjfrEGh8NTTVL51JzNO40XpwRbHyC1yDo64tR3xfDy4YRSWHQ7Kgu4vuZg9m8P vZktpNOUnwz8JVj/q+WFfgIqUxt0xIiLdP9Zb3KL1vrhaD2gVb7CqyQrzmm6U1f3Wrs+Fu/6rVde - NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAM3p7T3ohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k + NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAY7QmUHohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k xVZtb+JGEP6OxH8YkCxdquAk11aVklIdIkuPHm/FTi4nIVmOvcBezK5rr0Poh/72zq7XxhwmTT8d H8B4XvaZ2Xlm5gNbQtty+mPPnff6xBuRezKy2jAhf0L7pzZ8oMFagFgum41m4/oaOrUfLfp0d3sH tzSOxG5DuQQnSFgsteieJikT/Bqu7Ev76pdXPWnhLKEJ/StjKZM0PVY3WuiWLXfARUjtrykwnko/ @@ -2635,9 +3270,9 @@ interactions: ytnU6cSJCDPd3N8WO54q4rDMwff+GB5SHprsmnAhEBsc+iEkIpMMR4hc+xK2DGPOl+YM/60pL8Kq pGm/wOknUBnzutYP5l4t/d9qNvRyXllYDQMu2/kJA5+pZZO+MNnHGuhWVc8LeN3Sm9KDi8eDFViH ZABihAaT9t4zyGHtpyACvbGGEGaJovOWPoKajId8zstBnYM7K1HGI/pMo6pggNtvMevz3TyHcGxT - wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACAAzentPPbLmUkQAAABI + wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACABjtCZQPbLmUkQAAABI AAAACwAAAGlpc25vZGUueW1sy8tPSQ0oyk9OLS52zs/NTcxL8cnMS7VSUHKxigGKpxcl5iq4Zeak - FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgAM3p7T6IT5UH0AwAASgkAAAgA + FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgAY7QmUKIT5UH0AwAASgkAAAgA AABpbmRleC5qc31VwW7jNhC9B8g/DBYFpAAOdeihrYsUcANvayBZBxuhl26R0BJtsZFIlaSidbP+ 985QpCKnSYQcYurxzcybmacsg0vd7o3cVQ7S4gyuZWG01VuH56bVhjupFYNFXYMHWTDCCvMoSnZ6 kmVwJQuhrCihU6Uw4CoB16s8HiPm9KTQyjootRPqES7w/j+dNCJNhpPk7OcIabmrpgD6PXmNgZ3c @@ -2656,7 +3291,7 @@ interactions: OIN8J6gXtOedFW/WNJaT5IgkNxeq0B0CkEiFxPFv0+3Y6DLv0vhZc1J1Pr7p1DAX3npadAMrYCu/ +sT8NxN9CdtV6FIMAQ4vXIeAr32vmj11b/CL8OVKx/268ibsl0tiPQ2NJ32z8OtAYxc8udXWpUnG W5kFyWyCbo/AGX1IpisWNzNs+FhvxM5ebOn0bmjOZ9xIr8lxNRExiOqrYqjaSBQ0P4yW/B9QSwME - FAAAAAgAM3p7TwgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 + FAAAAAgAY7QmUAgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 0ZitAU04fBxGIDEKkJh5uA7NaJ4R4vqeb7ckhsVaS4AYdvfu60307iWJolKVWZWVleO//9f/8o/0 84fNW/If/+Mff8jixhGc8I//fny+lf1Ac+zsK+gH+AM8f2E6oqFopjw/N4BOX/myF2m+HKTPQj+S T48l2ZVtSbZFLf/q3w+P86/+N7+PfBmwgmr6s7Cqf/n++5vAP7DTm5wbpD91zK0sZS02YegG/wMA @@ -3455,7 +4090,7 @@ interactions: LXuBpSGTQR+IO12JXU23Q9QxUxReI1SO3Q9PNeinhb6jA3z00TqBYaBPIYIw9G4LWZhACVsDE/zB dm1bGTDjzf1WIJNcD3ueku28gbrZ0nQbHNlpvC0IrMT7MOiNeDllkgpeUFLbxTQJVPQQs9j4h1Dd XnIrj+WjPe2N5IwzhSM/zkdPJmlI6Haykvjl0S7zFsJ252MTWCt8ZbVBLZRAETZHqACbAQnM4Zi3 - GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIADN6e0+2 + GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIAGO0JlC2 Hh6RhAEAAIkDAAAMAAAAcGFja2FnZS5qc29ufVJNT+MwEL0j8R+sHDht3RpFiO0RwYFDb3tElVJ7 2swq8Vj2pFCh3d++/mjLJhQiH6J5b94bv/H79ZWIX2WbHqqlqEC3tCGufhzre/ABySZIyYVcnAED QXt0fAQfiMXDgJ0BL/a1SDIi6ojQ9K6Dc1czcEs+NaxQewq0/bDqUIMNeYrV869zuW8wO6A18CZ/ @@ -3463,8 +4098,8 @@ interactions: aNwimJdK3NwIeEMWqirtf05X8OAoIJM/TG7BB5eD2CGPPAffpXLL7MJyPo9wO2ykpn6qbMBBvJHV CNOE4lo2ZVNJ6m8t76QamRhisPsEru/l7cfOjyMHxu0ht97LOqKfnPePX5uXJLP2XTQeaxdwpslu cTeLm7Sm8SaTVS3VZbbrhh3aGfaOyuLXt1LFub/hpq0X1cX/b/oC03nqsbzJdR2zUN9wR/PGYCbk - 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACAAzentPAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k - AwBQSwMEFAAAAAgAM3p7T+JGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ + 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACABjtCZQAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k + AwBQSwMEFAAAAAgAY7QmUOJGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ kknrom2ANohvgAA1DZz4oRAKeLUciRstd9m9iFC+vjNLipQb1zLsB1nanTlz5nKGPINrWVm4sAEC 1o0WAU9PTk++VMrDkg4rQf8RDUiHdFdC9MqsYcEON07U2Fq3+ftVFULj3xVFiduc3Fb7m1zaevoa VABf2dYDfUCwPRgI8IpiYooUKhFASIlN8KBMEwOsnK3pHCkoOhCmBCSy6BlvKeQmZ6pnZ/DJocN/ @@ -3483,7 +4118,7 @@ interactions: Wg7IXs5nT9KiB0BP7ZAOnWb8kuAfYHUPpxGuSb/z5DLOxweq5VaFHT8bJImJ5u5JBmiy6I+Mi7SG 3xgy0WNnI/bRKs6FWUdSNNwZgqLdZ1gK/aqZ380+P5udtGujiADug/hC0+tI0cW5rARvWZ+2Nc9I v99IuP20vLgMffrH9XLLT7jVbgzUtm1Oj0N6J+IYDb1NUSVoDyezzqekp4XZHnPprMjjX1BLAwQU - AAAACAAzentPRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM + AAAACABjtCZQRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM ShA0DmCg8bo46TCsW0BJtMVGIlWSsuwO++87pGRb9ppiLwuCBKJ4P865596r8dW6KmkljJVaJdH5 6HVEQmU6l2qZRI1bxD9GV5enJ+Nv4vj0hPzPQyEtZVot5LIx3MGOFrIUhFMjPjXSiJzkgqS0Sufh uLE4cppMoyic1UZnwlphKRWFVHnveTqdkzbh32RdG9wYEd3ipNIGjtRCmyoE/JZW0kp3cXrSWxbO @@ -3504,12 +4139,12 @@ interactions: 0JIVNcf6g9cSqZJehMbvR38r0WIoaW8dBmOGkbv0F7Tnw3Ez3BDDkF4fT0KtLnZu8GlQ82UI5nT3 tQB1zX6+mTxNZu/RoStptPIloxU30i+tocPdDJ50+4ziLUn2YLKlDaqL2d0b4BTU9Ttw91VBcyH+ l0+LQBKnRQPMW0r7inSh90JB1cfbHTksUBLt3f105puaXfZWEOq/v0/Gh8lc/gNQSwMEFAAAAAgA - M3p7TwAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGltaTV2ZXNzdWJwazMuUHVi - bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgAM3p7T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny + Y7QmUAAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGlmdG40b2xsZW1ic2suUHVi + bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgAY7QmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny aXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJa TjgV2vSumEj47yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIK VOhHMghb22BsO9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfd - KMJkNb8AUEsDBBQAAAAIADN6e0+o88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy + KMJkNb8AUEsDBBQAAAAIAGO0JlCo88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy Z2VTZXR0aW5ncy5qc51VXW/aMBR9r9T/YPUFR8tM2dNUxqRNY1P7QJGCtAdAU5rcdGapw2yHglD+ +66dODjAqm55QMS+95xzP5MUQmmSKTIiEn6XXALtZaoXDC8vEnu1jvVP/9K8e9fxeh2B1lw8TmtD c88kqCLfoDXro4GqDRRbqUJ4viA2f3FieGUNnamDsEritKFUX3kOtCshdLAdHsMhiwSUMtAeML5N @@ -3522,7 +4157,7 @@ interactions: i+SU2Ek7x+g1nbdGOoBumqqTpHA1KVK4i6ayMJuEtgSNS1fG8c7jXAl0Z7unvA6jC/4vQ+XK1sn+ iboz3Wt239EmVN50do3dQBmzl/ZPt1WbXMzdMkIb8oZgp+Kv47KLaOl3Li6tpa8AU/ksuYa2H9rY 65Gt23+BXxvsaxBJkSLujeuSqi0qgVyBL/EE+DjJtifrzcmzHT1sQlHmeYiT/DKhLesfUEsDBBQA - AAAIADN6e080Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl + AAAIAGO0JlA0Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl VWFr2zoU/W7wf7gYTLfxbG/vyyDg0Y5ma6BrTJ2uXwzFsW9Sb5YlJIW0e9t++67kOLHbeHswCIl0 c3V0zrnS1SkW9xz4auU6CnXNi7x2nXS6AJErteWyjP03bQAfBJc6Ra2rZq1i/982LFHwq5xhrGRx TeND9EbW8aqqcRJFkX8x/zQ9v559nk5+vv7njd8GkrPFxeQnzVSlMfI7KL/FKPm2qXlexkuuA0J3 @@ -3537,7 +4172,7 @@ interactions: GZIzxenK37bg4WtgO3FF9X8a9yCOwfNgzalRfKvEny6PBT9pQSAXgjS1SCe7uzo5S5I7eh0Ws6uP 6YGU60ws+u7O2i56j2ZHMJfEdQ4PkJ+9pTB95ZCP8AjNuuN/Za8OHQrzZiNsC1J6Y17Qkf430l/G eto+fbxR9Z/KfV2acvd8u461ezKdf7DODC1rLS43TDw1uOElDmTvZBzpQQzlGvdH9wsdEHwgH6Kl - 6/wCUEsDBBQAAAAIADN6e09qiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz + 6/wCUEsDBBQAAAAIAGO0JlBqiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz aC5qcy50ZW1wbGF0ZXVUXW/aMBR9R+I/3KGpSSTqoG1PsE5iHZP6sK4qlSrtpTLJZVgY2/MHqEX8 99khcUlon5Kcc++55x5stlTDC1M/JS9RwxVo/OeYxjTx4OWyQpNs0u9tfZ2idnVaEr4juTSn1NJE ImBo7ClbQ1VJXSSljR6CLtFoJN/6YhKVvKW7o4VWxWvvEBJC8v3j7PvT/OZh9nQ7/TU7EN8WJdau @@ -3547,10 +4182,10 @@ interactions: jBpcS2FR2MuHZ4WDMQyoUpwV1EoR0hzU/eFxyLLwIFKE82GUFAaTITTZpAHLamG2hOqbGEutM9ey RPh2BZ9GI7i4gC7zFT6PRtmrKR+mE5yJdYxw0lBN7KlwnDfwAZAbfG/ol5Z2FKjsTlr7xfVQa6lP d/NA1IgKATw2eplD65wot+DMrLqnJN7j1pWol3xnXNjqwykAb53CdhLn2waB7rKV5cbpG7PPJhf+ - J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgAM3p7Tzgr + J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgAY7QmUDgr 1xphAAAAwQAAAB0AAABQb3N0RGVwbG95U2NyaXB0cy9ydW5HdWxwLmNtZH1OOQ6AIBDsSfjDfkD8 AbHwGTYE1iNZWALb+HsDDY06082VWdCfDLzvWlUUYu9Iq8auF/RcAgTMxHfEJCBXxCouZq2CE4RZ - wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgAM3p7T6HoB0OKAgAAQwYAACsAAABQ + wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgAY7QmUKHoB0OKAgAAQwYAACsAAABQ b3N0RGVwbG95U2NyaXB0cy9zZXR1cEdpdGh1YlJlbW90ZVJlcG8uY21ktVVRT9swEH6v1P9wqmQV HpJo21ulTi1bpfEAVLRjkyiajHOhASf2bEcVAv77znZDU0H3Rh6c5HL33Xef75wJirUCVRT9nkUn leCy3zNYQfJhV8SnbI2+suoSK+XwErWCaxOef1o0N3Ct0VhVczkVAq1dqgesvdWo+3Ne4ZPSrvSf @@ -3563,7 +4198,7 @@ interactions: mBzMRLG/YX5B/fyKYCTL/Ghloae3Y1f9jyzNc97vtfcw7GFq2k6PYr6VN/qWNZ0AYYNC0f488KbO q1B1Ud6FeU/DJA261Q4OeGpu7UaZ/NXby3HIGSteShg0rpSTW+UKQ2ko+MF3VTeG51TCHkZV0S2p YKBJL27QFx7OTrCqMQJ9GmeU7KJ4KbzeocEZVNw6NDsdtxpK5DXB+ADrGv8HeCthgKTdSQwkBcQ+ - b2GwzsP/4h9QSwMEFAAAAAgAM3p7T+fISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z + b2GwzsP/4h9QSwMEFAAAAAgAY7QmUOfISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z ZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVda9swFH0P5D9cAiIrzM66rjAC2dJ2ge2hbUjSbrCUosk3 iVvZEpKcULrut+9KtvOxtA97aAiJdaV7dO65H+6jWChQs1mzYdFJJbhsNgxmEL3ap8Sn2wp9bdUI M+VwhFrBz2W9vAnPVxbNBc+q1RCNVTmXJ0KgtRN1jzltaKPu/JlHpV3qt59uSnxhkDsEnieglS6k @@ -3578,44 +4213,44 @@ interactions: rFKZwLyglqwiKtEOj0lmpROfjvI/zLLQwXU/ltLvJ6M8m+Y04KimKlg/7rxpa0lEZ+k8jJ849Htr u6haL5zU3NqVMsn6tK+6lw5jxlMJrcKlsk/zcGboGnK+97Nw24cnFMIORpbRX5RBS1NDcYM+8PCq AKsKI9Bf44yS2yheCmBVAzLIuHVoNjpWGkrkOcF4BxrM/oW3L2GApLRHBqIZxEHGGgbzJLwe/wJQ - SwMEFAAAAAgAM3p7TwAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 + SwMEFAAAAAgAY7QmUAAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 Lmpzb24udGVtcGxhdGVtjj0LwjAQhnfB/xAyW/AjbaNblSIOulhwlDS5QqA2IYmClv53k7Yigssd vB/PXTudIIQbdgO8Qbi95Nvr+VDk11N2zDs8610BlhupnVTNnxDKXncDaKscOoN5SA5opwSMXc40 K2UtnQTry20QvfwAYz2Oq8YZVX8Nb1l1Nxx2g1M8df/YXjo8JLrZiNBGcbC2gJuumYMfhhvFUD+I - AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAAAzentPAAAAAAAAAAAA - AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACAAzentPAAAAAAIAAAAA - AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaW1pNXZlc3N1YnBrMy1XZWItRGVw - bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAAM3p7TwAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA - AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAADN6e08AAAAAAAAAAAAAAAALAAAAAAAAAAAA - EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIADN6e0+ZqxjsIAAAAB4AAAALAAAAAAAAAAAA - AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIADN6e09bLbwvwgAAAHkBAAAMAAAAAAAAAAAA - AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACAAzentPGI8ybiEAAAAfAAAACgAAAAAAAAAA - AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIADN6e082YHQO3wEAAHYEAAAGAAAAAAAAAAAA - AAC2gdcBAABib3QuanNQSwECFAAUAAAACAAzentPeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha - AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIADN6e089suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI - AABpaXNub2RlLnltbFBLAQIUABQAAAAIADN6e0+iE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ - AABpbmRleC5qc1BLAQIUABQAAAAIADN6e08IIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw - YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIADN6e0+2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 - gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACAAzentPAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA - /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACAAzentP4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA - toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgAM3p7T0bNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB - QcUAAHdlYi5jb25maWdQSwECFAAUAAAACAAzentPAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp - yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpbWk1dmVzc3VicGszLlB1Ymxpc2hTZXR0aW5nc1BLAQIU - ABQAAAAIADN6e0/gz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 - cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACAAzentPqPPJVpkCAAB1BwAA + AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAABjtCZQAAAAAAAAAAAA + AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACABjtCZQAAAAAAIAAAAA + AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWZ0bjRvbGxlbWJzay1XZWItRGVw + bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAAY7QmUAAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA + AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAAGO0JlAAAAAAAAAAAAAAAAALAAAAAAAAAAAA + EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIAGO0JlCZqxjsIAAAAB4AAAALAAAAAAAAAAAA + AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIAGO0JlBbLbwvwgAAAHkBAAAMAAAAAAAAAAAA + AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACABjtCZQGI8ybiEAAAAfAAAACgAAAAAAAAAA + AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIAGO0JlA2YHQO3wEAAHYEAAAGAAAAAAAAAAAA + AAC2gdcBAABib3QuanNQSwECFAAUAAAACABjtCZQeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha + AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIAGO0JlA9suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI + AABpaXNub2RlLnltbFBLAQIUABQAAAAIAGO0JlCiE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ + AABpbmRleC5qc1BLAQIUABQAAAAIAGO0JlAIIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw + YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIAGO0JlC2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 + gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACABjtCZQAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA + /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACABjtCZQ4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA + toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgAY7QmUEbNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB + QcUAAHdlYi5jb25maWdQSwECFAAUAAAACABjtCZQAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp + yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpZnRuNG9sbGVtYnNrLlB1Ymxpc2hTZXR0aW5nc1BLAQIU + ABQAAAAIAGO0JlDgz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 + cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACABjtCZQqPPJVpkCAAB1BwAA IgAAAAAAAAAAAAAAtoEWywAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc1BLAQIU - ABQAAAAIADN6e080Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 - cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIADN6e09qiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 - gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgAM3p7 - Tzgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu - Y21kUEsBAhQAFAAAAAgAM3p7T6HoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs - b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACAAzentP58hJBQgD + ABQAAAAIAGO0JlA0Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 + cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIAGO0JlBqiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 + gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgAY7Qm + UDgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu + Y21kUEsBAhQAFAAAAAgAY7QmUKHoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs + b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACABjtCZQ58hJBQgD AAAyBwAAKAAAAAAAAAAAAAAA/4Ee1wAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVS - ZXBvLmNtZFBLAQIUABQAAAAIADN6e08ABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 - RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAAAzentPAAAA + ZXBvLmNtZFBLAQIUABQAAAAIAGO0JlAABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 + RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAABjtCZQAAAA AAAAAAAAAAAAGwAAAAAAAAAAABAA/0Fz2wAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvUEsB - AhQAFAAAAAgAM3p7TwAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi - bGlzaFByb2ZpbGVzL2NsaW1pNXZlc3N1YnBrMy1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ + AhQAFAAAAAgAY7QmUAAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi + bGlzaFByb2ZpbGVzL2NsaWZ0bjRvbGxlbWJzay1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ ANAGAAAI3AAAAAA= headers: Accept: @@ -3641,7 +4276,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 23:17:43 GMT + - Mon, 06 Jan 2020 14:35:15 GMT expires: - '-1' pragma: @@ -3649,7 +4284,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -3685,7 +4320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:44 GMT + - Mon, 06 Jan 2020 14:35:17 GMT expires: - '-1' pragma: @@ -3693,7 +4328,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -3705,15 +4340,15 @@ interactions: message: OK - request: body: !!binary | - UEsDBBQAAAAAADN6e08AAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA - ADN6e08AAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAM3p7T5mrGOwgAAAAHgAA + UEsDBBQAAAAAAGO0JlAAAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA + AGO0JlAAAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAY7QmUJmrGOwgAAAAHgAA AAsAAAAuZGVwbG95bWVudItOzs9Ly0yP5eVKzs/NTcxLUbBVSEktyMmv1EvOTQEAUEsDBBQAAAAI - ADN6e09bLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN + AGO0JlBbLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN KIFmUiaJtZT+u40t9LEwu9xzZriJdTpWuMNP7Th4cRFdnonhSPwEJO3lSUgfgDSwlsXEeBhJpEu3 MfvlHq0Z4tuhEBKqBlov78WCG9JIYTKOK0ROMYbIpKABk5z9EvsaSlQPfDpG9YxUBuNI1cBI07pu tseFYFGn9oRvZFlsMJCj1rro/yi+pfLK7JrkTO+ZnX7VP6CtKwioyshVq1JfQ6/tZ4wDfZ715y9Q - SwMEFAAAAAgAM3p7TxiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL - KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIADN6e082YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw + SwMEFAAAAAgAY7QmUBiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL + KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAGO0JlA2YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw EH4P5D9cYWCbLvKe52WQjkEHy9P2MsaginSJxWTJk85tTfB/39mJW2cJrG+9B2Pffffd3XeS8xw+ +boNZlcSpCqDtVHBR78l9ofaB0nGOwEra2EARQgYMdyjFvNZnsNXo9BF1NA4jQGoRFh/+T66GTOf Ke8iwR5Wisy9ofZWOm0Z28GSyf40JmCabDxtGmOZI8mKIcvKGOGzKv2NJ8BHQqfjGcd+PgO2oURo @@ -3722,7 +4357,7 @@ interactions: Gg3Jm/0TZGxA9F/QJXcHKaecPP5NC0paa9xuqMyCtUzG62p4PirlYbw+BCz9qLThzTdOXOrwwDLR uDut+zR+tcEQV1qjfrEGh8NTTVL51JzNO40XpwRbHyC1yDo64tR3xfDy4YRSWHQ7Kgu4vuZg9m8P vZktpNOUnwz8JVj/q+WFfgIqUxt0xIiLdP9Zb3KL1vrhaD2gVb7CqyQrzmm6U1f3Wrs+Fu/6rVde - NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAM3p7T3ohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k + NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAY7QmUHohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k xVZtb+JGEP6OxH8YkCxdquAk11aVklIdIkuPHm/FTi4nIVmOvcBezK5rr0Poh/72zq7XxhwmTT8d H8B4XvaZ2Xlm5gNbQtty+mPPnff6xBuRezKy2jAhf0L7pzZ8oMFagFgum41m4/oaOrUfLfp0d3sH tzSOxG5DuQQnSFgsteieJikT/Bqu7Ev76pdXPWnhLKEJ/StjKZM0PVY3WuiWLXfARUjtrykwnko/ @@ -3743,9 +4378,9 @@ interactions: ytnU6cSJCDPd3N8WO54q4rDMwff+GB5SHprsmnAhEBsc+iEkIpMMR4hc+xK2DGPOl+YM/60pL8Kq pGm/wOknUBnzutYP5l4t/d9qNvRyXllYDQMu2/kJA5+pZZO+MNnHGuhWVc8LeN3Sm9KDi8eDFViH ZABihAaT9t4zyGHtpyACvbGGEGaJovOWPoKajId8zstBnYM7K1HGI/pMo6pggNtvMevz3TyHcGxT - wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACAAzentPPbLmUkQAAABI + wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACABjtCZQPbLmUkQAAABI AAAACwAAAGlpc25vZGUueW1sy8tPSQ0oyk9OLS52zs/NTcxL8cnMS7VSUHKxigGKpxcl5iq4Zeak - FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgAM3p7T6IT5UH0AwAASgkAAAgA + FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgAY7QmUKIT5UH0AwAASgkAAAgA AABpbmRleC5qc31VwW7jNhC9B8g/DBYFpAAOdeihrYsUcANvayBZBxuhl26R0BJtsZFIlaSidbP+ 985QpCKnSYQcYurxzcybmacsg0vd7o3cVQ7S4gyuZWG01VuH56bVhjupFYNFXYMHWTDCCvMoSnZ6 kmVwJQuhrCihU6Uw4CoB16s8HiPm9KTQyjootRPqES7w/j+dNCJNhpPk7OcIabmrpgD6PXmNgZ3c @@ -3764,7 +4399,7 @@ interactions: OIN8J6gXtOedFW/WNJaT5IgkNxeq0B0CkEiFxPFv0+3Y6DLv0vhZc1J1Pr7p1DAX3npadAMrYCu/ +sT8NxN9CdtV6FIMAQ4vXIeAr32vmj11b/CL8OVKx/268ibsl0tiPQ2NJ32z8OtAYxc8udXWpUnG W5kFyWyCbo/AGX1IpisWNzNs+FhvxM5ebOn0bmjOZ9xIr8lxNRExiOqrYqjaSBQ0P4yW/B9QSwME - FAAAAAgAM3p7TwgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 + FAAAAAgAY7QmUAgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 0ZitAU04fBxGIDEKkJh5uA7NaJ4R4vqeb7ckhsVaS4AYdvfu60307iWJolKVWZWVleO//9f/8o/0 84fNW/If/+Mff8jixhGc8I//fny+lf1Ac+zsK+gH+AM8f2E6oqFopjw/N4BOX/myF2m+HKTPQj+S T48l2ZVtSbZFLf/q3w+P86/+N7+PfBmwgmr6s7Cqf/n++5vAP7DTm5wbpD91zK0sZS02YegG/wMA @@ -4563,7 +5198,7 @@ interactions: LXuBpSGTQR+IO12JXU23Q9QxUxReI1SO3Q9PNeinhb6jA3z00TqBYaBPIYIw9G4LWZhACVsDE/zB dm1bGTDjzf1WIJNcD3ueku28gbrZ0nQbHNlpvC0IrMT7MOiNeDllkgpeUFLbxTQJVPQQs9j4h1Dd XnIrj+WjPe2N5IwzhSM/zkdPJmlI6Haykvjl0S7zFsJ252MTWCt8ZbVBLZRAETZHqACbAQnM4Zi3 - GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIADN6e0+2 + GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIAGO0JlC2 Hh6RhAEAAIkDAAAMAAAAcGFja2FnZS5qc29ufVJNT+MwEL0j8R+sHDht3RpFiO0RwYFDb3tElVJ7 2swq8Vj2pFCh3d++/mjLJhQiH6J5b94bv/H79ZWIX2WbHqqlqEC3tCGufhzre/ABySZIyYVcnAED QXt0fAQfiMXDgJ0BL/a1SDIi6ojQ9K6Dc1czcEs+NaxQewq0/bDqUIMNeYrV869zuW8wO6A18CZ/ @@ -4571,8 +5206,8 @@ interactions: aNwimJdK3NwIeEMWqirtf05X8OAoIJM/TG7BB5eD2CGPPAffpXLL7MJyPo9wO2ykpn6qbMBBvJHV CNOE4lo2ZVNJ6m8t76QamRhisPsEru/l7cfOjyMHxu0ht97LOqKfnPePX5uXJLP2XTQeaxdwpslu cTeLm7Sm8SaTVS3VZbbrhh3aGfaOyuLXt1LFub/hpq0X1cX/b/oC03nqsbzJdR2zUN9wR/PGYCbk - 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACAAzentPAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k - AwBQSwMEFAAAAAgAM3p7T+JGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ + 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACABjtCZQAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k + AwBQSwMEFAAAAAgAY7QmUOJGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ kknrom2ANohvgAA1DZz4oRAKeLUciRstd9m9iFC+vjNLipQb1zLsB1nanTlz5nKGPINrWVm4sAEC 1o0WAU9PTk++VMrDkg4rQf8RDUiHdFdC9MqsYcEON07U2Fq3+ftVFULj3xVFiduc3Fb7m1zaevoa VABf2dYDfUCwPRgI8IpiYooUKhFASIlN8KBMEwOsnK3pHCkoOhCmBCSy6BlvKeQmZ6pnZ/DJocN/ @@ -4591,7 +5226,7 @@ interactions: Wg7IXs5nT9KiB0BP7ZAOnWb8kuAfYHUPpxGuSb/z5DLOxweq5VaFHT8bJImJ5u5JBmiy6I+Mi7SG 3xgy0WNnI/bRKs6FWUdSNNwZgqLdZ1gK/aqZ380+P5udtGujiADug/hC0+tI0cW5rARvWZ+2Nc9I v99IuP20vLgMffrH9XLLT7jVbgzUtm1Oj0N6J+IYDb1NUSVoDyezzqekp4XZHnPprMjjX1BLAwQU - AAAACAAzentPRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM + AAAACABjtCZQRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM ShA0DmCg8bo46TCsW0BJtMVGIlWSsuwO++87pGRb9ppiLwuCBKJ4P865596r8dW6KmkljJVaJdH5 6HVEQmU6l2qZRI1bxD9GV5enJ+Nv4vj0hPzPQyEtZVot5LIx3MGOFrIUhFMjPjXSiJzkgqS0Sufh uLE4cppMoyic1UZnwlphKRWFVHnveTqdkzbh32RdG9wYEd3ipNIGjtRCmyoE/JZW0kp3cXrSWxbO @@ -4612,12 +5247,12 @@ interactions: 0JIVNcf6g9cSqZJehMbvR38r0WIoaW8dBmOGkbv0F7Tnw3Ez3BDDkF4fT0KtLnZu8GlQ82UI5nT3 tQB1zX6+mTxNZu/RoStptPIloxU30i+tocPdDJ50+4ziLUn2YLKlDaqL2d0b4BTU9Ttw91VBcyH+ l0+LQBKnRQPMW0r7inSh90JB1cfbHTksUBLt3f105puaXfZWEOq/v0/Gh8lc/gNQSwMEFAAAAAgA - M3p7TwAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGltaTV2ZXNzdWJwazMuUHVi - bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgAM3p7T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny + Y7QmUAAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGlmdG40b2xsZW1ic2suUHVi + bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgAY7QmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny aXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJa TjgV2vSumEj47yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIK VOhHMghb22BsO9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfd - KMJkNb8AUEsDBBQAAAAIADN6e0+o88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy + KMJkNb8AUEsDBBQAAAAIAGO0JlCo88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy Z2VTZXR0aW5ncy5qc51VXW/aMBR9r9T/YPUFR8tM2dNUxqRNY1P7QJGCtAdAU5rcdGapw2yHglD+ +66dODjAqm55QMS+95xzP5MUQmmSKTIiEn6XXALtZaoXDC8vEnu1jvVP/9K8e9fxeh2B1lw8TmtD c88kqCLfoDXro4GqDRRbqUJ4viA2f3FieGUNnamDsEritKFUX3kOtCshdLAdHsMhiwSUMtAeML5N @@ -4630,7 +5265,7 @@ interactions: i+SU2Ek7x+g1nbdGOoBumqqTpHA1KVK4i6ayMJuEtgSNS1fG8c7jXAl0Z7unvA6jC/4vQ+XK1sn+ iboz3Wt239EmVN50do3dQBmzl/ZPt1WbXMzdMkIb8oZgp+Kv47KLaOl3Li6tpa8AU/ksuYa2H9rY 65Gt23+BXxvsaxBJkSLujeuSqi0qgVyBL/EE+DjJtifrzcmzHT1sQlHmeYiT/DKhLesfUEsDBBQA - AAAIADN6e080Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl + AAAIAGO0JlA0Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl VWFr2zoU/W7wf7gYTLfxbG/vyyDg0Y5ma6BrTJ2uXwzFsW9Sb5YlJIW0e9t++67kOLHbeHswCIl0 c3V0zrnS1SkW9xz4auU6CnXNi7x2nXS6AJErteWyjP03bQAfBJc6Ra2rZq1i/982LFHwq5xhrGRx TeND9EbW8aqqcRJFkX8x/zQ9v559nk5+vv7njd8GkrPFxeQnzVSlMfI7KL/FKPm2qXlexkuuA0J3 @@ -4645,7 +5280,7 @@ interactions: GZIzxenK37bg4WtgO3FF9X8a9yCOwfNgzalRfKvEny6PBT9pQSAXgjS1SCe7uzo5S5I7eh0Ws6uP 6YGU60ws+u7O2i56j2ZHMJfEdQ4PkJ+9pTB95ZCP8AjNuuN/Za8OHQrzZiNsC1J6Y17Qkf430l/G eto+fbxR9Z/KfV2acvd8u461ezKdf7DODC1rLS43TDw1uOElDmTvZBzpQQzlGvdH9wsdEHwgH6Kl - 6/wCUEsDBBQAAAAIADN6e09qiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz + 6/wCUEsDBBQAAAAIAGO0JlBqiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz aC5qcy50ZW1wbGF0ZXVUXW/aMBR9R+I/3KGpSSTqoG1PsE5iHZP6sK4qlSrtpTLJZVgY2/MHqEX8 99khcUlon5Kcc++55x5stlTDC1M/JS9RwxVo/OeYxjTx4OWyQpNs0u9tfZ2idnVaEr4juTSn1NJE ImBo7ClbQ1VJXSSljR6CLtFoJN/6YhKVvKW7o4VWxWvvEBJC8v3j7PvT/OZh9nQ7/TU7EN8WJdau @@ -4655,10 +5290,10 @@ interactions: jBpcS2FR2MuHZ4WDMQyoUpwV1EoR0hzU/eFxyLLwIFKE82GUFAaTITTZpAHLamG2hOqbGEutM9ey RPh2BZ9GI7i4gC7zFT6PRtmrKR+mE5yJdYxw0lBN7KlwnDfwAZAbfG/ol5Z2FKjsTlr7xfVQa6lP d/NA1IgKATw2eplD65wot+DMrLqnJN7j1pWol3xnXNjqwykAb53CdhLn2waB7rKV5cbpG7PPJhf+ - J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgAM3p7Tzgr + J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgAY7QmUDgr 1xphAAAAwQAAAB0AAABQb3N0RGVwbG95U2NyaXB0cy9ydW5HdWxwLmNtZH1OOQ6AIBDsSfjDfkD8 AbHwGTYE1iNZWALb+HsDDY06082VWdCfDLzvWlUUYu9Iq8auF/RcAgTMxHfEJCBXxCouZq2CE4RZ - wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgAM3p7T6HoB0OKAgAAQwYAACsAAABQ + wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgAY7QmUKHoB0OKAgAAQwYAACsAAABQ b3N0RGVwbG95U2NyaXB0cy9zZXR1cEdpdGh1YlJlbW90ZVJlcG8uY21ktVVRT9swEH6v1P9wqmQV HpJo21ulTi1bpfEAVLRjkyiajHOhASf2bEcVAv77znZDU0H3Rh6c5HL33Xef75wJirUCVRT9nkUn leCy3zNYQfJhV8SnbI2+suoSK+XwErWCaxOef1o0N3Ct0VhVczkVAq1dqgesvdWo+3Ne4ZPSrvSf @@ -4671,7 +5306,7 @@ interactions: mBzMRLG/YX5B/fyKYCTL/Ghloae3Y1f9jyzNc97vtfcw7GFq2k6PYr6VN/qWNZ0AYYNC0f488KbO q1B1Ud6FeU/DJA261Q4OeGpu7UaZ/NXby3HIGSteShg0rpSTW+UKQ2ko+MF3VTeG51TCHkZV0S2p YKBJL27QFx7OTrCqMQJ9GmeU7KJ4KbzeocEZVNw6NDsdtxpK5DXB+ADrGv8HeCthgKTdSQwkBcQ+ - b2GwzsP/4h9QSwMEFAAAAAgAM3p7T+fISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z + b2GwzsP/4h9QSwMEFAAAAAgAY7QmUOfISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z ZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVda9swFH0P5D9cAiIrzM66rjAC2dJ2ge2hbUjSbrCUosk3 iVvZEpKcULrut+9KtvOxtA97aAiJdaV7dO65H+6jWChQs1mzYdFJJbhsNgxmEL3ap8Sn2wp9bdUI M+VwhFrBz2W9vAnPVxbNBc+q1RCNVTmXJ0KgtRN1jzltaKPu/JlHpV3qt59uSnxhkDsEnieglS6k @@ -4686,44 +5321,44 @@ interactions: rFKZwLyglqwiKtEOj0lmpROfjvI/zLLQwXU/ltLvJ6M8m+Y04KimKlg/7rxpa0lEZ+k8jJ849Htr u6haL5zU3NqVMsn6tK+6lw5jxlMJrcKlsk/zcGboGnK+97Nw24cnFMIORpbRX5RBS1NDcYM+8PCq AKsKI9Bf44yS2yheCmBVAzLIuHVoNjpWGkrkOcF4BxrM/oW3L2GApLRHBqIZxEHGGgbzJLwe/wJQ - SwMEFAAAAAgAM3p7TwAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 + SwMEFAAAAAgAY7QmUAAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 Lmpzb24udGVtcGxhdGVtjj0LwjAQhnfB/xAyW/AjbaNblSIOulhwlDS5QqA2IYmClv53k7Yigssd vB/PXTudIIQbdgO8Qbi95Nvr+VDk11N2zDs8610BlhupnVTNnxDKXncDaKscOoN5SA5opwSMXc40 K2UtnQTry20QvfwAYz2Oq8YZVX8Nb1l1Nxx2g1M8df/YXjo8JLrZiNBGcbC2gJuumYMfhhvFUD+I - AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAAAzentPAAAAAAAAAAAA - AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACAAzentPAAAAAAIAAAAA - AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaW1pNXZlc3N1YnBrMy1XZWItRGVw - bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAAM3p7TwAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA - AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAADN6e08AAAAAAAAAAAAAAAALAAAAAAAAAAAA - EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIADN6e0+ZqxjsIAAAAB4AAAALAAAAAAAAAAAA - AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIADN6e09bLbwvwgAAAHkBAAAMAAAAAAAAAAAA - AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACAAzentPGI8ybiEAAAAfAAAACgAAAAAAAAAA - AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIADN6e082YHQO3wEAAHYEAAAGAAAAAAAAAAAA - AAC2gdcBAABib3QuanNQSwECFAAUAAAACAAzentPeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha - AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIADN6e089suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI - AABpaXNub2RlLnltbFBLAQIUABQAAAAIADN6e0+iE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ - AABpbmRleC5qc1BLAQIUABQAAAAIADN6e08IIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw - YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIADN6e0+2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 - gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACAAzentPAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA - /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACAAzentP4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA - toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgAM3p7T0bNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB - QcUAAHdlYi5jb25maWdQSwECFAAUAAAACAAzentPAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp - yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpbWk1dmVzc3VicGszLlB1Ymxpc2hTZXR0aW5nc1BLAQIU - ABQAAAAIADN6e0/gz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 - cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACAAzentPqPPJVpkCAAB1BwAA + AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAABjtCZQAAAAAAAAAAAA + AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACABjtCZQAAAAAAIAAAAA + AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWZ0bjRvbGxlbWJzay1XZWItRGVw + bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAAY7QmUAAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA + AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAAGO0JlAAAAAAAAAAAAAAAAALAAAAAAAAAAAA + EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIAGO0JlCZqxjsIAAAAB4AAAALAAAAAAAAAAAA + AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIAGO0JlBbLbwvwgAAAHkBAAAMAAAAAAAAAAAA + AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACABjtCZQGI8ybiEAAAAfAAAACgAAAAAAAAAA + AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIAGO0JlA2YHQO3wEAAHYEAAAGAAAAAAAAAAAA + AAC2gdcBAABib3QuanNQSwECFAAUAAAACABjtCZQeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha + AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIAGO0JlA9suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI + AABpaXNub2RlLnltbFBLAQIUABQAAAAIAGO0JlCiE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ + AABpbmRleC5qc1BLAQIUABQAAAAIAGO0JlAIIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw + YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIAGO0JlC2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 + gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACABjtCZQAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA + /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACABjtCZQ4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA + toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgAY7QmUEbNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB + QcUAAHdlYi5jb25maWdQSwECFAAUAAAACABjtCZQAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp + yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpZnRuNG9sbGVtYnNrLlB1Ymxpc2hTZXR0aW5nc1BLAQIU + ABQAAAAIAGO0JlDgz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 + cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACABjtCZQqPPJVpkCAAB1BwAA IgAAAAAAAAAAAAAAtoEWywAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc1BLAQIU - ABQAAAAIADN6e080Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 - cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIADN6e09qiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 - gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgAM3p7 - Tzgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu - Y21kUEsBAhQAFAAAAAgAM3p7T6HoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs - b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACAAzentP58hJBQgD + ABQAAAAIAGO0JlA0Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 + cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIAGO0JlBqiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 + gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgAY7Qm + UDgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu + Y21kUEsBAhQAFAAAAAgAY7QmUKHoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs + b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACABjtCZQ58hJBQgD AAAyBwAAKAAAAAAAAAAAAAAA/4Ee1wAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVS - ZXBvLmNtZFBLAQIUABQAAAAIADN6e08ABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 - RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAAAzentPAAAA + ZXBvLmNtZFBLAQIUABQAAAAIAGO0JlAABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 + RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAABjtCZQAAAA AAAAAAAAAAAAGwAAAAAAAAAAABAA/0Fz2wAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvUEsB - AhQAFAAAAAgAM3p7TwAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi - bGlzaFByb2ZpbGVzL2NsaW1pNXZlc3N1YnBrMy1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ + AhQAFAAAAAgAY7QmUAAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi + bGlzaFByb2ZpbGVzL2NsaWZ0bjRvbGxlbWJzay1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ ANAGAAAI3AAAAAA= headers: Accept: @@ -4749,17 +5384,61 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 23:17:44 GMT + - Mon, 06 Jan 2020 14:35:19 GMT + expires: + - '-1' + location: + - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2020-01-06_14-35-19Z + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net + x-aspnet-version: + - 4.0.30319 + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment + response: + body: + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + headers: + cache-control: + - no-cache + content-length: + - '559' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:35:23 GMT expires: - '-1' location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-11-27_23-17-45Z + - https://cli000002.scm.azurewebsites.net/api/deployments/latest pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4782,9 +5461,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4793,7 +5472,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:48 GMT + - Mon, 06 Jan 2020 14:35:26 GMT expires: - '-1' location: @@ -4803,7 +5482,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4826,9 +5505,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4837,7 +5516,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:51 GMT + - Mon, 06 Jan 2020 14:35:30 GMT expires: - '-1' location: @@ -4847,7 +5526,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4870,9 +5549,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4881,7 +5560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:54 GMT + - Mon, 06 Jan 2020 14:35:33 GMT expires: - '-1' location: @@ -4891,7 +5570,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4914,9 +5593,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4925,7 +5604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:56 GMT + - Mon, 06 Jan 2020 14:35:36 GMT expires: - '-1' location: @@ -4935,7 +5614,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4958,9 +5637,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4969,7 +5648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:17:58 GMT + - Mon, 06 Jan 2020 14:35:40 GMT expires: - '-1' location: @@ -4979,7 +5658,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5002,9 +5681,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5013,7 +5692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:00 GMT + - Mon, 06 Jan 2020 14:35:43 GMT expires: - '-1' location: @@ -5023,7 +5702,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5046,9 +5725,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5057,7 +5736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:03 GMT + - Mon, 06 Jan 2020 14:35:46 GMT expires: - '-1' location: @@ -5067,7 +5746,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5090,9 +5769,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5101,7 +5780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:06 GMT + - Mon, 06 Jan 2020 14:35:52 GMT expires: - '-1' location: @@ -5111,7 +5790,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5134,9 +5813,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5145,7 +5824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:08 GMT + - Mon, 06 Jan 2020 14:35:55 GMT expires: - '-1' location: @@ -5155,7 +5834,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5178,9 +5857,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5189,7 +5868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:10 GMT + - Mon, 06 Jan 2020 14:35:59 GMT expires: - '-1' location: @@ -5199,7 +5878,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5222,9 +5901,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5233,7 +5912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:13 GMT + - Mon, 06 Jan 2020 14:36:02 GMT expires: - '-1' location: @@ -5243,7 +5922,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5266,9 +5945,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5277,7 +5956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:15 GMT + - Mon, 06 Jan 2020 14:36:07 GMT expires: - '-1' location: @@ -5287,7 +5966,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5310,9 +5989,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5321,7 +6000,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:20 GMT + - Mon, 06 Jan 2020 14:36:10 GMT expires: - '-1' location: @@ -5331,7 +6010,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5354,9 +6033,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5365,7 +6044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:23 GMT + - Mon, 06 Jan 2020 14:36:13 GMT expires: - '-1' location: @@ -5375,7 +6054,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5398,9 +6077,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5409,7 +6088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:26 GMT + - Mon, 06 Jan 2020 14:36:17 GMT expires: - '-1' location: @@ -5419,7 +6098,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5442,9 +6121,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":1,"status_text":"Building - and Deploying ''e62f018acdf64402b37e5235ec784865''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":1,"status_text":"Building + and Deploying ''3c857fbf1d0046d1932d4409f119473e''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5453,7 +6132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:28 GMT + - Mon, 06 Jan 2020 14:36:20 GMT expires: - '-1' location: @@ -5463,7 +6142,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5486,8 +6165,8 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"e62f018acdf64402b37e5235ec784865","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"","received_time":"2019-11-27T23:17:46.3743186Z","start_time":"2019-11-27T23:17:46.5618139Z","end_time":"2019-11-27T23:18:31.1255046Z","last_success_end_time":"2019-11-27T23:18:31.1255046Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' + string: '{"id":"3c857fbf1d0046d1932d4409f119473e","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-01-06T14:35:20.3594394Z","start_time":"2020-01-06T14:35:20.6406512Z","end_time":"2020-01-06T14:36:21.8373874Z","last_success_end_time":"2020-01-06T14:36:21.8373874Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5496,7 +6175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:18:31 GMT + - Mon, 06 Jan 2020 14:36:23 GMT expires: - '-1' pragma: @@ -5504,7 +6183,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=422da877846bc5a1cb1197e5cb059567d9e058b2514162f7cc4a550185e93f56;Path=/;HttpOnly;Domain=climi5vessubpk3.scm.azurewebsites.net + - ARRAffinity=ad559e651e79ed007b5f950513b8f143d01df70a58992bb22e892a27ac715217;Path=/;HttpOnly;Domain=cliftn4ollembsk.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -5530,8 +6209,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -5545,19 +6224,17 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 23:18:35 GMT + - Mon, 06 Jan 2020 14:36:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14996' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml index 5aebd7464de..de5b127004b 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_appsettings_for_v4_csharp_webapp_echo_bots_no_bot_file.yaml @@ -15,8 +15,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -28,7 +28,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 Nov 2019 23:30:05 GMT + - Mon, 06 Jan 2020 14:20:24 GMT expires: - '-1' pragma: @@ -56,8 +56,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,7 +113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:30:06 GMT + - Mon, 06 Jan 2020 14:20:25 GMT expires: - '-1' pragma: @@ -145,30 +145,28 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:30:07 GMT + - Mon, 06 Jan 2020 14:20:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -178,7 +176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -197,22 +195,20 @@ interactions: uri: https://dev.botframework.com/api/misc/bottemplateroot response: body: - string: '"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/"' + string: '"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/"' headers: cache-control: - no-cache content-length: - - '83' + - '89' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:30:06 GMT + - Mon, 06 Jan 2020 14:20:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000 vary: @@ -269,9 +265,9 @@ interactions: "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "8de18173-b1c9-447e-aa48-476f2fed117f"}, "appSecret": {"value": "11605e5b-08f9-4ffb-a1ca-fb7b3f8d4295"}, + "6f1df9e7-7d83-45b7-9204-5dbe261bb46f"}, "appSecret": {"value": "9e9ba6e1-6059-4dc7-8dd4-7d2b685933fd"}, "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, - "zipUrl": {"value": "https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/csharp-abs-webapp-v4_echobot_precompiled.zip"}, + "zipUrl": {"value": "https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/csharp-abs-webapp-v4_echobot_precompiled.zip"}, "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": {"value": "centralus"}, "botId": {"value": "cli000002"}}, "mode": "Incremental"}}''' headers: @@ -284,32 +280,32 @@ interactions: Connection: - keep-alive Content-Length: - - '4611' + - '4617' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"8de18173-b1c9-447e-aa48-476f2fed117f"},"appSecret":{"type":"String","value":"11605e5b-08f9-4ffb-a1ca-fb7b3f8d4295"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-27T23:30:08.1937016Z","duration":"PT0.6328983S","correlationId":"39baf978-93ec-4768-8f2b-ffb6b4c0521c","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"6f1df9e7-7d83-45b7-9204-5dbe261bb46f"},"appSecret":{"type":"String","value":"9e9ba6e1-6059-4dc7-8dd4-7d2b685933fd"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:20:32.5217944Z","duration":"PT3.6069367S","correlationId":"748b86eb-93c6-400b-8e4c-e9a1991452c8","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267094779168379?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232864565627823?api-version=2019-07-01 cache-control: - no-cache content-length: - - '4132' + - '4138' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:30:07 GMT + - Mon, 06 Jan 2020 14:20:33 GMT expires: - '-1' pragma: @@ -319,7 +315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -337,10 +333,225 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:23:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267094779168379?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -352,7 +563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:30:37 GMT + - Mon, 06 Jan 2020 14:23:36 GMT expires: - '-1' pragma: @@ -380,10 +591,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267094779168379?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -395,7 +606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:31:08 GMT + - Mon, 06 Jan 2020 14:24:07 GMT expires: - '-1' pragma: @@ -423,10 +634,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267094779168379?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -438,7 +649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:31:38 GMT + - Mon, 06 Jan 2020 14:24:37 GMT expires: - '-1' pragma: @@ -466,10 +677,225 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267094779168379?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:26:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:26:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:27:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864565627823?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -481,7 +907,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:32:08 GMT + - Mon, 06 Jan 2020 14:27:40 GMT expires: - '-1' pragma: @@ -509,22 +935,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"8de18173-b1c9-447e-aa48-476f2fed117f"},"appSecret":{"type":"String","value":"11605e5b-08f9-4ffb-a1ca-fb7b3f8d4295"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-27T23:31:42.1043248Z","duration":"PT1M34.5435215S","correlationId":"39baf978-93ec-4768-8f2b-ffb6b4c0521c","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"6f1df9e7-7d83-45b7-9204-5dbe261bb46f"},"appSecret":{"type":"String","value":"9e9ba6e1-6059-4dc7-8dd4-7d2b685933fd"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/csharp-abs-webapp-v4_echobot_precompiled.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:27:22.6140671Z","duration":"PT6M53.6992094S","correlationId":"748b86eb-93c6-400b-8e4c-e9a1991452c8","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' headers: cache-control: - no-cache content-length: - - '4767' + - '4773' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:32:08 GMT + - Mon, 06 Jan 2020 14:27:41 GMT expires: - '-1' pragma: @@ -552,15 +978,15 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"530040c0-0000-0100-0000-5ddf075d0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"8de18173-b1c9-447e-aa48-476f2fed117f","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c0006b9-0000-0100-0000-5e1343b20000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"6f1df9e7-7d83-45b7-9204-5dbe261bb46f","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -569,15 +995,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:32:08 GMT + - Mon, 06 Jan 2020 14:27:41 GMT etag: - - '"530040c0-0000-0100-0000-5ddf075d0000"' + - '"0c0006b9-0000-0100-0000-5e1343b20000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -603,15 +1027,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"530040c0-0000-0100-0000-5ddf075d0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"8de18173-b1c9-447e-aa48-476f2fed117f","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c0006b9-0000-0100-0000-5e1343b20000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"6f1df9e7-7d83-45b7-9204-5dbe261bb46f","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -620,15 +1044,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:32:10 GMT + - Mon, 06 Jan 2020 14:27:41 GMT etag: - - '"530040c0-0000-0100-0000-5ddf075d0000"' + - '"0c0006b9-0000-0100-0000-5e1343b20000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -656,16 +1078,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"AfuQ0gv5FdAGgkE8xr8kLMtuF0exPG9hdt4Hw8baa4EbWSXZwxYCGaE8b3fb","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:AfuQ0gv5FdAGgkE8xr8kLMtuF0exPG9hdt4Hw8baa4EbWSXZwxYCGaE8b3fb@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"Z7lncbKoCoeamjed7XvJQcdmx7a1r1Ra9wXkXXo0SaxZkoiaJXjsJNbZTne7","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:Z7lncbKoCoeamjed7XvJQcdmx7a1r1Ra9wXkXXo0SaxZkoiaJXjsJNbZTne7@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -674,7 +1096,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:32:09 GMT + - Mon, 06 Jan 2020 14:27:42 GMT expires: - '-1' pragma: @@ -692,7 +1114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -712,27 +1134,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-117.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:30:16.41","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BE27FF0E632A3733F11A88AA91C6F8E461773582932A8A792D33E6451888D57D","kind":"app","inboundIpAddress":"40.113.236.45","possibleInboundIpAddresses":"40.113.236.45","outboundIpAddresses":"40.113.236.45,104.43.246.4,104.43.241.185,104.43.251.139,40.113.223.211","possibleOutboundIpAddresses":"40.113.236.45,104.43.246.4,104.43.241.185,104.43.251.139,40.113.223.211,40.113.219.59,40.113.216.205,40.113.217.83","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-117","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-041.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:23:22.64","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EF527CBC061E8FA0EDFB55F5D1E4AC79357A68BD7E0A94398C0F81E7FF51701E","kind":"app","inboundIpAddress":"52.173.36.83","possibleInboundIpAddresses":"52.173.36.83","outboundIpAddresses":"52.173.36.83,52.176.163.53,52.176.5.128,52.176.101.69,52.176.163.63","possibleOutboundIpAddresses":"52.173.36.83,52.176.163.53,52.176.5.128,52.176.101.69,52.176.163.63","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-041","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3224' + - '3171' content-type: - application/json date: - - Wed, 27 Nov 2019 23:32:10 GMT + - Mon, 06 Jan 2020 14:27:43 GMT etag: - - '"1D5A57A9FDF43A0"' + - '"1D5C49CD9DD5100"' expires: - '-1' pragma: @@ -780,7 +1202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:32:14 GMT + - Mon, 06 Jan 2020 14:27:48 GMT expires: - '-1' pragma: @@ -788,7 +1210,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=2bb9db0fc1f15806c34e6e3dcd35d19105172686523f20adf76a792565b6cb06;Path=/;HttpOnly;Domain=clihg5fghlrkzc2.scm.azurewebsites.net + - ARRAffinity=79ee6521ecdfe28715da1074b10830d5637ab5d6ba68e2ca2e68ece03d048a94;Path=/;HttpOnly;Domain=cli6z7zzvnbkigu.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -797,7 +1219,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"command": "PostDeployScripts\\prepareSrc.cmd AfuQ0gv5FdAGgkE8xr8kLMtuF0exPG9hdt4Hw8baa4EbWSXZwxYCGaE8b3fb", + body: '{"command": "PostDeployScripts\\prepareSrc.cmd Z7lncbKoCoeamjed7XvJQcdmx7a1r1Ra9wXkXXo0SaxZkoiaJXjsJNbZTne7", "dir": "site\\wwwroot"}' headers: Accept: @@ -817,7 +1239,7 @@ interactions: response: body: string: '{"Output":"file:///D/home/site/srcRepo\r\nInitialized empty Git repository - in D:/home/site/wwwroot/.git/\r\n[master (root-commit) 0360088] prepare to + in D:/home/site/wwwroot/.git/\r\n[master (root-commit) 475601f] prepare to download source\r\n 30 files changed, 7054 insertions(+)\r\n create mode 100644 .deployment\r\n create mode 100644 .gitignore\r\n create mode 100644 AdapterWithErrorHandler.cs\r\n create mode 100644 Bots/EchoBot.cs\r\n create mode 100644 Controllers/BotController.cs\r\n @@ -850,7 +1272,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:32:35 GMT + - Mon, 06 Jan 2020 14:28:13 GMT expires: - '-1' pragma: @@ -858,7 +1280,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=2bb9db0fc1f15806c34e6e3dcd35d19105172686523f20adf76a792565b6cb06;Path=/;HttpOnly;Domain=clihg5fghlrkzc2.scm.azurewebsites.net + - ARRAffinity=79ee6521ecdfe28715da1074b10830d5637ab5d6ba68e2ca2e68ece03d048a94;Path=/;HttpOnly;Domain=cli6z7zzvnbkigu.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -886,9 +1308,9 @@ interactions: response: body: string: !!binary | - UEsDBAoAAAAAAA68e0+ZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu - ZCA9IGRlcGxveS5jbWRQSwMECgAAAAAADrx7TwfdjtorAAAAKwAAAAoAAAAuZ2l0aWdub3JlKi5k - bGwNCioucGRiDQpvYmovKioNCmJpbi8qKg0KcnVudGltZXMvKioNClBLAwQUAAAACAAOvHtPvKpX + UEsDBAoAAAAAAIJzJlCZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu + ZCA9IGRlcGxveS5jbWRQSwMECgAAAAAAgnMmUAfdjtorAAAAKwAAAAoAAAAuZ2l0aWdub3JlKi5k + bGwNCioucGRiDQpvYmovKioNCmJpbi8qKg0KcnVudGltZXMvKioNClBLAwQUAAAACACCcyZQvKpX +jUCAABPBQAAGgAAAEFkYXB0ZXJXaXRoRXJyb3JIYW5kbGVyLmNznVRNi9swEL0H8h+G0IMDxr7v dheyJWUDu+2hgR5KD4o8scXaktDHOiHkv3ckO3Gy2WxLhUMs6c17b0Yj5zl8UXprRFk5SPgUngU3 yqq1o3WjlWFOKJnBrK4hgiwYtGhescjGI4p+EhylxQK8LNCAqxCeF8vDMmHGI2+FLAfi7EHRz4ua @@ -899,8 +1321,8 @@ interactions: 0EI4oN0RnT2jtazE/WRKHfGu0x8oC2DQdEBwKrrzdEEu4axlwsFJZbIQPeNOvAq3nYXCJZMlha+U A5RceUIRu+yt0bPyZUZm/pdbhT5xQvro1HhJboUNeinoGunwYS02tNh5sMobjhRTYPbXEjgTrgrr FVNoK8EraAV9N1YIhbC6ZltKR8jI/0D8x9aEeeNr5tQ/FS3e/TeZnfZg3J+kcHGMKUwqugP2Js/b - ts0ow/XBQMZVk1teYcNsHqs9IfSR86Lk+5P5nl67P3r+AFBLAwQUAAAAAAAOvHtPAAAAAAAAAAAA - AAAABQAAAEJvdHMvUEsDBBQAAAAIAA68e0/YPhbw3QEAAP8EAAAPAAAAQm90cy9FY2hvQm90LmNz + ts0ow/XBQMZVk1teYcNsHqs9IfSR86Lk+5P5nl67P3r+AFBLAwQUAAAAAACCcyZQAAAAAAAAAAAA + AAAABQAAAEJvdHMvUEsDBBQAAAAIAIJzJlDYPhbw3QEAAP8EAAAPAAAAQm90cy9FY2hvQm90LmNz tVNta9swEP4e8H+4hn1wwLjfm7bgmW0NNAwW7weo0iUWlSUjye5M6X/fObHjFxrYoBU2tu+eu3ue u/P1NaSmbKw85B5CvoKt5NY4s/dkt6WxzEujY0iUgiPIgUWHtkYRBwuKfpQctUMBlRZowecI203W mwkTLCon9QF2jfNYxKlRCnmb1MU/UKOVfD2DZLlFJshw0RFnzD273j1wjr8auiupiMoF747nWLB1 @@ -909,11 +1331,11 @@ interactions: Omdmw6mZpaGWqskoF9zBl2Wr7AZeRyXivnDcgt6W62kK9sKkhzF+h1pM9XQKvjPujT3lCc9lo4HB KnqH/KjeW7D4n84WT2hdIgSKrq2P0vnbNGdao0o4N5X291CMcBFMW08vNfmObH6XgvlPm8ILKm4K 7OawfKBQA7RTveNq3ve9oT+C5xBSdKcBpJ6oOVccqs6O3EN4iog3Aq7u4N25/0IuS4naE6jLeSHv - RyzGqBNRr/5flmO0JPPP4bV70PUXUEsDBBQAAAAIAA68e0+9Dn+OqQAAAAUBAAAJAAAAYnVpbGQu + RyzGqBNRr/5flmO0JPPP4bV70PUXUEsDBBQAAAAIAIJzJlC9Dn+OqQAAAAUBAAAJAAAAYnVpbGQu Y21kbU9NC4JAEL0L/oe5CHVZ+gNCUUuXyjA7BILIfqCwOkOumJd+e64GBnmamTfvzZu3VaJAQK19 r1HWoMiN7409HPj1FD3O/JJkt+ge73n4hye7+MiTMHhL2gTMCQVSD+Pcdd0T0aZS6bw1lhW2gmmT E2WDoylr5VAnKzWoV9lYYCydhWSwZ6KSsPI9AGqbQv4QHDa8a2AmjjSkoa7dVanM5BikC56qlt+8 - H1BLAwQUAAAAAAAOvHtPAAAAAAAAAAAAAAAADAAAAENvbnRyb2xsZXJzL1BLAwQUAAAACAAOvHtP + H1BLAwQUAAAAAACCcyZQAAAAAAAAAAAAAAAADAAAAENvbnRyb2xsZXJzL1BLAwQUAAAACACCcyZQ nvjBBkICAADvBAAAHAAAAENvbnRyb2xsZXJzL0JvdENvbnRyb2xsZXIuY3OFU01v2zAMvQfIfyB6 SoBCuS/oId2wNcCyBYlvRQ+KzNhabEmTaAfGsP8+yh9x0q6bkUA2yUc+PpGLBXy0rvE6ywlmag4b rbwN9khs9856SdoaAauigDYogMeAvsZUTCeM/qoVmoApVCZFD5QjbNbJYOaY6aQK2mSwbwJhKZLc @@ -925,7 +1347,7 @@ interactions: rSifPd/72frTE5EbxO7P5X+wkQDHdFEju1tes3eryO68b3NFqeZdpgvt8RkgDwNoeeuPCR5iiiv7 72tmz7Hw1ga6h/j2BenlDW0ZGqMgriHEyFX8nL3PabHgES4wk9ROapxahaHdPntsLU9JsoXt933C CxANA3nxJlEyOrsV0Ka2Jxxm6BVAnqWmQROx7ep2dHdxu2KXO15mHjy8j9rMb2XpD/79AVBLAwQU - AAAACAAOvHtP+XRyCl8EAACGCwAACgAAAGRlcGxveS5jbWTFVluP0kAUfifhPxxJmqjRuus9azAi + AAAACACCcyZQ+XRyCl8EAACGCwAACgAAAGRlcGxveS5jbWTFVluP0kAUfifhPxxJmqjRuus9azAi FCVyk7KrJiTN0A4wu+1MnZkuy4u/3TPTlltR900eoOU758x3rnM+sAU0HL89CKaTVtsL+t6V13ca MPS+QuNlAz7QcCVALBb1Wr12cQFPT34s9OWycwkdmsZik1CuwQ8lS7WFrqhUTPALOHfP3PM3f7Vk wbGkkv7MmGKaKvvPkVRpli02wEVE3WsFjCtN4phG9dp6hfoWgOfveRaD+arXel1wvMlkNMndtF6e @@ -945,16 +1367,16 @@ interactions: /anXckY8KkJfxBlCkSSmQiSmmfHibl8zTEW+zGX4tqK89GUvP7vFwj6ByVHQdB4XmXTsO05GuzSW Edrti2eN/IQuwckRmSVCt3FNau6LPinpNbfWjBw8mx+sZtalgiB6WHCy1lsFc1gRBSK0mxQWfSZN C6+xa83SuN+uZR2ac3CX8oxyn97SeB/o4lbWzXhoij7fGQ2Fqs6O7rkRqOjWaw/zvQ1ZV6h3GceO - RLYqC0Oq1CLDmxH5/QZQSwMEFAAAAAgADrx7T+Cxn0VPAAAAdQAAABUAAABEaXJlY3RvcnkuQnVp + RLYqC0Oq1CLDmxH5/QZQSwMEFAAAAAgAgnMmUOCxn0VPAAAAdQAAABUAAABEaXJlY3RvcnkuQnVp bGQucHJvcHNtjTEKgDAQBHvBP+QH+UBIqa2F2AdZREUvrCfi740KFpJyZ2HGNZQJvfqyMOYeEdSz - puzxQQm2gQO0YlhwCOcO3EZZvbP54zXZvyqRr3QBUEsDBBQAAAAIAA68e0/EWvMjVAEAABwDAAAO + puzxQQm2gQO0YlhwCOcO3EZZvbP54zXZvyqRr3QBUEsDBBQAAAAIAIJzJlDEWvMjVAEAABwDAAAO AAAARWNob0JvdC5jc3Byb2qVkk9PAjEQxe8kfIemF/TSjX/iadkEAQ2JIhHUC5faHTaFpW2ms8H9 9pa1JIjEwGEPfZ157zfTTSdol6CITfNVlz9rhdbbBYnxcCaCJD7gk2ftVrvF2LbUAVL9iLZy2VYK 4kxiAfSAcg0bi6vMACmLIJ27FldpcnC963qSpngH9NqarJQEntJkX2vyksPARh0RrH8RTKRayQJe YQEIRgEbGVVWOeyP0/NuDNQPYKLnHGfJOc33NnyVLnNAMTIEBUoKkNFUbF05i+RdfivuxE1IiDNs cf/n79vgaYi9uVxSCA6r80CkTeHF0lvDm8JY6uqZfanIVTTQGN7NYp31yo2sfZocvd2lJDHmEKs5 /4CtnUVi8Yfo8on1NABX2nqqUDvy87ibqa1QgRfUvK3nLFjnmprph1/ak7/onNrcuYyr+psvxPxU - l6MIZ/TvKNqtNIn54fQNUEsDBBQAAAAIAA68e09NLz8MxI0AADixAwARAAAARWNob0JvdC5kZXBz + l6MIZ/TvKNqtNIn54fQNUEsDBBQAAAAIAIJzJlBNLz8MxI0AADixAwARAAAARWNob0JvdC5kZXBz Lmpzb27kHWtv3Dbs+4D9hyGfN+fRrHsA+3BNrmu6tgly6VZgGAbHp1y8+CzP9iW9Dvvvo+T3nR2T eiXpgK3I3YmURFIURVLUP19+8dVXO+kqzsMlu/DTBct3fvxKfgvfx/6Swccd79304oinbJIkX//K 0izk8U+3B97+ztdlwyxcxH6+SmXrHfHlv/KnnYAvkzDyc4A4TcS/WQv9nF2FMRPf/C6+kd9dnE+O @@ -1591,11 +2013,11 @@ interactions: 4SUCTt/woKkJ8Ho+pgNM52xQVQoZ7K9QcznfwcgSYGf+JcKqfBhiVX4R49vDngfwBokGZh3t2piG rrIQc7ZGlrjNBiKDcF4Ja7nbDfFcjTBy5pY0v4Noe+R3LH2FFifYrSjHrFJeXnvIIZzk1t9Bb05/ +Srf3z7bjO7t5i9A+z9e4eu8b3j+KJwdDKl4b6+nveHvSbeBhQt4ufZtpNnVeCt25i1Fx46Ilqi6 - R2p3uomYN1+ZLqsJrDq4zjg611zKHB1D5F+/wm+ffeFFfpNtep1ff739+O13UEsDBBQAAAAIAA68 - e0+bR9DvlQAAAOAAAAAaAAAARWNob0JvdC5ydW50aW1lY29uZmlnLmpzb25Vjc0KAjEMhO+C71B6 + R2p3uomYN1+ZLqsJrDq4zjg611zKHB1D5F+/wm+ffeFFfpNtep1ff739+O13UEsDBBQAAAAIAIJz + JlCbR9DvlQAAAOAAAAAaAAAARWNob0JvdC5ydW50aW1lY29uZmlnLmpzb25Vjc0KAjEMhO+C71B6 loIevS178OQP7BMsJZUibUKaVUT23U3X7cFLQmYy33y2G2MsT1ligitJxFzs0SyyGhKSXjaDeGQY iQ5ub3erGXhM8EJ+tMCiZhVr5hw9Y8Egrit0AekV4DoijbfXJ3DRwvqtXCX/nLkVeMwh3m+MBCwR - yl/P8C4CyZ16NwArSU3hCVaErjrmL1BLAwQUAAAACAAOvHtP6RMns6cBAABUBAAACwAAAEVjaG9C + yl/P8C4CyZ16NwArSU3hCVaErjrmL1BLAwQUAAAACACCcyZQ6RMns6cBAABUBAAACwAAAEVjaG9C b3Quc2xurZJBb5swFMfPReI7IHbppNqyAzZw2MGA3R22KVq03UlwMk8OjsBMq9J89xolpE2bVlXb 23v/9/d7P97D976rRWs6s7TBb9X1lQ5mtq+VCWZG91aZJhBKy6tAmHZdOY9su0HEE4iQ73169AgT 39sre2G0f3EViOAkjVACMU2HsY1a9+tnzMiZYzTBGcS+N23NX7mwl+E2YzjDKBIAU5GAmNIU5JzE @@ -1603,447 +2025,447 @@ interactions: N/Vhuu9dazOvtO9d7IOZEx3t5binwjRLterbakimurJLt7FuYNm0cjS51xelnPerW9bcBMX0lyuf 5IPhp9Sy6uQDy6jcmxzYCcYTrAP2C1Smsw+xXrcTeEILmRv2TxbL1ePveHPHvFe6hugd/e6X9ZTx UPuArgfOtx1n3Ls70ka2Vslz/8lXVR/zH6aWziHYtxl/zQD+38qmU3Ollb3Zl84efYyve1W78pbj - SDCa5YClUQliLAqQU+ZSTKKcxywVSbo7C3BUfO8OUEsDBBQAAAAAAA68e08AAAAAAAAAAAAAAAAS - AAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAIABC8e0/KsKqMTAEAAFYCAAAxAAAAUG9zdERl - cGxveVNjcmlwdHMvY2xpaGc1ZmdobHJremMyLlB1Ymxpc2hTZXR0aW5nc31SXW+CMBR991cQsteJ - mZgwIyZO1D3ogiEL295aeoGG0pK2iPrrx5cu02V96ce55/Tc3DMrSsyoSj2k0XxgGJe7L0VMGRhF - t7+hHFwzYjRNJnGSMpmdo6fHEPCjBwUTJ9MYGPXqyTvQqSCuuQv+Qt8lu5MaqigfonMpoQKsqAY1 - 5KCntj3uubkirVRQY3ds0ygVyM7jww3W8dsCP/RccxGX+1FymKzJYpNkK+conWy70+V6BEd/85wS - bb9WDkbIXuEw+Piqjp/LDVo5eBzjXouA0pQjTQVfFEXbTqp1MbWsm7/vO+oVgv02AHkA6b0sBecQ - NVqBlpQnrnnp+FRX/YOnonGR1IM6UAJyLWSZbynPrgWR4FoK5iMOrAGuLivKiahU524Yibwn1EaD - k9KQu2ZYHxvP5rxFZqSOB0YKlGG1KbF+x2Q+aF5+gvQNUEsDBBQAAAAIAA68e0/gz3m4kQAAANwA - AAAtAAAAUG9zdERlcGxveVNjcmlwdHMvZ2l0aHViUHJvamVjdC5qc29uLnRlbXBsYXRlbYwxD4Iw - EEZ3E/7DpbORnQ0Mg4MumDiSWk44Fdr0rphI+O8q6WCi6/ve+6ZkBaAG3aPKQE2nsqir3bGsD/m+ - nNV6WRtk48kJ2eGPBPkzeITCClToRzIIW9tgbDvbo9Pt8t6JOM7StCXpwnljbB8l52nU8nEu+s4Y - S801MQfkNxcfvrDz9opGfocH3SjCZDW/AFBLAwQUAAAACAAOvHtPWtMXbNwAAAAOAgAAKAAAAFBv - c3REZXBsb3lTY3JpcHRzL0luY2x1ZGVTb3VyY2VzLnRhcmdldHO1kk9rwzAMxe+DfQeTYw5R2W4j - LYwVRi9b2Z9bL4mjURc7EpbcLd9+3pbSwHpsb5b1eD89pHodaYdWzVfwvcyLrSrfAYjdYmikCs5G - EvrQylKADvfoiTFCkDY538HNbHZbLK6vjKlXiuExUuLfMn88UGDn0bxz1yjOi7LclJWVP/mo4OGN - npNy0qWLeQyKw+LefzaD1HCyezCH0f1QP1GPZtVbn7ojinO2wpyHlwFT2DHWmkSXyJ6GVxsdq2R0 - eTHqCwbaZ2rr+s00JZxUUbv7p/qxne6qhvEE8vsbUEsDBBQAAAAIAA68e0+o88lWlAIAAHUHAAAi - AAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc51VXW/TMBR9n7T/YO2ljgjeuie0 - EiQQBW0PbaVU4qGNUJc4wyVzSux0rar8d67tOHESFQZ+mBbfc88998O3cc6FRKlAASror5IVFI9S - MfImlxfGtNvIH65RfTvmzW4XUikZf1oYoLKTgoo82wOaXANAGIAgW5Fzx5fy/RknAiYNtNCawsjc - JGH9+YVlFHcl+Ja2E0fFKPKYCqGoweLYZptnqojnj1saS/KTHgWGa+/yAsEhKcskLXBa8liynOOD - dwINsiw4OhDGE3qYp/jq42IRTpfL+9nX71ceCoIA3Uyq/6b4Nv0U3i+niuo9EKGqW/CmGI18KF5S - xrQNEZeFjyAVDzWhToQQfb2CeyLKRyELoMHjsRfdKSZ1H1WTykenyi0+py9tSE1j2+Ej+HAUVdqr - 3CUbSV/TI9/lNiFtBrrPn3M55XucAgUkYqppNEl6kCAmFUThVIzwyGON9NGolOnbd3qAWo+McdVm - 7UnELmMSX6/WxZpH1xbYnzXlc6a2ylRrqo99LoW0nnWUUWCU1IelCGsUySh/gvH/EKDbhqnLxqG3 - QKbhmg1k3PhobPjaA4pWChs14G3OeD9y1fxbj4Tyq+1O01t7Uwq4r9zmvP4Rqrxs1tAsemBCCtWq - nofXIJ3wD+F8RiAfQbHb6KF323KVQp3rucBW2jCiO3QW1idsXlM1KAoTszyhD+GiyNUmwSZA69KV - 0d95jAkO7uT4nEEaA/J/eVS2bZ3qD9QNp1ctjP4mtFy2DoMHpZz+uH+MX6/QK1gcFoPeIJhU+Gtj - 6UUUuZMLSytyFKhSvhRM0mYebO5alR3/NfzawFxTHucJ8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5x - uwl5mWU+uv1LQN3W31BLAwQUAAAACAAOvHtPNCH6uBsDAABSCAAAIAAAAFBvc3REZXBsb3lTY3Jp - cHRzL3ByZXBhcmVTcmMuY21kpVVda9swFH03+D9cDKZbme11L4OAR1uaroG2MXW6vgSCY8uJW8sS - kkLaffS378qO4rj5WGEkJNLV1dE5R9LVKUnnDFie25YkqmRpUtpW3B8BT6RcMpGF7kkTIM+cCRUT - pYpqJkP3SxMWhLPbhJJQivQO2230XpRhXpSkFwSBezW86V/cDX70e6+fP524TSA6G131XrEnC0UC - 10C5DUbGllXJkiycMuUhum3ZVs3WXaG7OiIIhTQDxYAL9khSBYIxZVt8IecZ+P54uVzqiMktqkLB - rMA+Si11C0OdbsqqvJjBQhLhV0gHHCSQC2yhH0/OnkxCk6IEZ6GK8nQz308Z3ZyTZMiqg0Ep/nkU - HI66EkFQy1o7SLYQKdkEQBFMkRqnsbxjCGc860hdcKkESahxpDbeHWvHbYs+ZYUwMLjGGrLjjqbn - TZFZF17jIdd2hW3PWxQ9hCh4xjyTv6ZPE6mI6IKnJauIydjBvYVuUlsPwDXmuQ1URkqChvnNpmcb - 4ysQQcET4OV1SpeG2ZKcCZQwLQs530Fm3EIaTyPBOBGqIHIcNfMwom+DXM0/mKFeONE+4jdiUl0Q - XrKXOBUFV3LMO9n+My19RSgvExT5GyTJwEPngvGvh/75JB6M+pPbs5v++E/gYkD326AbzOAb7Ih7 - D2TqNcv6uB6u0fqCewjx8Pp+NBje1tmhbWl/ghwc9LqgMnTAdRM8OfDhSJsRTOHYl2V19BEPNpxu - A2A2Ijey9wr2U5rtUWrQ1kpNwKjspkf359eD+GoS3Q0vB9d6wrss2II5i+OH4d2Fnm/KZePoBuN/ - qTIF9b/38Z3UtonsgPOjLjnbara/LcHd16CuxAXu/9u4A2EIjgMzhoXiZ8EPX54V+FEDAgnnIFdI - R6u72juLogm+DqPB7ffYkNKfHqKv72xdRedErwj6ktjW+gHCVb9iGH8SSPbw8DFhz9D4uK1QJKkW - vC5BUi3yfLv+Hawv2068ST9QqNqncmNfqqx+vnW7trvXH17qTscyY3G2oPytwRXLyCYfI2NHDaJE - zMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIAA68e0/va091dgAAAHsAAAAmAAAAUG9zdERlcGxveVNj - cmlwdHMvcHVibGlzaC5jbWQudGVtcGxhdGUli90KgjAUgO8He4e9QC8QeKFYNFju4JIuJfFUg+Xk - nI0I8d1Luv1+pvzApAg5RUIpXjxkH0a1OGu6i7ZN35Tnw6p2877GOcSPnaotKBJl3CjkIXh+AsW7 - D1gs0FVGu1MPrT1q8z/hxvyONP5s6dzVtvUqhRRfUEsDBBQAAAAIAA68e082K7FwcgIAAEQFAAAt - AAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlfVRdT9swFH2v - 1P/gVXttUhgPCKVBhZapUssi0lLtqXKSm8bDsSN/BMK0/z67iUGkbC+JfM895957/BFcv5QU1SAk - 4Ww6OvMmIwQs5Rlhh+lIq3x8OboOh4Pgy3g8HGwKIlFOKCDz1xIylDRIFYAqnVAiC7/C6RM+mLXg - KUiJeI4argXaQWJjvyBVHvrJNUoxQ6mWipfkFY4SCRS4JlxYjjJ1nMZwYGpARpTpqAXW8Y0mNDs2 - 4qElQ1xkIJDiiAIWDJVcAMIJ16oTMmEJqCaSKFQoVckr3z9wrySp4JLnykt56efPlLAn/3plvsv5 - 9HxyeXZ+5qHhYDy280dt92jDOZWPzq8L65dxkMnpyCobYZkWUGLZU8+gBsorEH4pE9u9fz6ZfBsZ - ZYSMtkVU811wXR1DJmgsi1pX16AKnoXreA4V5U3g9yFH6YJGribGkXD2qgWY5JgoCPwe6kgrLNXW - bOXR01vOcnLQAiszXvgA1jlD/XdOXyWiWOVclOGMNeg22jruO+IYtqmtoBu+wpqlxSxXILoWw87K - 37vFzT5ebhb7+9l68cfDdp5nSKShSo+BCvz/qLhCLWITP6AboY+TvYOn1MVLSnUGs6raz7HC4R2m - 1o5e2GW7DYpB1CSF7cMq7E8g0/J0iquLi2+Bf8p2um18SaQpGGFV9FUDv5/hmA9QcgV2uqhoJEkx - tSjy3/bgiVSLFyXwnblK8geztUF01nwO9of9eBB36/jx9n2WT0/pguGEgku5MS+GrrqSn0GOZs6Q - uMclhF9PxneQS93HuIZoN+9U3fINnoM0r8nx/G6aCnr3pA+3d9TvX1ITaZ+E8C9QSwMEFAAAAAgA - Drx7T8oi4NEkAQAAMgIAAC4AAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoU2V0dGluZ3MueG1s - LnRlbXBsYXRlfZJfa4MwFMXfB/sOEvZafVifSi2008Ggdm7Z8LFEvath5g9JrLix776o1bI6mpeE - e+45/JLcpazSkuoiIIasbm8cZyjESnzQEhzZ7zvCwEffSbjZ46e3cL9bR+HPLIF0FoAsRYMca7br - 5I7AFCL3UYT/ld9VOQlzdcZc8lUpqCHV1IB2OZjFfH4/mJnOuzBsxYkdOZUG1WPeXWingK4jTgLr - jdcYJ8+vwSjloA3lxFDB11J2fIUxcuF5F1lTxCECv2wxqCOoYPMgOIesDcNGUX7w0XiHxrZdayhE - C3Kwz3+kOahHoSq2pfzz3JEJbpQoY8KhbJWRtKY8F7XuCd1MsMFhaXGjDTAfJfbYgqNVLy1z+/Ep - 0aAdr/9/7+8A2GJbOg/JL1BLAwQUAAAACAAOvHtPE9l4S9IAAAB3AQAAHQAAAFBvc3REZXBsb3lT - Y3JpcHRzL3J1bkd1bHAuY21kfZBNi8IwEIbvgfyHOe4etsv+AGVFexD8wo+DIJSaTDWadEISqf57 - m1qoBzU5zDDzzDsv84/iSEBFwZnHoEnkmrMmh1G6mMy303S2zlbzzXKY9h718SxbTAbDNOuA3l8c - UgXgVfkASbKrqsoRhZ1Eq+mWCCPhizMAe/FH+QTEWr1TQwc2GNk6fkdVhwbOSpxrk7C/KC1jIrx1 - dIrtxr9DQU62GgbLAEEZ9CE3ljOZB4TfAP1+3NsxiaYDZzX4ttuq/7x8nyZGnRFJJTY+S9leN/47 - UEsDBBQAAAAIAA68e0+h6AdDhgIAAEMGAAArAAAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBHaXRo - dWJSZW1vdGVSZXBvLmNtZLVVwW7bMAy9B8g/EAaErAfb2HYLkCHpFmA9tA2arBvQFIMq041b2dQk - GUHR9d8nWXHsoM1uzUGWKfLx8YmMpyg2BJTnw4FBK0lwORxoLCF+t1/Ad9lqdW3oCkuyeIWK4EY3 - +x8G9S3cKNSGKi5nQqAxK3rEyls1PVzwEp9J2cIfv9wGPKGRWwReZaBI1dK/XC8v4b6woD16Thrs - BmF2ugRBGUJRGcsrgSE+rB2DMdRuBS4E1ZWFyuV0MjUILTN36KmB9dxC/Bukx8djfIrMbXdGz3VT - 38HVfLmC2eIMPmj8UxcaTVOBASNI4UnI1Arh0fvsmgMU1sG2mnzIMOe1bEw/56fLs9X8d7NczM7n - J+9/3e6qW2G1nGysVWacplwVSSg4EVQGr07+CfvYNy222YR9aiz7yifs83BQ5DBirYWNJpPRCA6d - XlXMWmBFfT6sS87GbJ+WTTuSBz5pl9bX0cjoLxREreVe/fY+3LmqzSaDJFlvt1tN5Cz2SSEsyNhv - qCQ9LYUulDXrkHAR4pIH1zeJxVI1Lf0XfMvECCZdP7vSurLWLz1G6T18Abaany/YG3DDgRtzGYjG - 3yH6SpXFysYrx2cMXClZCO7HK/XeEcQ1HFMH4gyi6ZuZdrG/YHHp+nmPoCVL/WilTU/vxq78H1k3 - z9lwEJ67YfdTs+/0IOZreYNvURXWT1Yo2u+c6eBVUJUX9828J80kRf1qoyOeihuzJe3K7+Q46owl - LyREtS3k9I5srl0aF/zou6ofwzNXwgFGWbpHXEKknF5coys8/HeCoVoL9GmsJtlH8VIA2zU4g5Ib - i7rTcaehRF45GB9gbJ3nryUMkP52Yg1xDr7POxissuZ78Q9QSwMEFAAAAAgADrx7T+fISQX/AgAA - MgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVZj9MwEH6v - 1P8wqmQtSCTllFClwnJUggeg2pZDYtHKOJOuwclYtrMV4vjtjO1006XsAw9UVWLPeD7PfHPkGNU5 - AdX1eOQxGFLSjEcOGyj+2y/j822dfefpBBsKeIKW4OPFbvsprd96dK9l0++W6Dy10jxRCr1f01ds - WWEdfYlnvpMNOqp/fsr4yqEMCLKtwJLtTNy8W72BjQ7g4m01OQjnCE+erkBRhaBbH2SrMNvnZ/Qo - OjSDzhmmiS0yjNeMdwPLTQnnIVg/m07lFj01+JlCeaF9J40PXaWpVNTAzR6OfB9UROQVSKWoawO0 - LNrh2z5SVsZQIcRYM8DfeZhdbxZvqXjZC5PvJ4vVGqTVGXLHYMTYdyMpUAU23pF5o8JadiaJ3i+e - rl6uF2fp8frJq8XN/183HmPuYj7eOjMXd/Ylkde5uLsvWm6rubiXJJdRzsX98UjXcCR2EnE0nx8d - wdVDB9GJDHPhgz8hCnNx6UfS5JqKXu2qQQxuiZm4dEgcD5azXw/F9IwLcjo4M1zzLHG+zEn4Z9g+ - U4qMYXPujOkZZ9xP+6T6x7wrLrhiWDW/V94ej1L6YrmAirU+ZL03GY9s588rKMvT7XbriFgSvlmE - JfnwHK2hbyvltA3+NFZpNiq/cEmWARubGvAHxGosEPz09DtzPPB7+nOPhOkGHoFYL14txZ9Y4xFP - KJNdLF7A5Bm1AdtQrNmTGRe1NVrJFG88PQEoKpgcH2JlbfEBlm+4GUAcMC6Yj+YaJ/oJZhBtGiN3 - HnBcitrK76ZK5C65kXgkDh8D3mKN9sB/CVttKth03JI5oozGSEwz2Wo8yu9+lsUOvuzHTP1hMvJZ - 3eoQh1yGjSsWXdmyo7XepPFTpn6f7BfV5JqTVnq/JcdsDlV37WFspDYw6YI2xzwPa8fXsPHXOAv3 - bWTFIVzBaBp+FQ1MLDeUdMiB508FeOqcwnhNcGT2USIVIPoGFNBIH9ANPPYcGpQtw0QDHsx1fUhh - D8lpLxwUNZR8doDBtkqfx99QSwMEFAAAAAgADrx7TwAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95 - U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVtjs0KgzAQhO+FvkPIuUJ/Ypv2piLFQ3tR - 6FFiXCGgJiRRaMV3r7+HQi+7sDPzzXbbDUK4ZhXgG8LdK/TTOErC9Ok9wh7vJjUHw7VQVsj6jwl5 - n0YD8qVFMehWcECBzGHJcqZYJkphBZghPNUN5xa0GXBc1lbLchUmychGcwhmJXmr6bG7sHh29LsF - obTkYEwClSqZhR+GXY5jPMpHwDm7HMl1Tx0oDsQhLi8cSgrqXM40c0+U5Iy4a8OwxtF/AVBLAwQU - AAAACAAOvHtPv3BPlA0BAAAjAgAACgAAAFByb2dyYW0uY3N9j8FqwzAMhu+BvIOOycV9gG6Ftjus - sI6xbuwwdnATNTW4tpHkwhh793lp0rRlqzAYS9//6/doBHMfPsk0W4GiKmFpKvLsN5L6FDxpMd4p - mFoLLcRAyEh7rFWeJfWDqdAx1hBdjQSyRVguXvp2YvIssnHNYKymHB5Rkj2Orw3VvWdJw/Gvh9M7 - 5KArPEFnXmbR2LR2pXfBIufZV55BqhDX1lRQWc0MT+Qb0rvDpANOIBYt6dp7U8NSG1ewUNr6/gGa - Gi4P/FE61JxQC77hOsXscxStRLWvolTP0RXleJB959l/6xfnRn+6XySD28l5oo5WB+0dbnS0R23/ - mYtSr4wr0SQx3HT3pM3c5U3nB1BLAwQUAAAAAAAPvHtPAAAAAAAAAAAAAAAACwAAAFByb3BlcnRp - ZXMvUEsDBBQAAAAIAA68e0/0A7LF7wAAAMYBAAAeAAAAUHJvcGVydGllcy9sYXVuY2hTZXR0aW5n - cy5qc29upZA/T8MwEMV3JL5D5LlSkRiAbC14YMCN2tIVGfeKjWyfZV9aEMp3x/nTKIixiy3d/d69 - e/dzfVUUzJi0ASLjPxIri66Wqyfj93hKi5o0eDJKkkGf+wdpE8wGSHr03w7r/xjFuqd6A/4VIqRx - fi8OwQ6C12hzi2miUM7nFpW0GhOVtw9392w2KlKyFUbK6E1fa9qv6QAWIh6MhWkGrjQukf64KnRO - +r2QDlrLKuInKJqYWFl7pZcxh4d4TnLB0uCPJqJ3+Tw7GY18n+w4IItNJfj2cbXmb1zsntcr8cLF - th3+BEewGFoxOwuaMXv3NL9QSwMEFAAAAAAAD7x7TwAAAAAAAAAAAAAAABsAAABQcm9wZXJ0aWVz - L1B1Ymxpc2hQcm9maWxlcy9QSwMEFAAAAAgAD7x7T/z2qmNnAgAALAUAADwAAABQcm9wZXJ0aWVz - L1B1Ymxpc2hQcm9maWxlcy9jbGloZzVmZ2hscmt6YzItV2ViLURlcGxveS5wdWJ4bWx9VE1P4zAQ - vfdXeKu9Ni6FlRBKgwqFFVK7G9EWtCfkOJPGW8eO/BEIv37t1hEi7XJJlHnz3sy8eBxfv1UcNaA0 - k2I6PIvGQwSCypyJ7XRoTTG6HF4ng/jbaDRYl0yjgnFA7m015ChrkSkB1TbjTJe4JnRHtu5bSQpa - I1mgVlqFniHzsb9ATYT+SIsoEYhabWTF3mEvkUFJGiaV5xhXp9MYuBKQM+PaOcSXqxvLeL7vI0IP - AkmVg0JGIg5ECVRJBYhk0pqg48IaUMM0M6g0ptZXGG9lVDGqpJaFiaiscPHKmdjh64V7Psynk/Hl - 2eQsQoPRyM2eHlpHaym5fuqsuvBWOfOEng69rpPVtISK6J52Dg1wWYPClc5873gyHp8PkwFCTtoD - pv2ppK19xMWcW+nB0CWYUubJcjWHmss2xn0oMELMiTXMmZHM3q0Cl7tiBmLcQwNnQbTZuH+4d/NW - ioJtrSLGjZY8gvfMMf+f0xNJOTGFVFUyEy26TTcd9QMJBN/RRvG1XBAraDkrDKjQXxJMpJyV2x/F - tuRq904nEfHDvEKmHVVHAkyMv1AJdQ6Az/sErpX1Y32Ax8y7N8ptDrO6fpkTQ5J7wr0VvXBI7v7M - ClTDKGweF0m/fU2r4xGuLi7OY3zMDrKH8APTrlxKTNkXjXE/IxAfoZIG/GRp2WpGCfcgwp37O1bf - vRlF7t3y6N/CFwYVXDkN9gb9fPqel6un2485Th3NO0EyDl3GjbsgbB0KnoICy50c9YtUkHw/mryD - QubLijSQPs+DZvfZoXPQ7urYH9l1W0NvM/rwfiVxbydd4LD/yT9QSwMEFAAAAAgAELx7T27xlNyg - AAAAtgAAAAsAAABwdWJsaXNoLmNtZCXLuw6CMABA0Z2v4AcwRCFBEwbQgoNGjAPq1tJnKJT0IdWv - N+h6b87oGLGhJsYqTYLBICckDkHHVansysgxjKbdgUxSvS9juczcakeW2jgkheGNVlRIkndScJZS - xqXuP906agmK/nA1OeQH+TPQmFlpnBfUXWP2Sitc1KwHmddZfzpbV8XEN/WWY5sc5wxBmADU3u7P - 2T/2NQQZ2lAUBF9QSwMEFAAAAAgADrx7T24/rhdMBAAA+woAAAkAAABSRUFETUUubWS1VllvE0EM - fkfqf7DaFyKxu5zikABBDymiHKItEoqQMpl1skNmZ5Y5EsKvx5490hQoFRJ5yOHxfPZnf/bmAI5l - ZV/bsHeL3uDEiRrX1i1h9RCQTmBGVi/qRmO+d2vv1nmlfLJVgj4RDUiHImAJ0SuzgMkOypfbVQiN - f1YUJa5yujbvT3Jp69EdUARe2bUHeoNgOzAQ4BWHTJFCJQIIKbEJHpRpYoC5szXZkYKiA2HKlCt6 - xpsJuUypHhzAB4cOv0XlVUDPtgwm+bvjczi0DuHs6M2lBG0wGPJaSWe9nQdOkIxro60oR7BC55U1 - cD+/xzgA0+l0JnzFXw+gxICuVgahhend6bS3ZFln6y6nDOHcgosGQl9VbaXQesOJHnWxmWc6k7bE - LfPXUekSZlqQUZlkevUjEqsP1gWh4XYtlgieLRsbQWoll7D/Gf0+rCtqm/BLatr+2EgdCUI0DXgM - gXroe7yePfn9UA3MlcaX+6OcCNArg/F8QE5Q7+x+MqyV1mCQTNxQ22yAKLUJNg05i8CFPOuDNc42 - 6IJCn8gxhGNP8nArJZFQkq2tDSfa55l/9QTEafX9/qR8JJ+zEEtluYjvG2y55F63rpReqHYdc/b8 - GJMjp/MVZYDbjUPvYXryaApL3Iy6CFv1HJ6O+d7Y+NDzm+ycUuJW+8sKk/6KvtBk0XfSKyTdK9Kd - 4mUQM/+cjGy7/32UA4e64AlLgehuzarXJLk7YMRKLUQYKjVwmFtdokv0zjcNwrSNxJKb5p0A0XMt - e5F1U7y7Co7rqEWwbu/W5PcHXyY9xwUVN84St4FpcXnuM+zvAEle0OT4ZbANiK00uoHX2q7boaDd - gZpF4plhoIx55Mk8iylx5djNA11NGqkseVjHNA2zcVjbgHpDvs7GRUVhAx2hphpcaeEfmA/j/zB/ - lN9n7EVaVK6V7KSiNfPbIrwdikDAA27W4xYONQqP/ksnr0NLeclAPG/YkQxORTSyusbhhFWfvUiz - wG5sOzacvEi3Lj6egp3DlNOn7IcSPnvw9PGTQjSqqGkSxAJ9t7SOsNF20yXIubabhw9pnxEhZ6Dm - IRAzG6l9yZ1JiB3/O7RwaGZatCTcnePt4IilyGtfCLa2YDWaMCJ5MwVp+UkRkIbBByaydQFFnXVR - sqp8J/iT6EJF3Kl/JeXExbii6iMrI99OYtwd318fYcP918Iree20twR4GjKfVlv7fRYVT2k2SwAv - VwrXz5Nndskze5jfbWO9IjYrFTY85JL6QhxusGKuDy2t4adrJjrsbIv993zoKI3NsK/HJjhbtlX/ - h3r0ESzNHAfP1CW8f0hnaOc/5PPXcP9r4fdcWuBrIen5mzLfzZasmRa8K3us7X+DLVyTfufpylbO - p8IsIs07XBhSB+1Gw5PSLaLTi/HZDSgmSGK4MIo0hX3lfKHp31jRxjmsBG9hz9ucW9ZvP+v65t04 - 0BUR9Yq+dpx+AlBLAwQUAAAACAAOvHtPyOhPDqsCAACLBwAACgAAAFN0YXJ0dXAuY3OtVFFv2jAQ - fkfiP5z2FKQq1fbadRJtqYg2tkph62NlnAO8GtuzL6yo2n/fOQmJKDTdwyKkYPv77r47f5fzc7i2 - bufVak2QyBHMlPQ22CXxvnfWC1LWpDDWGipQAI8B/RaLdDhg9hcl0QQsoDQFeqA1wiyb77cZMxyU - QZlVFzgdB/cVicNjelUqzbSLXtDUBuLDftBsK08Ariztc/SfppkhXNXVNmHTGPcEa/JEXBrjAiPM - Uq3KmtYPvUGH3CEjd5n5ibIhnNTUSMrFxmkMcSe8IX4i15bXVUAjNhickNgXdDh4Hg6AH1cutJIg - tQgBchKeSlefNIAK5NVWEILkQggC+aiEY37jkrJihiQKQeIz7uAS3h3tv2NZdawu4T5Vkh20MGbo - VqOa1YrpnkPS5SHtosP+OZH5RcbD1TOskC4OeWzy+VoF2CCtbREBAaTQmj2/2FWG96UhtcEUvgfk - jQ5LFkRRQJwXnofAaz6u+khCGb64I3Vbq4pWE+YNMcmaf9eW81bmaYO+2qUWkY6LgscjGaV5HJaN - 41oXSiva/UAf3Zmc2kyb98OHh/ej7gq7plx7ZFNUBfGdw61n4/22/hHGhXDExb2uJmcDaSRrPmZM - bZlTIteQz/ZR7hWtJ95bPxWm0Og/JW+JWbAYEUAAecHDh4ZSyEx9L1KEGjTO72KbyceGeuAjfHLc - 2ehsYSDK6tE/30eu9J9BM39RW0v6nyba+7vWPp3P7/gr/KtEnkanHGr20ltWSrKxc7xd+bz5GIBw - 7gyy5vs6MVvlrdlwWYBm+7qv1BISBqRZuMEtausiJRm1hI50+MR0KVfXsNBPniS6qOdOrLDtXdu/ - wyXqgP+aYRoonIpXbRzLWYpS063S2JCOMTlx32Qv5B4XuZWP2GQ+ieEpfGmR5sW/v1BLAwQUAAAA - CAAOvHtPUqxX1D0BAADuAQAACgAAAHdlYi5jb25maWdtkF9PgzAUxd9N/A61jyZl4ADBgEsZ4Iua - JerbXjp6YZjSkrao+/YCi3+y7K0995zzu7nJ6qsT6AO0aZVMsee4GIGsFG9lk+LB1iTCq/vLi6RS - sm6bQTM7GkcBocQcjIXO+YTdC+ixYlZHfc8kF2Pj/J8VxjmSrIMUM9M/g10rDRj1zO5TfI0n/G5+ - dIoPAkyK6a/taZJGswajBl3B66Efa96k6aFq6xY4Rosf8OKEnPzRUK9VBcZsZiZXVoLFiOlm6EDa - kehsi2qvMmUdLgRGxnI12EfVFJLtBPAU10wY+DcoWwFTTKjGbI/qcZVpkTOnSRanJ0yuCNlo9Q6V - fRhafofKvIiycElJeRNR4lM3InSdxyQs/cD1gtKL/IiQc0kaBlngxR5xozIk/i3NCXWLmATx+obm - Qebnyyn5DVBLAwQUAAAAAAAOvHtPAAAAAAAAAAAAAAAACAAAAHd3d3Jvb3QvUEsDBBQAAAAIAA68 - e0/UlzcKeRMAAMtNAAATAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bdVceW+jRhT/v1K/A3UVOVUD5sb2 - JlFzbA8pVateUv9qCSYxWgwWEKdp1e/e35s3A7Yx2Mmml3djhpk375p3DDODTz+6/ubqh5+/favN - q0V6/uEHp3TV0jC7PxvE2QA1VBeHM5Q0fE4XcRVq0Twsyrg6GzxUd/p4sNGWhYv4bLBK4sdlXlQD - LcqzKs4A+5jMqvnZLF4lUayLmxMtyZIqCVO9jMI0PrNqTFVSpfH5VV7E2mVead+Hi2Uan45EtYIp - qye+kZ/bfPak/UH3zWcRFvdJNtXM5W9vNluW4WyWZPe7mu7AsX4XLpL0aap9H9/nsfbjV2swf374 - QX0j9HbSz8Q8Tu7n1VSzTPOoCw2pOC62e96G0bv7In/IZnqyCO/jqfZQpMeDWViFU1ExKlf3n/4G - Do6cKxS1VVyUSZ6dDS3DGmrJ7Gx4Ez7FxS+4AVRWng3nVbWcjkaPj4/Go2Pkxf3INk2T8EiQ6W9p - kr3bBWhNJpORaAXo2RCKG2pP8krjfZlTrWZqru+MjYnme5bhDzUxTmfDOAtv01hvRJpm8aO2Df5G - cDEtl2GEPssiLuNiFQ+PnLeQUGDSqqclmqr4t2oUlSU1aUZZmUfB5V2SptMj2/G8C/Ot+eYouKYW - S7VkeRarSnsN3DS98cVYtThrLY49vryuW9y1lkv/+upzS7V4aMnBclI9TU3DfiOgaKgA+f1PX3x1 - /Yv1yydvdmuAcByZFxBvJORjUYs4qrQnOY5RGpYYOgg51NiLhq7v4oYt62zou77hDEfcdRlW86YL - usMKvnYm48AYnzi2Y/g3rmOZhnMC3HPd9ww/1V3fNKwT8R3pVmB4J/SFatSKko9+J+aNYwNkQj2/ - NFeC6tzxUeVoN854PDlxrbERRNSDsRACLjGC1LYBcCK+575PpAmjzd9XziQgxhx/Al7VjQtqJ+v8 - /75bUltKGoxdwwdly7BvXNt1QU9IOhk7xiRdk/TKCWB47okbEE9O4AdoUTcNkg5yDpOjgWD8jg2u - U1xsiCu+pSo31XFiCl2kQuIT8f0lIblRmOpCB2GXCSt9E811rXo2usoq/oZaHQ+0XNMifU5M3/Dk - TYOkJgb/jsPiiyKcJQjbIoYoEx5q97L6R8RtMPMA7/yeXPWb7McyhutaZ0MnsBwj8AJ4/hNuXajY - sgIPjTYaJ5ZluObYRSNuLdewPcdr8P5QhFl5lxeLs+EirIrkt2NLhAidLr4Llif+5JM6HORLLb+7 - o0w0NOtAQ9V6lKd5QY76ufi8EZWNi3qQto3D6sWhuow2NbRriDzldJ5N1me7yhb4q/YKXXqF7tnO - Cf7mlmVO4KDrHeuBoRhNJfNi8MmbzjxRxMs4RLLJclnsBi2T32POSt0wy7xEhs6RQgsKNZ2AUlna - xxx7N+E4aElS7VwrGXFdlYnbmdNuZ2lJ8HGeVHFXbnfQjRIMXdoYZkm5TEPk+CSjIdVv0zx615Wg - Dc7QeoL5zIvT9BvMl8YyVx/ZpszWR871kU1ei2/UJjOu4MwtK0Vq5npKzEfOxc4cvgF8IXJ1u1M7 - n8tuApRUzfdP6/eUoswJamWml22ooD/LQxijq+1xX+FHDNNKe+ADiU/0bPd2LmsZAEfzAIlGzQVQ - ZC9QEwIAY0ogodS0gKGY6WZ2QChpFkBUguu61Wpaa28HSDsx41bm5jV1GVJk4f1cB4JcJwxfjq87 - MQKuZbPmatbYqEZ+X7Mto8o2ZmkQ0ki+9jAmV5ZpG5MbmNAYN74f6Y7h1X8TMqwrU7eQkVIn0B0f - V8Cj0kG6CnBFlRvp3B3fsoTMSR3xh0SNnjRGyJk3Dcnfa8PA/0aG0f2LxZmASYUdzOmOoAsuI8w7 - dPwJDl3d5isEdCKIBhATotqokbU344nAZJskq8QjRa1ZjiwhIn/bhk/tIKHKmN6UkiZmA3pdecNc - Njp4HdFNMVD+mMYCgV8M2piGEN9IopEpa0WNgOV613DlOI1FayBLaLuaMKDPYzkBqCAhLmsEf69V - AoYUJx4MJYLUtuDEkdYRUIkVFRFNtHN9rbym3RL3Jt0Jq/JlCW3fT9AoieCyRvLVFOrDFF5doT7M - qlEoZs/jRqGSYFuh1PC3K9SH1Usikpdehb7ajOIuzak5je+qrvRNCbhjSuA+Py/TB6mzSiKsHIRp - co/ZySKZzdJ4X/Km7KD9sXOyoIN/YvVo9zTj48/Fp2+lYKCWCgbdc5zA3r3a8Cg1hWfRreY0ripw - TomQlysMx2vhEGpS2p74/6BGkyzDN63xhAlKrfWXJNPlSLvj9kgvwt9Us+X4zHd7+UYOTfhQ5bvb - aWoqAd5LqB7BptPwrpLybX7UAhcMYPBmR2uKZ4Up1oWqedPaHpgqvK352q3wRQhJJS09LOKwz5B5 - 6ts5eAqNWE9jPG2LN8XnfS3e9Z9t8evG7LPD9Kik8em2CGOT/nUzZ+OR430FBI5eAe1+AZ2DBNSX - Vtdw40mVnEtiabfD8qp8AT7GPYTibLbMk6ylyIbLrgDuBRaanqv+f0/BW6rbo5d5/ggo/fYhSfG8 - HEf0KNw7EOJB9aV+2U3yXJs7im6HmqzG0TpV5deqenaKaenVbvS6c8Ud/2jktF0UhUlXaq0Hj8vL - ZVxEYdkfAcsqXrZSTTuU3qXxNmMi+utYKFiUUyzxFHEVbUfjtYWOOA2rZNWTJdq8zNJdo3ObF0gl - amYBXZR5msy0jy9M+teXDjYTdHtlQyi3X/9dqtwjxrk2q6bT2xgDs5EZOiaHHaswbS0cpoA1rdHy - 2kO5sWjUmXmHww4IVr0bbKuqPUVtR7G2ZYS34P9hQ9BWRNxA9bIBMKq4rBAA0jR+wVDcpg/xe5Gf - 1Vng2ea5FZKSbB4XiXoq6I1Mt3k6k3D9Ucd8T+XOZtof78n4IQxtzV43/bEvTTv2YQJuCTdNQ9hM - NEfSeF4wElF4GRbwo97gG1XhDVYKCXOv/W0hbHNwGPFmEupfXFrbjQ9FSa1iyhIXaH1GxqtD6FYD - xzCRBWN62C0WYdqdAhqNTO/y6KHcpfH8oSJTWROY5LmN7myJdz/ueb6qM107g87iKC9Cjk0PGXQL - cgekUFrCfk72rGdSmCn1PoBZ3u5ZInfdn08FY+fgZaXY28lG43EtShutL1zP2JqCl3qa3+cHPeJ6 - /Y+4k7H5+k+4u6MLwberhb+pZMYBB3sj5qIEWK/0kLm95LN3S+igvRDz4sDtkK+/18unBfLE/2JD - xBXf2Ld6wXZI3fc/sBkSOIEbuFsg9gbIte98bvtbIM4GiOUH187bLRB3A8R+G/iXV1sg3ubGzPXl - 2HKesTHjH7Qxg6MFOzdmrEmzbnrYgrMVWGIJlk4VrFzHsOc6Nnl/cgNsy+sm7cpja9wlAKzXznVP - 3Ac63Yn2FZd8Y/IToZhbJjb3LZu72HNskqXoYOGIwZeCFOvpd3AA0oFYDHaxbswbIrgxsRWiVpOx - lSK3UMbifiJhgI9KEXPO688ulZiq6h1xP9XbEd9NGe2ibOvcz0aJWySTEe2jMAI0TCSwQm+X4NOh - vjrzg8pAbEHx0nctnS1vG2FZ+rEnlss9jPnKsUjtzkp3rC/RIEFsMxB9A1/pDSJbUmQm7giBfVIR - 2qjGE20eMSTb7JWP1lq/gY5mKYxLV7HRz1sNpHKmQFv+LD2aUfR5JwIAFm1YgQ9U1orCnhL9URVM - wRdXizYrBKF6Q8+lrmA8AqxUZABYkpFMhooR0NcSBlQSYK7iSrarIfPqAXbkANurQHFFTKJRjBMx - 4YitNtHQ7L2RQliDgZBDyOkJomR7YpdNqK82QvDFssgSBlaYktScgMMJpZq/QOkJG3u8Hxd4zL4J - FcvxxWV9uHn8ndpEoEvRk03WUiVRh9ZSWqqyTR7LVYBdJGGhNLDCk4RhBKSV2sbplhREOmCZ6KoE - NmljUjqBK43LUcZkETq13SNLwcqC8LU5z+kKMecsQ0Dk1RYS9dNdpRuH3d4TguIWKKXsuKyrQupm - LMjRgSyyMwFFpjkRWIQBAiFbGsHhyvyj2qJi5LKAYpPM5970zTGgMW4eZOCpzRDuVJctEbyIM537 - CycQZIQ5CRlVB8BYXBROJRUM6tKphAuAlsuOHXjiokQNmMC65HLLTijElZtosB42R+XvxJz4ZgWT - UWDg1vbr/PXdYy5LqU3eUpeBkI4AUZtgVrSzKm1ZIkcQ9iKMyhOeZ1M6UbYmOwpHpBjl03ekS1o6 - KEmv8yXOALoIRNnnyFZL6azf1A4zZsE8HA7j6M6OwI4r7+2aH9aNtDcxmnLshZ6l9dQOJQMr60Hu - bdZuwLmlyT5su3IkgIViEdfonE4p2ChQHdUsLsVJLtUqY++TbmmLyEphUPqrQzYm1E2atVd60ORF - PhWgdmzZpqVcKtx7zF0dtngsRTKpww0TsFWiqVkDFO5UJsGfLNl8vEEEE5mzeZi5QyBPPHiUVKgs - xp/0oyp0j/eXOYA3NmOLK0KnYkBXwlnS/x2RfuCygFVDYBF69nEqbWZQKsmePmeVWnl2k1/klrXL - Sl0RBZKPEHLm58yyMWgyv/icX1hy4QA8mk26VRq/ssfydEEgOKptmZPCummzrU+CQwIgs/Q+YfDv - CoDMWV8YnEyAsA6DQuAmDK7LLxTimN4rBkDm7nXD4EsCoMyOjgnOmjBYy0p164KzJjxHnlOhRGyR - zdoeZWR3pVPBo0Dhz+lCY8XMKkcSPcnZxhEJgz8h/FhODMeoQ0mqR047alU2c3GZ7msHk26lQh47 - 20+uHYmoBphmIiIjHDkYNcoKh1ihaz1ZVWqjmR0PpwoNJTklsyJLLmR18EgjlKEHaUD4UAdnmZNe - fFaPRQ5h1ulCzq/Ft1BDLdJ47WHCXp99AkKIL8dRCe+hpCYUUi6pcIa3OFKsfIhdxwZGLQKJQC9D - iMWKlEPTBBHSjZq+U5gUARcOzzbGczVfTIbhueIaKIX95JEXdRzqaz2lOtbG2oLt7nhmtdvPrBiD - rUfWpnbUTc1HxNtPz3k1elvS+TTMbXruq9Ej+Q6h6L2M4iGnp/YsH8r1zfYiYnPkofuwlIemlx3U - 2uSqyB87drGxSkmHpcUf7238dw70bJ9hSR8WWMc+9DCa4to76tifL5oNnT7FNQeBDjsE1Dris/90 - 0AZNcc6nd+mfFvE6OZ7ljxl0MtOreazHiwfsbect7tc3s7o3YpxLq+uURr32/5x9su2tr8DcfxIj - uSvChdoNbZsdISHb/ShZ0NuHYVZ126/v9UIy4y2EPU4VL7BboxODSuzONwF7JP1sEc+SUMuz9Ekr - oyKOMy3MZtrxhmsRT58o7L2r9e1DKrxHsncLqvPIZPuIl7kf26a3tjxWGvHz+d56u2QvH3u3cw4l - 2hcI21bpr0Xu58TDvTGxLWU7vrdjvL0W4/8P4r3cUYJ1R2m/bLv/OMXmC009b1Ix79AnKL6iBLbz - H5Hg5eHBPRzd+tb0oS+C0afW1usq3zT/EeWLfVEOga/HvO/YgvcXj5tjHzBu+yKN1UQaa28YcSeb - qXZPXLI2offyun3Iteu8qXeA3HQy9xAl2of40uHnlNYnXIe41Wba7Zn1HiLzoT5q9fuodYhKtqZ7 - /WYzfpbZmHuhWZK9M0T60PmcuxRPBdocrxbE2YH+e8hkkSTsnjDS5XS0/hsYpwgEybI6b8BmOJm0 - wFOJgbF+u0LhJoGpwcSOh9fffH3Fjyw3OUZ1NjzR7h4yPmx83Ioa9ADxObF6vPGku36zCosGTDvb - ja0BlQN71vCIKBZW8ds0prvjIQMMt99L4moDr2tfVHg//BanMY8HyWxwog24qXkWb6jRC943cK0v - f/j6RkoNyoPBDkjCoZhY5+4+rmTt5dNXs+PBhn0O2lxqx49JhmcvIwtXyT09cxl5RjzU2tglVRGB - pvjljRI/vQHipYGHI9H4mBfv4M4LDDke+6IRzqKOlkgb5ejOM/AjJOoE7F5lwUryNIXrk86yfPDJ - oR1FHZ/ho67m4T2F51EfmqIf3o2Nv69fM2TXyerlw4VPjcUIl0skiis6SXnM8Nvgf2pxWu4KShvW - Y4gFJ3gcuR9Y2OHxg096wsUb5eO1W5+O5A/xoEi/M6P8nuOy/PWBAd8NZKMAwIJT09p+u6mB7usB - 4IH8eYTBzvfJBuenI/Tbj4rS5j5Ul2GZRPTbP9s41T2XGSNut0lhXtKlAs6JA3Xbeq+qTxkbL04N - zn/OHwpavNGSUkPP2dNH+1TQzBvW3+1pSDYf4NaiMNPoMLj2VBNCxZx/FOlzFRa0t3JZ5/S20EY7 - UN0+aTEdlIXTa6Ho++N3NwiK2q/yR36g8zCd52U1xY+ujEfhMhkt4rKk8PLrJrrD5du58LRL0NNQ - dZanXgfavIjvzgYqDobvQjy3jyC+XodC/XNPVxQa7DuPWFd4wKTfqvrlNg2B/PxadiNFNqobhecv - lHSXTD8lOGb5cskQ3PV5jkjVYn73IfKL3x+KeGcT/3wWjgom0Q4AklqrctjuPc0MitrOxNMEwpaW - VGiv7aodfZP8oaSfA8syxERD+2EeU/dhqcnJNpsajiTSW5jpE6YI+bty15tF72KMR1JOnzcIisrg - XKn0NDknIX4BF+UvZNL0e2Sno+R8w6p3RpXeeKFtphD6XZzNrLIZ/lR5G1lr/UkNaQfgbqynIxn/ - qSh/ue0vUEsDBBQAAAAIAA68e08ISi14IRMAAMxLAAAUAAAAd3d3cm9vdC9kZWZhdWx0Lmh0bWzV - XHtvo0YQ/79SvwN1FTlVA+aN7Uui5nHXVkrVqi+pf1UEkxgdBguIc7mq372/2dkF2xibpGnV+i6w - 7M7OznuWXeD0s+vvr37+7Ye32rxapOeffnJKZy0Ns/uzQZwNUEN1cThDScPvdBFXoRbNw6KMq7PB - Q3WnjwcbbVm4iM8GqyR+XOZFNdCiPKviDLCPyayan83iVRLFurg40ZIsqZIw1csoTOMzq8ZUJVUa - n7+N5vllXp2OxKVqK6snvpC/23z2pP1B181vERb3STbVzOWHN5sty3A2S7L7XU13oFS/CxdJ+jTV - forv81j75ds1mD8//aS+EPI62U/EPE7u59VUs0zzqAsNiTYutnvehtH7+yJ/yGZ6sgjv46n2UKTH - g1lYhVNRMSpX919+AAVHzhWK2iouyiTPzoaWYQ21ZHY2vAmf4uJ3XAAqK8+G86paTkejx8dH49Ex - 8uJ+ZJumSXgkyPRDmmTvdwFak8lkJFoBejaE4IbakzyTni9zqtVMzfWdsTHRfM8y/KEm9HQ2jLPw - No31hqVpFj9q2+BvBBXTchlG6LMs4jIuVvHwyHkLDgUmrXpaoqmKP1SjqCypSTPKyjwKLu+SNJ0e - 2Y7nXZhvzTdHwTW1WKoly7NYVdpr4KbpjS/GqsVZa3Hs8eV13eKutVz611fvLNXioSUHyUn1NDUN - +42AIlUB8qdfv/72+nfr9y/e7JYA4TgyL8DeSPDHrBZxVGlPUo9RGpZQHZgcauw9Q9d3ccGWdTb0 - Xd9whiPuugyredMF3WEF3zmTcWCMTxzbMfwb17FMwzkB7rnue4af6q5vGtaJOEa6FRjeCR1QjVpR - 8tHvxLxxbIBMqOc35kqMOnd8VDnajTMeT05ca2wEEfVgLISAS4wgtW0AnIjj3PdpaMJo8/HKmQRE - mONPQKu6cDHayTr9H3dzaktOg7Fr+BjZMuwb13ZdjCc4nYwdY5KucXrlBDA898QNiCYn8AO0qIsG - ScdwDg9HimD8jg2qU5xssCuOUpSb4jgxhSxSwfGJOH5DSG4UprrQMbDLAyt505jrUvVsdJVVfIRY - HQ9juaZF8pyYvuHJiwZJPRj8Ow6Lr4twliBcixiiTHio3cvqXxCvQcwDvPMnctXvs1/KGK5rnQ2d - wHKMwAvg+U+4dCFiywo8NNponFiW4ZpjF424tFzD9hyvwftzEWblXV4szoaLsCqSD8eWCBE6nXwX - JE/8yRd1OMiXWn53RxloaNaBhqr1KE/zghz1nfi9EZWNi3rgto3D2otDdRltSmiXijzldJ5N1me7 - yhb4UHuFLr1C92znBH9zyzIncND1jrViKEZTybwYfPGmM08U8TIOkWyyXBa7QcvkY8xZqRtmmZfI - zDlSaEGhphNQCkv7nGPvJhwHLTlUO9dKQlxXZeJ25rTbWVoO+DhPqrgrtzvoRgmGTm0Ms6RcpiFy - fJKRSvXbNI/edyVogzO0nmAe8+I0/QbzpLHM1Ue2KbP1kXN9ZJPX4ojaZMYVnLllpUjNXE+J+ci5 - 2JnDN4AvRK5ud2rnc9lNgJKo+fpp/ZpSlDlBrcz0sg0V9Gd5CGN0tj3uK/yIYVppD3Qg8Yme7d7O - Zc0D4GgeINGouQCK7AVqQgBgTAkklJoWMBQT3cwOCCXNAmiU4LputZrW2tsB0k7MuJS5eU1chmRZ - eD/XYUCuE4Yv9etOjIBr2ay5miU2qpHf12TLqLKNWRqENJLvPOjkyjJtY3IDExrjwvcj3TG8+m9C - hnVl6hYyUuoEuuPjDHhUOkhXAc6ociOdu+MoS8ic1BF/SNToSTpCzrxphvxYGwb+NzyM7l/MzgRE - KuwgTnfEuKAywrxDx5+g0NVtPoNBJwJrADHBqo0aWXsznghMtkm8SjyS1ZrkyBIs8tE2fGrHEKqM - 6U0px8RsQK8rb5jKRgavw7opFOWPSRcI/EJpY1IhjkiikSlrRY2A5XrXcKWexqI1kCW0XU0Y0Gdd - TgAqhhCntQE/1iIBQYoSD4YSgWtbUOJI6wioxIKKaEy0c30tvKbdEtcmXQmr8mUJbT9N0CgHwWlt - yFcTqA9TeHWB+jCrRqCYPY8bgcoB2wKlhn9coD6sXg4iadkr0FebUdylOTWn8V3Vlb4pAXdMCdzn - 52X6IXVWSYQVgzBN7jE7WSSzWRofSt6UHbQ/dk4WdNBPpB7tnmZ8/k789q0UDNRSwaB7jhPYu1cb - HqWkcC+61ZzGVQXKKRHycoXheC0cQkxK2hP/X5RokmU40tpOmKDUWn9JMl1q2h23Nb0IP6hmy/GZ - 7vbyjVRN+FDlu9tpaioB/gmmptPwrmrxpha0oPhthUcp7g+mWAuq5l2KqMLbPXQsMK4u8ethEYf7 - jJanuZ24FBqxdsZ42tZtit/ftW7Xf7Z1rxuuD+fYL5LGf9ssjE36102cjduLv8sgcOxl0N7PoNOL - QX1pdWgbN6XkRxJJux0GV+ULkDHeM06czZZ5km3LcYvGdqT2Aku09BR9L9m2Rdtbsl2CbYvsgDzm - +SOg9NuHJMUtcRzR3a62TwHiXvTF7rhruPO5U4/Ylox1wKv8V8gZdi3A9tI5/pFytO1RhK1WasEG - 97zLZVxEYdkd1soqXrZyRTs23qXxNjEifOu401+UU6zRFHEVbYfWtZWKOA2rZNWbjlnauqHPC+QB - NSUA72WeJjPt8wuT/nXF9CartpcihBC7Zdyf1PNZNZ3exhB5vGcZYmtxpM3bYbakDGiV66GUazcd - CXA43GphwblB94IORu/UX3gLuh6Y8O04xF2fIS6jissK7pam8TMEd5s+PMN8oBPtj2cYxZpzJ9k8 - LpJqn3/f5ulsr++azxLIbKb98UxytobbP00zDyQnx+5N7jQNobtojlDZ30lFRFqGBSyze05UhTdY - 9jpsB2vIDrpRG7Y9y/IvLq3txoeipFaRlOPieZG+Di9bDez5IgNAqxnic5geksb0Lo8eym2Z5A8V - qX+NUeLjNrqzD+Kb5ysR5dtZYxZHeRGytz9kkCOG2O9vYt31ORmjnhog9++9a7C83fem3PUwUeez - ZNW14+t03Pdyy8tuubdmjaWe5vd5rzswb/8d2GRsvv4N2O6YQPDtauFBKglwuMDSvbkoD3EPntsr - Egd3LHot1ZsXPVfrv/tJL58WiNX/i/V6VxyxrfKC1fq6739grT5wAjdwt0DsDZBr33ln+1sgzgaI - 5QfXztstEHcDxH4b+JdXWyDe5r7B9eXYcp6xb+D32jfAzvfOfQNr0izr9VsPtQJLrBDSpvfKdQx7 - rmMP8lc3wK6xbtKmMXZuXQLAcuJc98R1oNOVaF9xyTcmvxKKuWVi79myuYs9xx5Oig4WdsC/EUOx - nD6CAgwdiLVKF8uavF6PCxMr9WqxEyv9coV/LK4nEgb4qBQx5bw86lKJR1W9I+6nejvi2JTRLsq2 - zv1slLhFEhnRMj8jQMNEAiv0dgk6HeqrMz2oDMQOCa/M1tzZ8rJhlrkfe2I114POV45FYndWumN9 - gwYJYpuB6Bv4Sm5g2ZIs8+COYNgnEaGNajzR5hFBss1e+Wit5RvoaJbMuHQW+9C8Ek4i5xFoR5q5 - RzOKPi+UA8Ci/RTQgcpaUNjyoD+qgin44mzRWroYqN5vcqkrCI8AKwUZAJZ4JJOhYgT0NYcBlQSY - q6iS7UplXq1gRyrYXgWKKiISjUJPRIQjdoJEQ7M1RAJhCQaCD8GnJwYl2xObQEJ8tRGCLuZFlqBY - YUpScgIOD9DU9AVKTth34u2iwGPyTYhY6hendXWz/p3aRCBL0ZNN1lIlUYfWUlqqsk3W5SrAJoew - UFKs8CRhGAFJpbZxuiQBkQyYJzorhk3aN5NO4ErjcpQxWYRO7UbIUrCywHxtznM6g8058xDQ8GqH - g/rprpKNw27vCUZxCZSSd5zWRSFlMxbD0fNCZGcCikxzIrAIAwRCtjSCw5npR7VFxchlBsUejs+9 - 6cgxoDFuVjLw1GYId6rLlgheRJnO/YUTiGGEOQkeVQfAWFwUTiUFjNGlUwkXwFguO3bgiZNiNeAB - 1jmXO0pCIK7c44H1sDkqfyfixJEFTEYBxa1tJ/nrm5tcllybvOMrAyE9oUJtgljRzqK0ZYkcQdiL - MCpPeJ5N6UTZmuwoHJFilE/HSJdj6RhJep0vcQaQRSDKPke2mktn/aJ2mDEz5uHZJY7u7AjsuPLa - rulh2Uh7E9qUuhdyltZTO5QMrCwHufVWuwHnlib7sO1KTQALxSKu0TmdUrBRoDqqmV2Kk1yqRcbe - J93SFpGVwqD0V4dsTIibJGuv9KDJi7xprTYU2aYlXyrce0xdHbZYlyKZ1OGGB7BVoqlJAxSuVCbB - nyzZvPsugonM2axm7hDIDXmPkgqVhf5JPqpC93j7kwN4YzO2OCN0KgJ0xZwl/d8R6QcuC1ilAovQ - s49TaTODUkn29Dmr1MKzm/wid1RdFuqKRiD+CCFnfs4sG0qT+cXn/MKcCwdgbTbpVkn8yh7Lze9A - UFTbMieFddNmW58EfQIgk/R3wuA/FQCZsn1hcDIBwjoMCoabMLjOvxCIY3qvGACZutcNgy8JgDI7 - OiYoa8JgzSvVrTPOkvAc+RgFJWKLbNb2KCO7K50KHgUKf04n0hUTqxxJ9CRnG0fEDP4E82M5MRyj - DiUpHjntqEXZzMVluq8dTLqVCnnsbL+6diSiGmCaiYiMcORg1CgrHCKFzvVkVYmNZnasThUaSnJK - JkWWXPDq4JZGCEMP0oDwoQ7OMie5+CweixzCrNOFnF+LoxBDzdJ47WbCXp99AkKwL/WomPdQUhMK - yZcUOMNbHClWPtiuYwOjFoFEoJchxGJBStU0QYRko6bvFCZFwIXDs43xXM0Xk2F4rjgHSmC/euRF - Hc+cte5SHWtjbcF2d9yz2u17Vuhg65a1qR11j+Yj4h0ez3m18ba480nN7fHcVxuP+OszoveyEfs8 - 3HNg+VCsZraXEJs9+u4nebxXWtIs8seO/VesUdKTvOKP9yH+O0+bbD90kT4ssF7d90kpRbV31LF7 - UvTY64HgnvukyubzKL0eY9kYMzy4vJ/le1b2Z/ljBpnM9Goe6/HiAfu2eYv69Y2n7o0V59Lq2mXj - Nf5n7mltb1sFPTb1k7siXKjdxbbZERKy3c+SBb0SF2ZVt/363l5IJryFcI9TxQvsxuhEoGK78zW1 - PZx+tYhnSajlWfqklVERx5kWZjPteMO1iKYvFPYDa/XtxyvaOyMNCX2e59t+Jsk8jG3TW1seK434 - +XRvvfpwkI6Dmzl9B90XCNtW6a9F7ufEw4Mxsc1lO763Y7y9FuP/D+y93FGCbUdpvwn6krdtdrzm - w7RDnhjxFTmwnf8IBy8PD25/dOtb0H3fUqJfLa3XFb5p/ivCF7uiHAJfj3jfsQXtL9abY/fQ26FI - YzWRxjoYRtzJZqo9EJesTeiDtG4/ltn1BKrXg296lLSPEO0+vtTnCaLt6VYfp9pMunvmvH047uuh - 1n4PtfoIZGuyt99oxs8yGvMgNHNycH5IP3r65i7FPYE2x1PvcdbTe/tMFYnD7ukinU5H659nOEUY - SJbVeQM2w7NGC9yTGND12xUKNwkMDQZ2PLz+/rsrvmG5yaHV2fBEu3vI+Lnc41bMoNuHd0Tq8cZd - 7vrFKiwaMO1sN7YGVCr2rKERMSys4rdpTFfHQwYYbr8yw9UG3iS+qPDq8i2eYDweJLPBiTbgpuY+ - vBmN3j2+gWN98/N3N5JrjDwY7IAkHIqIderu40rWXj59OzsebNjnoE2ldvyYZLjzMrJwldzTHZeR - Z0RDLY1dXBURxhQfhSjxVQgMXhq4NRKNj3nxHu68gMpx0xeN8PzmaImkUY7uPAPfx1BPhx4UFqwk - T1O4Psksywdf9O0o6viJPOpq9u8pPI/60AS9fzc2/n39GpVdJ6uXqwu/GosRLpdIE1f0POQxw2+D - /6nFabkrKG1YjyEWm+Bx5H4gYYfHD77YEy7eKB+v3fp0JL8NgyJ9AkX5Pcdl+WL8gK8GslEAYLmp - aW2/fNNA7+sB4IF8c3+w81WnwfnpCP0Oo6KkeQCV+hrNNkZ1zWXGh8vtgTAn6RIAZ8SBumy9BLRP - FBtv+QzOf8sfClq40ZJSQ8/Z02eHBNDMGdZfRBGYtCjMNHqMWnuq0aJiHmuXKL5TIUB7KxdwTm8L - bXS+Y1L5RCtRGb3zkN1rmMzLT8xArGE6z8tqik9+jEfhMhkt4rKkCGL0J3vnWhIUHypQ+VjqQJsX - 8d3ZQIWy8H2IG+8RuNLraKa/83SFr8FFVLR/FW4R6RNIv9+mIbCfX8t+JKBGJKPwoAnWrAzOf03w - GKT2YtIRgPV5jmjSIu7i40MR7+RD6PKnuKCvMhG1pJ8ivqesXNR6F/N4hAwtqdBe67kd+ZL8oaSv - Q0HbaWloP89j6j4stXqa+8uPN/QlH3o5L31Ces7fl21MafI+hhyTcnpIeArv4FwJ5zQ5J7J/x7jl - 72Rd+CAVOEvONwxspxfv9U9tM2DTB1K2YviGplV5G1lrrUd5dwfgbqynIxltqSg/3fUXUEsBAj8A - CgAAAAAADrx7T5mrGOweAAAAHgAAAAsAJAAAAAAAAAAgAAAAAAAAAC5kZXBsb3ltZW50CgAgAAAA - AAABABgAHDAW7nql1QEcMBbueqXVARwwFu56pdUBUEsBAj8ACgAAAAAADrx7TwfdjtorAAAAKwAA - AAoAJAAAAAAAAAAgAAAARwAAAC5naXRpZ25vcmUKACAAAAAAAAEAGAB+kRjueqXVAX6RGO56pdUB - fpEY7nql1QFQSwECPwAUAAAACAAOvHtPvKpX+jUCAABPBQAAGgAkAAAAAAAAACAAAACaAAAAQWRh - cHRlcldpdGhFcnJvckhhbmRsZXIuY3MKACAAAAAAAAEAGAB+kRjueqXVAX6RGO56pdUBfpEY7nql - 1QFQSwECPwAUAAAAAAAOvHtPAAAAAAAAAAAAAAAABQAkAAAAAAAAABAAAAAHAwAAQm90cy8KACAA - AAAAAAEAGAB+kRjueqXVAX6RGO56pdUBfpEY7nql1QFQSwECPwAUAAAACAAOvHtP2D4W8N0BAAD/ - BAAADwAkAAAAAAAAACAAAAAqAwAAQm90cy9FY2hvQm90LmNzCgAgAAAAAAABABgAfpEY7nql1QF+ - kRjueqXVAX6RGO56pdUBUEsBAj8AFAAAAAgADrx7T70Of46pAAAABQEAAAkAJAAAAAAAAAAgAAAA - NAUAAGJ1aWxkLmNtZAoAIAAAAAAAAQAYAOguNe56pdUB6C417nql1QHoLjXueqXVAVBLAQI/ABQA - AAAAAA68e08AAAAAAAAAAAAAAAAMACQAAAAAAAAAEAAAAAQGAABDb250cm9sbGVycy8KACAAAAAA - AAEAGADz9BrueqXVAfP0Gu56pdUB8/Qa7nql1QFQSwECPwAUAAAACAAOvHtPnvjBBkICAADvBAAA - HAAkAAAAAAAAACAAAAAuBgAAQ29udHJvbGxlcnMvQm90Q29udHJvbGxlci5jcwoAIAAAAAAAAQAY - APP0Gu56pdUB8/Qa7nql1QHz9BrueqXVAVBLAQI/ABQAAAAIAA68e0/5dHIKXwQAAIYLAAAKACQA - AAAAAAAAIAAAAKoIAABkZXBsb3kuY21kCgAgAAAAAAABABgA6C417nql1QHoLjXueqXVAeguNe56 - pdUBUEsBAj8AFAAAAAgADrx7T+Cxn0VPAAAAdQAAABUAJAAAAAAAAAAgAAAAMQ0AAERpcmVjdG9y - eS5CdWlsZC5wcm9wcwoAIAAAAAAAAQAYAGJWHe56pdUB8/Qa7nql1QHz9BrueqXVAVBLAQI/ABQA - AAAIAA68e0/EWvMjVAEAABwDAAAOACQAAAAAAAAAIAAAALMNAABFY2hvQm90LmNzcHJvagoAIAAA - AAAAAQAYAK67H+56pdUBYlYd7nql1QFiVh3ueqXVAVBLAQI/ABQAAAAIAA68e09NLz8MxI0AADix - AwARACQAAAAAAAAAIAAAADMPAABFY2hvQm90LmRlcHMuanNvbgoAIAAAAAAAAQAYAKAdIu56pdUB - rrsf7nql1QGuux/ueqXVAVBLAQI/ABQAAAAIAA68e0+bR9DvlQAAAOAAAAAaACQAAAAAAAAAIAAA - ACadAABFY2hvQm90LnJ1bnRpbWVjb25maWcuanNvbgoAIAAAAAAAAQAYAKAdIu56pdUBoB0i7nql - 1QGgHSLueqXVAVBLAQI/ABQAAAAIAA68e0/pEyezpwEAAFQEAAALACQAAAAAAAAAIAAAAPOdAABF - Y2hvQm90LnNsbgoAIAAAAAAAAQAYAKAdIu56pdUBoB0i7nql1QGgHSLueqXVAVBLAQI/ABQAAAAA - AA68e08AAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAMOfAABQb3N0RGVwbG95U2NyaXB0cy8KACAA - AAAAAAEAGAAkaTDueqXVASRpMO56pdUBU34k7nql1QFQSwECPwAUAAAACAAQvHtPyrCqjEwBAABW - AgAAMQAkAAAAAAAAACAAAADznwAAUG9zdERlcGxveVNjcmlwdHMvY2xpaGc1ZmdobHJremMyLlB1 - Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYANxo9e96pdUBCFfD73ql1QEIV8PveqXVAVBLAQI/ABQA - AAAIAA68e0/gz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAI6hAABQb3N0RGVwbG95U2NyaXB0cy9n - aXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGACx3ybueqXVAbHfJu56pdUBsd8m - 7nql1QFQSwECPwAUAAAACAAOvHtPWtMXbNwAAAAOAgAAKAAkAAAAAAAAACAAAABqogAAUG9zdERl - cGxveVNjcmlwdHMvSW5jbHVkZVNvdXJjZXMudGFyZ2V0cwoAIAAAAAAAAQAYALHfJu56pdUBsd8m - 7nql1QGx3ybueqXVAVBLAQI/ABQAAAAIAA68e0+o88lWlAIAAHUHAAAiACQAAAAAAAAAIAAAAIyj - AABQb3N0RGVwbG95U2NyaXB0cy9tZXJnZVNldHRpbmdzLmpzCgAgAAAAAAABABgAsd8m7nql1QGx - 3ybueqXVAbHfJu56pdUBUEsBAj8AFAAAAAgADrx7TzQh+rgbAwAAUggAACAAJAAAAAAAAAAgAAAA - YKYAAFBvc3REZXBsb3lTY3JpcHRzL3ByZXBhcmVTcmMuY21kCgAgAAAAAAABABgANUMp7nql1QE1 - QynueqXVATVDKe56pdUBUEsBAj8AFAAAAAgADrx7T+9rT3V2AAAAewAAACYAJAAAAAAAAAAgAAAA - uakAAFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2guY21kLnRlbXBsYXRlCgAgAAAAAAABABgANUMp - 7nql1QE1QynueqXVATVDKe56pdUBUEsBAj8AFAAAAAgADrx7TzYrsXByAgAARAUAAC0AJAAAAAAA - AAAgAAAAc6oAAFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hQcm9maWxlLnhtbC50ZW1wbGF0ZQoA - IAAAAAAAAQAYAAqmK+56pdUBCqYr7nql1QEKpivueqXVAVBLAQI/ABQAAAAIAA68e0/KIuDRJAEA - ADICAAAuACQAAAAAAAAAIAAAADCtAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoU2V0dGluZ3Mu - eG1sLnRlbXBsYXRlCgAgAAAAAAABABgACqYr7nql1QEKpivueqXVAQqmK+56pdUBUEsBAj8AFAAA - AAgADrx7TxPZeEvSAAAAdwEAAB0AJAAAAAAAAAAgAAAAoK4AAFBvc3REZXBsb3lTY3JpcHRzL3J1 - bkd1bHAuY21kCgAgAAAAAAABABgA+ggu7nql1QEKpivueqXVAQqmK+56pdUBUEsBAj8AFAAAAAgA - Drx7T6HoB0OGAgAAQwYAACsAJAAAAAAAAAAgAAAAra8AAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw - R2l0aHViUmVtb3RlUmVwby5jbWQKACAAAAAAAAEAGAD6CC7ueqXVAfoILu56pdUB+ggu7nql1QFQ - SwECPwAUAAAACAAOvHtP58hJBf8CAAAyBwAAKAAkAAAAAAAAACAAAAB8sgAAUG9zdERlcGxveVNj - cmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNtZAoAIAAAAAAAAQAYAPoILu56pdUB+ggu7nql1QH6 - CC7ueqXVAVBLAQI/ABQAAAAIAA68e08ABermvwAAABwBAAAqACQAAAAAAAAAIAAAAMG1AABQb3N0 - RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGAAkaTDueqXV - ASRpMO56pdUBJGkw7nql1QFQSwECPwAUAAAACAAOvHtPv3BPlA0BAAAjAgAACgAkAAAAAAAAACAA - AADItgAAUHJvZ3JhbS5jcwoAIAAAAAAAAQAYACRpMO56pdUBJGkw7nql1QEkaTDueqXVAVBLAQI/ - ABQAAAAAAA+8e08AAAAAAAAAAAAAAAALACQAAAAAAAAAEAAAAP23AABQcm9wZXJ0aWVzLwoAIAAA - AAAAAQAYAJiyuu56pdUBmLK67nql1QEezDLueqXVAVBLAQI/ABQAAAAIAA68e0/0A7LF7wAAAMYB - AAAeACQAAAAAAAAAIAAAACa4AABQcm9wZXJ0aWVzL2xhdW5jaFNldHRpbmdzLmpzb24KACAAAAAA - AAEAGAAezDLueqXVAR7MMu56pdUBHswy7nql1QFQSwECPwAUAAAAAAAPvHtPAAAAAAAAAAAAAAAA - GwAkAAAAAAAAABAAAABRuQAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgA - X9rB7nql1QFf2sHueqXVAZiyuu56pdUBUEsBAj8AFAAAAAgAD7x7T/z2qmNnAgAALAUAADwAJAAA - AAAAAAAgAAAAirkAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWhnNWZnaGxya3pjMi1X - ZWItRGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYAAdz/e56pdUBX9rB7nql1QFf2sHueqXVAVBLAQI/ - ABQAAAAIABC8e09u8ZTcoAAAALYAAAALACQAAAAAAAAAIAAAAEu8AABwdWJsaXNoLmNtZAoAIAAA - AAAAAQAYAO8/ne96pdUBQoJt73ql1QFCgm3veqXVAVBLAQI/ABQAAAAIAA68e09uP64XTAQAAPsK - AAAJACQAAAAAAAAAIAAAABS9AABSRUFETUUubWQKACAAAAAAAAEAGAAezDLueqXVAR7MMu56pdUB - Hswy7nql1QFQSwECPwAUAAAACAAOvHtPyOhPDqsCAACLBwAACgAkAAAAAAAAACAAAACHwQAAU3Rh - cnR1cC5jcwoAIAAAAAAAAQAYAB7MMu56pdUBHswy7nql1QEezDLueqXVAVBLAQI/ABQAAAAIAA68 - e09SrFfUPQEAAO4BAAAKACQAAAAAAAAAIAAAAFrEAAB3ZWIuY29uZmlnCgAgAAAAAAABABgALZE3 - 7nql1QHoLjXueqXVAeguNe56pdUBUEsBAj8AFAAAAAAADrx7TwAAAAAAAAAAAAAAAAgAJAAAAAAA - AAAQAAAAv8UAAHd3d3Jvb3QvCgAgAAAAAAABABgALZE37nql1QEtkTfueqXVAS2RN+56pdUBUEsB - Aj8AFAAAAAgADrx7T9SXNwp5EwAAy00AABMAJAAAAAAAAAAgAAAA5cUAAHd3d3Jvb3QvZGVmYXVs - dC5odG0KACAAAAAAAAEAGAAtkTfueqXVAS2RN+56pdUBLZE37nql1QFQSwECPwAUAAAACAAOvHtP - CEoteCETAADMSwAAFAAkAAAAAAAAACAAAACP2QAAd3d3cm9vdC9kZWZhdWx0Lmh0bWwKACAAAAAA - AAEAGABp8znueqXVAWnzOe56pdUBafM57nql1QFQSwUGAAAAACcAJwArEAAA4uwAAAAA + SDCa5YClUQliLAqQU+ZSTKKcxywVSbo7C3BUfO8OUEsDBBQAAAAAAIJzJlAAAAAAAAAAAAAAAAAS + AAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAIAIRzJlAJW1YySQEAAFYCAAAxAAAAUG9zdERl + cGxveVNjcmlwdHMvY2xpNno3enp2bmJraWd1LlB1Ymxpc2hTZXR0aW5nc31Sy27CMBC88xWR1Suk + qKhREUFqiXqggKBpRcTNibfExI/IdhLI1zcvqApVffFjdsaz2pmkWciojj1s8LRnWef7WskvysBK + 232FObgoYvSxdMoyF2FC91l/C2Hfg5TJE7J6VrU68hJMLImLlv5f6KdiN1IDHfEBLjMFBYSaGtAD + AWY8Gj10XK5JI+VX2A0bWZkG1Xq8u8JaflOw3nou2jlMROGbnEnA/ADECfL5JiL86OChGr7jpyJI + gkDe+/i4SyTF8+Cg56tw9yHA6bQIaEMFNlSK5zRt2omNSce2ffX3bUedgr9Z+KByUN7LTAoBUa3l + G0XF3kXnjk9V1T94LGsX+2pQOSWgXqXK+IKK5FIQSWGUZGssgNXAxWVBBZGFbt0NIsk7QmXUP2kD + 3EXb6lh7RtMGmZAqHiHWoC27SYn9OybTXv3yE6RvUEsDBBQAAAAIAIJzJlDgz3m4kQAAANwAAAAt + AAAAUG9zdERlcGxveVNjcmlwdHMvZ2l0aHViUHJvamVjdC5qc29uLnRlbXBsYXRlbYwxD4IwEEZ3 + E/7DpbORnQ0Mg4MumDiSWk44Fdr0rphI+O8q6WCi6/ve+6ZkBaAG3aPKQE2nsqir3bGsD/m+nNV6 + WRtk48kJ2eGPBPkzeITCClToRzIIW9tgbDvbo9Pt8t6JOM7StCXpwnljbB8l52nU8nEu+s4YS801 + MQfkNxcfvrDz9opGfocH3SjCZDW/AFBLAwQUAAAACACCcyZQWtMXbNwAAAAOAgAAKAAAAFBvc3RE + ZXBsb3lTY3JpcHRzL0luY2x1ZGVTb3VyY2VzLnRhcmdldHO1kk9rwzAMxe+DfQeTYw5R2W4jLYwV + Ri9b2Z9bL4mjURc7EpbcLd9+3pbSwHpsb5b1eD89pHodaYdWzVfwvcyLrSrfAYjdYmikCs5GEvrQ + ylKADvfoiTFCkDY538HNbHZbLK6vjKlXiuExUuLfMn88UGDn0bxz1yjOi7LclJWVP/mo4OGNnpNy + 0qWLeQyKw+LefzaD1HCyezCH0f1QP1GPZtVbn7ojinO2wpyHlwFT2DHWmkSXyJ6GVxsdq2R0eTHq + CwbaZ2rr+s00JZxUUbv7p/qxne6qhvEE8vsbUEsDBBQAAAAIAIJzJlCo88lWlAIAAHUHAAAiAAAA + UG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc51VXW/TMBR9n7T/YO2ljgjeuie0EiQQ + BW0PbaVU4qGNUJc4wyVzSux0rar8d67tOHESFQZ+mBbfc88998O3cc6FRKlAASror5IVFI9SMfIm + lxfGtNvIH65RfTvmzW4XUikZf1oYoLKTgoo82wOaXANAGIAgW5Fzx5fy/RknAiYNtNCawsjcJGH9 + +YVlFHcl+Ja2E0fFKPKYCqGoweLYZptnqojnj1saS/KTHgWGa+/yAsEhKcskLXBa8liynOODdwIN + siw4OhDGE3qYp/jq42IRTpfL+9nX71ceCoIA3Uyq/6b4Nv0U3i+niuo9EKGqW/CmGI18KF5SxrQN + EZeFjyAVDzWhToQQfb2CeyLKRyELoMHjsRfdKSZ1H1WTykenyi0+py9tSE1j2+Ej+HAUVdqr3CUb + SV/TI9/lNiFtBrrPn3M55XucAgUkYqppNEl6kCAmFUThVIzwyGON9NGolOnbd3qAWo+McdVm7UnE + LmMSX6/WxZpH1xbYnzXlc6a2ylRrqo99LoW0nnWUUWCU1IelCGsUySh/gvH/EKDbhqnLxqG3QKbh + mg1k3PhobPjaA4pWChs14G3OeD9y1fxbj4Tyq+1O01t7Uwq4r9zmvP4Rqrxs1tAsemBCCtWqnofX + IJ3wD+F8RiAfQbHb6KF323KVQp3rucBW2jCiO3QW1idsXlM1KAoTszyhD+GiyNUmwSZA69KV0d95 + jAkO7uT4nEEaA/J/eVS2bZ3qD9QNp1ctjP4mtFy2DoMHpZz+uH+MX6/QK1gcFoPeIJhU+Gtj6UUU + uZMLSytyFKhSvhRM0mYebO5alR3/NfzawFxTHucJ8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5 + mWU+uv1LQN3W31BLAwQUAAAACACCcyZQNCH6uBsDAABSCAAAIAAAAFBvc3REZXBsb3lTY3JpcHRz + L3ByZXBhcmVTcmMuY21kpVVda9swFH03+D9cDKZbme11L4OAR1uaroG2MXW6vgSCY8uJW8sSkkLa + ffS378qO4rj5WGEkJNLV1dE5R9LVKUnnDFie25YkqmRpUtpW3B8BT6RcMpGF7kkTIM+cCRUTpYpq + JkP3SxMWhLPbhJJQivQO2230XpRhXpSkFwSBezW86V/cDX70e6+fP524TSA6G131XrEnC0UC10C5 + DUbGllXJkiycMuUhum3ZVs3WXaG7OiIIhTQDxYAL9khSBYIxZVt8IecZ+P54uVzqiMktqkLBrMA+ + Si11C0OdbsqqvJjBQhLhV0gHHCSQC2yhH0/OnkxCk6IEZ6GK8nQz308Z3ZyTZMiqg0Ep/nkUHI66 + EkFQy1o7SLYQKdkEQBFMkRqnsbxjCGc860hdcKkESahxpDbeHWvHbYs+ZYUwMLjGGrLjjqbnTZFZ + F17jIdd2hW3PWxQ9hCh4xjyTv6ZPE6mI6IKnJauIydjBvYVuUlsPwDXmuQ1URkqChvnNpmcb4ysQ + QcET4OV1SpeG2ZKcCZQwLQs530Fm3EIaTyPBOBGqIHIcNfMwom+DXM0/mKFeONE+4jdiUl0QXrKX + OBUFV3LMO9n+My19RSgvExT5GyTJwEPngvGvh/75JB6M+pPbs5v++E/gYkD326AbzOAb7Ih7D2Tq + Ncv6uB6u0fqCewjx8Pp+NBje1tmhbWl/ghwc9LqgMnTAdRM8OfDhSJsRTOHYl2V19BEPNpxuA2A2 + Ijey9wr2U5rtUWrQ1kpNwKjspkf359eD+GoS3Q0vB9d6wrss2II5i+OH4d2Fnm/KZePoBuN/qTIF + 9b/38Z3UtonsgPOjLjnbara/LcHd16CuxAXu/9u4A2EIjgMzhoXiZ8EPX54V+FEDAgnnIFdIR6u7 + 2juLogm+DqPB7ffYkNKfHqKv72xdRedErwj6ktjW+gHCVb9iGH8SSPbw8DFhz9D4uK1QJKkWvC5B + Ui3yfLv+Hawv2068ST9QqNqncmNfqqx+vnW7trvXH17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj6 + 6D5KhH1GH4Kpbf0FUEsDBBQAAAAIAIJzJlDva091dgAAAHsAAAAmAAAAUG9zdERlcGxveVNjcmlw + dHMvcHVibGlzaC5jbWQudGVtcGxhdGUli90KgjAUgO8He4e9QC8QeKFYNFju4JIuJfFUg+XknI0I + 8d1Luv1+pvzApAg5RUIpXjxkH0a1OGu6i7ZN35Tnw6p2877GOcSPnaotKBJl3CjkIXh+AsW7D1gs + 0FVGu1MPrT1q8z/hxvyONP5s6dzVtvUqhRRfUEsDBBQAAAAIAIJzJlA2K7FwcgIAAEQFAAAtAAAA + UG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlfVRdT9swFH2v1P/g + VXttUhgPCKVBhZapUssi0lLtqXKSm8bDsSN/BMK0/z67iUGkbC+JfM895957/BFcv5QU1SAk4Ww6 + OvMmIwQs5Rlhh+lIq3x8OboOh4Pgy3g8HGwKIlFOKCDz1xIylDRIFYAqnVAiC7/C6RM+mLXgKUiJ + eI4argXaQWJjvyBVHvrJNUoxQ6mWipfkFY4SCRS4JlxYjjJ1nMZwYGpARpTpqAXW8Y0mNDs24qEl + Q1xkIJDiiAIWDJVcAMIJ16oTMmEJqCaSKFQoVckr3z9wrySp4JLnykt56efPlLAn/3plvsv59Hxy + eXZ+5qHhYDy280dt92jDOZWPzq8L65dxkMnpyCobYZkWUGLZU8+gBsorEH4pE9u9fz6ZfBsZZYSM + tkVU811wXR1DJmgsi1pX16AKnoXreA4V5U3g9yFH6YJGribGkXD2qgWY5JgoCPwe6kgrLNXWbOXR + 01vOcnLQAiszXvgA1jlD/XdOXyWiWOVclOGMNeg22jruO+IYtqmtoBu+wpqlxSxXILoWw87K37vF + zT5ebhb7+9l68cfDdp5nSKShSo+BCvz/qLhCLWITP6AboY+TvYOn1MVLSnUGs6raz7HC4R2m1o5e + 2GW7DYpB1CSF7cMq7E8g0/J0iquLi2+Bf8p2um18SaQpGGFV9FUDv5/hmA9QcgV2uqhoJEkxtSjy + 3/bgiVSLFyXwnblK8geztUF01nwO9of9eBB36/jx9n2WT0/pguGEgku5MS+GrrqSn0GOZs6QuMcl + hF9PxneQS93HuIZoN+9U3fINnoM0r8nx/G6aCnr3pA+3d9TvX1ITaZ+E8C9QSwMEFAAAAAgAgnMm + UMoi4NEkAQAAMgIAAC4AAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoU2V0dGluZ3MueG1sLnRl + bXBsYXRlfZJfa4MwFMXfB/sOEvZafVifSi2008Ggdm7Z8LFEvath5g9JrLix776o1bI6mpeEe+45 + /JLcpazSkuoiIIasbm8cZyjESnzQEhzZ7zvCwEffSbjZ46e3cL9bR+HPLIF0FoAsRYMca7br5I7A + FCL3UYT/ld9VOQlzdcZc8lUpqCHV1IB2OZjFfH4/mJnOuzBsxYkdOZUG1WPeXWingK4jTgLrjdcY + J8+vwSjloA3lxFDB11J2fIUxcuF5F1lTxCECv2wxqCOoYPMgOIesDcNGUX7w0XiHxrZdayhEC3Kw + z3+kOahHoSq2pfzz3JEJbpQoY8KhbJWRtKY8F7XuCd1MsMFhaXGjDTAfJfbYgqNVLy1z+/Ep0aAd + r/9/7+8A2GJbOg/JL1BLAwQUAAAACACCcyZQE9l4S9IAAAB3AQAAHQAAAFBvc3REZXBsb3lTY3Jp + cHRzL3J1bkd1bHAuY21kfZBNi8IwEIbvgfyHOe4etsv+AGVFexD8wo+DIJSaTDWadEISqf57m1qo + BzU5zDDzzDsv84/iSEBFwZnHoEnkmrMmh1G6mMy303S2zlbzzXKY9h718SxbTAbDNOuA3l8cUgXg + VfkASbKrqsoRhZ1Eq+mWCCPhizMAe/FH+QTEWr1TQwc2GNk6fkdVhwbOSpxrk7C/KC1jIrx1dIrt + xr9DQU62GgbLAEEZ9CE3ljOZB4TfAP1+3NsxiaYDZzX4ttuq/7x8nyZGnRFJJTY+S9leN/47UEsD + BBQAAAAIAIJzJlCh6AdDhgIAAEMGAAArAAAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBHaXRodWJS + ZW1vdGVSZXBvLmNtZLVVwW7bMAy9B8g/EAaErAfb2HYLkCHpFmA9tA2arBvQFIMq041b2dQkGUHR + 9d8nWXHsoM1uzUGWKfLx8YmMpyg2BJTnw4FBK0lwORxoLCF+t1/Ad9lqdW3oCkuyeIWK4EY3+x8G + 9S3cKNSGKi5nQqAxK3rEyls1PVzwEp9J2cIfv9wGPKGRWwReZaBI1dK/XC8v4b6woD16ThrsBmF2 + ugRBGUJRGcsrgSE+rB2DMdRuBS4E1ZWFyuV0MjUILTN36KmB9dxC/Bukx8djfIrMbXdGz3VT38HV + fLmC2eIMPmj8UxcaTVOBASNI4UnI1Arh0fvsmgMU1sG2mnzIMOe1bEw/56fLs9X8d7NczM7nJ+9/ + 3e6qW2G1nGysVWacplwVSSg4EVQGr07+CfvYNy222YR9aiz7yifs83BQ5DBirYWNJpPRCA6dXlXM + WmBFfT6sS87GbJ+WTTuSBz5pl9bX0cjoLxREreVe/fY+3LmqzSaDJFlvt1tN5Cz2SSEsyNhvqCQ9 + LYUulDXrkHAR4pIH1zeJxVI1Lf0XfMvECCZdP7vSurLWLz1G6T18Abaany/YG3DDgRtzGYjG3yH6 + SpXFysYrx2cMXClZCO7HK/XeEcQ1HFMH4gyi6ZuZdrG/YHHp+nmPoCVL/WilTU/vxq78H1k3z9lw + EJ67YfdTs+/0IOZreYNvURXWT1Yo2u+c6eBVUJUX9828J80kRf1qoyOeihuzJe3K7+Q46owlLyRE + tS3k9I5srl0aF/zou6ofwzNXwgFGWbpHXEKknF5coys8/HeCoVoL9GmsJtlH8VIA2zU4g5Ibi7rT + caehRF45GB9gbJ3nryUMkP52Yg1xDr7POxissuZ78Q9QSwMEFAAAAAgAgnMmUOfISQX/AgAAMgcA + ACgAAABQb3N0RGVwbG95U2NyaXB0cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVZj9MwEH6v1P8w + qmQtSCTllFClwnJUggeg2pZDYtHKOJOuwclYtrMV4vjtjO1006XsAw9UVWLPeD7PfHPkGNU5AdX1 + eOQxGFLSjEcOGyj+2y/j822dfefpBBsKeIKW4OPFbvsprd96dK9l0++W6Dy10jxRCr1f01dsWWEd + fYlnvpMNOqp/fsr4yqEMCLKtwJLtTNy8W72BjQ7g4m01OQjnCE+erkBRhaBbH2SrMNvnZ/QoOjSD + zhmmiS0yjNeMdwPLTQnnIVg/m07lFj01+JlCeaF9J40PXaWpVNTAzR6OfB9UROQVSKWoawO0LNrh + 2z5SVsZQIcRYM8DfeZhdbxZvqXjZC5PvJ4vVGqTVGXLHYMTYdyMpUAU23pF5o8JadiaJ3i+erl6u + F2fp8frJq8XN/183HmPuYj7eOjMXd/Ylkde5uLsvWm6rubiXJJdRzsX98UjXcCR2EnE0nx8dwdVD + B9GJDHPhgz8hCnNx6UfS5JqKXu2qQQxuiZm4dEgcD5azXw/F9IwLcjo4M1zzLHG+zEn4Z9g+U4qM + YXPujOkZZ9xP+6T6x7wrLrhiWDW/V94ej1L6YrmAirU+ZL03GY9s588rKMvT7XbriFgSvlmEJfnw + HK2hbyvltA3+NFZpNiq/cEmWARubGvAHxGosEPz09DtzPPB7+nOPhOkGHoFYL14txZ9Y4xFPKJNd + LF7A5Bm1AdtQrNmTGRe1NVrJFG88PQEoKpgcH2JlbfEBlm+4GUAcMC6Yj+YaJ/oJZhBtGiN3HnBc + itrK76ZK5C65kXgkDh8D3mKN9sB/CVttKth03JI5oozGSEwz2Wo8yu9+lsUOvuzHTP1hMvJZ3eoQ + h1yGjSsWXdmyo7XepPFTpn6f7BfV5JqTVnq/JcdsDlV37WFspDYw6YI2xzwPa8fXsPHXOAv3bWTF + IVzBaBp+FQ1MLDeUdMiB508FeOqcwnhNcGT2USIVIPoGFNBIH9ANPPYcGpQtw0QDHsx1fUhhD8lp + LxwUNZR8doDBtkqfx99QSwMEFAAAAAgAgnMmUAAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2Ny + aXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVtjs0KgzAQhO+FvkPIuUJ/Ypv2piLFQ3tR6FFi + XCGgJiRRaMV3r7+HQi+7sDPzzXbbDUK4ZhXgG8LdK/TTOErC9Ok9wh7vJjUHw7VQVsj6jwl5n0YD + 8qVFMehWcECBzGHJcqZYJkphBZghPNUN5xa0GXBc1lbLchUmychGcwhmJXmr6bG7sHh29LsFobTk + YEwClSqZhR+GXY5jPMpHwDm7HMl1Tx0oDsQhLi8cSgrqXM40c0+U5Iy4a8OwxtF/AVBLAwQUAAAA + CACCcyZQv3BPlA0BAAAjAgAACgAAAFByb2dyYW0uY3N9j8FqwzAMhu+BvIOOycV9gG6FtjussI6x + buwwdnATNTW4tpHkwhh793lp0rRlqzAYS9//6/doBHMfPsk0W4GiKmFpKvLsN5L6FDxpMd4pmFoL + LcRAyEh7rFWeJfWDqdAx1hBdjQSyRVguXvp2YvIssnHNYKymHB5Rkj2Orw3VvWdJw/Gvh9M75KAr + PEFnXmbR2LR2pXfBIufZV55BqhDX1lRQWc0MT+Qb0rvDpANOIBYt6dp7U8NSG1ewUNr6/gGaGi4P + /FE61JxQC77hOsXscxStRLWvolTP0RXleJB959l/6xfnRn+6XySD28l5oo5WB+0dbnS0R23/mYtS + r4wr0SQx3HT3pM3c5U3nB1BLAwQUAAAAAACDcyZQAAAAAAAAAAAAAAAACwAAAFByb3BlcnRpZXMv + UEsDBBQAAAAIAIJzJlD0A7LF7wAAAMYBAAAeAAAAUHJvcGVydGllcy9sYXVuY2hTZXR0aW5ncy5q + c29upZA/T8MwEMV3JL5D5LlSkRiAbC14YMCN2tIVGfeKjWyfZV9aEMp3x/nTKIixiy3d/d69e/dz + fVUUzJi0ASLjPxIri66Wqyfj93hKi5o0eDJKkkGf+wdpE8wGSHr03w7r/xjFuqd6A/4VIqRxfi8O + wQ6C12hzi2miUM7nFpW0GhOVtw9392w2KlKyFUbK6E1fa9qv6QAWIh6MhWkGrjQukf64KnRO+r2Q + DlrLKuInKJqYWFl7pZcxh4d4TnLB0uCPJqJ3+Tw7GY18n+w4IItNJfj2cbXmb1zsntcr8cLFth3+ + BEewGFoxOwuaMXv3NL9QSwMEFAAAAAAAg3MmUAAAAAAAAAAAAAAAABsAAABQcm9wZXJ0aWVzL1B1 + Ymxpc2hQcm9maWxlcy9QSwMEFAAAAAgAg3MmUP30SgpoAgAALAUAADwAAABQcm9wZXJ0aWVzL1B1 + Ymxpc2hQcm9maWxlcy9jbGk2ejd6enZuYmtpZ3UtV2ViLURlcGxveS5wdWJ4bWx9VMtu2zAQvPsr + WKNXi84DbRDICpw4KQLYrRDbCXoKKGplsaZIgQ8l8teXtCkEkd1eJGhnZ3Z3xGV8815x1IDSTIrJ + 8CwaDxEIKnMmNpOhNcXoaniTDOIvo9FgVTKNCsYBubfVkKOsRaYEVNuMM13imtAt2bhvJSlojWSB + WmkVeoHMx/4ANRH6LS2iRCBqtZEV28FeIoOSNEwqzzGuTqcxcCUgZ8a1c4gvlreW8XzfR4QeBZIq + B4WMRByIEqiSChDJpDVBx4U1oIZpZlBpTK2vMd7IqGJUSS0LE1FZ4eKNM7HFN3P3fJxNzsdXZ+dn + ERqMRm729NA6WknJ9XNn1aW3ypkn9GTodZ2spiVURPe0c2iAyxoUrnTme8fn4/HFMBkg5KQ9YNof + StraR1zMuZUeDF2AKWWeLJYzqLlsY9yHAiPEnFjDnBnJdGcVuNwlMxDjHho4c6LN2v3DvZt3UhRs + YxUxbrTkCbxnjvnvnJ5IyokppKqSqWjRXbruqB9IIPiO1oqv5JxYQctpYUCF/pJgIuXs2+77bteI + bOvqRcQP8waZdlQdCTAx/o9KqHMAfN4ncKWsH+sDPGbev1Nuc5jW9euMGJI8EO6t6IVDcvdnlqAa + RmH9NE/67WtaHY9wfXl5EeNjdpA9hB+ZduVSYsq+aIz7GYH4BJU04CdLy1YzSrgHEe7c37L6/t0o + 8uCWR/8SvjCo4MppsDfo59P3slg+333Mcepo3guScegybt0FYetQ8BQUWO7kqJ+kguTr0eQdFDJf + l6SB9GUWNLvPDp2BdlfH/siu2hp6m9GH9yuJezvpAof9T/4CUEsDBBQAAAAIAINzJlDarWn0ngAA + ALYAAAALAAAAcHVibGlzaC5jbWQly0sOgjAUQNE5q2ADEJnYaMIEdYKJ4iexYdbCEwptH+kHkNUb + dHpvjvYNuNCAdWggUJZ7IevwVLWYoYut1GE07I8wSPxcdbbO1BkPay08l8K2hcG3kJBWUmwXsiyj + 5r1ofPQCHv1hPHg+K/kzzNoJTZ2WROqKn/GAwFQHNaFjfqtqNROWmOTOdhPtKcXNg81lj4LltLP5 + hZdPDSQIvlBLAwQUAAAACACCcyZQbj+uF0wEAAD7CgAACQAAAFJFQURNRS5tZLVWWW8TQQx+R+p/ + sNoXIrG7nOKQAEEPKaIcoi0SipAymXWyQ2ZnljkSwq/Hnj3SFCgVEnnI4fF89md/9uYAjmVlX9uw + d4ve4MSJGtfWLWH1EJBOYEZWL+pGY753a+/WeaV8slWCPhENSIciYAnRK7OAyQ7Kl9tVCI1/VhQl + rnK6Nu9Pcmnr0R1QBF7ZtQd6g2A7MBDgFYdMkUIlAggpsQkelGligLmzNdmRgqIDYcqUK3rGmwm5 + TKkeHMAHhw6/ReVVQM+2DCb5u+NzOLQO4ezozaUEbTAY8lpJZ72dB06QjGujrShHsELnlTVwP7/H + OADT6XQmfMVfD6DEgK5WBqGF6d3ptLdkWWfrLqcM4dyCiwZCX1VtpdB6w4kedbGZZzqTtsQt89dR + 6RJmWpBRmWR69SMSqw/WBaHhdi2WCJ4tGxtBaiWXsP8Z/T6sK2qb8Etq2v7YSB0JQjQNeAyBeuh7 + vJ49+f1QDcyVxpf7o5wI0CuD8XxATlDv7H4yrJXWYJBM3FDbbIAotQk2DTmLwIU864M1zjbogkKf + yDGEY0/ycCslkVCSra0NJ9rnmX/1BMRp9f3+pHwkn7MQS2W5iO8bbLnkXreulF6odh1z9vwYkyOn + 8xVlgNuNQ+9hevJoCkvcjLoIW/Ucno753tj40POb7JxS4lb7ywqT/oq+0GTRd9IrJN0r0p3iZRAz + /5yMbLv/fZQDh7rgCUuB6G7NqtckuTtgxEotRBgqNXCYW12iS/TONw3CtI3EkpvmnQDRcy17kXVT + vLsKjuuoRbBu79bk9wdfJj3HBRU3zhK3gWlxee4z7O8ASV7Q5PhlsA2IrTS6gdfartuhoN2BmkXi + mWGgjHnkyTyLKXHl2M0DXU0aqSx5WMc0DbNxWNuAekO+zsZFRWEDHaGmGlxp4R+YD+P/MH+U32fs + RVpUrpXspKI189sivB2KQMADbtbjFg41Co/+SyevQ0t5yUA8b9iRDE5FNLK6xuGEVZ+9SLPAbmw7 + Npy8SLcuPp6CncOU06fshxI+e/D08ZNCNKqoaRLEAn23tI6w0XbTJci5tpuHD2mfESFnoOYhEDMb + qX3JnUmIHf87tHBoZlq0JNyd4+3giKXIa18ItrZgNZowInkzBWn5SRGQhsEHJrJ1AUWddVGyqnwn + +JPoQkXcqX8l5cTFuKLqIysj305i3B3fXx9hw/3Xwit57bS3BHgaMp9WW/t9FhVPaTZLAC9XCtfP + k2d2yTN7mN9tY70iNisVNjzkkvpCHG6wYq4PLa3hp2smOuxsi/33fOgojc2wr8cmOFu2Vf+HevQR + LM0cB8/UJbx/SGdo5z/k89dw/2vh91xa4Gsh6fmbMt/NlqyZFrwre6ztf4MtXJN+5+nKVs6nwiwi + zTtcGFIH7UbDk9ItotOL8dkNKCZIYrgwijSFfeV8oenfWNHGOawEb2HP25xb1m8/6/rm3TjQFRH1 + ir52nH4CUEsDBBQAAAAIAIJzJlDI6E8OqwIAAIsHAAAKAAAAU3RhcnR1cC5jc61UUW/aMBB+R+I/ + nPYUpCrV9tp1Em2piDa2SmHrY2WcA7wa27MvrKjaf985CYkoNN3DIqRg+/vuvjt/l/NzuLZu59Vq + TZDIEcyU9DbYJfG+d9YLUtakMNYaKlAAjwH9Fot0OGD2FyXRBCygNAV6oDXCLJvvtxkzHJRBmVUX + OB0H9xWJw2N6VSrNtIte0NQG4sN+0GwrTwCuLO1z9J+mmSFc1dU2YdMY9wRr8kRcGuMCI8xSrcqa + 1g+9QYfcISN3mfmJsiGc1NRIysXGaQxxJ7whfiLXltdVQCM2GJyQ2Bd0OHgeDoAfVy60kiC1CAFy + Ep5KV580gArk1VYQguRCCAL5qIRjfuOSsmKGJApB4jPu4BLeHe2/Y1l1rC7hPlWSHbQwZuhWo5rV + iumeQ9LlIe2iw/45kflFxsPVM6yQLg55bPL5WgXYIK1tEQEBpNCaPb/YVYb3pSG1wRS+B+SNDksW + RFFAnBeeh8BrPq76SEIZvrgjdVurilYT5g0xyZp/15bzVuZpg77apRaRjouCxyMZpXkclo3jWhdK + K9r9QB/dmZzaTJv3w4eH96PuCrumXHtkU1QF8Z3DrWfj/bb+EcaFcMTFva4mZwNpJGs+ZkxtmVMi + 15DP9lHuFa0n3ls/FabQ6D8lb4lZsBgRQAB5wcOHhlLITH0vUoQaNM7vYpvJx4Z64CN8ctzZ6Gxh + IMrq0T/fR670n0Ezf1FbS/qfJtr7u9Y+nc/v+Cv8q0SeRqccavbSW1ZKsrFzvF35vPkYgHDuDLLm + +zoxW+Wt2XBZgGb7uq/UEhIGpFm4wS1q6yIlGbWEjnT4xHQpV9ew0E+eJLqo506ssO1d27/DJeqA + /5phGiicildtHMtZilLTrdLYkI4xOXHfZC/kHhe5lY/YZD6J4Sl8aZHmxb+/UEsDBBQAAAAIAIJz + JlBSrFfUPQEAAO4BAAAKAAAAd2ViLmNvbmZpZ22QX0+DMBTF3038DrWPJmXgAMGASxngi5ol6tte + OnphmNKStqj79gKLf7LsrT33nPO7ucnqqxPoA7RplUyx57gYgawUb2WT4sHWJMKr+8uLpFKybptB + MzsaRwGhxByMhc75hN0L6LFiVkd9zyQXY+P8nxXGOZKsgxQz0z+DXSsNGPXM7lN8jSf8bn50ig8C + TIrpr+1pkkazBqMGXcHroR9r3qTpoWrrFjhGix/w4oSc/NFQr1UFxmxmJldWgsWI6WboQNqR6GyL + aq8yZR0uBEbGcjXYR9UUku0E8BTXTBj4NyhbAVNMqMZsj+pxlWmRM6dJFqcnTK4I2Wj1DpV9GFp+ + h8q8iLJwSUl5E1HiUzcidJ3HJCz9wPWC0ov8iJBzSRoGWeDFHnGjMiT+Lc0JdYuYBPH6huZB5ufL + KfkNUEsDBBQAAAAAAIJzJlAAAAAAAAAAAAAAAAAIAAAAd3d3cm9vdC9QSwMEFAAAAAgAgnMmUNSX + Nwp5EwAAy00AABMAAAB3d3dyb290L2RlZmF1bHQuaHRt1Vx5b6NGFP+/Ur8DdRU5VQPmxvYmUXNs + DylVq15S/2oJJjFaDBYQp2nV797fmzcDtjHYyaaXd2OGmTfvmncMM4NPP7r+5uqHn799q82rRXr+ + 4QendNXSMLs/G8TZADVUF4czlDR8ThdxFWrRPCzKuDobPFR3+niw0ZaFi/hssErix2VeVAMtyrMq + zgD7mMyq+dksXiVRrIubEy3JkioJU72MwjQ+s2pMVVKl8flVXsTaZV5p34eLZRqfjkS1gimrJ76R + n9t89qT9QffNZxEW90k21czlb282W5bhbJZk97ua7sCxfhcukvRpqn0f3+ex9uNXazB/fvhBfSP0 + dtLPxDxO7ufVVLNM86gLDak4LrZ73obRu/sif8hmerII7+Op9lCkx4NZWIVTUTEqV/ef/gYOjpwr + FLVVXJRJnp0NLcMaasnsbHgTPsXFL7gBVFaeDedVtZyORo+Pj8ajY+TF/cg2TZPwSJDpb2mSvdsF + aE0mk5FoBejZEIobak/ySuN9mVOtZmqu74yNieZ7luEPNTFOZ8M4C2/TWG9Emmbxo7YN/kZwMS2X + YYQ+yyIu42IVD4+ct5BQYNKqpyWaqvi3ahSVJTVpRlmZR8HlXZKm0yPb8bwL86355ii4phZLtWR5 + FqtKew3cNL3xxVi1OGstjj2+vK5b3LWWS//66nNLtXhoycFyUj1NTcN+I6BoqAD5/U9ffHX9i/XL + J292a4BwHJkXEG8k5GNRiziqtCc5jlEalhg6CDnU2IuGru/ihi3rbOi7vuEMR9x1GVbzpgu6wwq+ + dibjwBifOLZj+DeuY5mGcwLcc933DD/VXd80rBPxHelWYHgn9IVq1IqSj34n5o1jA2RCPb80V4Lq + 3PFR5Wg3zng8OXGtsRFE1IOxEAIuMYLUtgFwIr7nvk+kCaPN31fOJCDGHH8CXtWNC2on6/z/vltS + W0oajF3DB2XLsG9c23VBT0g6GTvGJF2T9MoJYHjuiRsQT07gB2hRNw2SDnIOk6OBYPyODa5TXGyI + K76lKjfVcWIKXaRC4hPx/SUhuVGY6kIHYZcJK30TzXWteja6yir+hlodD7Rc0yJ9Tkzf8ORNg6Qm + Bv+Ow+KLIpwlCNsihigTHmr3svpHxG0w8wDv/J5c9ZvsxzKG61pnQyewHCPwAnj+E25dqNiyAg+N + NhonlmW45thFI24t17A9x2vw/lCEWXmXF4uz4SKsiuS3Y0uECJ0uvguWJ/7kkzoc5Estv7ujTDQ0 + 60BD1XqUp3lBjvq5+LwRlY2LepC2jcPqxaG6jDY1tGuIPOV0nk3WZ7vKFvir9gpdeoXu2c4J/uaW + ZU7goOsd64GhGE0l82LwyZvOPFHEyzhEsslyWewGLZPfY85K3TDLvESGzpFCCwo1nYBSWdrHHHs3 + 4ThoSVLtXCsZcV2ViduZ025naUnwcZ5UcVdud9CNEgxd2hhmSblMQ+T4JKMh1W/TPHrXlaANztB6 + gvnMi9P0G8yXxjJXH9mmzNZHzvWRTV6Lb9QmM67gzC0rRWrmekrMR87Fzhy+AXwhcnW7Uzufy24C + lFTN90/r95SizAlqZaaXbaigP8tDGKOr7XFf4UcM00p74AOJT/Rs93YuaxkAR/MAiUbNBVBkL1AT + AgBjSiCh1LSAoZjpZnZAKGkWQFSC67rValprbwdIOzHjVubmNXUZUmTh/VwHglwnDF+OrzsxAq5l + s+Zq1tioRn5fsy2jyjZmaRDSSL72MCZXlmkbkxuY0Bg3vh/pjuHVfxMyrCtTt5CRUifQHR9XwKPS + QboKcEWVG+ncHd+yhMxJHfGHRI2eNEbImTcNyd9rw8D/RobR/YvFmYBJhR3M6Y6gCy4jzDt0/AkO + Xd3mKwR0IogGEBOi2qiRtTfjicBkmySrxCNFrVmOLCEif9uGT+0gocqY3pSSJmYDel15w1w2Ongd + 0U0xUP6YxgKBXwzamIYQ30iikSlrRY2A5XrXcOU4jUVrIEtou5owoM9jOQGoICEuawR/r1UChhQn + HgwlgtS24MSR1hFQiRUVEU20c32tvKbdEvcm3Qmr8mUJbd9P0CiJ4LJG8tUU6sMUXl2hPsyqUShm + z+NGoZJgW6HU8Lcr1IfVSyKSl16FvtqM4i7NqTmN76qu9E0JuGNK4D4/L9MHqbNKIqwchGlyj9nJ + IpnN0nhf8qbsoP2xc7Kgg39i9Wj3NOPjz8Wnb6VgoJYKBt1znMDevdrwKDWFZ9Gt5jSuKnBOiZCX + KwzHa+EQalLanvj/oEaTLMM3rfGECUqt9Zck0+VIu+P2SC/C31Sz5fjMd3v5Rg5N+FDlu9tpaioB + 3kuoHsGm0/CukvJtftQCFwxg8GZHa4pnhSnWhap509oemCq8rfnarfBFCEklLT0s4rDPkHnq2zl4 + Co1YT2M8bYs3xed9Ld71n23x68bss8P0qKTx6bYIY5P+dTNn45HjfQUEjl4B7X4BnYME1JdW13Dj + SZWcS2Jpt8PyqnwBPsY9hOJstsyTrKXIhsuuAO4FFpqeq/5/T8Fbqtujl3n+CCj99iFJ8bwcR/Qo + 3DsQ4kH1pX7ZTfJcmzuKboearMbROlXl16p6dopp6dVu9LpzxR3/aOS0XRSFSVdqrQePy8tlXERh + 2R8ByypetlJNO5TepfE2YyL661goWJRTLPEUcRVtR+O1hY44Datk1ZMl2rzM0l2jc5sXSCVqZgFd + lHmazLSPL0z615cONhN0e2VDKLdf/12q3CPGuTarptPbGAOzkRk6JocdqzBtLRymgDWt0fLaQ7mx + aNSZeYfDDghWvRtsq6o9RW1HsbZlhLfg/2FD0FZE3ED1sgEwqrisEADSNH7BUNymD/F7kZ/VWeDZ + 5rkVkpJsHheJeirojUy3eTqTcP1Rx3xP5c5m2h/vyfghDG3NXjf9sS9NO/ZhAm4JN01D2Ew0R9J4 + XjASUXgZFvCj3uAbVeENVgoJc6/9bSFsc3AY8WYS6l9cWtuND0VJrWLKEhdofUbGq0PoVgPHMJEF + Y3rYLRZh2p0CGo1M7/Loodyl8fyhIlNZE5jkuY3ubIl3P+55vqozXTuDzuIoL0KOTQ8ZdAtyB6RQ + WsJ+TvasZ1KYKfU+gFne7lkid92fTwVj5+BlpdjbyUbjcS1KG60vXM/YmoKXeprf5wc94nr9j7iT + sfn6T7i7owvBt6uFv6lkxgEHeyPmogRYr/SQub3ks3dL6KC9EPPiwO2Qr7/Xy6cF8sT/YkPEFd/Y + t3rBdkjd9z+wGRI4gRu4WyD2Bsi173xu+1sgzgaI5QfXztstEHcDxH4b+JdXWyDe5sbM9eXYcp6x + MeMftDGDowU7N2asSbNuetiCsxVYYgmWThWsXMew5zo2eX9yA2zL6ybtymNr3CUArNfOdU/cBzrd + ifYVl3xj8hOhmFsmNvctm7vYc2ySpehg4YjBl4IU6+l3cADSgVgMdrFuzBsiuDGxFaJWk7GVIrdQ + xuJ+ImGAj0oRc87rzy6VmKrqHXE/1dsR300Z7aJs69zPRolbJJMR7aMwAjRMJLBCb5fg06G+OvOD + ykBsQfHSdy2dLW8bYVn6sSeWyz2M+cqxSO3OSnesL9EgQWwzEH0DX+kNIltSZCbuCIF9UhHaqMYT + bR4xJNvslY/WWr+BjmYpjEtXsdHPWw2kcqZAW/4sPZpR9HknAgAWbViBD1TWisKeEv1RFUzBF1eL + NisEoXpDz6WuYDwCrFRkAFiSkUyGihHQ1xIGVBJgruJKtqsh8+oBduQA26tAcUVMolGMEzHhiK02 + 0dDsvZFCWIOBkEPI6QmiZHtil02orzZC8MWyyBIGVpiS1JyAwwmlmr9A6Qkbe7wfF3jMvgkVy/HF + ZX24efyd2kSgS9GTTdZSJVGH1lJaqrJNHstVgF0kYaE0sMKThGEEpJXaxumWFEQ6YJnoqgQ2aWNS + OoErjctRxmQROrXdI0vByoLwtTnP6Qox5yxDQOTVFhL1012lG4fd3hOC4hYopey4rKtC6mYsyNGB + LLIzAUWmORFYhAECIVsaweHK/KPaomLksoBik8zn3vTNMaAxbh5k4KnNEO5Uly0RvIgznfsLJxBk + hDkJGVUHwFhcFE4lFQzq0qmEC4CWy44deOKiRA2YwLrkcstOKMSVm2iwHjZH5e/EnPhmBZNRYODW + 9uv89d1jLkupTd5Sl4GQjgBRm2BWtLMqbVkiRxD2IozKE55nUzpRtiY7CkekGOXTd6RLWjooSa/z + Jc4AughE2efIVkvprN/UDjNmwTwcDuPozo7Ajivv7Zof1o20NzGacuyFnqX11A4lAyvrQe5t1m7A + uaXJPmy7ciSAhWIR1+icTinYKFAd1SwuxUku1Spj75NuaYvISmFQ+qtDNibUTZq1V3rQ5EU+FaB2 + bNmmpVwq3HvMXR22eCxFMqnDDROwVaKpWQMU7lQmwZ8s2Xy8QQQTmbN5mLlDIE88eJRUqCzGn/Sj + KnSP95c5gDc2Y4srQqdiQFfCWdL/HZF+4LKAVUNgEXr2cSptZlAqyZ4+Z5VaeXaTX+SWtctKXREF + ko8QcubnzLIxaDK/+JxfWHLhADyaTbpVGr+yx/J0QSA4qm2Zk8K6abOtT4JDAiCz9D5h8O8KgMxZ + XxicTICwDoNC4CYMrssvFOKY3isGQObudcPgSwKgzI6OCc6aMFjLSnXrgrMmPEeeU6FEbJHN2h5l + ZHelU8GjQOHP6UJjxcwqRxI9ydnGEQmDPyH8WE4Mx6hDSapHTjtqVTZzcZnuaweTbqVCHjvbT64d + iagGmGYiIiMcORg1ygqHWKFrPVlVaqOZHQ+nCg0lOSWzIksuZHXwSCOUoQdpQPhQB2eZk158Vo9F + DmHW6ULOr8W3UEMt0njtYcJen30CQogvx1EJ76GkJhRSLqlwhrc4Uqx8iF3HBkYtAolAL0OIxYqU + Q9MEEdKNmr5TmBQBFw7PNsZzNV9MhuG54hoohf3kkRd1HOprPaU61sbagu3ueGa128+sGIOtR9am + dtRNzUfE20/PeTV6W9L5NMxteu6r0SP5DqHovYziIaen9iwfyvXN9iJic+Sh+7CUh6aXHdTa5KrI + Hzt2sbFKSYelxR/vbfx3DvRsn2FJHxZYxz70MJri2jvq2J8vmg2dPsU1B4EOOwTUOuKz/3TQBk1x + zqd36Z8W8To5nuWPGXQy06t5rMeLB+xt5y3u1zezujdinEur65RGvfb/nH2y7a2vwNx/EiO5K8KF + 2g1tmx0hIdv9KFnQ24dhVnXbr+/1QjLjLYQ9ThUvsFujE4NK7M43AXsk/WwRz5JQy7P0SSujIo4z + Lcxm2vGGaxFPnyjsvav17UMqvEeydwuq88hk+4iXuR/bpre2PFYa8fP53nq7ZC8fe7dzDiXaFwjb + VumvRe7nxMO9MbEtZTu+t2O8vRbj/w/ivdxRgnVHab9su/84xeYLTT1vUjHv0CcovqIEtvMfkeDl + 4cE9HN361vShL4LRp9bW6yrfNP8R5Yt9UQ6Br8e879iC9xePm2MfMG77Io3VRBprbxhxJ5updk9c + sjah9/K6fci167ypd4DcdDL3ECXah/jS4eeU1idch7jVZtrtmfUeIvOhPmr1+6h1iEq2pnv9ZjN+ + ltmYe6FZkr0zRPrQ+Zy7FE8F2hyvFsTZgf57yGSRJOyeMNLldLT+GxinCATJsjpvwGY4mbTAU4mB + sX67QuEmganBxI6H1998fcWPLDc5RnU2PNHuHjI+bHzcihr0APE5sXq88aS7frMKiwZMO9uNrQGV + A3vW8IgoFlbx2zSmu+MhAwy330viagOva19UeD/8FqcxjwfJbHCiDbipeRZvqNEL3jdwrS9/+PpG + Sg3Kg8EOSMKhmFjn7j6uZO3l01ez48GGfQ7aXGrHj0mGZy8jC1fJPT1zGXlGPNTa2CVVEYGm+OWN + Ej+9AeKlgYcj0fiYF+/gzgsMOR77ohHOoo6WSBvl6M4z8CMk6gTsXmXBSvI0heuTzrJ88MmhHUUd + n+GjrubhPYXnUR+aoh/ejY2/r18zZNfJ6uXDhU+NxQiXSySKKzpJeczw2+B/anFa7gpKG9ZjiAUn + eBy5H1jY4fGDT3rCxRvl47Vbn47kD/GgSL8zo/ye47L89YEB3w1kowDAglPT2n67qYHu6wHggfx5 + hMHO98kG56cj9NuPitLmPlSXYZlE9Ns/2zjVPZcZI263SWFe0qUCzokDddt6r6pPGRsvTg3Of84f + Clq80ZJSQ8/Z00f7VNDMG9bf7WlINh/g1qIw0+gwuPZUE0LFnH8U6XMVFrS3clnn9LbQRjtQ3T5p + MR2UhdNroej743c3CIrar/JHfqDzMJ3nZTXFj66MR+EyGS3isqTw8usmusPl27nwtEvQ01B1lqde + B9q8iO/OBioOhu9CPLePIL5eh0L9c09XFBrsO49YV3jApN+q+uU2DYH8/Fp2I0U2qhuF5y+UdJdM + PyU4ZvlyyRDc9XmOSNVifvch8ovfH4p4ZxP/fBaOCibRDgCSWqty2O49zQyK2s7E0wTClpZUaK/t + qh19k/yhpJ8DyzLEREP7YR5T92Gpyck2mxqOJNJbmOkTpgj5u3LXm0XvYoxHUk6fNwiKyuBcqfQ0 + OSchfgEX5S9k0vR7ZKej5HzDqndGld54oW2mEPpdnM2sshn+VHkbWWv9SQ1pB+BurKcjGf+pKH+5 + 7S9QSwMEFAAAAAgAgnMmUAhKLXghEwAAzEsAABQAAAB3d3dyb290L2RlZmF1bHQuaHRtbNVce2+j + RhD/v1K/A3UVOVUD5o3tS6LmcddWStWqL6l/VQSTGB0GC4hzuarfvb/Z2QXbGJukadX6LrDszs7O + e5Zd4PSz6++vfv7th7favFqk559+ckpnLQ2z+7NBnA1QQ3VxOENJw+90EVehFs3Dooyrs8FDdaeP + BxttWbiIzwarJH5c5kU10KI8q+IMsI/JrJqfzeJVEsW6uDjRkiypkjDVyyhM4zOrxlQlVRqfv43m + +WVenY7EpWorqye+kL/bfPak/UHXzW8RFvdJNtXM5Yc3my3LcDZLsvtdTXegVL8LF0n6NNV+iu/z + WPvl2zWYPz/9pL4Q8jrZT8Q8Tu7n1VSzTPOoCw2JNi62e96G0fv7In/IZnqyCO/jqfZQpMeDWViF + U1ExKlf3X34ABUfOFYraKi7KJM/OhpZhDbVkdja8CZ/i4ndcACorz4bzqlpOR6PHx0fj0THy4n5k + m6ZJeCTI9EOaZO93AVqTyWQkWgF6NoTghtqTPJOeL3Oq1UzN9Z2xMdF8zzL8oSb0dDaMs/A2jfWG + pWkWP2rb4G8EFdNyGUbosyziMi5W8fDIeQsOBSatelqiqYo/VKOoLKlJM8rKPAou75I0nR7Zjudd + mG/NN0fBNbVYqiXLs1hV2mvgpumNL8aqxVlrcezx5XXd4q61XPrXV+8s1eKhJQfJSfU0NQ37jYAi + VQHyp1+//vb6d+v3L97slgDhODIvwN5I8MesFnFUaU9Sj1EallAdmBxq7D1D13dxwZZ1NvRd33CG + I+66DKt50wXdYQXfOZNxYIxPHNsx/BvXsUzDOQHuue57hp/qrm8a1ok4RroVGN4JHVCNWlHy0e/E + vHFsgEyo5zfmSow6d3xUOdqNMx5PTlxrbAQR9WAshIBLjCC1bQCciOPc92lowmjz8cqZBESY409A + q7pwMdrJOv0fd3NqS06DsWv4GNky7BvXdl2MJzidjB1jkq5xeuUEMDz3xA2IJifwA7SoiwZJx3AO + D0eKYPyODapTnGywK45SlJviODGFLFLB8Yk4fkNIbhSmutAxsMsDK3nTmOtS9Wx0lVV8hFgdD2O5 + pkXynJi+4cmLBkk9GPw7Douvi3CWIFyLGKJMeKjdy+pfEK9BzAO88ydy1e+zX8oYrmudDZ3AcozA + C+D5T7h0IWLLCjw02micWJbhmmMXjbi0XMP2HK/B+3MRZuVdXizOhouwKpIPx5YIETqdfBckT/zJ + F3U4yJdafndHGWho1oGGqvUoT/OCHPWd+L0RlY2LeuC2jcPai0N1GW1KaJeKPOV0nk3WZ7vKFvhQ + e4UuvUL3bOcEf3PLMidw0PWOtWIoRlPJvBh88aYzTxTxMg6RbLJcFrtBy+RjzFmpG2aZl8jMOVJo + QaGmE1AKS/ucY+8mHActOVQ710pCXFdl4nbmtNtZWg74OE+quCu3O+hGCYZObQyzpFymIXJ8kpFK + 9ds0j953JWiDM7SeYB7z4jT9BvOksczVR7Yps/WRc31kk9fiiNpkxhWcuWWlSM1cT4n5yLnYmcM3 + gC9Erm53audz2U2Akqj5+mn9mlKUOUGtzPSyDRX0Z3kIY3S2Pe4r/IhhWmkPdCDxiZ7t3s5lzQPg + aB4g0ai5AIrsBWpCAGBMCSSUmhYwFBPdzA4IJc0CaJTgum61mtba2wHSTsy4lLl5TVyGZFl4P9dh + QK4Thi/1606MgGvZrLmaJTaqkd/XZMuoso1ZGoQ0ku886OTKMm1jcgMTGuPC9yPdMbz6b0KGdWXq + FjJS6gS64+MMeFQ6SFcBzqhyI5274yhLyJzUEX9I1OhJOkLOvGmG/FgbBv43PIzuX8zOBEQq7CBO + d8S4oDLCvEPHn6DQ1W0+g0EnAmsAMcGqjRpZezOeCEy2SbxKPJLVmuTIEizy0TZ8ascQqozpTSnH + xGxArytvmMpGBq/DuikU5Y9JFwj8QmljUiGOSKKRKWtFjYDletdwpZ7GojWQJbRdTRjQZ11OACqG + EKe1AT/WIgFBihIPhhKBa1tQ4kjrCKjEgopoTLRzfS28pt0S1yZdCavyZQltP03QKAfBaW3IVxOo + D1N4dYH6MKtGoJg9jxuBygHbAqWGf1ygPqxeDiJp2SvQV5tR3KU5NafxXdWVvikBd0wJ3OfnZfoh + dVZJhBWDME3uMTtZJLNZGh9K3pQdtD92ThZ00E+kHu2eZnz+Tvz2rRQM1FLBoHuOE9i7VxsepaRw + L7rVnMZVBcopEfJyheF4LRxCTEraE/9flGiSZTjS2k6YoNRaf0kyXWraHbc1vQg/qGbL8Znu9vKN + VE34UOW722lqKgH+Caam0/CuavGmFrSg+G2FRynuD6ZYC6rmXYqowts9dCwwri7x62ERh/uMlqe5 + nbgUGrF2xnja1m2K39+1btd/tnWvG64P59gvksZ/2yyMTfrXTZyN24u/yyBw7GXQ3s+g04tBfWl1 + aBs3peRHEkm7HQZX5QuQMd4zTpzNlnmSbctxi8Z2pPYCS7T0FH0v2bZF21uyXYJti+yAPOb5I6D0 + 24ckxS1xHNHdrrZPAeJe9MXuuGu487lTj9iWjHXAq/xXyBl2LcD20jn+kXK07VGErVZqwQb3vMtl + XERh2R3WyipetnJFOzbepfE2MSJ867jTX5RTrNEUcRVth9a1lYo4Datk1ZuOWdq6oc8L5AE1JQDv + ZZ4mM+3zC5P+dcX0Jqu2lyKEELtl3J/U81k1nd7GEHm8Zxlia3GkzdthtqQMaJXroZRrNx0JcDjc + amHBuUH3gg5G79RfeAu6Hpjw7TjEXZ8hLqOKywrulqbxMwR3mz48w3ygE+2PZxjFmnMn2Twukmqf + f9/m6Wyv75rPEshspv3xTHK2hts/TTMPJCfH7k3uNA2hu2iOUNnfSUVEWoYFLLN7TlSFN1j2OmwH + a8gOulEbtj3L8i8ure3Gh6KkVpGU4+J5kb4OL1sN7PkiA0CrGeJzmB6SxvQujx7KbZnkDxWpf41R + 4uM2urMP4pvnKxHl21ljFkd5EbK3P2SQI4bY729i3fU5GaOeGiD3771rsLzd96bc9TBR57Nk1bXj + 63Tc93LLy265t2aNpZ7m93mvOzBv/x3YZGy+/g3Y7phA8O1q4UEqCXC4wNK9uSgPcQ+e2ysSB3cs + ei3Vmxc9V+u/+0kvnxaI1f+L9XpXHLGt8oLV+rrvf2CtPnACN3C3QOwNkGvfeWf7WyDOBojlB9fO + 2y0QdwPEfhv4l1dbIN7mvsH15dhynrFv4PfaN8DO9859A2vSLOv1Ww+1AkusENKm98p1DHuuYw/y + VzfArrFu0qYxdm5dAsBy4lz3xHWg05VoX3HJNya/Eoq5ZWLv2bK5iz3HHk6KDhZ2wL8RQ7GcPoIC + DB2ItUoXy5q8Xo8LEyv1arETK/1yhX8sricSBvioFDHlvDzqUolHVb0j7qd6O+LYlNEuyrbO/WyU + uEUSGdEyPyNAw0QCK/R2CTod6qszPagMxA4Jr8zW3NnysmGWuR97YjXXg85XjkVid1a6Y32DBgli + m4HoG/hKbmDZkizz4I5g2CcRoY1qPNHmEUGyzV75aK3lG+holsy4dBb70LwSTiLnEWhHmrlHM4o+ + L5QDwKL9FNCBylpQ2PKgP6qCKfjibNFauhio3m9yqSsIjwArBRkAlngkk6FiBPQ1hwGVBJirqJLt + SmVerWBHKtheBYoqIhKNQk9EhCN2gkRDszVEAmEJBoIPwacnBiXbE5tAQny1EYIu5kWWoFhhSlJy + Ag4P0NT0BUpO2Hfi7aLAY/JNiFjqF6d1dbP+ndpEIEvRk03WUiVRh9ZSWqqyTdblKsAmh7BQUqzw + JGEYAUmltnG6JAGRDJgnOiuGTdo3k07gSuNylDFZhE7tRshSsLLAfG3OczqDzTnzENDwaoeD+umu + ko3Dbu8JRnEJlJJ3nNZFIWUzFsPR80JkZwKKTHMisAgDBEK2NILDmelHtUXFyGUGxR6Oz73pyDGg + MW5WMvDUZgh3qsuWCF5Emc79hROIYYQ5CR5VB8BYXBROJQWM0aVTCRfAWC47duCJk2I14AHWOZc7 + SkIgrtzjgfWwOSp/J+LEkQVMRgHFrW0n+eubm1yWXJu84ysDIT2hQm2CWNHOorRliRxB2IswKk94 + nk3pRNma7CgckWKUT8dIl2PpGEl6nS9xBpBFIMo+R7aaS2f9onaYMTPm4dklju7sCOy48tqu6WHZ + SHsT2pS6F3KW1lM7lAysLAe59Va7AeeWJvuw7UpNAAvFIq7ROZ1SsFGgOqqZXYqTXKpFxt4n3dIW + kZXCoPRXh2xMiJska6/0oMmLvGmtNhTZpiVfKtx7TF0dtliXIpnU4YYHsFWiqUkDFK5UJsGfLNm8 + +y6CiczZrGbuEMgNeY+SCpWF/kk+qkL3ePuTA3hjM7Y4I3QqAnTFnCX93xHpBy4LWKUCi9Czj1Np + M4NSSfb0OavUwrOb/CJ3VF0W6opGIP4IIWd+ziwbSpP5xef8wpwLB2BtNulWSfzKHsvN70BQVNsy + J4V102ZbnwR9AiCT9HfC4D8VAJmyfWFwMgHCOgwKhpswuM6/EIhjeq8YAJm61w2DLwmAMjs6Jihr + wmDNK9WtM86S8Bz5GAUlYots1vYoI7srnQoeBQp/TifSFROrHEn0JGcbR8QM/gTzYzkxHKMOJSke + Oe2oRdnMxWW6rx1MupUKeexsv7p2JKIaYJqJiIxw5GDUKCscIoXO9WRViY1mdqxOFRpKckomRZZc + 8OrglkYIQw/SgPChDs4yJ7n4LB6LHMKs04WcX4ujEEPN0njtZsJen30CQrAv9aiY91BSEwrJlxQ4 + w1scKVY+2K5jA6MWgUSglyHEYkFK1TRBhGSjpu8UJkXAhcOzjfFczReTYXiuOAdKYL965EUdz5y1 + 7lIda2NtwXZ33LPa7XtW6GDrlrWpHXWP5iPiHR7PebXxtrjzSc3t8dxXG4/46zOi97IR+zzcc2D5 + UKxmtpcQmz367id5vFda0izyx479V6xR0pO84o/3If47T5tsP3SRPiywXt33SSlFtXfUsXtS9Njr + geCe+6TK5vMovR5j2RgzPLi8n+V7VvZn+WMGmcz0ah7r8eIB+7Z5i/r1jafujRXn0uraZeM1/mfu + aW1vWwU9NvWTuyJcqN3FttkRErLdz5IFvRIXZlW3/freXkgmvIVwj1PFC+zG6ESgYrvzNbU9nH61 + iGdJqOVZ+qSVURHHmRZmM+14w7WIpi8U9gNr9e3HK9o7Iw0JfZ7n234myTyMbdNbWx4rjfj5dG+9 + +nCQjoObOX0H3RcI21bpr0Xu58TDgzGxzWU7vrdjvL0W4/8P7L3cUYJtR2m/CfqSt212vObDtEOe + GPEVObCd/wgHLw8Pbn9061vQfd9Sol8trdcVvmn+K8IXu6IcAl+PeN+xBe0v1ptj99DboUhjNZHG + OhhG3Mlmqj0Ql6xN6IO0bj+W2fUEqteDb3qUtI8Q7T6+1OcJou3pVh+n2ky6e+a8fTju66HWfg+1 + +ghka7K332jGzzIa8yA0c3Jwfkg/evrmLsU9gTbHU+9x1tN7+0wVicPu6SKdTkfrn2c4RRhIltV5 + AzbDs0YL3JMY0PXbFQo3CQwNBnY8vP7+uyu+YbnJodXZ8ES7e8j4udzjVsyg24d3ROrxxl3u+sUq + LBow7Ww3tgZUKvasoRExLKzit2lMV8dDBhhuvzLD1QbeJL6o8OryLZ5gPB4ks8GJNuCm5j68GY3e + Pb6BY33z83c3kmuMPBjsgCQcioh16u7jStZePn07Ox5s2OegTaV2/JhkuPMysnCV3NMdl5FnREMt + jV1cFRHGFB+FKPFVCAxeGrg1Eo2PefEe7ryAynHTF43w/OZoiaRRju48A9/HUE+HHhQWrCRPU7g+ + ySzLB1/07Sjq+Ik86mr27yk8j/rQBL1/Nzb+ff0alV0nq5erC78aixEul0gTV/Q85DHDb4P/qcVp + uSsobViPIRab4HHkfiBhh8cPvtgTLt4oH6/d+nQkvw2DIn0CRfk9x2X5YvyArwayUQBgualpbb98 + 00Dv6wHggXxzf7DzVafB+ekI/Q6joqR5AJX6Gs02RnXNZcaHy+2BMCfpEgBnxIG6bL0EtE8UG2/5 + DM5/yx8KWrjRklJDz9nTZ4cE0MwZ1l9EEZi0KMw0eoxae6rRomIea5covlMhQHsrF3BObwttdL5j + UvlEK1EZvfOQ3WuYzMtPzECsYTrPy2qKT36MR+EyGS3isqQIYvQne+daEhQfKlD5WOpAmxfx3dlA + hbLwfYgb7xG40utopr/zdIWvwUVUtH8VbhHpE0i/36YhsJ9fy34koEYko/CgCdasDM5/TfAYpPZi + 0hGA9XmOaNIi7uLjQxHv5EPo8qe4oK8yEbWknyK+p6xc1HoX83iEDC2p0F7ruR35kvyhpK9DQdtp + aWg/z2PqPiy1epr7y4839CUfejkvfUJ6zt+XbUxp8j6GHJNyekh4Cu/gXAnnNDknsn/HuOXvZF34 + IBU4S843DGynF+/1T20zYNMHUrZi+IamVXkbWWutR3l3B+BurKcjGW2pKD/d9RdQSwECPwAKAAAA + AACCcyZQmasY7B4AAAAeAAAACwAkAAAAAAAAACAAAAAAAAAALmRlcGxveW1lbnQKACAAAAAAAAEA + GADScgSBncTVAdJyBIGdxNUB0nIEgZ3E1QFQSwECPwAKAAAAAACCcyZQB92O2isAAAArAAAACgAk + AAAAAAAAACAAAABHAAAALmdpdGlnbm9yZQoAIAAAAAAAAQAYABtHB4GdxNUB0nIEgZ3E1QHScgSB + ncTVAVBLAQI/ABQAAAAIAIJzJlC8qlf6NQIAAE8FAAAaACQAAAAAAAAAIAAAAJoAAABBZGFwdGVy + V2l0aEVycm9ySGFuZGxlci5jcwoAIAAAAAAAAQAYABtHB4GdxNUBG0cHgZ3E1QEbRweBncTVAVBL + AQI/ABQAAAAAAIJzJlAAAAAAAAAAAAAAAAAFACQAAAAAAAAAEAAAAAcDAABCb3RzLwoAIAAAAAAA + AQAYABtHB4GdxNUBG0cHgZ3E1QEbRweBncTVAVBLAQI/ABQAAAAIAIJzJlDYPhbw3QEAAP8EAAAP + ACQAAAAAAAAAIAAAACoDAABCb3RzL0VjaG9Cb3QuY3MKACAAAAAAAAEAGAAbRweBncTVARtHB4Gd + xNUBG0cHgZ3E1QFQSwECPwAUAAAACACCcyZQvQ5/jqkAAAAFAQAACQAkAAAAAAAAACAAAAA0BQAA + YnVpbGQuY21kCgAgAAAAAAABABgAEsMXgZ3E1QESwxeBncTVARLDF4GdxNUBUEsBAj8AFAAAAAAA + gnMmUAAAAAAAAAAAAAAAAAwAJAAAAAAAAAAQAAAABAYAAENvbnRyb2xsZXJzLwoAIAAAAAAAAQAY + ABtHB4GdxNUBG0cHgZ3E1QEbRweBncTVAVBLAQI/ABQAAAAIAIJzJlCe+MEGQgIAAO8EAAAcACQA + AAAAAAAAIAAAAC4GAABDb250cm9sbGVycy9Cb3RDb250cm9sbGVyLmNzCgAgAAAAAAABABgAVV0J + gZ3E1QEbRweBncTVARtHB4GdxNUBUEsBAj8AFAAAAAgAgnMmUPl0cgpfBAAAhgsAAAoAJAAAAAAA + AAAgAAAAqggAAGRlcGxveS5jbWQKACAAAAAAAAEAGAASwxeBncTVARLDF4GdxNUBEsMXgZ3E1QFQ + SwECPwAUAAAACACCcyZQ4LGfRU8AAAB1AAAAFQAkAAAAAAAAACAAAAAxDQAARGlyZWN0b3J5LkJ1 + aWxkLnByb3BzCgAgAAAAAAABABgAVV0JgZ3E1QFVXQmBncTVAVVdCYGdxNUBUEsBAj8AFAAAAAgA + gnMmUMRa8yNUAQAAHAMAAA4AJAAAAAAAAAAgAAAAsw0AAEVjaG9Cb3QuY3Nwcm9qCgAgAAAAAAAB + ABgAVV0JgZ3E1QFVXQmBncTVAVVdCYGdxNUBUEsBAj8AFAAAAAgAgnMmUE0vPwzEjQAAOLEDABEA + JAAAAAAAAAAgAAAAMw8AAEVjaG9Cb3QuZGVwcy5qc29uCgAgAAAAAAABABgAQcALgZ3E1QFVXQmB + ncTVAVVdCYGdxNUBUEsBAj8AFAAAAAgAgnMmUJtH0O+VAAAA4AAAABoAJAAAAAAAAAAgAAAAJp0A + AEVjaG9Cb3QucnVudGltZWNvbmZpZy5qc29uCgAgAAAAAAABABgAQcALgZ3E1QFBwAuBncTVAUHA + C4GdxNUBUEsBAj8AFAAAAAgAgnMmUOkTJ7OnAQAAVAQAAAsAJAAAAAAAAAAgAAAA850AAEVjaG9C + b3Quc2xuCgAgAAAAAAABABgAQcALgZ3E1QFBwAuBncTVAUHAC4GdxNUBUEsBAj8AFAAAAAAAgnMm + UAAAAAAAAAAAAAAAABIAJAAAAAAAAAAQAAAAw58AAFBvc3REZXBsb3lTY3JpcHRzLwoAIAAAAAAA + AQAYAKheFYGdxNUBqF4VgZ3E1QHLIg6BncTVAVBLAQI/ABQAAAAIAIRzJlAJW1YySQEAAFYCAAAx + ACQAAAAAAAAAIAAAAPOfAABQb3N0RGVwbG95U2NyaXB0cy9jbGk2ejd6enZuYmtpZ3UuUHVibGlz + aFNldHRpbmdzCgAgAAAAAAABABgAfVYig53E1QE6JumCncTVATom6YKdxNUBUEsBAj8AFAAAAAgA + gnMmUODPebiRAAAA3AAAAC0AJAAAAAAAAAAgAAAAi6EAAFBvc3REZXBsb3lTY3JpcHRzL2dpdGh1 + YlByb2plY3QuanNvbi50ZW1wbGF0ZQoAIAAAAAAAAQAYAMsiDoGdxNUByyIOgZ3E1QHLIg6BncTV + AVBLAQI/ABQAAAAIAIJzJlBa0xds3AAAAA4CAAAoACQAAAAAAAAAIAAAAGeiAABQb3N0RGVwbG95 + U2NyaXB0cy9JbmNsdWRlU291cmNlcy50YXJnZXRzCgAgAAAAAAABABgAyyIOgZ3E1QHLIg6BncTV + AcsiDoGdxNUBUEsBAj8AFAAAAAgAgnMmUKjzyVaUAgAAdQcAACIAJAAAAAAAAAAgAAAAiaMAAFBv + c3REZXBsb3lTY3JpcHRzL21lcmdlU2V0dGluZ3MuanMKACAAAAAAAAEAGADLIg6BncTVAcsiDoGd + xNUByyIOgZ3E1QFQSwECPwAUAAAACACCcyZQNCH6uBsDAABSCAAAIAAkAAAAAAAAACAAAABdpgAA + UG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWQKACAAAAAAAAEAGAAchRCBncTVAcsiDoGd + xNUByyIOgZ3E1QFQSwECPwAUAAAACACCcyZQ72tPdXYAAAB7AAAAJgAkAAAAAAAAACAAAAC2qQAA + UG9zdERlcGxveVNjcmlwdHMvcHVibGlzaC5jbWQudGVtcGxhdGUKACAAAAAAAAEAGAAchRCBncTV + ARyFEIGdxNUBHIUQgZ3E1QFQSwECPwAUAAAACACCcyZQNiuxcHICAABEBQAALQAkAAAAAAAAACAA + AABwqgAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaFByb2ZpbGUueG1sLnRlbXBsYXRlCgAgAAAA + AAABABgAHIUQgZ3E1QEchRCBncTVARyFEIGdxNUBUEsBAj8AFAAAAAgAgnMmUMoi4NEkAQAAMgIA + AC4AJAAAAAAAAAAgAAAALa0AAFBvc3REZXBsb3lTY3JpcHRzL3B1Ymxpc2hTZXR0aW5ncy54bWwu + dGVtcGxhdGUKACAAAAAAAAEAGAAWBBOBncTVARyFEIGdxNUBHIUQgZ3E1QFQSwECPwAUAAAACACC + cyZQE9l4S9IAAAB3AQAAHQAkAAAAAAAAACAAAACdrgAAUG9zdERlcGxveVNjcmlwdHMvcnVuR3Vs + cC5jbWQKACAAAAAAAAEAGAAWBBOBncTVARYEE4GdxNUBFgQTgZ3E1QFQSwECPwAUAAAACACCcyZQ + oegHQ4YCAABDBgAAKwAkAAAAAAAAACAAAACqrwAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBHaXRo + dWJSZW1vdGVSZXBvLmNtZAoAIAAAAAAAAQAYABYEE4GdxNUBFgQTgZ3E1QEWBBOBncTVAVBLAQI/ + ABQAAAAIAIJzJlDnyEkF/wIAADIHAAAoACQAAAAAAAAAIAAAAHmyAABQb3N0RGVwbG95U2NyaXB0 + cy9zZXR1cFZzb1JlbW90ZVJlcG8uY21kCgAgAAAAAAABABgAFgQTgZ3E1QEWBBOBncTVARYEE4Gd + xNUBUEsBAj8AFAAAAAgAgnMmUAAF6ua/AAAAHAEAACoAJAAAAAAAAAAgAAAAvrUAAFBvc3REZXBs + b3lTY3JpcHRzL3Zzb1Byb2plY3QuanNvbi50ZW1wbGF0ZQoAIAAAAAAAAQAYAKheFYGdxNUBqF4V + gZ3E1QGoXhWBncTVAVBLAQI/ABQAAAAIAIJzJlC/cE+UDQEAACMCAAAKACQAAAAAAAAAIAAAAMW2 + AABQcm9ncmFtLmNzCgAgAAAAAAABABgAqF4VgZ3E1QGoXhWBncTVAaheFYGdxNUBUEsBAj8AFAAA + AAAAg3MmUAAAAAAAAAAAAAAAAAsAJAAAAAAAAAAQAAAA+rcAAFByb3BlcnRpZXMvCgAgAAAAAAAB + ABgACMbKgZ3E1QEIxsqBncTVAaheFYGdxNUBUEsBAj8AFAAAAAgAgnMmUPQDssXvAAAAxgEAAB4A + JAAAAAAAAAAgAAAAI7gAAFByb3BlcnRpZXMvbGF1bmNoU2V0dGluZ3MuanNvbgoAIAAAAAAAAQAY + AKheFYGdxNUBqF4VgZ3E1QGoXhWBncTVAVBLAQI/ABQAAAAAAINzJlAAAAAAAAAAAAAAAAAbACQA + AAAAAAAAEAAAAE65AABQcm9wZXJ0aWVzL1B1Ymxpc2hQcm9maWxlcy8KACAAAAAAAAEAGADKTtSB + ncTVAcpO1IGdxNUBCMbKgZ3E1QFQSwECPwAUAAAACACDcyZQ/fRKCmgCAAAsBQAAPAAkAAAAAAAA + ACAAAACHuQAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvY2xpNno3enp2bmJraWd1LVdlYi1E + ZXBsb3kucHVieG1sCgAgAAAAAAABABgAqusPgp3E1QHKTtSBncTVAcpO1IGdxNUBUEsBAj8AFAAA + AAgAg3MmUNqtafSeAAAAtgAAAAsAJAAAAAAAAAAgAAAASbwAAHB1Ymxpc2guY21kCgAgAAAAAAAB + ABgAiz+ygp3E1QEY8oSCncTVARjyhIKdxNUBUEsBAj8AFAAAAAgAgnMmUG4/rhdMBAAA+woAAAkA + JAAAAAAAAAAgAAAAEL0AAFJFQURNRS5tZAoAIAAAAAAAAQAYAKheFYGdxNUBqF4VgZ3E1QGoXhWB + ncTVAVBLAQI/ABQAAAAIAIJzJlDI6E8OqwIAAIsHAAAKACQAAAAAAAAAIAAAAIPBAABTdGFydHVw + LmNzCgAgAAAAAAABABgAEsMXgZ3E1QGoXhWBncTVAaheFYGdxNUBUEsBAj8AFAAAAAgAgnMmUFKs + V9Q9AQAA7gEAAAoAJAAAAAAAAAAgAAAAVsQAAHdlYi5jb25maWcKACAAAAAAAAEAGAASwxeBncTV + ARLDF4GdxNUBEsMXgZ3E1QFQSwECPwAUAAAAAACCcyZQAAAAAAAAAAAAAAAACAAkAAAAAAAAABAA + AAC7xQAAd3d3cm9vdC8KACAAAAAAAAEAGAASwxeBncTVARLDF4GdxNUBEsMXgZ3E1QFQSwECPwAU + AAAACACCcyZQ1Jc3CnkTAADLTQAAEwAkAAAAAAAAACAAAADhxQAAd3d3cm9vdC9kZWZhdWx0Lmh0 + bQoAIAAAAAAAAQAYAC8kGoGdxNUBEsMXgZ3E1QESwxeBncTVAVBLAQI/ABQAAAAIAIJzJlAISi14 + IRMAAMxLAAAUACQAAAAAAAAAIAAAAIvZAAB3d3dyb290L2RlZmF1bHQuaHRtbAoAIAAAAAAAAQAY + AC8kGoGdxNUBLyQagZ3E1QEvJBqBncTVAVBLBQYAAAAAJwAnACsQAADe7AAAAAA= headers: cache-control: - no-cache content-length: - - '64803' + - '64799' content-type: - application/x-zip-compressed date: - - Wed, 27 Nov 2019 23:32:36 GMT + - Mon, 06 Jan 2020 14:28:14 GMT etag: - - '"25c6cb129273d708"' + - '"849c8ca6b492d708"' expires: - '-1' last-modified: - - Wed, 27 Nov 2019 23:32:31 GMT + - Mon, 06 Jan 2020 14:28:08 GMT pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=2bb9db0fc1f15806c34e6e3dcd35d19105172686523f20adf76a792565b6cb06;Path=/;HttpOnly;Domain=clihg5fghlrkzc2.scm.azurewebsites.net + - ARRAffinity=79ee6521ecdfe28715da1074b10830d5637ab5d6ba68e2ca2e68ece03d048a94;Path=/;HttpOnly;Domain=cli6z7zzvnbkigu.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -2067,16 +2489,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"8de18173-b1c9-447e-aa48-476f2fed117f","MicrosoftAppPassword":"11605e5b-08f9-4ffb-a1ca-fb7b3f8d4295"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"6f1df9e7-7d83-45b7-9204-5dbe261bb46f","MicrosoftAppPassword":"9e9ba6e1-6059-4dc7-8dd4-7d2b685933fd"}}' headers: cache-control: - no-cache @@ -2085,7 +2507,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:32:36 GMT + - Mon, 06 Jan 2020 14:28:16 GMT expires: - '-1' pragma: @@ -2103,7 +2525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -2123,12 +2545,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central @@ -2141,7 +2563,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:32:36 GMT + - Mon, 06 Jan 2020 14:28:17 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml index e7b9358789a..e8f156b27be 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_download_should_create_env_file_for_v4_node_webapp_echo_bots_no_bot_file.yaml @@ -15,8 +15,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -28,7 +28,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 Nov 2019 23:33:22 GMT + - Mon, 06 Jan 2020 14:21:00 GMT expires: - '-1' pragma: @@ -56,8 +56,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,7 +113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:33:23 GMT + - Mon, 06 Jan 2020 14:21:01 GMT expires: - '-1' pragma: @@ -145,30 +145,28 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:33:23 GMT + - Mon, 06 Jan 2020 14:21:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -197,22 +195,20 @@ interactions: uri: https://dev.botframework.com/api/misc/bottemplateroot response: body: - string: '"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/"' + string: '"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/"' headers: cache-control: - no-cache content-length: - - '83' + - '89' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:33:24 GMT + - Mon, 06 Jan 2020 14:21:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000 vary: @@ -269,9 +265,9 @@ interactions: "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "8636e537-ec66-4525-bf20-8ed100bc3af8"}, "appSecret": {"value": "774be02c-1746-4a1d-993f-d648629bc243"}, + "410391b5-dab5-4a62-9c22-4234d6efb7f4"}, "appSecret": {"value": "d5867eb6-d6d5-43c8-97e9-d7acab05fae9"}, "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, - "zipUrl": {"value": "https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"}, + "zipUrl": {"value": "https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"}, "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": {"value": "centralus"}, "botId": {"value": "cli000002"}}, "mode": "Incremental"}}''' headers: @@ -284,32 +280,32 @@ interactions: Connection: - keep-alive Content-Length: - - '4600' + - '4606' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"8636e537-ec66-4525-bf20-8ed100bc3af8"},"appSecret":{"type":"String","value":"774be02c-1746-4a1d-993f-d648629bc243"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-27T23:33:25.3401486Z","duration":"PT0.3453019S","correlationId":"b27ae4da-c1f7-47a0-a9e3-9274f46e1e31","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"410391b5-dab5-4a62-9c22-4234d6efb7f4"},"appSecret":{"type":"String","value":"d5867eb6-d6d5-43c8-97e9-d7acab05fae9"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:21:05.1539429Z","duration":"PT1.2743268S","correlationId":"b65183a4-890b-41c2-957c-ed78f286a8f5","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267092804827921?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232864215980225?api-version=2019-07-01 cache-control: - no-cache content-length: - - '4121' + - '4127' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:33:24 GMT + - Mon, 06 Jan 2020 14:21:05 GMT expires: - '-1' pragma: @@ -319,7 +315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -337,10 +333,96 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -352,7 +434,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:33:54 GMT + - Mon, 06 Jan 2020 14:22:37 GMT expires: - '-1' pragma: @@ -380,10 +462,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -395,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:34:25 GMT + - Mon, 06 Jan 2020 14:23:08 GMT expires: - '-1' pragma: @@ -423,10 +505,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -438,7 +520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:34:55 GMT + - Mon, 06 Jan 2020 14:23:38 GMT expires: - '-1' pragma: @@ -466,10 +548,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -481,7 +563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:35:25 GMT + - Mon, 06 Jan 2020 14:24:10 GMT expires: - '-1' pragma: @@ -509,10 +591,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -524,7 +606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:35:55 GMT + - Mon, 06 Jan 2020 14:24:40 GMT expires: - '-1' pragma: @@ -552,10 +634,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -567,7 +649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:36:25 GMT + - Mon, 06 Jan 2020 14:25:11 GMT expires: - '-1' pragma: @@ -595,10 +677,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -610,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:36:55 GMT + - Mon, 06 Jan 2020 14:25:41 GMT expires: - '-1' pragma: @@ -638,10 +720,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -653,7 +735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:37:25 GMT + - Mon, 06 Jan 2020 14:26:11 GMT expires: - '-1' pragma: @@ -681,10 +763,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -696,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:37:55 GMT + - Mon, 06 Jan 2020 14:26:42 GMT expires: - '-1' pragma: @@ -724,10 +806,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -739,7 +821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:38:25 GMT + - Mon, 06 Jan 2020 14:27:12 GMT expires: - '-1' pragma: @@ -767,10 +849,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -782,7 +864,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:38:56 GMT + - Mon, 06 Jan 2020 14:27:43 GMT expires: - '-1' pragma: @@ -810,10 +892,53 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267092804827921?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:28:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232864215980225?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -825,7 +950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:39:26 GMT + - Mon, 06 Jan 2020 14:28:43 GMT expires: - '-1' pragma: @@ -853,22 +978,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"8636e537-ec66-4525-bf20-8ed100bc3af8"},"appSecret":{"type":"String","value":"774be02c-1746-4a1d-993f-d648629bc243"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-27T23:39:04.282134Z","duration":"PT5M39.2872873S","correlationId":"b27ae4da-c1f7-47a0-a9e3-9274f46e1e31","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"410391b5-dab5-4a62-9c22-4234d6efb7f4"},"appSecret":{"type":"String","value":"d5867eb6-d6d5-43c8-97e9-d7acab05fae9"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:28:39.3333706Z","duration":"PT7M35.4537545S","correlationId":"b65183a4-890b-41c2-957c-ed78f286a8f5","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' headers: cache-control: - no-cache content-length: - - '4755' + - '4762' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:39:26 GMT + - Mon, 06 Jan 2020 14:28:44 GMT expires: - '-1' pragma: @@ -896,15 +1021,15 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5300b8dd-0000-0100-0000-5ddf09020000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"8636e537-ec66-4525-bf20-8ed100bc3af8","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c0018b9-0000-0100-0000-5e13440a0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"410391b5-dab5-4a62-9c22-4234d6efb7f4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -913,15 +1038,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:39:27 GMT + - Mon, 06 Jan 2020 14:28:45 GMT etag: - - '"5300b8dd-0000-0100-0000-5ddf09020000"' + - '"0c0018b9-0000-0100-0000-5e13440a0000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -947,15 +1070,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5300b8dd-0000-0100-0000-5ddf09020000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"8636e537-ec66-4525-bf20-8ed100bc3af8","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c0018b9-0000-0100-0000-5e13440a0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"410391b5-dab5-4a62-9c22-4234d6efb7f4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -964,15 +1087,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:39:27 GMT + - Mon, 06 Jan 2020 14:28:46 GMT etag: - - '"5300b8dd-0000-0100-0000-5ddf09020000"' + - '"0c0018b9-0000-0100-0000-5e13440a0000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1000,16 +1121,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"pw9cQu6hm26zae7a1eeu6b9tP2rRTQDtnS8mCQbB4xbzQTRCbMwsjLZ4uRlx","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:pw9cQu6hm26zae7a1eeu6b9tP2rRTQDtnS8mCQbB4xbzQTRCbMwsjLZ4uRlx@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"rxYugAuoTryuFWdvpS7Mb93ZsYWQ6qgFqo4k97JvsrSDMWsrlMjqA4L2E3rM","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:rxYugAuoTryuFWdvpS7Mb93ZsYWQ6qgFqo4k97JvsrSDMWsrlMjqA4L2E3rM@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -1018,7 +1139,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:39:28 GMT + - Mon, 06 Jan 2020 14:28:47 GMT expires: - '-1' pragma: @@ -1036,7 +1157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1056,27 +1177,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-131.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:34:05.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6BEA89D8AD6F6DDF46B8168347A074A6228AD6AD548E50988FF599FF5B734FBA","kind":"app","inboundIpAddress":"23.101.119.44","possibleInboundIpAddresses":"23.101.119.44","outboundIpAddresses":"23.101.119.44,23.99.215.110,23.99.213.182,168.61.218.60,23.99.208.251","possibleOutboundIpAddresses":"23.101.119.44,23.99.215.110,23.99.213.182,168.61.218.60,23.99.208.251,23.99.211.22,23.99.209.158,23.99.214.44","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-131","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:23:46.31","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1A7DD583007C9D51FA9B7C524FACC2161462E5A895C6DCBF2AAB458CA2F904B5","kind":"app","inboundIpAddress":"52.173.245.249","possibleInboundIpAddresses":"52.173.245.249","outboundIpAddresses":"52.173.245.249,52.165.156.191,52.176.52.126,52.165.163.22,13.89.235.9","possibleOutboundIpAddresses":"52.173.245.249,52.165.156.191,52.176.52.126,52.165.163.22,13.89.235.9","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3217' + - '3179' content-type: - application/json date: - - Wed, 27 Nov 2019 23:39:29 GMT + - Mon, 06 Jan 2020 14:28:48 GMT etag: - - '"1D5A57B289DFA60"' + - '"1D5C49CE7F91260"' expires: - '-1' pragma: @@ -1124,7 +1245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:39:33 GMT + - Mon, 06 Jan 2020 14:28:54 GMT expires: - '-1' pragma: @@ -1132,7 +1253,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=8891edb4716a63c7991c20141df3b9b9df1d494b106355d35dadfe3687652f29;Path=/;HttpOnly;Domain=cliy7t5klhadwhy.scm.azurewebsites.net + - ARRAffinity=315889bd5ee613f724c5cea69cb6f5d13455dfb17244739736ee8dc488c1a8f8;Path=/;HttpOnly;Domain=clici74gvt7iubg.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -1141,7 +1262,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"command": "PostDeployScripts\\prepareSrc.cmd pw9cQu6hm26zae7a1eeu6b9tP2rRTQDtnS8mCQbB4xbzQTRCbMwsjLZ4uRlx", + body: '{"command": "PostDeployScripts\\prepareSrc.cmd rxYugAuoTryuFWdvpS7Mb93ZsYWQ6qgFqo4k97JvsrSDMWsrlMjqA4L2E3rM", "dir": "site\\wwwroot"}' headers: Accept: @@ -1161,7 +1282,7 @@ interactions: response: body: string: '{"Output":"file:///D/home/site/srcRepo\r\nInitialized empty Git repository - in D:/home/site/wwwroot/.git/\r\n[master (root-commit) 998a2b4] prepare to + in D:/home/site/wwwroot/.git/\r\n[master (root-commit) c2d11ce] prepare to download source\r\n 19 files changed, 5738 insertions(+)\r\n create mode 100644 .deployment\r\n create mode 100644 .eslintrc.js\r\n create mode 100644 .gitignore\r\n create mode 100644 PostDeployScripts/githubProject.json.template\r\n create @@ -1189,7 +1310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:39:50 GMT + - Mon, 06 Jan 2020 14:29:15 GMT expires: - '-1' pragma: @@ -1197,7 +1318,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=8891edb4716a63c7991c20141df3b9b9df1d494b106355d35dadfe3687652f29;Path=/;HttpOnly;Domain=cliy7t5klhadwhy.scm.azurewebsites.net + - ARRAffinity=315889bd5ee613f724c5cea69cb6f5d13455dfb17244739736ee8dc488c1a8f8;Path=/;HttpOnly;Domain=clici74gvt7iubg.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -1225,13 +1346,13 @@ interactions: response: body: string: !!binary | - UEsDBAoAAAAAAPe8e0+ZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu - ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgA97x7T1stvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 + UEsDBAoAAAAAAKRzJlCZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu + ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgApHMmUFstvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 kEEOgjAQRfcm3qHpmhpjXGlceA7jYqSjaUKnZNoKhHB3qUAAF3bX//5MXmudjgXusC4dBy8uot1u RH8k1gFJe3kS0gcgDaxlNjLuRxJp023IvrlHa/r4dsiEhKKCxst7tuCGNFIYG8cVIqcYQ2RSUIFJ nf0S+xJyVA98Okb1jJQH40iVwEjDusl7XggWdbInfCOP6jMGctRYF/2fim8ovzK7qu9M75k73co/ - oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAAD3vHtPGI8ybh8AAAAfAAAACgAAAC5naXRp - Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIAPe8e082YHQO3AEA + oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAACkcyZQGI8ybh8AAAAfAAAACgAAAC5naXRp + Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIAKRzJlA2YHQO3AEA AHYEAAAGAAAAYm90LmpzxVTBbtswDL0HyD+wwAA76CLvPM8D0mFAByyn7TIMA6rITCxMljyJbmsE /vcxit3ESw69jQfDJh8fH0nJWQafXNN5vasIUrWAtVbeBbcl9vvGeUnaWQErYyCCAngM6B+xFPMZ Z3/VCm3AElpbogeqENZfvo9uxsxnytlAsIeVIv2oqbuXtjSM7aFgsj+t9pgmG0ebVhvmSBZ5zDIy @@ -1240,7 +1361,7 @@ interactions: j8JPJp+kJhhgIvAAxvbThx+uhSB1Ccmb/QtkFCAOX9AnD4fGB85T+3cdKGmMtrtYmQfWMRmvq/XI UmVsL4aARz9OWvPmWyuuKIzQyYz7w8eV9usN+rAqSyxfPYPj4anPUqG47Pc8nk8Jts5DapDnaIlT 3+Xx5cOEUhi0O6pyuL3l4PEA/WN6C+l5yk8G/hI8/5viih6PSjcaLTFiQvfK9Sb3aIyLR+sJjXI1 - 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgA97x7T3ohM0mMBAAA + 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgApHMmUHohM0mMBAAA 7gwAAAoAAABkZXBsb3kuY21kzVZbj9JAFH4n4T8cmjRRI3XXS0xWMRIYFOUm7a6akDTddoBxy0xt p4v44G/3zLSlZYsbfNJ96Jaey3znzHcub9kSDNPujV1n3u0Rd0SuyMg0YEI+gfHcgLfUXwsQy2Wz 0WxcXED76J8WfbzsX0KfRqHYbSiXYPsxi6QWXdE4YYJfwLl1Zp2/vNeTFs5iGtPvKUuYpIn+cker @@ -1261,9 +1382,9 @@ interactions: 4HiWjt5BK6d2az+b2u0oFkGqm/tpseOpIlIz43+hfQaOB3l283DBF5sN0htikUqGI0SuPQlbhjFn S3OKv9aUF2FV0lQucPoNVMbcjvkov1dT/zabDb2cl8kqKuDMyE4YeEwtm/QHkz3kQKeq+riA19l7 U3rw5PpgBdYh5QAxwhyT9t7NkcPaS0D4amPFw4I0VuW8pdegJmO1ngtWqnNwZyXKeERvaVgVDHD7 - LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAAPe8e089 + LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAAKRzJlA9 suZSSAAAAEgAAAALAAAAaWlzbm9kZS55bWxub2RlUHJvY2Vzc0NvbW1hbmRMaW5lOiAiRDpcUHJv - Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgA97x7T6IT + Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgApHMmUKIT 5UHvAwAASgkAAAgAAABpbmRleC5qc41VTY/TMBC9I/EfRggpWSnrHjgARSAVVKAS0BUbcQG06ybT xmxiB9vZUJb+d8aOk6bQIqI9bO03b2befHgygVeq3mqxKSzE2Rm8F5lWRq0tnetaaW6FkgxmZQke ZECjQX2LObt/j6zfiQylwRwamaMGWyC8X6T9MWHu38uUNBZyZVHewnOy/94IjXHUnURnz3pIzW0x @@ -1282,7 +1403,7 @@ interactions: nqLu8JgCFfUg3yDVws95Y/BkTkM6UUpIioPKnamGAEQkQ+D0t2o2jLbCf9AofyFk4/3rRvq+6FZP TdvAIKzFDxdY92bSXsqQbHLsHOwOt44DHn2vqi1Vr9sX/csVD/P1zi9hP1yC8qmoPf2bhYbabngM amVsHE14LSZBMhPRtidg4h6S8Yj1kxkmvM93wCZ/TOnYNhTnI02k0+SPbNxtL2rIipFqPVGv+W5Y - yb8BUEsDBBQAAAAIAPe8e08IIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 + yb8BUEsDBBQAAAAIAKRzJlAIIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 PVX5h1QeY7jMoKlKVUDBERVw5CFVzCKjDCKmkm9P47Ddk0F0Z6zce86xG9tedK/u1avX+Jdf/+o3 4L/fBqpv/vYPv/mtqW9CLUx/+/vL870ZJ04YlF+hvyC/IG9feKHuWo5nLt4aoNevYnOXObGZgGdp nJnXx4YZmYFhBrpz+uoC+fTVn9RjFpuwn0DgZym0/fT91zfBfqEub3JrAH4aenvTKFts0jRK/gDD @@ -2066,7 +2187,7 @@ interactions: WaNcRd42T7XIp4U9IwN85NG6XEGstQRw5sWM329hl5Q5eWuTcjTcrj23BATJOWxlNq+spB/q5T4c Gpstz/egkVdk25ohm/EAgcKRpBWz/AwvqBq9eprHBnbMRJJe3ebFQQ0CN7+bqvYJ54x3ChD4cdfR SUPFtpOVKi1ZfBgu5O0+IieIWUf6aoO5GIOhYoVyMSkAObIbk+FmOM/5wSQZC7NsxC79nBH7DsoT - 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgA97x7T7YeHpF/AQAAiQMAAAwAAABwYWNr + 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgApHMmULYeHpF/AQAAiQMAAAwAAABwYWNr YWdlLmpzb259UrFOwzAQ3ZH4BysDE3UJilDpWMHAwMZYIaXOtTmU+CzbKa0QfDtnp0lIaRtliO69 e+/eXb6urwQ/ic5rSOYiAVXSinxye6hvwTokHaBU3sm7HijAKYvGH8AFebFosCrAim0mgoxYcc3l tamg78obX5INDa+oLDlaD1YVKtAOIvjy1pfrHKMD6gJ28sP1QOvvGDuEaKs+tz7wNRUg5HRo+0P6 @@ -2074,13 +2195,13 @@ interactions: nuz+KIXfm7iIDfqRZ2OrUC69N24+nTJcNiupqO6Uh/MY4ERaIRxviM+yai8VpH4y+SDTkUlBHvQ2 gO8zeT/cvB2Zw+F6H1tnMmP0n/P26Zx5t8mo/cDGg/YAThTpNW4mfEld5LaI5DST6Wm2qZoN6gnW hmwrfC9TnvsCN1y9VeU/+qKqsVSja8mZZOHz3PG8vJgRuf/V4uJSmT7KrNvc9RW/v1BLAwQUAAAA - AAD3vHtPAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAAD4vHtPAAAA - AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaXk3dDVrbGhhZHdoeS5QdWJsaXNoU2V0 - dGluZ3NQSwMEFAAAAAgA97x7T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo + AACkcyZQAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAACmcyZQAAAA + AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaWNpNzRndnQ3aXViZy5QdWJsaXNoU2V0 + dGluZ3NQSwMEFAAAAAgApHMmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo dWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJaTjgV2vSumEj4 7yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIKVOhHMghb22Bs O9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfdKMJkNb8AUEsD - BBQAAAAIAPe8e0+o88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n + BBQAAAAIAKRzJlCo88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n cy5qc51VXW/TMBR9n7T/YO2ljgjeuie0EiQQBW0PbaVU4qGNUJc4wyVzSux0rar8d67tOHESFQZ+ mBbfc88998O3cc6FRKlAASror5IVFI9SMfImlxfGtNvIH65RfTvmzW4XUikZf1oYoLKTgoo82wOa XANAGIAgW5Fzx5fy/RknAiYNtNCawsjcJGH9+YVlFHcl+Ja2E0fFKPKYCqGoweLYZptnqojnj1sa @@ -2092,7 +2213,7 @@ interactions: 01t7Uwq4r9zmvP4Rqrxs1tAsemBCCtWqnofXIJ3wD+F8RiAfQbHb6KF323KVQp3rucBW2jCiO3QW 1idsXlM1KAoTszyhD+GiyNUmwSZA69KV0d95jAkO7uT4nEEaA/J/eVS2bZ3qD9QNp1ctjP4mtFy2 DoMHpZz+uH+MX6/QK1gcFoPeIJhU+Gtj6UUUuZMLSytyFKhSvhRM0mYebO5alR3/NfzawFxTHucJ - 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACAD3vHtPNCH6uBsD + 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACACkcyZQNCH6uBsD AABSCAAAIAAAAFBvc3REZXBsb3lTY3JpcHRzL3ByZXBhcmVTcmMuY21kpVVda9swFH03+D9cDKZb me11L4OAR1uaroG2MXW6vgSCY8uJW8sSkkLaffS378qO4rj5WGEkJNLV1dE5R9LVKUnnDFie25Yk qmRpUtpW3B8BT6RcMpGF7kkTIM+cCRUTpYpqJkP3SxMWhLPbhJJQivQO2230XpRhXpSkFwSBezW8 @@ -2107,7 +2228,7 @@ interactions: B9d6wrss2II5i+OH4d2Fnm/KZePoBuN/qTIF9b/38Z3UtonsgPOjLjnbara/LcHd16CuxAXu/9u4 A2EIjgMzhoXiZ8EPX54V+FEDAgnnIFdIR6u72juLogm+DqPB7ffYkNKfHqKv72xdRedErwj6ktjW +gHCVb9iGH8SSPbw8DFhz9D4uK1QJKkWvC5BUi3yfLv+Hawv2068ST9QqNqncmNfqqx+vnW7trvX - H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIAPe8e09qiU91 + H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIAKRzJlBqiU91 GwIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaC5qcy50ZW1wbGF0ZXVUXW/aMBR9 r8R/8NDUJBJ10LansE5iHZP6sK4qlSrtpTLJZVgY2/NHUYv477ONHULYeCG559xzzz3YvBCF3qj8 LlgDCl0jBX8sVZBnrni1DNWsmAwuPE8Ss+pS/HsLLnUXWuoEhBpo00VjKVAiSQiTPIQ5WIEW7MWR @@ -2118,10 +2239,10 @@ interactions: +/3Xvij8Fxbcnw8tBdeQjVDKJve1IgrTJQrvWBtirL4RDaAv1+jDeIwuL1Ef+Yw+jsdFMhXCtJxR vm4jnCQoxZ5zy1gq7xEwDf8b+ilo9wUOdifd/Y7rgVJCdXdzhahxVAjF0Ohl9ifnRNoFo3rVOyXH e3xyJeKSZ+OOUb7rFtA/TuFpEgdm32tv2Wg5OT2ffT65dj+5YICZ+J1nvWuUVg4XORnpN4Zc3X8P - oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIAPe8e084K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv + oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIAKRzJlA4K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv eVNjcmlwdHMvcnVuR3VscC5jbWR9TjkOgCAQ7En4w35A/AGx8Bk2BBY1AZbANv5eMSY06kw3V2ZC uxGQ91JU5EDWBCkab72gpeLAYQ50REwMvEesbGKWwhlGGBm0BqWWnlGBVimu4Kf7rA+v+GvM/Yij - hO3nCVBLAwQUAAAACAD3vHtPoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw + hO3nCVBLAwQUAAAACACkcyZQoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw R2l0aHViUmVtb3RlUmVwby5jbWS1VcFu2zAMvQfIPxAGhKwH29h2C5Ah6RZgPbQNmqwb0BSDKtON W9nUJBlB0fXfJ1lx7KDNbs1Bliny8fGJjKcoNgSU58OBQStJcDkcaCwhfrdfwHfZanVt6ApLsniF iuBGN/sfBvUt3CjUhiouZ0KgMSt6xMpbNT1c8BKfSdnCH7/cBjyhkVsEXmWgSNXSv1wvL+G+sKA9 @@ -2133,7 +2254,7 @@ interactions: cxmIxt8h+kqVxcrGK8dnDFwpWQjuxyv13hHENRxTB+IMoumbmXaxv2Bx6fp5j6AlS/1opU1P78au /B9ZN8/ZcBCeu2H3U7Pv9CDma3mDb1EV1k9WKNrvnOngVVCVF/fNvCfNJEX9aqMjnoobsyXtyu/k OOqMJS8kRLUt5PSObK5dGhf86LuqH8MzV8IBRlm6R1xCpJxeXKMrPPx3gqFaC/RprCbZR/FSANs1 - OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIAPe8e0/nyEkF + OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIAKRzJlDnyEkF /wIAADIHAAAoAAAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNtZLVVWY/T MBB+r9T/MKpkLUgk5ZRQpcJyVIIHoNqWQ2LRyjiTrsHJWLazFeL47YztdNOl7AMPVFViz3g+z3xz 5BjVOQHV9XjkMRhS0oxHDhso/tsv4/NtnX3n6QQbCniCluDjxW77Ka3fenSvZdPvlug8tdI8UQq9 @@ -2148,16 +2269,16 @@ interactions: bRojdx5wXIrayu+mSuQuuZF4JA4fA95ijfbAfwlbbSrYdNySOaKMxkhMM9lqPMrvfpbFDr7sx0z9 YTLyWd3qEIdcho0rFl3ZsqO13qTxU6Z+n+wX1eSak1Z6vyXHbA5Vd+1hbKQ2MOmCNsc8D2vH17Dx 1zgL921kxSFcwWgafhUNTCw3lHTIgedPBXjqnMJ4TXBk9lEiFSD6BhTQSB/QDTz2HBqULcNEAx7M - dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIAPe8e08ABermvwAAABwBAAAqAAAAUG9zdERl + dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIAKRzJlAABermvwAAABwBAAAqAAAAUG9zdERl cGxveVNjcmlwdHMvdnNvUHJvamVjdC5qc29uLnRlbXBsYXRlbY7NCoMwEITvhb5DyLlCf2Kb9qYi xUN7UehRYlwhoCYkUWjFd6+/h0Ivu7Az88122w1CuGYV4BvC3Sv00zhKwvTpPcIe7yY1B8O1UFbI +o8JeZ9GA/KlRTHoVnBAgcxhyXKmWCZKYQWYITzVDecWtBlwXNZWy3IVJsnIRnMIZiV5q+mxu7B4 dvS7BaG05GBMApUqmYUfhl2OYzzKR8A5uxzJdU8dKA7EIS4vHEoK6lzONHNPlOSMuGvDsMbRfwFQ - SwMEFAAAAAAA97x7TwAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAAD3vHtPAAAA - AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAAD3vHtPAAAA - AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaXk3dDVrbGhhZHdoeS1X - ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAAD4vHtPAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k - UEsDBBQAAAAIAPe8e0/iRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d + SwMEFAAAAAAApXMmUAAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAAClcyZQAAAA + AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAAClcyZQAAAA + AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWNpNzRndnQ3aXViZy1X + ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAACmcyZQAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k + UEsDBBQAAAAIAKRzJlDiRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d sQuwDbsCBboLdnkYigFVZCZWI0ueKCfIvn6kFNtp17VF+9AkFHl4SPHQPoT3uvbwxkeI2LRWRdzf 29/7XhuCGRtrxZ+IDnRAPqugI+MWcCIBH4JqcO3D8tedOsaWnk+nFa5KDpv3J6X2zeQumAhU+zUB /4Pot2CggAznxJQp1iqC0hrbSGBc20WYB9+wHTkpBlCuAmSySII3U3pZCtXDQ/gSMODvzpCJSPt7 @@ -2175,7 +2296,7 @@ interactions: qLyXc6XmyMUN++TIxeCrXOYt8vcZPI+4JC/MDt4t6AztuwWfa9Pdelp2yL49PrqSFj8AUvh5Omwt 5CWBBqzx4TTCtel3mULG+XjNvVyZuJFng0YSRV/JAF3R0TXjor2TN4ZCbbGLEfvaLh4rt+hY0fDD MRTvPidS2K6a4x9H327MTvuFM0wA+yQ0tfw6Ms153tZKtizJtpYZ6febD/203DjRhTb05V+vl6/y - hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgA97x7T0bNGjh0BAAA + hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgApHMmUEbNGjh0BAAA +QkAAAoAAAB3ZWIuY29uZmlntVbbbhMxEH2v1H8Y9gUJsTEFHlBIihCkUiQo0BQQ4ibv2skavLbx JRcQ/87Ye0tKK/FCVDWx13M5Z854dvJkW0tYc+uEVtPsZHQvA65KzYRaTbPgl/mj7Mnp8dHkVp4f H0H8XFbCQanVUqyCpR7tYCkkB9y1/EcQljMQSxDCKc3SdnC45TXYoCDtGatL7hx3UPBKKNZ6ns8X @@ -2196,53 +2317,53 @@ interactions: 3iBR7LE3pd7ElTZJOuOBkDuwSQ3OovjcGKmrRV5qqRX+NNTS6FViqqCXsfHbqx8DSYkl7azTxVji lbuKB3Tkw1O7PyH2QiZ9fOVqPW7dpFcDQ1H3TYem0YDqOn/1fPZ1dv4O8KywWsWSwZpaEYfWnsPh Dp418wzyjiR3cLMVAauLd3drgLvCdTOwf6uABef/5dUikURhGaTsKO0q0oTO872qT9owBwWaZoO7 - x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAA97x7T5mrGOweAAAAHgAAAAsAJAAAAAAAAAAg - AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgAtU5l8nul1QEI62Lye6XVAQjrYvJ7pdUBUEsB - Aj8AFAAAAAgA97x7T1stvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA - IAAAAAAAAQAYALVOZfJ7pdUBtU5l8nul1QG1TmXye6XVAVBLAQI/AAoAAAAAAPe8e08YjzJuHwAA - AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgAtU5l8nul1QG1TmXy - e6XVAbVOZfJ7pdUBUEsBAj8AFAAAAAgA97x7TzZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA - AGJvdC5qcwoAIAAAAAAAAQAYAF6bc/J7pdUBHTlx8nul1QEdOXHye6XVAVBLAQI/ABQAAAAIAPe8 - e096ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgAXptz - 8nul1QFem3Pye6XVAV6bc/J7pdUBUEsBAj8ACgAAAAAA97x7Tz2y5lJIAAAASAAAAAsAJAAAAAAA - AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgAP/518nul1QFem3Pye6XVAV6bc/J7pdUB - UEsBAj8AFAAAAAgA97x7T6IT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg - AAAAAAABABgAP/518nul1QE//nXye6XVAT/+dfJ7pdUBUEsBAj8AFAAAAAgA97x7TwgjAlZ1rgAA - Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgA2GB48nul - 1QE//nXye6XVAT/+dfJ7pdUBUEsBAj8AFAAAAAgA97x7T7YeHpF/AQAAiQMAAAwAJAAAAAAAAAAg - AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYAL3CevJ7pdUB2GB48nul1QHYYHjye6XVAVBL - AQI/ABQAAAAAAPe8e08AAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny - aXB0cy8KACAAAAAAAAEAGAAdOXHye6XVAR05cfJ7pdUBYrFn8nul1QFQSwECPwAKAAAAAAD4vHtP - AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpeTd0NWts - aGFkd2h5LlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYAIPtCPR7pdUBg+0I9Hul1QGD7Qj0e6XV - AVBLAQI/ABQAAAAIAPe8e0/gz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 - U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGABisWfye6XVAWKx - Z/J7pdUBYrFn8nul1QFQSwECPwAUAAAACAD3vHtPqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc - vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYAO0UavJ7pdUB - YrFn8nul1QFisWfye6XVAVBLAQI/ABQAAAAIAPe8e080Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA - ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYAO0UavJ7pdUB - 7RRq8nul1QHtFGrye6XVAVBLAQI/ABQAAAAIAPe8e09qiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA - AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgAe3Rs - 8nul1QHtFGrye6XVAe0UavJ7pdUBUEsBAj8AFAAAAAgA97x7Tzgr1xpiAAAAwQAAAB0AJAAAAAAA - AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgAe3Rs8nul - 1QF7dGzye6XVAXt0bPJ7pdUBUEsBAj8AFAAAAAgA97x7T6HoB0OGAgAAQwYAACsAJAAAAAAAAAAg + x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAApHMmUJmrGOweAAAAHgAAAAsAJAAAAAAAAAAg + AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgA3hSJp53E1QHeFImnncTVAd4UiaedxNUBUEsB + Aj8AFAAAAAgApHMmUFstvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA + IAAAAAAAAQAYANd4i6edxNUB3hSJp53E1QHeFImnncTVAVBLAQI/AAoAAAAAAKRzJlAYjzJuHwAA + AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgA13iLp53E1QHXeIun + ncTVAdd4i6edxNUBUEsBAj8AFAAAAAgApHMmUDZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA + AGJvdC5qcwoAIAAAAAAAAQAYAPzamaedxNUBmnmXp53E1QGaeZenncTVAVBLAQI/ABQAAAAIAKRz + JlB6ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgA/NqZ + p53E1QH82pmnncTVAfzamaedxNUBUEsBAj8ACgAAAAAApHMmUD2y5lJIAAAASAAAAAsAJAAAAAAA + AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgA/NqZp53E1QH82pmnncTVAfzamaedxNUB + UEsBAj8AFAAAAAgApHMmUKIT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg + AAAAAAABABgA/NqZp53E1QH82pmnncTVAfzamaedxNUBUEsBAj8AFAAAAAgApHMmUAgjAlZ1rgAA + Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgAap+ep53E + 1QEYPZynncTVARg9nKedxNUBUEsBAj8AFAAAAAgApHMmULYeHpF/AQAAiQMAAAwAJAAAAAAAAAAg + AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYANzGpaedxNUBap+ep53E1QFqn56nncTVAVBL + AQI/ABQAAAAAAKRzJlAAAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny + aXB0cy8KACAAAAAAAAEAGAD8FJWnncTVAfwUlaedxNUB13iLp53E1QFQSwECPwAKAAAAAACmcyZQ + AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpY2k3NGd2 + dDdpdWJnLlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYALVRQqmdxNUBtVFCqZ3E1QG1UUKpncTV + AVBLAQI/ABQAAAAIAKRzJlDgz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 + U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGADXeIunncTVAdd4 + i6edxNUB13iLp53E1QFQSwECPwAUAAAACACkcyZQqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc + vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYAMPbjaedxNUB + w9uNp53E1QHD242nncTVAVBLAQI/ABQAAAAIAKRzJlA0Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA + ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYAMPbjaedxNUB + w9uNp53E1QHD242nncTVAVBLAQI/ABQAAAAIAKRzJlBqiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA + AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgA9jyQ + p53E1QH2PJCnncTVAfY8kKedxNUBUEsBAj8AFAAAAAgApHMmUDgr1xpiAAAAwQAAAB0AJAAAAAAA + AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgA9jyQp53E + 1QH2PJCnncTVAfY8kKedxNUBUEsBAj8AFAAAAAgApHMmUKHoB0OGAgAAQwYAACsAJAAAAAAAAAAg AAAAhMcAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWQKACAAAAAA - AAEAGADn1m7ye6XVAXt0bPJ7pdUBe3Rs8nul1QFQSwECPwAUAAAACAD3vHtP58hJBf8CAAAyBwAA + AAEAGAD8FJWnncTVAZu1kqedxNUBm7WSp53E1QFQSwECPwAUAAAACACkcyZQ58hJBf8CAAAyBwAA KAAkAAAAAAAAACAAAABTygAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNt - ZAoAIAAAAAAAAQAYAOfWbvJ7pdUB59Zu8nul1QHn1m7ye6XVAVBLAQI/ABQAAAAIAPe8e08ABerm + ZAoAIAAAAAAAAQAYAPwUlaedxNUB/BSVp53E1QH8FJWnncTVAVBLAQI/ABQAAAAIAKRzJlAABerm vwAAABwBAAAqACQAAAAAAAAAIAAAAJjNAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpz - b24udGVtcGxhdGUKACAAAAAAAAEAGAAdOXHye6XVAR05cfJ7pdUBHTlx8nul1QFQSwECPwAUAAAA - AAD3vHtPAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA - GADtbQfze6XVAe1tB/N7pdUB7W0H83ul1QFQSwECPwAUAAAAAAD3vHtPAAAAAAAAAAAAAAAAGwAk - AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgAcPcQ - 83ul1QFw9xDze6XVAe1tB/N7pdUBUEsBAj8ACgAAAAAA97x7TwAAAAAAAAAAAAAAADwAJAAAAAAA - AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaXk3dDVrbGhhZHdoeS1XZWIt - RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYAHD3EPN7pdUBcPcQ83ul1QFw9xDze6XVAVBLAQI/AAoA - AAAAAPi8e08AAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA - AQAYAPsYs/N7pdUB+xiz83ul1QH7GLPze6XVAVBLAQI/ABQAAAAIAPe8e0/iRs24/gMAAEsKAAAJ - ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGAAdOXHye6XVAR05cfJ7pdUBHTlx - 8nul1QFQSwECPwAUAAAACAD3vHtPRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv - bmZpZwoAIAAAAAAAAQAYAL3CevJ7pdUBvcJ68nul1QG9wnrye6XVAVBLBQYAAAAAGQAZAFQKAABF + b24udGVtcGxhdGUKACAAAAAAAAEAGAD8FJWnncTVAfwUlaedxNUB/BSVp53E1QFQSwECPwAUAAAA + AAClcyZQAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA + GADVczKoncTVAdVzMqidxNUB1XMyqJ3E1QFQSwECPwAUAAAAAAClcyZQAAAAAAAAAAAAAAAAGwAk + AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgASP07 + qJ3E1QFI/TuoncTVAdVzMqidxNUBUEsBAj8ACgAAAAAApXMmUAAAAAAAAAAAAAAAADwAJAAAAAAA + AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWNpNzRndnQ3aXViZy1XZWIt + RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYAEj9O6idxNUBSP07qJ3E1QFI/TuoncTVAVBLAQI/AAoA + AAAAAKZzJlAAAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA + AQAYALRr7KidxNUBtGvsqJ3E1QG0a+yoncTVAVBLAQI/ABQAAAAIAKRzJlDiRs24/gMAAEsKAAAJ + ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGACaeZenncTVAZp5l6edxNUBmnmX + p53E1QFQSwECPwAUAAAACACkcyZQRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv + bmZpZwoAIAAAAAAAAQAYANzGpaedxNUB3Malp53E1QHcxqWnncTVAVBLBQYAAAAAGQAZAFQKAABF 2AAAAAA= headers: cache-control: @@ -2252,19 +2373,19 @@ interactions: content-type: - application/x-zip-compressed date: - - Wed, 27 Nov 2019 23:39:51 GMT + - Mon, 06 Jan 2020 14:29:16 GMT etag: - - '"1cd307179373d708"' + - '"0f9c43ccb492d708"' expires: - '-1' last-modified: - - Wed, 27 Nov 2019 23:39:47 GMT + - Mon, 06 Jan 2020 14:29:11 GMT pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=8891edb4716a63c7991c20141df3b9b9df1d494b106355d35dadfe3687652f29;Path=/;HttpOnly;Domain=cliy7t5klhadwhy.scm.azurewebsites.net + - ARRAffinity=315889bd5ee613f724c5cea69cb6f5d13455dfb17244739736ee8dc488c1a8f8;Path=/;HttpOnly;Domain=clici74gvt7iubg.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -2288,16 +2409,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"8636e537-ec66-4525-bf20-8ed100bc3af8","MicrosoftAppPassword":"774be02c-1746-4a1d-993f-d648629bc243"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"410391b5-dab5-4a62-9c22-4234d6efb7f4","MicrosoftAppPassword":"d5867eb6-d6d5-43c8-97e9-d7acab05fae9"}}' headers: cache-control: - no-cache @@ -2306,7 +2427,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:39:51 GMT + - Mon, 06 Jan 2020 14:29:17 GMT expires: - '-1' pragma: @@ -2324,7 +2445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2344,12 +2465,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central @@ -2362,7 +2483,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:39:52 GMT + - Mon, 06 Jan 2020 14:29:18 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml index 849ecde479b..45d94c324c2 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_keep_node_modules_should_not_empty_node_modules_or_install_dependencies.yaml @@ -15,8 +15,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -28,7 +28,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 Nov 2019 23:40:33 GMT + - Mon, 06 Jan 2020 14:21:49 GMT expires: - '-1' pragma: @@ -56,8 +56,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,7 +113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:40:34 GMT + - Mon, 06 Jan 2020 14:21:49 GMT expires: - '-1' pragma: @@ -145,30 +145,28 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:40:34 GMT + - Mon, 06 Jan 2020 14:21:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -178,7 +176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -197,22 +195,20 @@ interactions: uri: https://dev.botframework.com/api/misc/bottemplateroot response: body: - string: '"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/"' + string: '"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/"' headers: cache-control: - no-cache content-length: - - '83' + - '89' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:40:35 GMT + - Mon, 06 Jan 2020 14:21:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000 vary: @@ -269,9 +265,9 @@ interactions: "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "00799f17-d4e0-48a0-b4cb-9cb001ad6752"}, "appSecret": {"value": "471899b3-8348-43a7-baed-7bcd6df27c3e"}, + "090b4f63-ec48-4b30-9b82-f3cfb0557976"}, "appSecret": {"value": "012d592f-61ec-4140-91a6-dea4d98e9dc9"}, "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, - "zipUrl": {"value": "https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"}, + "zipUrl": {"value": "https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"}, "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": {"value": "centralus"}, "botId": {"value": "cli000002"}}, "mode": "Incremental"}}''' headers: @@ -284,32 +280,32 @@ interactions: Connection: - keep-alive Content-Length: - - '4600' + - '4606' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"00799f17-d4e0-48a0-b4cb-9cb001ad6752"},"appSecret":{"type":"String","value":"471899b3-8348-43a7-baed-7bcd6df27c3e"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-27T23:40:36.2421042Z","duration":"PT0.395084S","correlationId":"98488258-dd4a-461b-93e1-d1008799185e","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"090b4f63-ec48-4b30-9b82-f3cfb0557976"},"appSecret":{"type":"String","value":"012d592f-61ec-4140-91a6-dea4d98e9dc9"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:22:01.064719Z","duration":"PT7.4375546S","correlationId":"35cd1736-8ca8-419e-9bb5-bcf80c06055c","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267088496306212?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232863718504794?api-version=2019-07-01 cache-control: - no-cache content-length: - - '4120' + - '4126' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:40:36 GMT + - Mon, 06 Jan 2020 14:22:02 GMT expires: - '-1' pragma: @@ -319,7 +315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -337,10 +333,311 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:23:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:23:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:24:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:24:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:25:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -352,7 +649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:41:05 GMT + - Mon, 06 Jan 2020 14:26:07 GMT expires: - '-1' pragma: @@ -380,10 +677,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -395,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:41:36 GMT + - Mon, 06 Jan 2020 14:26:38 GMT expires: - '-1' pragma: @@ -423,10 +720,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -438,7 +735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:42:05 GMT + - Mon, 06 Jan 2020 14:27:08 GMT expires: - '-1' pragma: @@ -466,10 +763,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -481,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:42:36 GMT + - Mon, 06 Jan 2020 14:27:39 GMT expires: - '-1' pragma: @@ -509,10 +806,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -524,7 +821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:43:05 GMT + - Mon, 06 Jan 2020 14:28:09 GMT expires: - '-1' pragma: @@ -552,10 +849,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -567,7 +864,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:43:36 GMT + - Mon, 06 Jan 2020 14:28:39 GMT expires: - '-1' pragma: @@ -595,10 +892,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -610,7 +907,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:44:06 GMT + - Mon, 06 Jan 2020 14:29:10 GMT expires: - '-1' pragma: @@ -638,10 +935,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -653,7 +950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:44:36 GMT + - Mon, 06 Jan 2020 14:29:40 GMT expires: - '-1' pragma: @@ -681,10 +978,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -696,7 +993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:45:06 GMT + - Mon, 06 Jan 2020 14:30:12 GMT expires: - '-1' pragma: @@ -724,10 +1021,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -739,7 +1036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:45:36 GMT + - Mon, 06 Jan 2020 14:30:42 GMT expires: - '-1' pragma: @@ -767,10 +1064,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267088496306212?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863718504794?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -782,7 +1079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:07 GMT + - Mon, 06 Jan 2020 14:31:13 GMT expires: - '-1' pragma: @@ -810,22 +1107,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"00799f17-d4e0-48a0-b4cb-9cb001ad6752"},"appSecret":{"type":"String","value":"471899b3-8348-43a7-baed-7bcd6df27c3e"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-27T23:45:38.6345944Z","duration":"PT5M2.7875742S","correlationId":"98488258-dd4a-461b-93e1-d1008799185e","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"090b4f63-ec48-4b30-9b82-f3cfb0557976"},"appSecret":{"type":"String","value":"012d592f-61ec-4140-91a6-dea4d98e9dc9"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:31:05.6351588Z","duration":"PT9M12.0079944S","correlationId":"35cd1736-8ca8-419e-9bb5-bcf80c06055c","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' headers: cache-control: - no-cache content-length: - - '4755' + - '4762' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:07 GMT + - Mon, 06 Jan 2020 14:31:13 GMT expires: - '-1' pragma: @@ -853,15 +1150,15 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"530005f5-0000-0100-0000-5ddf0aa10000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"00799f17-d4e0-48a0-b4cb-9cb001ad6752","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c0041b9-0000-0100-0000-5e1344a40000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"090b4f63-ec48-4b30-9b82-f3cfb0557976","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -870,15 +1167,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:07 GMT + - Mon, 06 Jan 2020 14:31:14 GMT etag: - - '"530005f5-0000-0100-0000-5ddf0aa10000"' + - '"0c0041b9-0000-0100-0000-5e1344a40000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -904,15 +1199,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"530005f5-0000-0100-0000-5ddf0aa10000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"00799f17-d4e0-48a0-b4cb-9cb001ad6752","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c0041b9-0000-0100-0000-5e1344a40000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"090b4f63-ec48-4b30-9b82-f3cfb0557976","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -921,15 +1216,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:07 GMT + - Mon, 06 Jan 2020 14:31:15 GMT etag: - - '"530005f5-0000-0100-0000-5ddf0aa10000"' + - '"0c0041b9-0000-0100-0000-5e1344a40000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -957,16 +1250,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"1guwjyz8peuGEPtsW0khhzw4NGM9wWM5WMiwyX7EmlKabklFodwPuoA92s9v","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:1guwjyz8peuGEPtsW0khhzw4NGM9wWM5WMiwyX7EmlKabklFodwPuoA92s9v@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"DtkCwWM3Wf4WGnmXLivXwmFXxLhQ4o5KlMv0wAFil5thhWzKRib4pGNnQKuz","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:DtkCwWM3Wf4WGnmXLivXwmFXxLhQ4o5KlMv0wAFil5thhWzKRib4pGNnQKuz@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -975,7 +1268,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:46:08 GMT + - Mon, 06 Jan 2020 14:31:15 GMT expires: - '-1' pragma: @@ -993,7 +1286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1013,27 +1306,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:40:48.7866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BBEE062BF99FA3961621559EB3EB2F5D87704CABA02C7872B9511D6DF2FFABCE","kind":"app","inboundIpAddress":"40.86.86.144","possibleInboundIpAddresses":"40.86.86.144","outboundIpAddresses":"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201","possibleOutboundIpAddresses":"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:24:57.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CE2E2E37437AFFA477E3FAF9C743228F043F3AF5A6F3AD74B541A2DACD576596","kind":"app","inboundIpAddress":"52.176.2.229","possibleInboundIpAddresses":"52.176.2.229","outboundIpAddresses":"52.176.2.229,52.173.39.249,52.173.32.122,52.173.34.204,52.176.99.160","possibleOutboundIpAddresses":"52.176.2.229,52.173.39.249,52.173.32.122,52.173.34.204,52.176.99.160","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3140' + - '3173' content-type: - application/json date: - - Wed, 27 Nov 2019 23:46:08 GMT + - Mon, 06 Jan 2020 14:31:16 GMT etag: - - '"1D5A57C18CC492B"' + - '"1D5C49D122F58A0"' expires: - '-1' pragma: @@ -1081,7 +1374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:12 GMT + - Mon, 06 Jan 2020 14:31:22 GMT expires: - '-1' pragma: @@ -1089,7 +1382,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -1098,7 +1391,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"command": "PostDeployScripts\\prepareSrc.cmd 1guwjyz8peuGEPtsW0khhzw4NGM9wWM5WMiwyX7EmlKabklFodwPuoA92s9v", + body: '{"command": "PostDeployScripts\\prepareSrc.cmd DtkCwWM3Wf4WGnmXLivXwmFXxLhQ4o5KlMv0wAFil5thhWzKRib4pGNnQKuz", "dir": "site\\wwwroot"}' headers: Accept: @@ -1118,7 +1411,7 @@ interactions: response: body: string: '{"Output":"file:///D/home/site/srcRepo\r\nInitialized empty Git repository - in D:/home/site/wwwroot/.git/\r\n[master (root-commit) b1f893d] prepare to + in D:/home/site/wwwroot/.git/\r\n[master (root-commit) e6170ef] prepare to download source\r\n 19 files changed, 5738 insertions(+)\r\n create mode 100644 .deployment\r\n create mode 100644 .eslintrc.js\r\n create mode 100644 .gitignore\r\n create mode 100644 PostDeployScripts/githubProject.json.template\r\n create @@ -1146,7 +1439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:30 GMT + - Mon, 06 Jan 2020 14:31:43 GMT expires: - '-1' pragma: @@ -1154,7 +1447,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -1182,13 +1475,13 @@ interactions: response: body: string: !!binary | - UEsDBAoAAAAAAM29e0+ZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu - ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgAzb17T1stvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 + UEsDBAoAAAAAAPNzJlCZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu + ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgA83MmUFstvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 kEEOgjAQRfcm3qHpmhpjXGlceA7jYqSjaUKnZNoKhHB3qUAAF3bX//5MXmudjgXusC4dBy8uot1u RH8k1gFJe3kS0gcgDaxlNjLuRxJp023IvrlHa/r4dsiEhKKCxst7tuCGNFIYG8cVIqcYQ2RSUIFJ nf0S+xJyVA98Okb1jJQH40iVwEjDusl7XggWdbInfCOP6jMGctRYF/2fim8ovzK7qu9M75k73co/ - oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAADNvXtPGI8ybh8AAAAfAAAACgAAAC5naXRp - Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIAM29e082YHQO3AEA + oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAADzcyZQGI8ybh8AAAAfAAAACgAAAC5naXRp + Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIAPNzJlA2YHQO3AEA AHYEAAAGAAAAYm90LmpzxVTBbtswDL0HyD+wwAA76CLvPM8D0mFAByyn7TIMA6rITCxMljyJbmsE /vcxit3ESw69jQfDJh8fH0nJWQafXNN5vasIUrWAtVbeBbcl9vvGeUnaWQErYyCCAngM6B+xFPMZ Z3/VCm3AElpbogeqENZfvo9uxsxnytlAsIeVIv2oqbuXtjSM7aFgsj+t9pgmG0ebVhvmSBZ5zDIy @@ -1197,7 +1490,7 @@ interactions: j8JPJp+kJhhgIvAAxvbThx+uhSB1Ccmb/QtkFCAOX9AnD4fGB85T+3cdKGmMtrtYmQfWMRmvq/XI UmVsL4aARz9OWvPmWyuuKIzQyYz7w8eV9usN+rAqSyxfPYPj4anPUqG47Pc8nk8Jts5DapDnaIlT 3+Xx5cOEUhi0O6pyuL3l4PEA/WN6C+l5yk8G/hI8/5viih6PSjcaLTFiQvfK9Sb3aIyLR+sJjXI1 - 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgAzb17T3ohM0mMBAAA + 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgA83MmUHohM0mMBAAA 7gwAAAoAAABkZXBsb3kuY21kzVZbj9JAFH4n4T8cmjRRI3XXS0xWMRIYFOUm7a6akDTddoBxy0xt p4v44G/3zLSlZYsbfNJ96Jaey3znzHcub9kSDNPujV1n3u0Rd0SuyMg0YEI+gfHcgLfUXwsQy2Wz 0WxcXED76J8WfbzsX0KfRqHYbSiXYPsxi6QWXdE4YYJfwLl1Zp2/vNeTFs5iGtPvKUuYpIn+cker @@ -1218,9 +1511,9 @@ interactions: 4HiWjt5BK6d2az+b2u0oFkGqm/tpseOpIlIz43+hfQaOB3l283DBF5sN0htikUqGI0SuPQlbhjFn S3OKv9aUF2FV0lQucPoNVMbcjvkov1dT/zabDb2cl8kqKuDMyE4YeEwtm/QHkz3kQKeq+riA19l7 U3rw5PpgBdYh5QAxwhyT9t7NkcPaS0D4amPFw4I0VuW8pdegJmO1ngtWqnNwZyXKeERvaVgVDHD7 - LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAAM29e089 + LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAAPNzJlA9 suZSSAAAAEgAAAALAAAAaWlzbm9kZS55bWxub2RlUHJvY2Vzc0NvbW1hbmRMaW5lOiAiRDpcUHJv - Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgAzb17T6IT + Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgA83MmUKIT 5UHvAwAASgkAAAgAAABpbmRleC5qc41VTY/TMBC9I/EfRggpWSnrHjgARSAVVKAS0BUbcQG06ybT xmxiB9vZUJb+d8aOk6bQIqI9bO03b2befHgygVeq3mqxKSzE2Rm8F5lWRq0tnetaaW6FkgxmZQke ZECjQX2LObt/j6zfiQylwRwamaMGWyC8X6T9MWHu38uUNBZyZVHewnOy/94IjXHUnURnz3pIzW0x @@ -1239,7 +1532,7 @@ interactions: nqLu8JgCFfUg3yDVws95Y/BkTkM6UUpIioPKnamGAEQkQ+D0t2o2jLbCf9AofyFk4/3rRvq+6FZP TdvAIKzFDxdY92bSXsqQbHLsHOwOt44DHn2vqi1Vr9sX/csVD/P1zi9hP1yC8qmoPf2bhYbabngM amVsHE14LSZBMhPRtidg4h6S8Yj1kxkmvM93wCZ/TOnYNhTnI02k0+SPbNxtL2rIipFqPVGv+W5Y - yb8BUEsDBBQAAAAIAM29e08IIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 + yb8BUEsDBBQAAAAIAPNzJlAIIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 PVX5h1QeY7jMoKlKVUDBERVw5CFVzCKjDCKmkm9P47Ddk0F0Z6zce86xG9tedK/u1avX+Jdf/+o3 4L/fBqpv/vYPv/mtqW9CLUx/+/vL870ZJ04YlF+hvyC/IG9feKHuWo5nLt4aoNevYnOXObGZgGdp nJnXx4YZmYFhBrpz+uoC+fTVn9RjFpuwn0DgZym0/fT91zfBfqEub3JrAH4aenvTKFts0jRK/gDD @@ -2023,7 +2316,7 @@ interactions: WaNcRd42T7XIp4U9IwN85NG6XEGstQRw5sWM329hl5Q5eWuTcjTcrj23BATJOWxlNq+spB/q5T4c Gpstz/egkVdk25ohm/EAgcKRpBWz/AwvqBq9eprHBnbMRJJe3ebFQQ0CN7+bqvYJ54x3ChD4cdfR SUPFtpOVKi1ZfBgu5O0+IieIWUf6aoO5GIOhYoVyMSkAObIbk+FmOM/5wSQZC7NsxC79nBH7DsoT - 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgAzb17T7YeHpF/AQAAiQMAAAwAAABwYWNr + 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgA83MmULYeHpF/AQAAiQMAAAwAAABwYWNr YWdlLmpzb259UrFOwzAQ3ZH4BysDE3UJilDpWMHAwMZYIaXOtTmU+CzbKa0QfDtnp0lIaRtliO69 e+/eXb6urwQ/ic5rSOYiAVXSinxye6hvwTokHaBU3sm7HijAKYvGH8AFebFosCrAim0mgoxYcc3l tamg78obX5INDa+oLDlaD1YVKtAOIvjy1pfrHKMD6gJ28sP1QOvvGDuEaKs+tz7wNRUg5HRo+0P6 @@ -2031,13 +2324,13 @@ interactions: nuz+KIXfm7iIDfqRZ2OrUC69N24+nTJcNiupqO6Uh/MY4ERaIRxviM+yai8VpH4y+SDTkUlBHvQ2 gO8zeT/cvB2Zw+F6H1tnMmP0n/P26Zx5t8mo/cDGg/YAThTpNW4mfEld5LaI5DST6Wm2qZoN6gnW hmwrfC9TnvsCN1y9VeU/+qKqsVSja8mZZOHz3PG8vJgRuf/V4uJSmT7KrNvc9RW/v1BLAwQUAAAA - AADNvXtPAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAADOvXtPAAAA - AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaTZnNjZuZm12Zm11My5QdWJsaXNoU2V0 - dGluZ3NQSwMEFAAAAAgAzb17T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo + AADzcyZQAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAAD0cyZQAAAA + AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaWdtaXZqMzd3eGF4eC5QdWJsaXNoU2V0 + dGluZ3NQSwMEFAAAAAgA83MmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo dWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJaTjgV2vSumEj4 7yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIKVOhHMghb22Bs O9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfdKMJkNb8AUEsD - BBQAAAAIAM29e0+o88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n + BBQAAAAIAPNzJlCo88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n cy5qc51VXW/TMBR9n7T/YO2ljgjeuie0EiQQBW0PbaVU4qGNUJc4wyVzSux0rar8d67tOHESFQZ+ mBbfc88998O3cc6FRKlAASror5IVFI9SMfImlxfGtNvIH65RfTvmzW4XUikZf1oYoLKTgoo82wOa XANAGIAgW5Fzx5fy/RknAiYNtNCawsjcJGH9+YVlFHcl+Ja2E0fFKPKYCqGoweLYZptnqojnj1sa @@ -2049,7 +2342,7 @@ interactions: 01t7Uwq4r9zmvP4Rqrxs1tAsemBCCtWqnofXIJ3wD+F8RiAfQbHb6KF323KVQp3rucBW2jCiO3QW 1idsXlM1KAoTszyhD+GiyNUmwSZA69KV0d95jAkO7uT4nEEaA/J/eVS2bZ3qD9QNp1ctjP4mtFy2 DoMHpZz+uH+MX6/QK1gcFoPeIJhU+Gtj6UUUuZMLSytyFKhSvhRM0mYebO5alR3/NfzawFxTHucJ - 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACADNvXtPNCH6uBsD + 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACADzcyZQNCH6uBsD AABSCAAAIAAAAFBvc3REZXBsb3lTY3JpcHRzL3ByZXBhcmVTcmMuY21kpVVda9swFH03+D9cDKZb me11L4OAR1uaroG2MXW6vgSCY8uJW8sSkkLaffS378qO4rj5WGEkJNLV1dE5R9LVKUnnDFie25Yk qmRpUtpW3B8BT6RcMpGF7kkTIM+cCRUTpYpqJkP3SxMWhLPbhJJQivQO2230XpRhXpSkFwSBezW8 @@ -2064,7 +2357,7 @@ interactions: B9d6wrss2II5i+OH4d2Fnm/KZePoBuN/qTIF9b/38Z3UtonsgPOjLjnbara/LcHd16CuxAXu/9u4 A2EIjgMzhoXiZ8EPX54V+FEDAgnnIFdIR6u72juLogm+DqPB7ffYkNKfHqKv72xdRedErwj6ktjW +gHCVb9iGH8SSPbw8DFhz9D4uK1QJKkWvC5BUi3yfLv+Hawv2068ST9QqNqncmNfqqx+vnW7trvX - H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIAM29e09qiU91 + H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIAPNzJlBqiU91 GwIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaC5qcy50ZW1wbGF0ZXVUXW/aMBR9 r8R/8NDUJBJ10LansE5iHZP6sK4qlSrtpTLJZVgY2/NHUYv477ONHULYeCG559xzzz3YvBCF3qj8 LlgDCl0jBX8sVZBnrni1DNWsmAwuPE8Ss+pS/HsLLnUXWuoEhBpo00VjKVAiSQiTPIQ5WIEW7MWR @@ -2075,10 +2368,10 @@ interactions: +/3Xvij8Fxbcnw8tBdeQjVDKJve1IgrTJQrvWBtirL4RDaAv1+jDeIwuL1Ef+Yw+jsdFMhXCtJxR vm4jnCQoxZ5zy1gq7xEwDf8b+ilo9wUOdifd/Y7rgVJCdXdzhahxVAjF0Ohl9ifnRNoFo3rVOyXH e3xyJeKSZ+OOUb7rFtA/TuFpEgdm32tv2Wg5OT2ffT65dj+5YICZ+J1nvWuUVg4XORnpN4Zc3X8P - oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIAM29e084K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv + oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIAPNzJlA4K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv eVNjcmlwdHMvcnVuR3VscC5jbWR9TjkOgCAQ7En4w35A/AGx8Bk2BBY1AZbANv5eMSY06kw3V2ZC uxGQ91JU5EDWBCkab72gpeLAYQ50REwMvEesbGKWwhlGGBm0BqWWnlGBVimu4Kf7rA+v+GvM/Yij - hO3nCVBLAwQUAAAACADNvXtPoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw + hO3nCVBLAwQUAAAACADzcyZQoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw R2l0aHViUmVtb3RlUmVwby5jbWS1VcFu2zAMvQfIPxAGhKwH29h2C5Ah6RZgPbQNmqwb0BSDKtON W9nUJBlB0fXfJ1lx7KDNbs1Bliny8fGJjKcoNgSU58OBQStJcDkcaCwhfrdfwHfZanVt6ApLsniF iuBGN/sfBvUt3CjUhiouZ0KgMSt6xMpbNT1c8BKfSdnCH7/cBjyhkVsEXmWgSNXSv1wvL+G+sKA9 @@ -2090,7 +2383,7 @@ interactions: cxmIxt8h+kqVxcrGK8dnDFwpWQjuxyv13hHENRxTB+IMoumbmXaxv2Bx6fp5j6AlS/1opU1P78au /B9ZN8/ZcBCeu2H3U7Pv9CDma3mDb1EV1k9WKNrvnOngVVCVF/fNvCfNJEX9aqMjnoobsyXtyu/k OOqMJS8kRLUt5PSObK5dGhf86LuqH8MzV8IBRlm6R1xCpJxeXKMrPPx3gqFaC/RprCbZR/FSANs1 - OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIAM29e0/nyEkF + OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIAPNzJlDnyEkF /wIAADIHAAAoAAAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNtZLVVWY/T MBB+r9T/MKpkLUgk5ZRQpcJyVIIHoNqWQ2LRyjiTrsHJWLazFeL47YztdNOl7AMPVFViz3g+z3xz 5BjVOQHV9XjkMRhS0oxHDhso/tsv4/NtnX3n6QQbCniCluDjxW77Ka3fenSvZdPvlug8tdI8UQq9 @@ -2105,16 +2398,16 @@ interactions: bRojdx5wXIrayu+mSuQuuZF4JA4fA95ijfbAfwlbbSrYdNySOaKMxkhMM9lqPMrvfpbFDr7sx0z9 YTLyWd3qEIdcho0rFl3ZsqO13qTxU6Z+n+wX1eSak1Z6vyXHbA5Vd+1hbKQ2MOmCNsc8D2vH17Dx 1zgL921kxSFcwWgafhUNTCw3lHTIgedPBXjqnMJ4TXBk9lEiFSD6BhTQSB/QDTz2HBqULcNEAx7M - dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIAM29e08ABermvwAAABwBAAAqAAAAUG9zdERl + dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIAPNzJlAABermvwAAABwBAAAqAAAAUG9zdERl cGxveVNjcmlwdHMvdnNvUHJvamVjdC5qc29uLnRlbXBsYXRlbY7NCoMwEITvhb5DyLlCf2Kb9qYi xUN7UehRYlwhoCYkUWjFd6+/h0Ivu7Az88122w1CuGYV4BvC3Sv00zhKwvTpPcIe7yY1B8O1UFbI +o8JeZ9GA/KlRTHoVnBAgcxhyXKmWCZKYQWYITzVDecWtBlwXNZWy3IVJsnIRnMIZiV5q+mxu7B4 dvS7BaG05GBMApUqmYUfhl2OYzzKR8A5uxzJdU8dKA7EIS4vHEoK6lzONHNPlOSMuGvDsMbRfwFQ - SwMEFAAAAAAAzb17TwAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAADNvXtPAAAA - AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAADNvXtPAAAA - AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTZnNjZuZm12Zm11My1X - ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAADOvXtPAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k - UEsDBBQAAAAIAM29e0/iRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d + SwMEFAAAAAAA83MmUAAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAADzcyZQAAAA + AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAADzcyZQAAAA + AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWdtaXZqMzd3eGF4eC1X + ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAAD0cyZQAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k + UEsDBBQAAAAIAPNzJlDiRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d sQuwDbsCBboLdnkYigFVZCZWI0ueKCfIvn6kFNtp17VF+9AkFHl4SPHQPoT3uvbwxkeI2LRWRdzf 29/7XhuCGRtrxZ+IDnRAPqugI+MWcCIBH4JqcO3D8tedOsaWnk+nFa5KDpv3J6X2zeQumAhU+zUB /4Pot2CggAznxJQp1iqC0hrbSGBc20WYB9+wHTkpBlCuAmSySII3U3pZCtXDQ/gSMODvzpCJSPt7 @@ -2132,7 +2425,7 @@ interactions: qLyXc6XmyMUN++TIxeCrXOYt8vcZPI+4JC/MDt4t6AztuwWfa9Pdelp2yL49PrqSFj8AUvh5Omwt 5CWBBqzx4TTCtel3mULG+XjNvVyZuJFng0YSRV/JAF3R0TXjor2TN4ZCbbGLEfvaLh4rt+hY0fDD MRTvPidS2K6a4x9H327MTvuFM0wA+yQ0tfw6Ms153tZKtizJtpYZ6febD/203DjRhTb05V+vl6/y - hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgAzb17T0bNGjh0BAAA + hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgA83MmUEbNGjh0BAAA +QkAAAoAAAB3ZWIuY29uZmlntVbbbhMxEH2v1H8Y9gUJsTEFHlBIihCkUiQo0BQQ4ibv2skavLbx JRcQ/87Ye0tKK/FCVDWx13M5Z854dvJkW0tYc+uEVtPsZHQvA65KzYRaTbPgl/mj7Mnp8dHkVp4f H0H8XFbCQanVUqyCpR7tYCkkB9y1/EcQljMQSxDCKc3SdnC45TXYoCDtGatL7hx3UPBKKNZ6ns8X @@ -2153,53 +2446,53 @@ interactions: 3iBR7LE3pd7ElTZJOuOBkDuwSQ3OovjcGKmrRV5qqRX+NNTS6FViqqCXsfHbqx8DSYkl7azTxVji lbuKB3Tkw1O7PyH2QiZ9fOVqPW7dpFcDQ1H3TYem0YDqOn/1fPZ1dv4O8KywWsWSwZpaEYfWnsPh Dp418wzyjiR3cLMVAauLd3drgLvCdTOwf6uABef/5dUikURhGaTsKO0q0oTO872qT9owBwWaZoO7 - x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAAzb17T5mrGOweAAAAHgAAAAsAJAAAAAAAAAAg - AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgAZp7F4Hyl1QFmnsXgfKXVAWaexeB8pdUBUEsB - Aj8AFAAAAAgAzb17T1stvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA - IAAAAAAAAQAYAGaexeB8pdUBZp7F4Hyl1QFmnsXgfKXVAVBLAQI/AAoAAAAAAM29e08YjzJuHwAA - AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgAscLM4Hyl1QGxwszg - fKXVAbHCzOB8pdUBUEsBAj8AFAAAAAgAzb17TzZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA - AGJvdC5qcwoAIAAAAAAAAQAYADSb5OB8pdUBunLd4Hyl1QG6ct3gfKXVAVBLAQI/ABQAAAAIAM29 - e096ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgA3efy - 4Hyl1QHd5/LgfKXVAd3n8uB8pdUBUEsBAj8ACgAAAAAAzb17Tz2y5lJIAAAASAAAAAsAJAAAAAAA - AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgAyUz14Hyl1QHd5/LgfKXVAd3n8uB8pdUB - UEsBAj8AFAAAAAgAzb17T6IT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg - AAAAAAABABgAyUz14Hyl1QHJTPXgfKXVAclM9eB8pdUBUEsBAj8AFAAAAAgAzb17TwgjAlZ1rgAA - Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgA/6334Hyl - 1QHJTPXgfKXVAclM9eB8pdUBUEsBAj8AFAAAAAgAzb17T7YeHpF/AQAAiQMAAAwAJAAAAAAAAAAg - AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYAK0y+uB8pdUBrTL64Hyl1QGtMvrgfKXVAVBL - AQI/ABQAAAAAAM29e08AAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny - aXB0cy8KACAAAAAAAAEAGAAgEtvgfKXVASAS2+B8pdUBscLM4Hyl1QFQSwECPwAKAAAAAADOvXtP - AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpNmc2Nm5m - bXZmbXUzLlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYAHAIZeJ8pdUBcAhl4nyl1QFwCGXifKXV - AVBLAQI/ABQAAAAIAM29e0/gz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 - U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGADEJM/gfKXVAbHC - zOB8pdUBscLM4Hyl1QFQSwECPwAUAAAACADNvXtPqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc - vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYAMQkz+B8pdUB - xCTP4Hyl1QHEJM/gfKXVAVBLAQI/ABQAAAAIAM29e080Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA - ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYAP+H0eB8pdUB - /4fR4Hyl1QH/h9HgfKXVAVBLAQI/ABQAAAAIAM29e09qiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA - AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgA/4fR - 4Hyl1QH/h9HgfKXVAf+H0eB8pdUBUEsBAj8AFAAAAAgAzb17Tzgr1xpiAAAAwQAAAB0AJAAAAAAA - AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgAqybU4Hyl - 1QGrJtTgfKXVAasm1OB8pdUBUEsBAj8AFAAAAAgAzb17T6HoB0OGAgAAQwYAACsAJAAAAAAAAAAg + x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAA83MmUJmrGOweAAAAHgAAAAsAJAAAAAAAAAAg + AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgA904QAJ7E1QH3ThAAnsTVAfdOEACexNUBUEsB + Aj8AFAAAAAgA83MmUFstvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA + IAAAAAAAAQAYAPdOEACexNUB904QAJ7E1QH3ThAAnsTVAVBLAQI/AAoAAAAAAPNzJlAYjzJuHwAA + AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgAHr4SAJ7E1QEevhIA + nsTVAR6+EgCexNUBUEsBAj8AFAAAAAgA83MmUDZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA + AGJvdC5qcwoAIAAAAAAAAQAYABbEJQCexNUBFsQlAJ7E1QEWxCUAnsTVAVBLAQI/ABQAAAAIAPNz + JlB6ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgAZCgo + AJ7E1QEWxCUAnsTVARbEJQCexNUBUEsBAj8ACgAAAAAA83MmUD2y5lJIAAAASAAAAAsAJAAAAAAA + AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgAZCgoAJ7E1QFkKCgAnsTVAWQoKACexNUB + UEsBAj8AFAAAAAgA83MmUKIT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg + AAAAAAABABgA24gqAJ7E1QFkKCgAnsTVAWQoKACexNUBUEsBAj8AFAAAAAgA83MmUAgjAlZ1rgAA + Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgAnOwsAJ7E + 1QHbiCoAnsTVAduIKgCexNUBUEsBAj8AFAAAAAgA83MmULYeHpF/AQAAiQMAAAwAJAAAAAAAAAAg + AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYAJzsLACexNUBnOwsAJ7E1QGc7CwAnsTVAVBL + AQI/ABQAAAAAAPNzJlAAAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny + aXB0cy8KACAAAAAAAAEAGACDYyMAnsTVAYNjIwCexNUBHr4SAJ7E1QFQSwECPwAKAAAAAAD0cyZQ + AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpZ21pdmoz + N3d4YXh4LlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYAN77xwGexNUB3vvHAZ7E1QHe+8cBnsTV + AVBLAQI/ABQAAAAIAPNzJlDgz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 + U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGABZ2hkAnsTVAVna + GQCexNUBWdoZAJ7E1QFQSwECPwAUAAAACADzcyZQqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc + vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYAFnaGQCexNUB + WdoZAJ7E1QFZ2hkAnsTVAVBLAQI/ABQAAAAIAPNzJlA0Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA + ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYAMI8HACexNUB + wjwcAJ7E1QHCPBwAnsTVAVBLAQI/ABQAAAAIAPNzJlBqiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA + AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgAwjwc + AJ7E1QHCPBwAnsTVAcI8HACexNUBUEsBAj8AFAAAAAgA83MmUDgr1xpiAAAAwQAAAB0AJAAAAAAA + AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgAs54eAJ7E + 1QGznh4AnsTVAbOeHgCexNUBUEsBAj8AFAAAAAgA83MmUKHoB0OGAgAAQwYAACsAJAAAAAAAAAAg AAAAhMcAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWQKACAAAAAA - AAEAGACRS9bgfKXVAasm1OB8pdUBqybU4Hyl1QFQSwECPwAUAAAACADNvXtP58hJBf8CAAAyBwAA + AAEAGAASASEAnsTVAbOeHgCexNUBs54eAJ7E1QFQSwECPwAUAAAACADzcyZQ58hJBf8CAAAyBwAA KAAkAAAAAAAAACAAAABTygAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNt - ZAoAIAAAAAAAAQAYACAS2+B8pdUBIBLb4Hyl1QEgEtvgfKXVAVBLAQI/ABQAAAAIAM29e08ABerm + ZAoAIAAAAAAAAQAYABIBIQCexNUBEgEhAJ7E1QESASEAnsTVAVBLAQI/ABQAAAAIAPNzJlAABerm vwAAABwBAAAqACQAAAAAAAAAIAAAAJjNAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpz - b24udGVtcGxhdGUKACAAAAAAAAEAGAAgEtvgfKXVASAS2+B8pdUBIBLb4Hyl1QFQSwECPwAUAAAA - AADNvXtPAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA - GACTT4LhfKXVAZNPguF8pdUBk0+C4Xyl1QFQSwECPwAUAAAAAADNvXtPAAAAAAAAAAAAAAAAGwAk - AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgAJ3iJ - 4Xyl1QEneInhfKXVAZNPguF8pdUBUEsBAj8ACgAAAAAAzb17TwAAAAAAAAAAAAAAADwAJAAAAAAA - AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTZnNjZuZm12Zm11My1XZWIt - RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYACd4ieF8pdUBJ3iJ4Xyl1QEneInhfKXVAVBLAQI/AAoA - AAAAAM69e08AAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA - AQAYAPSBHeJ8pdUB9IEd4nyl1QH0gR3ifKXVAVBLAQI/ABQAAAAIAM29e0/iRs24/gMAAEsKAAAJ - ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGAC6ct3gfKXVAbpy3eB8pdUBunLd - 4Hyl1QFQSwECPwAUAAAACADNvXtPRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv - bmZpZwoAIAAAAAAAAQAYAK0y+uB8pdUBrTL64Hyl1QGtMvrgfKXVAVBLBQYAAAAAGQAZAFQKAABF + b24udGVtcGxhdGUKACAAAAAAAAEAGACDYyMAnsTVAYNjIwCexNUBg2MjAJ7E1QFQSwECPwAUAAAA + AADzcyZQAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA + GACD5ccAnsTVAYPlxwCexNUBg+XHAJ7E1QFQSwECPwAUAAAAAADzcyZQAAAAAAAAAAAAAAAAGwAk + AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgAzG7R + AJ7E1QHMbtEAnsTVAYPlxwCexNUBUEsBAj8ACgAAAAAA83MmUAAAAAAAAAAAAAAAADwAJAAAAAAA + AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWdtaXZqMzd3eGF4eC1XZWIt + RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYAMxu0QCexNUBzG7RAJ7E1QHMbtEAnsTVAVBLAQI/AAoA + AAAAAPRzJlAAAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA + AQAYAIzXbAGexNUBjNdsAZ7E1QGM12wBnsTVAVBLAQI/ABQAAAAIAPNzJlDiRs24/gMAAEsKAAAJ + ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGAAWxCUAnsTVAYNjIwCexNUBg2Mj + AJ7E1QFQSwECPwAUAAAACADzcyZQRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv + bmZpZwoAIAAAAAAAAQAYAPpNLwCexNUBnOwsAJ7E1QGc7CwAnsTVAVBLBQYAAAAAGQAZAFQKAABF 2AAAAAA= headers: cache-control: @@ -2209,19 +2502,19 @@ interactions: content-type: - application/x-zip-compressed date: - - Wed, 27 Nov 2019 23:46:31 GMT + - Mon, 06 Jan 2020 14:31:44 GMT etag: - - '"0aef63059473d708"' + - '"a8feb824b592d708"' expires: - '-1' last-modified: - - Wed, 27 Nov 2019 23:46:27 GMT + - Mon, 06 Jan 2020 14:31:39 GMT pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -2245,16 +2538,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"00799f17-d4e0-48a0-b4cb-9cb001ad6752","MicrosoftAppPassword":"471899b3-8348-43a7-baed-7bcd6df27c3e"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"090b4f63-ec48-4b30-9b82-f3cfb0557976","MicrosoftAppPassword":"012d592f-61ec-4140-91a6-dea4d98e9dc9"}}' headers: cache-control: - no-cache @@ -2263,7 +2556,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:46:31 GMT + - Mon, 06 Jan 2020 14:31:47 GMT expires: - '-1' pragma: @@ -2281,7 +2574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11996' x-powered-by: - ASP.NET status: @@ -2301,12 +2594,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central @@ -2319,7 +2612,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:46:32 GMT + - Mon, 06 Jan 2020 14:31:49 GMT expires: - '-1' pragma: @@ -2355,15 +2648,15 @@ interactions: ParameterSetName: - -g -n --code-dir --keep-node-modules User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"530005f5-0000-0100-0000-5ddf0aa10000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"00799f17-d4e0-48a0-b4cb-9cb001ad6752","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c0041b9-0000-0100-0000-5e1344a40000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"090b4f63-ec48-4b30-9b82-f3cfb0557976","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2372,15 +2665,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:32 GMT + - Mon, 06 Jan 2020 14:31:49 GMT etag: - - '"530005f5-0000-0100-0000-5ddf0aa10000"' + - '"0c0041b9-0000-0100-0000-5e1344a40000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2408,16 +2699,16 @@ interactions: ParameterSetName: - -g -n --code-dir --keep-node-modules User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"1guwjyz8peuGEPtsW0khhzw4NGM9wWM5WMiwyX7EmlKabklFodwPuoA92s9v","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:1guwjyz8peuGEPtsW0khhzw4NGM9wWM5WMiwyX7EmlKabklFodwPuoA92s9v@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"DtkCwWM3Wf4WGnmXLivXwmFXxLhQ4o5KlMv0wAFil5thhWzKRib4pGNnQKuz","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:DtkCwWM3Wf4WGnmXLivXwmFXxLhQ4o5KlMv0wAFil5thhWzKRib4pGNnQKuz@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -2426,7 +2717,7 @@ interactions: content-type: - application/json date: - - Wed, 27 Nov 2019 23:46:32 GMT + - Mon, 06 Jan 2020 14:31:51 GMT expires: - '-1' pragma: @@ -2444,7 +2735,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2464,27 +2755,27 @@ interactions: ParameterSetName: - -g -n --code-dir --keep-node-modules User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-27T23:40:48.7866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BBEE062BF99FA3961621559EB3EB2F5D87704CABA02C7872B9511D6DF2FFABCE","kind":"app","inboundIpAddress":"40.86.86.144","possibleInboundIpAddresses":"40.86.86.144","outboundIpAddresses":"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201","possibleOutboundIpAddresses":"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-019","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-029.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:24:57.13","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CE2E2E37437AFFA477E3FAF9C743228F043F3AF5A6F3AD74B541A2DACD576596","kind":"app","inboundIpAddress":"52.176.2.229","possibleInboundIpAddresses":"52.176.2.229","outboundIpAddresses":"52.176.2.229,52.173.39.249,52.173.32.122,52.173.34.204,52.176.99.160","possibleOutboundIpAddresses":"52.176.2.229,52.173.39.249,52.173.32.122,52.173.34.204,52.176.99.160","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-029","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3140' + - '3173' content-type: - application/json date: - - Wed, 27 Nov 2019 23:46:34 GMT + - Mon, 06 Jan 2020 14:31:53 GMT etag: - - '"1D5A57C18CC492B"' + - '"1D5C49D122F58A0"' expires: - '-1' pragma: @@ -2534,7 +2825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:34 GMT + - Mon, 06 Jan 2020 14:31:55 GMT expires: - '-1' pragma: @@ -2542,7 +2833,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -2554,15 +2845,15 @@ interactions: message: OK - request: body: !!binary | - UEsDBBQAAAAAANB9e08AAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA - ANB9e08AAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAz317T5mrGOwgAAAAHgAA + UEsDBBQAAAAAAPazJlAAAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA + APazJlAAAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgA9rMmUJmrGOwgAAAAHgAA AAsAAAAuZGVwbG95bWVudItOzs9Ly0yP5eVKzs/NTcxLUbBVSEktyMmv1EvOTQEAUEsDBBQAAAAI - AM99e09bLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN + APazJlBbLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN KIFmUiaJtZT+u40t9LEwu9xzZriJdTpWuMNP7Th4cRFdnonhSPwEJO3lSUgfgDSwlsXEeBhJpEu3 MfvlHq0Z4tuhEBKqBlov78WCG9JIYTKOK0ROMYbIpKABk5z9EvsaSlQPfDpG9YxUBuNI1cBI07pu tseFYFGn9oRvZFlsMJCj1rro/yi+pfLK7JrkTO+ZnX7VP6CtKwioyshVq1JfQ6/tZ4wDfZ715y9Q - SwMEFAAAAAgAz317TxiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL - KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAM99e082YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw + SwMEFAAAAAgA9rMmUBiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL + KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAPazJlA2YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw EH4P5D9cYWCbLvKe52WQjkEHy9P2MsaginSJxWTJk85tTfB/39mJW2cJrG+9B2Pffffd3XeS8xw+ +boNZlcSpCqDtVHBR78l9ofaB0nGOwEra2EARQgYMdyjFvNZnsNXo9BF1NA4jQGoRFh/+T66GTOf Ke8iwR5Wisy9ofZWOm0Z28GSyf40JmCabDxtGmOZI8mKIcvKGOGzKv2NJ8BHQqfjGcd+PgO2oURo @@ -2571,7 +2862,7 @@ interactions: Gg3Jm/0TZGxA9F/QJXcHKaecPP5NC0paa9xuqMyCtUzG62p4PirlYbw+BCz9qLThzTdOXOrwwDLR uDut+zR+tcEQV1qjfrEGh8NTTVL51JzNO40XpwRbHyC1yDo64tR3xfDy4YRSWHQ7Kgu4vuZg9m8P vZktpNOUnwz8JVj/q+WFfgIqUxt0xIiLdP9Zb3KL1vrhaD2gVb7CqyQrzmm6U1f3Wrs+Fu/6rVde - NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAz317T3ohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k + NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgA9rMmUHohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k xVZtb+JGEP6OxH8YkCxdquAk11aVklIdIkuPHm/FTi4nIVmOvcBezK5rr0Poh/72zq7XxhwmTT8d H8B4XvaZ2Xlm5gNbQtty+mPPnff6xBuRezKy2jAhf0L7pzZ8oMFagFgum41m4/oaOrUfLfp0d3sH tzSOxG5DuQQnSFgsteieJikT/Bqu7Ev76pdXPWnhLKEJ/StjKZM0PVY3WuiWLXfARUjtrykwnko/ @@ -2592,9 +2883,9 @@ interactions: ytnU6cSJCDPd3N8WO54q4rDMwff+GB5SHprsmnAhEBsc+iEkIpMMR4hc+xK2DGPOl+YM/60pL8Kq pGm/wOknUBnzutYP5l4t/d9qNvRyXllYDQMu2/kJA5+pZZO+MNnHGuhWVc8LeN3Sm9KDi8eDFViH ZABihAaT9t4zyGHtpyACvbGGEGaJovOWPoKajId8zstBnYM7K1HGI/pMo6pggNtvMevz3TyHcGxT - wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACADPfXtPPbLmUkQAAABI + wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACAD2syZQPbLmUkQAAABI AAAACwAAAGlpc25vZGUueW1sy8tPSQ0oyk9OLS52zs/NTcxL8cnMS7VSUHKxigGKpxcl5iq4Zeak - FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgAz317T6IT5UH0AwAASgkAAAgA + FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgA9rMmUKIT5UH0AwAASgkAAAgA AABpbmRleC5qc31VwW7jNhC9B8g/DBYFpAAOdeihrYsUcANvayBZBxuhl26R0BJtsZFIlaSidbP+ 985QpCKnSYQcYurxzcybmacsg0vd7o3cVQ7S4gyuZWG01VuH56bVhjupFYNFXYMHWTDCCvMoSnZ6 kmVwJQuhrCihU6Uw4CoB16s8HiPm9KTQyjootRPqES7w/j+dNCJNhpPk7OcIabmrpgD6PXmNgZ3c @@ -2613,7 +2904,7 @@ interactions: OIN8J6gXtOedFW/WNJaT5IgkNxeq0B0CkEiFxPFv0+3Y6DLv0vhZc1J1Pr7p1DAX3npadAMrYCu/ +sT8NxN9CdtV6FIMAQ4vXIeAr32vmj11b/CL8OVKx/268ibsl0tiPQ2NJ32z8OtAYxc8udXWpUnG W5kFyWyCbo/AGX1IpisWNzNs+FhvxM5ebOn0bmjOZ9xIr8lxNRExiOqrYqjaSBQ0P4yW/B9QSwME - FAAAAAgA0H17TwgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 + FAAAAAgA9rMmUAgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 0ZitAU04fBxGIDEKkJh5uA7NaJ4R4vqeb7ckhsVaS4AYdvfu60307iWJolKVWZWVleO//9f/8o/0 84fNW/If/+Mff8jixhGc8I//fny+lf1Ac+zsK+gH+AM8f2E6oqFopjw/N4BOX/myF2m+HKTPQj+S T48l2ZVtSbZFLf/q3w+P86/+N7+PfBmwgmr6s7Cqf/n++5vAP7DTm5wbpD91zK0sZS02YegG/wMA @@ -3412,7 +3703,7 @@ interactions: LXuBpSGTQR+IO12JXU23Q9QxUxReI1SO3Q9PNeinhb6jA3z00TqBYaBPIYIw9G4LWZhACVsDE/zB dm1bGTDjzf1WIJNcD3ueku28gbrZ0nQbHNlpvC0IrMT7MOiNeDllkgpeUFLbxTQJVPQQs9j4h1Dd XnIrj+WjPe2N5IwzhSM/zkdPJmlI6Haykvjl0S7zFsJ252MTWCt8ZbVBLZRAETZHqACbAQnM4Zi3 - GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIANB9e0+2 + GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIAPazJlC2 Hh6RhAEAAIkDAAAMAAAAcGFja2FnZS5qc29ufVJNT+MwEL0j8R+sHDht3RpFiO0RwYFDb3tElVJ7 2swq8Vj2pFCh3d++/mjLJhQiH6J5b94bv/H79ZWIX2WbHqqlqEC3tCGufhzre/ABySZIyYVcnAED QXt0fAQfiMXDgJ0BL/a1SDIi6ojQ9K6Dc1czcEs+NaxQewq0/bDqUIMNeYrV869zuW8wO6A18CZ/ @@ -3420,8 +3711,8 @@ interactions: aNwimJdK3NwIeEMWqirtf05X8OAoIJM/TG7BB5eD2CGPPAffpXLL7MJyPo9wO2ykpn6qbMBBvJHV CNOE4lo2ZVNJ6m8t76QamRhisPsEru/l7cfOjyMHxu0ht97LOqKfnPePX5uXJLP2XTQeaxdwpslu cTeLm7Sm8SaTVS3VZbbrhh3aGfaOyuLXt1LFub/hpq0X1cX/b/oC03nqsbzJdR2zUN9wR/PGYCbk - 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACADQfXtPAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k - AwBQSwMEFAAAAAgA0H17T+JGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ + 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACAD2syZQAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k + AwBQSwMEFAAAAAgA9rMmUOJGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ kknrom2ANohvgAA1DZz4oRAKeLUciRstd9m9iFC+vjNLipQb1zLsB1nanTlz5nKGPINrWVm4sAEC 1o0WAU9PTk++VMrDkg4rQf8RDUiHdFdC9MqsYcEON07U2Fq3+ftVFULj3xVFiduc3Fb7m1zaevoa VABf2dYDfUCwPRgI8IpiYooUKhFASIlN8KBMEwOsnK3pHCkoOhCmBCSy6BlvKeQmZ6pnZ/DJocN/ @@ -3440,7 +3731,7 @@ interactions: Wg7IXs5nT9KiB0BP7ZAOnWb8kuAfYHUPpxGuSb/z5DLOxweq5VaFHT8bJImJ5u5JBmiy6I+Mi7SG 3xgy0WNnI/bRKs6FWUdSNNwZgqLdZ1gK/aqZ380+P5udtGujiADug/hC0+tI0cW5rARvWZ+2Nc9I v99IuP20vLgMffrH9XLLT7jVbgzUtm1Oj0N6J+IYDb1NUSVoDyezzqekp4XZHnPprMjjX1BLAwQU - AAAACADQfXtPRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM + AAAACAD2syZQRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM ShA0DmCg8bo46TCsW0BJtMVGIlWSsuwO++87pGRb9ppiLwuCBKJ4P865596r8dW6KmkljJVaJdH5 6HVEQmU6l2qZRI1bxD9GV5enJ+Nv4vj0hPzPQyEtZVot5LIx3MGOFrIUhFMjPjXSiJzkgqS0Sufh uLE4cppMoyic1UZnwlphKRWFVHnveTqdkzbh32RdG9wYEd3ipNIGjtRCmyoE/JZW0kp3cXrSWxbO @@ -3461,12 +3752,12 @@ interactions: 0JIVNcf6g9cSqZJehMbvR38r0WIoaW8dBmOGkbv0F7Tnw3Ez3BDDkF4fT0KtLnZu8GlQ82UI5nT3 tQB1zX6+mTxNZu/RoStptPIloxU30i+tocPdDJ50+4ziLUn2YLKlDaqL2d0b4BTU9Ttw91VBcyH+ l0+LQBKnRQPMW0r7inSh90JB1cfbHTksUBLt3f105puaXfZWEOq/v0/Gh8lc/gNQSwMEFAAAAAgA - 0H17TwAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGk2ZzY2bmZtdmZtdTMuUHVi - bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgA0H17T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny + 9rMmUAAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGlnbWl2ajM3d3hheHguUHVi + bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgA9rMmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny aXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJa TjgV2vSumEj47yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIK VOhHMghb22BsO9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfd - KMJkNb8AUEsDBBQAAAAIANB9e0+o88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy + KMJkNb8AUEsDBBQAAAAIAPazJlCo88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy Z2VTZXR0aW5ncy5qc51VXW/aMBR9r9T/YPUFR8tM2dNUxqRNY1P7QJGCtAdAU5rcdGapw2yHglD+ +66dODjAqm55QMS+95xzP5MUQmmSKTIiEn6XXALtZaoXDC8vEnu1jvVP/9K8e9fxeh2B1lw8TmtD c88kqCLfoDXro4GqDRRbqUJ4viA2f3FieGUNnamDsEritKFUX3kOtCshdLAdHsMhiwSUMtAeML5N @@ -3479,7 +3770,7 @@ interactions: i+SU2Ek7x+g1nbdGOoBumqqTpHA1KVK4i6ayMJuEtgSNS1fG8c7jXAl0Z7unvA6jC/4vQ+XK1sn+ iboz3Wt239EmVN50do3dQBmzl/ZPt1WbXMzdMkIb8oZgp+Kv47KLaOl3Li6tpa8AU/ksuYa2H9rY 65Gt23+BXxvsaxBJkSLujeuSqi0qgVyBL/EE+DjJtifrzcmzHT1sQlHmeYiT/DKhLesfUEsDBBQA - AAAIANB9e080Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl + AAAIAPazJlA0Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl VWFr2zoU/W7wf7gYTLfxbG/vyyDg0Y5ma6BrTJ2uXwzFsW9Sb5YlJIW0e9t++67kOLHbeHswCIl0 c3V0zrnS1SkW9xz4auU6CnXNi7x2nXS6AJErteWyjP03bQAfBJc6Ra2rZq1i/982LFHwq5xhrGRx TeND9EbW8aqqcRJFkX8x/zQ9v559nk5+vv7njd8GkrPFxeQnzVSlMfI7KL/FKPm2qXlexkuuA0J3 @@ -3494,7 +3785,7 @@ interactions: GZIzxenK37bg4WtgO3FF9X8a9yCOwfNgzalRfKvEny6PBT9pQSAXgjS1SCe7uzo5S5I7eh0Ws6uP 6YGU60ws+u7O2i56j2ZHMJfEdQ4PkJ+9pTB95ZCP8AjNuuN/Za8OHQrzZiNsC1J6Y17Qkf430l/G eto+fbxR9Z/KfV2acvd8u461ezKdf7DODC1rLS43TDw1uOElDmTvZBzpQQzlGvdH9wsdEHwgH6Kl - 6/wCUEsDBBQAAAAIANB9e09qiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz + 6/wCUEsDBBQAAAAIAPazJlBqiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz aC5qcy50ZW1wbGF0ZXVUXW/aMBR9R+I/3KGpSSTqoG1PsE5iHZP6sK4qlSrtpTLJZVgY2/MHqEX8 99khcUlon5Kcc++55x5stlTDC1M/JS9RwxVo/OeYxjTx4OWyQpNs0u9tfZ2idnVaEr4juTSn1NJE ImBo7ClbQ1VJXSSljR6CLtFoJN/6YhKVvKW7o4VWxWvvEBJC8v3j7PvT/OZh9nQ7/TU7EN8WJdau @@ -3504,10 +3795,10 @@ interactions: jBpcS2FR2MuHZ4WDMQyoUpwV1EoR0hzU/eFxyLLwIFKE82GUFAaTITTZpAHLamG2hOqbGEutM9ey RPh2BZ9GI7i4gC7zFT6PRtmrKR+mE5yJdYxw0lBN7KlwnDfwAZAbfG/ol5Z2FKjsTlr7xfVQa6lP d/NA1IgKATw2eplD65wot+DMrLqnJN7j1pWol3xnXNjqwykAb53CdhLn2waB7rKV5cbpG7PPJhf+ - J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgA0H17Tzgr + J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgA9rMmUDgr 1xphAAAAwQAAAB0AAABQb3N0RGVwbG95U2NyaXB0cy9ydW5HdWxwLmNtZH1OOQ6AIBDsSfjDfkD8 AbHwGTYE1iNZWALb+HsDDY06082VWdCfDLzvWlUUYu9Iq8auF/RcAgTMxHfEJCBXxCouZq2CE4RZ - wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgA0H17T6HoB0OKAgAAQwYAACsAAABQ + wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgA9rMmUKHoB0OKAgAAQwYAACsAAABQ b3N0RGVwbG95U2NyaXB0cy9zZXR1cEdpdGh1YlJlbW90ZVJlcG8uY21ktVVRT9swEH6v1P9wqmQV HpJo21ulTi1bpfEAVLRjkyiajHOhASf2bEcVAv77znZDU0H3Rh6c5HL33Xef75wJirUCVRT9nkUn leCy3zNYQfJhV8SnbI2+suoSK+XwErWCaxOef1o0N3Ct0VhVczkVAq1dqgesvdWo+3Ne4ZPSrvSf @@ -3520,7 +3811,7 @@ interactions: mBzMRLG/YX5B/fyKYCTL/Ghloae3Y1f9jyzNc97vtfcw7GFq2k6PYr6VN/qWNZ0AYYNC0f488KbO q1B1Ud6FeU/DJA261Q4OeGpu7UaZ/NXby3HIGSteShg0rpSTW+UKQ2ko+MF3VTeG51TCHkZV0S2p YKBJL27QFx7OTrCqMQJ9GmeU7KJ4KbzeocEZVNw6NDsdtxpK5DXB+ADrGv8HeCthgKTdSQwkBcQ+ - b2GwzsP/4h9QSwMEFAAAAAgA0H17T+fISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z + b2GwzsP/4h9QSwMEFAAAAAgA9rMmUOfISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z ZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVda9swFH0P5D9cAiIrzM66rjAC2dJ2ge2hbUjSbrCUosk3 iVvZEpKcULrut+9KtvOxtA97aAiJdaV7dO65H+6jWChQs1mzYdFJJbhsNgxmEL3ap8Sn2wp9bdUI M+VwhFrBz2W9vAnPVxbNBc+q1RCNVTmXJ0KgtRN1jzltaKPu/JlHpV3qt59uSnxhkDsEnieglS6k @@ -3535,44 +3826,44 @@ interactions: rFKZwLyglqwiKtEOj0lmpROfjvI/zLLQwXU/ltLvJ6M8m+Y04KimKlg/7rxpa0lEZ+k8jJ849Htr u6haL5zU3NqVMsn6tK+6lw5jxlMJrcKlsk/zcGboGnK+97Nw24cnFMIORpbRX5RBS1NDcYM+8PCq AKsKI9Bf44yS2yheCmBVAzLIuHVoNjpWGkrkOcF4BxrM/oW3L2GApLRHBqIZxEHGGgbzJLwe/wJQ - SwMEFAAAAAgA0H17TwAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 + SwMEFAAAAAgA9rMmUAAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 Lmpzb24udGVtcGxhdGVtjj0LwjAQhnfB/xAyW/AjbaNblSIOulhwlDS5QqA2IYmClv53k7Yigssd vB/PXTudIIQbdgO8Qbi95Nvr+VDk11N2zDs8610BlhupnVTNnxDKXncDaKscOoN5SA5opwSMXc40 K2UtnQTry20QvfwAYz2Oq8YZVX8Nb1l1Nxx2g1M8df/YXjo8JLrZiNBGcbC2gJuumYMfhhvFUD+I - AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAADQfXtPAAAAAAAAAAAA - AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACADQfXtPAAAAAAIAAAAA - AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTZnNjZuZm12Zm11My1XZWItRGVw - bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAA0H17TwAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA - AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAANB9e08AAAAAAAAAAAAAAAALAAAAAAAAAAAA - EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIAM99e0+ZqxjsIAAAAB4AAAALAAAAAAAAAAAA - AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIAM99e09bLbwvwgAAAHkBAAAMAAAAAAAAAAAA - AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACADPfXtPGI8ybiEAAAAfAAAACgAAAAAAAAAA - AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIAM99e082YHQO3wEAAHYEAAAGAAAAAAAAAAAA - AAC2gdcBAABib3QuanNQSwECFAAUAAAACADPfXtPeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha - AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIAM99e089suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI - AABpaXNub2RlLnltbFBLAQIUABQAAAAIAM99e0+iE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ - AABpbmRleC5qc1BLAQIUABQAAAAIANB9e08IIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw - YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIANB9e0+2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 - gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACADQfXtPAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA - /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACADQfXtP4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA - toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgA0H17T0bNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB - QcUAAHdlYi5jb25maWdQSwECFAAUAAAACADQfXtPAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp - yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpNmc2Nm5mbXZmbXUzLlB1Ymxpc2hTZXR0aW5nc1BLAQIU - ABQAAAAIANB9e0/gz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 - cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACADQfXtPqPPJVpkCAAB1BwAA + AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAAD2syZQAAAAAAAAAAAA + AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACAD2syZQAAAAAAIAAAAA + AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWdtaXZqMzd3eGF4eC1XZWItRGVw + bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAA9rMmUAAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA + AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAAPazJlAAAAAAAAAAAAAAAAALAAAAAAAAAAAA + EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIAPazJlCZqxjsIAAAAB4AAAALAAAAAAAAAAAA + AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIAPazJlBbLbwvwgAAAHkBAAAMAAAAAAAAAAAA + AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACAD2syZQGI8ybiEAAAAfAAAACgAAAAAAAAAA + AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIAPazJlA2YHQO3wEAAHYEAAAGAAAAAAAAAAAA + AAC2gdcBAABib3QuanNQSwECFAAUAAAACAD2syZQeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha + AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIAPazJlA9suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI + AABpaXNub2RlLnltbFBLAQIUABQAAAAIAPazJlCiE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ + AABpbmRleC5qc1BLAQIUABQAAAAIAPazJlAIIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw + YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIAPazJlC2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 + gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACAD2syZQAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA + /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACAD2syZQ4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA + toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgA9rMmUEbNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB + QcUAAHdlYi5jb25maWdQSwECFAAUAAAACAD2syZQAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp + yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpZ21pdmozN3d4YXh4LlB1Ymxpc2hTZXR0aW5nc1BLAQIU + ABQAAAAIAPazJlDgz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 + cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACAD2syZQqPPJVpkCAAB1BwAA IgAAAAAAAAAAAAAAtoEWywAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc1BLAQIU - ABQAAAAIANB9e080Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 - cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIANB9e09qiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 - gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgA0H17 - Tzgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu - Y21kUEsBAhQAFAAAAAgA0H17T6HoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs - b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACADQfXtP58hJBQgD + ABQAAAAIAPazJlA0Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 + cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIAPazJlBqiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 + gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgA9rMm + UDgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu + Y21kUEsBAhQAFAAAAAgA9rMmUKHoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs + b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACAD2syZQ58hJBQgD AAAyBwAAKAAAAAAAAAAAAAAA/4Ee1wAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVS - ZXBvLmNtZFBLAQIUABQAAAAIANB9e08ABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 - RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAADQfXtPAAAA + ZXBvLmNtZFBLAQIUABQAAAAIAPazJlAABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 + RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAAD2syZQAAAA AAAAAAAAAAAAGwAAAAAAAAAAABAA/0Fz2wAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvUEsB - AhQAFAAAAAgA0H17TwAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi - bGlzaFByb2ZpbGVzL2NsaTZnNjZuZm12Zm11My1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ + AhQAFAAAAAgA9rMmUAAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi + bGlzaFByb2ZpbGVzL2NsaWdtaXZqMzd3eGF4eC1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ ANAGAAAI3AAAAAA= headers: Accept: @@ -3598,7 +3889,7 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 23:46:34 GMT + - Mon, 06 Jan 2020 14:31:57 GMT expires: - '-1' pragma: @@ -3606,7 +3897,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -3643,7 +3934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:36 GMT + - Mon, 06 Jan 2020 14:31:58 GMT expires: - '-1' pragma: @@ -3651,7 +3942,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -3663,15 +3954,15 @@ interactions: message: OK - request: body: !!binary | - UEsDBBQAAAAAANB9e08AAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA - ANB9e08AAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAz317T5mrGOwgAAAAHgAA + UEsDBBQAAAAAAPazJlAAAAAAAAAAAAAAAAASAAAAUG9zdERlcGxveVNjcmlwdHMvUEsDBBQAAAAA + APazJlAAAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgA9rMmUJmrGOwgAAAAHgAA AAsAAAAuZGVwbG95bWVudItOzs9Ly0yP5eVKzs/NTcxLUbBVSEktyMmv1EvOTQEAUEsDBBQAAAAI - AM99e09bLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN + APazJlBbLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoREVeKC79DXIzN KIFmUiaJtZT+u40t9LEwu9xzZriJdTpWuMNP7Th4cRFdnonhSPwEJO3lSUgfgDSwlsXEeBhJpEu3 MfvlHq0Z4tuhEBKqBlov78WCG9JIYTKOK0ROMYbIpKABk5z9EvsaSlQPfDpG9YxUBuNI1cBI07pu tseFYFGn9oRvZFlsMJCj1rro/yi+pfLK7JrkTO+ZnX7VP6CtKwioyshVq1JfQ6/tZ4wDfZ715y9Q - SwMEFAAAAAgAz317TxiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL - KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAM99e082YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw + SwMEFAAAAAgA9rMmUBiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8pzUkt1ufl0tLL + KtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAPazJlA2YHQO3wEAAHYEAAAGAAAAYm90LmpzxVRRa9sw EH4P5D9cYWCbLvKe52WQjkEHy9P2MsaginSJxWTJk85tTfB/39mJW2cJrG+9B2Pffffd3XeS8xw+ +boNZlcSpCqDtVHBR78l9ofaB0nGOwEra2EARQgYMdyjFvNZnsNXo9BF1NA4jQGoRFh/+T66GTOf Ke8iwR5Wisy9ofZWOm0Z28GSyf40JmCabDxtGmOZI8mKIcvKGOGzKv2NJ8BHQqfjGcd+PgO2oURo @@ -3680,7 +3971,7 @@ interactions: Gg3Jm/0TZGxA9F/QJXcHKaecPP5NC0paa9xuqMyCtUzG62p4PirlYbw+BCz9qLThzTdOXOrwwDLR uDut+zR+tcEQV1qjfrEGh8NTTVL51JzNO40XpwRbHyC1yDo64tR3xfDy4YRSWHQ7Kgu4vuZg9m8P vZktpNOUnwz8JVj/q+WFfgIqUxt0xIiLdP9Zb3KL1vrhaD2gVb7CqyQrzmm6U1f3Wrs+Fu/6rVde - NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAz317T3ohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k + NxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgA9rMmUHohM0mWBAAA7gwAAAoAAABkZXBsb3kuY21k xVZtb+JGEP6OxH8YkCxdquAk11aVklIdIkuPHm/FTi4nIVmOvcBezK5rr0Poh/72zq7XxhwmTT8d H8B4XvaZ2Xlm5gNbQtty+mPPnff6xBuRezKy2jAhf0L7pzZ8oMFagFgum41m4/oaOrUfLfp0d3sH tzSOxG5DuQQnSFgsteieJikT/Bqu7Ev76pdXPWnhLKEJ/StjKZM0PVY3WuiWLXfARUjtrykwnko/ @@ -3701,9 +3992,9 @@ interactions: ytnU6cSJCDPd3N8WO54q4rDMwff+GB5SHprsmnAhEBsc+iEkIpMMR4hc+xK2DGPOl+YM/60pL8Kq pGm/wOknUBnzutYP5l4t/d9qNvRyXllYDQMu2/kJA5+pZZO+MNnHGuhWVc8LeN3Sm9KDi8eDFViH ZABihAaT9t4zyGHtpyACvbGGEGaJovOWPoKajId8zstBnYM7K1HGI/pMo6pggNtvMevz3TyHcGxT - wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACADPfXtPPbLmUkQAAABI + wL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACAD2syZQPbLmUkQAAABI AAAACwAAAGlpc25vZGUueW1sy8tPSQ0oyk9OLS52zs/NTcxL8cnMS7VSUHKxigGKpxcl5iq4Zeak - FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgAz317T6IT5UH0AwAASgkAAAgA + FitoVFiYacbkAdVnFccYGugZmugZgrl6qRWpSgBQSwMEFAAAAAgA9rMmUKIT5UH0AwAASgkAAAgA AABpbmRleC5qc31VwW7jNhC9B8g/DBYFpAAOdeihrYsUcANvayBZBxuhl26R0BJtsZFIlaSidbP+ 985QpCKnSYQcYurxzcybmacsg0vd7o3cVQ7S4gyuZWG01VuH56bVhjupFYNFXYMHWTDCCvMoSnZ6 kmVwJQuhrCihU6Uw4CoB16s8HiPm9KTQyjootRPqES7w/j+dNCJNhpPk7OcIabmrpgD6PXmNgZ3c @@ -3722,7 +4013,7 @@ interactions: OIN8J6gXtOedFW/WNJaT5IgkNxeq0B0CkEiFxPFv0+3Y6DLv0vhZc1J1Pr7p1DAX3npadAMrYCu/ +sT8NxN9CdtV6FIMAQ4vXIeAr32vmj11b/CL8OVKx/268ibsl0tiPQ2NJ32z8OtAYxc8udXWpUnG W5kFyWyCbo/AGX1IpisWNzNs+FhvxM5ebOn0bmjOZ9xIr8lxNRExiOqrYqjaSBQ0P4yW/B9QSwME - FAAAAAgA0H17TwgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 + FAAAAAgA9rMmUAgjAlbmsQAAXl0DABEAAABwYWNrYWdlLWxvY2suanNvbux92bLqyLLYuyP8Dyf6 0ZitAU04fBxGIDEKkJh5uA7NaJ4R4vqeb7ckhsVaS4AYdvfu60307iWJolKVWZWVleO//9f/8o/0 84fNW/If/+Mff8jixhGc8I//fny+lf1Ac+zsK+gH+AM8f2E6oqFopjw/N4BOX/myF2m+HKTPQj+S T48l2ZVtSbZFLf/q3w+P86/+N7+PfBmwgmr6s7Cqf/n++5vAP7DTm5wbpD91zK0sZS02YegG/wMA @@ -4521,7 +4812,7 @@ interactions: LXuBpSGTQR+IO12JXU23Q9QxUxReI1SO3Q9PNeinhb6jA3z00TqBYaBPIYIw9G4LWZhACVsDE/zB dm1bGTDjzf1WIJNcD3ueku28gbrZ0nQbHNlpvC0IrMT7MOiNeDllkgpeUFLbxTQJVPQQs9j4h1Dd XnIrj+WjPe2N5IwzhSM/zkdPJmlI6Haykvjl0S7zFsJ252MTWCt8ZbVBLZRAETZHqACbAQnM4Zi3 - GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIANB9e0+2 + GcwTuj8J8RkTj8ilkxBsz0ToLrsItnMfDuXeOhBK9I+iktPh8eP4//8AUEsDBBQAAAAIAPazJlC2 Hh6RhAEAAIkDAAAMAAAAcGFja2FnZS5qc29ufVJNT+MwEL0j8R+sHDht3RpFiO0RwYFDb3tElVJ7 2swq8Vj2pFCh3d++/mjLJhQiH6J5b94bv/H79ZWIX2WbHqqlqEC3tCGufhzre/ABySZIyYVcnAED QXt0fAQfiMXDgJ0BL/a1SDIi6ojQ9K6Dc1czcEs+NaxQewq0/bDqUIMNeYrV869zuW8wO6A18CZ/ @@ -4529,8 +4820,8 @@ interactions: aNwimJdK3NwIeEMWqirtf05X8OAoIJM/TG7BB5eD2CGPPAffpXLL7MJyPo9wO2ykpn6qbMBBvJHV CNOE4lo2ZVNJ6m8t76QamRhisPsEru/l7cfOjyMHxu0ht97LOqKfnPePX5uXJLP2XTQeaxdwpslu cTeLm7Sm8SaTVS3VZbbrhh3aGfaOyuLXt1LFub/hpq0X1cX/b/oC03nqsbzJdR2zUN9wR/PGYCbk - 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACADQfXtPAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k - AwBQSwMEFAAAAAgA0H17T+JGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ + 41PLwSmpfsr6lNz1VTz/AFBLAwQUAAAACAD2syZQAAAAAAIAAAAAAAAACwAAAHB1Ymxpc2guY21k + AwBQSwMEFAAAAAgA9rMmUOJGzbgNBAAASwoAAAkAAABSRUFETUUuTUSdVttu20YQfTfgfxjILxEQ kknrom2ANohvgAA1DZz4oRAKeLUciRstd9m9iFC+vjNLipQb1zLsB1nanTlz5nKGPINrWVm4sAEC 1o0WAU9PTk++VMrDkg4rQf8RDUiHdFdC9MqsYcEON07U2Fq3+ftVFULj3xVFiduc3Fb7m1zaevoa VABf2dYDfUCwPRgI8IpiYooUKhFASIlN8KBMEwOsnK3pHCkoOhCmBCSy6BlvKeQmZ6pnZ/DJocN/ @@ -4549,7 +4840,7 @@ interactions: Wg7IXs5nT9KiB0BP7ZAOnWb8kuAfYHUPpxGuSb/z5DLOxweq5VaFHT8bJImJ5u5JBmiy6I+Mi7SG 3xgy0WNnI/bRKs6FWUdSNNwZgqLdZ1gK/aqZ380+P5udtGujiADug/hC0+tI0cW5rARvWZ+2Nc9I v99IuP20vLgMffrH9XLLT7jVbgzUtm1Oj0N6J+IYDb1NUSVoDyezzqekp4XZHnPprMjjX1BLAwQU - AAAACADQfXtPRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM + AAAACAD2syZQRs0aOIAEAAD5CQAACgAAAHdlYi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobM ShA0DmCg8bo46TCsW0BJtMVGIlWSsuwO++87pGRb9ppiLwuCBKJ4P865596r8dW6KmkljJVaJdH5 6HVEQmU6l2qZRI1bxD9GV5enJ+Nv4vj0hPzPQyEtZVot5LIx3MGOFrIUhFMjPjXSiJzkgqS0Sufh uLE4cppMoyic1UZnwlphKRWFVHnveTqdkzbh32RdG9wYEd3ipNIGjtRCmyoE/JZW0kp3cXrSWxbO @@ -4570,12 +4861,12 @@ interactions: 0JIVNcf6g9cSqZJehMbvR38r0WIoaW8dBmOGkbv0F7Tnw3Ez3BDDkF4fT0KtLnZu8GlQ82UI5nT3 tQB1zX6+mTxNZu/RoStptPIloxU30i+tocPdDJ50+4ziLUn2YLKlDaqL2d0b4BTU9Ttw91VBcyH+ l0+LQBKnRQPMW0r7inSh90JB1cfbHTksUBLt3f105puaXfZWEOq/v0/Gh8lc/gNQSwMEFAAAAAgA - 0H17TwAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGk2ZzY2bmZtdmZtdTMuUHVi - bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgA0H17T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny + 9rMmUAAAAAACAAAAAAAAADEAAABQb3N0RGVwbG95U2NyaXB0cy9jbGlnbWl2ajM3d3hheHguUHVi + bGlzaFNldHRpbmdzAwBQSwMEFAAAAAgA9rMmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2Ny aXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJa TjgV2vSumEj47yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIK VOhHMghb22BsO9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfd - KMJkNb8AUEsDBBQAAAAIANB9e0+o88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy + KMJkNb8AUEsDBBQAAAAIAPazJlCo88lWmQIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVy Z2VTZXR0aW5ncy5qc51VXW/aMBR9r9T/YPUFR8tM2dNUxqRNY1P7QJGCtAdAU5rcdGapw2yHglD+ +66dODjAqm55QMS+95xzP5MUQmmSKTIiEn6XXALtZaoXDC8vEnu1jvVP/9K8e9fxeh2B1lw8TmtD c88kqCLfoDXro4GqDRRbqUJ4viA2f3FieGUNnamDsEritKFUX3kOtCshdLAdHsMhiwSUMtAeML5N @@ -4588,7 +4879,7 @@ interactions: i+SU2Ek7x+g1nbdGOoBumqqTpHA1KVK4i6ayMJuEtgSNS1fG8c7jXAl0Z7unvA6jC/4vQ+XK1sn+ iboz3Wt239EmVN50do3dQBmzl/ZPt1WbXMzdMkIb8oZgp+Kv47KLaOl3Li6tpa8AU/ksuYa2H9rY 65Gt23+BXxvsaxBJkSLujeuSqi0qgVyBL/EE+DjJtifrzcmzHT1sQlHmeYiT/DKhLesfUEsDBBQA - AAAIANB9e080Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl + AAAIAPazJlA0Ifq4IgMAAFIIAAAgAAAAUG9zdERlcGxveVNjcmlwdHMvcHJlcGFyZVNyYy5jbWSl VWFr2zoU/W7wf7gYTLfxbG/vyyDg0Y5ma6BrTJ2uXwzFsW9Sb5YlJIW0e9t++67kOLHbeHswCIl0 c3V0zrnS1SkW9xz4auU6CnXNi7x2nXS6AJErteWyjP03bQAfBJc6Ra2rZq1i/982LFHwq5xhrGRx TeND9EbW8aqqcRJFkX8x/zQ9v559nk5+vv7njd8GkrPFxeQnzVSlMfI7KL/FKPm2qXlexkuuA0J3 @@ -4603,7 +4894,7 @@ interactions: GZIzxenK37bg4WtgO3FF9X8a9yCOwfNgzalRfKvEny6PBT9pQSAXgjS1SCe7uzo5S5I7eh0Ws6uP 6YGU60ws+u7O2i56j2ZHMJfEdQ4PkJ+9pTB95ZCP8AjNuuN/Za8OHQrzZiNsC1J6Y17Qkf430l/G eto+fbxR9Z/KfV2acvd8u461ezKdf7DODC1rLS43TDw1uOElDmTvZBzpQQzlGvdH9wsdEHwgH6Kl - 6/wCUEsDBBQAAAAIANB9e09qiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz + 6/wCUEsDBBQAAAAIAPazJlBqiU91HQIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlz aC5qcy50ZW1wbGF0ZXVUXW/aMBR9R+I/3KGpSSTqoG1PsE5iHZP6sK4qlSrtpTLJZVgY2/MHqEX8 99khcUlon5Kcc++55x5stlTDC1M/JS9RwxVo/OeYxjTx4OWyQpNs0u9tfZ2idnVaEr4juTSn1NJE ImBo7ClbQ1VJXSSljR6CLtFoJN/6YhKVvKW7o4VWxWvvEBJC8v3j7PvT/OZh9nQ7/TU7EN8WJdau @@ -4613,10 +4904,10 @@ interactions: jBpcS2FR2MuHZ4WDMQyoUpwV1EoR0hzU/eFxyLLwIFKE82GUFAaTITTZpAHLamG2hOqbGEutM9ey RPh2BZ9GI7i4gC7zFT6PRtmrKR+mE5yJdYxw0lBN7KlwnDfwAZAbfG/ol5Z2FKjsTlr7xfVQa6lP d/NA1IgKATw2eplD65wot+DMrLqnJN7j1pWol3xnXNjqwykAb53CdhLn2waB7rKV5cbpG7PPJhf+ - J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgA0H17Tzgr + J5ccCZd/06RzjZqVk+OYtpGmscrV//dQxrEEK5sm6N7JIUTD3qUP+D9QSwMEFAAAAAgA9rMmUDgr 1xphAAAAwQAAAB0AAABQb3N0RGVwbG95U2NyaXB0cy9ydW5HdWxwLmNtZH1OOQ6AIBDsSfjDfkD8 AbHwGTYE1iNZWALb+HsDDY06082VWdCfDLzvWlUUYu9Iq8auF/RcAgTMxHfEJCBXxCouZq2CE4RZ - wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgA0H17T6HoB0OKAgAAQwYAACsAAABQ + wFowZhsZQ3xo1YLfbl+fXvHXWMeRwAnbzwdQSwMEFAAAAAgA9rMmUKHoB0OKAgAAQwYAACsAAABQ b3N0RGVwbG95U2NyaXB0cy9zZXR1cEdpdGh1YlJlbW90ZVJlcG8uY21ktVVRT9swEH6v1P9wqmQV HpJo21ulTi1bpfEAVLRjkyiajHOhASf2bEcVAv77znZDU0H3Rh6c5HL33Xef75wJirUCVRT9nkUn leCy3zNYQfJhV8SnbI2+suoSK+XwErWCaxOef1o0N3Ct0VhVczkVAq1dqgesvdWo+3Ne4ZPSrvSf @@ -4629,7 +4920,7 @@ interactions: mBzMRLG/YX5B/fyKYCTL/Ghloae3Y1f9jyzNc97vtfcw7GFq2k6PYr6VN/qWNZ0AYYNC0f488KbO q1B1Ud6FeU/DJA261Q4OeGpu7UaZ/NXby3HIGSteShg0rpSTW+UKQ2ko+MF3VTeG51TCHkZV0S2p YKBJL27QFx7OTrCqMQJ9GmeU7KJ4KbzeocEZVNw6NDsdtxpK5DXB+ADrGv8HeCthgKTdSQwkBcQ+ - b2GwzsP/4h9QSwMEFAAAAAgA0H17T+fISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z + b2GwzsP/4h9QSwMEFAAAAAgA9rMmUOfISQUIAwAAMgcAACgAAABQb3N0RGVwbG95U2NyaXB0cy9z ZXR1cFZzb1JlbW90ZVJlcG8uY21ktVVda9swFH0P5D9cAiIrzM66rjAC2dJ2ge2hbUjSbrCUosk3 iVvZEpKcULrut+9KtvOxtA97aAiJdaV7dO65H+6jWChQs1mzYdFJJbhsNgxmEL3ap8Sn2wp9bdUI M+VwhFrBz2W9vAnPVxbNBc+q1RCNVTmXJ0KgtRN1jzltaKPu/JlHpV3qt59uSnxhkDsEnieglS6k @@ -4644,44 +4935,44 @@ interactions: rFKZwLyglqwiKtEOj0lmpROfjvI/zLLQwXU/ltLvJ6M8m+Y04KimKlg/7rxpa0lEZ+k8jJ849Htr u6haL5zU3NqVMsn6tK+6lw5jxlMJrcKlsk/zcGboGnK+97Nw24cnFMIORpbRX5RBS1NDcYM+8PCq AKsKI9Bf44yS2yheCmBVAzLIuHVoNjpWGkrkOcF4BxrM/oW3L2GApLRHBqIZxEHGGgbzJLwe/wJQ - SwMEFAAAAAgA0H17TwAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 + SwMEFAAAAAgA9rMmUAAF6ua/AAAAHAEAACoAAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0 Lmpzb24udGVtcGxhdGVtjj0LwjAQhnfB/xAyW/AjbaNblSIOulhwlDS5QqA2IYmClv53k7Yigssd vB/PXTudIIQbdgO8Qbi95Nvr+VDk11N2zDs8610BlhupnVTNnxDKXncDaKscOoN5SA5opwSMXc40 K2UtnQTry20QvfwAYz2Oq8YZVX8Nb1l1Nxx2g1M8df/YXjo8JLrZiNBGcbC2gJuumYMfhhvFUD+I - AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAADQfXtPAAAAAAAAAAAA - AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACADQfXtPAAAAAAIAAAAA - AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaTZnNjZuZm12Zm11My1XZWItRGVw - bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAA0H17TwAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA - AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAANB9e08AAAAAAAAAAAAAAAALAAAAAAAAAAAA - EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIAM99e0+ZqxjsIAAAAB4AAAALAAAAAAAAAAAA - AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIAM99e09bLbwvwgAAAHkBAAAMAAAAAAAAAAAA - AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACADPfXtPGI8ybiEAAAAfAAAACgAAAAAAAAAA - AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIAM99e082YHQO3wEAAHYEAAAGAAAAAAAAAAAA - AAC2gdcBAABib3QuanNQSwECFAAUAAAACADPfXtPeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha - AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIAM99e089suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI - AABpaXNub2RlLnltbFBLAQIUABQAAAAIAM99e0+iE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ - AABpbmRleC5qc1BLAQIUABQAAAAIANB9e08IIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw - YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIANB9e0+2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 - gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACADQfXtPAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA - /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACADQfXtP4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA - toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgA0H17T0bNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB - QcUAAHdlYi5jb25maWdQSwECFAAUAAAACADQfXtPAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp - yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpNmc2Nm5mbXZmbXUzLlB1Ymxpc2hTZXR0aW5nc1BLAQIU - ABQAAAAIANB9e0/gz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 - cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACADQfXtPqPPJVpkCAAB1BwAA + AEjKdEnWcxpBtSARiXkVUVLRKE1oGa8oEYzEnwth+dG9AVBLAwQUAAAAAAD2syZQAAAAAAAAAAAA + AAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQUAAAACAD2syZQAAAAAAIAAAAA + AAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWdtaXZqMzd3eGF4eC1XZWItRGVw + bG95LnB1YnhtbAMAUEsBAhQAFAAAAAAA9rMmUAAAAAAAAAAAAAAAABIAAAAAAAAAAAAQAP9BAAAA + AFBvc3REZXBsb3lTY3JpcHRzL1BLAQIUABQAAAAAAPazJlAAAAAAAAAAAAAAAAALAAAAAAAAAAAA + EAD/QTAAAABQcm9wZXJ0aWVzL1BLAQIUABQAAAAIAPazJlCZqxjsIAAAAB4AAAALAAAAAAAAAAAA + AAC2gVkAAAAuZGVwbG95bWVudFBLAQIUABQAAAAIAPazJlBbLbwvwgAAAHkBAAAMAAAAAAAAAAAA + AAC2gaIAAAAuZXNsaW50cmMuanNQSwECFAAUAAAACAD2syZQGI8ybiEAAAAfAAAACgAAAAAAAAAA + AAAAtoGOAQAALmdpdGlnbm9yZVBLAQIUABQAAAAIAPazJlA2YHQO3wEAAHYEAAAGAAAAAAAAAAAA + AAC2gdcBAABib3QuanNQSwECFAAUAAAACAD2syZQeiEzSZYEAADuDAAACgAAAAAAAAAAAAAA/4Ha + AwAAZGVwbG95LmNtZFBLAQIUABQAAAAIAPazJlA9suZSRAAAAEgAAAALAAAAAAAAAAAAAAC2gZgI + AABpaXNub2RlLnltbFBLAQIUABQAAAAIAPazJlCiE+VB9AMAAEoJAAAIAAAAAAAAAAAAAAC2gQUJ + AABpbmRleC5qc1BLAQIUABQAAAAIAPazJlAIIwJW5rEAAF5dAwARAAAAAAAAAAAAAAC2gR8NAABw + YWNrYWdlLWxvY2suanNvblBLAQIUABQAAAAIAPazJlC2Hh6RhAEAAIkDAAAMAAAAAAAAAAAAAAC2 + gTS/AABwYWNrYWdlLmpzb25QSwECFAAUAAAACAD2syZQAAAAAAIAAAAAAAAACwAAAAAAAAAAAAAA + /4HiwAAAcHVibGlzaC5jbWRQSwECFAAUAAAACAD2syZQ4kbNuA0EAABLCgAACQAAAAAAAAAAAAAA + toENwQAAUkVBRE1FLk1EUEsBAhQAFAAAAAgA9rMmUEbNGjiABAAA+QkAAAoAAAAAAAAAAAAAALaB + QcUAAHdlYi5jb25maWdQSwECFAAUAAAACAD2syZQAAAAAAIAAAAAAAAAMQAAAAAAAAAAAAAAtoHp + yQAAUG9zdERlcGxveVNjcmlwdHMvY2xpZ21pdmozN3d4YXh4LlB1Ymxpc2hTZXR0aW5nc1BLAQIU + ABQAAAAIAPazJlDgz3m4kQAAANwAAAAtAAAAAAAAAAAAAAC2gTrKAABQb3N0RGVwbG95U2NyaXB0 + cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAACAD2syZQqPPJVpkCAAB1BwAA IgAAAAAAAAAAAAAAtoEWywAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qc1BLAQIU - ABQAAAAIANB9e080Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 - cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIANB9e09qiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 - gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgA0H17 - Tzgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu - Y21kUEsBAhQAFAAAAAgA0H17T6HoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs - b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACADQfXtP58hJBQgD + ABQAAAAIAPazJlA0Ifq4IgMAAFIIAAAgAAAAAAAAAAAAAAD/ge/NAABQb3N0RGVwbG95U2NyaXB0 + cy9wcmVwYXJlU3JjLmNtZFBLAQIUABQAAAAIAPazJlBqiU91HQIAAAYFAAAlAAAAAAAAAAAAAAC2 + gU/RAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlUEsBAhQAFAAAAAgA9rMm + UDgr1xphAAAAwQAAAB0AAAAAAAAAAAAAAP+Br9MAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAu + Y21kUEsBAhQAFAAAAAgA9rMmUKHoB0OKAgAAQwYAACsAAAAAAAAAAAAAAP+BS9QAAFBvc3REZXBs + b3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWRQSwECFAAUAAAACAD2syZQ58hJBQgD AAAyBwAAKAAAAAAAAAAAAAAA/4Ee1wAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVS - ZXBvLmNtZFBLAQIUABQAAAAIANB9e08ABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 - RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAADQfXtPAAAA + ZXBvLmNtZFBLAQIUABQAAAAIAPazJlAABermvwAAABwBAAAqAAAAAAAAAAAAAAC2gWzaAABQb3N0 + RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpzb24udGVtcGxhdGVQSwECFAAUAAAAAAD2syZQAAAA AAAAAAAAAAAAGwAAAAAAAAAAABAA/0Fz2wAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvUEsB - AhQAFAAAAAgA0H17TwAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi - bGlzaFByb2ZpbGVzL2NsaTZnNjZuZm12Zm11My1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ + AhQAFAAAAAgA9rMmUAAAAAACAAAAAAAAADwAAAAAAAAAAAAAALaBrNsAAFByb3BlcnRpZXMvUHVi + bGlzaFByb2ZpbGVzL2NsaWdtaXZqMzd3eGF4eC1XZWItRGVwbG95LnB1YnhtbFBLBQYAAAAAGQAZ ANAGAAAI3AAAAAA= headers: Accept: @@ -4707,149 +4998,17 @@ interactions: content-length: - '0' date: - - Wed, 27 Nov 2019 23:46:36 GMT - expires: - - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-11-27_23-46-36Z - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment - response: - body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' - headers: - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 23:46:39 GMT - expires: - - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment - response: - body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' - headers: - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 23:46:42 GMT - expires: - - '-1' - location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net - x-aspnet-version: - - 4.0.30319 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python-requests/2.22.0 - method: GET - uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment - response: - body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' - headers: - cache-control: - - no-cache - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 27 Nov 2019 23:46:44 GMT + - Mon, 06 Jan 2020 14:32:00 GMT expires: - '-1' location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest + - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2020-01-06_14-32-01Z pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4872,9 +5031,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4883,7 +5042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:47 GMT + - Mon, 06 Jan 2020 14:32:04 GMT expires: - '-1' location: @@ -4893,7 +5052,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4916,9 +5075,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4927,7 +5086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:49 GMT + - Mon, 06 Jan 2020 14:32:08 GMT expires: - '-1' location: @@ -4937,7 +5096,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4960,9 +5119,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4971,7 +5130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:52 GMT + - Mon, 06 Jan 2020 14:32:11 GMT expires: - '-1' location: @@ -4981,7 +5140,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5004,9 +5163,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5015,7 +5174,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:54 GMT + - Mon, 06 Jan 2020 14:32:16 GMT expires: - '-1' location: @@ -5025,7 +5184,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5048,9 +5207,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5059,7 +5218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:46:57 GMT + - Mon, 06 Jan 2020 14:32:21 GMT expires: - '-1' location: @@ -5069,7 +5228,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5092,9 +5251,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5103,7 +5262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:47:00 GMT + - Mon, 06 Jan 2020 14:32:23 GMT expires: - '-1' location: @@ -5113,7 +5272,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5136,9 +5295,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5147,7 +5306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:47:01 GMT + - Mon, 06 Jan 2020 14:32:28 GMT expires: - '-1' location: @@ -5157,7 +5316,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5180,9 +5339,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5191,7 +5350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:47:05 GMT + - Mon, 06 Jan 2020 14:32:32 GMT expires: - '-1' location: @@ -5201,7 +5360,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5224,9 +5383,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5235,7 +5394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:47:07 GMT + - Mon, 06 Jan 2020 14:32:36 GMT expires: - '-1' location: @@ -5245,7 +5404,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5268,9 +5427,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":1,"status_text":"Building - and Deploying ''2c69e354ada54025aa764efec2eeccbd''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":1,"status_text":"Building + and Deploying ''b12fc52718d846deaa58a2c8f55e8172''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5279,7 +5438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:47:13 GMT + - Mon, 06 Jan 2020 14:32:40 GMT expires: - '-1' location: @@ -5289,7 +5448,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5312,8 +5471,8 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"2c69e354ada54025aa764efec2eeccbd","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"","received_time":"2019-11-27T23:46:37.2876856Z","start_time":"2019-11-27T23:46:37.4130766Z","end_time":"2019-11-27T23:47:14.6460134Z","last_success_end_time":"2019-11-27T23:47:14.6460134Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' + string: '{"id":"b12fc52718d846deaa58a2c8f55e8172","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-01-06T14:32:02.1095751Z","start_time":"2020-01-06T14:32:02.2814773Z","end_time":"2020-01-06T14:32:42.8299435Z","last_success_end_time":"2020-01-06T14:32:42.8299435Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5322,7 +5481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:47:15 GMT + - Mon, 06 Jan 2020 14:32:43 GMT expires: - '-1' pragma: @@ -5330,7 +5489,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=659ce7cc6fa98a343101b9e6addc799f3d380b701647e923db636f32eb532342;Path=/;HttpOnly;Domain=cli6g66nfmvfmu3.scm.azurewebsites.net + - ARRAffinity=d4f9bc249b2788177eabf3d4a0a568f2679532f54238aa97ba92d4df6b8af8be;Path=/;HttpOnly;Domain=cligmivj37wxaxx.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml index 5fedb81d92e..95587d09314 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_publish_remove_node_iis_files_if_not_already_local.yaml @@ -11,8 +11,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -68,7 +68,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:57 GMT + - Mon, 06 Jan 2020 14:22:31 GMT expires: - '-1' pragma: @@ -100,30 +100,28 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:58 GMT + - Mon, 06 Jan 2020 14:22:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -152,22 +150,20 @@ interactions: uri: https://dev.botframework.com/api/misc/bottemplateroot response: body: - string: '"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/"' + string: '"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/"' headers: cache-control: - no-cache content-length: - - '83' + - '89' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:59 GMT + - Mon, 06 Jan 2020 14:22:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000 vary: @@ -224,9 +220,9 @@ interactions: "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "17df2026-8c1d-426b-9044-9c42c2880ba4"}, "appSecret": {"value": "1d03d67c-7528-4a7f-98bb-250a9cfb467d"}, + "834fbaca-618f-4f14-8cf2-bdc70bfb96d4"}, "appSecret": {"value": "4ddf099d-b8c3-433e-9124-fcabb1b0fd81"}, "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, - "zipUrl": {"value": "https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"}, + "zipUrl": {"value": "https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"}, "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": {"value": "centralus"}, "botId": {"value": "cli000002"}}, "mode": "Incremental"}}''' headers: @@ -239,32 +235,32 @@ interactions: Connection: - keep-alive Content-Length: - - '4600' + - '4606' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"17df2026-8c1d-426b-9044-9c42c2880ba4"},"appSecret":{"type":"String","value":"1d03d67c-7528-4a7f-98bb-250a9cfb467d"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-28T00:03:59.7126381Z","duration":"PT0.3389789S","correlationId":"1ce03eae-9e71-4d2f-9db1-7d6486cc1054","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"834fbaca-618f-4f14-8cf2-bdc70bfb96d4"},"appSecret":{"type":"String","value":"4ddf099d-b8c3-433e-9124-fcabb1b0fd81"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:22:37.3889355Z","duration":"PT2.6904444S","correlationId":"fd27e0ca-4b6d-4e28-b8a3-d04ff3f1f426","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267074461039853?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232863307791572?api-version=2019-07-01 cache-control: - no-cache content-length: - - '4121' + - '4127' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:59 GMT + - Mon, 06 Jan 2020 14:22:38 GMT expires: - '-1' pragma: @@ -274,7 +270,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -292,10 +288,53 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:23:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang --echo + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -307,7 +346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:04:29 GMT + - Mon, 06 Jan 2020 14:23:39 GMT expires: - '-1' pragma: @@ -335,10 +374,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -350,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:05:01 GMT + - Mon, 06 Jan 2020 14:24:10 GMT expires: - '-1' pragma: @@ -378,10 +417,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -393,7 +432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:05:31 GMT + - Mon, 06 Jan 2020 14:24:41 GMT expires: - '-1' pragma: @@ -421,10 +460,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -436,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:06:01 GMT + - Mon, 06 Jan 2020 14:25:11 GMT expires: - '-1' pragma: @@ -464,10 +503,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -479,7 +518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:06:32 GMT + - Mon, 06 Jan 2020 14:25:42 GMT expires: - '-1' pragma: @@ -507,10 +546,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -522,7 +561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:07:01 GMT + - Mon, 06 Jan 2020 14:26:12 GMT expires: - '-1' pragma: @@ -550,10 +589,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -565,7 +604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:07:32 GMT + - Mon, 06 Jan 2020 14:26:42 GMT expires: - '-1' pragma: @@ -593,10 +632,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -608,7 +647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:08:01 GMT + - Mon, 06 Jan 2020 14:27:12 GMT expires: - '-1' pragma: @@ -636,10 +675,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -651,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:08:32 GMT + - Mon, 06 Jan 2020 14:27:44 GMT expires: - '-1' pragma: @@ -679,10 +718,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -694,7 +733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:09:02 GMT + - Mon, 06 Jan 2020 14:28:14 GMT expires: - '-1' pragma: @@ -722,10 +761,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -737,7 +776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:09:32 GMT + - Mon, 06 Jan 2020 14:28:44 GMT expires: - '-1' pragma: @@ -765,10 +804,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267074461039853?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232863307791572?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -780,7 +819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:02 GMT + - Mon, 06 Jan 2020 14:29:16 GMT expires: - '-1' pragma: @@ -808,22 +847,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"17df2026-8c1d-426b-9044-9c42c2880ba4"},"appSecret":{"type":"String","value":"1d03d67c-7528-4a7f-98bb-250a9cfb467d"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/91087-5c95586b4b/bot-packages/v1.3.27/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-28T00:09:36.4648528Z","duration":"PT5M37.0911936S","correlationId":"1ce03eae-9e71-4d2f-9db1-7d6486cc1054","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"834fbaca-618f-4f14-8cf2-bdc70bfb96d4"},"appSecret":{"type":"String","value":"4ddf099d-b8c3-433e-9124-fcabb1b0fd81"},"zipUrl":{"type":"String","value":"https://bot-framework.azureedge.net/static/96534-a1dc4a1100/bot-packages/v1.3.27-94858/node.js-abs-webapp-v4_echobot.zip"},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:29:13.449827Z","duration":"PT6M38.7513359S","correlationId":"fd27e0ca-4b6d-4e28-b8a3-d04ff3f1f426","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]},{"resourceType":"sites/Extensions","locations":[null]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy"}]}}' headers: cache-control: - no-cache content-length: - - '4756' + - '4761' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:02 GMT + - Mon, 06 Jan 2020 14:29:16 GMT expires: - '-1' pragma: @@ -851,15 +890,15 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang --echo User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5400ad63-0000-0100-0000-5ddf103f0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"17df2026-8c1d-426b-9044-9c42c2880ba4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c001cb9-0000-0100-0000-5e1344220000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"834fbaca-618f-4f14-8cf2-bdc70bfb96d4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -868,15 +907,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:03 GMT + - Mon, 06 Jan 2020 14:29:16 GMT etag: - - '"5400ad63-0000-0100-0000-5ddf103f0000"' + - '"0c001cb9-0000-0100-0000-5e1344220000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -902,15 +939,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5400ad63-0000-0100-0000-5ddf103f0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"17df2026-8c1d-426b-9044-9c42c2880ba4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c001cb9-0000-0100-0000-5e1344220000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"834fbaca-618f-4f14-8cf2-bdc70bfb96d4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -919,15 +956,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:03 GMT + - Mon, 06 Jan 2020 14:29:17 GMT etag: - - '"5400ad63-0000-0100-0000-5ddf103f0000"' + - '"0c001cb9-0000-0100-0000-5e1344220000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -955,16 +990,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"a2SZ03inWXmsd7DKMJY3SvwicinMmagMwlyAabv5MQJvyNtvxWkPy6392gsP","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:a2SZ03inWXmsd7DKMJY3SvwicinMmagMwlyAabv5MQJvyNtvxWkPy6392gsP@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"ZsxbAzdfHKNWhXr3zfl4dkiLqvYw16D1BoQrNJ4vZR41Ena5sknwZKNhmp63","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:ZsxbAzdfHKNWhXr3zfl4dkiLqvYw16D1BoQrNJ4vZR41Ena5sknwZKNhmp63@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -973,7 +1008,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:10:04 GMT + - Mon, 06 Jan 2020 14:29:18 GMT expires: - '-1' pragma: @@ -991,7 +1026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -1011,27 +1046,27 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-28T00:05:29.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6D314CB36C69210AC3584BE548225A29652156DDF582717CE754B15D46B43067","kind":"app","inboundIpAddress":"52.165.163.223","possibleInboundIpAddresses":"52.165.163.223","outboundIpAddresses":"52.165.163.223,52.165.150.79,52.165.146.251,52.165.149.251,40.69.173.193","possibleOutboundIpAddresses":"52.165.163.223,52.165.150.79,52.165.146.251,52.165.149.251,40.69.173.193","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:24:16.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F977C9ED19B6D6B251E2FC0FC21E69D65872727C6A67E2FA4F3174DE1FBB7A91","kind":"app","inboundIpAddress":"168.61.152.29","possibleInboundIpAddresses":"168.61.152.29","outboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","possibleOutboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3185' + - '3155' content-type: - application/json date: - - Thu, 28 Nov 2019 00:10:04 GMT + - Mon, 06 Jan 2020 14:29:20 GMT etag: - - '"1D5A57F8B2E61C0"' + - '"1D5C49CF9D18DA0"' expires: - '-1' pragma: @@ -1079,7 +1114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:07 GMT + - Mon, 06 Jan 2020 14:29:25 GMT expires: - '-1' pragma: @@ -1087,7 +1122,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -1096,7 +1131,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"command": "PostDeployScripts\\prepareSrc.cmd a2SZ03inWXmsd7DKMJY3SvwicinMmagMwlyAabv5MQJvyNtvxWkPy6392gsP", + body: '{"command": "PostDeployScripts\\prepareSrc.cmd ZsxbAzdfHKNWhXr3zfl4dkiLqvYw16D1BoQrNJ4vZR41Ena5sknwZKNhmp63", "dir": "site\\wwwroot"}' headers: Accept: @@ -1116,7 +1151,7 @@ interactions: response: body: string: '{"Output":"file:///D/home/site/srcRepo\r\nInitialized empty Git repository - in D:/home/site/wwwroot/.git/\r\n[master (root-commit) 77c68ad] prepare to + in D:/home/site/wwwroot/.git/\r\n[master (root-commit) 685cbaf] prepare to download source\r\n 19 files changed, 5738 insertions(+)\r\n create mode 100644 .deployment\r\n create mode 100644 .eslintrc.js\r\n create mode 100644 .gitignore\r\n create mode 100644 PostDeployScripts/githubProject.json.template\r\n create @@ -1144,7 +1179,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:26 GMT + - Mon, 06 Jan 2020 14:29:47 GMT expires: - '-1' pragma: @@ -1152,7 +1187,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -1180,13 +1215,13 @@ interactions: response: body: string: !!binary | - UEsDBAoAAAAAAEoBfE+ZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu - ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgASgF8T1stvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 + UEsDBAoAAAAAALVzJlCZqxjsHgAAAB4AAAALAAAALmRlcGxveW1lbnRbY29uZmlnXQ0KY29tbWFu + ZCA9IGRlcGxveS5jbWRQSwMEFAAAAAgAtXMmUFstvC/CAAAAeQEAAAwAAAAuZXNsaW50cmMuanN9 kEEOgjAQRfcm3qHpmhpjXGlceA7jYqSjaUKnZNoKhHB3qUAAF3bX//5MXmudjgXusC4dBy8uot1u RH8k1gFJe3kS0gcgDaxlNjLuRxJp023IvrlHa/r4dsiEhKKCxst7tuCGNFIYG8cVIqcYQ2RSUIFJ nf0S+xJyVA98Okb1jJQH40iVwEjDusl7XggWdbInfCOP6jMGctRYF/2fim8ovzK7qu9M75k73co/ - oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAABKAXxPGI8ybh8AAAAfAAAACgAAAC5naXRp - Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIAEoBfE82YHQO3AEA + oC0LCKjyyEWjkq+h1+9nDAPddtOdP1BLAwQKAAAAAAC1cyZQGI8ybh8AAAAfAAAACgAAAC5naXRp + Z25vcmVub2RlX21vZHVsZXMvDQoqLmpzLm1hcA0KLmVudg0KUEsDBBQAAAAIALVzJlA2YHQO3AEA AHYEAAAGAAAAYm90LmpzxVTBbtswDL0HyD+wwAA76CLvPM8D0mFAByyn7TIMA6rITCxMljyJbmsE /vcxit3ESw69jQfDJh8fH0nJWQafXNN5vasIUrWAtVbeBbcl9vvGeUnaWQErYyCCAngM6B+xFPMZ Z3/VCm3AElpbogeqENZfvo9uxsxnytlAsIeVIv2oqbuXtjSM7aFgsj+t9pgmG0ebVhvmSBZ5zDIy @@ -1195,7 +1230,7 @@ interactions: j8JPJp+kJhhgIvAAxvbThx+uhSB1Ccmb/QtkFCAOX9AnD4fGB85T+3cdKGmMtrtYmQfWMRmvq/XI UmVsL4aARz9OWvPmWyuuKIzQyYz7w8eV9usN+rAqSyxfPYPj4anPUqG47Pc8nk8Jts5DapDnaIlT 3+Xx5cOEUhi0O6pyuL3l4PEA/WN6C+l5yk8G/hI8/5viih6PSjcaLTFiQvfK9Sb3aIyLR+sJjXI1 - 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgASgF8T3ohM0mMBAAA + 3vC1uKTpp67+f+16KN4ftl67sjUo8Jn/HhTEeIOL8S4z/C9QSwMEFAAAAAgAtXMmUHohM0mMBAAA 7gwAAAoAAABkZXBsb3kuY21kzVZbj9JAFH4n4T8cmjRRI3XXS0xWMRIYFOUm7a6akDTddoBxy0xt p4v44G/3zLSlZYsbfNJ96Jaey3znzHcub9kSDNPujV1n3u0Rd0SuyMg0YEI+gfHcgLfUXwsQy2Wz 0WxcXED76J8WfbzsX0KfRqHYbSiXYPsxi6QWXdE4YYJfwLl1Zp2/vNeTFs5iGtPvKUuYpIn+cker @@ -1216,9 +1251,9 @@ interactions: 4HiWjt5BK6d2az+b2u0oFkGqm/tpseOpIlIz43+hfQaOB3l283DBF5sN0htikUqGI0SuPQlbhjFn S3OKv9aUF2FV0lQucPoNVMbcjvkov1dT/zabDb2cl8kqKuDMyE4YeEwtm/QHkz3kQKeq+riA19l7 U3rw5PpgBdYh5QAxwhyT9t7NkcPaS0D4amPFw4I0VuW8pdegJmO1ngtWqnNwZyXKeERvaVgVDHD7 - LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAAEoBfE89 + LWZ9tpsrCHWbEu65UqjZNhsPMn4g6hr0AeMsUbt2kvo+TZJlissN4vsNUEsDBAoAAAAAALVzJlA9 suZSSAAAAEgAAAALAAAAaWlzbm9kZS55bWxub2RlUHJvY2Vzc0NvbW1hbmRMaW5lOiAiRDpcUHJv - Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgASgF8T6IT + Z3JhbSBGaWxlcyAoeDg2KVxub2RlanNcMTAuMTQuMVxub2RlLmV4ZSJQSwMEFAAAAAgAtXMmUKIT 5UHvAwAASgkAAAgAAABpbmRleC5qc41VTY/TMBC9I/EfRggpWSnrHjgARSAVVKAS0BUbcQG06ybT xmxiB9vZUJb+d8aOk6bQIqI9bO03b2befHgygVeq3mqxKSzE2Rm8F5lWRq0tnetaaW6FkgxmZQke ZECjQX2LObt/j6zfiQylwRwamaMGWyC8X6T9MWHu38uUNBZyZVHewnOy/94IjXHUnURnz3pIzW0x @@ -1237,7 +1272,7 @@ interactions: nqLu8JgCFfUg3yDVws95Y/BkTkM6UUpIioPKnamGAEQkQ+D0t2o2jLbCf9AofyFk4/3rRvq+6FZP TdvAIKzFDxdY92bSXsqQbHLsHOwOt44DHn2vqi1Vr9sX/csVD/P1zi9hP1yC8qmoPf2bhYbabngM amVsHE14LSZBMhPRtidg4h6S8Yj1kxkmvM93wCZ/TOnYNhTnI02k0+SPbNxtL2rIipFqPVGv+W5Y - yb8BUEsDBBQAAAAIAEoBfE8IIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 + yb8BUEsDBBQAAAAIALVzJlAIIwJWda4AAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sHdmyqsr1 PVX5h1QeY7jMoKlKVUDBERVw5CFVzCKjDCKmkm9P47Ddk0F0Z6zce86xG9tedK/u1avX+Jdf/+o3 4L/fBqpv/vYPv/mtqW9CLUx/+/vL870ZJ04YlF+hvyC/IG9feKHuWo5nLt4aoNevYnOXObGZgGdp nJnXx4YZmYFhBrpz+uoC+fTVn9RjFpuwn0DgZym0/fT91zfBfqEub3JrAH4aenvTKFts0jRK/gDD @@ -2021,7 +2056,7 @@ interactions: WaNcRd42T7XIp4U9IwN85NG6XEGstQRw5sWM329hl5Q5eWuTcjTcrj23BATJOWxlNq+spB/q5T4c Gpstz/egkVdk25ohm/EAgcKRpBWz/AwvqBq9eprHBnbMRJJe3ebFQQ0CN7+bqvYJ54x3ChD4cdfR SUPFtpOVKi1ZfBgu5O0+IieIWUf6aoO5GIOhYoVyMSkAObIbk+FmOM/5wSQZC7NsxC79nBH7DsoT - 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgASgF8T7YeHpF/AQAAiQMAAAwAAABwYWNr + 4iLeziMk0frrWG6wH0El59vL5fTf3wFQSwMEFAAAAAgAtXMmULYeHpF/AQAAiQMAAAwAAABwYWNr YWdlLmpzb259UrFOwzAQ3ZH4BysDE3UJilDpWMHAwMZYIaXOtTmU+CzbKa0QfDtnp0lIaRtliO69 e+/eXb6urwQ/ic5rSOYiAVXSinxye6hvwTokHaBU3sm7HijAKYvGH8AFebFosCrAim0mgoxYcc3l tamg78obX5INDa+oLDlaD1YVKtAOIvjy1pfrHKMD6gJ28sP1QOvvGDuEaKs+tz7wNRUg5HRo+0P6 @@ -2029,13 +2064,13 @@ interactions: nuz+KIXfm7iIDfqRZ2OrUC69N24+nTJcNiupqO6Uh/MY4ERaIRxviM+yai8VpH4y+SDTkUlBHvQ2 gO8zeT/cvB2Zw+F6H1tnMmP0n/P26Zx5t8mo/cDGg/YAThTpNW4mfEld5LaI5DST6Wm2qZoN6gnW hmwrfC9TnvsCN1y9VeU/+qKqsVSja8mZZOHz3PG8vJgRuf/V4uJSmT7KrNvc9RW/v1BLAwQUAAAA - AABKAXxPAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAABMAXxPAAAA - AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaXN2cHc2bm56ZHV4dy5QdWJsaXNoU2V0 - dGluZ3NQSwMEFAAAAAgASgF8T+DPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo + AAC1cyZQAAAAAAAAAAAAAAAAEgAAAFBvc3REZXBsb3lTY3JpcHRzL1BLAwQKAAAAAAC2cyZQAAAA + AAAAAAAAAAAAMQAAAFBvc3REZXBsb3lTY3JpcHRzL2NsaWFlYTdoNTV2eGZzaC5QdWJsaXNoU2V0 + dGluZ3NQSwMEFAAAAAgAtXMmUODPebiRAAAA3AAAAC0AAABQb3N0RGVwbG95U2NyaXB0cy9naXRo dWJQcm9qZWN0Lmpzb24udGVtcGxhdGVtjDEPgjAQRncT/sOls5GdDQyDgy6YOJJaTjgV2vSumEj4 7yrpYKLr+977pmQFoAbdo8pATaeyqKvdsawP+b6c1XpZG2TjyQnZ4Y8E+TN4hMIKVOhHMghb22Bs O9uj0+3y3ok4ztK0JenCeWNsHyXnadTycS76zhhLzTUxB+Q3Fx++sPP2ikZ+hwfdKMJkNb8AUEsD - BBQAAAAIAEoBfE+o88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n + BBQAAAAIALVzJlCo88lWlAIAAHUHAAAiAAAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5n cy5qc51VXW/TMBR9n7T/YO2ljgjeuie0EiQQBW0PbaVU4qGNUJc4wyVzSux0rar8d67tOHESFQZ+ mBbfc88998O3cc6FRKlAASror5IVFI9SMfImlxfGtNvIH65RfTvmzW4XUikZf1oYoLKTgoo82wOa XANAGIAgW5Fzx5fy/RknAiYNtNCawsjcJGH9+YVlFHcl+Ja2E0fFKPKYCqGoweLYZptnqojnj1sa @@ -2047,7 +2082,7 @@ interactions: 01t7Uwq4r9zmvP4Rqrxs1tAsemBCCtWqnofXIJ3wD+F8RiAfQbHb6KF323KVQp3rucBW2jCiO3QW 1idsXlM1KAoTszyhD+GiyNUmwSZA69KV0d95jAkO7uT4nEEaA/J/eVS2bZ3qD9QNp1ctjP4mtFy2 DoMHpZz+uH+MX6/QK1gcFoPeIJhU+Gtj6UUUuZMLSytyFKhSvhRM0mYebO5alR3/NfzawFxTHucJ - 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACABKAXxPNCH6uBsD + 8N7ZKamapiKaCdpKHBL3i2xm0mxOlh5xuwl5mWU+uv1LQN3W31BLAwQUAAAACAC1cyZQNCH6uBsD AABSCAAAIAAAAFBvc3REZXBsb3lTY3JpcHRzL3ByZXBhcmVTcmMuY21kpVVda9swFH03+D9cDKZb me11L4OAR1uaroG2MXW6vgSCY8uJW8sSkkLaffS378qO4rj5WGEkJNLV1dE5R9LVKUnnDFie25Yk qmRpUtpW3B8BT6RcMpGF7kkTIM+cCRUTpYpqJkP3SxMWhLPbhJJQivQO2230XpRhXpSkFwSBezW8 @@ -2062,7 +2097,7 @@ interactions: B9d6wrss2II5i+OH4d2Fnm/KZePoBuN/qTIF9b/38Z3UtonsgPOjLjnbara/LcHd16CuxAXu/9u4 A2EIjgMzhoXiZ8EPX54V+FEDAgnnIFdIR6u72juLogm+DqPB7ffYkNKfHqKv72xdRedErwj6ktjW +gHCVb9iGH8SSPbw8DFhz9D4uK1QJKkWvC5BUi3yfLv+Hawv2068ST9QqNqncmNfqqx+vnW7trvX - H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIAEoBfE9qiU91 + H17qTscyY3G2oPytwRXLyCYfI2NHDaJEzMj66D5KhH1GH4Kpbf0FUEsDBBQAAAAIALVzJlBqiU91 GwIAAAYFAAAlAAAAUG9zdERlcGxveVNjcmlwdHMvcHVibGlzaC5qcy50ZW1wbGF0ZXVUXW/aMBR9 r8R/8NDUJBJ10LansE5iHZP6sK4qlSrtpTLJZVgY2/NHUYv477ONHULYeCG559xzzz3YvBCF3qj8 LlgDCl0jBX8sVZBnrni1DNWsmAwuPE8Ss+pS/HsLLnUXWuoEhBpo00VjKVAiSQiTPIQ5WIEW7MWR @@ -2073,10 +2108,10 @@ interactions: +/3Xvij8Fxbcnw8tBdeQjVDKJve1IgrTJQrvWBtirL4RDaAv1+jDeIwuL1Ef+Yw+jsdFMhXCtJxR vm4jnCQoxZ5zy1gq7xEwDf8b+ilo9wUOdifd/Y7rgVJCdXdzhahxVAjF0Ohl9ifnRNoFo3rVOyXH e3xyJeKSZ+OOUb7rFtA/TuFpEgdm32tv2Wg5OT2ffT65dj+5YICZ+J1nvWuUVg4XORnpN4Zc3X8P - oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIAEoBfE84K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv + oQwaZERqQj0xF300HOy6gP8CUEsDBBQAAAAIALVzJlA4K9caYgAAAMEAAAAdAAAAUG9zdERlcGxv eVNjcmlwdHMvcnVuR3VscC5jbWR9TjkOgCAQ7En4w35A/AGx8Bk2BBY1AZbANv5eMSY06kw3V2ZC uxGQ91JU5EDWBCkab72gpeLAYQ50REwMvEesbGKWwhlGGBm0BqWWnlGBVimu4Kf7rA+v+GvM/Yij - hO3nCVBLAwQUAAAACABKAXxPoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw + hO3nCVBLAwQUAAAACAC1cyZQoegHQ4YCAABDBgAAKwAAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVw R2l0aHViUmVtb3RlUmVwby5jbWS1VcFu2zAMvQfIPxAGhKwH29h2C5Ah6RZgPbQNmqwb0BSDKtON W9nUJBlB0fXfJ1lx7KDNbs1Bliny8fGJjKcoNgSU58OBQStJcDkcaCwhfrdfwHfZanVt6ApLsniF iuBGN/sfBvUt3CjUhiouZ0KgMSt6xMpbNT1c8BKfSdnCH7/cBjyhkVsEXmWgSNXSv1wvL+G+sKA9 @@ -2088,7 +2123,7 @@ interactions: cxmIxt8h+kqVxcrGK8dnDFwpWQjuxyv13hHENRxTB+IMoumbmXaxv2Bx6fp5j6AlS/1opU1P78au /B9ZN8/ZcBCeu2H3U7Pv9CDma3mDb1EV1k9WKNrvnOngVVCVF/fNvCfNJEX9aqMjnoobsyXtyu/k OOqMJS8kRLUt5PSObK5dGhf86LuqH8MzV8IBRlm6R1xCpJxeXKMrPPx3gqFaC/RprCbZR/FSANs1 - OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIAEoBfE/nyEkF + OIOSG4u603GnoUReORgfYGyd568lDJD+dmINcQ6+zzsYrLLme/EPUEsDBBQAAAAIALVzJlDnyEkF /wIAADIHAAAoAAAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNtZLVVWY/T MBB+r9T/MKpkLUgk5ZRQpcJyVIIHoNqWQ2LRyjiTrsHJWLazFeL47YztdNOl7AMPVFViz3g+z3xz 5BjVOQHV9XjkMRhS0oxHDhso/tsv4/NtnX3n6QQbCniCluDjxW77Ka3fenSvZdPvlug8tdI8UQq9 @@ -2103,16 +2138,16 @@ interactions: bRojdx5wXIrayu+mSuQuuZF4JA4fA95ijfbAfwlbbSrYdNySOaKMxkhMM9lqPMrvfpbFDr7sx0z9 YTLyWd3qEIdcho0rFl3ZsqO13qTxU6Z+n+wX1eSak1Z6vyXHbA5Vd+1hbKQ2MOmCNsc8D2vH17Dx 1zgL921kxSFcwWgafhUNTCw3lHTIgedPBXjqnMJ4TXBk9lEiFSD6BhTQSB/QDTz2HBqULcNEAx7M - dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIAEoBfE8ABermvwAAABwBAAAqAAAAUG9zdERl + dX1IYQ/JaS8cFDWUfHaAwbZKn8ffUEsDBBQAAAAIALVzJlAABermvwAAABwBAAAqAAAAUG9zdERl cGxveVNjcmlwdHMvdnNvUHJvamVjdC5qc29uLnRlbXBsYXRlbY7NCoMwEITvhb5DyLlCf2Kb9qYi xUN7UehRYlwhoCYkUWjFd6+/h0Ivu7Az88122w1CuGYV4BvC3Sv00zhKwvTpPcIe7yY1B8O1UFbI +o8JeZ9GA/KlRTHoVnBAgcxhyXKmWCZKYQWYITzVDecWtBlwXNZWy3IVJsnIRnMIZiV5q+mxu7B4 dvS7BaG05GBMApUqmYUfhl2OYzzKR8A5uxzJdU8dKA7EIS4vHEoK6lzONHNPlOSMuGvDsMbRfwFQ - SwMEFAAAAAAASwF8TwAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAABLAXxPAAAA - AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAABLAXxPAAAA - AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaXN2cHc2bm56ZHV4dy1X - ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAABLAXxPAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k - UEsDBBQAAAAIAEoBfE/iRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d + SwMEFAAAAAAAtXMmUAAAAAAAAAAAAAAAAAsAAABQcm9wZXJ0aWVzL1BLAwQUAAAAAAC1cyZQAAAA + AAAAAAAAAAAAGwAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAwQKAAAAAAC1cyZQAAAA + AAAAAAAAAAAAPAAAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWFlYTdoNTV2eGZzaC1X + ZWItRGVwbG95LnB1YnhtbFBLAwQKAAAAAAC2cyZQAAAAAAAAAAAAAAAACwAAAHB1Ymxpc2guY21k + UEsDBBQAAAAIALVzJlDiRs24/gMAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbtswDH0v0H8g2pcFmJ1d sQuwDbsCBboLdnkYigFVZCZWI0ueKCfIvn6kFNtp17VF+9AkFHl4SPHQPoT3uvbwxkeI2LRWRdzf 29/7XhuCGRtrxZ+IDnRAPqugI+MWcCIBH4JqcO3D8tedOsaWnk+nFa5KDpv3J6X2zeQumAhU+zUB /4Pot2CggAznxJQp1iqC0hrbSGBc20WYB9+wHTkpBlCuAmSySII3U3pZCtXDQ/gSMODvzpCJSPt7 @@ -2130,7 +2165,7 @@ interactions: qLyXc6XmyMUN++TIxeCrXOYt8vcZPI+4JC/MDt4t6AztuwWfa9Pdelp2yL49PrqSFj8AUvh5Omwt 5CWBBqzx4TTCtel3mULG+XjNvVyZuJFng0YSRV/JAF3R0TXjor2TN4ZCbbGLEfvaLh4rt+hY0fDD MRTvPidS2K6a4x9H327MTvuFM0wA+yQ0tfw6Ms153tZKtizJtpYZ6febD/203DjRhTb05V+vl6/y - hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgASgF8T0bNGjh0BAAA + hJtvxkTr9brkx+EZpRwtv01xJ6Yhu+WYykd+Kl8Xkr044i9QSwMEFAAAAAgAtXMmUEbNGjh0BAAA +QkAAAoAAAB3ZWIuY29uZmlntVbbbhMxEH2v1H8Y9gUJsTEFHlBIihCkUiQo0BQQ4ibv2skavLbx JRcQ/87Ye0tKK/FCVDWx13M5Z854dvJkW0tYc+uEVtPsZHQvA65KzYRaTbPgl/mj7Mnp8dHkVp4f H0H8XFbCQanVUqyCpR7tYCkkB9y1/EcQljMQSxDCKc3SdnC45TXYoCDtGatL7hx3UPBKKNZ6ns8X @@ -2151,53 +2186,53 @@ interactions: 3iBR7LE3pd7ElTZJOuOBkDuwSQ3OovjcGKmrRV5qqRX+NNTS6FViqqCXsfHbqx8DSYkl7azTxVji lbuKB3Tkw1O7PyH2QiZ9fOVqPW7dpFcDQ1H3TYem0YDqOn/1fPZ1dv4O8KywWsWSwZpaEYfWnsPh Dp418wzyjiR3cLMVAauLd3drgLvCdTOwf6uABef/5dUikURhGaTsKO0q0oTO872qT9owBwWaZoO7 - x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAASgF8T5mrGOweAAAAHgAAAAsAJAAAAAAAAAAg - AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgAFC/9N4Cl1QEUL/03gKXVARQv/TeApdUBUEsB - Aj8AFAAAAAgASgF8T1stvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA - IAAAAAAAAQAYABQv/TeApdUBFC/9N4Cl1QEUL/03gKXVAVBLAQI/AAoAAAAAAEoBfE8YjzJuHwAA - AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgA6o//N4Cl1QEUL/03 - gKXVARQv/TeApdUBUEsBAj8AFAAAAAgASgF8TzZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA - AGJvdC5qcwoAIAAAAAAAAQAYADHeDTiApdUB8HsLOICl1QHwews4gKXVAVBLAQI/ABQAAAAIAEoB - fE96ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgAMd4N - OICl1QEx3g04gKXVATHeDTiApdUBUEsBAj8ACgAAAAAASgF8Tz2y5lJIAAAASAAAAAsAJAAAAAAA - AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgAK2UQOICl1QEx3g04gKXVATHeDTiApdUB - UEsBAj8AFAAAAAgASgF8T6IT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg - AAAAAAABABgAK2UQOICl1QErZRA4gKXVAStlEDiApdUBUEsBAj8AFAAAAAgASgF8TwgjAlZ1rgAA - Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgAHgUVOICl - 1QErZRA4gKXVAStlEDiApdUBUEsBAj8AFAAAAAgASgF8T7YeHpF/AQAAiQMAAAwAJAAAAAAAAAAg - AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYADpqFziApdUBHgUVOICl1QEeBRU4gKXVAVBL - AQI/ABQAAAAAAEoBfE8AAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny - aXB0cy8KACAAAAAAAAEAGACHYAk4gKXVAYdgCTiApdUB6o//N4Cl1QFQSwECPwAKAAAAAABMAXxP - AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpc3ZwdzZu - bnpkdXh3LlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYAGlVyTmApdUBaVXJOYCl1QFpVck5gKXV - AVBLAQI/ABQAAAAIAEoBfE/gz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 - U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGADqj/83gKXVAeqP - /zeApdUB6o//N4Cl1QFQSwECPwAUAAAACABKAXxPqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc - vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYAObyATiApdUB - 6o//N4Cl1QHqj/83gKXVAVBLAQI/ABQAAAAIAEoBfE80Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA - ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYAObyATiApdUB - 5vIBOICl1QHm8gE4gKXVAVBLAQI/ABQAAAAIAEoBfE9qiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA - AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgA5vIB - OICl1QHm8gE4gKXVAebyATiApdUBUEsBAj8AFAAAAAgASgF8Tzgr1xpiAAAAwQAAAB0AJAAAAAAA - AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgAUtwEOICl - 1QFS3AQ4gKXVAVLcBDiApdUBUEsBAj8AFAAAAAgASgF8T6HoB0OGAgAAQwYAACsAJAAAAAAAAAAg + x3diU5PT1mpCrnk/mRwmc/oHUEsBAj8ACgAAAAAAtXMmUJmrGOweAAAAHgAAAAsAJAAAAAAAAAAg + AAAAAAAAAC5kZXBsb3ltZW50CgAgAAAAAAABABgAeozxup3E1QF6jPG6ncTVAXqM8bqdxNUBUEsB + Aj8AFAAAAAgAtXMmUFstvC/CAAAAeQEAAAwAJAAAAAAAAAAgAAAARwAAAC5lc2xpbnRyYy5qcwoA + IAAAAAAAAQAYAHqM8bqdxNUBeozxup3E1QF6jPG6ncTVAVBLAQI/AAoAAAAAALVzJlAYjzJuHwAA + AB8AAAAKACQAAAAAAAAAIAAAADMBAAAuZ2l0aWdub3JlCgAgAAAAAAABABgA7u/zup3E1QHu7/O6 + ncTVAe7v87qdxNUBUEsBAj8AFAAAAAgAtXMmUDZgdA7cAQAAdgQAAAYAJAAAAAAAAAAgAAAAegEA + AGJvdC5qcwoAIAAAAAAAAQAYAPTtErudxNUBEYsQu53E1QERixC7ncTVAVBLAQI/ABQAAAAIALVz + JlB6ITNJjAQAAO4MAAAKACQAAAAAAAAAIAAAAHoDAABkZXBsb3kuY21kCgAgAAAAAAABABgAXtke + u53E1QFe2R67ncTVAV7ZHrudxNUBUEsBAj8ACgAAAAAAtXMmUD2y5lJIAAAASAAAAAsAJAAAAAAA + AAAgAAAALggAAGlpc25vZGUueW1sCgAgAAAAAAABABgAXtkeu53E1QFe2R67ncTVAV7ZHrudxNUB + UEsBAj8AFAAAAAgAtXMmUKIT5UHvAwAASgkAAAgAJAAAAAAAAAAgAAAAnwgAAGluZGV4LmpzCgAg + AAAAAAABABgAICMmu53E1QEgIya7ncTVASAjJrudxNUBUEsBAj8AFAAAAAgAtXMmUAgjAlZ1rgAA + Xl0DABEAJAAAAAAAAAAgAAAAtAwAAHBhY2thZ2UtbG9jay5qc29uCgAgAAAAAAABABgAVU8tu53E + 1QG/5yq7ncTVAb/nKrudxNUBUEsBAj8AFAAAAAgAtXMmULYeHpF/AQAAiQMAAAwAJAAAAAAAAAAg + AAAAWLsAAHBhY2thZ2UuanNvbgoAIAAAAAAAAQAYAFVPLbudxNUBVU8tu53E1QFVTy27ncTVAVBL + AQI/ABQAAAAAALVzJlAAAAAAAAAAAAAAAAASACQAAAAAAAAAEAAAAAG9AABQb3N0RGVwbG95U2Ny + aXB0cy8KACAAAAAAAAEAGAARixC7ncTVARGLELudxNUB7u/zup3E1QFQSwECPwAKAAAAAAC2cyZQ + AAAAAAAAAAAAAAAAMQAkAAAAAAAAACAAAAAxvQAAUG9zdERlcGxveVNjcmlwdHMvY2xpYWVhN2g1 + NXZ4ZnNoLlB1Ymxpc2hTZXR0aW5ncwoAIAAAAAAAAQAYAPcC7rydxNUB9wLuvJ3E1QH3Au68ncTV + AVBLAQI/ABQAAAAIALVzJlDgz3m4kQAAANwAAAAtACQAAAAAAAAAIAAAAIC9AABQb3N0RGVwbG95 + U2NyaXB0cy9naXRodWJQcm9qZWN0Lmpzb24udGVtcGxhdGUKACAAAAAAAAEAGADu7/O6ncTVAe7v + 87qdxNUB7u/zup3E1QFQSwECPwAUAAAACAC1cyZQqPPJVpQCAAB1BwAAIgAkAAAAAAAAACAAAABc + vgAAUG9zdERlcGxveVNjcmlwdHMvbWVyZ2VTZXR0aW5ncy5qcwoAIAAAAAAAAQAYAKRR9rqdxNUB + 7u/zup3E1QHu7/O6ncTVAVBLAQI/ABQAAAAIALVzJlA0Ifq4GwMAAFIIAAAgACQAAAAAAAAAIAAA + ADDBAABQb3N0RGVwbG95U2NyaXB0cy9wcmVwYXJlU3JjLmNtZAoAIAAAAAAAAQAYAKRR9rqdxNUB + pFH2up3E1QGkUfa6ncTVAVBLAQI/ABQAAAAIALVzJlBqiU91GwIAAAYFAAAlACQAAAAAAAAAIAAA + AInEAABQb3N0RGVwbG95U2NyaXB0cy9wdWJsaXNoLmpzLnRlbXBsYXRlCgAgAAAAAAABABgAIj0C + u53E1QEiPQK7ncTVASI9ArudxNUBUEsBAj8AFAAAAAgAtXMmUDgr1xpiAAAAwQAAAB0AJAAAAAAA + AAAgAAAA58YAAFBvc3REZXBsb3lTY3JpcHRzL3J1bkd1bHAuY21kCgAgAAAAAAABABgAIj0Cu53E + 1QEiPQK7ncTVASI9ArudxNUBUEsBAj8AFAAAAAgAtXMmUKHoB0OGAgAAQwYAACsAJAAAAAAAAAAg AAAAhMcAAFBvc3REZXBsb3lTY3JpcHRzL3NldHVwR2l0aHViUmVtb3RlUmVwby5jbWQKACAAAAAA - AAEAGABAtwY4gKXVAVLcBDiApdUBUtwEOICl1QFQSwECPwAUAAAACABKAXxP58hJBf8CAAAyBwAA + AAEAGADpnwS7ncTVAemfBLudxNUB6Z8Eu53E1QFQSwECPwAUAAAACAC1cyZQ58hJBf8CAAAyBwAA KAAkAAAAAAAAACAAAABTygAAUG9zdERlcGxveVNjcmlwdHMvc2V0dXBWc29SZW1vdGVSZXBvLmNt - ZAoAIAAAAAAAAQAYAEC3BjiApdUBQLcGOICl1QFAtwY4gKXVAVBLAQI/ABQAAAAIAEoBfE8ABerm + ZAoAIAAAAAAAAQAYANUoDrudxNUB1SgOu53E1QHVKA67ncTVAVBLAQI/ABQAAAAIALVzJlAABerm vwAAABwBAAAqACQAAAAAAAAAIAAAAJjNAABQb3N0RGVwbG95U2NyaXB0cy92c29Qcm9qZWN0Lmpz - b24udGVtcGxhdGUKACAAAAAAAAEAGACHYAk4gKXVAYdgCTiApdUBh2AJOICl1QFQSwECPwAUAAAA - AABLAXxPAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA - GACxasg4gKXVAbFqyDiApdUBsWrIOICl1QFQSwECPwAUAAAAAABLAXxPAAAAAAAAAAAAAAAAGwAk - AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgAkf7O - OICl1QGR/s44gKXVAbFqyDiApdUBUEsBAj8ACgAAAAAASwF8TwAAAAAAAAAAAAAAADwAJAAAAAAA - AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaXN2cHc2bm56ZHV4dy1XZWIt - RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYAJH+zjiApdUBkf7OOICl1QGR/s44gKXVAVBLAQI/AAoA - AAAAAEsBfE8AAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA - AQAYADgecTmApdUBOB5xOYCl1QE4HnE5gKXVAVBLAQI/ABQAAAAIAEoBfE/iRs24/gMAAEsKAAAJ - ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGADwews4gKXVAYdgCTiApdUBh2AJ - OICl1QFQSwECPwAUAAAACABKAXxPRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv - bmZpZwoAIAAAAAAAAQAYADpqFziApdUBOmoXOICl1QE6ahc4gKXVAVBLBQYAAAAAGQAZAFQKAABF + b24udGVtcGxhdGUKACAAAAAAAAEAGAARixC7ncTVARGLELudxNUBEYsQu53E1QFQSwECPwAUAAAA + AAC1cyZQAAAAAAAAAAAAAAAACwAkAAAAAAAAABAAAACfzgAAUHJvcGVydGllcy8KACAAAAAAAAEA + GADfUdm7ncTVAd9R2budxNUB31HZu53E1QFQSwECPwAUAAAAAAC1cyZQAAAAAAAAAAAAAAAAGwAk + AAAAAAAAABAAAADIzgAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmlsZXMvCgAgAAAAAAABABgAFnrg + u53E1QEWeuC7ncTVAd9R2budxNUBUEsBAj8ACgAAAAAAtXMmUAAAAAAAAAAAAAAAADwAJAAAAAAA + AAAgAAAAAc8AAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL2NsaWFlYTdoNTV2eGZzaC1XZWIt + RGVwbG95LnB1YnhtbAoAIAAAAAAAAQAYABZ64LudxNUBFnrgu53E1QEWeuC7ncTVAVBLAQI/AAoA + AAAAALZzJlAAAAAAAAAAAAAAAAALACQAAAAAAAAAIAAAAFvPAABwdWJsaXNoLmNtZAoAIAAAAAAA + AQAYAOkPmLydxNUB6Q+YvJ3E1QHpD5i8ncTVAVBLAQI/ABQAAAAIALVzJlDiRs24/gMAAEsKAAAJ + ACQAAAAAAAAAIAAAAITPAABSRUFETUUuTUQKACAAAAAAAAEAGAARixC7ncTVARGLELudxNUBEYsQ + u53E1QFQSwECPwAUAAAACAC1cyZQRs0aOHQEAAD5CQAACgAkAAAAAAAAACAAAACp0wAAd2ViLmNv + bmZpZwoAIAAAAAAAAQAYAFVPLbudxNUBVU8tu53E1QFVTy27ncTVAVBLBQYAAAAAGQAZAFQKAABF 2AAAAAA= headers: cache-control: @@ -2207,19 +2242,19 @@ interactions: content-type: - application/x-zip-compressed date: - - Thu, 28 Nov 2019 00:10:26 GMT + - Mon, 06 Jan 2020 14:29:48 GMT etag: - - '"fc9ee05c9773d708"' + - '"901d4ae0b492d708"' expires: - '-1' last-modified: - - Thu, 28 Nov 2019 00:10:23 GMT + - Mon, 06 Jan 2020 14:29:45 GMT pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -2243,16 +2278,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"17df2026-8c1d-426b-9044-9c42c2880ba4","MicrosoftAppPassword":"1d03d67c-7528-4a7f-98bb-250a9cfb467d"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"834fbaca-618f-4f14-8cf2-bdc70bfb96d4","MicrosoftAppPassword":"4ddf099d-b8c3-433e-9124-fcabb1b0fd81"}}' headers: cache-control: - no-cache @@ -2261,7 +2296,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:10:27 GMT + - Mon, 06 Jan 2020 14:29:51 GMT expires: - '-1' pragma: @@ -2279,7 +2314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -2299,12 +2334,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central @@ -2317,7 +2352,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:10:27 GMT + - Mon, 06 Jan 2020 14:29:53 GMT expires: - '-1' pragma: @@ -2353,15 +2388,15 @@ interactions: ParameterSetName: - -g -n --code-dir User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5400ad63-0000-0100-0000-5ddf103f0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"17df2026-8c1d-426b-9044-9c42c2880ba4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c001cb9-0000-0100-0000-5e1344220000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"834fbaca-618f-4f14-8cf2-bdc70bfb96d4","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2370,15 +2405,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:27 GMT + - Mon, 06 Jan 2020 14:29:53 GMT etag: - - '"5400ad63-0000-0100-0000-5ddf103f0000"' + - '"0c001cb9-0000-0100-0000-5e1344220000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2442,7 +2475,7 @@ interactions: content-type: - application/zip date: - - Thu, 28 Nov 2019 00:10:30 GMT + - Mon, 06 Jan 2020 14:29:56 GMT etag: - '0x8D61F4EE9617735' last-modified: @@ -2474,16 +2507,16 @@ interactions: ParameterSetName: - -g -n --code-dir User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/publishingcredentials/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/publishingcredentials/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/publishingcredentials/$cli000002","name":"cli000002","type":"Microsoft.Web/sites/publishingcredentials","location":"Central - US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"a2SZ03inWXmsd7DKMJY3SvwicinMmagMwlyAabv5MQJvyNtvxWkPy6392gsP","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:a2SZ03inWXmsd7DKMJY3SvwicinMmagMwlyAabv5MQJvyNtvxWkPy6392gsP@cli000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$cli000002","publishingPassword":"ZsxbAzdfHKNWhXr3zfl4dkiLqvYw16D1BoQrNJ4vZR41Ena5sknwZKNhmp63","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$cli000002:ZsxbAzdfHKNWhXr3zfl4dkiLqvYw16D1BoQrNJ4vZR41Ena5sknwZKNhmp63@cli000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -2492,7 +2525,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:10:30 GMT + - Mon, 06 Jan 2020 14:29:58 GMT expires: - '-1' pragma: @@ -2510,7 +2543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11996' x-powered-by: - ASP.NET status: @@ -2530,27 +2563,27 @@ interactions: ParameterSetName: - -g -n --code-dir User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","name":"cli000002","type":"Microsoft.Web/sites","kind":"app","location":"Central - US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-063.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-11-28T00:05:29.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6D314CB36C69210AC3584BE548225A29652156DDF582717CE754B15D46B43067","kind":"app","inboundIpAddress":"52.165.163.223","possibleInboundIpAddresses":"52.165.163.223","outboundIpAddresses":"52.165.163.223,52.165.150.79,52.165.146.251,52.165.149.251,40.69.173.193","possibleOutboundIpAddresses":"52.165.163.223,52.165.150.79,52.165.146.251,52.165.149.251,40.69.173.193","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-063","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli000002","state":"Running","hostNames":["cli000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli000002","repositorySiteName":"cli000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli000002.azurewebsites.net","cli000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:24:16.25","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F977C9ED19B6D6B251E2FC0FC21E69D65872727C6A67E2FA4F3174DE1FBB7A91","kind":"app","inboundIpAddress":"168.61.152.29","possibleInboundIpAddresses":"168.61.152.29","outboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","possibleOutboundIpAddresses":"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3185' + - '3155' content-type: - application/json date: - - Thu, 28 Nov 2019 00:10:30 GMT + - Mon, 06 Jan 2020 14:29:59 GMT etag: - - '"1D5A57F8B2E61C0"' + - '"1D5C49CF9D18DA0"' expires: - '-1' pragma: @@ -2600,7 +2633,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:32 GMT + - Mon, 06 Jan 2020 14:30:01 GMT expires: - '-1' pragma: @@ -2608,7 +2641,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -2620,14 +2653,14 @@ interactions: message: OK - request: body: !!binary | - UEsDBBQAAAAAAE2Be08AAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgATYF7T5mr + UEsDBBQAAAAAALmzJlAAAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAubMmUJmr GOwgAAAAHgAAAAsAAAAuZGVwbG95bWVudItOzs9Ly0yP5eVKzs/NTcxLUbBVSEktyMmv1EvOTQEA - UEsDBBQAAAAIAE2Be09bLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoR + UEsDBBQAAAAIALmzJlBbLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoR EVeKC79DXIzNKIFmUiaJtZT+u40t9LEwu9xzZriJdTpWuMNP7Th4cRFdnonhSPwEJO3lSUgfgDSw lsXEeBhJpEu3MfvlHq0Z4tuhEBKqBlov78WCG9JIYTKOK0ROMYbIpKABk5z9EvsaSlQPfDpG9YxU BuNI1cBI07putseFYFGn9oRvZFlsMJCj1rro/yi+pfLK7JrkTO+ZnX7VP6CtKwioyshVq1JfQ6/t - Z4wDfZ715y9QSwMEFAAAAAgATYF7TxiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8p - zUkt1ufl0tLLKtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAE2Be082YHQO3wEAAHYEAAAGAAAAYm90 + Z4wDfZ715y9QSwMEFAAAAAgAubMmUBiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8p + zUkt1ufl0tLLKtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIALmzJlA2YHQO3wEAAHYEAAAGAAAAYm90 LmpzxVRRa9swEH4P5D9cYWCbLvKe52WQjkEHy9P2MsaginSJxWTJk85tTfB/39mJW2cJrG+9B2Pf fffd3XeS8xw++boNZlcSpCqDtVHBR78l9ofaB0nGOwEra2EARQgYMdyjFvNZnsNXo9BF1NA4jQGo RFh/+T66GTOfKe8iwR5Wisy9ofZWOm0Z28GSyf40JmCabDxtGmOZI8mKIcvKGOGzKv2NJ8BHQqfj @@ -2636,7 +2669,7 @@ interactions: Aozjp3c/fANRGg3Jm/0TZGxA9F/QJXcHKaecPP5NC0paa9xuqMyCtUzG62p4PirlYbw+BCz9qLTh zTdOXOrwwDLRuDut+zR+tcEQV1qjfrEGh8NTTVL51JzNO40XpwRbHyC1yDo64tR3xfDy4YRSWHQ7 Kgu4vuZg9m8PvZktpNOUnwz8JVj/q+WFfgIqUxt0xIiLdP9Zb3KL1vrhaD2gVb7CqyQrzmm6U1f3 - Wrs+Fu/6rVdeNxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgATYF7T3ohM0mWBAAA7gwAAAoAAABk + Wrs+Fu/6rVdeNxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAubMmUHohM0mWBAAA7gwAAAoAAABk ZXBsb3kuY21kxVZtb+JGEP6OxH8YkCxdquAk11aVklIdIkuPHm/FTi4nIVmOvcBezK5rr0Poh/72 zq7XxhwmTT8dH8B4XvaZ2Xlm5gNbQtty+mPPnff6xBuRezKy2jAhf0L7pzZ8oMFagFgum41m4/oa OrUfLfp0d3sHtzSOxG5DuQQnSFgsteieJikT/Bqu7Ev76pdXPWnhLKEJ/StjKZM0PVY3WuiWLXfA @@ -2657,9 +2690,9 @@ interactions: rM9S7R20TGm3ytnU6cSJCDPd3N8WO54q4rDMwff+GB5SHprsmnAhEBsc+iEkIpMMR4hc+xK2DGPO l+YM/60pL8KqpGm/wOknUBnzutYP5l4t/d9qNvRyXllYDQMu2/kJA5+pZZO+MNnHGuhWVc8LeN3S m9KDi8eDFViHZABihAaT9t4zyGHtpyACvbGGEGaJovOWPoKajId8zstBnYM7K1HGI/pMo6pggNtv - Mevz3TyHcGxTwL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACABPgXtP + Mevz3TyHcGxTwL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACAC8syZQ r/+WR0IAAABGAAAACwAAAGlpc25vZGUueW1sy8tPSQ0oyk9OLS52zs/NTcxL8cnMS7VSUHKxigGK - pxcl5iq4ZeakFitoVFiYacbkAdVnFcdY6FnqmYA5eqkVqUoAUEsDBBQAAAAIAE2Be0+iE+VB9AMA + pxcl5iq4ZeakFitoVFiYacbkAdVnFcdY6FnqmYA5eqkVqUoAUEsDBBQAAAAIALmzJlCiE+VB9AMA AEoJAAAIAAAAaW5kZXguanN9VcFu4zYQvQfIPwwWBaQADnXooa2LFHADb2sgWQcboZdukdASbbGR SJWkonWz/vfOUKQip0mEHGLq8c3Mm5mnLINL3e6N3FUO0uIMrmVhtNVbh+em1YY7qRWDRV2DB1kw wgrzKEp2epJlcCULoawooVOlMOAqAderPB4j5vSk0Mo6KLUT6hEu8P4/nTQiTYaT5OznCGm5q6YA @@ -2678,7 +2711,7 @@ interactions: IyXD4WsKNDiDfCeoF7TnnRVv1jSWk+SIJDcXqtAdApBIhcTxb9Pt2Ogy79L4WXNSdT6+6dQwF956 WnQDK2Arv/rE/DcTfQnbVehSDAEOL1yHgK99r5o9dW/wi/DlSsf9uvIm7JdLYj0NjSd9s/DrQGMX PLnV1qVJxluZBclsgm6PwBl9SKYrFjczbPhYb8TOXmzp9G5ozmfcSK/JcTURMYjqq2Ko2kgUND+M - lvwfUEsDBBQAAAAIAE2Be08IIwJW5rEAAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sfdmy6siy + lvwfUEsDBBQAAAAIALmzJlAIIwJW5rEAAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sfdmy6siy 2Lsj/A8n+tGYrQFNOHwcRiAxCpCYebgOzWieEeL6nm+3JIbFWkuAGHb37utN9O4liaJSlVmVlZXj v//X//KP9POHzVvyH//jH3/I4sYRnPCP/358vpX9QHPs7CvoB/gDPH9hOqKhaKY8PzeATl/5shdp vhykz0I/kk+PJdmVbUm2RS3/6t8Pj/Ov/je/j3wZsIJq+rOwqn/5/vubwD+w05ucG6Q/dcytLGUt @@ -3478,15 +3511,15 @@ interactions: QAlbAxP8wXZtWxkw4839ViCTXA97npLtvIG62dJ0GxzZabwtCKzE+zDojXg5ZZIKXlBS28U0CVT0 ELPY+IdQ3V5yK4/loz3tjeSMM4UjP85HTyZpSOh2spL45dEu8xbCdudjE1grfGW1QS2UQBE2R6gA mwEJzOGYtxnME7o/CfEZE4/IpZMQbM9E6C67CLZzHw7l3joQSvSPopLT4fHj+P//AFBLAwQUAAAA - CABNgXtPth4ekYQBAACJAwAADAAAAHBhY2thZ2UuanNvbn1STU/jMBC9I/EfrBw4bd0aRYjtEcGB + CAC5syZQth4ekYQBAACJAwAADAAAAHBhY2thZ2UuanNvbn1STU/jMBC9I/EfrBw4bd0aRYjtEcGB Q297RJVSe9rMKvFY9qRQod3fvv5oyyYUIh+ieW/eG7/x+/WViF9lmx6qpahAt7Qhrn4c63vwAckm SMmFXJwBA0F7dHwEH4jFw4CdAS/2tUgyIuqI0PSug3NXM3BLPjWsUHsKtP2w6lCDDXmK1fOvc7lv MDugNfAmf4czUPxDxN5LpVS58Zz4lgwIOZ+2ZdJrw7o9kXqyX/E6tFkLQvoTcgQyBD5FJl6qJ+/J L4UlkQARHGjcIpiXStzcCHhDFqoq7X9OV/DgKCCTP0xuwQeXg9ghjzwH36Vyy+zCcj6PcDtspKZ+ qmzAQbyR1QjThOJaNmVTSepvLe+kGpkYYrD7BK7v5e3Hzo8jB8btIbfeyzqin5z3j1+blySz9l00 HmsXcKbJbnE3i5u0pvEmk1Ut1WW264Yd2hn2jsri17dSxbm/4aatF9XF/2/6AtN56rG8yXUds1Df - cEfzxmAm5ONTy8EpqX7K+pTc9VU8/wBQSwMEFAAAAAgATYF7TwAAAAACAAAAAAAAAAsAAABwdWJs - aXNoLmNtZAMAUEsDBBQAAAAIAE2Be0/iRs24DQQAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbttGEH03 + cEfzxmAm5ONTy8EpqX7K+pTc9VU8/wBQSwMEFAAAAAgAubMmUAAAAAACAAAAAAAAAAsAAABwdWJs + aXNoLmNtZAMAUEsDBBQAAAAIALmzJlDiRs24DQQAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbttGEH03 4H8YyC8REJJJ66JtgDaIb4AANQ2c+KEQCni1HIkbLXfZvYhQvr4zS4qUG9cy7AdZ2p05c+ZyhjyD a1lZuLABAtaNFgFPT05PvlTKw5IOK0H/EQ1Ih3RXQvTKrGHBDjdO1Nhat/n7VRVC498VRYnbnNxW +5tc2nr6GlQAX9nWA31AsD0YCPCKYmKKFCoRQEiJTfCgTBMDrJyt6RwpKDoQpgQksugZbynkJmeq @@ -3505,7 +3538,7 @@ interactions: 3zE+R8O9eFoOyF7OZ0/SogdAT+2QDp1m/JLgH2B1D6cRrkm/8+QyzscHquVWhR0/GySJiebuSQZo suiPjIu0ht8YMtFjZyP20SrOhVlHUjTcGYKi3WdYCv2qmd/NPj+bnbRro4gA7oP4QtPrSNHFuawE b1mftjXPSL/fSLj9tLy4DH36x/Vyy0+41W4M1LZtTo9DeifiGA29TVElaA8ns86npKeF2R5z6azI - 419QSwMEFAAAAAgAT4F7T0noJoiGBAAABgoAAAoAAAB3ZWIuY29uZmlntVZdb9s2FH0PkP9wp5cC + 419QSwMEFAAAAAgAvLMmUEnoJoiGBAAABgoAAAoAAAB3ZWIuY29uZmlntVZdb9s2FH0PkP9wp5cC wWQ22x6GzEoQNA5goM26OOkwrFtASbTFRiJVkrLsDv3vO6RkWc6SYS8LjBiieT/Ouefeq+nFpipp LYyVWiXR6eR1REJlOpdqlUSNW8Y/Rhfnx0fTb+L4+Ij8310hLWVaLeWqMdzBjpayFIRTIz430oic 5JKktErn4bixOHKaTKMonNVGZ8JaYSkVhVR573k+X5A24Wu2qQ1uTIiucVJpA0dqqU0VAn5La2ml @@ -3526,25 +3559,25 @@ interactions: E2pDo+deg/YM7FUyznQJTVlRc+xBeC2RLOllGAD9DmglOg1V7a3DiMwwfFf+gvaMOG7Gq2Ic0kvk Qaj12eAGbwk1X4VgTncvDhDYzc9Xs4fZzQc06loarXzZaM2N9Ntr7HCYxrNusVG8I8keTLi0QYUx xXsDnIK6fhnuZ8lCiP/lLSOQxGnZAPOO0r4iXei9VFD16W5ZjguURHt3P510zd1bQaz/fFGZsqcv - NH8DUEsDBBQAAAAAAE2Be08AAAAAAAAAAAAAAAAbAAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls - ZXMvUEsDBBQAAAAIAE2Be08AAAAAAgAAAAAAAAA8AAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls - ZXMvY2xpc3ZwdzZubnpkdXh3LVdlYi1EZXBsb3kucHVieG1sAwBQSwECFAAUAAAAAABNgXtPAAAA - AAAAAAAAAAAACwAAAAAAAAAAABAA/0EAAAAAUHJvcGVydGllcy9QSwECFAAUAAAACABNgXtPmasY - 7CAAAAAeAAAACwAAAAAAAAAAAAAAtoEpAAAALmRlcGxveW1lbnRQSwECFAAUAAAACABNgXtPWy28 - L8IAAAB5AQAADAAAAAAAAAAAAAAAtoFyAAAALmVzbGludHJjLmpzUEsBAhQAFAAAAAgATYF7TxiP - Mm4hAAAAHwAAAAoAAAAAAAAAAAAAALaBXgEAAC5naXRpZ25vcmVQSwECFAAUAAAACABNgXtPNmB0 - Dt8BAAB2BAAABgAAAAAAAAAAAAAAtoGnAQAAYm90LmpzUEsBAhQAFAAAAAgATYF7T3ohM0mWBAAA - 7gwAAAoAAAAAAAAAAAAAAP+BqgMAAGRlcGxveS5jbWRQSwECFAAUAAAACABPgXtPr/+WR0IAAABG - AAAACwAAAAAAAAAAAAAAtoFoCAAAaWlzbm9kZS55bWxQSwECFAAUAAAACABNgXtPohPlQfQDAABK - CQAACAAAAAAAAAAAAAAAtoHTCAAAaW5kZXguanNQSwECFAAUAAAACABNgXtPCCMCVuaxAABeXQMA - EQAAAAAAAAAAAAAAtoHtDAAAcGFja2FnZS1sb2NrLmpzb25QSwECFAAUAAAACABNgXtPth4ekYQB - AACJAwAADAAAAAAAAAAAAAAAtoECvwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgATYF7TwAAAAAC - AAAAAAAAAAsAAAAAAAAAAAAAAP+BsMAAAHB1Ymxpc2guY21kUEsBAhQAFAAAAAgATYF7T+JGzbgN - BAAASwoAAAkAAAAAAAAAAAAAALaB28AAAFJFQURNRS5NRFBLAQIUABQAAAAIAE+Be09J6CaIhgQA - AAYKAAAKAAAAAAAAAAAAAAC2gQ/FAAB3ZWIuY29uZmlnUEsBAhQAFAAAAAAATYF7TwAAAAAAAAAA + NH8DUEsDBBQAAAAAALmzJlAAAAAAAAAAAAAAAAAbAAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls + ZXMvUEsDBBQAAAAIALmzJlAAAAAAAgAAAAAAAAA8AAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls + ZXMvY2xpYWVhN2g1NXZ4ZnNoLVdlYi1EZXBsb3kucHVieG1sAwBQSwECFAAUAAAAAAC5syZQAAAA + AAAAAAAAAAAACwAAAAAAAAAAABAA/0EAAAAAUHJvcGVydGllcy9QSwECFAAUAAAACAC5syZQmasY + 7CAAAAAeAAAACwAAAAAAAAAAAAAAtoEpAAAALmRlcGxveW1lbnRQSwECFAAUAAAACAC5syZQWy28 + L8IAAAB5AQAADAAAAAAAAAAAAAAAtoFyAAAALmVzbGludHJjLmpzUEsBAhQAFAAAAAgAubMmUBiP + Mm4hAAAAHwAAAAoAAAAAAAAAAAAAALaBXgEAAC5naXRpZ25vcmVQSwECFAAUAAAACAC5syZQNmB0 + Dt8BAAB2BAAABgAAAAAAAAAAAAAAtoGnAQAAYm90LmpzUEsBAhQAFAAAAAgAubMmUHohM0mWBAAA + 7gwAAAoAAAAAAAAAAAAAAP+BqgMAAGRlcGxveS5jbWRQSwECFAAUAAAACAC8syZQr/+WR0IAAABG + AAAACwAAAAAAAAAAAAAAtoFoCAAAaWlzbm9kZS55bWxQSwECFAAUAAAACAC5syZQohPlQfQDAABK + CQAACAAAAAAAAAAAAAAAtoHTCAAAaW5kZXguanNQSwECFAAUAAAACAC5syZQCCMCVuaxAABeXQMA + EQAAAAAAAAAAAAAAtoHtDAAAcGFja2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAC5syZQth4ekYQB + AACJAwAADAAAAAAAAAAAAAAAtoECvwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgAubMmUAAAAAAC + AAAAAAAAAAsAAAAAAAAAAAAAAP+BsMAAAHB1Ymxpc2guY21kUEsBAhQAFAAAAAgAubMmUOJGzbgN + BAAASwoAAAkAAAAAAAAAAAAAALaB28AAAFJFQURNRS5NRFBLAQIUABQAAAAIALyzJlBJ6CaIhgQA + AAYKAAAKAAAAAAAAAAAAAAC2gQ/FAAB3ZWIuY29uZmlnUEsBAhQAFAAAAAAAubMmUAAAAAAAAAAA AAAAABsAAAAAAAAAAAAQAP9BvckAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAQIUABQA - AAAIAE2Be08AAAAAAgAAAAAAAAA8AAAAAAAAAAAAAAC2gfbJAABQcm9wZXJ0aWVzL1B1Ymxpc2hQ - cm9maWxlcy9jbGlzdnB3Nm5uemR1eHctV2ViLURlcGxveS5wdWJ4bWxQSwUGAAAAAA8ADwCTAwAA + AAAIALmzJlAAAAAAAgAAAAAAAAA8AAAAAAAAAAAAAAC2gfbJAABQcm9wZXJ0aWVzL1B1Ymxpc2hQ + cm9maWxlcy9jbGlhZWE3aDU1dnhmc2gtV2ViLURlcGxveS5wdWJ4bWxQSwUGAAAAAA8ADwCTAwAA UsoAAAAA headers: Accept: @@ -3570,7 +3603,7 @@ interactions: content-length: - '0' date: - - Thu, 28 Nov 2019 00:10:32 GMT + - Mon, 06 Jan 2020 14:30:03 GMT expires: - '-1' pragma: @@ -3578,7 +3611,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -3614,7 +3647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:33 GMT + - Mon, 06 Jan 2020 14:30:05 GMT expires: - '-1' pragma: @@ -3622,7 +3655,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: @@ -3634,14 +3667,14 @@ interactions: message: OK - request: body: !!binary | - UEsDBBQAAAAAAE2Be08AAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgATYF7T5mr + UEsDBBQAAAAAALmzJlAAAAAAAAAAAAAAAAALAAAAUHJvcGVydGllcy9QSwMEFAAAAAgAubMmUJmr GOwgAAAAHgAAAAsAAAAuZGVwbG95bWVudItOzs9Ly0yP5eVKzs/NTcxLUbBVSEktyMmv1EvOTQEA - UEsDBBQAAAAIAE2Be09bLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoR + UEsDBBQAAAAIALmzJlBbLbwvwgAAAHkBAAAMAAAALmVzbGludHJjLmpzfZDLCsIwEEX3hf5DyLoR EVeKC79DXIzNKIFmUiaJtZT+u40t9LEwu9xzZriJdTpWuMNP7Th4cRFdnonhSPwEJO3lSUgfgDSw lsXEeBhJpEu3MfvlHq0Z4tuhEBKqBlov78WCG9JIYTKOK0ROMYbIpKABk5z9EvsaSlQPfDpG9YxU BuNI1cBI07putseFYFGn9oRvZFlsMJCj1rro/yi+pfLK7JrkTO+ZnX7VP6CtKwioyshVq1JfQ6/t - Z4wDfZ715y9QSwMEFAAAAAgATYF7TxiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8p - zUkt1ufl0tLLKtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIAE2Be082YHQO3wEAAHYEAAAGAAAAYm90 + Z4wDfZ715y9QSwMEFAAAAAgAubMmUBiPMm4hAAAAHwAAAAoAAAAuZ2l0aWdub3Jly8tPSY3PzU8p + zUkt1ufl0tLLKtbLTSzg5dJLzSvj5QIAUEsDBBQAAAAIALmzJlA2YHQO3wEAAHYEAAAGAAAAYm90 LmpzxVRRa9swEH4P5D9cYWCbLvKe52WQjkEHy9P2MsaginSJxWTJk85tTfB/39mJW2cJrG+9B2Pf fffd3XeS8xw++boNZlcSpCqDtVHBR78l9ofaB0nGOwEra2EARQgYMdyjFvNZnsNXo9BF1NA4jQGo RFh/+T66GTOfKe8iwR5Wisy9ofZWOm0Z28GSyf40JmCabDxtGmOZI8mKIcvKGOGzKv2NJ8BHQqfj @@ -3650,7 +3683,7 @@ interactions: Aozjp3c/fANRGg3Jm/0TZGxA9F/QJXcHKaecPP5NC0paa9xuqMyCtUzG62p4PirlYbw+BCz9qLTh zTdOXOrwwDLRuDut+zR+tcEQV1qjfrEGh8NTTVL51JzNO40XpwRbHyC1yDo64tR3xfDy4YRSWHQ7 Kgu4vuZg9m8PvZktpNOUnwz8JVj/q+WFfgIqUxt0xIiLdP9Zb3KL1vrhaD2gVb7CqyQrzmm6U1f3 - Wrs+Fu/6rVdeNxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgATYF7T3ohM0mWBAAA7gwAAAoAAABk + Wrs+Fu/6rVdeNxYFPvLfg6IYb/ByvMsM/wtQSwMEFAAAAAgAubMmUHohM0mWBAAA7gwAAAoAAABk ZXBsb3kuY21kxVZtb+JGEP6OxH8YkCxdquAk11aVklIdIkuPHm/FTi4nIVmOvcBezK5rr0Poh/72 zq7XxhwmTT8dH8B4XvaZ2Xlm5gNbQtty+mPPnff6xBuRezKy2jAhf0L7pzZ8oMFagFgum41m4/oa OrUfLfp0d3sHtzSOxG5DuQQnSFgsteieJikT/Bqu7Ev76pdXPWnhLKEJ/StjKZM0PVY3WuiWLXfA @@ -3671,9 +3704,9 @@ interactions: rM9S7R20TGm3ytnU6cSJCDPd3N8WO54q4rDMwff+GB5SHprsmnAhEBsc+iEkIpMMR4hc+xK2DGPO l+YM/60pL8KqpGm/wOknUBnzutYP5l4t/d9qNvRyXllYDQMu2/kJA5+pZZO+MNnHGuhWVc8LeN3S m9KDi8eDFViHZABihAaT9t4zyGHtpyACvbGGEGaJovOWPoKajId8zstBnYM7K1HGI/pMo6pggNtv - Mevz3TyHcGxTwL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACABPgXtP + Mevz3TyHcGxTwL0qFaq2zca7vD70vXwDfcA4S9WunWZBQNN0meFyg/j+BVBLAwQUAAAACAC8syZQ r/+WR0IAAABGAAAACwAAAGlpc25vZGUueW1sy8tPSQ0oyk9OLS52zs/NTcxL8cnMS7VSUHKxigGK - pxcl5iq4ZeakFitoVFiYacbkAdVnFcdY6FnqmYA5eqkVqUoAUEsDBBQAAAAIAE2Be0+iE+VB9AMA + pxcl5iq4ZeakFitoVFiYacbkAdVnFcdY6FnqmYA5eqkVqUoAUEsDBBQAAAAIALmzJlCiE+VB9AMA AEoJAAAIAAAAaW5kZXguanN9VcFu4zYQvQfIPwwWBaQADnXooa2LFHADb2sgWQcboZdukdASbbGR SJWkonWz/vfOUKQip0mEHGLq8c3Mm5mnLINL3e6N3FUO0uIMrmVhtNVbh+em1YY7qRWDRV2DB1kw wgrzKEp2epJlcCULoawooVOlMOAqAderPB4j5vSk0Mo6KLUT6hEu8P4/nTQiTYaT5OznCGm5q6YA @@ -3692,7 +3725,7 @@ interactions: IyXD4WsKNDiDfCeoF7TnnRVv1jSWk+SIJDcXqtAdApBIhcTxb9Pt2Ogy79L4WXNSdT6+6dQwF956 WnQDK2Arv/rE/DcTfQnbVehSDAEOL1yHgK99r5o9dW/wi/DlSsf9uvIm7JdLYj0NjSd9s/DrQGMX PLnV1qVJxluZBclsgm6PwBl9SKYrFjczbPhYb8TOXmzp9G5ozmfcSK/JcTURMYjqq2Ko2kgUND+M - lvwfUEsDBBQAAAAIAE2Be08IIwJW5rEAAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sfdmy6siy + lvwfUEsDBBQAAAAIALmzJlAIIwJW5rEAAF5dAwARAAAAcGFja2FnZS1sb2NrLmpzb27sfdmy6siy 2Lsj/A8n+tGYrQFNOHwcRiAxCpCYebgOzWieEeL6nm+3JIbFWkuAGHb37utN9O4liaJSlVmVlZXj v//X//KP9POHzVvyH//jH3/I4sYRnPCP/358vpX9QHPs7CvoB/gDPH9hOqKhaKY8PzeATl/5shdp vhykz0I/kk+PJdmVbUm2RS3/6t8Pj/Ov/je/j3wZsIJq+rOwqn/5/vubwD+w05ucG6Q/dcytLGUt @@ -4492,15 +4525,15 @@ interactions: QAlbAxP8wXZtWxkw4839ViCTXA97npLtvIG62dJ0GxzZabwtCKzE+zDojXg5ZZIKXlBS28U0CVT0 ELPY+IdQ3V5yK4/loz3tjeSMM4UjP85HTyZpSOh2spL45dEu8xbCdudjE1grfGW1QS2UQBE2R6gA mwEJzOGYtxnME7o/CfEZE4/IpZMQbM9E6C67CLZzHw7l3joQSvSPopLT4fHj+P//AFBLAwQUAAAA - CABNgXtPth4ekYQBAACJAwAADAAAAHBhY2thZ2UuanNvbn1STU/jMBC9I/EfrBw4bd0aRYjtEcGB + CAC5syZQth4ekYQBAACJAwAADAAAAHBhY2thZ2UuanNvbn1STU/jMBC9I/EfrBw4bd0aRYjtEcGB Q297RJVSe9rMKvFY9qRQod3fvv5oyyYUIh+ieW/eG7/x+/WViF9lmx6qpahAt7Qhrn4c63vwAckm SMmFXJwBA0F7dHwEH4jFw4CdAS/2tUgyIuqI0PSug3NXM3BLPjWsUHsKtP2w6lCDDXmK1fOvc7lv MDugNfAmf4czUPxDxN5LpVS58Zz4lgwIOZ+2ZdJrw7o9kXqyX/E6tFkLQvoTcgQyBD5FJl6qJ+/J L4UlkQARHGjcIpiXStzcCHhDFqoq7X9OV/DgKCCTP0xuwQeXg9ghjzwH36Vyy+zCcj6PcDtspKZ+ qmzAQbyR1QjThOJaNmVTSepvLe+kGpkYYrD7BK7v5e3Hzo8jB8btIbfeyzqin5z3j1+blySz9l00 HmsXcKbJbnE3i5u0pvEmk1Ut1WW264Yd2hn2jsri17dSxbm/4aatF9XF/2/6AtN56rG8yXUds1Df - cEfzxmAm5ONTy8EpqX7K+pTc9VU8/wBQSwMEFAAAAAgATYF7TwAAAAACAAAAAAAAAAsAAABwdWJs - aXNoLmNtZAMAUEsDBBQAAAAIAE2Be0/iRs24DQQAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbttGEH03 + cEfzxmAm5ONTy8EpqX7K+pTc9VU8/wBQSwMEFAAAAAgAubMmUAAAAAACAAAAAAAAAAsAAABwdWJs + aXNoLmNtZAMAUEsDBBQAAAAIALmzJlDiRs24DQQAAEsKAAAJAAAAUkVBRE1FLk1EnVbbbttGEH03 4H8YyC8REJJJ66JtgDaIb4AANQ2c+KEQCni1HIkbLXfZvYhQvr4zS4qUG9cy7AdZ2p05c+ZyhjyD a1lZuLABAtaNFgFPT05PvlTKw5IOK0H/EQ1Ih3RXQvTKrGHBDjdO1Nhat/n7VRVC498VRYnbnNxW +5tc2nr6GlQAX9nWA31AsD0YCPCKYmKKFCoRQEiJTfCgTBMDrJyt6RwpKDoQpgQksugZbynkJmeq @@ -4519,7 +4552,7 @@ interactions: 3zE+R8O9eFoOyF7OZ0/SogdAT+2QDp1m/JLgH2B1D6cRrkm/8+QyzscHquVWhR0/GySJiebuSQZo suiPjIu0ht8YMtFjZyP20SrOhVlHUjTcGYKi3WdYCv2qmd/NPj+bnbRro4gA7oP4QtPrSNHFuawE b1mftjXPSL/fSLj9tLy4DH36x/Vyy0+41W4M1LZtTo9DeifiGA29TVElaA8ns86npKeF2R5z6azI - 419QSwMEFAAAAAgAT4F7T0noJoiGBAAABgoAAAoAAAB3ZWIuY29uZmlntVZdb9s2FH0PkP9wp5cC + 419QSwMEFAAAAAgAvLMmUEnoJoiGBAAABgoAAAoAAAB3ZWIuY29uZmlntVZdb9s2FH0PkP9wp5cC wWQ22x6GzEoQNA5goM26OOkwrFtASbTFRiJVkrLsDv3vO6RkWc6SYS8LjBiieT/Ouefeq+nFpipp LYyVWiXR6eR1REJlOpdqlUSNW8Y/Rhfnx0fTb+L4+Ij8310hLWVaLeWqMdzBjpayFIRTIz430oic 5JKktErn4bixOHKaTKMonNVGZ8JaYSkVhVR573k+X5A24Wu2qQ1uTIiucVJpA0dqqU0VAn5La2ml @@ -4540,25 +4573,25 @@ interactions: E2pDo+deg/YM7FUyznQJTVlRc+xBeC2RLOllGAD9DmglOg1V7a3DiMwwfFf+gvaMOG7Gq2Ic0kvk Qaj12eAGbwk1X4VgTncvDhDYzc9Xs4fZzQc06loarXzZaM2N9Ntr7HCYxrNusVG8I8keTLi0QYUx xXsDnIK6fhnuZ8lCiP/lLSOQxGnZAPOO0r4iXei9VFD16W5ZjguURHt3P510zd1bQaz/fFGZsqcv - NH8DUEsDBBQAAAAAAE2Be08AAAAAAAAAAAAAAAAbAAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls - ZXMvUEsDBBQAAAAIAE2Be08AAAAAAgAAAAAAAAA8AAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls - ZXMvY2xpc3ZwdzZubnpkdXh3LVdlYi1EZXBsb3kucHVieG1sAwBQSwECFAAUAAAAAABNgXtPAAAA - AAAAAAAAAAAACwAAAAAAAAAAABAA/0EAAAAAUHJvcGVydGllcy9QSwECFAAUAAAACABNgXtPmasY - 7CAAAAAeAAAACwAAAAAAAAAAAAAAtoEpAAAALmRlcGxveW1lbnRQSwECFAAUAAAACABNgXtPWy28 - L8IAAAB5AQAADAAAAAAAAAAAAAAAtoFyAAAALmVzbGludHJjLmpzUEsBAhQAFAAAAAgATYF7TxiP - Mm4hAAAAHwAAAAoAAAAAAAAAAAAAALaBXgEAAC5naXRpZ25vcmVQSwECFAAUAAAACABNgXtPNmB0 - Dt8BAAB2BAAABgAAAAAAAAAAAAAAtoGnAQAAYm90LmpzUEsBAhQAFAAAAAgATYF7T3ohM0mWBAAA - 7gwAAAoAAAAAAAAAAAAAAP+BqgMAAGRlcGxveS5jbWRQSwECFAAUAAAACABPgXtPr/+WR0IAAABG - AAAACwAAAAAAAAAAAAAAtoFoCAAAaWlzbm9kZS55bWxQSwECFAAUAAAACABNgXtPohPlQfQDAABK - CQAACAAAAAAAAAAAAAAAtoHTCAAAaW5kZXguanNQSwECFAAUAAAACABNgXtPCCMCVuaxAABeXQMA - EQAAAAAAAAAAAAAAtoHtDAAAcGFja2FnZS1sb2NrLmpzb25QSwECFAAUAAAACABNgXtPth4ekYQB - AACJAwAADAAAAAAAAAAAAAAAtoECvwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgATYF7TwAAAAAC - AAAAAAAAAAsAAAAAAAAAAAAAAP+BsMAAAHB1Ymxpc2guY21kUEsBAhQAFAAAAAgATYF7T+JGzbgN - BAAASwoAAAkAAAAAAAAAAAAAALaB28AAAFJFQURNRS5NRFBLAQIUABQAAAAIAE+Be09J6CaIhgQA - AAYKAAAKAAAAAAAAAAAAAAC2gQ/FAAB3ZWIuY29uZmlnUEsBAhQAFAAAAAAATYF7TwAAAAAAAAAA + NH8DUEsDBBQAAAAAALmzJlAAAAAAAAAAAAAAAAAbAAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls + ZXMvUEsDBBQAAAAIALmzJlAAAAAAAgAAAAAAAAA8AAAAUHJvcGVydGllcy9QdWJsaXNoUHJvZmls + ZXMvY2xpYWVhN2g1NXZ4ZnNoLVdlYi1EZXBsb3kucHVieG1sAwBQSwECFAAUAAAAAAC5syZQAAAA + AAAAAAAAAAAACwAAAAAAAAAAABAA/0EAAAAAUHJvcGVydGllcy9QSwECFAAUAAAACAC5syZQmasY + 7CAAAAAeAAAACwAAAAAAAAAAAAAAtoEpAAAALmRlcGxveW1lbnRQSwECFAAUAAAACAC5syZQWy28 + L8IAAAB5AQAADAAAAAAAAAAAAAAAtoFyAAAALmVzbGludHJjLmpzUEsBAhQAFAAAAAgAubMmUBiP + Mm4hAAAAHwAAAAoAAAAAAAAAAAAAALaBXgEAAC5naXRpZ25vcmVQSwECFAAUAAAACAC5syZQNmB0 + Dt8BAAB2BAAABgAAAAAAAAAAAAAAtoGnAQAAYm90LmpzUEsBAhQAFAAAAAgAubMmUHohM0mWBAAA + 7gwAAAoAAAAAAAAAAAAAAP+BqgMAAGRlcGxveS5jbWRQSwECFAAUAAAACAC8syZQr/+WR0IAAABG + AAAACwAAAAAAAAAAAAAAtoFoCAAAaWlzbm9kZS55bWxQSwECFAAUAAAACAC5syZQohPlQfQDAABK + CQAACAAAAAAAAAAAAAAAtoHTCAAAaW5kZXguanNQSwECFAAUAAAACAC5syZQCCMCVuaxAABeXQMA + EQAAAAAAAAAAAAAAtoHtDAAAcGFja2FnZS1sb2NrLmpzb25QSwECFAAUAAAACAC5syZQth4ekYQB + AACJAwAADAAAAAAAAAAAAAAAtoECvwAAcGFja2FnZS5qc29uUEsBAhQAFAAAAAgAubMmUAAAAAAC + AAAAAAAAAAsAAAAAAAAAAAAAAP+BsMAAAHB1Ymxpc2guY21kUEsBAhQAFAAAAAgAubMmUOJGzbgN + BAAASwoAAAkAAAAAAAAAAAAAALaB28AAAFJFQURNRS5NRFBLAQIUABQAAAAIALyzJlBJ6CaIhgQA + AAYKAAAKAAAAAAAAAAAAAAC2gQ/FAAB3ZWIuY29uZmlnUEsBAhQAFAAAAAAAubMmUAAAAAAAAAAA AAAAABsAAAAAAAAAAAAQAP9BvckAAFByb3BlcnRpZXMvUHVibGlzaFByb2ZpbGVzL1BLAQIUABQA - AAAIAE2Be08AAAAAAgAAAAAAAAA8AAAAAAAAAAAAAAC2gfbJAABQcm9wZXJ0aWVzL1B1Ymxpc2hQ - cm9maWxlcy9jbGlzdnB3Nm5uemR1eHctV2ViLURlcGxveS5wdWJ4bWxQSwUGAAAAAA8ADwCTAwAA + AAAIALmzJlAAAAAAAgAAAAAAAAA8AAAAAAAAAAAAAAC2gfbJAABQcm9wZXJ0aWVzL1B1Ymxpc2hQ + cm9maWxlcy9jbGlhZWE3aDU1dnhmc2gtV2ViLURlcGxveS5wdWJ4bWxQSwUGAAAAAA8ADwCTAwAA UsoAAAAA headers: Accept: @@ -4584,17 +4617,17 @@ interactions: content-length: - '0' date: - - Thu, 28 Nov 2019 00:10:34 GMT + - Mon, 06 Jan 2020 14:30:07 GMT expires: - '-1' location: - - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2019-11-28_00-10-34Z + - https://cli000002.scm.azurewebsites.net/api/deployments/latest?deployer=Push-Deployer&time=2020-01-06_14-30-07Z pragma: - no-cache server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4617,9 +4650,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4628,7 +4661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:40 GMT + - Mon, 06 Jan 2020 14:30:11 GMT expires: - '-1' location: @@ -4638,7 +4671,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4661,9 +4694,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4672,7 +4705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:42 GMT + - Mon, 06 Jan 2020 14:30:14 GMT expires: - '-1' location: @@ -4682,7 +4715,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4705,9 +4738,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4716,7 +4749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:44 GMT + - Mon, 06 Jan 2020 14:30:18 GMT expires: - '-1' location: @@ -4726,7 +4759,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4749,9 +4782,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4760,7 +4793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:46 GMT + - Mon, 06 Jan 2020 14:30:21 GMT expires: - '-1' location: @@ -4770,7 +4803,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4793,9 +4826,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4804,7 +4837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:50 GMT + - Mon, 06 Jan 2020 14:30:24 GMT expires: - '-1' location: @@ -4814,7 +4847,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4837,9 +4870,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4848,7 +4881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:52 GMT + - Mon, 06 Jan 2020 14:30:28 GMT expires: - '-1' location: @@ -4858,7 +4891,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4881,9 +4914,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4892,7 +4925,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:55 GMT + - Mon, 06 Jan 2020 14:30:32 GMT expires: - '-1' location: @@ -4902,7 +4935,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4925,9 +4958,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4936,7 +4969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:10:58 GMT + - Mon, 06 Jan 2020 14:30:35 GMT expires: - '-1' location: @@ -4946,7 +4979,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -4969,9 +5002,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -4980,7 +5013,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:11:01 GMT + - Mon, 06 Jan 2020 14:30:38 GMT expires: - '-1' location: @@ -4990,7 +5023,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5013,9 +5046,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5024,7 +5057,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:11:04 GMT + - Mon, 06 Jan 2020 14:30:41 GMT expires: - '-1' location: @@ -5034,7 +5067,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5057,9 +5090,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5068,7 +5101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:11:07 GMT + - Mon, 06 Jan 2020 14:30:45 GMT expires: - '-1' location: @@ -5078,7 +5111,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5101,9 +5134,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5112,7 +5145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:11:10 GMT + - Mon, 06 Jan 2020 14:30:49 GMT expires: - '-1' location: @@ -5122,7 +5155,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5145,9 +5178,9 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":1,"status_text":"Building - and Deploying ''7f40922818a6462b8935720a84d98be3''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"Running deployment command...","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":1,"status_text":"Building + and Deploying ''d2eb50e4e5a546f794208a1151dd5366''.","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"Running deployment command...","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5156,7 +5189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:11:12 GMT + - Mon, 06 Jan 2020 14:30:54 GMT expires: - '-1' location: @@ -5166,7 +5199,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net x-aspnet-version: - 4.0.30319 x-powered-by: @@ -5189,8 +5222,8 @@ interactions: uri: https://cli000002.scm.azurewebsites.net/api/deployments/mock-deployment response: body: - string: '{"id":"7f40922818a6462b8935720a84d98be3","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created - via a push deployment","progress":"","received_time":"2019-11-28T00:10:35.2412331Z","start_time":"2019-11-28T00:10:35.3704174Z","end_time":"2019-11-28T00:11:13.8120325Z","last_success_end_time":"2019-11-28T00:11:13.8120325Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' + string: '{"id":"d2eb50e4e5a546f794208a1151dd5366","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"Push-Deployer","message":"Created + via a push deployment","progress":"","received_time":"2020-01-06T14:30:08.3552775Z","start_time":"2020-01-06T14:30:08.4838109Z","end_time":"2020-01-06T14:30:54.8959738Z","last_success_end_time":"2020-01-06T14:30:54.8959738Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest","log_url":"https://cli000002.scm.azurewebsites.net/api/deployments/latest/log","site_name":"cli000002","provisioningState":null}' headers: cache-control: - no-cache @@ -5199,7 +5232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:11:15 GMT + - Mon, 06 Jan 2020 14:30:57 GMT expires: - '-1' pragma: @@ -5207,7 +5240,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=ac729eb25bf5d7504f05eb610b209f30cfeddb60b87b91c6a4cc8a578ca56dac;Path=/;HttpOnly;Domain=clisvpw6nnzduxw.scm.azurewebsites.net + - ARRAffinity=39c0483a3cf1a842aaf9a1d731e70e1355b314e54baf512c10b0482c1f83bffe;Path=/;HttpOnly;Domain=cliaea7h55vxfsh.scm.azurewebsites.net vary: - Accept-Encoding x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml index 13dacb27879..8772cb6eed5 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_csharp_webapp_bot.yaml @@ -15,8 +15,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -28,7 +28,7 @@ interactions: cache-control: - no-cache date: - - Thu, 28 Nov 2019 00:01:52 GMT + - Mon, 06 Jan 2020 14:19:13 GMT expires: - '-1' pragma: @@ -56,8 +56,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,7 +113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:01:53 GMT + - Mon, 06 Jan 2020 14:19:14 GMT expires: - '-1' pragma: @@ -145,30 +145,28 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:01:52 GMT + - Mon, 06 Jan 2020 14:19:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -229,7 +227,7 @@ interactions: "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "84b12caa-1002-4f18-9424-e53c8c196301"}, "appSecret": {"value": "0639c40b-338e-4f05-b0c2-9f057b3af12a"}, + "2aea9f95-1d40-4494-ab7a-628f6a26a651"}, "appSecret": {"value": "d80cb642-4c14-4c6b-b154-fecc4e96fe01"}, "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, "zipUrl": {"value": ""}, "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": {"value": "centralus"}, "botId": {"value": "cli000002"}}, @@ -250,18 +248,18 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"84b12caa-1002-4f18-9424-e53c8c196301"},"appSecret":{"type":"String","value":"0639c40b-338e-4f05-b0c2-9f057b3af12a"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-28T00:01:54.5175833Z","duration":"PT0.6217857S","correlationId":"4ffa7f8a-6f1a-4401-8fc0-88f60e9c4f8f","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"2aea9f95-1d40-4494-ab7a-628f6a26a651"},"appSecret":{"type":"String","value":"d80cb642-4c14-4c6b-b154-fecc4e96fe01"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:19:21.9111886Z","duration":"PT3.6809016S","correlationId":"ea8197f7-5425-454d-a1d5-99000fe2c017","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267075715818667?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232865272473559?api-version=2019-07-01 cache-control: - no-cache content-length: @@ -269,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:01:54 GMT + - Mon, 06 Jan 2020 14:19:22 GMT expires: - '-1' pragma: @@ -297,10 +295,268 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:19:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:20:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:20:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267075715818667?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -312,7 +568,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:02:24 GMT + - Mon, 06 Jan 2020 14:22:57 GMT expires: - '-1' pragma: @@ -340,10 +596,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267075715818667?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -355,7 +611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:02:54 GMT + - Mon, 06 Jan 2020 14:23:27 GMT expires: - '-1' pragma: @@ -383,10 +639,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267075715818667?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865272473559?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -398,7 +654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:24 GMT + - Mon, 06 Jan 2020 14:23:58 GMT expires: - '-1' pragma: @@ -426,13 +682,13 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"84b12caa-1002-4f18-9424-e53c8c196301"},"appSecret":{"type":"String","value":"0639c40b-338e-4f05-b0c2-9f057b3af12a"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-28T00:03:21.8590068Z","duration":"PT1M27.9632092S","correlationId":"4ffa7f8a-6f1a-4401-8fc0-88f60e9c4f8f","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"2aea9f95-1d40-4494-ab7a-628f6a26a651"},"appSecret":{"type":"String","value":"d80cb642-4c14-4c6b-b154-fecc4e96fe01"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:23:55.6664415Z","duration":"PT4M37.4361545S","correlationId":"ea8197f7-5425-454d-a1d5-99000fe2c017","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"}]}}' headers: cache-control: - no-cache @@ -441,7 +697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:24 GMT + - Mon, 06 Jan 2020 14:23:59 GMT expires: - '-1' pragma: @@ -469,15 +725,15 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5400b243-0000-0100-0000-5ddf0ec90000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"84b12caa-1002-4f18-9424-e53c8c196301","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c00dbb8-0000-0100-0000-5e1342f70000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"2aea9f95-1d40-4494-ab7a-628f6a26a651","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -486,15 +742,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:25 GMT + - Mon, 06 Jan 2020 14:24:00 GMT etag: - - '"5400b243-0000-0100-0000-5ddf0ec90000"' + - '"0c00dbb8-0000-0100-0000-5e1342f70000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -520,15 +774,15 @@ interactions: ParameterSetName: - -g -n --msbot User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5400b243-0000-0100-0000-5ddf0ec90000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"84b12caa-1002-4f18-9424-e53c8c196301","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c00dbb8-0000-0100-0000-5e1342f70000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"2aea9f95-1d40-4494-ab7a-628f6a26a651","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -537,15 +791,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:03:26 GMT + - Mon, 06 Jan 2020 14:24:00 GMT etag: - - '"5400b243-0000-0100-0000-5ddf0ec90000"' + - '"0c00dbb8-0000-0100-0000-5e1342f70000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -573,16 +825,16 @@ interactions: ParameterSetName: - -g -n --msbot User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"84b12caa-1002-4f18-9424-e53c8c196301","MicrosoftAppPassword":"0639c40b-338e-4f05-b0c2-9f057b3af12a"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"2aea9f95-1d40-4494-ab7a-628f6a26a651","MicrosoftAppPassword":"d80cb642-4c14-4c6b-b154-fecc4e96fe01"}}' headers: cache-control: - no-cache @@ -591,7 +843,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:03:26 GMT + - Mon, 06 Jan 2020 14:24:01 GMT expires: - '-1' pragma: @@ -629,12 +881,12 @@ interactions: ParameterSetName: - -g -n --msbot User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central @@ -647,7 +899,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:03:27 GMT + - Mon, 06 Jan 2020 14:24:02 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml index 8b7812ec44d..f5c73c05ef0 100644 --- a/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml +++ b/src/azure-cli/azure/cli/command_modules/botservice/tests/latest/recordings/test_botservice_show_on_v4_js_webapp_bot.yaml @@ -15,8 +15,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -28,7 +28,7 @@ interactions: cache-control: - no-cache date: - - Wed, 27 Nov 2019 23:58:19 GMT + - Mon, 06 Jan 2020 14:19:22 GMT expires: - '-1' pragma: @@ -56,8 +56,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -113,7 +113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:58:20 GMT + - Mon, 06 Jan 2020 14:19:23 GMT expires: - '-1' pragma: @@ -145,30 +145,28 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST uri: https://management.azure.com/providers/Microsoft.BotService/checkNameAvailability?api-version=2018-07-12 response: body: - string: '{"valid":true,"message":""}' + string: '{"valid":true,"message":"","absCode":null}' headers: cache-control: - no-cache content-length: - - '27' + - '42' content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:58:20 GMT + - Mon, 06 Jan 2020 14:19:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -178,7 +176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-tenant-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -229,7 +227,7 @@ interactions: "[resourceId(\''Microsoft.Web/sites/\'', parameters(\''siteName\''))]", "MSDeploy"]}]}, "parameters": {"location": {"value": "centralus"}, "kind": {"value": "sdk"}, "sku": {"value": "F0"}, "siteName": {"value": "cli000002"}, "appId": {"value": - "c8957d14-5224-4150-bfb4-65a528b2643b"}, "appSecret": {"value": "da6b0716-386c-4584-85c5-4e9d73a6e2cc"}, + "de34599f-ee97-4e88-9a19-e1261cf3e0ff"}, "appSecret": {"value": "57697e0e-57b5-4900-9277-28d84a360f1e"}, "serverFarmId": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"}, "zipUrl": {"value": ""}, "botEnv": {"value": "prod"}, "createServerFarm": {"value": true}, "serverFarmLocation": {"value": "centralus"}, "botId": {"value": "cli000002"}}, @@ -250,18 +248,18 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"c8957d14-5224-4150-bfb4-65a528b2643b"},"appSecret":{"type":"String","value":"da6b0716-386c-4584-85c5-4e9d73a6e2cc"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-11-27T23:58:21.5476184Z","duration":"PT0.2715191S","correlationId":"d0e2d912-33f3-4383-97ac-d55d9e93562a","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"de34599f-ee97-4e88-9a19-e1261cf3e0ff"},"appSecret":{"type":"String","value":"57697e0e-57b5-4900-9277-28d84a360f1e"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:19:30.0267596Z","duration":"PT3.6770449S","correlationId":"224fdbf4-233f-4a63-902c-cfc9a5cb4db2","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586267077842015517?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002/operationStatuses/08586232865191279252?api-version=2019-07-01 cache-control: - no-cache content-length: @@ -269,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:58:21 GMT + - Mon, 06 Jan 2020 14:19:30 GMT expires: - '-1' pragma: @@ -279,7 +277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -297,10 +295,268 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:20:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:20:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:21:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:22:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - bot create + Connection: + - keep-alive + ParameterSetName: + - -k -g -n --appid -p --lang + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267077842015517?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -312,7 +568,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:58:51 GMT + - Mon, 06 Jan 2020 14:23:04 GMT expires: - '-1' pragma: @@ -340,10 +596,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267077842015517?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -355,7 +611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:59:21 GMT + - Mon, 06 Jan 2020 14:23:34 GMT expires: - '-1' pragma: @@ -383,10 +639,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267077842015517?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -398,7 +654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 27 Nov 2019 23:59:51 GMT + - Mon, 06 Jan 2020 14:24:05 GMT expires: - '-1' pragma: @@ -426,10 +682,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267077842015517?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -441,7 +697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:00:21 GMT + - Mon, 06 Jan 2020 14:24:35 GMT expires: - '-1' pragma: @@ -469,10 +725,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267077842015517?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -484,7 +740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:00:52 GMT + - Mon, 06 Jan 2020 14:25:06 GMT expires: - '-1' pragma: @@ -512,10 +768,10 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586267077842015517?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232865191279252?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -527,7 +783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:01:21 GMT + - Mon, 06 Jan 2020 14:25:36 GMT expires: - '-1' pragma: @@ -555,22 +811,22 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"c8957d14-5224-4150-bfb4-65a528b2643b"},"appSecret":{"type":"String","value":"da6b0716-386c-4584-85c5-4e9d73a6e2cc"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-11-28T00:01:15.1778937Z","duration":"PT2M53.9017944S","correlationId":"d0e2d912-33f3-4383-97ac-d55d9e93562a","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/cli000002","name":"cli000002","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12265489627004014712","parameters":{"botEnv":{"type":"String","value":"prod"},"botId":{"type":"String","value":"cli000002"},"description":{"type":"String","value":""},"location":{"type":"String","value":"centralus"},"sku":{"type":"String","value":"F0"},"kind":{"type":"String","value":"sdk"},"siteName":{"type":"String","value":"cli000002"},"appId":{"type":"String","value":"de34599f-ee97-4e88-9a19-e1261cf3e0ff"},"appSecret":{"type":"String","value":"57697e0e-57b5-4900-9277-28d84a360f1e"},"zipUrl":{"type":"String","value":""},"serverFarmId":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},"createServerFarm":{"type":"Bool","value":true},"serverFarmLocation":{"type":"String","value":"centralus"},"serverFarmSku":{"type":"Object","value":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}},"endpoint":{"type":"String","value":""},"botFileEncryptionKey":{"type":"String","value":""}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:25:25.3915287Z","duration":"PT5M59.041814S","correlationId":"224fdbf4-233f-4a63-902c-cfc9a5cb4db2","providers":[{"namespace":"Microsoft.Web","resourceTypes":[{"resourceType":"serverfarms","locations":["centralus"]},{"resourceType":"sites","locations":["centralus"]}]},{"namespace":"Microsoft.BotService","resourceTypes":[{"resourceType":"botServices","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002","resourceType":"Microsoft.Web/serverfarms","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002","resourceType":"Microsoft.Web/sites","resourceName":"cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/Extensions/MSDeploy","resourceType":"Microsoft.Web/sites/Extensions","resourceName":"cli000002/MSDeploy"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/Sites/cli000002/config/publishingcredentials","resourceType":"Microsoft.Web/Sites/config","resourceName":"cli000002/publishingcredentials","actionName":"list","apiVersion":"2018-02-01"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","resourceType":"Microsoft.BotService/botServices","resourceName":"cli000002"}],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002"}]}}' headers: cache-control: - no-cache content-length: - - '4424' + - '4423' content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:01:21 GMT + - Mon, 06 Jan 2020 14:25:36 GMT expires: - '-1' pragma: @@ -598,15 +854,15 @@ interactions: ParameterSetName: - -k -g -n --appid -p --lang User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5400423b-0000-0100-0000-5ddf0e4a0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"c8957d14-5224-4150-bfb4-65a528b2643b","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c00e6b8-0000-0100-0000-5e1343440000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"de34599f-ee97-4e88-9a19-e1261cf3e0ff","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -615,15 +871,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:01:22 GMT + - Mon, 06 Jan 2020 14:25:37 GMT etag: - - '"5400423b-0000-0100-0000-5ddf0e4a0000"' + - '"0c00e6b8-0000-0100-0000-5e1343440000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -649,15 +903,15 @@ interactions: ParameterSetName: - -g -n --msbot User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-botservice/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-botservice/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002?api-version=2018-07-12 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"5400423b-0000-0100-0000-5ddf0e4a0000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"c8957d14-5224-4150-bfb4-65a528b2643b","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.BotService/botServices/cli000002","name":"cli000002","type":"Microsoft.BotService/botServices","etag":"\"0c00e6b8-0000-0100-0000-5e1343440000\"","location":"global","sku":{"name":"F0"},"kind":"sdk","tags":{},"properties":{"displayName":"cli000002","description":null,"iconUrl":"https://docs.botframework.com/static/devportal/client/images/bot-framework-default.png","endpoint":"https://cli000002.azurewebsites.net/api/messages","msaAppId":"de34599f-ee97-4e88-9a19-e1261cf3e0ff","developerAppInsightKey":null,"developerAppInsightsApplicationId":null,"luisAppIds":[],"endpointVersion":"3.0","configuredChannels":["webchat"],"enabledChannels":["webchat","directline"],"isDeveloperAppInsightsApiKeySet":false,"isStreamingSupported":false,"publishingCredentials":null,"parameters":null,"allSettings":null,"manifestUrl":null,"storageResourceId":null,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -666,15 +920,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 28 Nov 2019 00:01:23 GMT + - Mon, 06 Jan 2020 14:25:37 GMT etag: - - '"5400423b-0000-0100-0000-5ddf0e4a0000"' + - '"0c00e6b8-0000-0100-0000-5e1343440000"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -702,16 +954,16 @@ interactions: ParameterSetName: - -g -n --msbot User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/cli000002/config/appsettings/list?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings/list?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Central - US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"c8957d14-5224-4150-bfb4-65a528b2643b","MicrosoftAppPassword":"da6b0716-386c-4584-85c5-4e9d73a6e2cc"}}' + US","properties":{"WEBSITE_NODE_DEFAULT_VERSION":"10.14.1","MicrosoftAppId":"de34599f-ee97-4e88-9a19-e1261cf3e0ff","MicrosoftAppPassword":"57697e0e-57b5-4900-9277-28d84a360f1e"}}' headers: cache-control: - no-cache @@ -720,7 +972,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:01:23 GMT + - Mon, 06 Jan 2020 14:25:39 GMT expires: - '-1' pragma: @@ -738,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -758,12 +1010,12 @@ interactions: ParameterSetName: - -g -n --msbot User-Agent: - - python/3.7.2 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.42.0 Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli000002/config/slotConfigNames?api-version=2019-08-01 response: body: string: '{"id":null,"name":"cli000002","type":"Microsoft.Web/sites","location":"Central @@ -776,7 +1028,7 @@ interactions: content-type: - application/json date: - - Thu, 28 Nov 2019 00:01:23 GMT + - Mon, 06 Jan 2020 14:25:40 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml b/src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml deleted file mode 100644 index 885d18592cf..00000000000 --- a/src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml +++ /dev/null @@ -1,33 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - CommandName: [consumption reservations summaries reservation-id list] - Connection: [keep-alive] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 - msrest_azure/0.4.21 azure-mgmt-consumption/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.28] - accept-language: [en-US] - method: GET - uri: https://management.azure.com/providers/Microsoft.Capacity/reservationorders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries?grain=daily&$filter=properties%2FUsageDate%20ge%202017-12-01T00%3A00%3A00Z%20and%20properties%2FUsageDate%20le%202017-12-07T00%3A00%3A00Z&api-version=2018-01-31 - response: - body: {string: '{"value":[{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171201","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171201","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-01T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171202","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171202","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-02T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171203","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171203","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-03T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171204","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171204","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-04T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171205","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171205","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-05T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171206","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171206","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-06T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171207","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171207","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-07T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}}]}'} - headers: - cache-control: [no-cache] - content-length: ['5338'] - content-type: [application/json; odata.metadata=none] - date: ['Thu, 15 Feb 2018 00:22:37 GMT'] - expires: ['-1'] - odata-version: ['4.0'] - pragma: [no-cache] - server: [Microsoft-IIS/8.5] - session-id: [2a574b71-eeaa-49ad-9197-a5d681220a52] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] - status: {code: 200, message: OK} -version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml index b4657bcf360..2dc6e34e9e4 100644 --- a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml @@ -18,17 +18,17 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-datalake-store/0.5.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/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"encryptionState":"Disabled","provisioningState":"Creating","state":null,"endpoint":null,"accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"encryptionState":"Disabled","provisioningState":"Creating","state":null,"endpoint":null,"accountId":"ac904988-a47a-4089-825b-8733538a6ba6"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/ac904988-a47a-4089-825b-8733538a6ba6_0?api-version=2016-11-01 cache-control: - no-cache content-length: @@ -36,7 +36,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:08 GMT + - Mon, 06 Jan 2020 14:24:20 GMT expires: - '-1' location: @@ -52,7 +52,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -73,9 +73,9 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/ac904988-a47a-4089-825b-8733538a6ba6_0?api-version=2016-11-01 response: body: string: '{"status":"InProgress"}' @@ -87,7 +87,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:19 GMT + - Mon, 06 Jan 2020 14:24:32 GMT expires: - '-1' pragma: @@ -124,9 +124,9 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/ac904988-a47a-4089-825b-8733538a6ba6_0?api-version=2016-11-01 response: body: string: '{"status":"Succeeded"}' @@ -138,7 +138,7 @@ interactions: content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:51 GMT + - Mon, 06 Jan 2020 14:25:04 GMT expires: - '-1' pragma: @@ -175,21 +175,21 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5","creationTime":"2019-10-23T01:46:08.069291Z","lastModifiedTime":"2019-10-23T01:46:08.069291Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"ac904988-a47a-4089-825b-8733538a6ba6","creationTime":"2020-01-06T14:24:20.5971417Z","lastModifiedTime":"2020-01-06T14:24:20.5971417Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache content-length: - - '941' + - '943' content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:52 GMT + - Mon, 06 Jan 2020 14:25:06 GMT expires: - '-1' pragma: @@ -228,23 +228,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 + azure-mgmt-datalake-store/0.5.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/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5","creationTime":"2019-10-23T01:46:08.069291Z","lastModifiedTime":"2019-10-23T01:46:08.069291Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"ac904988-a47a-4089-825b-8733538a6ba6","creationTime":"2020-01-06T14:24:20.5971417Z","lastModifiedTime":"2020-01-06T14:24:20.5971417Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache content-length: - - '941' + - '943' content-type: - application/json date: - - Wed, 23 Oct 2019 01:46:55 GMT + - Mon, 06 Jan 2020 14:25:08 GMT expires: - '-1' pragma: @@ -276,13 +276,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01 [b58b7fd2-e587-4738-9f01-ce6a5072bac7][2019-10-22T18:46:59.5247275-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01 [c341e756-9867-4111-9e4b-a83719d3021c][2020-01-06T06:25:13.5560069-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -291,7 +291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:46:58 GMT + - Mon, 06 Jan 2020 14:25:13 GMT expires: - '-1' pragma: @@ -319,7 +319,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=MKDIRS&api-version=2018-09-01 response: @@ -333,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:46:59 GMT + - Mon, 06 Jan 2020 14:25:13 GMT expires: - '-1' pragma: @@ -359,12 +359,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795219866,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1578320713907,"modificationTime":1578320713907,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -373,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:01 GMT + - Mon, 06 Jan 2020 14:25:14 GMT expires: - '-1' pragma: @@ -399,13 +399,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile01 [c58e2955-ad84-48b8-bd7c-a3f3e9e12366][2019-10-22T18:47:03.2298479-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile01 [c8eb5ac8-603e-4584-84f9-0f1316efcbc3][2020-01-06T06:25:17.3044806-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:02 GMT + - Mon, 06 Jan 2020 14:25:17 GMT expires: - '-1' pragma: @@ -440,13 +440,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile01 [d78d0ab2-51d4-41c9-a674-048b6f1fad09][2019-10-22T18:47:03.5736054-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile01 [31b8a43e-77a2-4e2b-9245-1d80b9cca285][2020-01-06T06:25:17.6326089-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -455,7 +455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:02 GMT + - Mon, 06 Jan 2020 14:25:17 GMT expires: - '-1' pragma: @@ -483,7 +483,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -497,7 +497,7 @@ interactions: contentlength: - '0' date: - - Wed, 23 Oct 2019 01:47:03 GMT + - Mon, 06 Jan 2020 14:25:17 GMT expires: - '-1' location: @@ -527,7 +527,7 @@ interactions: Content-Length: - '6' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -539,7 +539,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:03 GMT + - Mon, 06 Jan 2020 14:25:18 GMT expires: - '-1' pragma: @@ -565,12 +565,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:05 GMT + - Mon, 06 Jan 2020 14:25:19 GMT expires: - '-1' pragma: @@ -605,12 +605,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -619,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:06 GMT + - Mon, 06 Jan 2020 14:25:21 GMT expires: - '-1' pragma: @@ -647,7 +647,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfsext/adltestfolder01/adltestfile01?OP=SETEXPIRY&api-version=2018-09-01&expiryOption=Absolute&expireTime=1896091200000 response: @@ -659,7 +659,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:07 GMT + - Mon, 06 Jan 2020 14:25:21 GMT expires: - '-1' pragma: @@ -683,12 +683,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -697,7 +697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:08 GMT + - Mon, 06 Jan 2020 14:25:23 GMT expires: - '-1' pragma: @@ -723,12 +723,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -737,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:10 GMT + - Mon, 06 Jan 2020 14:25:25 GMT expires: - '-1' pragma: @@ -765,7 +765,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfsext/adltestfolder01/adltestfile01?OP=SETEXPIRY&api-version=2018-09-01&expiryOption=NeverExpire response: @@ -777,7 +777,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:11 GMT + - Mon, 06 Jan 2020 14:25:25 GMT expires: - '-1' pragma: @@ -801,12 +801,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -815,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:12 GMT + - Mon, 06 Jan 2020 14:25:27 GMT expires: - '-1' pragma: @@ -841,13 +841,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [1d04e64d-320f-4152-8ad2-e8e7a532af7e][2019-10-22T18:47:14.7871070-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [83144ae0-b160-4bfc-86e6-bba42a640563][2020-01-06T06:25:29.3425239-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -856,7 +856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:14 GMT + - Mon, 06 Jan 2020 14:25:29 GMT expires: - '-1' pragma: @@ -884,7 +884,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=MKDIRS&api-version=2018-09-01 response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:14 GMT + - Mon, 06 Jan 2020 14:25:29 GMT expires: - '-1' pragma: @@ -926,7 +926,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=RENAME&api-version=2018-09-01&destination=adltestfolder02%2Fadltestfile01 response: @@ -940,7 +940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:16 GMT + - Mon, 06 Jan 2020 14:25:30 GMT expires: - '-1' pragma: @@ -966,12 +966,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -980,7 +980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:17 GMT + - Mon, 06 Jan 2020 14:25:32 GMT expires: - '-1' pragma: @@ -1006,12 +1006,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1020,7 +1020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:19 GMT + - Mon, 06 Jan 2020 14:25:33 GMT expires: - '-1' pragma: @@ -1046,12 +1046,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1060,7 +1060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:19 GMT + - Mon, 06 Jan 2020 14:25:34 GMT expires: - '-1' pragma: @@ -1086,12 +1086,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1100,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:20 GMT + - Mon, 06 Jan 2020 14:25:34 GMT expires: - '-1' pragma: @@ -1126,7 +1126,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=OPEN&api-version=2018-09-01&offset=0&length=6&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1138,7 +1138,7 @@ interactions: content-type: - application/octet-stream date: - - Wed, 23 Oct 2019 01:47:20 GMT + - Mon, 06 Jan 2020 14:25:35 GMT expires: - '-1' pragma: @@ -1166,12 +1166,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:22 GMT + - Mon, 06 Jan 2020 14:25:37 GMT expires: - '-1' pragma: @@ -1206,12 +1206,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1220,7 +1220,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:22 GMT + - Mon, 06 Jan 2020 14:25:37 GMT expires: - '-1' pragma: @@ -1246,7 +1246,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=OPEN&api-version=2018-09-01&offset=3&length=3&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1258,7 +1258,7 @@ interactions: content-type: - application/octet-stream date: - - Wed, 23 Oct 2019 01:47:23 GMT + - Mon, 06 Jan 2020 14:25:37 GMT expires: - '-1' pragma: @@ -1286,12 +1286,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"adltestfile01","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"adltestfile01","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1300,7 +1300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:24 GMT + - Mon, 06 Jan 2020 14:25:39 GMT expires: - '-1' pragma: @@ -1326,12 +1326,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1340,7 +1340,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:26 GMT + - Mon, 06 Jan 2020 14:25:41 GMT expires: - '-1' pragma: @@ -1366,12 +1366,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1380,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:27 GMT + - Mon, 06 Jan 2020 14:25:41 GMT expires: - '-1' pragma: @@ -1408,7 +1408,7 @@ interactions: Content-Length: - '6' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=6&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1420,7 +1420,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:27 GMT + - Mon, 06 Jan 2020 14:25:41 GMT expires: - '-1' pragma: @@ -1446,12 +1446,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":12,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795248016,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":12,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320742810,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:28 GMT + - Mon, 06 Jan 2020 14:25:43 GMT expires: - '-1' pragma: @@ -1486,13 +1486,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile02 [af31b0ac-45f3-4a75-934c-1a19719dacda][2019-10-22T18:47:31.2613013-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile02 [22da03af-0892-4516-b559-7d773e855e2f][2020-01-06T06:25:46.2523256-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1501,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:30 GMT + - Mon, 06 Jan 2020 14:25:45 GMT expires: - '-1' pragma: @@ -1527,7 +1527,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: @@ -1541,7 +1541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:31 GMT + - Mon, 06 Jan 2020 14:25:45 GMT expires: - '-1' pragma: @@ -1567,13 +1567,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile02 [22a473e6-4cf8-492f-a021-9f57a720d579][2019-10-22T18:47:32.9972952-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile02 [6a0aa1bd-10dd-4543-949c-55f09ca65131][2020-01-06T06:25:47.9979213-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1582,7 +1582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:32 GMT + - Mon, 06 Jan 2020 14:25:47 GMT expires: - '-1' pragma: @@ -1610,7 +1610,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1624,7 +1624,7 @@ interactions: contentlength: - '0' date: - - Wed, 23 Oct 2019 01:47:32 GMT + - Mon, 06 Jan 2020 14:25:47 GMT expires: - '-1' location: @@ -1654,7 +1654,7 @@ interactions: Content-Length: - '18' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1666,7 +1666,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:33 GMT + - Mon, 06 Jan 2020 14:25:48 GMT expires: - '-1' pragma: @@ -1692,12 +1692,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":18,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795253380,"modificationTime":1571795253825,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":18,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320748396,"modificationTime":1578320748826,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1706,7 +1706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:35 GMT + - Mon, 06 Jan 2020 14:25:50 GMT expires: - '-1' pragma: @@ -1736,7 +1736,7 @@ interactions: Content-Type: - application/json User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=MSCONCAT&api-version=2018-09-01&deleteSourceDirectory=false response: @@ -1748,7 +1748,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:36 GMT + - Mon, 06 Jan 2020 14:25:51 GMT expires: - '-1' pragma: @@ -1774,12 +1774,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1788,7 +1788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:39 GMT + - Mon, 06 Jan 2020 14:25:53 GMT expires: - '-1' pragma: @@ -1814,12 +1814,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1828,7 +1828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:40 GMT + - Mon, 06 Jan 2020 14:25:56 GMT expires: - '-1' pragma: @@ -1854,12 +1854,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1868,7 +1868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:40 GMT + - Mon, 06 Jan 2020 14:25:56 GMT expires: - '-1' pragma: @@ -1894,12 +1894,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1908,7 +1908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:41 GMT + - Mon, 06 Jan 2020 14:25:56 GMT expires: - '-1' pragma: @@ -1934,7 +1934,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=OPEN&api-version=2018-09-01&offset=0&length=30&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/octet-stream date: - - Wed, 23 Oct 2019 01:47:43 GMT + - Mon, 06 Jan 2020 14:25:58 GMT expires: - '-1' pragma: @@ -1974,12 +1974,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1988,7 +1988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:44 GMT + - Mon, 06 Jan 2020 14:26:00 GMT expires: - '-1' pragma: @@ -2016,7 +2016,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: DELETE uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=DELETE&api-version=2018-09-01&recursive=False response: @@ -2030,7 +2030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:45 GMT + - Mon, 06 Jan 2020 14:26:00 GMT expires: - '-1' pragma: @@ -2056,7 +2056,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: @@ -2070,7 +2070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:47 GMT + - Mon, 06 Jan 2020 14:26:02 GMT expires: - '-1' pragma: @@ -2096,12 +2096,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET - uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"adltestfolder01","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795266015,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"adltestfolder01","type":"DIRECTORY","blockSize":0,"accessTime":1578320713907,"modificationTime":1578320761228,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2110,7 +2110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:47 GMT + - Mon, 06 Jan 2020 14:26:03 GMT expires: - '-1' pragma: @@ -2136,13 +2136,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [9cf2e171-e7ca-4f23-93e1-20df5f2764dd][2019-10-22T18:47:49.9141093-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [02a34c66-f741-4c74-98dc-3dc4048ab19a][2020-01-06T06:26:05.3382421-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2151,7 +2151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:49 GMT + - Mon, 06 Jan 2020 14:26:04 GMT expires: - '-1' pragma: @@ -2179,7 +2179,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=MKDIRS&api-version=2018-09-01 response: @@ -2193,7 +2193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:49 GMT + - Mon, 06 Jan 2020 14:26:04 GMT expires: - '-1' pragma: @@ -2219,13 +2219,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02/tempfile01.txt [0de87bdc-c3ea-4922-9744-105c78cf3d65][2019-10-22T18:47:51.9885756-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02/tempfile01.txt [e3466904-828a-4d49-977b-226c76b988e3][2020-01-06T06:26:07.4189904-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2234,7 +2234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:51 GMT + - Mon, 06 Jan 2020 14:26:07 GMT expires: - '-1' pragma: @@ -2260,13 +2260,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02/tempfile01.txt [1f364225-9638-4a6c-963c-7b982c9da3aa][2019-10-22T18:47:52.3635842-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02/tempfile01.txt [554a2d1b-4802-42f2-913c-90dcc2ddaa8e][2020-01-06T06:26:07.7939929-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2275,7 +2275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:51 GMT + - Mon, 06 Jan 2020 14:26:07 GMT expires: - '-1' pragma: @@ -2303,7 +2303,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -2317,7 +2317,7 @@ interactions: contentlength: - '0' date: - - Wed, 23 Oct 2019 01:47:51 GMT + - Mon, 06 Jan 2020 14:26:07 GMT expires: - '-1' location: @@ -2347,7 +2347,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -2359,7 +2359,7 @@ interactions: content-length: - '0' date: - - Wed, 23 Oct 2019 01:47:52 GMT + - Mon, 06 Jan 2020 14:26:08 GMT expires: - '-1' pragma: @@ -2385,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795270274,"modificationTime":1571795272834,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1578320765702,"modificationTime":1578320768205,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2399,7 +2399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:54 GMT + - Mon, 06 Jan 2020 14:26:10 GMT expires: - '-1' pragma: @@ -2427,7 +2427,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: DELETE uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=DELETE&api-version=2018-09-01&recursive=True response: @@ -2441,7 +2441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:47:54 GMT + - Mon, 06 Jan 2020 14:26:10 GMT expires: - '-1' pragma: @@ -2467,13 +2467,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [1ecf8449-d7a4-430c-b0d0-5ce58d4fb2aa][2019-10-22T18:48:07.4718630-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [b26701a1-3438-4a9c-bb2a-1579de75f077][2020-01-06T06:26:22.8561915-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2482,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:48:06 GMT + - Mon, 06 Jan 2020 14:26:22 GMT expires: - '-1' pragma: @@ -2508,12 +2508,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795266015,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1578320713907,"modificationTime":1578320761228,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2522,7 +2522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 23 Oct 2019 01:48:08 GMT + - Mon, 06 Jan 2020 14:26:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml index 11a1da2d656..71aa7e8dea1 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:31:09 GMT + - Mon, 06 Jan 2020 14:36:46 GMT duration: - - '2400123' + - '2604025' expires: - '-1' ocp-aad-diagnostics-server-name: - - m44jz5vCS9u4O5sSSVss6CKrthWLHfOPU5++FHDbfV8= + - dMQIMqTNmvClkFrJur55SvaXYOP0//qg9V+JHwyJ2DU= ocp-aad-session-key: - - sDhj-VEGQEtvIlPaqWGI7MU6vzLtPtXrvkBr-DdlLoi5j8Ftbr-zXtz3Oec-ycOFQMPAWhBkzN3Q5aFoUFDnuaFL_9ktT2xD7lDZiKxnZdPrtDHef6-RURAte_GdgEE6BMgv_3OAB0f5MsuLmfR3vKOtPElbggZpf7ufIe-p_kQ.T_gZXyFcklAEkcRSEGDAYvC79m32fBHKyPIIHWFAgZw + - 1s0y4MiazVAxTdqTRINNAi4esc-UsJKH4GLdSrpMfoVbUPMT93DRbV5M65mQG5JJp7NmbxpIidFNlzQ-z9bam0pKNut3_EokCA86nV69cRjVTmgjua1Uglvk0CZM-xjm-l86tEm0rsW-UGrfXgN-_ZSEcJfSpExyXtc5mQByhsU.hGa4qaIbeVNO_u1KcRXb014qwVba4WJKjBlbhxjZfnE pragma: - no-cache request-id: - - 89f72985-294d-4f9a-9481-532cc513d90f + - 3ac8b6a0-46ae-46a2-a421-3c284a152cf1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -82,7 +82,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:16 GMT + - Mon, 06 Jan 2020 14:36:53 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1194' x-powered-by: - ASP.NET status: @@ -139,7 +139,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:49 GMT + - Mon, 06 Jan 2020 14:37:24 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:50 GMT + - Mon, 06 Jan 2020 14:37:26 GMT expires: - '-1' pragma: @@ -267,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:51 GMT + - Mon, 06 Jan 2020 14:37:28 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:52 GMT + - Mon, 06 Jan 2020 14:37:29 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:54 GMT + - Mon, 06 Jan 2020 14:37:31 GMT expires: - '-1' pragma: @@ -435,7 +435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:56 GMT + - Mon, 06 Jan 2020 14:37:33 GMT expires: - '-1' pragma: @@ -489,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:58 GMT + - Mon, 06 Jan 2020 14:37:34 GMT expires: - '-1' pragma: @@ -543,7 +543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:31:59 GMT + - Mon, 06 Jan 2020 14:37:36 GMT expires: - '-1' pragma: @@ -597,7 +597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:01 GMT + - Mon, 06 Jan 2020 14:37:37 GMT expires: - '-1' pragma: @@ -652,7 +652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:02 GMT + - Mon, 06 Jan 2020 14:37:39 GMT expires: - '-1' pragma: @@ -705,7 +705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:04 GMT + - Mon, 06 Jan 2020 14:37:40 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml index 392460a4b7f..77765d5128e 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:35:51 GMT + - Mon, 06 Jan 2020 14:26:38 GMT duration: - - '2854282' + - '2659773' expires: - '-1' ocp-aad-diagnostics-server-name: - - O7pP+dOHYyO4qyTRplHZ2APLBSM71WyEOHgyiadgxzQ= + - aP7R6MA20cup8msdSP2y3ghSXzLVVH210DgvMbRfVHU= ocp-aad-session-key: - - lky96ol12gXX3-4nSQt7E0C0wdFytWGia3jLkVfWcnJroVdoGMDZiUpQ0N4gIy6U3b1fYK0eLGbTTmpZKLbgFUfFLCo6zg_O7PFtREqkTTcDuS8slnbDaofpDvm8eQszVun_NPoaaytry4iTY5vaqWDuPC1kNOnroHoX1c-3gqg.fLBToYreevwHRjdVqH9cAL8_xZevPI7t4Tl_WkBXnf4 + - K3beWM6ePLPOLHJrP74jRLlEBijwOaemjS0WGX1lIe5Nm7dOTq9Lx3O6JJpj6aJwu75ozMC8C0XrSAZalWsfElTjeX3sX4eElco6qtEeAohJJl3ZP0WGM9z5D929w7_O_grtOHiJvSfzkMG-inxnm_WLfozMYpuHkio78l6cXkc.v0PDND5vUuxYTLROZSb34h1OhAQfDAuztELPdbCaM7c pragma: - no-cache request-id: - - 8a34cb0e-9330-42ed-912e-58c868ed310f + - d29e64aa-cc48-4706-8856-341e18e5153e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -82,7 +82,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:35:58 GMT + - Mon, 06 Jan 2020 14:26:44 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1194' x-powered-by: - ASP.NET status: @@ -139,7 +139,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:29 GMT + - Mon, 06 Jan 2020 14:27:16 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:31 GMT + - Mon, 06 Jan 2020 14:27:19 GMT expires: - '-1' pragma: @@ -265,9 +265,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANddwT/D/n2hShOrerHSJxUfshLW7ypKjlRzmDdYC8AS2lJMVpCVAg6P+3TklJS3xzL9NmI021WKG5TfQspOcai9gZHv+00xuJWLy5lKftIFw75MkfXm3BtEugFoYuwPbLl0sIWea5vbJo+Z6jOQDN6++10FT9+NaFOd6e1+sxt0N7PjR68rRBPmcSQ7lgLuMf8UWygg+tWvvXMc1pWo5rCyM7bM8Y/6E0Vh9Ybxk8KPZoteiIyLC4xE6YCxZtKLs+8TUm306+Sefg+iGp8V5Af8EDcu6140AoQfSmkObJueLq4DyTayiD27WcwPzepxvao2q5jB4Ll0PMQ+zaP6DncCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAmhIXWI19K7+45CPCG6Bf5RY9tx+8qKvuOKj66f9/aBRQJTNyCnlMelt/P2eF9ifaJzDlWMtfbVFbgqjBWWcMK3OnBMtYsttmiivHBOZeUtHEhWn2XUoFbFF/tlXayPihd/HRlVJdro9NCss1Vg9O7pHjIkt6+wpRlai6O3i2uePFbloO56We0SxoDTx5w59pWVeuax2shhCtJdPHVxEQQqjyo0ADHgJb7l2JkST4z9yzHzlTSDfcSR8P4PAega++mBXQDAtOLBWj+Vp4+sb6jx7NWHoBv9ggByajXX2BksIu1sxsrzQJzhVFdDhGpFvpY7Cv0aHaUO9fST/rI21d+","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"bf50e5dea12845978b26842f3bd5bbac"}' + time based on the issuer provider. Please check again later.","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' headers: cache-control: - no-cache @@ -276,11 +276,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:34 GMT + - Mon, 06 Jan 2020 14:27:22 GMT expires: - '-1' location: - - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=bf50e5dea12845978b26842f3bd5bbac + - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=3efe7fb954c846b8abcc7b38cc2df747 pragma: - no-cache server: @@ -322,9 +322,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANddwT/D/n2hShOrerHSJxUfshLW7ypKjlRzmDdYC8AS2lJMVpCVAg6P+3TklJS3xzL9NmI021WKG5TfQspOcai9gZHv+00xuJWLy5lKftIFw75MkfXm3BtEugFoYuwPbLl0sIWea5vbJo+Z6jOQDN6++10FT9+NaFOd6e1+sxt0N7PjR68rRBPmcSQ7lgLuMf8UWygg+tWvvXMc1pWo5rCyM7bM8Y/6E0Vh9Ybxk8KPZoteiIyLC4xE6YCxZtKLs+8TUm306+Sefg+iGp8V5Af8EDcu6140AoQfSmkObJueLq4DyTayiD27WcwPzepxvao2q5jB4Ll0PMQ+zaP6DncCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAmhIXWI19K7+45CPCG6Bf5RY9tx+8qKvuOKj66f9/aBRQJTNyCnlMelt/P2eF9ifaJzDlWMtfbVFbgqjBWWcMK3OnBMtYsttmiivHBOZeUtHEhWn2XUoFbFF/tlXayPihd/HRlVJdro9NCss1Vg9O7pHjIkt6+wpRlai6O3i2uePFbloO56We0SxoDTx5w59pWVeuax2shhCtJdPHVxEQQqjyo0ADHgJb7l2JkST4z9yzHzlTSDfcSR8P4PAega++mBXQDAtOLBWj+Vp4+sb6jx7NWHoBv9ggByajXX2BksIu1sxsrzQJzhVFdDhGpFvpY7Cv0aHaUO9fST/rI21d+","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"bf50e5dea12845978b26842f3bd5bbac"}' + time based on the issuer provider. Please check again later.","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' headers: cache-control: - no-cache @@ -333,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:34 GMT + - Mon, 06 Jan 2020 14:27:24 GMT expires: - '-1' pragma: @@ -377,7 +377,62 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANddwT/D/n2hShOrerHSJxUfshLW7ypKjlRzmDdYC8AS2lJMVpCVAg6P+3TklJS3xzL9NmI021WKG5TfQspOcai9gZHv+00xuJWLy5lKftIFw75MkfXm3BtEugFoYuwPbLl0sIWea5vbJo+Z6jOQDN6++10FT9+NaFOd6e1+sxt0N7PjR68rRBPmcSQ7lgLuMf8UWygg+tWvvXMc1pWo5rCyM7bM8Y/6E0Vh9Ybxk8KPZoteiIyLC4xE6YCxZtKLs+8TUm306+Sefg+iGp8V5Af8EDcu6140AoQfSmkObJueLq4DyTayiD27WcwPzepxvao2q5jB4Ll0PMQ+zaP6DncCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAmhIXWI19K7+45CPCG6Bf5RY9tx+8qKvuOKj66f9/aBRQJTNyCnlMelt/P2eF9ifaJzDlWMtfbVFbgqjBWWcMK3OnBMtYsttmiivHBOZeUtHEhWn2XUoFbFF/tlXayPihd/HRlVJdro9NCss1Vg9O7pHjIkt6+wpRlai6O3i2uePFbloO56We0SxoDTx5w59pWVeuax2shhCtJdPHVxEQQqjyo0ADHgJb7l2JkST4z9yzHzlTSDfcSR8P4PAega++mBXQDAtOLBWj+Vp4+sb6jx7NWHoBv9ggByajXX2BksIu1sxsrzQJzhVFdDhGpFvpY7Cv0aHaUO9fST/rI21d+","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"bf50e5dea12845978b26842f3bd5bbac"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' + headers: + cache-control: + - no-cache + content-length: + - '1419' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:27:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' headers: cache-control: - no-cache @@ -386,7 +441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:46 GMT + - Mon, 06 Jan 2020 14:27:47 GMT expires: - '-1' pragma: @@ -430,7 +485,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"rOQuY7Mt0VnJ9bM_4mBT2i1slhU","attributes":{"enabled":true,"nbf":1577456804,"exp":1735310204,"created":1577457404,"updated":1577457404},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -439,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:48 GMT + - Mon, 06 Jan 2020 14:27:48 GMT expires: - '-1' pragma: @@ -483,7 +538,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"rOQuY7Mt0VnJ9bM_4mBT2i1slhU","attributes":{"enabled":true,"nbf":1577456804,"exp":1735310204,"created":1577457404,"updated":1577457404},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -492,7 +547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:51 GMT + - Mon, 06 Jan 2020 14:27:50 GMT expires: - '-1' pragma: @@ -544,9 +599,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJA4uhGJueE9IhNA/p5ymtjghjUX0J2pToBDQ3SmA4BWlppqHPyr8V49ynC6FQp6cDMTk/CkCE1hUUz2h4CGiMTTwz6EtO8twkmr7lUY3iq/MKb/Mtez/n80RSoXqyPY7HAO8b8Fl7+r1l6oe121sADrR2cvy9NIgGAWISAJcdpgbbVTFFQi+U48RcKjCyqhbfWFumfiZsd2Kn3il5dOaSH0+oLb5l+y8X+5xkPrgfY1Wh6MJ14MdXiM3+ETEdtudmNSl2m0uIJI7SJN5uOcv89e3k9P3aZudnxkkUCTezHCMCallDRLGgu1yJFxA7lsHc8hHwaE9u4pIVuHdLSII2kCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbKYYzmjSe7fJRpawWQ1Ve3dX4Ul4t7njrNpnszhaxEoFNRmCjVelOLWux62gSrjh0IkkZcKNVH4OSTcFe+ni58rbKvBB+9k443zYkAshz0Cs3p0Pd84gQIdJYJPlA7ZQ+xU4kNMH3wbcLXVlW1zUepEgQoOMQWctd+wztlJu4F0nHeVduLcClykBXzG2TJLjOhXDrS5pYhgNpL7egfCn4B1r510m/jM4FJiLpQy6/R9TmfNTwVjM9F5ikHKBzjINu3o1HFgzPKEy5ljNHgzYMzMLz1xPfan1o6zIZynHU1gt2vWm189atV0uXvTheVw/DBGYXhatSecBKlRp5zGpg","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"1da2493b1ac04cefa9ec530e3c4a510c"}' + time based on the issuer provider. Please check again later.","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' headers: cache-control: - no-cache @@ -555,11 +610,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:54 GMT + - Mon, 06 Jan 2020 14:27:51 GMT expires: - '-1' location: - - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=1da2493b1ac04cefa9ec530e3c4a510c + - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=6c96a57ac50949eb8b1adb454a3c7cf7 pragma: - no-cache server: @@ -601,9 +656,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJA4uhGJueE9IhNA/p5ymtjghjUX0J2pToBDQ3SmA4BWlppqHPyr8V49ynC6FQp6cDMTk/CkCE1hUUz2h4CGiMTTwz6EtO8twkmr7lUY3iq/MKb/Mtez/n80RSoXqyPY7HAO8b8Fl7+r1l6oe121sADrR2cvy9NIgGAWISAJcdpgbbVTFFQi+U48RcKjCyqhbfWFumfiZsd2Kn3il5dOaSH0+oLb5l+y8X+5xkPrgfY1Wh6MJ14MdXiM3+ETEdtudmNSl2m0uIJI7SJN5uOcv89e3k9P3aZudnxkkUCTezHCMCallDRLGgu1yJFxA7lsHc8hHwaE9u4pIVuHdLSII2kCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbKYYzmjSe7fJRpawWQ1Ve3dX4Ul4t7njrNpnszhaxEoFNRmCjVelOLWux62gSrjh0IkkZcKNVH4OSTcFe+ni58rbKvBB+9k443zYkAshz0Cs3p0Pd84gQIdJYJPlA7ZQ+xU4kNMH3wbcLXVlW1zUepEgQoOMQWctd+wztlJu4F0nHeVduLcClykBXzG2TJLjOhXDrS5pYhgNpL7egfCn4B1r510m/jM4FJiLpQy6/R9TmfNTwVjM9F5ikHKBzjINu3o1HFgzPKEy5ljNHgzYMzMLz1xPfan1o6zIZynHU1gt2vWm189atV0uXvTheVw/DBGYXhatSecBKlRp5zGpg","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"1da2493b1ac04cefa9ec530e3c4a510c"}' + time based on the issuer provider. Please check again later.","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' headers: cache-control: - no-cache @@ -612,7 +667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:36:56 GMT + - Mon, 06 Jan 2020 14:27:53 GMT expires: - '-1' pragma: @@ -656,9 +711,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJA4uhGJueE9IhNA/p5ymtjghjUX0J2pToBDQ3SmA4BWlppqHPyr8V49ynC6FQp6cDMTk/CkCE1hUUz2h4CGiMTTwz6EtO8twkmr7lUY3iq/MKb/Mtez/n80RSoXqyPY7HAO8b8Fl7+r1l6oe121sADrR2cvy9NIgGAWISAJcdpgbbVTFFQi+U48RcKjCyqhbfWFumfiZsd2Kn3il5dOaSH0+oLb5l+y8X+5xkPrgfY1Wh6MJ14MdXiM3+ETEdtudmNSl2m0uIJI7SJN5uOcv89e3k9P3aZudnxkkUCTezHCMCallDRLGgu1yJFxA7lsHc8hHwaE9u4pIVuHdLSII2kCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbKYYzmjSe7fJRpawWQ1Ve3dX4Ul4t7njrNpnszhaxEoFNRmCjVelOLWux62gSrjh0IkkZcKNVH4OSTcFe+ni58rbKvBB+9k443zYkAshz0Cs3p0Pd84gQIdJYJPlA7ZQ+xU4kNMH3wbcLXVlW1zUepEgQoOMQWctd+wztlJu4F0nHeVduLcClykBXzG2TJLjOhXDrS5pYhgNpL7egfCn4B1r510m/jM4FJiLpQy6/R9TmfNTwVjM9F5ikHKBzjINu3o1HFgzPKEy5ljNHgzYMzMLz1xPfan1o6zIZynHU1gt2vWm189atV0uXvTheVw/DBGYXhatSecBKlRp5zGpg","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"1da2493b1ac04cefa9ec530e3c4a510c"}' + time based on the issuer provider. Please check again later.","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' headers: cache-control: - no-cache @@ -667,7 +722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:07 GMT + - Mon, 06 Jan 2020 14:28:04 GMT expires: - '-1' pragma: @@ -711,7 +766,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJA4uhGJueE9IhNA/p5ymtjghjUX0J2pToBDQ3SmA4BWlppqHPyr8V49ynC6FQp6cDMTk/CkCE1hUUz2h4CGiMTTwz6EtO8twkmr7lUY3iq/MKb/Mtez/n80RSoXqyPY7HAO8b8Fl7+r1l6oe121sADrR2cvy9NIgGAWISAJcdpgbbVTFFQi+U48RcKjCyqhbfWFumfiZsd2Kn3il5dOaSH0+oLb5l+y8X+5xkPrgfY1Wh6MJ14MdXiM3+ETEdtudmNSl2m0uIJI7SJN5uOcv89e3k9P3aZudnxkkUCTezHCMCallDRLGgu1yJFxA7lsHc8hHwaE9u4pIVuHdLSII2kCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbKYYzmjSe7fJRpawWQ1Ve3dX4Ul4t7njrNpnszhaxEoFNRmCjVelOLWux62gSrjh0IkkZcKNVH4OSTcFe+ni58rbKvBB+9k443zYkAshz0Cs3p0Pd84gQIdJYJPlA7ZQ+xU4kNMH3wbcLXVlW1zUepEgQoOMQWctd+wztlJu4F0nHeVduLcClykBXzG2TJLjOhXDrS5pYhgNpL7egfCn4B1r510m/jM4FJiLpQy6/R9TmfNTwVjM9F5ikHKBzjINu3o1HFgzPKEy5ljNHgzYMzMLz1xPfan1o6zIZynHU1gt2vWm189atV0uXvTheVw/DBGYXhatSecBKlRp5zGpg","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"1da2493b1ac04cefa9ec530e3c4a510c"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' headers: cache-control: - no-cache @@ -720,7 +775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:19 GMT + - Mon, 06 Jan 2020 14:28:16 GMT expires: - '-1' pragma: @@ -764,7 +819,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/versions?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/5212c9011edc4978824121ac9465b560","x5t":"rOQuY7Mt0VnJ9bM_4mBT2i1slhU","attributes":{"enabled":true,"nbf":1577456804,"exp":1735310204,"created":1577457404,"updated":1577457404},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/a1198a47e85f4154827b734ec7e1f1c2","x5t":"Q4swORMjlfP8K7_hPHjvz2AILlc","attributes":{"enabled":true,"nbf":1577456829,"exp":1709044629,"created":1577457429,"updated":1577457429},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","attributes":{"enabled":true,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320887},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -773,7 +828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:21 GMT + - Mon, 06 Jan 2020 14:28:18 GMT expires: - '-1' pragma: @@ -817,7 +872,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/versions?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/5212c9011edc4978824121ac9465b560","x5t":"rOQuY7Mt0VnJ9bM_4mBT2i1slhU","attributes":{"enabled":true,"nbf":1577456804,"exp":1735310204,"created":1577457404,"updated":1577457404},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/a1198a47e85f4154827b734ec7e1f1c2","x5t":"Q4swORMjlfP8K7_hPHjvz2AILlc","attributes":{"enabled":true,"nbf":1577456829,"exp":1709044629,"created":1577457429,"updated":1577457429},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","attributes":{"enabled":true,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320887},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -826,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:25 GMT + - Mon, 06 Jan 2020 14:28:21 GMT expires: - '-1' pragma: @@ -870,8 +925,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/a1198a47e85f4154827b734ec7e1f1c2","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/a1198a47e85f4154827b734ec7e1f1c2","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/a1198a47e85f4154827b734ec7e1f1c2","x5t":"Q4swORMjlfP8K7_hPHjvz2AILlc","cer":"MIID3jCCAsagAwIBAgIQJAbqsFIEQbuMbRiny1dKEzANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTE5MTIyNzE0MjcwOVoXDTI0MDIyNzE0MzcwOVowbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJA4uhGJueE9IhNA/p5ymtjghjUX0J2pToBDQ3SmA4BWlppqHPyr8V49ynC6FQp6cDMTk/CkCE1hUUz2h4CGiMTTwz6EtO8twkmr7lUY3iq/MKb/Mtez/n80RSoXqyPY7HAO8b8Fl7+r1l6oe121sADrR2cvy9NIgGAWISAJcdpgbbVTFFQi+U48RcKjCyqhbfWFumfiZsd2Kn3il5dOaSH0+oLb5l+y8X+5xkPrgfY1Wh6MJ14MdXiM3+ETEdtudmNSl2m0uIJI7SJN5uOcv89e3k9P3aZudnxkkUCTezHCMCallDRLGgu1yJFxA7lsHc8hHwaE9u4pIVuHdLSII2kCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFKCeA/KL2wxwltKsNS9KQOYClQanMB0GA1UdDgQWBBSgngPyi9sMcJbSrDUvSkDmApUGpzANBgkqhkiG9w0BAQsFAAOCAQEATjr3kjr075tBuiWxzomYbUrCBIhGltdiFP5iCeOgwtndys6cRmAz/ZicnFmCopkSViqbjj7L4gL9ttXtgna7PfPAZ/i+Vg7rymQyMfdLHoa3hCcZk3uXYJwPamX0E9wXgbNnsnj1rRvc/pF151ynTZYoNPo/KWCtelFiZelAfmpxUsOfTKCdAIvlbYnaKbGdHGBtx9o8M+ee6SxxrF6j+IUH2lRAy58bMEIaKFw5vCPbhqdzRICsiK1WnJXXCAagk6ifzw0Wmbe2jAXAt5iPzc9LLGBDyi8dH+6IP0gzlRyiNy+5GrNLxTCAqnTly/pRymwYLYRUx+pg5HiGTw2CHQ==","attributes":{"enabled":true,"nbf":1577456829,"exp":1709044629,"created":1577457429,"updated":1577457429,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmond, O=TestO, OU=TestOU, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":50,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457393,"updated":1577457414}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c04af78de04d4f22aad37ff60048bb27","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","cer":"MIID3jCCAsagAwIBAgIQe/h2iFr/RKaJTWRM+gLuSjANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTgwN1oXDTI0MDMwNjE0MjgwN1owbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFHCdIRaoG0oWDMX56dlbsB+LPeybMB0GA1UdDgQWBBRwnSEWqBtKFgzF+enZW7Afiz3smzANBgkqhkiG9w0BAQsFAAOCAQEAPb48Il/phWJMQ7q9M1fwdpRXjw69BrT3/chg1eg1fM+EkH8C3ULG3YwJrq6GS5LSuwa2inNT6IEoxqSCcDoqNfIKtRpnyxmTvs8IFgytLsYWQSsk1t/QZonEm4GRZyRq/0vsNvCn79PK1QZcUS4/ZLPAo4L938q/NbS7ybt3CB+MNtKJ3be5qTi3GbvtTYGlXNJ1aER42l+DPaeOMo7ytbl/5PrUW5m0QWJ7tmd74nysmdY7p+WC2HAxjer5QBYup9iUCSXD7XQ5kyThv2MYOjqE2jdqZ1e/4PhQPMd60OfGFbhnnKB1Y78xsIcNxXNPqECq/47QfSs/wtgXpkcR7A==","attributes":{"enabled":true,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320887,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmond, O=TestO, OU=TestOU, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":50,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320842,"updated":1578320872}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -880,7 +935,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:26 GMT + - Mon, 06 Jan 2020 14:28:23 GMT expires: - '-1' pragma: @@ -921,10 +976,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/5212c9011edc4978824121ac9465b560?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/5212c9011edc4978824121ac9465b560","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/5212c9011edc4978824121ac9465b560","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/5212c9011edc4978824121ac9465b560","x5t":"rOQuY7Mt0VnJ9bM_4mBT2i1slhU","cer":"MIID8DCCAtigAwIBAgIQPzk3CDS5R8C2tu0fbpMvejANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTE5MTIyNzE0MjY0NFoXDTI0MTIyNzE0MzY0NFowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANddwT/D/n2hShOrerHSJxUfshLW7ypKjlRzmDdYC8AS2lJMVpCVAg6P+3TklJS3xzL9NmI021WKG5TfQspOcai9gZHv+00xuJWLy5lKftIFw75MkfXm3BtEugFoYuwPbLl0sIWea5vbJo+Z6jOQDN6++10FT9+NaFOd6e1+sxt0N7PjR68rRBPmcSQ7lgLuMf8UWygg+tWvvXMc1pWo5rCyM7bM8Y/6E0Vh9Ybxk8KPZoteiIyLC4xE6YCxZtKLs+8TUm306+Sefg+iGp8V5Af8EDcu6140AoQfSmkObJueLq4DyTayiD27WcwPzepxvao2q5jB4Ll0PMQ+zaP6DncCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFGFfRKa4Hu7+RyieSz97UmB+HPXLMB0GA1UdDgQWBBRhX0SmuB7u/kconks/e1Jgfhz1yzANBgkqhkiG9w0BAQsFAAOCAQEAvyaqVE1TSLsZfxVdeOQ44hjGbsuq0sU/dGlribkuYy7oiPAsuR3youN8vhJaN3OVjAiJw6fgHQ+QL+1ttysV6HZ4rach5HX1sDZV7vgXqmvzzfZ0A9bG1Mm0o663590iGl7v6VtPGSso7SazbNsrD+X1VK2vOhwmUZilXhTl28yJi15hSBSgLDTObkHqf1OFTXqBqM98aNOr80i2bmCYMHtl9yBu225BjCalHOV8XL9/vbbDI6Q3Une3bT76QfC8OqJ/dKwNHmMr/ucRLuJAEUFo+aOHGPMJwhJvQ3gjjE2nVjNnefeIAaEQkpJC8QypmRS0j/JzLKtYGE0Hs5M0xg==","attributes":{"enabled":true,"nbf":1577456804,"exp":1735310204,"created":1577457404,"updated":1577457404,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c4ed4e99120441fc9d02b52e86526d87","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","cer":"MIID8DCCAtigAwIBAgIQePS07/xYSBu7ANRB9Lwo3TANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTc0MloXDTI1MDEwNjE0Mjc0MlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFGpKOxsupY+fBp8Xw0Ebe7SOtVO3MB0GA1UdDgQWBBRqSjsbLqWPnwafF8NBG3u0jrVTtzANBgkqhkiG9w0BAQsFAAOCAQEATeKO5+a6UhhTDkp44ecgQClgfUCmXsyse88kyZEYp6UwYZz29nfAe1b/5GN4IPGPbvUsG3bZ5Cljb0gyCuMLb6FT9/JKD7bUQ6JQneNfFVPXQTDAMHHWPw6JL1X7a2PrOUA/rChC5wWoar61gP9tT5fgtWsdigHeONSIqa4w5vAYKFfqJJSsKreeO7+gJfjyemaZB2+ib9g9pStoM0xEUnVkFr5EGfuzieDNgpNwSkGkbSs2EIgu8fepT+q89iGdhF55+28UQ4TKjQYLa/YIYffxqvcuuyUyoinQZAbcSTQOpZq8Efo0pKOnKCSibLQKZN+n5l3V/kHIlrHq4932sQ==","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -933,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:28 GMT + - Mon, 06 Jan 2020 14:28:24 GMT expires: - '-1' pragma: @@ -974,10 +1029,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/5212c9011edc4978824121ac9465b560?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/5212c9011edc4978824121ac9465b560","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/5212c9011edc4978824121ac9465b560","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/5212c9011edc4978824121ac9465b560","x5t":"rOQuY7Mt0VnJ9bM_4mBT2i1slhU","cer":"MIID8DCCAtigAwIBAgIQPzk3CDS5R8C2tu0fbpMvejANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTE5MTIyNzE0MjY0NFoXDTI0MTIyNzE0MzY0NFowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANddwT/D/n2hShOrerHSJxUfshLW7ypKjlRzmDdYC8AS2lJMVpCVAg6P+3TklJS3xzL9NmI021WKG5TfQspOcai9gZHv+00xuJWLy5lKftIFw75MkfXm3BtEugFoYuwPbLl0sIWea5vbJo+Z6jOQDN6++10FT9+NaFOd6e1+sxt0N7PjR68rRBPmcSQ7lgLuMf8UWygg+tWvvXMc1pWo5rCyM7bM8Y/6E0Vh9Ybxk8KPZoteiIyLC4xE6YCxZtKLs+8TUm306+Sefg+iGp8V5Af8EDcu6140AoQfSmkObJueLq4DyTayiD27WcwPzepxvao2q5jB4Ll0PMQ+zaP6DncCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFGFfRKa4Hu7+RyieSz97UmB+HPXLMB0GA1UdDgQWBBRhX0SmuB7u/kconks/e1Jgfhz1yzANBgkqhkiG9w0BAQsFAAOCAQEAvyaqVE1TSLsZfxVdeOQ44hjGbsuq0sU/dGlribkuYy7oiPAsuR3youN8vhJaN3OVjAiJw6fgHQ+QL+1ttysV6HZ4rach5HX1sDZV7vgXqmvzzfZ0A9bG1Mm0o663590iGl7v6VtPGSso7SazbNsrD+X1VK2vOhwmUZilXhTl28yJi15hSBSgLDTObkHqf1OFTXqBqM98aNOr80i2bmCYMHtl9yBu225BjCalHOV8XL9/vbbDI6Q3Une3bT76QfC8OqJ/dKwNHmMr/ucRLuJAEUFo+aOHGPMJwhJvQ3gjjE2nVjNnefeIAaEQkpJC8QypmRS0j/JzLKtYGE0Hs5M0xg==","attributes":{"enabled":true,"nbf":1577456804,"exp":1735310204,"created":1577457404,"updated":1577457404,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c4ed4e99120441fc9d02b52e86526d87","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","cer":"MIID8DCCAtigAwIBAgIQePS07/xYSBu7ANRB9Lwo3TANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTc0MloXDTI1MDEwNjE0Mjc0MlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFGpKOxsupY+fBp8Xw0Ebe7SOtVO3MB0GA1UdDgQWBBRqSjsbLqWPnwafF8NBG3u0jrVTtzANBgkqhkiG9w0BAQsFAAOCAQEATeKO5+a6UhhTDkp44ecgQClgfUCmXsyse88kyZEYp6UwYZz29nfAe1b/5GN4IPGPbvUsG3bZ5Cljb0gyCuMLb6FT9/JKD7bUQ6JQneNfFVPXQTDAMHHWPw6JL1X7a2PrOUA/rChC5wWoar61gP9tT5fgtWsdigHeONSIqa4w5vAYKFfqJJSsKreeO7+gJfjyemaZB2+ib9g9pStoM0xEUnVkFr5EGfuzieDNgpNwSkGkbSs2EIgu8fepT+q89iGdhF55+28UQ4TKjQYLa/YIYffxqvcuuyUyoinQZAbcSTQOpZq8Efo0pKOnKCSibLQKZN+n5l3V/kHIlrHq4932sQ==","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -986,7 +1041,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:30 GMT + - Mon, 06 Jan 2020 14:28:26 GMT expires: - '-1' pragma: @@ -1039,8 +1094,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/a1198a47e85f4154827b734ec7e1f1c2","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/a1198a47e85f4154827b734ec7e1f1c2","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/a1198a47e85f4154827b734ec7e1f1c2","x5t":"Q4swORMjlfP8K7_hPHjvz2AILlc","cer":"MIID3jCCAsagAwIBAgIQJAbqsFIEQbuMbRiny1dKEzANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTE5MTIyNzE0MjcwOVoXDTI0MDIyNzE0MzcwOVowbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJA4uhGJueE9IhNA/p5ymtjghjUX0J2pToBDQ3SmA4BWlppqHPyr8V49ynC6FQp6cDMTk/CkCE1hUUz2h4CGiMTTwz6EtO8twkmr7lUY3iq/MKb/Mtez/n80RSoXqyPY7HAO8b8Fl7+r1l6oe121sADrR2cvy9NIgGAWISAJcdpgbbVTFFQi+U48RcKjCyqhbfWFumfiZsd2Kn3il5dOaSH0+oLb5l+y8X+5xkPrgfY1Wh6MJ14MdXiM3+ETEdtudmNSl2m0uIJI7SJN5uOcv89e3k9P3aZudnxkkUCTezHCMCallDRLGgu1yJFxA7lsHc8hHwaE9u4pIVuHdLSII2kCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFKCeA/KL2wxwltKsNS9KQOYClQanMB0GA1UdDgQWBBSgngPyi9sMcJbSrDUvSkDmApUGpzANBgkqhkiG9w0BAQsFAAOCAQEATjr3kjr075tBuiWxzomYbUrCBIhGltdiFP5iCeOgwtndys6cRmAz/ZicnFmCopkSViqbjj7L4gL9ttXtgna7PfPAZ/i+Vg7rymQyMfdLHoa3hCcZk3uXYJwPamX0E9wXgbNnsnj1rRvc/pF151ynTZYoNPo/KWCtelFiZelAfmpxUsOfTKCdAIvlbYnaKbGdHGBtx9o8M+ee6SxxrF6j+IUH2lRAy58bMEIaKFw5vCPbhqdzRICsiK1WnJXXCAagk6ifzw0Wmbe2jAXAt5iPzc9LLGBDyi8dH+6IP0gzlRyiNy+5GrNLxTCAqnTly/pRymwYLYRUx+pg5HiGTw2CHQ==","attributes":{"enabled":false,"nbf":1577456829,"exp":1709044629,"created":1577457429,"updated":1577457453,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457393,"updated":1577457453}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c04af78de04d4f22aad37ff60048bb27","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","cer":"MIID3jCCAsagAwIBAgIQe/h2iFr/RKaJTWRM+gLuSjANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTgwN1oXDTI0MDMwNjE0MjgwN1owbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFHCdIRaoG0oWDMX56dlbsB+LPeybMB0GA1UdDgQWBBRwnSEWqBtKFgzF+enZW7Afiz3smzANBgkqhkiG9w0BAQsFAAOCAQEAPb48Il/phWJMQ7q9M1fwdpRXjw69BrT3/chg1eg1fM+EkH8C3ULG3YwJrq6GS5LSuwa2inNT6IEoxqSCcDoqNfIKtRpnyxmTvs8IFgytLsYWQSsk1t/QZonEm4GRZyRq/0vsNvCn79PK1QZcUS4/ZLPAo4L938q/NbS7ybt3CB+MNtKJ3be5qTi3GbvtTYGlXNJ1aER42l+DPaeOMo7ytbl/5PrUW5m0QWJ7tmd74nysmdY7p+WC2HAxjer5QBYup9iUCSXD7XQ5kyThv2MYOjqE2jdqZ1e/4PhQPMd60OfGFbhnnKB1Y78xsIcNxXNPqECq/47QfSs/wtgXpkcR7A==","attributes":{"enabled":false,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320908,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320842,"updated":1578320908}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -1049,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:33 GMT + - Mon, 06 Jan 2020 14:28:28 GMT expires: - '-1' pragma: @@ -1095,8 +1150,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/a1198a47e85f4154827b734ec7e1f1c2","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/a1198a47e85f4154827b734ec7e1f1c2","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/a1198a47e85f4154827b734ec7e1f1c2","x5t":"Q4swORMjlfP8K7_hPHjvz2AILlc","cer":"MIID3jCCAsagAwIBAgIQJAbqsFIEQbuMbRiny1dKEzANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTE5MTIyNzE0MjcwOVoXDTI0MDIyNzE0MzcwOVowbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJA4uhGJueE9IhNA/p5ymtjghjUX0J2pToBDQ3SmA4BWlppqHPyr8V49ynC6FQp6cDMTk/CkCE1hUUz2h4CGiMTTwz6EtO8twkmr7lUY3iq/MKb/Mtez/n80RSoXqyPY7HAO8b8Fl7+r1l6oe121sADrR2cvy9NIgGAWISAJcdpgbbVTFFQi+U48RcKjCyqhbfWFumfiZsd2Kn3il5dOaSH0+oLb5l+y8X+5xkPrgfY1Wh6MJ14MdXiM3+ETEdtudmNSl2m0uIJI7SJN5uOcv89e3k9P3aZudnxkkUCTezHCMCallDRLGgu1yJFxA7lsHc8hHwaE9u4pIVuHdLSII2kCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFKCeA/KL2wxwltKsNS9KQOYClQanMB0GA1UdDgQWBBSgngPyi9sMcJbSrDUvSkDmApUGpzANBgkqhkiG9w0BAQsFAAOCAQEATjr3kjr075tBuiWxzomYbUrCBIhGltdiFP5iCeOgwtndys6cRmAz/ZicnFmCopkSViqbjj7L4gL9ttXtgna7PfPAZ/i+Vg7rymQyMfdLHoa3hCcZk3uXYJwPamX0E9wXgbNnsnj1rRvc/pF151ynTZYoNPo/KWCtelFiZelAfmpxUsOfTKCdAIvlbYnaKbGdHGBtx9o8M+ee6SxxrF6j+IUH2lRAy58bMEIaKFw5vCPbhqdzRICsiK1WnJXXCAagk6ifzw0Wmbe2jAXAt5iPzc9LLGBDyi8dH+6IP0gzlRyiNy+5GrNLxTCAqnTly/pRymwYLYRUx+pg5HiGTw2CHQ==","attributes":{"enabled":false,"nbf":1577456829,"exp":1709044629,"created":1577457429,"updated":1577457453,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457393,"updated":1577457453}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c04af78de04d4f22aad37ff60048bb27","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","cer":"MIID3jCCAsagAwIBAgIQe/h2iFr/RKaJTWRM+gLuSjANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTgwN1oXDTI0MDMwNjE0MjgwN1owbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFHCdIRaoG0oWDMX56dlbsB+LPeybMB0GA1UdDgQWBBRwnSEWqBtKFgzF+enZW7Afiz3smzANBgkqhkiG9w0BAQsFAAOCAQEAPb48Il/phWJMQ7q9M1fwdpRXjw69BrT3/chg1eg1fM+EkH8C3ULG3YwJrq6GS5LSuwa2inNT6IEoxqSCcDoqNfIKtRpnyxmTvs8IFgytLsYWQSsk1t/QZonEm4GRZyRq/0vsNvCn79PK1QZcUS4/ZLPAo4L938q/NbS7ybt3CB+MNtKJ3be5qTi3GbvtTYGlXNJ1aER42l+DPaeOMo7ytbl/5PrUW5m0QWJ7tmd74nysmdY7p+WC2HAxjer5QBYup9iUCSXD7XQ5kyThv2MYOjqE2jdqZ1e/4PhQPMd60OfGFbhnnKB1Y78xsIcNxXNPqECq/47QfSs/wtgXpkcR7A==","attributes":{"enabled":false,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320908,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320842,"updated":1578320908}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -1105,7 +1160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:35 GMT + - Mon, 06 Jan 2020 14:28:30 GMT expires: - '-1' pragma: @@ -1158,7 +1213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:38 GMT + - Mon, 06 Jan 2020 14:28:32 GMT expires: - '-1' pragma: @@ -1211,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:37:40 GMT + - Mon, 06 Jan 2020 14:28:34 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml index 4ac31d7b554..d145d252df5 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:34:48 GMT + - Mon, 06 Jan 2020 14:31:10 GMT duration: - - '2382274' + - '2443525' expires: - '-1' ocp-aad-diagnostics-server-name: - - +yfCmj1n+1eHAPAd/TBjXq50eQ4gCfe2KhNt1L+GpDc= + - 5aglZegLKIoSH8+p/BYGbK1SiTprU5InRiYqvkDNAcE= ocp-aad-session-key: - - a9Az-8PoRUxQugQZdG6cgh9tIIqb7SXLeiVXIjuBcjJ7iSPccM3cTbnTQDopnd0foShk3MaNP79-Mqw3e_D4xp1fM7EyXjGEw3KkoFa0T134KFqpV9Ds8O4Cn_T2VO5_YiY6z927RkunZiFXF0Q1rbUYOuBnVDsuO77rUVBOvos.BndJzfjiGxsxSDqRqjzpFxKoS72j944khbnVK3tzEUA + - CmxYpvgJHKXc7p7MPo46ksu_sXR2S3X1QtIjzI8eWECDS1_F_4JV85kpnefIOwPq1sQocxwkVtMwFn5FJLdCiY6loXxu_e7Yi54JSS9z-sxByNn5nQoVW0JXFHGf9AukreorjfM1kx6-8KmqAJOlmvlK6oCBCrnJEstTNTUJX6k.tIYLHSx4dicwoAcJKuDb1EqVGHNztDtWS6ICnbuMNkc pragma: - no-cache request-id: - - 894d531e-d88e-4ada-b4ce-2f54eb81509b + - 848b9a9a-0466-46ea-a862-d9935a61d677 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -82,7 +82,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:56 GMT + - Mon, 06 Jan 2020 14:31:17 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1192' x-powered-by: - ASP.NET status: @@ -139,7 +139,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_download000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:35:29 GMT + - Mon, 06 Jan 2020 14:31:50 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:35:31 GMT + - Mon, 06 Jan 2020 14:31:52 GMT expires: - '-1' pragma: @@ -263,8 +263,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577457333,"updated":1577457333,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457333,"updated":1577457333}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' headers: cache-control: - no-cache @@ -273,7 +273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:35:33 GMT + - Mon, 06 Jan 2020 14:31:55 GMT expires: - '-1' pragma: @@ -317,8 +317,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577457333,"updated":1577457333,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457333,"updated":1577457333}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' headers: cache-control: - no-cache @@ -327,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:35:35 GMT + - Mon, 06 Jan 2020 14:31:57 GMT expires: - '-1' pragma: @@ -371,8 +371,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577457333,"updated":1577457333,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457333,"updated":1577457333}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' headers: cache-control: - no-cache @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:35:38 GMT + - Mon, 06 Jan 2020 14:31:59 GMT expires: - '-1' pragma: @@ -427,8 +427,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/68fa43cd2699430eadf0c56af725a7b8","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577457333,"updated":1577457333,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457333,"updated":1577457333}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' headers: cache-control: - no-cache @@ -437,7 +437,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:35:40 GMT + - Mon, 06 Jan 2020 14:32:01 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml index 57a6fc8538b..0571dc1f854 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:37:53 GMT + - Mon, 06 Jan 2020 14:27:37 GMT duration: - - '2366599' + - '2498392' expires: - '-1' ocp-aad-diagnostics-server-name: - - /JBGpzTChbcDSwlRpz1rJ60jXqzIcsL8TiQ4nnAtBvA= + - 9ZHp9DWrFOJDdtIudkw3WViQ6HjfSWNkT6r5darksVU= ocp-aad-session-key: - - bewQC3Rlm1b9cJILA9RX3I9IpOKXLPgP0-GJ2YeHo8aJuuAP_Rcp52-93bLfgqz4vKXe8Mg3x33zPjIuibi9tSbM7joED1B7-dVPK3kYs-B2x_xTnkSOaaYHuol8bGlgVhyqmLXrq8z4gSIxDs-ZkhwvWmwrk1SOkUhEm1-xWUI.guAPqtMZqr4ZCUb-sTCNN292e4YDmC7POo9gf2oYAaA + - ai0tbqBxsB1zBCW9bh09kvf2tz6d_CajPo-omosiTb3ynbgVBHKoKBgZHu__HGuO_N9bx5tvmnP8lnK0b3ex2G6ZCqd584-c5OHq17KL3Qsmh6GbKH7RNPmd089mibYjjcF7pD6M1AR24Gh6DK9eIJVEpbMTEt1zdZZojpUCzY0.xvPuSrpGnUgp1c0MFSHbKB9EiNL09QALhvR4NWRYwLo pragma: - no-cache request-id: - - 761343b8-60a9-4bd0-9870-85475c335a5f + - 0823b129-e71a-4b40-bdde-43d24fa5c58c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -82,7 +82,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:38:01 GMT + - Mon, 06 Jan 2020 14:27:45 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1197' x-powered-by: - ASP.NET status: @@ -139,7 +139,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:38:34 GMT + - Mon, 06 Jan 2020 14:28:17 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:38:36 GMT + - Mon, 06 Jan 2020 14:28:18 GMT expires: - '-1' pragma: @@ -263,8 +263,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/f448b0e43b8a47cbb215fd79dcf8e023","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/f448b0e43b8a47cbb215fd79dcf8e023","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/f448b0e43b8a47cbb215fd79dcf8e023","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577457517,"updated":1577457517,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457517,"updated":1577457517}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/6b5e88caf15b4dbab8568ea0560bae29","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/6b5e88caf15b4dbab8568ea0560bae29","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/6b5e88caf15b4dbab8568ea0560bae29","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320900,"updated":1578320900,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320900,"updated":1578320900}}}' headers: cache-control: - no-cache @@ -273,7 +273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:38:37 GMT + - Mon, 06 Jan 2020 14:28:19 GMT expires: - '-1' pragma: @@ -324,8 +324,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/b2d5d0f2daa24d89bf1bb5c2d7588944","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert2/b2d5d0f2daa24d89bf1bb5c2d7588944","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert2/b2d5d0f2daa24d89bf1bb5c2d7588944","x5t":"YeWRfBMXCT-AJpLKZ_3xxU9_m9k","cer":"MIIDazCCAlOgAwIBAgIULVGF7UpaVphGSUG4mf4DLywqU18wDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNTU5MzVaFw0yOTEwMTIwNTU5MzVaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtZiVGHgw3hqXrXh8/96aYl7OgyfAu9yrbnjwIydiZjVjQ6wAjfLxoaudgieSAaADKfnyHb59s+cxZ7MxJEEv5Cxt+dSoGuQx6kagttpm9EXOVe2EW6xKUGSTpV1+pd9ywN6SHT0VSUJj1mvlDPFFZiERrJpn4WE/QFHfF8Zo/hOXkWYnCCnK3JrUh9M9VsDZ7BiP83RywPH5CMEIdfQb1XcYj4myRXTO1rN1PFy25jPV5pEFx48u3RjEsLQ/G317YXl+NScSYpF4nvPIWK/95QvO5UdaefNnkSkzLuHdgOF3qLn3Q6CHYjetZ8gbjxaKKb68OND82wNNU864UtnRzAgMBAAGjUzBRMB0GA1UdDgQWBBSYzAx6+3QOcje8w3moJ75Lea+17zAfBgNVHSMEGDAWgBSYzAx6+3QOcje8w3moJ75Lea+17zAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQA34S+HbJ6B10YCGi/A85O9x7GDOl40T4b0JN+4U6sSSYe/k6g44MemHP6QdNsKQD10ll9ZjBGHX+CVy8z5Fckxt4LtfKZ+g49XOS8Rr2qu1Ganr5tIhAE0irAA3C754R9l0UDuRLyboeGVcNfiTJCWvvEw2ezbAi+F3vJVU3qGtHmQv3FBHMUlJN893Yj7dW8xxAYrf+YYlxKKbEbCFk8sB1cNlOSK35J4MHJE/1Rv9oxaL0xlSh4J1lGHPMr93hJjsJRCywGqCe4u4qcNgiOHyI1Kv3CA/ZcwKsA0gHwDd3ySHYH6GoXt+XbpH0RZtQkL8JJQIVgZcAoDUvkN1DQ9","attributes":{"enabled":true,"nbf":1571119175,"exp":1886479175,"created":1577457520,"updated":1577457520,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577457520,"updated":1577457520}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/aeaf919f6037400b9c160c0cc33744c4","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert2/aeaf919f6037400b9c160c0cc33744c4","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert2/aeaf919f6037400b9c160c0cc33744c4","x5t":"YeWRfBMXCT-AJpLKZ_3xxU9_m9k","cer":"MIIDazCCAlOgAwIBAgIULVGF7UpaVphGSUG4mf4DLywqU18wDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNTU5MzVaFw0yOTEwMTIwNTU5MzVaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtZiVGHgw3hqXrXh8/96aYl7OgyfAu9yrbnjwIydiZjVjQ6wAjfLxoaudgieSAaADKfnyHb59s+cxZ7MxJEEv5Cxt+dSoGuQx6kagttpm9EXOVe2EW6xKUGSTpV1+pd9ywN6SHT0VSUJj1mvlDPFFZiERrJpn4WE/QFHfF8Zo/hOXkWYnCCnK3JrUh9M9VsDZ7BiP83RywPH5CMEIdfQb1XcYj4myRXTO1rN1PFy25jPV5pEFx48u3RjEsLQ/G317YXl+NScSYpF4nvPIWK/95QvO5UdaefNnkSkzLuHdgOF3qLn3Q6CHYjetZ8gbjxaKKb68OND82wNNU864UtnRzAgMBAAGjUzBRMB0GA1UdDgQWBBSYzAx6+3QOcje8w3moJ75Lea+17zAfBgNVHSMEGDAWgBSYzAx6+3QOcje8w3moJ75Lea+17zAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQA34S+HbJ6B10YCGi/A85O9x7GDOl40T4b0JN+4U6sSSYe/k6g44MemHP6QdNsKQD10ll9ZjBGHX+CVy8z5Fckxt4LtfKZ+g49XOS8Rr2qu1Ganr5tIhAE0irAA3C754R9l0UDuRLyboeGVcNfiTJCWvvEw2ezbAi+F3vJVU3qGtHmQv3FBHMUlJN893Yj7dW8xxAYrf+YYlxKKbEbCFk8sB1cNlOSK35J4MHJE/1Rv9oxaL0xlSh4J1lGHPMr93hJjsJRCywGqCe4u4qcNgiOHyI1Kv3CA/ZcwKsA0gHwDd3ySHYH6GoXt+XbpH0RZtQkL8JJQIVgZcAoDUvkN1DQ9","attributes":{"enabled":true,"nbf":1571119175,"exp":1886479175,"created":1578320902,"updated":1578320902,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320902,"updated":1578320902}}}' headers: cache-control: - no-cache @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:38:40 GMT + - Mon, 06 Jan 2020 14:28:22 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml index 4fb6f37d778..c478362a9f9 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:32:15 GMT + - Mon, 06 Jan 2020 14:29:31 GMT duration: - - '2445977' + - '3373876' expires: - '-1' ocp-aad-diagnostics-server-name: - - bjNxOO4JJe6y/+2Ru4f1c2yR+8kj70jYtxaslVt3278= + - 8lVrSY0cb3yYmzhL1jb6bG/9VqDeaSkgeMUNwJzqewM= ocp-aad-session-key: - - Q7NmuuuW7psmZvnvr6t5saUe3Qaw3lC6L_k42Ga-Hnw2qi9gR45Slm3AzwfoOpaMGXHE3rNONiRTeirjwDsqTAjU2PUkgqgLGfp27mVoyWjGLwe5K8oGGWpVMjAaEwQdPG3FXdAgZ9I7cIhjSrcWDBAm1BFPi7vGC4gHtha3l0g.GqjjstHpb3Fzi5L9sN7Oe_xGJqZyhXsGmPmUrLUa3hE + - R0OZom8d3lygP-NdtwyGVzdcInrCGXpf6pj3KYUSazFICozv-eBiH82iX_mIcU9QhC5AaGiIFDS91jkG118OE-L4sXBRsG2WO9tPRWfs3S-iN4eSxQBlT77g4PwHKa_gDP0no0L3q2z_y-hFFBjNtT2Jkwv4Ock6_z_SL8LqIkU.crTjBA9qy5vSafLzUqGSMWJPxdUBmh3sEz-DUThrC5A pragma: - no-cache request-id: - - 91010321-cb87-468a-9b2b-129fb28e4eba + - 42cba3e7-e7d1-4308-8ade-7abfe1289126 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -82,7 +82,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:22 GMT + - Mon, 06 Jan 2020 14:29:39 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1196' x-powered-by: - ASP.NET status: @@ -139,7 +139,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuer000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:54 GMT + - Mon, 06 Jan 2020 14:30:11 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:56 GMT + - Mon, 06 Jan 2020 14:30:13 GMT expires: - '-1' pragma: @@ -259,7 +259,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457177}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321016}}' headers: cache-control: - no-cache @@ -268,7 +268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:57 GMT + - Mon, 06 Jan 2020 14:30:16 GMT expires: - '-1' pragma: @@ -312,7 +312,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457177}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321016}}' headers: cache-control: - no-cache @@ -321,7 +321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:58 GMT + - Mon, 06 Jan 2020 14:30:17 GMT expires: - '-1' pragma: @@ -365,7 +365,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457177}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321016}}' headers: cache-control: - no-cache @@ -374,7 +374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:32:59 GMT + - Mon, 06 Jan 2020 14:30:18 GMT expires: - '-1' pragma: @@ -421,7 +421,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457182}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321021}}' headers: cache-control: - no-cache @@ -430,7 +430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:01 GMT + - Mon, 06 Jan 2020 14:30:20 GMT expires: - '-1' pragma: @@ -484,7 +484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:03 GMT + - Mon, 06 Jan 2020 14:30:23 GMT expires: - '-1' pragma: @@ -528,7 +528,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457182}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321021}}' headers: cache-control: - no-cache @@ -537,7 +537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:05 GMT + - Mon, 06 Jan 2020 14:30:24 GMT expires: - '-1' pragma: @@ -584,7 +584,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457187}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321026}}' headers: cache-control: - no-cache @@ -593,7 +593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:06 GMT + - Mon, 06 Jan 2020 14:30:25 GMT expires: - '-1' pragma: @@ -646,7 +646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:08 GMT + - Mon, 06 Jan 2020 14:30:27 GMT expires: - '-1' pragma: @@ -690,7 +690,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457187}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321026}}' headers: cache-control: - no-cache @@ -699,7 +699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:10 GMT + - Mon, 06 Jan 2020 14:30:28 GMT expires: - '-1' pragma: @@ -747,7 +747,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457192}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321031}}' headers: cache-control: - no-cache @@ -756,7 +756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:12 GMT + - Mon, 06 Jan 2020 14:30:30 GMT expires: - '-1' pragma: @@ -800,7 +800,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457192}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321031}}' headers: cache-control: - no-cache @@ -809,7 +809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:14 GMT + - Mon, 06 Jan 2020 14:30:31 GMT expires: - '-1' pragma: @@ -858,7 +858,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457196}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321034}}' headers: cache-control: - no-cache @@ -867,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:16 GMT + - Mon, 06 Jan 2020 14:30:33 GMT expires: - '-1' pragma: @@ -911,7 +911,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457196}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321034}}' headers: cache-control: - no-cache @@ -920,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:18 GMT + - Mon, 06 Jan 2020 14:30:35 GMT expires: - '-1' pragma: @@ -964,7 +964,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457196}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321034}}' headers: cache-control: - no-cache @@ -973,7 +973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:20 GMT + - Mon, 06 Jan 2020 14:30:37 GMT expires: - '-1' pragma: @@ -1020,7 +1020,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457202}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321038}}' headers: cache-control: - no-cache @@ -1029,7 +1029,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:21 GMT + - Mon, 06 Jan 2020 14:30:38 GMT expires: - '-1' pragma: @@ -1073,7 +1073,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457202}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321038}}' headers: cache-control: - no-cache @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:23 GMT + - Mon, 06 Jan 2020 14:30:40 GMT expires: - '-1' pragma: @@ -1128,7 +1128,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1577457177,"updated":1577457202}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321038}}' headers: cache-control: - no-cache @@ -1137,7 +1137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:24 GMT + - Mon, 06 Jan 2020 14:30:42 GMT expires: - '-1' pragma: @@ -1190,7 +1190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:26 GMT + - Mon, 06 Jan 2020 14:30:43 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml index 4357eb74be3..58d2eb4a0b4 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:33:38 GMT + - Mon, 06 Jan 2020 14:32:55 GMT duration: - - '2394975' + - '2669664' expires: - '-1' ocp-aad-diagnostics-server-name: - - mkmGIZ2j5Ca42Qa49ycJm+noc56ZbQai9OBtxAgVnJk= + - u84kEvNmBHxW4/vtHqUleUYQGGbAjaquR19gMFnyQJs= ocp-aad-session-key: - - kngs_4-RvfYaLRN8OQyWF5LhfHQ3C-GuZ7GvmD2eKDQdYFNW4EEwxNj1_7JcehzAQOyjkIb27pe-dHeMhVYNFZctDyJBUJrkARkRnMcQonObkRh8ls3ZlDKzixnlwwvjPeKWWsxSuavhwYN6sqe4D-ebiI7gyO-SrKl_uIHW85g.sUXMh5cWJDJlBHiF6z3a4YVqXPtMHHIYX5wQEAYuuoU + - lrLL6PBtD6hGQz4MxyJJPGbM0TySMXfqs8wLWrmrBluh1joTP9q0PlyTyqu4Bwutcmzua2NHfy_VJUR-yghlR4BhMBTrASVe4BvKGVarYzBxKiP31-d8MsBn5dZNLOAMA5Qmp9Xim2VHJz_c8y4qKqjDgbdO3pJF89vMk0p4Bus.LH9R_6bbGDJHZ7GdhGA19FdHf4YGXVvSHMFpHyUwBKU pragma: - no-cache request-id: - - 6a8aec7a-49fc-497f-8c3f-24052a4172c0 + - b700d78c-23d9-44b3-8dec-2526158bf922 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -82,7 +82,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:33:44 GMT + - Mon, 06 Jan 2020 14:33:01 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1177' + - '1195' x-powered-by: - ASP.NET status: @@ -139,7 +139,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:17 GMT + - Mon, 06 Jan 2020 14:33:33 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:19 GMT + - Mon, 06 Jan 2020 14:33:36 GMT expires: - '-1' pragma: @@ -263,8 +263,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/create?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANMchofrsvaWQDd1yfmb9sB6tfFTy8WoEiwGEy4AsfLWGnmxC93rOzaLr/v5f2bCdhyBKn5+KOleBhKpoHgFkWBHZCRc7u52b1VNu8rBhGHSHgA/UE44Rc3371x3QpE0Q1tQqc+OWyH9BN64mheTWHjtLf1KIhIwk4qIVVtOdZbBuOfBjGiZINLeibY+gVCQIKC6n8a5n/b6FrakNZA6K7+NJsiUkBFBoqGnUVikj1jlZXQaE1wrYfGA6khHk+Rx/G0ciVTdjNEjwpSPO16SX6eXBNSAUic8yKrNO+weOmIOqnxUD3CAKngAog0HbMNTnDa2yu8m7AV0hBxWFPbr5/ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBCqeVx5Kv4RIl0MjLZBQ7gSKnZKPvpZFOi29ARHYnzIUoVRmS0nZeojE38lm8Bsf4XmERdO6PhZt6R3pZO2Dtv1LcYVP3jqeY0Z5lQ79dQPfgzj8fsaT8E/KcIVdeqf40YkqSnnjMXf48j+qOE9uWumb2AzDk4mhsKfpB53aASjRqMkhC5/zs/PAXrFe9PZMSRxMS5RvSM98DfpxzDm2typdzOyqXBNitvxGi5+x1BNMkM5EofGgvIfS+bJIwq7zlvD/LRLG39pdLSlOYHgcyUqaCKL0sAEQqXd2OjQI8CImHjhEl3cLFrXr1/lNHrHyMEXX+RB5t5HkcogREVVSHC","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"6da09d33368a4a41b8759f2dd7ad2d11"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' headers: cache-control: - no-cache @@ -273,11 +273,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:20 GMT + - Mon, 06 Jan 2020 14:33:38 GMT expires: - '-1' location: - - https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0&request_id=6da09d33368a4a41b8759f2dd7ad2d11 + - https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0&request_id=316ad55ca13140b3af1e798f651e313a pragma: - no-cache server: @@ -319,8 +319,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANMchofrsvaWQDd1yfmb9sB6tfFTy8WoEiwGEy4AsfLWGnmxC93rOzaLr/v5f2bCdhyBKn5+KOleBhKpoHgFkWBHZCRc7u52b1VNu8rBhGHSHgA/UE44Rc3371x3QpE0Q1tQqc+OWyH9BN64mheTWHjtLf1KIhIwk4qIVVtOdZbBuOfBjGiZINLeibY+gVCQIKC6n8a5n/b6FrakNZA6K7+NJsiUkBFBoqGnUVikj1jlZXQaE1wrYfGA6khHk+Rx/G0ciVTdjNEjwpSPO16SX6eXBNSAUic8yKrNO+weOmIOqnxUD3CAKngAog0HbMNTnDa2yu8m7AV0hBxWFPbr5/ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBCqeVx5Kv4RIl0MjLZBQ7gSKnZKPvpZFOi29ARHYnzIUoVRmS0nZeojE38lm8Bsf4XmERdO6PhZt6R3pZO2Dtv1LcYVP3jqeY0Z5lQ79dQPfgzj8fsaT8E/KcIVdeqf40YkqSnnjMXf48j+qOE9uWumb2AzDk4mhsKfpB53aASjRqMkhC5/zs/PAXrFe9PZMSRxMS5RvSM98DfpxzDm2typdzOyqXBNitvxGi5+x1BNMkM5EofGgvIfS+bJIwq7zlvD/LRLG39pdLSlOYHgcyUqaCKL0sAEQqXd2OjQI8CImHjhEl3cLFrXr1/lNHrHyMEXX+RB5t5HkcogREVVSHC","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"6da09d33368a4a41b8759f2dd7ad2d11"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' headers: cache-control: - no-cache @@ -329,7 +329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:22 GMT + - Mon, 06 Jan 2020 14:33:39 GMT expires: - '-1' pragma: @@ -373,8 +373,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANMchofrsvaWQDd1yfmb9sB6tfFTy8WoEiwGEy4AsfLWGnmxC93rOzaLr/v5f2bCdhyBKn5+KOleBhKpoHgFkWBHZCRc7u52b1VNu8rBhGHSHgA/UE44Rc3371x3QpE0Q1tQqc+OWyH9BN64mheTWHjtLf1KIhIwk4qIVVtOdZbBuOfBjGiZINLeibY+gVCQIKC6n8a5n/b6FrakNZA6K7+NJsiUkBFBoqGnUVikj1jlZXQaE1wrYfGA6khHk+Rx/G0ciVTdjNEjwpSPO16SX6eXBNSAUic8yKrNO+weOmIOqnxUD3CAKngAog0HbMNTnDa2yu8m7AV0hBxWFPbr5/ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBCqeVx5Kv4RIl0MjLZBQ7gSKnZKPvpZFOi29ARHYnzIUoVRmS0nZeojE38lm8Bsf4XmERdO6PhZt6R3pZO2Dtv1LcYVP3jqeY0Z5lQ79dQPfgzj8fsaT8E/KcIVdeqf40YkqSnnjMXf48j+qOE9uWumb2AzDk4mhsKfpB53aASjRqMkhC5/zs/PAXrFe9PZMSRxMS5RvSM98DfpxzDm2typdzOyqXBNitvxGi5+x1BNMkM5EofGgvIfS+bJIwq7zlvD/LRLG39pdLSlOYHgcyUqaCKL0sAEQqXd2OjQI8CImHjhEl3cLFrXr1/lNHrHyMEXX+RB5t5HkcogREVVSHC","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"6da09d33368a4a41b8759f2dd7ad2d11"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' headers: cache-control: - no-cache @@ -383,7 +383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:23 GMT + - Mon, 06 Jan 2020 14:33:40 GMT expires: - '-1' pragma: @@ -427,7 +427,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?includePending=true&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1577456660,"exp":1709044460,"created":1577457260,"updated":1577457260},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1578320618,"exp":1709735618,"created":1578321218,"updated":1578321218},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -436,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:25 GMT + - Mon, 06 Jan 2020 14:33:42 GMT expires: - '-1' pragma: @@ -480,7 +480,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?includePending=true&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1577456660,"exp":1709044460,"created":1577457260,"updated":1577457260},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1578320618,"exp":1709735618,"created":1578321218,"updated":1578321218},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -489,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:26 GMT + - Mon, 06 Jan 2020 14:33:45 GMT expires: - '-1' pragma: @@ -542,7 +542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:29 GMT + - Mon, 06 Jan 2020 14:33:46 GMT expires: - '-1' pragma: @@ -595,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:31 GMT + - Mon, 06 Jan 2020 14:33:48 GMT expires: - '-1' pragma: @@ -653,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:33 GMT + - Mon, 06 Jan 2020 14:33:50 GMT expires: - '-1' pragma: @@ -699,8 +699,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANMchofrsvaWQDd1yfmb9sB6tfFTy8WoEiwGEy4AsfLWGnmxC93rOzaLr/v5f2bCdhyBKn5+KOleBhKpoHgFkWBHZCRc7u52b1VNu8rBhGHSHgA/UE44Rc3371x3QpE0Q1tQqc+OWyH9BN64mheTWHjtLf1KIhIwk4qIVVtOdZbBuOfBjGiZINLeibY+gVCQIKC6n8a5n/b6FrakNZA6K7+NJsiUkBFBoqGnUVikj1jlZXQaE1wrYfGA6khHk+Rx/G0ciVTdjNEjwpSPO16SX6eXBNSAUic8yKrNO+weOmIOqnxUD3CAKngAog0HbMNTnDa2yu8m7AV0hBxWFPbr5/ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBCqeVx5Kv4RIl0MjLZBQ7gSKnZKPvpZFOi29ARHYnzIUoVRmS0nZeojE38lm8Bsf4XmERdO6PhZt6R3pZO2Dtv1LcYVP3jqeY0Z5lQ79dQPfgzj8fsaT8E/KcIVdeqf40YkqSnnjMXf48j+qOE9uWumb2AzDk4mhsKfpB53aASjRqMkhC5/zs/PAXrFe9PZMSRxMS5RvSM98DfpxzDm2typdzOyqXBNitvxGi5+x1BNMkM5EofGgvIfS+bJIwq7zlvD/LRLG39pdLSlOYHgcyUqaCKL0sAEQqXd2OjQI8CImHjhEl3cLFrXr1/lNHrHyMEXX+RB5t5HkcogREVVSHC","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"6da09d33368a4a41b8759f2dd7ad2d11"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' headers: cache-control: - no-cache @@ -709,7 +709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:35 GMT + - Mon, 06 Jan 2020 14:33:51 GMT expires: - '-1' pragma: @@ -763,7 +763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:34:37 GMT + - Mon, 06 Jan 2020 14:33:53 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml index c39cd07ad89..0d68ab3a92f 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:54:48 GMT + - Mon, 06 Jan 2020 14:28:27 GMT duration: - - '2757831' + - '2533166' expires: - '-1' ocp-aad-diagnostics-server-name: - - S6JOxqfnOkanIAG4msJtwrnfA+xqhJrZ7rLDa//lFRU= + - SFbJInTaT683Cen+qrs+HFFI8cgxwxtSRzegXrfGI4E= ocp-aad-session-key: - - Y1RIbd8hZDg_U9nXm1vpBmO_aS2UCMfDKgAgK1Wed1WRf1LhE6kDorjtlCwhIWuIAYqWeD7hrjF0AjEvq5KyIdkMQyc-8dW5FQhSm4epKTZGZPAJ8PvXTEiVQ_CwKz3Jp7feiUMS02oW_5dmD7pRj7mXtSjly-flgpl6OHSWQn8.e9Fsuwm3Cs5B30G6zbhq8BhTRd8ow1EtfvGe9cNbZnI + - vKU2vrA4VC2NMS7Efq5DtI4nSPmq1MoQb98ljOjYrQFmbfd6re-aTfNmQv4YbhquYag-rm_sECXz5OAK5b3lqMhSJx2w1m253Aqa-vSfGWHGE9-aADQuBuSkdxlW6Q-db6vlVVcTOVznKcYLROEigFmddVjbmoUEkXjbv5gg_dk.2FTGYgJshMLs7yAEwxAdqvzvRRhr_U4VhMWQU-qJelE pragma: - no-cache request-id: - - 5751b597-6621-428d-8c1a-66452feb1c9b + - d72e3b01-7779-4957-b47e-89f370e47907 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -82,7 +82,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:54:59 GMT + - Mon, 06 Jan 2020 14:28:35 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1181' + - '1196' x-powered-by: - ASP.NET status: @@ -139,7 +139,7 @@ interactions: - -g -n -l --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:29 GMT + - Mon, 06 Jan 2020 14:29:06 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:32 GMT + - Mon, 06 Jan 2020 14:29:08 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -267,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:34 GMT + - Mon, 06 Jan 2020 14:29:11 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -320,7 +320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:35 GMT + - Mon, 06 Jan 2020 14:29:14 GMT expires: - '-1' pragma: @@ -364,7 +364,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -373,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:37 GMT + - Mon, 06 Jan 2020 14:29:15 GMT expires: - '-1' pragma: @@ -420,7 +420,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":true,"created":1577458540,"updated":1577458540,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -429,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:40 GMT + - Mon, 06 Jan 2020 14:29:16 GMT expires: - '-1' pragma: @@ -473,7 +473,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/versions?api-version=7.0 response: body: - string: '{"value":[{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":true,"created":1577458540,"updated":1577458540,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}},{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test + type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -482,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:42 GMT + - Mon, 06 Jan 2020 14:29:19 GMT expires: - '-1' pragma: @@ -526,7 +527,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/versions?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":true,"created":1577458540,"updated":1577458540,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}},{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test + type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -535,7 +537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:43 GMT + - Mon, 06 Jan 2020 14:29:20 GMT expires: - '-1' pragma: @@ -579,7 +581,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/?api-version=7.0 response: body: - string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":true,"created":1577458540,"updated":1577458540,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -588,7 +590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:45 GMT + - Mon, 06 Jan 2020 14:29:21 GMT expires: - '-1' pragma: @@ -629,10 +631,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -641,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:47 GMT + - Mon, 06 Jan 2020 14:29:23 GMT expires: - '-1' pragma: @@ -682,10 +684,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -694,7 +696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:48 GMT + - Mon, 06 Jan 2020 14:29:25 GMT expires: - '-1' pragma: @@ -740,7 +742,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":false,"created":1577458540,"updated":1577458550,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -749,7 +751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:51 GMT + - Mon, 06 Jan 2020 14:29:27 GMT expires: - '-1' pragma: @@ -795,7 +797,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/backup?api-version=7.0 response: body: - string: '{"value":"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLnI1WV92amtNZ19RQ2d5eWt3TURKNFZnWXJieC1PYzZfN0ZOcTFsei1UdUFTNy00N2VQN1lHQUZWTDY4eTZfdFpUdkUzYkpmcEdERzNoNXpjTkc1NFlDaU1GWk5kUlBCRWNpUDNodTNpWFZtVnBGTUJDVGpxaHhPSnBDYndlVVBjU01qS1FHdllFTXU4UlpORTVhWDJBQkt6Yl90cklSR0VJU2FOLXZtXzg3TkhuejZwRGgzWDdjRzJKNzdCZWg0Vjh2VzRmWTdpa21QRkxWUUlZVjdvaVU5eW13VF9rdlR2M0pYQUlMZldzdjQydldOeGxkdE93RUFTNDFxeWV6VFdpd2ZDOURFVlJKeFNYcm1yeFB0NUg5SFFpRFRBamIyVjNWWi1XdUYyQU9ubWtHbnByMTVfMmR5VGdYT18zWkVCNFdRMU92WkQ2X1JMdTlWc3FxVmRGUS4tcHdvWlRlb3BTQWhKakdYUF9UTmJnLjk0ZnEtSkUtc1lieW5CLXJpMlpveEliT2pJNjd5SzB2VXZaVlBYU0ZSdHN0eE5UNkFHZUdQbHFoQTJjMW5UOW9yN3k5bXdlTktPMVdZYTZVUUhMd2EwUUlhUEhJYkFLbTAtVVRVc1NqYnl6U1VtMkNQUnFwc2Z0OV8zLWUyUi02bml4MjBzWGNPSW5XTGVkUHBHRktMUDItODdZbUx5cndWWVRoaURTVFU0ZWI5bWVhMWpPVXdfdXlwbDNJM18zUWM0ZlM3VEhORHBjcTRQcTRvUUJpSXpKTFlzMFNRNW9hM3hhaVB6bTNVYUxOcnFDU1A1RUNEdnkyazVaRTJoWHVsTnVTdG82aDY4SkpsWVRaNFBvTGdCNW80V295X3kzOUxLY3F3cG9DOWtfYjY5TFNUZ1VKQVo5eHpFRmx1OS16ZGU0NlVBV05xcnhWMkhtcTZ0SEpuaXhGZnpwQ0wwVDlKNEhLeHI5UWNVV21ybzRIUUVmaWFLMXF5bXVwcGpGY3VFaGx1R2pRMFVCYVUyaG43U3ZqV08wT2tqS2pQLU91SS0wTXFxWEkwLW11MWpZTmQ3VDZYcUxZdVlmQVFVeG9PZk04UUFpR05fNXRpbUY1RXFPV3dCV2JkdFBCN19RYk9Na05MODBERXZiZ2NNV3FVc2x5X0l4STh2VHBaZzBReWFlY0N2Ri1Xam9FZmhBNk5TS182ODFvM0YzbFdvU2tRTTNxMy15dWt4VXVpREdJeXlIakxUUHBHREtJUy0tV0xDdTd0T3Z2RldmX29LTlhJQ1hBNDZMd0ZjY2VSQld3SVVneVZ6cDBac1pGWEthRmhDRTNRVG9McVJESlMxN0FQVFhNWWlOdlpYR1lfOHI1al9aZkRGV1NaZDRtWlNLWHFHZzVUWUdRWWZpc2pxd3c5SWx5WGpKV3JKci1zRmN1VUJ2Rm5hamgtZFQ3Q2R4YlFOMFJ0Q3p4Y1ZTWENPZ3NTa05FYmY3SFpCQnZGYXVheXpyRDdMMldSbkUzYkRScnd4VU1uMWJzYjFhdHFXWUJXbVhaQ25DMzFpT2VidTY1LVdOMU9Td19scDd3NjBSSUk2YW1ILUlDMGtvRTFsMGhwemVXM3Z2ZDZLbkZJR1Bpd1VCd1RUSzEtSG9INzlmTWVjMjYyTjdOX2VGU0Y1dmpqajlWSWlUYjh6S3l5d2pPYmVrOWszcDFQNl91bk10VngxcHhvOE9ia3luT0lHSTZTSmtPdVpRQ0pBWnhwcEpZVlpnenBvWV8zUDVkNktRaF93bnFiNFk1VGl0eFBxMDFoaVRfX1owLXpHQmtwSm8tOWQ1Qk5jS3VUNFpvX2ZDcWxFVm1ycjF1MVJpZ05HSFRFTGZCY2NENUJ3YW1QY3ZHRE9oSEVSZTREMVVlX3MydVVRU2sta0RUY0J6NS1RMlc2V04waThwejdBcUgyZFAza0xfRGFVZVd6U1BQaTMtc2NwWGZYaWFtZXhVOGVVT1VEV01UeUF2b1AwdDVadEpMaTdLSXU4el9IUWZrUUZ0MnNycmlwanpSaWNWeDdUWm14SzVORE5zbmFjVGgtVml1MlhPMlVUdGRFN1RVX3BHYWlIaFlQcnhQcjg5LTl0bXJyZG1DNU5OelExdV85bWk2RHF1eVdvUV93QjlvTTBLTzNpT2lDZHdDRV9ucjFWQjZ6NkdWOWN6TGJtdUQ0bkw1M0VpR2Z4NmxtTmJ5QXc2M0lKVFdHZ3NhVmVHeHAweEQtM1RkMnk1N1R3NUhBZXhYTW51TXM1TkNWVTh0aGVsT3NKcktpYjBETXk4R3doOW9hRkpCM1o3ZXoxNFlUclhkNnpYTThsY1gwN0ZHSXptcGxmd0JCWkNHbk56QlFSZFJIVWs2VTVqbWU0VE5GaXliOUIySjRMTG8teVNFQzM0WUpERFExRkxXS2g4MGhTMGtVWEltbW8xUjc3U24zRVdxTEdXc1U2UlVJLXpHRlRfRG5HcllnU1ljVllDaGNSOXp1ank0Y09sdjFReTE4a1FZcTVsMDhKRm83a1BobGh6bEdYcUZ4R0RzWk5YaDRpT2ZZNl9BMmpCMW4tdThRZm9nTVBiVHIyUWFIRGxvT09tZ1JlNEN6cExUaXJHa2hid3hCNGwzY1l0LVlNbWxQRnI0VXBidUxHX0dWZmNSV3NFOW5rMFR5X1AyUFZfNkNQc1FkYWg1VXVKRFNZcUYxX1VLQzRPN01vZTJYMENvTkQzZkhTWDlBTDV6MWdwa0xrN1p0YnFZOGJ0b1MxaUhfeDVJXy11Y1ZVaEdSa3JzTlUwWUxMbmRrU2RzLTZybXA5d25IaHhYbDdpc0JwRWFKQTVZeEFFdU1pcGt1NEpfTVhUU0psdnhiT0RaS3pVUWhfVmJmay1qb0x0NmdOdlY4all2NG5FTzNMRTZ5UHlkLWRpbV9NMTRaMUxVVEY5SVdIUVd1WjFmRWtWdlFKZ3F0SVBSeU03VmlQZmo3LXh3cE8teEUxYkUtblJhcHlqM0JyZEtBMTV0Q2N3ZC00MmJLZVA4NHlsR19WRnR3cWVuakhQWjRwdmVPS1NocnRMUjZXZlVjMHIwek9FdmRaalFZRXdVa0RzT3MtTmMtZVZoV19XTUpKZ0NBSlNzYkV0VlFCdFFUX212YzY4OE1wS3RMRjI4cEVUT1BoQ1dDNm02V3JRWUpZVnBRU1RMNGs4eHdqR1VkaGp2Z0VHUFRBMWk4NWNBcE1mWm1YbHFJMDNabzRISlpZdWsxLWNLYmwxcWs2VEFCVzlockZpMU9uYUdxWUFxRk1BOFhubmE2VFZ3VW9kcjBKZzdrOW10dy0wMmhDeGZncFZ4QUNVNldtcktyeklReDhqSHJKclN2WGtxRHpiSldzSG5uaTh0ZWtfdXVLanFIdGFCZkNYOV9pNWU3TnAwbUhOTmpSTXdWY0xKaW1OZXlWNkxHRWJJWUpULWZzNlJpa1FfSXRvYjBDSzRnQ2xzaE1WaUtlWWJiTHVXaHBqWUczRmZINnh6T0tGa2JnRGR6Y2VEY2dIYkJ4YzVQampnN1FUWHJVaWlwWktDTzNFOWo4YkxmaVgtMExtQU1pZzhJeDJyNk9XVEUzbXZYU3pCVko3NFdRYVZEYjZaNkxOZ0ExU3RWWkJTanRJQ1kzU3M3aDN4VnJXUDR6bURZTjgyM2RqZldKMEtkVHh3MS12Y1J2STE3ZVNidnU5amIwRXh5SVhETGQtenVIWE9DTjhKT1Y4VUV3UlJ6RDRlTmVBN19BZmpPRm1nbW1aSlhCM1hkS0dVei1sNGNKQjBNYzY2LWduTzN1QnlKNUFidDdBQWVIaXY4bG92SG9GWHp3NV9lUE5qRUpJTFhGelctRVJtTHZfeGtVN1NmU2JvSWtmUGpoWmlseTl5U1hSYUF4UlJEQnU3ZEczTy02dkNMOFpVWXI3UF9hX2VkUXo3YnltWlJHc1JZeC1ab1lhLUhNa2RTQmJ4ZTZTdGIzeExidmxROWVrbEVNNDhkbzB1Z1NZX1NiUDVNbnRlZEZEV3FWWDRjcXFQdFV2VWJmeFRzU05XbURld0NJcnZyNEFldWNPUGo1aHdWakdJTjRWUmJ3WkdTZFZrZmlXMHNxTkpTaVo3RF9MLTRfTUltQ0NoemFqRkZfZnJMNmt5LXRjSWZqVlFYcVlPaEFRa2JQZ0RZclU5aVUzSUdZdkxnOHJOSjcwc19DbTBHa1daNjcxVV9GWDNyazg5UVMyemhFNDh4LWV3M0Y5VUhMSWU4cU5IT052SHp4RmRqWTlqNllDZDBwbGZ6VE90NGZITy1UWlUyaWJRdl9KNm9oSWM1dlBMQWhWX0UtVlFzcEVmYzVEVm5oR3BYZHlxSEhDc1FJVTN0cTRibGxVV1pLRGtWbjhyazd4VkV1ckdtMDN2OXlKZ3R0eVVhQ1pPdzFjb0lydnV3VkplZS1EeXQyd0loSzN3cWVHZkR1b0VRVkh0WEdnc3c0X1h6RHpETUw3Z2pGa3pES2UwaWhuTmRxaGVDOU94WmtRWW5ObFVxck9NNVFYNEN5TE9ZRHhIUzl4dlFYT0R4MUdwWUVGQkJlRVNQbnVBampvWVdBbDZuNDVRUHdiUHdoLUduMEkwWFhWZWZDZkdrbFI3ekwtak5DNzhHYkJwRC1VeGRiLVFQMDhvZjE0a2tQR2RYSW5tR1k2dmpPOGJwNkxyVzVrcHZhdUJkcXNTdl95YTJwQTBqZ2Z6WnhhcVd5ZV9kQURxOFlpR3hMdVdCLVE0YktNLXhoOHBTX2RidERGTXhFMmdlLW9jTUZSUFl0bUxrVlFWR0ZtY0hmUlVnb3JsWDhzc1BkSmxIMXkxUkFNMEx0NkFtQ0ZXQXFNRDZWMWkxQ0ZYdldSNGZfSVNSWmVab2RxanZKRlpTeUtiYjJFUVVQb2hRRGlxWjlyTHZGdlFJQlpLNTVmZWxFYThFWF9tVkJYNFRYazJfek5DbTg4TS1pOUNiQlFxdm1FSnJzZ21yUms4V0MwbjVUNmNFdnZ4ZGxoZHh5UmFkWEx0V0NXWEVSUjhYcEpEYXJUSHV0OFJMRGVvdDg1Wk9NUjc4bTRBaWlNRmIzNTBzQUpObGxMRHJESm5XSk5WUXd1S2dCeFptd0wteVBKSVhENVlXZU5ZRTVSSWp3S0pULWlMTWlXbXlMay0xLXU1RjNEQzgybXhUM05ERVNFVmdTb0NqcHpPY3ZiSWt0ZHlpeUNYVUwxYmNSRGZHNGphcnMwR2ZKR3FoUUNHTndoZ0x1bzFaUDE5SzR5NllxX3FCVVhERVpJOTlTX21GVmozd21jQ2hGajFGM1ZVQVlzU2UzeXFhcXpGekhzSUZFV1BqX0Q4TU1RRDdRcG1kYU1UcldXLXlKRTdVc3BNS3dQX3VNZ3Y1elBYYlBkZkJCOGFXNDNrYlZLbmdZbFFfMDRjMjY0bWZVamJTOUNPNHFWak9nYlcwNXBORjNXR3VnVEg5czVabi1ZSTYybTlseVhNSDA0Lm81LUhONHkzVklJVGRrVExTOWRfVXc"}' + string: '{"value":"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkFDVzdtTDFhYkhKNThLbFg5YVJZTGo0SmtrYV94d1R3a084ckxvTG8ybzdTM2FTNU9WMl8xOHUwUmNJY3ZsdFhUa3RCT2xnS1ZwMENyOGN6WFdmSnc1Y0o5Nl9QdVJCeHduYUFDVGZVWF9zYUlvSjJSWVktT2dnYWE4dkZ4RmNyNGgtVGtULXNkUTVkWk5TV19PNlkzV1hIMkM1YlpsRmJkQXY0ZjUtaXdzWTJUUXdfU0dVNnhNNGx0RWt0TEw3dUlVU1RWaFh5aFdDN3NvbDlibEFKTkI3T2tpMzdSeW5qTFdaNkZ5aW5OeVRzQVBRaUtjOUVVVzU5cFZwT2d4NExwR3ZScWJUSjU0LTNjZkItdW1sLS1ITzhKWmRxdDVFcEJSeHR5ajhLV0ctY0hDN1FtSWFkeHFPRXpUUVl2SUNlSU1YT3FmWnFtb0IzMHphTlIxZUFUUS5UZWhfNEdEd29PaFZhbDY3bUpTUmJRLnF0b25FVWlGTHBwZWFzeW53V2RkZC1XQkd2QVQ3aUlOTG12akhVNWhoeURUeWF1VmFiYWRINlJDZm1hTGxqUlphclAtT0lCTjM5N1RURFU1eWN0b01SSFMzbTZHcWVDbkRZcVRQV01OcFZ2Wm5fcVYtdmhXTzdZX0R1eGJWNmFlYkx0Q1B2bmQ0OE5ONW1XZ3RJTTAxSVdZQVJNQ01IOUk2LURXZFZ3VE9hYzN0MGxHa0dPQjZyU013MzBLZkFXcWI3bDRTb3owUUFncDlwY2JsRDBuaThINkJ2amVtTlFDTnNwZ2E1T2pISWJ0UlBRTWNxWDd1c0YzYWg0bmxKS2ZYNEJWYkZralN1TGNVYzdITzFMSmxUUmZ0ckV6MHNKSVRERUZpR0VLUUJVMVpqZXd3TFJmZ3NsWGtXNndnb2VEbl9yaXoxTFA4cTVHZTR5X1UxMDFycmR6WlFrZFhZWnlvZmEza0J6X2FuWkpCMVYxY2Q0a0NuaU9nUW0wdlpaTFd5ZWw3QkpRcnNaWXQ3dnR2Z1lwUGNMdDdFNmhCUV9NLTBlRUU1blZDemtxQmNjbWxFa2YxOTRacFZNVTZYX0lHaFBfZl8zRnNCcDVLRUxXYl9NX25OcnJMNk5vMXlrTF9nZEJBdFhHaVNUSnRDNVFLWEN0SjVHbG9Zd3RrTUlvVm1GM3BUQURWd2FpZGJ4aG1GaFpYdTE4Y05vcUgtaVliaXhuWW5CTTNJVVF6enJHdk5IVFZ5VUJqRXVBS2VWeWZtSXgzQmc5cnZ6QWV4UzlGN19RbWVGVUVtUDNPbzFVcjQ2QktTWVN0LVJpSzFxMW1odHRWY3FhTHQtMlp1WVJQakJKME1odzRyVUxnT2l6d1NPN2szUlVKd1dDeWJsUHBfZDV0ZkFaOEtqQVZOMW9HUTMxci1PcEtiTWFKQUdkWW5RZzlzcVo3dXVyU1A0UFhkMFowV2kxc1I5bngyYWxTd3VtT0pHOVdkSjNWNGhuWUJYbjFMTDJrZVRlLUUwMUJHeWtoM0xfdXIwX0pqRm4tOE92aEF3ck1sTUp2d0xpUWp6UFk3enJ5Y0N3VzFreFlGX250VXphUmdTdEJtVk1JQzdKT3MxSUVTWHFnSXYtZm1vNEloNmpiTTdPMEpTZjc2UU5DcmN0VXlBMThlQXllWDVMU3Q3a3FEeGtnb0Zxb2dXc0h4YU9VOGZRYlVyZVJCZTFJRU1IV1Vma3M4TDczSW0welpKSTEyNTdMMjVtZlpPT09rcU4yWXNiZW8tSnd5aC1GZW53LWVwcWlnUVdDTGZPellUdlVuN1hybUljbkZnSEVGTXNnWE9vNV81cFRHQmkwY05hTXVsY2ZHbXhHYWNYWWRWdnduWnhybUxBTXIwVDJ4cHZWLTRLYkF6ZFlIQXVkbUg1dGN6a3hYcnRtZ1pMVWxKY3hnQmYzLWE1bkRnQTdYcm5pd3BTRHJwR25sY3VWeTZxR2dIT0FSajNpcU53LWdMcVlDeHk5MlhxNW5VWlhzSUIyTW81dWljSUpaY3B1NTFPYklSLTc0cTF6Z0FxcDVmakU5R1dvVklrcUk0NFp0WThMSmswWUlfdzY0VUdKcEFqbVduRzhfOGdxOXBCc1dqQUVCdEt2VWhnSzctUllyblBTQUYwTGhQckl4OTY1aW9HZHJidHYycFV3WHhNYW9xYUZ4VEFKb0ZVYU1GY0FOUkNUSUVXZmpPQTFxS09xOUFHUm0tbmpYYlpqalpUamg0SEl6VVpETVdhNnZLSmVRa0UwT3d3bU5kRkZBaG1yRk5iT2hmMzZYaXdnZEpkSXpadkdMcUVPN1BlcE9Wem1nVC1CX1V3MGxPWXZIQW5CMDRMRGxUSjliQkFuc0paTW9yVnB5THhZOXBhVmJGb3FCSmRUVmE2RWpTQ0RwSEpUYUQxS0pzM3loQ2M2RHM0V0dpRHc5Z3ZVOG8zWjA0cnE3MDE3N2lBbXB6UUtlUE9uSHk3VHE2YWxBUmgxVmlQVWNTbzBhUHhBZkxjMVlrXzNlSFhYZlRHRFFlTzRpOVE5ck5leGUzMnhuaHNTbFJhaHNEeVM4QW1rSWlna0FLaUlOdVJVa3hPaDZJYzVLWWZLS00yZjZkTGlQSzhJVEs2Q2RMdTJEVWhfYVQ3YVN5R1RycFFURHpUbnhxcWxWNkhzakNiaWwyUVhrclppekhGZkI0cllBdmxwa3RkV2N3dkI5WmZMYThYdXo5YzcyVWpGdmtXQzB3VnNET3Z6b2x2MGtLR3JYWF9NZzBBT2JQbVd0aVBRLUV3eVZuLVkwZ2lrb1VneXVwWlc3UE5aOFlTQURzYVBoNk1EbkRVa1R3SUgyS1U1dDRuNGU0S1FlaDlqV0F5bG9rUkxUX29wRm9ULVJOcXJseUtteGt2YS1PUUJJSDRic05KaFF4SXhZeGVkTUxnSXpFRmVnWHJNSHhoelVoMWp2cF81aWFDR1c3WTIzNXNYbVZ2RkJ6Q21wYXBjbjNJRGN1N3RDblhhZ1M5bVplcFlhLWhwNFdDVklMR09kdEl6b2ROWnl1dFdZQ3JodUE0bFk1LTdJNEJma212dTRRT3k1UFJMdWdQM0hPa01DN2ZrSmVwRzN2QVBzb1hvaFJWLTd0eF9UMjF2NmNYVlhKZk9HRlkzejNxenM5MUNzbUZ2WENtRUQtZUMweWszZFNPdVg0Sm13X2V6ZFRXRTFGN3NqMW9sTlMtRDJrYlJfNXJOemQyR0hYU2VDSVQ0ZUhaY2syZF9sWDVuQi1rQ1Y0MkhxQklrZk13Z3plOUFRTnZJRmxMZ1ZsRGl5RzJhOHlwRDN1T01qSzFHdTBwQWtqVE44ckFwTHc2S05FbWNOdTU0S3BwZmZzeWU1LXcwc1hOT3BZdmFWVHdZMUNyT0psd0RzVkRPSjh6UUJnOTlVWWxkSDdFTXdYclUwejhIaGlOdXJLQXlpRWhlMDlvNWg5SGpscEFteGdNWEhTZlJWUVZyUDROWTI4QVZ2LWo4RENMdExPb0RYbkJRZlJoTHd2R3dtenpYLXBFZlluS205SldWc2V5emJ1S1o1Q09rZ1NLMGdUSHplWVBrQnhTSEF4SEdWNXZWREhiMURmVzc0MkpUNWp5WnRGbElwd3VrYTRpMlFJcXBlc0piaElZeUJ4TW4zYkZHVVdLS2dFb0FBNmM3ejlsZk5Cd0hDVl8yRGw0cUZCNEJ2WWxfTzlMZmRNZGZ5QnNySEpWa1gyQnByei1tNjkwWU9IVmcteUtiT2lfcS1vdHhJLUhpVTd0emFoQ0Y3NXN3TW04dHJwSDk2ZFJBdGhmaExuYXc4bFBJVGItSkhqT2ZmbXBxYmlDSFJvOTF6NlRnNTFkZHQwTy1ITTk4R0tsMlhkT2RmSVRVekNBLUlUWUQ5U3F4TjBHcF9YRWMwektIRlhJNDFCc0NpQmZHeXV5V3IwTHBCUG55YVFlQy1NNHptRlpZNnp0UFZuS1VaLU50X1FmWWZueXVhQS1KRWZpMUxtRDdZd3RKUzlRbkk1emJGOVJSam1sSG90ZzNrM2RqdlhzbUZ3M2tWY3BKaGk0ZmczNnVRTVJuV3RtZ2k0Z1hVTk5nbU1ZeGhya0I1X1QyekUzZkQ5emsxVWxOb21WczluMkl4Z0l5YndQYkFtajhNell0TjBOX2hmOWxGaWlPN2tkak9uOUpZUnYtaURfRHRPNXNNV3NBSGl3d0FzMllQNlVEaTlSTy1fT256UUJMNW5tdkZmOWdGX19VMlUtNlVQQ3pqd0J3M0lub19VUFl0NjRZQUR0MXBUYlNOUU96NUxQTkZGMFZwTHNqa3NKZ3d6bk5WQTh3SkNJLTV4OU5KRkhSMTBzMzl2N1drbUZoZXhLTmIzNzB0SEtpUmI0STNqT0xla2JmNmFGaXJwV3djTllsUTVLMGZ5aWpid2duUEh3SFBEMXVlMHRIT3hZOHQyY1dZSVhraXo4Z2FCRGU3N1BrbGVINzJ3cU53eWJLX0Frc3dsalVpcklRNTlQT3lEWTMyY09FRzlsOW1yc1VoVXRTdm9VdHE0cTYwOUVDcktISVd2dXdTR2N4cS1rY3VYbkF3UEMzekNzcFVzN0NONzdIdFFMdV9vRzBDaFp2ZzlzVTdsNzd4NnBsU09BMGIwZWZVaEpETERlYTJlM3JZbC1VS2djOVpFWTVmNTZ4TzVqZ3hXT2oxdE1iZFZ3QzdNYWR6MVZ0VXhGYXhib1ZGTC01UEdLNVBUSWV2R2o1UUVxcm82RE1RTVdlRmkwQXlnNUtSUEFBZDdQTF9qSS1jNFlwN2sxWDJQTU5hSVE0d1JxR2lHUGs0WXBuWDRfZmg5TDJFSHJsc0xKOFE4SnAxWXZSN2xENEN5MFNfMkhyUzQtTWg2cUlISWswd195ak9ibUN0X0lXdXVwaFpDY09YWHdTcXdMMEt6bDc0SXkwMmRIZ2JKblB4ZnBncWxvWFpxZmI4OWpEdEZkNFFITWR1OG9zcnNYRTdPS2RyM3V6ODkyT1VydkpLYTFjc3pMS09BbW1iblRDSndLWFozVHJUWEJqZzVfY3M2aWlsaE54SUJFdGpvOHpfbEZxN25Hc1FnbHAzamtXZDFKcDlRMlRkczQ0cTRrMUxOZ3JhSkhZdTI1Z1QxN3NfZFBuV21qeF9Ca2hjMGNDSDBsSm1LUF91dDFJQTV1M0lBOWw5SjhpckJOYTh1RVRzSGI0V1RmMjVYMGdVZUFzV1hkcmNpcVlFX295SmNOZndwQkRtaHZhLUZjU0lVcVVqNHNCdDZsdi1IdUxFd2xiNzFHMXlKRmJyOUx2djBDVnJDWlRIMENSdkhRZHg5b0ptZFB6ajgtR1lmZ0J3SVFURWNUa3JMRHM0RlBCTzBYeEhqY2p1Q2k1bnFOZVJKZEo5TkgwamIxZFJDQTZUS1NpWV9sUjd5MWRrRDBrRjMxdVhEbHNQTVRvM2RZWVp2RlZPZGNpVzljT0ttY1c2Unhfclh3bEpjLmtTLTVXMHdUU3lTNHl0X1c5YnY4TWc"}' headers: cache-control: - no-cache @@ -804,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:52 GMT + - Mon, 06 Jan 2020 14:29:29 GMT expires: - '-1' pragma: @@ -850,7 +852,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":false,"created":1577458540,"updated":1577458550,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -859,7 +861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:54 GMT + - Mon, 06 Jan 2020 14:29:31 GMT expires: - '-1' pragma: @@ -912,7 +914,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:56 GMT + - Mon, 06 Jan 2020 14:29:32 GMT expires: - '-1' pragma: @@ -937,7 +939,7 @@ interactions: code: 200 message: OK - request: - body: '{"value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLnI1WV92amtNZ19RQ2d5eWt3TURKNFZnWXJieC1PYzZfN0ZOcTFsei1UdUFTNy00N2VQN1lHQUZWTDY4eTZfdFpUdkUzYkpmcEdERzNoNXpjTkc1NFlDaU1GWk5kUlBCRWNpUDNodTNpWFZtVnBGTUJDVGpxaHhPSnBDYndlVVBjU01qS1FHdllFTXU4UlpORTVhWDJBQkt6Yl90cklSR0VJU2FOLXZtXzg3TkhuejZwRGgzWDdjRzJKNzdCZWg0Vjh2VzRmWTdpa21QRkxWUUlZVjdvaVU5eW13VF9rdlR2M0pYQUlMZldzdjQydldOeGxkdE93RUFTNDFxeWV6VFdpd2ZDOURFVlJKeFNYcm1yeFB0NUg5SFFpRFRBamIyVjNWWi1XdUYyQU9ubWtHbnByMTVfMmR5VGdYT18zWkVCNFdRMU92WkQ2X1JMdTlWc3FxVmRGUS4tcHdvWlRlb3BTQWhKakdYUF9UTmJnLjk0ZnEtSkUtc1lieW5CLXJpMlpveEliT2pJNjd5SzB2VXZaVlBYU0ZSdHN0eE5UNkFHZUdQbHFoQTJjMW5UOW9yN3k5bXdlTktPMVdZYTZVUUhMd2EwUUlhUEhJYkFLbTAtVVRVc1NqYnl6U1VtMkNQUnFwc2Z0OV8zLWUyUi02bml4MjBzWGNPSW5XTGVkUHBHRktMUDItODdZbUx5cndWWVRoaURTVFU0ZWI5bWVhMWpPVXdfdXlwbDNJM18zUWM0ZlM3VEhORHBjcTRQcTRvUUJpSXpKTFlzMFNRNW9hM3hhaVB6bTNVYUxOcnFDU1A1RUNEdnkyazVaRTJoWHVsTnVTdG82aDY4SkpsWVRaNFBvTGdCNW80V295X3kzOUxLY3F3cG9DOWtfYjY5TFNUZ1VKQVo5eHpFRmx1OS16ZGU0NlVBV05xcnhWMkhtcTZ0SEpuaXhGZnpwQ0wwVDlKNEhLeHI5UWNVV21ybzRIUUVmaWFLMXF5bXVwcGpGY3VFaGx1R2pRMFVCYVUyaG43U3ZqV08wT2tqS2pQLU91SS0wTXFxWEkwLW11MWpZTmQ3VDZYcUxZdVlmQVFVeG9PZk04UUFpR05fNXRpbUY1RXFPV3dCV2JkdFBCN19RYk9Na05MODBERXZiZ2NNV3FVc2x5X0l4STh2VHBaZzBReWFlY0N2Ri1Xam9FZmhBNk5TS182ODFvM0YzbFdvU2tRTTNxMy15dWt4VXVpREdJeXlIakxUUHBHREtJUy0tV0xDdTd0T3Z2RldmX29LTlhJQ1hBNDZMd0ZjY2VSQld3SVVneVZ6cDBac1pGWEthRmhDRTNRVG9McVJESlMxN0FQVFhNWWlOdlpYR1lfOHI1al9aZkRGV1NaZDRtWlNLWHFHZzVUWUdRWWZpc2pxd3c5SWx5WGpKV3JKci1zRmN1VUJ2Rm5hamgtZFQ3Q2R4YlFOMFJ0Q3p4Y1ZTWENPZ3NTa05FYmY3SFpCQnZGYXVheXpyRDdMMldSbkUzYkRScnd4VU1uMWJzYjFhdHFXWUJXbVhaQ25DMzFpT2VidTY1LVdOMU9Td19scDd3NjBSSUk2YW1ILUlDMGtvRTFsMGhwemVXM3Z2ZDZLbkZJR1Bpd1VCd1RUSzEtSG9INzlmTWVjMjYyTjdOX2VGU0Y1dmpqajlWSWlUYjh6S3l5d2pPYmVrOWszcDFQNl91bk10VngxcHhvOE9ia3luT0lHSTZTSmtPdVpRQ0pBWnhwcEpZVlpnenBvWV8zUDVkNktRaF93bnFiNFk1VGl0eFBxMDFoaVRfX1owLXpHQmtwSm8tOWQ1Qk5jS3VUNFpvX2ZDcWxFVm1ycjF1MVJpZ05HSFRFTGZCY2NENUJ3YW1QY3ZHRE9oSEVSZTREMVVlX3MydVVRU2sta0RUY0J6NS1RMlc2V04waThwejdBcUgyZFAza0xfRGFVZVd6U1BQaTMtc2NwWGZYaWFtZXhVOGVVT1VEV01UeUF2b1AwdDVadEpMaTdLSXU4el9IUWZrUUZ0MnNycmlwanpSaWNWeDdUWm14SzVORE5zbmFjVGgtVml1MlhPMlVUdGRFN1RVX3BHYWlIaFlQcnhQcjg5LTl0bXJyZG1DNU5OelExdV85bWk2RHF1eVdvUV93QjlvTTBLTzNpT2lDZHdDRV9ucjFWQjZ6NkdWOWN6TGJtdUQ0bkw1M0VpR2Z4NmxtTmJ5QXc2M0lKVFdHZ3NhVmVHeHAweEQtM1RkMnk1N1R3NUhBZXhYTW51TXM1TkNWVTh0aGVsT3NKcktpYjBETXk4R3doOW9hRkpCM1o3ZXoxNFlUclhkNnpYTThsY1gwN0ZHSXptcGxmd0JCWkNHbk56QlFSZFJIVWs2VTVqbWU0VE5GaXliOUIySjRMTG8teVNFQzM0WUpERFExRkxXS2g4MGhTMGtVWEltbW8xUjc3U24zRVdxTEdXc1U2UlVJLXpHRlRfRG5HcllnU1ljVllDaGNSOXp1ank0Y09sdjFReTE4a1FZcTVsMDhKRm83a1BobGh6bEdYcUZ4R0RzWk5YaDRpT2ZZNl9BMmpCMW4tdThRZm9nTVBiVHIyUWFIRGxvT09tZ1JlNEN6cExUaXJHa2hid3hCNGwzY1l0LVlNbWxQRnI0VXBidUxHX0dWZmNSV3NFOW5rMFR5X1AyUFZfNkNQc1FkYWg1VXVKRFNZcUYxX1VLQzRPN01vZTJYMENvTkQzZkhTWDlBTDV6MWdwa0xrN1p0YnFZOGJ0b1MxaUhfeDVJXy11Y1ZVaEdSa3JzTlUwWUxMbmRrU2RzLTZybXA5d25IaHhYbDdpc0JwRWFKQTVZeEFFdU1pcGt1NEpfTVhUU0psdnhiT0RaS3pVUWhfVmJmay1qb0x0NmdOdlY4all2NG5FTzNMRTZ5UHlkLWRpbV9NMTRaMUxVVEY5SVdIUVd1WjFmRWtWdlFKZ3F0SVBSeU03VmlQZmo3LXh3cE8teEUxYkUtblJhcHlqM0JyZEtBMTV0Q2N3ZC00MmJLZVA4NHlsR19WRnR3cWVuakhQWjRwdmVPS1NocnRMUjZXZlVjMHIwek9FdmRaalFZRXdVa0RzT3MtTmMtZVZoV19XTUpKZ0NBSlNzYkV0VlFCdFFUX212YzY4OE1wS3RMRjI4cEVUT1BoQ1dDNm02V3JRWUpZVnBRU1RMNGs4eHdqR1VkaGp2Z0VHUFRBMWk4NWNBcE1mWm1YbHFJMDNabzRISlpZdWsxLWNLYmwxcWs2VEFCVzlockZpMU9uYUdxWUFxRk1BOFhubmE2VFZ3VW9kcjBKZzdrOW10dy0wMmhDeGZncFZ4QUNVNldtcktyeklReDhqSHJKclN2WGtxRHpiSldzSG5uaTh0ZWtfdXVLanFIdGFCZkNYOV9pNWU3TnAwbUhOTmpSTXdWY0xKaW1OZXlWNkxHRWJJWUpULWZzNlJpa1FfSXRvYjBDSzRnQ2xzaE1WaUtlWWJiTHVXaHBqWUczRmZINnh6T0tGa2JnRGR6Y2VEY2dIYkJ4YzVQampnN1FUWHJVaWlwWktDTzNFOWo4YkxmaVgtMExtQU1pZzhJeDJyNk9XVEUzbXZYU3pCVko3NFdRYVZEYjZaNkxOZ0ExU3RWWkJTanRJQ1kzU3M3aDN4VnJXUDR6bURZTjgyM2RqZldKMEtkVHh3MS12Y1J2STE3ZVNidnU5amIwRXh5SVhETGQtenVIWE9DTjhKT1Y4VUV3UlJ6RDRlTmVBN19BZmpPRm1nbW1aSlhCM1hkS0dVei1sNGNKQjBNYzY2LWduTzN1QnlKNUFidDdBQWVIaXY4bG92SG9GWHp3NV9lUE5qRUpJTFhGelctRVJtTHZfeGtVN1NmU2JvSWtmUGpoWmlseTl5U1hSYUF4UlJEQnU3ZEczTy02dkNMOFpVWXI3UF9hX2VkUXo3YnltWlJHc1JZeC1ab1lhLUhNa2RTQmJ4ZTZTdGIzeExidmxROWVrbEVNNDhkbzB1Z1NZX1NiUDVNbnRlZEZEV3FWWDRjcXFQdFV2VWJmeFRzU05XbURld0NJcnZyNEFldWNPUGo1aHdWakdJTjRWUmJ3WkdTZFZrZmlXMHNxTkpTaVo3RF9MLTRfTUltQ0NoemFqRkZfZnJMNmt5LXRjSWZqVlFYcVlPaEFRa2JQZ0RZclU5aVUzSUdZdkxnOHJOSjcwc19DbTBHa1daNjcxVV9GWDNyazg5UVMyemhFNDh4LWV3M0Y5VUhMSWU4cU5IT052SHp4RmRqWTlqNllDZDBwbGZ6VE90NGZITy1UWlUyaWJRdl9KNm9oSWM1dlBMQWhWX0UtVlFzcEVmYzVEVm5oR3BYZHlxSEhDc1FJVTN0cTRibGxVV1pLRGtWbjhyazd4VkV1ckdtMDN2OXlKZ3R0eVVhQ1pPdzFjb0lydnV3VkplZS1EeXQyd0loSzN3cWVHZkR1b0VRVkh0WEdnc3c0X1h6RHpETUw3Z2pGa3pES2UwaWhuTmRxaGVDOU94WmtRWW5ObFVxck9NNVFYNEN5TE9ZRHhIUzl4dlFYT0R4MUdwWUVGQkJlRVNQbnVBampvWVdBbDZuNDVRUHdiUHdoLUduMEkwWFhWZWZDZkdrbFI3ekwtak5DNzhHYkJwRC1VeGRiLVFQMDhvZjE0a2tQR2RYSW5tR1k2dmpPOGJwNkxyVzVrcHZhdUJkcXNTdl95YTJwQTBqZ2Z6WnhhcVd5ZV9kQURxOFlpR3hMdVdCLVE0YktNLXhoOHBTX2RidERGTXhFMmdlLW9jTUZSUFl0bUxrVlFWR0ZtY0hmUlVnb3JsWDhzc1BkSmxIMXkxUkFNMEx0NkFtQ0ZXQXFNRDZWMWkxQ0ZYdldSNGZfSVNSWmVab2RxanZKRlpTeUtiYjJFUVVQb2hRRGlxWjlyTHZGdlFJQlpLNTVmZWxFYThFWF9tVkJYNFRYazJfek5DbTg4TS1pOUNiQlFxdm1FSnJzZ21yUms4V0MwbjVUNmNFdnZ4ZGxoZHh5UmFkWEx0V0NXWEVSUjhYcEpEYXJUSHV0OFJMRGVvdDg1Wk9NUjc4bTRBaWlNRmIzNTBzQUpObGxMRHJESm5XSk5WUXd1S2dCeFptd0wteVBKSVhENVlXZU5ZRTVSSWp3S0pULWlMTWlXbXlMay0xLXU1RjNEQzgybXhUM05ERVNFVmdTb0NqcHpPY3ZiSWt0ZHlpeUNYVUwxYmNSRGZHNGphcnMwR2ZKR3FoUUNHTndoZ0x1bzFaUDE5SzR5NllxX3FCVVhERVpJOTlTX21GVmozd21jQ2hGajFGM1ZVQVlzU2UzeXFhcXpGekhzSUZFV1BqX0Q4TU1RRDdRcG1kYU1UcldXLXlKRTdVc3BNS3dQX3VNZ3Y1elBYYlBkZkJCOGFXNDNrYlZLbmdZbFFfMDRjMjY0bWZVamJTOUNPNHFWak9nYlcwNXBORjNXR3VnVEg5czVabi1ZSTYybTlseVhNSDA0Lm81LUhONHkzVklJVGRrVExTOWRfVXc"}' + body: '{"value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkFDVzdtTDFhYkhKNThLbFg5YVJZTGo0SmtrYV94d1R3a084ckxvTG8ybzdTM2FTNU9WMl8xOHUwUmNJY3ZsdFhUa3RCT2xnS1ZwMENyOGN6WFdmSnc1Y0o5Nl9QdVJCeHduYUFDVGZVWF9zYUlvSjJSWVktT2dnYWE4dkZ4RmNyNGgtVGtULXNkUTVkWk5TV19PNlkzV1hIMkM1YlpsRmJkQXY0ZjUtaXdzWTJUUXdfU0dVNnhNNGx0RWt0TEw3dUlVU1RWaFh5aFdDN3NvbDlibEFKTkI3T2tpMzdSeW5qTFdaNkZ5aW5OeVRzQVBRaUtjOUVVVzU5cFZwT2d4NExwR3ZScWJUSjU0LTNjZkItdW1sLS1ITzhKWmRxdDVFcEJSeHR5ajhLV0ctY0hDN1FtSWFkeHFPRXpUUVl2SUNlSU1YT3FmWnFtb0IzMHphTlIxZUFUUS5UZWhfNEdEd29PaFZhbDY3bUpTUmJRLnF0b25FVWlGTHBwZWFzeW53V2RkZC1XQkd2QVQ3aUlOTG12akhVNWhoeURUeWF1VmFiYWRINlJDZm1hTGxqUlphclAtT0lCTjM5N1RURFU1eWN0b01SSFMzbTZHcWVDbkRZcVRQV01OcFZ2Wm5fcVYtdmhXTzdZX0R1eGJWNmFlYkx0Q1B2bmQ0OE5ONW1XZ3RJTTAxSVdZQVJNQ01IOUk2LURXZFZ3VE9hYzN0MGxHa0dPQjZyU013MzBLZkFXcWI3bDRTb3owUUFncDlwY2JsRDBuaThINkJ2amVtTlFDTnNwZ2E1T2pISWJ0UlBRTWNxWDd1c0YzYWg0bmxKS2ZYNEJWYkZralN1TGNVYzdITzFMSmxUUmZ0ckV6MHNKSVRERUZpR0VLUUJVMVpqZXd3TFJmZ3NsWGtXNndnb2VEbl9yaXoxTFA4cTVHZTR5X1UxMDFycmR6WlFrZFhZWnlvZmEza0J6X2FuWkpCMVYxY2Q0a0NuaU9nUW0wdlpaTFd5ZWw3QkpRcnNaWXQ3dnR2Z1lwUGNMdDdFNmhCUV9NLTBlRUU1blZDemtxQmNjbWxFa2YxOTRacFZNVTZYX0lHaFBfZl8zRnNCcDVLRUxXYl9NX25OcnJMNk5vMXlrTF9nZEJBdFhHaVNUSnRDNVFLWEN0SjVHbG9Zd3RrTUlvVm1GM3BUQURWd2FpZGJ4aG1GaFpYdTE4Y05vcUgtaVliaXhuWW5CTTNJVVF6enJHdk5IVFZ5VUJqRXVBS2VWeWZtSXgzQmc5cnZ6QWV4UzlGN19RbWVGVUVtUDNPbzFVcjQ2QktTWVN0LVJpSzFxMW1odHRWY3FhTHQtMlp1WVJQakJKME1odzRyVUxnT2l6d1NPN2szUlVKd1dDeWJsUHBfZDV0ZkFaOEtqQVZOMW9HUTMxci1PcEtiTWFKQUdkWW5RZzlzcVo3dXVyU1A0UFhkMFowV2kxc1I5bngyYWxTd3VtT0pHOVdkSjNWNGhuWUJYbjFMTDJrZVRlLUUwMUJHeWtoM0xfdXIwX0pqRm4tOE92aEF3ck1sTUp2d0xpUWp6UFk3enJ5Y0N3VzFreFlGX250VXphUmdTdEJtVk1JQzdKT3MxSUVTWHFnSXYtZm1vNEloNmpiTTdPMEpTZjc2UU5DcmN0VXlBMThlQXllWDVMU3Q3a3FEeGtnb0Zxb2dXc0h4YU9VOGZRYlVyZVJCZTFJRU1IV1Vma3M4TDczSW0welpKSTEyNTdMMjVtZlpPT09rcU4yWXNiZW8tSnd5aC1GZW53LWVwcWlnUVdDTGZPellUdlVuN1hybUljbkZnSEVGTXNnWE9vNV81cFRHQmkwY05hTXVsY2ZHbXhHYWNYWWRWdnduWnhybUxBTXIwVDJ4cHZWLTRLYkF6ZFlIQXVkbUg1dGN6a3hYcnRtZ1pMVWxKY3hnQmYzLWE1bkRnQTdYcm5pd3BTRHJwR25sY3VWeTZxR2dIT0FSajNpcU53LWdMcVlDeHk5MlhxNW5VWlhzSUIyTW81dWljSUpaY3B1NTFPYklSLTc0cTF6Z0FxcDVmakU5R1dvVklrcUk0NFp0WThMSmswWUlfdzY0VUdKcEFqbVduRzhfOGdxOXBCc1dqQUVCdEt2VWhnSzctUllyblBTQUYwTGhQckl4OTY1aW9HZHJidHYycFV3WHhNYW9xYUZ4VEFKb0ZVYU1GY0FOUkNUSUVXZmpPQTFxS09xOUFHUm0tbmpYYlpqalpUamg0SEl6VVpETVdhNnZLSmVRa0UwT3d3bU5kRkZBaG1yRk5iT2hmMzZYaXdnZEpkSXpadkdMcUVPN1BlcE9Wem1nVC1CX1V3MGxPWXZIQW5CMDRMRGxUSjliQkFuc0paTW9yVnB5THhZOXBhVmJGb3FCSmRUVmE2RWpTQ0RwSEpUYUQxS0pzM3loQ2M2RHM0V0dpRHc5Z3ZVOG8zWjA0cnE3MDE3N2lBbXB6UUtlUE9uSHk3VHE2YWxBUmgxVmlQVWNTbzBhUHhBZkxjMVlrXzNlSFhYZlRHRFFlTzRpOVE5ck5leGUzMnhuaHNTbFJhaHNEeVM4QW1rSWlna0FLaUlOdVJVa3hPaDZJYzVLWWZLS00yZjZkTGlQSzhJVEs2Q2RMdTJEVWhfYVQ3YVN5R1RycFFURHpUbnhxcWxWNkhzakNiaWwyUVhrclppekhGZkI0cllBdmxwa3RkV2N3dkI5WmZMYThYdXo5YzcyVWpGdmtXQzB3VnNET3Z6b2x2MGtLR3JYWF9NZzBBT2JQbVd0aVBRLUV3eVZuLVkwZ2lrb1VneXVwWlc3UE5aOFlTQURzYVBoNk1EbkRVa1R3SUgyS1U1dDRuNGU0S1FlaDlqV0F5bG9rUkxUX29wRm9ULVJOcXJseUtteGt2YS1PUUJJSDRic05KaFF4SXhZeGVkTUxnSXpFRmVnWHJNSHhoelVoMWp2cF81aWFDR1c3WTIzNXNYbVZ2RkJ6Q21wYXBjbjNJRGN1N3RDblhhZ1M5bVplcFlhLWhwNFdDVklMR09kdEl6b2ROWnl1dFdZQ3JodUE0bFk1LTdJNEJma212dTRRT3k1UFJMdWdQM0hPa01DN2ZrSmVwRzN2QVBzb1hvaFJWLTd0eF9UMjF2NmNYVlhKZk9HRlkzejNxenM5MUNzbUZ2WENtRUQtZUMweWszZFNPdVg0Sm13X2V6ZFRXRTFGN3NqMW9sTlMtRDJrYlJfNXJOemQyR0hYU2VDSVQ0ZUhaY2syZF9sWDVuQi1rQ1Y0MkhxQklrZk13Z3plOUFRTnZJRmxMZ1ZsRGl5RzJhOHlwRDN1T01qSzFHdTBwQWtqVE44ckFwTHc2S05FbWNOdTU0S3BwZmZzeWU1LXcwc1hOT3BZdmFWVHdZMUNyT0psd0RzVkRPSjh6UUJnOTlVWWxkSDdFTXdYclUwejhIaGlOdXJLQXlpRWhlMDlvNWg5SGpscEFteGdNWEhTZlJWUVZyUDROWTI4QVZ2LWo4RENMdExPb0RYbkJRZlJoTHd2R3dtenpYLXBFZlluS205SldWc2V5emJ1S1o1Q09rZ1NLMGdUSHplWVBrQnhTSEF4SEdWNXZWREhiMURmVzc0MkpUNWp5WnRGbElwd3VrYTRpMlFJcXBlc0piaElZeUJ4TW4zYkZHVVdLS2dFb0FBNmM3ejlsZk5Cd0hDVl8yRGw0cUZCNEJ2WWxfTzlMZmRNZGZ5QnNySEpWa1gyQnByei1tNjkwWU9IVmcteUtiT2lfcS1vdHhJLUhpVTd0emFoQ0Y3NXN3TW04dHJwSDk2ZFJBdGhmaExuYXc4bFBJVGItSkhqT2ZmbXBxYmlDSFJvOTF6NlRnNTFkZHQwTy1ITTk4R0tsMlhkT2RmSVRVekNBLUlUWUQ5U3F4TjBHcF9YRWMwektIRlhJNDFCc0NpQmZHeXV5V3IwTHBCUG55YVFlQy1NNHptRlpZNnp0UFZuS1VaLU50X1FmWWZueXVhQS1KRWZpMUxtRDdZd3RKUzlRbkk1emJGOVJSam1sSG90ZzNrM2RqdlhzbUZ3M2tWY3BKaGk0ZmczNnVRTVJuV3RtZ2k0Z1hVTk5nbU1ZeGhya0I1X1QyekUzZkQ5emsxVWxOb21WczluMkl4Z0l5YndQYkFtajhNell0TjBOX2hmOWxGaWlPN2tkak9uOUpZUnYtaURfRHRPNXNNV3NBSGl3d0FzMllQNlVEaTlSTy1fT256UUJMNW5tdkZmOWdGX19VMlUtNlVQQ3pqd0J3M0lub19VUFl0NjRZQUR0MXBUYlNOUU96NUxQTkZGMFZwTHNqa3NKZ3d6bk5WQTh3SkNJLTV4OU5KRkhSMTBzMzl2N1drbUZoZXhLTmIzNzB0SEtpUmI0STNqT0xla2JmNmFGaXJwV3djTllsUTVLMGZ5aWpid2duUEh3SFBEMXVlMHRIT3hZOHQyY1dZSVhraXo4Z2FCRGU3N1BrbGVINzJ3cU53eWJLX0Frc3dsalVpcklRNTlQT3lEWTMyY09FRzlsOW1yc1VoVXRTdm9VdHE0cTYwOUVDcktISVd2dXdTR2N4cS1rY3VYbkF3UEMzekNzcFVzN0NONzdIdFFMdV9vRzBDaFp2ZzlzVTdsNzd4NnBsU09BMGIwZWZVaEpETERlYTJlM3JZbC1VS2djOVpFWTVmNTZ4TzVqZ3hXT2oxdE1iZFZ3QzdNYWR6MVZ0VXhGYXhib1ZGTC01UEdLNVBUSWV2R2o1UUVxcm82RE1RTVdlRmkwQXlnNUtSUEFBZDdQTF9qSS1jNFlwN2sxWDJQTU5hSVE0d1JxR2lHUGs0WXBuWDRfZmg5TDJFSHJsc0xKOFE4SnAxWXZSN2xENEN5MFNfMkhyUzQtTWg2cUlISWswd195ak9ibUN0X0lXdXVwaFpDY09YWHdTcXdMMEt6bDc0SXkwMmRIZ2JKblB4ZnBncWxvWFpxZmI4OWpEdEZkNFFITWR1OG9zcnNYRTdPS2RyM3V6ODkyT1VydkpLYTFjc3pMS09BbW1iblRDSndLWFozVHJUWEJqZzVfY3M2aWlsaE54SUJFdGpvOHpfbEZxN25Hc1FnbHAzamtXZDFKcDlRMlRkczQ0cTRrMUxOZ3JhSkhZdTI1Z1QxN3NfZFBuV21qeF9Ca2hjMGNDSDBsSm1LUF91dDFJQTV1M0lBOWw5SjhpckJOYTh1RVRzSGI0V1RmMjVYMGdVZUFzV1hkcmNpcVlFX295SmNOZndwQkRtaHZhLUZjU0lVcVVqNHNCdDZsdi1IdUxFd2xiNzFHMXlKRmJyOUx2djBDVnJDWlRIMENSdkhRZHg5b0ptZFB6ajgtR1lmZ0J3SVFURWNUa3JMRHM0RlBCTzBYeEhqY2p1Q2k1bnFOZVJKZEo5TkgwamIxZFJDQTZUS1NpWV9sUjd5MWRrRDBrRjMxdVhEbHNQTVRvM2RZWVp2RlZPZGNpVzljT0ttY1c2Unhfclh3bEpjLmtTLTVXMHdUU3lTNHl0X1c5YnY4TWc"}' headers: Accept: - application/json @@ -958,7 +960,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/restore?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":false,"created":1577458540,"updated":1577458550,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -967,7 +969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:55:59 GMT + - Mon, 06 Jan 2020 14:29:34 GMT expires: - '-1' pragma: @@ -1011,7 +1013,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/versions?api-version=7.0 response: body: - string: '{"value":[{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":false,"created":1577458540,"updated":1577458550,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}},{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f2723a77083440f29569dd523f7d8882","attributes":{"enabled":true,"created":1577458534,"updated":1577458534,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test + type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -1020,7 +1023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:00 GMT + - Mon, 06 Jan 2020 14:29:36 GMT expires: - '-1' pragma: @@ -1066,7 +1069,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/9850ec6e5bca42bfa8aea6242f454b47","attributes":{"enabled":false,"created":1577458540,"updated":1577458550,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1075,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:02 GMT + - Mon, 06 Jan 2020 14:29:37 GMT expires: - '-1' pragma: @@ -1128,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:04 GMT + - Mon, 06 Jan 2020 14:29:39 GMT expires: - '-1' pragma: @@ -1181,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:06 GMT + - Mon, 06 Jan 2020 14:29:41 GMT expires: - '-1' pragma: @@ -1228,7 +1231,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/3c6b16c69bcb49e5843c489d4c4cc843","attributes":{"enabled":true,"created":1577458568,"updated":1577458568,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/95f3787a16764420866c4f7ed74e937a","attributes":{"enabled":true,"created":1578320983,"updated":1578320983,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1237,7 +1240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:08 GMT + - Mon, 06 Jan 2020 14:29:43 GMT expires: - '-1' pragma: @@ -1281,7 +1284,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/3c6b16c69bcb49e5843c489d4c4cc843","attributes":{"enabled":true,"created":1577458568,"updated":1577458568,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/95f3787a16764420866c4f7ed74e937a","attributes":{"enabled":true,"created":1578320983,"updated":1578320983,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1290,7 +1293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:09 GMT + - Mon, 06 Jan 2020 14:29:44 GMT expires: - '-1' pragma: @@ -1337,7 +1340,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/f14b0991189749d4937cc9548d5f4ecd","attributes":{"enabled":true,"created":1577458572,"updated":1577458572,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/9350b4be360d48f7987485f2fca0af55","attributes":{"enabled":true,"created":1578320986,"updated":1578320986,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' headers: cache-control: - no-cache @@ -1346,7 +1349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:12 GMT + - Mon, 06 Jan 2020 14:29:46 GMT expires: - '-1' pragma: @@ -1390,7 +1393,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/f14b0991189749d4937cc9548d5f4ecd","attributes":{"enabled":true,"created":1577458572,"updated":1577458572,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/9350b4be360d48f7987485f2fca0af55","attributes":{"enabled":true,"created":1578320986,"updated":1578320986,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' headers: cache-control: - no-cache @@ -1399,7 +1402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:14 GMT + - Mon, 06 Jan 2020 14:29:47 GMT expires: - '-1' pragma: @@ -1446,7 +1449,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/ab75485210724e48a581d34c716716c1","attributes":{"enabled":true,"created":1577458576,"updated":1577458576,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/2dbca17ac778405cb2e7c37e97fc198b","attributes":{"enabled":true,"created":1578320990,"updated":1578320990,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' headers: cache-control: - no-cache @@ -1455,7 +1458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:16 GMT + - Mon, 06 Jan 2020 14:29:50 GMT expires: - '-1' pragma: @@ -1499,7 +1502,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/ab75485210724e48a581d34c716716c1","attributes":{"enabled":true,"created":1577458576,"updated":1577458576,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/2dbca17ac778405cb2e7c37e97fc198b","attributes":{"enabled":true,"created":1578320990,"updated":1578320990,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' headers: cache-control: - no-cache @@ -1508,7 +1511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:18 GMT + - Mon, 06 Jan 2020 14:29:52 GMT expires: - '-1' pragma: @@ -1555,7 +1558,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/6d17543978124f9d9693a8da883f6426","attributes":{"enabled":true,"created":1577458580,"updated":1577458580,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/2fa1d0b7bcca417fa59f2c98f0b2377d","attributes":{"enabled":true,"created":1578320994,"updated":1578320994,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' headers: cache-control: - no-cache @@ -1564,7 +1567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:20 GMT + - Mon, 06 Jan 2020 14:29:53 GMT expires: - '-1' pragma: @@ -1608,7 +1611,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/6d17543978124f9d9693a8da883f6426","attributes":{"enabled":true,"created":1577458580,"updated":1577458580,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/2fa1d0b7bcca417fa59f2c98f0b2377d","attributes":{"enabled":true,"created":1578320994,"updated":1578320994,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' headers: cache-control: - no-cache @@ -1617,7 +1620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:21 GMT + - Mon, 06 Jan 2020 14:29:56 GMT expires: - '-1' pragma: @@ -1664,7 +1667,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64?api-version=7.0 response: body: - string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/575dfd27e7094b9eba866211d2daa9ff","attributes":{"enabled":true,"created":1577458584,"updated":1577458584,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' + string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/25c0284259f2408a96466a637370ebb3","attributes":{"enabled":true,"created":1578320998,"updated":1578320998,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' headers: cache-control: - no-cache @@ -1673,7 +1676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:24 GMT + - Mon, 06 Jan 2020 14:29:57 GMT expires: - '-1' pragma: @@ -1717,7 +1720,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/?api-version=7.0 response: body: - string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/575dfd27e7094b9eba866211d2daa9ff","attributes":{"enabled":true,"created":1577458584,"updated":1577458584,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' + string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/25c0284259f2408a96466a637370ebb3","attributes":{"enabled":true,"created":1578320998,"updated":1578320998,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' headers: cache-control: - no-cache @@ -1726,7 +1729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:26 GMT + - Mon, 06 Jan 2020 14:29:59 GMT expires: - '-1' pragma: @@ -1773,7 +1776,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex?api-version=7.0 response: body: - string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/93549a814ea142a58cfbe063c45d99f2","attributes":{"enabled":true,"created":1577458589,"updated":1577458589,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' + string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/26abc5c6d6dd4efa975d0c25642362b5","attributes":{"enabled":true,"created":1578321002,"updated":1578321002,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' headers: cache-control: - no-cache @@ -1782,7 +1785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:28 GMT + - Mon, 06 Jan 2020 14:30:01 GMT expires: - '-1' pragma: @@ -1826,7 +1829,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/?api-version=7.0 response: body: - string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/93549a814ea142a58cfbe063c45d99f2","attributes":{"enabled":true,"created":1577458589,"updated":1577458589,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' + string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/26abc5c6d6dd4efa975d0c25642362b5","attributes":{"enabled":true,"created":1578321002,"updated":1578321002,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' headers: cache-control: - no-cache @@ -1835,7 +1838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:56:31 GMT + - Mon, 06 Jan 2020 14:30:02 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml index 1bb9d032d29..2461cab5a14 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 14:29:24 GMT + - Mon, 06 Jan 2020 14:25:53 GMT duration: - - '2927265' + - '2679114' expires: - '-1' ocp-aad-diagnostics-server-name: - - c8eK+61g+utWFw52xLWv2Ne8ko4WetXLcraNrY1rft0= + - 1xKkKNXlZH9/UfFZHBaUKUlYOYWLeRVZUJpmsmgJSbc= ocp-aad-session-key: - - vytps61XeZyOqA-wGRy5Fo8Bd25_Vza0XwdLIsp8uv0kIHaTRKAAdWuZA4TqpdZz_fU89AAMVfaaWmLEwaVZp9DSHKwz_Qs3xjVbB5EfBZQZFftMmtGcdboFn74iWk6ECnn4LlxRpnbSRTRHppH3pXp9cWJLXZWwgESrNzcTVWY.eSZKGj9vqZJDSRTY2lfF793KZe_D8KT13nyzqmILvaY + - kyafPJ9rDUOlkgyQaLsOkHHDLgIVCLFLjMIoqxRbBPdaHjNPA0wKT1ntUcUbd3oufogK3OoZz60TNSomX2Ist3SY1vy8eL5AUQlYcSsH6On5WKl5rRAWgStj_V9OlAoPb6lmaVCJGL82rTvoXBrZ0CitJnUY_APe8aO6kW0nd2c.KkbCyDwZ6MQAdjarS7-gOKFq3WCCdj00mm9XqNpQdo0 pragma: - no-cache request-id: - - 0e65f516-b2c4-4ce3-a91f-cbb24c01792c + - 05a97512-d73f-423e-922f-6248bba6b0f4 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -83,7 +83,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:29:32 GMT + - Mon, 06 Jan 2020 14:26:00 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1197' x-powered-by: - ASP.NET status: @@ -140,7 +140,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:03 GMT + - Mon, 06 Jan 2020 14:26:31 GMT expires: - '-1' pragma: @@ -195,23 +195,23 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '11433' + - '2766' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:03 GMT + - Mon, 06 Jan 2020 14:26:32 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -258,7 +258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:05 GMT + - Mon, 06 Jan 2020 14:26:34 GMT expires: - '-1' pragma: @@ -314,7 +314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:26 GMT + - Mon, 06 Jan 2020 14:26:55 GMT expires: - '-1' pragma: @@ -363,7 +363,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f705fcf280fa4b42b8b1b255c98ffe00","attributes":{"enabled":true,"created":1577457030,"updated":1577457030,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -372,7 +372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:30 GMT + - Mon, 06 Jan 2020 14:26:57 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1577457031,"scheduledPurgeDate":1585233031,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f705fcf280fa4b42b8b1b255c98ffe00","attributes":{"enabled":true,"created":1577457030,"updated":1577457030,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -427,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:31 GMT + - Mon, 06 Jan 2020 14:26:59 GMT expires: - '-1' pragma: @@ -471,7 +471,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets?api-version=7.0 response: body: - string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1577457031,"scheduledPurgeDate":1585233031,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1577457030,"updated":1577457030,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -480,7 +480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:53 GMT + - Mon, 06 Jan 2020 14:27:21 GMT expires: - '-1' pragma: @@ -524,7 +524,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1577457031,"scheduledPurgeDate":1585233031,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1577457030,"updated":1577457030,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -533,7 +533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:54 GMT + - Mon, 06 Jan 2020 14:27:22 GMT expires: - '-1' pragma: @@ -577,7 +577,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1577457031,"scheduledPurgeDate":1585233031,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f705fcf280fa4b42b8b1b255c98ffe00","attributes":{"enabled":true,"created":1577457030,"updated":1577457030,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -586,7 +586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:57 GMT + - Mon, 06 Jan 2020 14:27:24 GMT expires: - '-1' pragma: @@ -630,7 +630,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1577457031,"scheduledPurgeDate":1585233031,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f705fcf280fa4b42b8b1b255c98ffe00","attributes":{"enabled":true,"created":1577457030,"updated":1577457030,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -639,7 +639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 14:30:59 GMT + - Mon, 06 Jan 2020 14:27:26 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml index adb015135af..2f6d6bba20b 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 15:02:25 GMT + - Mon, 06 Jan 2020 14:28:44 GMT duration: - - '3421103' + - '2427486' expires: - '-1' ocp-aad-diagnostics-server-name: - - 4dYZ1x59KpvPnfg8gEGe7Et40rOFLuoCyqMAAOutonQ= + - XwM9J6mYB/CvvQX3xOj9NMCXa2qCyINEEs06ms8zTaI= ocp-aad-session-key: - - 2iykL4ivxuWtdJbWjWP-cddSVV-J_7emW-0WtQezn1P0m-HDZkHBO2eCdO2B3_XDcvdEhxwi5IWhDPH4HoCILsW56UYg6gMHa0osBcfpJze2K3AeYuPBmqNrZLybehAzunrT94Z7FwQYpreZ3Jixk8LECJAXi8pmytLAJCe9I3M.kNDAkFsO9FnKiBc2ZZuNqv3GDQ1H44TyW6CXw2cnVCY + - 5jrPTi2bDVmW112EJGsfPmlZuWUSWZr_j7xlOdgaL3WrRjYpJcmk1gKDftyKGmqFfQ5XtkXE6NugZ4vyZ33232lheO9f1qLEC5dyXVpPcDp6GqtqlatVuRAxQvpVWg17DVKQFFARVy6F9j1F34QTMwBh3w4C4kXEAI-BEak7OQo.WAkV_J8JaVtnH-ampvYoQBUeSKu3n2UMG5meA0xQImc pragma: - no-cache request-id: - - 8703d7b6-3056-44a7-a042-8029f1a9d31c + - 484e469b-9dee-41ed-9999-c090e4bba87a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -83,7 +83,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:02:33 GMT + - Mon, 06 Jan 2020 14:28:51 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1194' x-powered-by: - ASP.NET status: @@ -140,7 +140,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:06 GMT + - Mon, 06 Jan 2020 14:29:23 GMT expires: - '-1' pragma: @@ -195,23 +195,23 @@ interactions: - -n --object-id --key-permissions --secret-permissions --certificate-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_safnmh7vestt34i3psj7abuswurmhupovf6ry7dr3crtyrbq6mq6parx6/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dtfdy7","name":"cli-test-keyvault-dtfdy7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '11434' + - '3695' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:08 GMT + - Mon, 06 Jan 2020 14:29:25 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: - -n --object-id --key-permissions --secret-permissions --certificate-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -258,7 +258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:09 GMT + - Mon, 06 Jan 2020 14:29:26 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: - -n --object-id --key-permissions --secret-permissions --certificate-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -327,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:12 GMT + - Mon, 06 Jan 2020 14:29:30 GMT expires: - '-1' pragma: @@ -347,7 +347,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' x-powered-by: - ASP.NET status: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:14 GMT + - Mon, 06 Jan 2020 14:29:32 GMT expires: - '-1' pragma: @@ -434,7 +434,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ded87df945ab4ed39dd3a3a4fb5a1b2f","attributes":{"enabled":true,"created":1577458997,"updated":1577458997,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/c1cad5d669ef4e4a98d54c7284ae308d","attributes":{"enabled":true,"created":1578320973,"updated":1578320973,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -443,7 +443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:17 GMT + - Mon, 06 Jan 2020 14:29:32 GMT expires: - '-1' pragma: @@ -489,7 +489,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/66075a849fa8400e8c810cba15612e4b","attributes":{"enabled":true,"created":1577458999,"updated":1577458999,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/5a9c59225d774707bc19a82125944ec5","attributes":{"enabled":true,"created":1578320976,"updated":1578320976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:19 GMT + - Mon, 06 Jan 2020 14:29:35 GMT expires: - '-1' pragma: @@ -544,7 +544,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key1/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/e14f9bb9b1234453b96d4c2e0dc3385a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yKgDsu1n1_kkOlSGjlXVnx_Ok9q32AQH5g7GxriXlgfOg91Gpyp8G1eFijmmtFxbuJtyDk0VSYOk0cLmf_61hxGD8MVWHRU-BfFsYSIIos3B7OkJxTF9cFaDedZCeED7ELtF4Z6ZIzL4O17i-_kjsHWQh5fTDhnEUifJOgtkuqbeWwikHKUwO99eKRwQKJYm0oiC4vDMoRVynq_4D09kG5o5pqfOFv1mP-GVESGq3F0nrGHs5sVsZO7NcYR9-SAiit0mWAvFeLBzmKaLrSUCJHHoeU2rdh99NIMlHgooZDIr1F9epJZFuFgb8CVC4PON5L2rmwcnJ5nPXn0iaYwQOQ","e":"AQAB"},"attributes":{"enabled":true,"created":1577459002,"updated":1577459002,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/fae13a9e567d4341bf82f96a7ccf3cfc","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"jhlBvJb_KBBcjuN9QoUjMxC7I9KJJN5RCaGFDgkYES4y96x7RbIS-QnywklCG9thdpYAMFX-N50hwK37Ytry_lOpmDLLL9jqDHhRnOU9ooh5u1nKiNC4vfHMGuHP8Wix76KoyHhiddFzCDJ-2LduPjcZNEt5k8ErI064-griLWsuzGRmeRYhPduQDUvyv3MrJP7P11D_2Qe_zLxoOd-b-wr6lhL9aEPId92iRxF0tOY3iGfbQrQIuQ2KlqRrQ67jVJU4hpgAYslWFARG4DnHshCrXlKuVHL4HzMum_YYWJjbAqTceHQ_VpL2gyEZfI_DmRJ2mCR_8V1Gb0opaqlMvw","e":"AQAB"},"attributes":{"enabled":true,"created":1578320978,"updated":1578320978,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:21 GMT + - Mon, 06 Jan 2020 14:29:37 GMT expires: - '-1' pragma: @@ -599,7 +599,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key2/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/0bda2afc1c6b4d498a38e2fb81b9e4f9","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"qSBlS3iA01YjD4Lt1a5kYdtviem5eX5IQLgFKXmixzkGrWz_spKdvm2XqDgUwSGW9x1pxtKNgu2eJqO7BUCRP1Jo13u-R7jy-8brb7_Irq3qd0d1_QWo3JAAiqZIXcFx7M6Gz_u0kjguEPU8h1m56ScG_dYEq86gQosJzlqL5cUjLS8Q7u0ELo7U4fcSwP7dXaHn_u1GgJRbjOeouIqauQh_aevkxF7B4CSlvw1Svzh18pyn8Yap6TGta6szYF2fccowhkPy682tMjXcJ6AeZXUoFdtRm0wQmrDQ7U-2w4QQKvVp_Ev_sSaWVVTvRNwJ7ve6hPbZjqLSE5_ICWOj7w","e":"AQAB"},"attributes":{"enabled":true,"created":1577459004,"updated":1577459004,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/e38f2e32436948f99e9c0a762996bd39","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"p1R6c2pfIreP3yL5w22f75GAV-hvKKYwbcPug-HZH9lfvaMKK08N2tKOfGsfutjHA3p3MjYZ8RmwtHyWE-09_KdZTdb_2iPsOrkRMuQQDmlA5rgcAfp5lcSERf_dXz_0R9Tj-HQGhHZqLTucyo6KZB8zkeXC6Nrw2RP9GWLaPu1OObfZWqAtq8Xi-bwGJHHeMKp9wbESshBhEY0EYGnJ77zLmoRYHz9KtMB0GeTJWvElzB3-cTH4WQvbGocHBBa2pjrILm3RChwShsdoI32Pvw612bHrjXqo1_lK40bbJ_e1n3UzJKiAD97_KYU8tetxv1d5lzewRQZHze8bd8kLHQ","e":"AQAB"},"attributes":{"enabled":true,"created":1578320980,"updated":1578320980,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -608,7 +608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:23 GMT + - Mon, 06 Jan 2020 14:29:39 GMT expires: - '-1' pragma: @@ -659,8 +659,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/61b328072c3349808875ba16c6a73fbf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/61b328072c3349808875ba16c6a73fbf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/61b328072c3349808875ba16c6a73fbf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459006,"updated":1577459006,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459006,"updated":1577459006}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/3333518331eb4b9780e41081d27c37ad","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/3333518331eb4b9780e41081d27c37ad","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/3333518331eb4b9780e41081d27c37ad","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320982,"updated":1578320982,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320982,"updated":1578320982}}}' headers: cache-control: - no-cache @@ -669,7 +669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:26 GMT + - Mon, 06 Jan 2020 14:29:42 GMT expires: - '-1' pragma: @@ -720,8 +720,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/e2e7d41525914d86be0157503cf884bf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/e2e7d41525914d86be0157503cf884bf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/e2e7d41525914d86be0157503cf884bf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459009,"updated":1577459009,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459009,"updated":1577459009}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/07dcf52496854d9f816255550f9563b3","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/07dcf52496854d9f816255550f9563b3","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/07dcf52496854d9f816255550f9563b3","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320984,"updated":1578320984,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320984,"updated":1578320984}}}' headers: cache-control: - no-cache @@ -730,7 +730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:29 GMT + - Mon, 06 Jan 2020 14:29:44 GMT expires: - '-1' pragma: @@ -776,7 +776,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1577459011,"scheduledPurgeDate":1585235011,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ded87df945ab4ed39dd3a3a4fb5a1b2f","attributes":{"enabled":true,"created":1577458997,"updated":1577458997,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320987,"scheduledPurgeDate":1586096987,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/c1cad5d669ef4e4a98d54c7284ae308d","attributes":{"enabled":true,"created":1578320973,"updated":1578320973,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -785,7 +785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:31 GMT + - Mon, 06 Jan 2020 14:29:46 GMT expires: - '-1' pragma: @@ -831,7 +831,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret2","deletedDate":1577459014,"scheduledPurgeDate":1585235014,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/66075a849fa8400e8c810cba15612e4b","attributes":{"enabled":true,"created":1577458999,"updated":1577458999,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret2","deletedDate":1578320988,"scheduledPurgeDate":1586096988,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/5a9c59225d774707bc19a82125944ec5","attributes":{"enabled":true,"created":1578320976,"updated":1578320976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -840,7 +840,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:34 GMT + - Mon, 06 Jan 2020 14:29:48 GMT expires: - '-1' pragma: @@ -886,7 +886,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1","deletedDate":1577459016,"scheduledPurgeDate":1585235016,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/e14f9bb9b1234453b96d4c2e0dc3385a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yKgDsu1n1_kkOlSGjlXVnx_Ok9q32AQH5g7GxriXlgfOg91Gpyp8G1eFijmmtFxbuJtyDk0VSYOk0cLmf_61hxGD8MVWHRU-BfFsYSIIos3B7OkJxTF9cFaDedZCeED7ELtF4Z6ZIzL4O17i-_kjsHWQh5fTDhnEUifJOgtkuqbeWwikHKUwO99eKRwQKJYm0oiC4vDMoRVynq_4D09kG5o5pqfOFv1mP-GVESGq3F0nrGHs5sVsZO7NcYR9-SAiit0mWAvFeLBzmKaLrSUCJHHoeU2rdh99NIMlHgooZDIr1F9epJZFuFgb8CVC4PON5L2rmwcnJ5nPXn0iaYwQOQ","e":"AQAB"},"attributes":{"enabled":true,"created":1577459002,"updated":1577459002,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1","deletedDate":1578320991,"scheduledPurgeDate":1586096991,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/fae13a9e567d4341bf82f96a7ccf3cfc","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"jhlBvJb_KBBcjuN9QoUjMxC7I9KJJN5RCaGFDgkYES4y96x7RbIS-QnywklCG9thdpYAMFX-N50hwK37Ytry_lOpmDLLL9jqDHhRnOU9ooh5u1nKiNC4vfHMGuHP8Wix76KoyHhiddFzCDJ-2LduPjcZNEt5k8ErI064-griLWsuzGRmeRYhPduQDUvyv3MrJP7P11D_2Qe_zLxoOd-b-wr6lhL9aEPId92iRxF0tOY3iGfbQrQIuQ2KlqRrQ67jVJU4hpgAYslWFARG4DnHshCrXlKuVHL4HzMum_YYWJjbAqTceHQ_VpL2gyEZfI_DmRJ2mCR_8V1Gb0opaqlMvw","e":"AQAB"},"attributes":{"enabled":true,"created":1578320978,"updated":1578320978,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -895,7 +895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:36 GMT + - Mon, 06 Jan 2020 14:29:51 GMT expires: - '-1' pragma: @@ -941,7 +941,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key2","deletedDate":1577459019,"scheduledPurgeDate":1585235019,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/0bda2afc1c6b4d498a38e2fb81b9e4f9","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"qSBlS3iA01YjD4Lt1a5kYdtviem5eX5IQLgFKXmixzkGrWz_spKdvm2XqDgUwSGW9x1pxtKNgu2eJqO7BUCRP1Jo13u-R7jy-8brb7_Irq3qd0d1_QWo3JAAiqZIXcFx7M6Gz_u0kjguEPU8h1m56ScG_dYEq86gQosJzlqL5cUjLS8Q7u0ELo7U4fcSwP7dXaHn_u1GgJRbjOeouIqauQh_aevkxF7B4CSlvw1Svzh18pyn8Yap6TGta6szYF2fccowhkPy682tMjXcJ6AeZXUoFdtRm0wQmrDQ7U-2w4QQKvVp_Ev_sSaWVVTvRNwJ7ve6hPbZjqLSE5_ICWOj7w","e":"AQAB"},"attributes":{"enabled":true,"created":1577459004,"updated":1577459004,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key2","deletedDate":1578320993,"scheduledPurgeDate":1586096993,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/e38f2e32436948f99e9c0a762996bd39","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"p1R6c2pfIreP3yL5w22f75GAV-hvKKYwbcPug-HZH9lfvaMKK08N2tKOfGsfutjHA3p3MjYZ8RmwtHyWE-09_KdZTdb_2iPsOrkRMuQQDmlA5rgcAfp5lcSERf_dXz_0R9Tj-HQGhHZqLTucyo6KZB8zkeXC6Nrw2RP9GWLaPu1OObfZWqAtq8Xi-bwGJHHeMKp9wbESshBhEY0EYGnJ77zLmoRYHz9KtMB0GeTJWvElzB3-cTH4WQvbGocHBBa2pjrILm3RChwShsdoI32Pvw612bHrjXqo1_lK40bbJ_e1n3UzJKiAD97_KYU8tetxv1d5lzewRQZHze8bd8kLHQ","e":"AQAB"},"attributes":{"enabled":true,"created":1578320980,"updated":1578320980,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -950,7 +950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:39 GMT + - Mon, 06 Jan 2020 14:29:53 GMT expires: - '-1' pragma: @@ -996,8 +996,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1","deletedDate":1577459021,"scheduledPurgeDate":1585235021,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/61b328072c3349808875ba16c6a73fbf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/61b328072c3349808875ba16c6a73fbf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/61b328072c3349808875ba16c6a73fbf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459006,"updated":1577459006,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459006,"updated":1577459006}}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1","deletedDate":1578320995,"scheduledPurgeDate":1586096995,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/3333518331eb4b9780e41081d27c37ad","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/3333518331eb4b9780e41081d27c37ad","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/3333518331eb4b9780e41081d27c37ad","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320982,"updated":1578320982,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320982,"updated":1578320982}}}' headers: cache-control: - no-cache @@ -1006,7 +1006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:40 GMT + - Mon, 06 Jan 2020 14:29:54 GMT expires: - '-1' pragma: @@ -1052,8 +1052,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2","deletedDate":1577459023,"scheduledPurgeDate":1585235023,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/e2e7d41525914d86be0157503cf884bf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/e2e7d41525914d86be0157503cf884bf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/e2e7d41525914d86be0157503cf884bf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459009,"updated":1577459009,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459009,"updated":1577459009}}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2","deletedDate":1578320997,"scheduledPurgeDate":1586096997,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/07dcf52496854d9f816255550f9563b3","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/07dcf52496854d9f816255550f9563b3","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/07dcf52496854d9f816255550f9563b3","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320984,"updated":1578320984,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320984,"updated":1578320984}}}' headers: cache-control: - no-cache @@ -1062,7 +1062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:03:43 GMT + - Mon, 06 Jan 2020 14:29:57 GMT expires: - '-1' pragma: @@ -1108,7 +1108,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1/recover?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ded87df945ab4ed39dd3a3a4fb5a1b2f","attributes":{"enabled":true,"created":1577458997,"updated":1577458997,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/c1cad5d669ef4e4a98d54c7284ae308d","attributes":{"enabled":true,"created":1578320973,"updated":1578320973,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1117,7 +1117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:05 GMT + - Mon, 06 Jan 2020 14:30:19 GMT expires: - '-1' pragma: @@ -1163,7 +1163,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1/recover?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/e14f9bb9b1234453b96d4c2e0dc3385a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yKgDsu1n1_kkOlSGjlXVnx_Ok9q32AQH5g7GxriXlgfOg91Gpyp8G1eFijmmtFxbuJtyDk0VSYOk0cLmf_61hxGD8MVWHRU-BfFsYSIIos3B7OkJxTF9cFaDedZCeED7ELtF4Z6ZIzL4O17i-_kjsHWQh5fTDhnEUifJOgtkuqbeWwikHKUwO99eKRwQKJYm0oiC4vDMoRVynq_4D09kG5o5pqfOFv1mP-GVESGq3F0nrGHs5sVsZO7NcYR9-SAiit0mWAvFeLBzmKaLrSUCJHHoeU2rdh99NIMlHgooZDIr1F9epJZFuFgb8CVC4PON5L2rmwcnJ5nPXn0iaYwQOQ","e":"AQAB"},"attributes":{"enabled":true,"created":1577459002,"updated":1577459002,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/fae13a9e567d4341bf82f96a7ccf3cfc","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"jhlBvJb_KBBcjuN9QoUjMxC7I9KJJN5RCaGFDgkYES4y96x7RbIS-QnywklCG9thdpYAMFX-N50hwK37Ytry_lOpmDLLL9jqDHhRnOU9ooh5u1nKiNC4vfHMGuHP8Wix76KoyHhiddFzCDJ-2LduPjcZNEt5k8ErI064-griLWsuzGRmeRYhPduQDUvyv3MrJP7P11D_2Qe_zLxoOd-b-wr6lhL9aEPId92iRxF0tOY3iGfbQrQIuQ2KlqRrQ67jVJU4hpgAYslWFARG4DnHshCrXlKuVHL4HzMum_YYWJjbAqTceHQ_VpL2gyEZfI_DmRJ2mCR_8V1Gb0opaqlMvw","e":"AQAB"},"attributes":{"enabled":true,"created":1578320978,"updated":1578320978,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -1172,7 +1172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:07 GMT + - Mon, 06 Jan 2020 14:30:21 GMT expires: - '-1' pragma: @@ -1218,8 +1218,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1/recover?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/61b328072c3349808875ba16c6a73fbf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/61b328072c3349808875ba16c6a73fbf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/61b328072c3349808875ba16c6a73fbf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459006,"updated":1577459006,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459006,"updated":1577459006}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/3333518331eb4b9780e41081d27c37ad","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/3333518331eb4b9780e41081d27c37ad","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/3333518331eb4b9780e41081d27c37ad","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320982,"updated":1578320982,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320982,"updated":1578320982}}}' headers: cache-control: - no-cache @@ -1228,7 +1228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:10 GMT + - Mon, 06 Jan 2020 14:30:23 GMT expires: - '-1' pragma: @@ -1279,7 +1279,7 @@ interactions: cache-control: - no-cache date: - - Fri, 27 Dec 2019 15:04:12 GMT + - Mon, 06 Jan 2020 14:30:26 GMT expires: - '-1' pragma: @@ -1330,7 +1330,7 @@ interactions: cache-control: - no-cache date: - - Fri, 27 Dec 2019 15:04:14 GMT + - Mon, 06 Jan 2020 14:30:28 GMT expires: - '-1' pragma: @@ -1381,7 +1381,7 @@ interactions: cache-control: - no-cache date: - - Fri, 27 Dec 2019 15:04:17 GMT + - Mon, 06 Jan 2020 14:30:30 GMT expires: - '-1' pragma: @@ -1422,23 +1422,23 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '11434' + - '4007' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:19 GMT + - Mon, 06 Jan 2020 14:30:32 GMT expires: - '-1' pragma: @@ -1471,7 +1471,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1485,7 +1485,7 @@ interactions: content-length: - '0' date: - - Fri, 27 Dec 2019 15:04:25 GMT + - Mon, 06 Jan 2020 14:30:37 GMT expires: - '-1' pragma: @@ -1501,7 +1501,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' x-powered-by: - ASP.NET status: @@ -1524,23 +1524,23 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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.KeyVault/deletedVaults?api-version=2018-02-14 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-be6s7zn","name":"cli-test-kevault-be6s7zn","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretwrt4o34cqnpv4st3cigemfvqqc2tnxjelxj6d3mkhgkxqqnnqv7/providers/Microsoft.KeyVault/vaults/cli-test-kevault-be6s7zn","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:17:12Z","scheduledPurgeDate":"2020-03-05T09:17:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:04:21Z","scheduledPurgeDate":"2020-03-26T15:04:21Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-veymyk","name":"cli-test-keyvault-veymyk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretbm4difszfjpzxnbrjcrhmkdsqthsqm4tsgcc6c65y7khbigz5rn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-veymyk","location":"westus","tags":{},"deletionDate":"2019-12-27T14:31:32Z","scheduledPurgeDate":"2020-03-26T14:31:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtvqhr345","name":"cli-keyvault-mgmtvqhr345","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtvqhr345","location":"westus","tags":{},"deletionDate":"2019-12-27T08:19:19Z","scheduledPurgeDate":"2020-03-26T08:19:19Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softjj2kztp","name":"cli-keyvault-softjj2kztp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretip43rtw6yezopevffgobsqbod6zz36f6se6b2wb2o5ixoizln36/providers/Microsoft.KeyVault/vaults/cli-keyvault-softjj2kztp","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:35Z","scheduledPurgeDate":"2020-03-26T08:18:35Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtr7a6xhe","name":"cli-keyvault-mgmtr7a6xhe","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtkdmnuko3glg4pd7yg5mreavlh3knlz7h3qjgf2xti773hf4rprzen/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtr7a6xhe","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:10Z","scheduledPurgeDate":"2020-03-26T08:18:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtew3cglh","name":"cli-keyvault-mgmtew3cglh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtew3cglh","location":"westus","tags":{},"deletionDate":"2019-12-27T08:16:29Z","scheduledPurgeDate":"2020-03-26T08:16:29Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-67qn6veyxoest","name":"vault2-67qn6veyxoest","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault2-67qn6veyxoest","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-dk77xkq42y62f","name":"vault1-dk77xkq42y62f","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault1-dk77xkq42y62f","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-fjhnwonczlt6t","name":"vault2-fjhnwonczlt6t","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault2-fjhnwonczlt6t","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-xzdscdoaut5ps","name":"vault1-xzdscdoaut5ps","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault1-xzdscdoaut5ps","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe40-kv","name":"yugangwe40-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe40/providers/Microsoft.KeyVault/vaults/yugangwe40-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:15Z","scheduledPurgeDate":"2020-03-18T01:27:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe10-kv","name":"yugangwe10-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe10/providers/Microsoft.KeyVault/vaults/yugangwe10-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:04Z","scheduledPurgeDate":"2020-03-18T01:27:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbpswFIbfJZp2tTSGwJZWqiZSm4ys53h2bCp6lxKSBqdJFdIFPPXdd5imaa%2fQXiCEdITlT9%2f%2fn1%2bDfdWebrd71wyufg1QavPtRqDRya1dDK4Gj6fTc3M1Gj0t98tN9VTtTxdL%2f3KsLsrD06h5eWjK4%2fb5tD3smxF7CNafoy%2fBMHhYs2G0Wi2Hy6ocD8uHy%2fBLuGaX8SUbPR8PP7er6tiMYFseD81hfbr4XnX58mV3Gq2qXXWqVn8%2bmq%2fL5%2b3wJ03Sz69DFkyGLBwG0ccPjaMTD67aX1uX3%2bl8brTVqRG5XdhLeWt3ds2zAMymw7oYY%2b1C9CKU3MZo8ok2Ravqgklxz8Eqj6KIaOaszU6As2flrNfGdiBg8GmwkNZ8E8nCJIssees4JCccBroeBZiMIb%2bfaJ6cod6E6NIb5JsIedKi2U2VE6EyRYzOBljbWNeWcPQk7CJ8%2byCyAE3hgRcB8Mwj303Az2%2b0yzla8OinHLmLJTmBdRIrlqbSwBjJGWS9F%2b8mIpJvPNbQEQpyoqTIrAiFi9AVFJlUoLsnL6apdtkZedlKrmfgBJNmE0v7LyLvhYcHIzwxacn5COgNfjWh2uC6dpE0KlD1o6CMxFKIEIWNlck65XWqjQu0UaTGnegz8tYjQl0QYp21wJOx5CoETtXJp1yZdAbGdejmFBHrlRVj5UULddn7M1YMGPjei57De9GCYgEB9JuElx34MpYcJ4rpmWJFp8yKNklOWiDXQkSa51PV68JFqE0WqbrH8bc6hU1%2bvHk3DGXDONolmw5McQZaq5SVCD202uEM%2bZyeNKWZAITqq7alPeNpPtBW%2fF%2bf7wNH0YKxIZqE1qeL6eoTYKKVgmrB5jNk6RQFzpSbp8qmXBrC06OyFCWmBq%2bvvwE%3d"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/yugangwncu-kv","name":"yugangwncu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwncu/providers/Microsoft.KeyVault/vaults/yugangwncu-kv","location":"northcentralus","tags":{},"deletionDate":"2020-01-04T17:11:31Z","scheduledPurgeDate":"2020-04-03T17:11:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:30:34Z","scheduledPurgeDate":"2020-04-05T14:30:34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-dgs3ww","name":"cli-test-keyvault-dgs3ww","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretpsvxdcwyihjpliaox62f5jbkgkkx4p4jhvja7ajaivpshjohcta/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgs3ww","location":"westus","tags":{},"deletionDate":"2020-01-06T14:28:03Z","scheduledPurgeDate":"2020-04-05T14:28:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-glkolr","name":"cli-test-keyvault-glkolr","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretn4dexdawjt7z6l74otluozv6mg4jvgpswu3rbbrbvnjkxcbghve/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-glkolr","location":"westus","tags":{},"deletionDate":"2020-01-05T08:50:14Z","scheduledPurgeDate":"2020-04-04T08:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-p6umsyofnyo","name":"cli-keyvault-p6umsyofnyo","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtfnltd4bbrg5iqe4fai7xlfcolyb5bwwzftqsbgpegr3h6udufjlap/providers/Microsoft.KeyVault/vaults/cli-keyvault-p6umsyofnyo","location":"westus","tags":{},"deletionDate":"2019-12-31T02:23:58Z","scheduledPurgeDate":"2020-03-30T02:23:58Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","location":"westus","tags":{},"deletionDate":"2019-12-27T17:27:31Z","scheduledPurgeDate":"2020-03-26T17:27:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","location":"westus","tags":{},"deletionDate":"2019-12-27T17:25:48Z","scheduledPurgeDate":"2020-03-26T17:25:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-lgqxlozvqvm7qp","name":"vault-lgqxlozvqvm7qp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_ghrkiwtzwo6lt6hsc47lnlf3s7s3qoiqwzrohk4kdwl2qp/providers/Microsoft.KeyVault/vaults/vault-lgqxlozvqvm7qp","location":"westcentralus","tags":{},"deletionDate":"2020-01-02T11:38:52Z","scheduledPurgeDate":"2020-04-01T11:38:52Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu2-kv","name":"yugangwcu2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.KeyVault/vaults/yugangwcu2-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu-kv","name":"yugangwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.KeyVault/vaults/yugangwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwwcu-kv","name":"yugangwwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwcu/providers/Microsoft.KeyVault/vaults/yugangwwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-30T17:14:10Z","scheduledPurgeDate":"2020-03-29T17:14:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan2-kv","name":"yugangwcan2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan2/providers/Microsoft.KeyVault/vaults/yugangwcan2-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-30T17:13:53Z","scheduledPurgeDate":"2020-03-29T17:13:53Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-27T17:13:49Z","scheduledPurgeDate":"2020-03-26T17:13:49Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbtowFIbfBU27GsUJyUYrVVOCHRrWczwbOxXcUQiUmEJF6Jp46rvvpKr2Dq1yEUWyEunT9%2f352zuUzfl2d3B17%2bpvD6U2N2OBRie3dta76j2cz0%2f11WDwuDwst%2bVjeThfLP3zqbxYHR8H9fN9vTrtns6746EesPtg8z36EfSD%2bw3rR%2bv1sr8sV8P%2b6v4y%2fBFu2GV8yQZPp%2bOf3bo81QPYrU7H%2brg5X%2fwq22L5vD8P1uW%2bPJfrt4f65%2fJp1%2f9DJ%2bnl1yELRn0W9oPo65fa0RePrjxcW1fc6WJqtNWZEYWd2Ut5a%2fd2w%2fMAzLbFaj7EyjLgwiMXkTTFCHx36TE9M8m1QKFTLaZjRefQLFJ0Rab8fAhW9b71ZtKaG5HMTDLLk4%2bOQ3LCYaCV3MZgcoZ8MdI8eYFqG6LLCMk2Qp40aPapciJUZh6jswEhjHVlCUdHws7Cjw8iD9DMPfB5ADwnN%2fbkxXSsXcHRgkefcuQulmYvsEpixbJMGhiiWHBkQCA%2bTSKSbz1W0BIKcmJFyawJhYvQzUPJM4FuQV6kmXb5C%2fJVQ8lMwFE6ZhtL26F4S%2bSz8PBghCcmDTkfAd3Br0doCq4rR%2fOhAlU9CGoklkKEKGysTN4qrzNtXKBNNxl3omvkoydCW0Az2c2opTxUSymMoFp5qPKGtqCFqptUTZlQIgwYetEqqyLJ1yl58s7hs2jRorFD8MkQed5NJINqMQIrGP1JOIqMS44TQpEBdy%2bqSifoRKMckC7TVLE54XifTmGT3x%2feDUNtkO%2bSQ9DtwNt8OoihKsbK2wBs3pAzDK2IQFgPTjFddb2oVlUdjP9efA4c84YyCdEk5IYjHNkImGikoFmwxQRZlqLAiXLTTFlyxUwn6KHRNpsAU73X138%3d"}' headers: cache-control: - no-cache content-length: - - '22553' + - '22171' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:29 GMT + - Mon, 06 Jan 2020 14:30:40 GMT expires: - '-1' pragma: @@ -1552,38 +1552,38 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 4c342f5d-e247-4c0c-b3a9-304301928867 - - 55a1051a-8b84-41ba-9a34-02bf657e6e59 - - 2c2b8ddd-ae97-4eb5-bc67-dfd965773f21 - - 519aeb1b-c705-4da0-b4d7-3df8a24b8ec7 - - 053e4e74-dbbb-4dbb-a37f-3b4084bc7b14 - - c90fd948-eee5-4b77-b255-42f54cda9134 - - fe86b37e-41b3-4166-b947-00d74975fb74 - - 6b928583-08a0-40e2-9ee0-11fb45b53d9b - - 3924ac4b-1adf-42f9-8c9e-207c7dfcf342 - - 76e06495-3d3e-494b-9195-061d4f168d24 - - c45609fc-69b6-454f-b8d2-9f7706d51994 - - 08263d7c-1196-435a-b580-832dfc888e21 - - 32dfb557-2579-4d69-89ed-a3794f1198b2 - - f1e969a8-557f-4df0-bd3f-5ff182cac70f - - 8f1101aa-8532-4241-a7f5-e3c2dc28ff49 - - b8d9a55a-50bd-4c54-b3df-9b37448546ee - - 3befdb8a-e5df-4b55-90cf-d9a6c6714747 - - f2da047f-959b-4c4f-9fec-2ba9d4402aa7 - - 8bfb73fd-a967-45a8-8a0d-2ea5a58f7ab0 - - d2781155-312f-4cee-907d-ae8064425f8d - - b87b4aed-1475-41d6-a005-13e7634bf27b - - a20eca2f-03d0-4c5a-a91b-6b355492a156 - - 476de91a-820f-4274-b292-725b94c342e3 - - f5028d93-226b-447e-9c1f-dec5a825b949 - - 482a3387-89b5-4ac7-ac83-ebe6cc6a4bf1 - - 6b6e2b08-da25-4ec5-93fb-cb2421df8d10 - - 4f44137b-a553-491c-826d-c177ae34cf26 - - 4db1e5ce-2eec-4a61-99b1-db2e0ed16713 - - 116238c2-8a98-472a-93c3-e09bfe03abc5 - - 520aa12d-9a3c-46f7-8af9-e1326b6cea4d - - 90e42558-0a56-42b3-8402-45a65660d5e0 - - 0a7bfd42-ab8f-46e6-a498-174fd3e53b60 + - a62c0f52-b42e-4dd7-ac29-05e3f2a6893d + - 3ee6ac35-694e-4bbc-83f2-93df60b52518 + - 610f0ad2-6b59-4fb4-9bfe-012a3e15c4d1 + - b50faef5-29e9-4179-8cf7-ea4ed4a3a0a2 + - db1e9d23-722c-4e57-bc04-f5e5838e6943 + - 1b472d89-2dad-46ee-8709-81baedbe79bf + - d35d2526-c1d1-4ddd-b254-aaa32fea2e7e + - f79ada10-348a-438f-864b-323a78fc84d9 + - 3a03d45d-10b3-4d90-8090-c51ade8a6d4d + - d9874dbd-2b70-4da7-a8cf-3b7dc1ecb2f9 + - d95b1924-1348-460b-9e16-1bf6ee6e3f8a + - 076a03a8-5c59-44f2-bcd1-06b952168dcc + - 6628e782-c525-4384-8bd9-bb17a710cfac + - 8ead80ea-b89a-4425-8a31-3f42d2952737 + - b9a8af04-de0d-4d77-a687-3e502df573be + - 4640b015-f716-4e44-ad7f-0efa567df67a + - 4e272887-4ff2-4540-ab96-f3c9138ed901 + - 12a5996a-49f1-47b4-bf7d-e65964467fa0 + - df718f2b-4196-4817-999e-7605a709a7ba + - bd28dec7-9c0d-4ff8-bc2b-09e7a0a0987b + - cbedcb97-705e-4ded-b564-245c077d828a + - 373919e6-f8d8-48a1-b33e-3ccf275a3dd8 + - 4b64728e-b701-42f7-9f71-173540e8b444 + - 08098755-fd2b-4e28-8e44-8b3038434d2d + - 8ce135e0-8aed-49bd-9846-d48970799799 + - e2f5bb61-293f-491f-a96d-f222a0dd5f54 + - 03217151-16d5-48ce-ae34-724e4549dadf + - a55e0261-4d74-451c-a21f-7c656216b5c1 + - 0c7b1c53-2960-40fb-b033-c318eda36005 + - 8d8edd34-50f9-4cce-a241-6e8eea43d8eb + - ab6b386e-5983-4242-b021-b824bb995f85 + - ee845e67-52bd-4ba0-8dae-4f30ab140e61 status: code: 200 message: OK @@ -1607,7 +1607,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1623,7 +1623,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:36 GMT + - Mon, 06 Jan 2020 14:30:47 GMT expires: - '-1' pragma: @@ -1643,7 +1643,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1195' x-powered-by: - ASP.NET status: @@ -1666,23 +1666,23 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '11434' + - '4007' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:37 GMT + - Mon, 06 Jan 2020 14:30:49 GMT expires: - '-1' pragma: @@ -1715,7 +1715,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -1729,7 +1729,7 @@ interactions: content-length: - '0' date: - - Fri, 27 Dec 2019 15:04:43 GMT + - Mon, 06 Jan 2020 14:30:55 GMT expires: - '-1' pragma: @@ -1745,7 +1745,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -1768,23 +1768,23 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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.KeyVault/deletedVaults?api-version=2018-02-14 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-be6s7zn","name":"cli-test-kevault-be6s7zn","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretwrt4o34cqnpv4st3cigemfvqqc2tnxjelxj6d3mkhgkxqqnnqv7/providers/Microsoft.KeyVault/vaults/cli-test-kevault-be6s7zn","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:17:12Z","scheduledPurgeDate":"2020-03-05T09:17:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:04:41Z","scheduledPurgeDate":"2020-03-26T15:04:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-veymyk","name":"cli-test-keyvault-veymyk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretbm4difszfjpzxnbrjcrhmkdsqthsqm4tsgcc6c65y7khbigz5rn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-veymyk","location":"westus","tags":{},"deletionDate":"2019-12-27T14:31:32Z","scheduledPurgeDate":"2020-03-26T14:31:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtvqhr345","name":"cli-keyvault-mgmtvqhr345","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtvqhr345","location":"westus","tags":{},"deletionDate":"2019-12-27T08:19:19Z","scheduledPurgeDate":"2020-03-26T08:19:19Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softjj2kztp","name":"cli-keyvault-softjj2kztp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretip43rtw6yezopevffgobsqbod6zz36f6se6b2wb2o5ixoizln36/providers/Microsoft.KeyVault/vaults/cli-keyvault-softjj2kztp","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:35Z","scheduledPurgeDate":"2020-03-26T08:18:35Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtr7a6xhe","name":"cli-keyvault-mgmtr7a6xhe","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtkdmnuko3glg4pd7yg5mreavlh3knlz7h3qjgf2xti773hf4rprzen/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtr7a6xhe","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:10Z","scheduledPurgeDate":"2020-03-26T08:18:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtew3cglh","name":"cli-keyvault-mgmtew3cglh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtew3cglh","location":"westus","tags":{},"deletionDate":"2019-12-27T08:16:29Z","scheduledPurgeDate":"2020-03-26T08:16:29Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-67qn6veyxoest","name":"vault2-67qn6veyxoest","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault2-67qn6veyxoest","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-dk77xkq42y62f","name":"vault1-dk77xkq42y62f","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault1-dk77xkq42y62f","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-fjhnwonczlt6t","name":"vault2-fjhnwonczlt6t","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault2-fjhnwonczlt6t","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-xzdscdoaut5ps","name":"vault1-xzdscdoaut5ps","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault1-xzdscdoaut5ps","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe40-kv","name":"yugangwe40-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe40/providers/Microsoft.KeyVault/vaults/yugangwe40-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:15Z","scheduledPurgeDate":"2020-03-18T01:27:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe10-kv","name":"yugangwe10-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe10/providers/Microsoft.KeyVault/vaults/yugangwe10-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:04Z","scheduledPurgeDate":"2020-03-18T01:27:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbpswFIbfJZp2tTSGwJZWqiZSm4ys53h2bCp6lxKSBqdJFdIFPPXdd5imaa%2fQXiCEdITlT9%2f%2fn1%2bDfdWebrd71wyufg1QavPtRqDRya1dDK4Gj6fTc3M1Gj0t98tN9VTtTxdL%2f3KsLsrD06h5eWjK4%2fb5tD3smxF7CNafoy%2fBMHhYs2G0Wi2Hy6ocD8uHy%2fBLuGaX8SUbPR8PP7er6tiMYFseD81hfbr4XnX58mV3Gq2qXXWqVn8%2bmq%2fL5%2b3wJ03Sz69DFkyGLBwG0ccPjaMTD67aX1uX3%2bl8brTVqRG5XdhLeWt3ds2zAMymw7oYY%2b1C9CKU3MZo8ok2Ravqgklxz8Eqj6KIaOaszU6As2flrNfGdiBg8GmwkNZ8E8nCJIssees4JCccBroeBZiMIb%2bfaJ6cod6E6NIb5JsIedKi2U2VE6EyRYzOBljbWNeWcPQk7CJ8%2byCyAE3hgRcB8Mwj303Az2%2b0yzla8OinHLmLJTmBdRIrlqbSwBjJGWS9F%2b8mIpJvPNbQEQpyoqTIrAiFi9AVFJlUoLsnL6apdtkZedlKrmfgBJNmE0v7LyLvhYcHIzwxacn5COgNfjWh2uC6dpE0KlD1o6CMxFKIEIWNlck65XWqjQu0UaTGnegz8tYjQl0QYp21wJOx5CoETtXJp1yZdAbGdejmFBHrlRVj5UULddn7M1YMGPjei57De9GCYgEB9JuElx34MpYcJ4rpmWJFp8yKNklOWiDXQkSa51PV68JFqE0WqbrH8bc6hU1%2bvHk3DGXDONolmw5McQZaq5SVCD202uEM%2bZyeNKWZAITqq7alPeNpPtBW%2fF%2bf7wNH0YKxIZqE1qeL6eoTYKKVgmrB5jNk6RQFzpSbp8qmXBrC06OyFCWmBq%2bvvwE%3d"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/yugangwncu-kv","name":"yugangwncu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwncu/providers/Microsoft.KeyVault/vaults/yugangwncu-kv","location":"northcentralus","tags":{},"deletionDate":"2020-01-04T17:11:31Z","scheduledPurgeDate":"2020-04-03T17:11:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:30:52Z","scheduledPurgeDate":"2020-04-05T14:30:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-dgs3ww","name":"cli-test-keyvault-dgs3ww","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretpsvxdcwyihjpliaox62f5jbkgkkx4p4jhvja7ajaivpshjohcta/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgs3ww","location":"westus","tags":{},"deletionDate":"2020-01-06T14:28:03Z","scheduledPurgeDate":"2020-04-05T14:28:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-glkolr","name":"cli-test-keyvault-glkolr","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretn4dexdawjt7z6l74otluozv6mg4jvgpswu3rbbrbvnjkxcbghve/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-glkolr","location":"westus","tags":{},"deletionDate":"2020-01-05T08:50:14Z","scheduledPurgeDate":"2020-04-04T08:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-p6umsyofnyo","name":"cli-keyvault-p6umsyofnyo","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtfnltd4bbrg5iqe4fai7xlfcolyb5bwwzftqsbgpegr3h6udufjlap/providers/Microsoft.KeyVault/vaults/cli-keyvault-p6umsyofnyo","location":"westus","tags":{},"deletionDate":"2019-12-31T02:23:58Z","scheduledPurgeDate":"2020-03-30T02:23:58Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","location":"westus","tags":{},"deletionDate":"2019-12-27T17:27:31Z","scheduledPurgeDate":"2020-03-26T17:27:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","location":"westus","tags":{},"deletionDate":"2019-12-27T17:25:48Z","scheduledPurgeDate":"2020-03-26T17:25:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-lgqxlozvqvm7qp","name":"vault-lgqxlozvqvm7qp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_ghrkiwtzwo6lt6hsc47lnlf3s7s3qoiqwzrohk4kdwl2qp/providers/Microsoft.KeyVault/vaults/vault-lgqxlozvqvm7qp","location":"westcentralus","tags":{},"deletionDate":"2020-01-02T11:38:52Z","scheduledPurgeDate":"2020-04-01T11:38:52Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu2-kv","name":"yugangwcu2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.KeyVault/vaults/yugangwcu2-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu-kv","name":"yugangwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.KeyVault/vaults/yugangwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwwcu-kv","name":"yugangwwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwcu/providers/Microsoft.KeyVault/vaults/yugangwwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-30T17:14:10Z","scheduledPurgeDate":"2020-03-29T17:14:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan2-kv","name":"yugangwcan2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan2/providers/Microsoft.KeyVault/vaults/yugangwcan2-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-30T17:13:53Z","scheduledPurgeDate":"2020-03-29T17:13:53Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-27T17:13:49Z","scheduledPurgeDate":"2020-03-26T17:13:49Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbtowFIbfBU27GsUJyUYrVVOCHRrWczwbOxXcUQiUmEJF6Jp46rvvpKr2Dq1yEUWyEunT9%2f352zuUzfl2d3B17%2bpvD6U2N2OBRie3dta76j2cz0%2f11WDwuDwst%2bVjeThfLP3zqbxYHR8H9fN9vTrtns6746EesPtg8z36EfSD%2bw3rR%2bv1sr8sV8P%2b6v4y%2fBFu2GV8yQZPp%2bOf3bo81QPYrU7H%2brg5X%2fwq22L5vD8P1uW%2bPJfrt4f65%2fJp1%2f9DJ%2bnl1yELRn0W9oPo65fa0RePrjxcW1fc6WJqtNWZEYWd2Ut5a%2fd2w%2fMAzLbFaj7EyjLgwiMXkTTFCHx36TE9M8m1QKFTLaZjRefQLFJ0Rab8fAhW9b71ZtKaG5HMTDLLk4%2bOQ3LCYaCV3MZgcoZ8MdI8eYFqG6LLCMk2Qp40aPapciJUZh6jswEhjHVlCUdHws7Cjw8iD9DMPfB5ADwnN%2fbkxXSsXcHRgkefcuQulmYvsEpixbJMGhiiWHBkQCA%2bTSKSbz1W0BIKcmJFyawJhYvQzUPJM4FuQV6kmXb5C%2fJVQ8lMwFE6ZhtL26F4S%2bSz8PBghCcmDTkfAd3Br0doCq4rR%2fOhAlU9CGoklkKEKGysTN4qrzNtXKBNNxl3omvkoydCW0Az2c2opTxUSymMoFp5qPKGtqCFqptUTZlQIgwYetEqqyLJ1yl58s7hs2jRorFD8MkQed5NJINqMQIrGP1JOIqMS44TQpEBdy%2bqSifoRKMckC7TVLE54XifTmGT3x%2feDUNtkO%2bSQ9DtwNt8OoihKsbK2wBs3pAzDK2IQFgPTjFddb2oVlUdjP9efA4c84YyCdEk5IYjHNkImGikoFmwxQRZlqLAiXLTTFlyxUwn6KHRNpsAU73X138%3d"}' headers: cache-control: - no-cache content-length: - - '22553' + - '22171' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:47 GMT + - Mon, 06 Jan 2020 14:30:58 GMT expires: - '-1' pragma: @@ -1796,38 +1796,38 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - ef09f3c4-66d2-472e-8571-5d12fa2c87a2 - - b0b2afb4-bf0b-4ba9-ac65-b47eb05648c3 - - 2bae5098-4495-4893-b9f9-6162fff74454 - - b9289daf-ad56-4d64-8615-2991ac3372cb - - 3764b7fc-71a2-4022-93e5-52c7b7505eb0 - - f0cf684b-7ae3-4803-87d1-8c54b7ab380c - - 92c4c0b0-3480-4042-a3a4-b532c844614c - - 3bdf29c8-4269-4987-9aea-fd0e3003fccf - - dec9cc70-b79a-42f2-9264-e8f43097acfb - - 30f43524-8a6c-4e3b-a913-e03dcfe1263d - - d7375741-68a6-4089-a5f0-ce03dc75bafa - - ab68c69b-b8ef-4b40-800e-cf506e7b4563 - - de426b6c-9955-4da3-b03f-f972c2924dad - - 77f1d56e-a203-4dfc-a3c7-0b756b78af15 - - 768c0a12-43a2-4b30-9a35-9bc89f544518 - - 9330ba7d-b7a6-4162-9078-daf211ce261a - - a2ee1e93-6379-4d6c-bc28-33a480779b43 - - e829d135-c6cf-4bcf-98fd-1eb094248514 - - 7bb4380e-8944-4fe1-8b1c-95095536f57b - - 0c570c89-bd4c-46df-b56e-4cff912943d0 - - a4cd9eac-9ae7-4d3e-8c59-73ff29401dc3 - - 3041b25b-4661-410f-8d6b-5d98111775f1 - - 3875ef41-006c-4ab5-8d61-458de1e76168 - - b261fb59-3c92-407e-b8dd-575ce853fee2 - - 8bd64915-1cf4-4c70-a861-ba9931d06fd3 - - 41bb922c-39a8-4c7a-9470-4df0b58a0d76 - - 6edb79a6-a06b-4608-b402-135531b92347 - - 5977cd16-ead1-429b-bb8b-339d072cbff4 - - c2fc56bd-c600-454a-819d-675902120eee - - 1e52eefd-6b73-4e88-8927-c2bf7289c3f1 - - 6e1a0f14-3d7b-476b-93e9-0c6afe1761cf - - 2283e309-0279-47ed-a231-11d58104a152 + - 6b842a53-788f-48c7-9788-dd188287d9b4 + - 4e27488f-0256-4276-aa13-84318b079477 + - bea7b2fb-db7c-4c6c-9ea2-00e16746e01f + - d33bc845-dce8-4e19-a632-e751ed14547c + - c58c64d5-03f0-436d-932e-bd78dc8fa980 + - 440ba493-b2aa-4b21-8429-0f44d753ea67 + - 07b59031-8235-42ea-99ad-3c8011f1493d + - f088c43d-dc51-450a-a6be-1b745919ee2d + - bfd1ee3b-affc-45a5-b006-63c3b0c7923e + - d3d56529-c4bb-4e38-b150-ff0b5733541d + - 25df0ce2-9ab9-4ee8-a6c7-be42d4550a97 + - f66473b2-2d49-4f34-8296-38cff0c2fb0b + - 07f692e9-7a50-494e-a1fa-428444b25f4c + - 4eb18f89-fee9-4116-a2bd-7576aa8ef02a + - 8448a940-2cf6-4f14-9163-dac7f7eebb8f + - d3dd0cd1-7e25-47dc-b037-ad5e3c638696 + - 6cfc2c25-b872-466f-8eb9-683a042c4dca + - 8b201b67-a5b7-4497-b551-8ea2bfe62881 + - 468277e1-5fa7-4b29-8433-7b50b59cded3 + - a62f3bf6-6213-4a7f-887c-01d52dc3354f + - 25b9634b-79c1-4e7e-8153-ab4472193c93 + - 083be890-cd9e-4eee-acff-ba41374fb064 + - 44c39b49-61a1-42cb-9269-981c13e5efaf + - 781ba769-c755-4650-a465-e8d351bb3d4d + - ee3a42f7-4473-405d-a700-7fe982864445 + - c5541210-2648-4a11-8de9-5d2fdc786292 + - 16a3e7f3-73da-4742-957d-b713559ebaaa + - 4f494e0e-1efa-4787-b07a-acb3172a7e7e + - 1b6f452e-f5cb-4afd-8d19-5542ca0bb0ab + - 03216504-3cff-4304-9f81-894492ab72e9 + - cbff4589-12c4-40a4-a200-ef2b94f6df3c + - 53ced6fb-9b37-4184-81a9-608ba52ae054 status: code: 200 message: OK @@ -1850,7 +1850,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1864,11 +1864,11 @@ interactions: content-length: - '0' date: - - Fri, 27 Dec 2019 15:04:49 GMT + - Mon, 06 Jan 2020 14:30:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 pragma: - no-cache server: @@ -1882,7 +1882,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' x-powered-by: - ASP.NET status: @@ -1903,12 +1903,12 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 response: body: - string: '{"createdDateTime":"2019-12-27 15:04:49Z","status":"NotStarted"}' + string: '{"createdDateTime":"2020-01-06 14:30:59Z","status":"NotStarted"}' headers: cache-control: - no-cache @@ -1917,11 +1917,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:04:56 GMT + - Mon, 06 Jan 2020 14:31:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 pragma: - no-cache server: @@ -1954,12 +1954,12 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 response: body: - string: '{"createdDateTime":"2019-12-27 15:04:49Z","status":"NotStarted"}' + string: '{"createdDateTime":"2020-01-06 14:30:59Z","status":"NotStarted"}' headers: cache-control: - no-cache @@ -1968,11 +1968,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:05:04 GMT + - Mon, 06 Jan 2020 14:31:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 pragma: - no-cache server: @@ -2005,13 +2005,13 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 response: body: - string: '{"createdDateTime":"2019-12-27 15:04:49Z","lastActionDateTime":"2019-12-27 - 15:05:06Z","status":"Succeeded"}' + string: '{"createdDateTime":"2020-01-06 14:30:59Z","lastActionDateTime":"2020-01-06 + 14:31:14Z","status":"Succeeded"}' headers: cache-control: - no-cache @@ -2020,7 +2020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:05:11 GMT + - Mon, 06 Jan 2020 14:31:19 GMT expires: - '-1' pragma: @@ -2076,19 +2076,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 15:05:13 GMT + - Mon, 06 Jan 2020 14:31:22 GMT duration: - - '2712776' + - '2404241' expires: - '-1' ocp-aad-diagnostics-server-name: - - N74c8ldu8hl9jU3L0P00lqK53hRnYh0rKSMTbFc2+Rs= + - QE46OP7QH9b9YEig+PQuzvbDRWQ4hRBhkwALGVrMwDo= ocp-aad-session-key: - - dg6JlF1iPp2BZUycQ2wMQRdQvEJlkCPwoCcZsIi31JJUmrrwCWt1CPRSNKXemFVNZudlALGMARekQkD3kqGqF3AoeyMbKfJAsnxjo4eVuX3BYa40JcXhDnJQVQjgcnk-gLK-bnnGQ9mquGy8eFh2k1UthsntVWXoRESP7Jh1PHg.reqr_-wiyBrVFW95CNzeuzwv_VtKKB3ZNSW-3pcqKy0 + - KOi7iSnWs00V7a1VfRQ-Tt_9ei0L9kKT_16ymx4hpj2XjvG5VCCxftT4LEw0FQJWBNjybbYND-CaO09d5ADfWBtDbAohYAG1GHlaKsmUhdSuKpklkvBHpMqb_6PHAWrtyVqWMLN5P7lG2O0yBjwT6iALV4zv9ykrQMC43USlLEI.s1PWHjS8fG0fH0IU8bDEDlF7dFtl01FIZArtfhG5N1A pragma: - no-cache request-id: - - 873bdeb1-8555-45fd-b760-17a0816e59da + - 34f81ace-c21c-4421-bb1f-4aed51f15e16 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2128,7 +2128,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -2144,7 +2144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:05:22 GMT + - Mon, 06 Jan 2020 14:31:30 GMT expires: - '-1' pragma: @@ -2164,7 +2164,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1196' x-powered-by: - ASP.NET status: @@ -2185,7 +2185,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -2199,7 +2199,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:05:53 GMT + - Mon, 06 Jan 2020 14:32:03 GMT expires: - '-1' pragma: @@ -2240,23 +2240,23 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_download32msczfuvzh5ocqy7gn5yyjy2hjed4ydv3m55vuhycp5vbngv5/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgmjh3","name":"cli-test-keyvault-dgmjh3","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '11434' + - '3696' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:05:55 GMT + - Mon, 06 Jan 2020 14:32:04 GMT expires: - '-1' pragma: @@ -2289,7 +2289,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -2303,7 +2303,7 @@ interactions: content-length: - '0' date: - - Fri, 27 Dec 2019 15:06:01 GMT + - Mon, 06 Jan 2020 14:32:11 GMT expires: - '-1' pragma: @@ -2319,7 +2319,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' x-powered-by: - ASP.NET status: @@ -2342,14 +2342,14 @@ interactions: - -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:05:58Z","scheduledPurgeDate":"2020-03-26T15:05:58Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:32:07Z","scheduledPurgeDate":"2020-04-05T14:32:07Z"}}' headers: cache-control: - no-cache @@ -2358,7 +2358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:06:03 GMT + - Mon, 06 Jan 2020 14:32:13 GMT expires: - '-1' pragma: @@ -2402,7 +2402,7 @@ interactions: - -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -2418,7 +2418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:06:10 GMT + - Mon, 06 Jan 2020 14:32:21 GMT expires: - '-1' pragma: @@ -2438,7 +2438,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1191' x-powered-by: - ASP.NET status: @@ -2461,23 +2461,23 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_download32msczfuvzh5ocqy7gn5yyjy2hjed4ydv3m55vuhycp5vbngv5/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgmjh3","name":"cli-test-keyvault-dgmjh3","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '11434' + - '3696' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:06:11 GMT + - Mon, 06 Jan 2020 14:32:23 GMT expires: - '-1' pragma: @@ -2510,7 +2510,7 @@ interactions: - -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -2524,7 +2524,7 @@ interactions: content-length: - '0' date: - - Fri, 27 Dec 2019 15:06:16 GMT + - Mon, 06 Jan 2020 14:32:26 GMT expires: - '-1' pragma: @@ -2563,14 +2563,14 @@ interactions: - -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:06:14Z","scheduledPurgeDate":"2020-03-26T15:06:14Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:32:24Z","scheduledPurgeDate":"2020-04-05T14:32:24Z"}}' headers: cache-control: - no-cache @@ -2579,7 +2579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:06:19 GMT + - Mon, 06 Jan 2020 14:32:29 GMT expires: - '-1' pragma: @@ -2622,7 +2622,7 @@ interactions: - -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -2636,11 +2636,11 @@ interactions: content-length: - '0' date: - - Fri, 27 Dec 2019 15:06:22 GMT + - Mon, 06 Jan 2020 14:32:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1OTgzMTEzMjcxOXxGRUNCMTFCMjM4QkI0OEY5OTM4M0QyNjM2N0U4RjQ5RQ?api-version=2018-02-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 pragma: - no-cache server: @@ -2675,13 +2675,115 @@ interactions: - -n -l User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 + response: + body: + string: '{"createdDateTime":"2020-01-06 14:32:32Z","status":"NotStarted"}' + headers: + cache-control: + - no-cache + content-length: + - '64' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:32:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + ParameterSetName: + - -n -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 + response: + body: + string: '{"createdDateTime":"2020-01-06 14:32:32Z","status":"NotStarted"}' + headers: + cache-control: + - no-cache + content-length: + - '64' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 06 Jan 2020 14:32:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + ParameterSetName: + - -n -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1OTgzMTEzMjcxOXxGRUNCMTFCMjM4QkI0OEY5OTM4M0QyNjM2N0U4RjQ5RQ?api-version=2018-02-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 response: body: - string: '{"createdDateTime":"2019-12-27 15:06:22Z","lastActionDateTime":"2019-12-27 - 15:06:24Z","status":"Succeeded"}' + string: '{"createdDateTime":"2020-01-06 14:32:32Z","lastActionDateTime":"2020-01-06 + 14:32:47Z","status":"Succeeded"}' headers: cache-control: - no-cache @@ -2690,7 +2792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:06:29 GMT + - Mon, 06 Jan 2020 14:32:51 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml index fc855f15fb0..3f89b753555 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml @@ -1,54 +1,4 @@ interactions: -- request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-14T16:50:18Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '110' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_keyvault_sa000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T16:50:18Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '384' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:50:18 GMT - expires: - - '-1' - pragma: - - no-cache - 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: @@ -59,50 +9,41 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"4290ae1b-4f92-4dc9-81fe-fab805a38536","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["617b097b-4b93-4ede-83de-5f075bb5fb2f","4a51bca5-1eff-43f5-878c-177680f191af","efb0351d-3b08-4503-993d-383af8de41e3","5136a095-5cf0-4aff-bec3-e84448b38ea5","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"dcb1a3ae-b33f-4487-846a-a640262fadf4"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"}],"assignedPlans":[{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-05-26T14:18:28Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-10T11:33:09Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-07T16:02:46Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-07T16:02:46Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-07T16:02:46Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"d20bfa21-e9ae-43fc-93c2-20783f0840c3"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"d5368ca3-357e-4acb-9c21-8495fb025d1f"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2019-02-28T07:24:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2019-02-28T07:24:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2019-02-28T07:24:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2019-02-27T17:03:32Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2019-02-27T17:03:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2019-02-25T16:30:12Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2019-02-25T16:30:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2019-02-25T16:29:42Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2019-02-25T16:29:42Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-02-25T11:04:14Z","creationType":null,"department":"Azure - and Web","dirSyncEnabled":true,"displayName":"Limin Gu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Limin","immutableId":"307661","isCompromised":null,"jobTitle":"SENIOR - SOFTWARE ENGINEER","lastDirSyncTime":"2019-03-12T04:54:04Z","legalAgeGroupClassification":null,"mail":"Limin.Gu@microsoft.com","mailNickname":"limgu","mobile":null,"onPremisesDistinguishedName":"CN=Limin - Gu,OU=UserAccounts,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-34547544","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3200FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=7f932d8314da42a29556be22b176ef7a-Limin - Gu","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=a62a62a3c1a04684818f947cb91185c3-Limin - Gu-1","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=50bb232c123448d39806bc226a4b78f2-Limin - Gu","smtp:limgu@microsoft.onmicrosoft.com","smtp:limgu@service.microsoft.com","smtp:limgu@microsoft.com","SMTP:Limin.Gu@microsoft.com"],"refreshTokensValidFromDateTime":"2019-03-04T21:30:38Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"limgu@microsoft.com","state":null,"streetAddress":null,"surname":"Gu","telephoneNumber":"+1 - (425) 4214240","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/4290ae1b-4f92-4dc9-81fe-fab805a38536/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"limgu@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"138058","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Wang, - Yugang","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"YUGANGW","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91803823","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 - Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"307661"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-06-21T01:32:03Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Zunli + Hu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zuh@microsoft.com","mailNickname":"zuh_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zuh@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zuh@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-21T01:32:03Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/21cd756e-e290-4a26-9547-93e8cc1a8923/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zuh_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-06-24T01:43:59Z","userType":"Guest"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '14107' + - '1670' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 14 Jun 2019 16:50:20 GMT + - Mon, 06 Jan 2020 14:27:15 GMT duration: - - '1272461' + - '2379770' expires: - '-1' ocp-aad-diagnostics-server-name: - - gumqaGrQuKMWKx5qR6D+EntZzHCdF7Gxbt/YYl8BbgU= + - jkM1lzjvNxXCHuvy0rCnAJ/uYNEE7+B/zPhCEcVEXNc= ocp-aad-session-key: - - KVyYhYunGefWcUrESPgvEtWnqXg4yqIEuPEvi9DhtpiO21DW5V4maRQ19sTUgo_RCukvqZfSTMdwoQSHmWk8cX6m2nPfbiMTj6jLU36D8VdK07r3d4B5P8dSnaonXXDG.J3H9PEMbLdwKfT53TobmJekhi0Wo9kiPnLTBEDJRFLU + - a1Mstc5ghby1BOl-PsH50y5BPjsMrcU5gBoZR4PeRVGnRK552Wwz0vjjv4muRhaX9gXNf0L6BVRTAVbs0AGhWpip0fiVTb6d_79uQ3IK5oyYd9P5mnMBEAaA62-LieusJr56cNPEDyIbWDhD4W8qmoY0fV7VO3nMWPJ6gAXn6hQ.CQXk8zTXA4jcJbWPAE6MfxqYIy4rtYl_ZtNlIJoJLNM pragma: - no-cache request-id: - - 4c187d9b-5650-4e9a-96f3-68dae9381654 + - 13e94a34-6e97-4082-a6c3-4580a37fcbd2 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -115,9 +56,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "sku": {"family": "A", "name": "premium"}, "accessPolicies": [{"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "objectId": "4290ae1b-4f92-4dc9-81fe-fab805a38536", "permissions": {"keys": + body: '{"location": "westus", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "sku": {"family": "A", "name": "premium"}, "accessPolicies": [{"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", "import", "update", @@ -140,15 +81,15 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-keyvault/1.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.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/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4290ae1b-4f92-4dc9-81fe-fab805a38536","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache @@ -157,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:50:22 GMT + - Mon, 06 Jan 2020 14:27:23 GMT expires: - '-1' pragma: @@ -175,9 +116,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.245 + - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -197,13 +138,13 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-keyvault/1.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4290ae1b-4f92-4dc9-81fe-fab805a38536","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -212,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:50:53 GMT + - Mon, 06 Jan 2020 14:27:55 GMT expires: - '-1' pragma: @@ -230,7 +171,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.245 + - 1.1.0.269 x-powered-by: - ASP.NET status: @@ -250,24 +191,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/cli_test_keyvault_sa000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T16:50:18Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:27:07Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '384' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:50:54 GMT + - Mon, 06 Jan 2020 14:27:57 GMT expires: - '-1' pragma: @@ -299,8 +240,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -316,11 +257,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 14 Jun 2019 16:50:55 GMT + - Mon, 06 Jan 2020 14:28:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -330,142 +271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + - '1196' status: code: 202 message: Accepted @@ -483,10 +289,10 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 response: body: string: '' @@ -498,11 +304,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:23 GMT + - Mon, 06 Jan 2020 14:28:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -528,22 +334,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T16:50:55.7742242Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:28:01.3292672Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache content-length: - - '1488' + - '1461' content-type: - application/json date: - - Fri, 14 Jun 2019 16:51:26 GMT + - Mon, 06 Jan 2020 14:28:21 GMT expires: - '-1' pragma: @@ -572,13 +378,11 @@ interactions: - role assignment create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-authorization/0.50.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -596,13 +400,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:28 GMT + - Mon, 06 Jan 2020 14:28:23 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -630,47 +434,47 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27cfa8b339-82a2-471a-a3c9-0fc0be7a4093%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"93c27d83-f79b-4cb2-8dd4-4aa716542e74","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"8a32e482-bbc6-4304-a475-52ac8a89c64f","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Azure Key Vault","appId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","applicationTemplateId":null,"appOwnerTenantId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"Azure Key Vault","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application full access to the Azure Key Vault service on behalf of the signed-in user","adminConsentDisplayName":"Have full access to the Azure Key Vault service","id":"f53da476-18e3-4152-8e01-aec403e6edc0","isEnabled":true,"type":"User","userConsentDescription":"Allow the application full access to the Azure Key Vault service on your behalf","userConsentDisplayName":"Have - full access to the Azure Key Vault service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["https://vault.azure.net","AzureKeyVault","cfa8b339-82a2-471a-a3c9-0fc0be7a4093"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}]}' + full access to the Azure Key Vault service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["cfa8b339-82a2-471a-a3c9-0fc0be7a4093","https://vault.azure.net"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1752' + - '1736' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 14 Jun 2019 16:51:28 GMT + - Mon, 06 Jan 2020 14:28:24 GMT duration: - - '1043428' + - '2416013' expires: - '-1' ocp-aad-diagnostics-server-name: - - Sv8LAqxM3Xd8KdoykW0mGkYyWG5hzFClI07Ok7DI0I8= + - OGd52dHkIHcaxAyeCQfct4XNZH6J5AlyMhbgNvkrhVk= ocp-aad-session-key: - - gjVzx58TIsZslfshGj6dcWDNrTwtSxX-ruPr3KY7Q_z32svCcZ2a6qbK5PdAw0-VhSZtrGRgwLv31rtHaDhR_DCK9glDg2mARjt3CZnigSg2l5b77jqcZqWRlYGHF6Pz.sWriVKMMRluu1KaO5SGDQZH2sSZRLpxWtDn3qjKnnwg + - 4zNBQGlD80DcLUoGHt6P6MXRrlhIIL1jIujPBebDjCpgZkfURVbfGvUesd5biv_pnftwNnxAAo607GoXwZwTgij5qsStDwvYeHrCnJdRpOzfoKnWfe4Oe943-rfgnoza5-sTroMsa774ZY-Dr15ldYCld-O5cMnZuHnzGEjtPHQ.RaiROhW0Lsa2uZKzuAVHDFXGTZSodeQFMrplFUCTHd0 pragma: - no-cache request-id: - - 40cbac44-762b-49ca-b2ae-5db59eafea0f + - 20d71154-e8e1-440f-8abd-1a7117664545 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -684,7 +488,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12", - "principalId": "93c27d83-f79b-4cb2-8dd4-4aa716542e74"}}' + "principalId": "8a32e482-bbc6-4304-a475-52ac8a89c64f"}}' headers: Accept: - application/json @@ -703,15 +507,15 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-authorization/0.50.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-authorization/0.52.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/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/db38efd9-9fbb-4080-a107-5be41f6874c0?api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/3d2cd6fa-2973-49f6-aabb-fe88b55a8c46?api-version=2018-09-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"93c27d83-f79b-4cb2-8dd4-4aa716542e74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","createdOn":"2019-06-14T16:51:29.0228493Z","updatedOn":"2019-06-14T16:51:29.0228493Z","createdBy":null,"updatedBy":"4290ae1b-4f92-4dc9-81fe-fab805a38536"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/db38efd9-9fbb-4080-a107-5be41f6874c0","type":"Microsoft.Authorization/roleAssignments","name":"db38efd9-9fbb-4080-a107-5be41f6874c0"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"8a32e482-bbc6-4304-a475-52ac8a89c64f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","createdOn":"2020-01-06T14:28:24.7308557Z","updatedOn":"2020-01-06T14:28:24.7308557Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/3d2cd6fa-2973-49f6-aabb-fe88b55a8c46","type":"Microsoft.Authorization/roleAssignments","name":"3d2cd6fa-2973-49f6-aabb-fe88b55a8c46"}' headers: cache-control: - no-cache @@ -720,21 +524,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:31 GMT + - Mon, 06 Jan 2020 14:28:29 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-ms-request-charge: - - '2' + - '4' status: code: 201 message: Created @@ -752,22 +556,25 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 response: body: - string: '' + string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer + or PoP token."}}' headers: cache-control: - no-cache content-length: - - '0' + - '87' + content-type: + - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:31 GMT + - Mon, 06 Jan 2020 14:28:31 GMT expires: - '-1' pragma: @@ -777,18 +584,18 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -810,15 +617,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531095,"updated":1560531095,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1578320915,"updated":1578320915,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -827,7 +634,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:35 GMT + - Mon, 06 Jan 2020 14:28:34 GMT expires: - '-1' pragma: @@ -841,11 +648,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -866,15 +673,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1578320917,"updated":1578320917,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -883,7 +690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:36 GMT + - Mon, 06 Jan 2020 14:28:37 GMT expires: - '-1' pragma: @@ -897,11 +704,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -919,15 +726,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess/?api-version=7.0 response: body: - string: '{"value":"?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2019-06-14T20:51:37Z&spr=https&sig=n7LbvGZhXlLIGfEAXImmnQNC8oPpxosy%2FCFugddZ3Eg%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","managed":true,"attributes":{"enabled":true,"exp":1560545497,"recoveryLevel":"Purgeable"}}' + string: '{"value":"?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-06T18:28:39Z&spr=https&sig=KY9oHUDJpLPtCkPvhV3Zsl16eQ%2FyQL1XhaCAppAJUz0%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","managed":true,"attributes":{"enabled":true,"exp":1578335319,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -936,7 +743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:36 GMT + - Mon, 06 Jan 2020 14:28:39 GMT expires: - '-1' pragma: @@ -950,11 +757,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -968,13 +775,13 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 x-ms-date: - - Fri, 14 Jun 2019 16:51:37 GMT + - Mon, 06 Jan 2020 14:28:39 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2019-06-14T20:51:37Z&spr=https&sig=n7LbvGZhXlLIGfEAXImmnQNC8oPpxosy%2FCFugddZ3Eg%3D&restype=container + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1?restype=container&sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-06T18%3A28%3A39Z&spr=https&sig=KY9oHUDJpLPtCkPvhV3Zsl16eQ%2FyQL1XhaCAppAJUz0%3D response: body: string: '' @@ -982,15 +789,15 @@ interactions: content-length: - '0' date: - - Fri, 14 Jun 2019 16:51:37 GMT + - Mon, 06 Jan 2020 14:28:41 GMT etag: - - '"0x8D6F0E891071F3D"' + - '"0x8D792B4BB10DC7B"' last-modified: - - Fri, 14 Jun 2019 16:51:37 GMT + - Mon, 06 Jan 2020 14:28:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created @@ -1002,17 +809,17 @@ interactions: Content-Length: - '42' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 x-ms-blob-content-type: - text/plain x-ms-blob-type: - BlockBlob x-ms-date: - - Fri, 14 Jun 2019 16:51:37 GMT + - Mon, 06 Jan 2020 14:28:43 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2019-06-14T20:51:37Z&spr=https&sig=n7LbvGZhXlLIGfEAXImmnQNC8oPpxosy%2FCFugddZ3Eg%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-06T18%3A28%3A39Z&spr=https&sig=KY9oHUDJpLPtCkPvhV3Zsl16eQ%2FyQL1XhaCAppAJUz0%3D response: body: string: '' @@ -1022,17 +829,17 @@ interactions: content-md5: - oyaT6AGPWTpUFslcIAG1hw== date: - - Fri, 14 Jun 2019 16:51:37 GMT + - Mon, 06 Jan 2020 14:28:44 GMT etag: - - '"0x8D6F0E8913BA18F"' + - '"0x8D792B4BBF4CCB9"' last-modified: - - Fri, 14 Jun 2019 16:51:37 GMT + - Mon, 06 Jan 2020 14:28:44 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: - 'true' x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created @@ -1050,24 +857,24 @@ interactions: ParameterSetName: - -c -n --account-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-ep2af/providers/Microsoft.Storage/storageAccounts/hdicliib2cjkoklxfvcjan2u","name":"hdicliib2cjkoklxfvcjan2u","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T16:26:10.0094531Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T16:26:10.0094531Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T16:26:09.9000746Z","primaryEndpoints":{"blob":"https://hdicliib2cjkoklxfvcjan2u.blob.core.windows.net/","queue":"https://hdicliib2cjkoklxfvcjan2u.queue.core.windows.net/","table":"https://hdicliib2cjkoklxfvcjan2u.table.core.windows.net/","file":"https://hdicliib2cjkoklxfvcjan2u.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-hy3xo/providers/Microsoft.Storage/storageAccounts/hdiclifez5mbnq7razbogmvg","name":"hdiclifez5mbnq7razbogmvg","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T15:38:31.9742651Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T15:38:31.9742651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T15:38:31.8492422Z","primaryEndpoints":{"blob":"https://hdiclifez5mbnq7razbogmvg.blob.core.windows.net/","queue":"https://hdiclifez5mbnq7razbogmvg.queue.core.windows.net/","table":"https://hdiclifez5mbnq7razbogmvg.table.core.windows.net/","file":"https://hdiclifez5mbnq7razbogmvg.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/Microsoft.Storage/storageAccounts/clistoragehhbuuxg3tu","name":"clistoragehhbuuxg3tu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-27T00:17:56.8422453Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-27T00:17:56.8422453Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-06-27T00:17:56.7015542Z","primaryEndpoints":{"dfs":"https://clistoragehhbuuxg3tu.dfs.core.windows.net/","web":"https://clistoragehhbuuxg3tu.z22.web.core.windows.net/","blob":"https://clistoragehhbuuxg3tu.blob.core.windows.net/","queue":"https://clistoragehhbuuxg3tu.queue.core.windows.net/","table":"https://clistoragehhbuuxg3tu.table.core.windows.net/","file":"https://clistoragehhbuuxg3tu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistoragehhbuuxg3tu-secondary.dfs.core.windows.net/","web":"https://clistoragehhbuuxg3tu-secondary.z22.web.core.windows.net/","blob":"https://clistoragehhbuuxg3tu-secondary.blob.core.windows.net/","queue":"https://clistoragehhbuuxg3tu-secondary.queue.core.windows.net/","table":"https://clistoragehhbuuxg3tu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/Microsoft.Storage/storageAccounts/clistorageuxtcmjfo3r","name":"clistorageuxtcmjfo3r","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-16T00:30:43.8588701Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-16T00:30:43.8588701Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-16T00:30:43.7488876Z","primaryEndpoints":{"dfs":"https://clistorageuxtcmjfo3r.dfs.core.windows.net/","web":"https://clistorageuxtcmjfo3r.z22.web.core.windows.net/","blob":"https://clistorageuxtcmjfo3r.blob.core.windows.net/","queue":"https://clistorageuxtcmjfo3r.queue.core.windows.net/","table":"https://clistorageuxtcmjfo3r.table.core.windows.net/","file":"https://clistorageuxtcmjfo3r.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorageuxtcmjfo3r-secondary.dfs.core.windows.net/","web":"https://clistorageuxtcmjfo3r-secondary.z22.web.core.windows.net/","blob":"https://clistorageuxtcmjfo3r-secondary.blob.core.windows.net/","queue":"https://clistorageuxtcmjfo3r-secondary.queue.core.windows.net/","table":"https://clistorageuxtcmjfo3r-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazueluserassignedtesti/providers/Microsoft.Storage/storageAccounts/lmazueluserassignedtesti","name":"lmazueluserassignedtesti","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T18:23:18.2117085Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T18:23:18.2117085Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T18:23:18.0867351Z","primaryEndpoints":{"blob":"https://lmazueluserassignedtesti.blob.core.windows.net/","queue":"https://lmazueluserassignedtesti.queue.core.windows.net/","table":"https://lmazueluserassignedtesti.table.core.windows.net/","file":"https://lmazueluserassignedtesti.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount222","name":"limguaccount222","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-06T23:26:04.0572137Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-06T23:26:04.0572137Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-06T23:26:03.9476268Z","primaryEndpoints":{"dfs":"https://limguaccount222.dfs.core.windows.net/","web":"https://limguaccount222.z22.web.core.windows.net/","blob":"https://limguaccount222.blob.core.windows.net/","queue":"https://limguaccount222.queue.core.windows.net/","table":"https://limguaccount222.table.core.windows.net/","file":"https://limguaccount222.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://limguaccount222-secondary.dfs.core.windows.net/","web":"https://limguaccount222-secondary.z22.web.core.windows.net/","blob":"https://limguaccount222-secondary.blob.core.windows.net/","queue":"https://limguaccount222-secondary.queue.core.windows.net/","table":"https://limguaccount222-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount","name":"limguaccount","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-02T21:12:03.3936075Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-02T21:12:03.3936075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-02T21:12:03.2842590Z","primaryEndpoints":{"blob":"https://limguaccount.blob.core.windows.net/","queue":"https://limguaccount.queue.core.windows.net/","table":"https://limguaccount.table.core.windows.net/","file":"https://limguaccount.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://limguaccount-secondary.blob.core.windows.net/","queue":"https://limguaccount-secondary.queue.core.windows.net/","table":"https://limguaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount2","name":"limguaccount2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-06T23:18:33.7435080Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-06T23:18:33.7435080Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-06T23:18:33.6341004Z","primaryEndpoints":{"blob":"https://limguaccount2.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/Microsoft.Storage/storageAccounts/clistorageqjqpu42bh7","name":"clistorageqjqpu42bh7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-16T17:18:13.9931194Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-16T17:18:13.9931194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-16T17:18:13.8993652Z","primaryEndpoints":{"dfs":"https://clistorageqjqpu42bh7.dfs.core.windows.net/","web":"https://clistorageqjqpu42bh7.z22.web.core.windows.net/","blob":"https://clistorageqjqpu42bh7.blob.core.windows.net/","queue":"https://clistorageqjqpu42bh7.queue.core.windows.net/","table":"https://clistorageqjqpu42bh7.table.core.windows.net/","file":"https://clistorageqjqpu42bh7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorageqjqpu42bh7-secondary.dfs.core.windows.net/","web":"https://clistorageqjqpu42bh7-secondary.z22.web.core.windows.net/","blob":"https://clistorageqjqpu42bh7-secondary.blob.core.windows.net/","queue":"https://clistorageqjqpu42bh7-secondary.queue.core.windows.net/","table":"https://clistorageqjqpu42bh7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs400977cdb163fx435fx9c3","name":"cs400977cdb163fx435fx9c3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T21:53:53.8037807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:53:53.8037807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-30T21:53:53.6318970Z","primaryEndpoints":{"dfs":"https://cs400977cdb163fx435fx9c3.dfs.core.windows.net/","web":"https://cs400977cdb163fx435fx9c3.z22.web.core.windows.net/","blob":"https://cs400977cdb163fx435fx9c3.blob.core.windows.net/","queue":"https://cs400977cdb163fx435fx9c3.queue.core.windows.net/","table":"https://cs400977cdb163fx435fx9c3.table.core.windows.net/","file":"https://cs400977cdb163fx435fx9c3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T16:50:55.7742242Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/antisch-amqp-tests/providers/Microsoft.Storage/storageAccounts/pythonpremtest","name":"pythonpremtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-20T17:56:02.5244564Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-20T17:56:02.5244564Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-20T17:56:02.4307270Z","primaryEndpoints":{"web":"https://pythonpremtest.z22.web.core.windows.net/","blob":"https://pythonpremtest.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigabfcn7n4eiq_template01/providers/Microsoft.Storage/storageAccounts/f5f5497a0655a5ce8f6f749f","name":"f5f5497a0655a5ce8f6f749f","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-10T05:55:13.8873290Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-10T05:55:13.8873290Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-10T05:55:13.2310654Z","primaryEndpoints":{"blob":"https://f5f5497a0655a5ce8f6f749f.blob.core.windows.net/","queue":"https://f5f5497a0655a5ce8f6f749f.queue.core.windows.net/","table":"https://f5f5497a0655a5ce8f6f749f.table.core.windows.net/","file":"https://f5f5497a0655a5ce8f6f749f.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/Microsoft.Storage/storageAccounts/apylab34410fc39961","name":"apylab34410fc39961","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"66d57a8f-4302-4ee9-96b0-2876a7ef2f93"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-07T22:34:06.6993369Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-07T22:34:06.6993369Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-07T22:34:06.5899644Z","primaryEndpoints":{"dfs":"https://apylab34410fc39961.dfs.core.windows.net/","web":"https://apylab34410fc39961.z22.web.core.windows.net/","blob":"https://apylab34410fc39961.blob.core.windows.net/","queue":"https://apylab34410fc39961.queue.core.windows.net/","table":"https://apylab34410fc39961.table.core.windows.net/","file":"https://apylab34410fc39961.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/Microsoft.Storage/storageAccounts/clistorage66w3pc3dsj","name":"clistorage66w3pc3dsj","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T21:44:38.1144767Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T21:44:38.1144767Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-11-16T21:44:38.0206977Z","primaryEndpoints":{"dfs":"https://clistorage66w3pc3dsj.dfs.core.windows.net/","web":"https://clistorage66w3pc3dsj.z22.web.core.windows.net/","blob":"https://clistorage66w3pc3dsj.blob.core.windows.net/","queue":"https://clistorage66w3pc3dsj.queue.core.windows.net/","table":"https://clistorage66w3pc3dsj.table.core.windows.net/","file":"https://clistorage66w3pc3dsj.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorage66w3pc3dsj-secondary.dfs.core.windows.net/","web":"https://clistorage66w3pc3dsj-secondary.z22.web.core.windows.net/","blob":"https://clistorage66w3pc3dsj-secondary.blob.core.windows.net/","queue":"https://clistorage66w3pc3dsj-secondary.queue.core.windows.net/","table":"https://clistorage66w3pc3dsj-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/Microsoft.Storage/storageAccounts/clistoragevfnamwpyxm","name":"clistoragevfnamwpyxm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-17T04:55:26.0551771Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-17T04:55:26.0551771Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-17T04:55:25.9609573Z","primaryEndpoints":{"dfs":"https://clistoragevfnamwpyxm.dfs.core.windows.net/","web":"https://clistoragevfnamwpyxm.z22.web.core.windows.net/","blob":"https://clistoragevfnamwpyxm.blob.core.windows.net/","queue":"https://clistoragevfnamwpyxm.queue.core.windows.net/","table":"https://clistoragevfnamwpyxm.table.core.windows.net/","file":"https://clistoragevfnamwpyxm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistoragevfnamwpyxm-secondary.dfs.core.windows.net/","web":"https://clistoragevfnamwpyxm-secondary.z22.web.core.windows.net/","blob":"https://clistoragevfnamwpyxm-secondary.blob.core.windows.net/","queue":"https://clistoragevfnamwpyxm-secondary.queue.core.windows.net/","table":"https://clistoragevfnamwpyxm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/Microsoft.Storage/storageAccounts/clitest6dkcrwjg563o4lf6x","name":"clitest6dkcrwjg563o4lf6x","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T22:04:42.8740733Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T22:04:42.8740733Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T22:04:42.7646885Z","primaryEndpoints":{"blob":"https://clitest6dkcrwjg563o4lf6x.blob.core.windows.net/","queue":"https://clitest6dkcrwjg563o4lf6x.queue.core.windows.net/","table":"https://clitest6dkcrwjg563o4lf6x.table.core.windows.net/","file":"https://clitest6dkcrwjg563o4lf6x.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_aibmdi_myexampletemplate/providers/Microsoft.Storage/storageAccounts/1babf5473b318762a6106038","name":"1babf5473b318762a6106038","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-12T03:16:41.2937876Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-12T03:16:41.2937876Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-12T03:16:41.1687735Z","primaryEndpoints":{"blob":"https://1babf5473b318762a6106038.blob.core.windows.net/","queue":"https://1babf5473b318762a6106038.queue.core.windows.net/","table":"https://1babf5473b318762a6106038.table.core.windows.net/","file":"https://1babf5473b318762a6106038.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguacco3","name":"limguacco3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T21:26:58.1750365Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T21:26:58.1750365Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T21:26:58.0657193Z","primaryEndpoints":{"blob":"https://limguacco3.blob.core.windows.net/","queue":"https://limguacco3.queue.core.windows.net/","table":"https://limguacco3.table.core.windows.net/","file":"https://limguacco3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://limguacco3-secondary.blob.core.windows.net/","queue":"https://limguacco3-secondary.queue.core.windows.net/","table":"https://limguacco3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount22","name":"limguaccount22","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-06T23:24:55.7425117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-06T23:24:55.7425117Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-06T23:24:55.4925049Z","primaryEndpoints":{"blob":"https://limguaccount22.blob.core.windows.net/","queue":"https://limguaccount22.queue.core.windows.net/","table":"https://limguaccount22.table.core.windows.net/","file":"https://limguaccount22.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://limguaccount22-secondary.blob.core.windows.net/","queue":"https://limguaccount22-secondary.queue.core.windows.net/","table":"https://limguaccount22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/Microsoft.Storage/storageAccounts/clistorage2jbmemj6cj","name":"clistorage2jbmemj6cj","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-12T19:25:59.1461511Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-12T19:25:59.1461511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-12T19:25:58.8961261Z","primaryEndpoints":{"dfs":"https://clistorage2jbmemj6cj.dfs.core.windows.net/","web":"https://clistorage2jbmemj6cj.z22.web.core.windows.net/","blob":"https://clistorage2jbmemj6cj.blob.core.windows.net/","queue":"https://clistorage2jbmemj6cj.queue.core.windows.net/","table":"https://clistorage2jbmemj6cj.table.core.windows.net/","file":"https://clistorage2jbmemj6cj.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorage2jbmemj6cj-secondary.dfs.core.windows.net/","web":"https://clistorage2jbmemj6cj-secondary.z22.web.core.windows.net/","blob":"https://clistorage2jbmemj6cj-secondary.blob.core.windows.net/","queue":"https://clistorage2jbmemj6cj-secondary.queue.core.windows.net/","table":"https://clistorage2jbmemj6cj-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigctn7dof43qy_template01/providers/Microsoft.Storage/storageAccounts/bfb52ce82c25ef24810a33a9","name":"bfb52ce82c25ef24810a33a9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T18:39:29.3488382Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T18:39:29.3488382Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T18:39:29.2082141Z","primaryEndpoints":{"blob":"https://bfb52ce82c25ef24810a33a9.blob.core.windows.net/","queue":"https://bfb52ce82c25ef24810a33a9.queue.core.windows.net/","table":"https://bfb52ce82c25ef24810a33a9.table.core.windows.net/","file":"https://bfb52ce82c25ef24810a33a9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/Microsoft.Storage/storageAccounts/clistoragetif6h64z3n","name":"clistoragetif6h64z3n","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-16T00:22:59.7063780Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-16T00:22:59.7063780Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-16T00:22:59.6125763Z","primaryEndpoints":{"dfs":"https://clistoragetif6h64z3n.dfs.core.windows.net/","web":"https://clistoragetif6h64z3n.z22.web.core.windows.net/","blob":"https://clistoragetif6h64z3n.blob.core.windows.net/","queue":"https://clistoragetif6h64z3n.queue.core.windows.net/","table":"https://clistoragetif6h64z3n.table.core.windows.net/","file":"https://clistoragetif6h64z3n.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistoragetif6h64z3n-secondary.dfs.core.windows.net/","web":"https://clistoragetif6h64z3n-secondary.z22.web.core.windows.net/","blob":"https://clistoragetif6h64z3n-secondary.blob.core.windows.net/","queue":"https://clistoragetif6h64z3n-secondary.queue.core.windows.net/","table":"https://clistoragetif6h64z3n-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccountttt","name":"limguaccountttt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T17:20:38.2581897Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T17:20:38.2581897Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T17:20:38.1175669Z","primaryEndpoints":{"file":"https://limguaccountttt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccountblock","name":"limguaccountblock","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T17:26:39.0834663Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T17:26:39.0834663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T17:26:38.9740451Z","primaryEndpoints":{"blob":"https://limguaccountblock.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limgutestpre","name":"limgutestpre","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T17:15:28.5367890Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T17:15:28.5367890Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T17:15:28.4117884Z","primaryEndpoints":{"file":"https://limgutestpre.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Storage/storageAccounts/eventgridtestin9c1e","name":"eventgridtestin9c1e","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-30T22:57:11.1008680Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-30T22:57:11.1008680Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-30T22:57:10.9915110Z","primaryEndpoints":{"blob":"https://eventgridtestin9c1e.blob.core.windows.net/","queue":"https://eventgridtestin9c1e.queue.core.windows.net/","table":"https://eventgridtestin9c1e.table.core.windows.net/","file":"https://eventgridtestin9c1e.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-user-assigned-webapp/providers/Microsoft.Storage/storageAccounts/lmazueltestingua2f2","name":"lmazueltestingua2f2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T19:14:04.4256328Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T19:14:04.4256328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T19:14:04.2224955Z","primaryEndpoints":{"blob":"https://lmazueltestingua2f2.blob.core.windows.net/","queue":"https://lmazueltestingua2f2.queue.core.windows.net/","table":"https://lmazueltestingua2f2.table.core.windows.net/","file":"https://lmazueltestingua2f2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf2zzwtzyl6gztcqvg4tr3jybb5desp6tcslf37qil2zbk5vfcogfylz7qv6c3h376/providers/Microsoft.Storage/storageAccounts/clitestsztexxsml3gyhyk4p","name":"clitestsztexxsml3gyhyk4p","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T23:53:17.3585700Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T23:53:17.3585700Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:53:17.1554379Z","primaryEndpoints":{"blob":"https://clitestsztexxsml3gyhyk4p.blob.core.windows.net/","queue":"https://clitestsztexxsml3gyhyk4p.queue.core.windows.net/","table":"https://clitestsztexxsml3gyhyk4p.table.core.windows.net/","file":"https://clitestsztexxsml3gyhyk4p.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-testcapture/providers/Microsoft.Storage/storageAccounts/lmazueltestcapture451","name":"lmazueltestcapture451","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-06T16:46:02.5308824Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-06T16:46:02.5308824Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-06T16:46:02.4527298Z","primaryEndpoints":{"blob":"https://lmazueltestcapture451.blob.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limgutesttest","name":"limgutesttest","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T22:45:52.3913321Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T22:45:52.3913321Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-14T22:45:52.3288406Z","primaryEndpoints":{"dfs":"https://limgutesttest.dfs.core.windows.net/","web":"https://limgutesttest.z5.web.core.windows.net/","blob":"https://limgutesttest.blob.core.windows.net/","queue":"https://limgutesttest.queue.core.windows.net/","table":"https://limgutesttest.table.core.windows.net/","file":"https://limgutesttest.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://limgutesttest-secondary.dfs.core.windows.net/","web":"https://limgutesttest-secondary.z5.web.core.windows.net/","blob":"https://limgutesttest-secondary.blob.core.windows.net/","queue":"https://limgutesttest-secondary.queue.core.windows.net/","table":"https://limgutesttest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"dfs":"https://wilxstorageworm.dfs.core.windows.net/","web":"https://wilxstorageworm.z3.web.core.windows.net/","blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://wilxstorageworm-secondary.dfs.core.windows.net/","web":"https://wilxstorageworm-secondary.z3.web.core.windows.net/","blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:28:01.3292672Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragev2","name":"zuhstoragev2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"dep":"css"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-09T05:28:20.0245374Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-09T05:28:20.0245374Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-09T05:28:19.9620255Z","primaryEndpoints":{"dfs":"https://zuhstoragev2.dfs.core.windows.net/","web":"https://zuhstoragev2.z22.web.core.windows.net/","blob":"https://zuhstoragev2.blob.core.windows.net/","queue":"https://zuhstoragev2.queue.core.windows.net/","table":"https://zuhstoragev2.table.core.windows.net/","file":"https://zuhstoragev2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs10b1f64711bf0x4ddaxaec","name":"cs10b1f64711bf0x4ddaxaec","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T06:54:10.7368577Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T06:54:10.7368577Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T06:54:10.6744174Z","primaryEndpoints":{"dfs":"https://cs10b1f64711bf0x4ddaxaec.dfs.core.windows.net/","web":"https://cs10b1f64711bf0x4ddaxaec.z23.web.core.windows.net/","blob":"https://cs10b1f64711bf0x4ddaxaec.blob.core.windows.net/","queue":"https://cs10b1f64711bf0x4ddaxaec.queue.core.windows.net/","table":"https://cs10b1f64711bf0x4ddaxaec.table.core.windows.net/","file":"https://cs10b1f64711bf0x4ddaxaec.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlrg1diag","name":"jlrg1diag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-27T08:28:13.4137165Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T08:28:13.4137165Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T08:28:13.3512138Z","primaryEndpoints":{"blob":"https://jlrg1diag.blob.core.windows.net/","queue":"https://jlrg1diag.queue.core.windows.net/","table":"https://jlrg1diag.table.core.windows.net/","file":"https://jlrg1diag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/storageaccountjlrg1839d","name":"storageaccountjlrg1839d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T03:00:46.3355764Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T03:00:46.3355764Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T03:00:46.2730735Z","primaryEndpoints":{"blob":"https://storageaccountjlrg1839d.blob.core.windows.net/","queue":"https://storageaccountjlrg1839d.queue.core.windows.net/","table":"https://storageaccountjlrg1839d.table.core.windows.net/","file":"https://storageaccountjlrg1839d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}}]}' headers: cache-control: - no-cache content-length: - - '45954' + - '55731' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:38 GMT + - Mon, 06 Jan 2020 14:28:46 GMT expires: - '-1' pragma: @@ -1079,13 +886,10 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 91ba1f59-733b-4f82-a281-805e301292c8 - - f8b87f47-e06d-4ebc-9aa3-c05e6a38e859 - - 3e320a64-cf9b-40bc-b561-5317df44acd6 - - dbeb250d-c949-425a-b4c2-3c6bf93558a7 - - 4d0c8061-1ae6-4512-a692-900b1c7e9707 - - 46277163-19d9-456a-a333-248a066f3a5e - - 49214dde-f537-4a61-ae80-eb2fd5185cce + - 5338d8ee-aa1d-4101-8184-131b40a0e663 + - 12614d68-becc-496a-bb4e-0ef6a5a15ceb + - 99f24cbd-f3f0-4ac0-8058-3504cc441f66 + - ccbea9d2-6fc8-4750-a011-7d53de973ddd status: code: 200 message: OK @@ -1105,8 +909,8 @@ interactions: ParameterSetName: - -c -n --account-name User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 - Azure-SDK-For-Python AZURECLI/2.0.66 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1122,7 +926,7 @@ interactions: content-type: - application/json date: - - Fri, 14 Jun 2019 16:51:38 GMT + - Mon, 06 Jan 2020 14:28:46 GMT expires: - '-1' pragma: @@ -1143,7 +947,7 @@ interactions: code: 200 message: OK - request: - body: '{"templateUri": "https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D", + body: '{"templateUri": "https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-11-09&sr=b&sig=fy39JBx9bFTaI6VL6zzWtsXWQARwQj4SqlYNnsFEsDg%3D", "sasType": "service", "validityPeriod": "P1D", "attributes": {"enabled": true}}' headers: Accept: @@ -1153,28 +957,28 @@ interactions: Connection: - keep-alive Content-Length: - - '236' + - '234' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-11-09&sr=b&sig=fy39JBx9bFTaI6VL6zzWtsXWQARwQj4SqlYNnsFEsDg%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1578320928,"updated":1578320928,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache content-length: - - '483' + - '481' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:39 GMT + - Mon, 06 Jan 2020 14:28:47 GMT expires: - '-1' pragma: @@ -1188,11 +992,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -1210,15 +1014,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r/?api-version=7.0 response: body: - string: '{"value":"?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A40Z&sig=QK0yd2QZBmWGXbE4wn2hGcP8i8CO79gnqBG8DF2zdEs%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1560617500,"recoveryLevel":"Purgeable"}}' + string: '{"value":"?sv=2018-11-09&sr=b&sp=r&se=2020-01-07T14%3A28%3A50Z&sig=nm6CvAAIelJxK08WgjSemP77PbWVRPXKi7J6QphQcKI%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1578407330,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -1227,7 +1031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:39 GMT + - Mon, 06 Jan 2020 14:28:50 GMT expires: - '-1' pragma: @@ -1241,11 +1045,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -1257,891 +1061,27 @@ interactions: Connection: - keep-alive User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 x-ms-date: - - Fri, 14 Jun 2019 16:51:40 GMT + - Mon, 06 Jan 2020 14:28:51 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: HEAD - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A40Z&sig=QK0yd2QZBmWGXbE4wn2hGcP8i8CO79gnqBG8DF2zdEs%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-11-09&sr=b&sp=r&se=2020-01-07T14%3A28%3A50Z&sig=nm6CvAAIelJxK08WgjSemP77PbWVRPXKi7J6QphQcKI%3D response: body: string: '' headers: - accept-ranges: - - bytes - content-length: - - '42' - content-md5: - - oyaT6AGPWTpUFslcIAG1hw== - content-type: - - text/plain - date: - - Fri, 14 Jun 2019 16:51:39 GMT - etag: - - '"0x8D6F0E8913BA18F"' - last-modified: - - Fri, 14 Jun 2019 16:51:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-type: - - BlockBlob - x-ms-creation-time: - - Fri, 14 Jun 2019 16:51:37 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-03-28' - status: - code: 200 - message: OK -- request: - body: '{"keyName": "key1"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '19' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/regeneratekey?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 date: - - Fri, 14 Jun 2019 16:51:41 GMT - expires: - - '-1' - pragma: - - no-cache + - Mon, 06 Jan 2020 14:28:52 GMT server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET + - Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + x-ms-error-code: + - AuthenticationFailed status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r/?api-version=7.0 - response: - body: - string: '{"value":"?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A43Z&sig=yYS7eX%2FcYyfFF%2FAYxe9%2BV9bgOADdb%2B68Q38PYWl0tIA%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1560617503,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '355' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 - x-ms-date: - - Fri, 14 Jun 2019 16:51:43 GMT - x-ms-version: - - '2018-03-28' - method: HEAD - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A43Z&sig=yYS7eX%2FcYyfFF%2FAYxe9%2BV9bgOADdb%2B68Q38PYWl0tIA%3D - response: - body: - string: '' - headers: - accept-ranges: - - bytes - content-length: - - '42' - content-md5: - - oyaT6AGPWTpUFslcIAG1hw== - content-type: - - text/plain - date: - - Fri, 14 Jun 2019 16:51:42 GMT - etag: - - '"0x8D6F0E8913BA18F"' - last-modified: - - Fri, 14 Jun 2019 16:51:37 GMT - server: - - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 - x-ms-blob-type: - - BlockBlob - x-ms-creation-time: - - Fri, 14 Jun 2019 16:51:37 GMT - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked - x-ms-server-encrypted: - - 'true' - x-ms-version: - - '2018-03-28' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas?api-version=7.0 - response: - body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}},{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}],"nextLink":null}' - headers: - cache-control: - - no-cache - content-length: - - '615' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '483' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '479' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: DELETE - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '483' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: DELETE - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '479' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas?api-version=7.0 - response: - body: - string: '{"value":[],"nextLink":null}' - headers: - cache-control: - - no-cache - content-length: - - '28' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/secrets?api-version=7.0 - response: - body: - string: '{"value":[],"nextLink":null}' - headers: - cache-control: - - no-cache - content-length: - - '28' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage?api-version=7.0 - response: - body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}],"nextLink":null}' - headers: - cache-control: - - no-cache - content-length: - - '433' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: DELETE - uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 - response: - body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' - headers: - cache-control: - - no-cache - content-length: - - '481' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/storage?api-version=7.0 - response: - body: - string: '{"value":[],"nextLink":null}' - headers: - cache-control: - - no-cache - content-length: - - '28' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Jun 2019 16:51:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.79;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.66 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_keyvault_sa000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 14 Jun 2019 16:51:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGS0VZVkFVTFQ6NUZTQTdWUVRUVkg3VjdKSUdMRUFUTUtaV3w4N0UwMEZBM0RDODhCMkVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-05-10 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted + code: 403 + message: Server failed to authenticate the request. Make sure the value of Authorization + header is formed correctly including the signature. version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt index 8f0ef14fab7..d0583e8c05a 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone1.com ; Resource Group Name: cli_dns_zone1_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:23:34 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 10:49:40 +0800 $TTL 300 $ORIGIN zone1.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt index 6fe268d3d70..044591212d0 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone2.com ; Resource Group Name: cli_dns_zone2_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:25:10 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 10:51:42 +0800 $TTL 3600 $ORIGIN zone2.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt index 483052f2c33..10dbd5f4cee 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone3.com ; Resource Group Name: cli_dns_zone3_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:26:55 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 10:53:37 +0800 $TTL 10800 $ORIGIN zone3.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt index 70a2abc7b59..abaa8b234d5 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone4.com ; Resource Group Name: cli_dns_zone4_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:28:27 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 10:55:29 +0800 $TTL 10800 $ORIGIN zone4.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt index 9fba48d11a2..9974a9a467a 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone5.com ; Resource Group Name: cli_dns_zone5_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:29:47 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 10:57:36 +0800 $TTL 10800 $ORIGIN zone5.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt index 5d43e54cf24..a49bf2c0301 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone6.com ; Resource Group Name: cli_dns_zone6_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:30:45 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 10:59:02 +0800 $TTL 300 $ORIGIN zone6.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt index 9a1613c1d57..d8cbdb5ee56 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone7.com ; Resource Group Name: cli_dns_zone7_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:31:39 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 11:00:06 +0800 $TTL 300 $ORIGIN zone7.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt index 06f6c9a049b..45a5518c1a7 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone8.com ; Resource Group Name: cli_dns_zone8_import000001 -; Date and time (UTC): Fri, 27 Dec 2019 14:32:20 +0800 +; Date and time (UTC): Mon, 06 Jan 2020 11:01:29 +0800 $TTL 300 $ORIGIN zone8.com. diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml index da0a561a0fa..38147a25a37 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -17,44 +17,33 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["2f442157-a11c-46b9-ae5b-6e39ff4e5849","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-10T06:44:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"SFS","dirSyncEnabled":true,"displayName":"Alfredo - Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE - ENGINEER","lastDirSyncTime":"2019-11-28T10:29:37Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo - Santamaria Gomez,OU=UserAccounts,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo - Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo - San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo - Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo - Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2019-11-20T18:48:41Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria - Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10200871","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10200871","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91710758","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"41","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"309","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 - Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"10806","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Basu, - Tassaduq H.","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"TASSB","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1252188"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-06-21T01:32:03Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Zunli + Hu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zuh@microsoft.com","mailNickname":"zuh_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zuh@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zuh@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-21T01:32:03Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/21cd756e-e290-4a26-9547-93e8cc1a8923/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zuh_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-06-24T01:43:59Z","userType":"Guest"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '16418' + - '1670' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Thu, 12 Dec 2019 00:49:20 GMT + - Mon, 06 Jan 2020 14:30:14 GMT duration: - - '1615458' + - '2569597' expires: - '-1' ocp-aad-diagnostics-server-name: - - R24SEsKL6l8WwGja0LsRtb5gfSEzPaANsccbqgL6qjQ= + - U3lEHEd4HwaNf+3fkcmhg9lpCZU+hn4xjWqA7IRjolM= ocp-aad-session-key: - - Hp5SmY8q2JLLoXXXm4NJwmy9_wzikmAy10iJKHePeKLKjRwq1WU0XbBz1ZEq-oS4RKcMwGI8EOJvxafv6o8NZPH7FQ0h_pGT0g2tYolr1sfmxisDwe26yzksGwHOacXw.HzjM88_3VcuKrNtbgqJHZu_Atq4cOSYl5M21P41OwO0 + - XzeIPtjijeNByIjdl9EwYI401C5seQ33ZCH7XJY13ZPUyHhYrHABtRab7usOlcY6FBtqMXiJB9S0DZQJTdwMPAgrGuqoHRcrCrUgDm9q0kPtcZMLY-5zE-RAq80BCCo1im2LXPMoxeQ-dOZ7-aViSiYsMUdvC69vm_2F2UCYRXI.oGuoDG_CgJgTAWaI00XB6ZCr4Z2vkAY6XGA2C8OmXBg pragma: - no-cache request-id: - - 2ce3d8e0-8101-407c-b98c-16be3f8b51d6 + - 18bf2966-a495-4e4a-a4cb-19f70626f31e strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -67,9 +56,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + body: '{"location": "westus", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "3307ff37-85af-4550-bc6a-d1e02672cb7c", + "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", @@ -93,15 +82,15 @@ interactions: ParameterSetName: - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.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.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache @@ -110,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:49:24 GMT + - Mon, 06 Jan 2020 14:30:22 GMT expires: - '-1' pragma: @@ -128,9 +117,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.268 + - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' x-powered-by: - ASP.NET status: @@ -150,13 +139,13 @@ interactions: ParameterSetName: - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.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.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -165,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:49:54 GMT + - Mon, 06 Jan 2020 14:30:52 GMT expires: - '-1' pragma: @@ -183,7 +172,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.268 + - 1.1.0.269 x-powered-by: - ASP.NET status: @@ -203,7 +192,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -221,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:49:55 GMT + - Mon, 06 Jan 2020 14:30:54 GMT expires: - '-1' pragma: @@ -231,18 +220,18 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -268,7 +257,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -276,9 +265,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/create?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCO3dwqf9jBnoQi61z972rznBqHmUGdyw3b8jJ7scF3GTMEukOZ9D99fH3M7ijlBR2mKzQkrdYDAGsiXUnsfhb64KvD9MSqpVhUEhHD6agarIt9c/Mct6E8Zppt4XeXstoulR+7MFgjoOYVRSifuUuKUcH3ITjJ0WV8m/v8h8TSECftUYizkmkEEcsPkvKZLr6LrwgCtvZfV82ptPWzFhFVK8vLxYOpNRG1hg7Tf26S8UdJMn/OdJThRJF7NQpbKcC/wKQ3WyyDqiBAR7nNBvPAjjpXZ8wrN8yL7RWpr/pYkn6h2k4eQKjZJ1zu29uutZLm7URETOpz1krRQ1k9/Ll3","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' + time based on the issuer provider. Please check again later.","request_id":"4c03734db59541439a22e26abd9147f8"}' headers: cache-control: - no-cache @@ -287,11 +276,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:49:59 GMT + - Mon, 06 Jan 2020 14:30:55 GMT expires: - '-1' location: - - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=e5a7ef9848e547ada70828f5ac21838a + - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=4c03734db59541439a22e26abd9147f8 pragma: - no-cache server: @@ -303,11 +292,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -325,117 +314,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 - response: - body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 00:49:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.883 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 - response: - body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 00:50:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.883 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -443,9 +322,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCO3dwqf9jBnoQi61z972rznBqHmUGdyw3b8jJ7scF3GTMEukOZ9D99fH3M7ijlBR2mKzQkrdYDAGsiXUnsfhb64KvD9MSqpVhUEhHD6agarIt9c/Mct6E8Zppt4XeXstoulR+7MFgjoOYVRSifuUuKUcH3ITjJ0WV8m/v8h8TSECftUYizkmkEEcsPkvKZLr6LrwgCtvZfV82ptPWzFhFVK8vLxYOpNRG1hg7Tf26S8UdJMn/OdJThRJF7NQpbKcC/wKQ3WyyDqiBAR7nNBvPAjjpXZ8wrN8yL7RWpr/pYkn6h2k4eQKjZJ1zu29uutZLm7URETOpz1krRQ1k9/Ll3","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' + time based on the issuer provider. Please check again later.","request_id":"4c03734db59541439a22e26abd9147f8"}' headers: cache-control: - no-cache @@ -454,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:50:20 GMT + - Mon, 06 Jan 2020 14:30:57 GMT expires: - '-1' pragma: @@ -468,11 +347,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -490,7 +369,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -498,172 +377,7 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 00:50:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.883 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 - response: - body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 00:50:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.883 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 - response: - body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 00:50:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.883 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 - response: - body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCO3dwqf9jBnoQi61z972rznBqHmUGdyw3b8jJ7scF3GTMEukOZ9D99fH3M7ijlBR2mKzQkrdYDAGsiXUnsfhb64KvD9MSqpVhUEhHD6agarIt9c/Mct6E8Zppt4XeXstoulR+7MFgjoOYVRSifuUuKUcH3ITjJ0WV8m/v8h8TSECftUYizkmkEEcsPkvKZLr6LrwgCtvZfV82ptPWzFhFVK8vLxYOpNRG1hg7Tf26S8UdJMn/OdJThRJF7NQpbKcC/wKQ3WyyDqiBAR7nNBvPAjjpXZ8wrN8yL7RWpr/pYkn6h2k4eQKjZJ1zu29uutZLm7URETOpz1krRQ1k9/Ll3","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"4c03734db59541439a22e26abd9147f8"}' headers: cache-control: - no-cache @@ -672,7 +386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:04 GMT + - Mon, 06 Jan 2020 14:31:08 GMT expires: - '-1' pragma: @@ -686,11 +400,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -708,7 +422,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -716,7 +430,7 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","x5t":"ptQrWdNuuGtsLgAwFlcnsAe23sA","cer":"MIIDQjCCAiqgAwIBAgIQMqOV1s0ZS9O1NtRG1tWMcDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MTIxMjAwNDA1NloXDTIwMTIxMjAwNTA1NlowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPh8fxolpVQZmkT4NJi26+aJDojKMB0GA1UdDgQWBBT4fH8aJaVUGZpE+DSYtuvmiQ6IyjANBgkqhkiG9w0BAQsFAAOCAQEAT++7AhRGzXFEJv3e+EB3bE9dAzyg/V9A8MQgGKTW93fKWdjkU3UHOXYwpgprEtxSLzrnriFHlMGJ5+x+Ngi69l0jr4taGFaO/b9r856bCrY0tvsl/1uCzuj2qBR/7pH5y/fWfi27wgaNI7/pXzcyvZGrADtF4bvMMPqQLLum97ulTtA0mKQGE9Ozzc+5Rh8AleNj4Lj0Bn5qDMS6rsh4vECiBAZ/5uu7uWOlECu28vpVIiX4EBsXVB2HQLxcL0MnXmRDV/oWuA8iUyW6dvR1H0nkYEluDGfnIJ/AgVwaZCH/X9HvMGCn6K4wLv9ngqObDN13bHuKtH8qMDco9NuA/A==","attributes":{"enabled":true,"nbf":1576111256,"exp":1607734256,"created":1576111856,"updated":1576111856,"recoveryLevel":"Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1576111798,"updated":1576111798}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","x5t":"7R74VXjekvXE0bV46WDQBKxF6VE","cer":"MIIDQjCCAiqgAwIBAgIQUc2KKWlWQBqx7j+e3dHyGjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDEwNjE0MjEwN1oXDTIxMDEwNjE0MzEwN1owHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPlMLlW5OfEOvYwf0CCUNaOmpv/VMB0GA1UdDgQWBBT5TC5VuTnxDr2MH9AglDWjpqb/1TANBgkqhkiG9w0BAQsFAAOCAQEASoYRgkhhpVrE0hGscyPHS8M8T/MGchviwFKaUCtLbmfAd4Miy+IvBolot2PZja3200iqwPzmbIZ0P4Z8YLXcUDltailR+vXRbiASi5vAS+Idi8Yv0pVFYc4cCxz24O3ZM5xqIkO3yuivbgWxLIYqWmbaX8zOJBDRlsdKsiWARfIdKDwWge9Upp0KGaMJBaD/hmNTFQ3Vr+zdQreFQvuiYNkbdbWcj1rFCGAGOjrft6IIqj5ql+EqvrCmBeaPwQtp5aI0IMxhrGzJewd3dKas3CDJF8jDqKqgYC6wsVrXbPv4lwvF161384o9C2m9sFYBEnQTXy79LTTjPG1r/aN6+Q==","attributes":{"enabled":true,"nbf":1578320467,"exp":1609943467,"created":1578321067,"updated":1578321067,"recoveryLevel":"Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321055,"updated":1578321055}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' headers: cache-control: - no-cache @@ -725,7 +439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:04 GMT + - Mon, 06 Jan 2020 14:31:09 GMT expires: - '-1' pragma: @@ -739,11 +453,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -763,15 +477,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:30:09Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -780,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:05 GMT + - Mon, 06 Jan 2020 14:31:10 GMT expires: - '-1' pragma: @@ -808,15 +522,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:30:09Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -825,7 +539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:05 GMT + - Mon, 06 Jan 2020 14:31:11 GMT expires: - '-1' pragma: @@ -855,24 +569,24 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alsantamclirg2/providers/Microsoft.KeyVault/vaults/alsantamclirg2","name":"alsantamclirg2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-Globalization-ARM-Keyvault/providers/Microsoft.KeyVault/vaults/GlobalARMKeyVaultnew","name":"GlobalARMKeyVaultnew","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21207033128/providers/Microsoft.KeyVault/vaults/rmsfe2etest21207033128","name":"rmsfe2etest21207033128","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21208145422/providers/Microsoft.KeyVault/vaults/rmsfe2etest21208145422","name":"rmsfe2etest21208145422","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21209025714/providers/Microsoft.KeyVault/vaults/rmsfe2etest21209025714","name":"rmsfe2etest21209025714","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21209145447/providers/Microsoft.KeyVault/vaults/rmsfe2etest21209145447","name":"rmsfe2etest21209145447","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21210025355/providers/Microsoft.KeyVault/vaults/rmsfe2etest21210025355","name":"rmsfe2etest21210025355","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21210154648/providers/Microsoft.KeyVault/vaults/rmsfe2etest21210154648","name":"rmsfe2etest21210154648","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21211032108/providers/Microsoft.KeyVault/vaults/rmsfe2etest21211032108","name":"rmsfe2etest21211032108","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sfrptest12101612107/providers/Microsoft.KeyVault/vaults/sfrptest12101612107kv","name":"sfrptest12101612107kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '2919' + - '3382' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:05 GMT + - Mon, 06 Jan 2020 14:31:12 GMT expires: - '-1' pragma: @@ -902,15 +616,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -919,7 +633,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:05 GMT + - Mon, 06 Jan 2020 14:31:14 GMT expires: - '-1' pragma: @@ -937,7 +651,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.268 + - 1.1.0.269 x-powered-by: - ASP.NET status: @@ -955,24 +669,24 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d?api-version=7.0 + uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe?api-version=7.0 response: body: - string: '{"value":"MIIKRAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAj5xbFPmvvISQICB9AEggTQr+UKLIXCWsPjz0TUifXsS/dzVdVXDeejTUEzdPVEf5M6RPHB8rAvUR0T7dnfuX+kJieKnXgTVA3CRF4m+16dIU+44CYLwK75Q8A4jyfFMrVgAyaBxDAwd85uEnQ5v32Is1q4/wE3hnCOLFnIbBSDgaWfOBsPsNe+SLqKu+qC30CCHVU04LzZ8ZBzEnUReKULmekHw2uMMS24VODQo8olwaK2nhyxl0QUla6Ab0AgI2x1A/RcdDDoJ/ynJiLbQfiNTxrOXdx7YQx35u34Su7QG6F6ug6OzSWceQ0H9CKTYDlookiMt/lXTuvCNhwFb/lghUWqu0W1tMd2thYgr3UZoB0IaRe8e7kt1Om4RR9J0BtnW/7+IT4yrunAjwSxcUQwQQD4XxAx9i6ZtlYRduIO2XQq/xQQoG0p8775Sr7WB9FROYrN/sBLpilGWXiUIMPVsRI7k+J4P5D7V6Hc60eh3PlH7wcjZF42U3K0nNS2jOSunzdYrOzsclRnAgtbVhCk1QdbY+GCTVYUx5+qsPw0vSo83YfVHL2wMOe8iM7NsIg7QBhRhSAp5By84OVFxpY2YuMNKlSfHaiZkzr9r9NPlSa2yhyljiiPyOLgMap9RPUWV8X0RBpB6WF1omYitY538mKzjdYssDK7rKkKmXGlAsuF2ZzrD69qoBbw1VyV/yNpP9UxO7jfmaEKcAe1AAtz29Ko2bu0f+L9QZb3q9pdpShpBo9O7r53woyTJ805ewKJH+zpc4kJRDOax7/nSOuPAW99vqc2ySqOK51/3UUx1wlVPZGvRUNdeIdNrbx8XXMtpicNJLcRhPwLlQaQznVs+ixIImrsTQHCXHNXsaFETKuiEETQTWX+bbAXOTdiPo3TWOj/4D5r5CB29NdPjFfSPoL6wS3BoMG8GilTmyDuCfIF0eQMvtlNrfyGROz4zbMOhgUpcWAL6K/HBG0Gd5JVpnVjQkF0arAuGIlFuOdT/HRno3EX+887IywwluOW8WiplhhCp7gFtfMzmgOWBCvZSa2o+YNvgjui9qY1i2naND6TiDs21uRg1mVKIveQWLA7F0gb3qzzjJTx51u5293LknipP6yCBLSvYM3f9DDWDc/xrRXu4pqP1PrVwQRreXUjaHiBzyRRqbIqWE9dnBRgNlR0liEZMJCyro5woBpulNwOAHyu1Rj7jV/roZ4b/rG9kAceyhx120pYl1XdsVxckjlJTnfdX6j4gNFN92mzxKa7LuY6w/lnBHXt6gy6w4cwUthS/qAdjUVZ3BPOPhv/5XJKc313Yyp6hwNK/9UJgKwOKvYkeWMWkQRn0J6Px0OpZQrgIMjSwIEMIc4VOUFFTnnrWVwwONUTJkL4vZEwM4L+8uuWTSQygVOxaqz+7jawkva05asVoRNy1oxH6c0+KSFZDYH7WBqN9IB0Y8WP9RceTW/IYad4EO7dpdfH2kRsYDZEO0ogScL98qD8IfS98a21l5yZ/0uLqBOTec7EQtuh/kQDd9ovDimoXmlrhUIbjFGEhGJpbW9yshNxjU9pMpHbzLP6zUGOEWqG0V9TM3+CuB0vk4kGbGkn61DIgf7r2mZ01QPnNpic9sYbHukB4oYAvAl4joZVuPIzJM2/607qd7IMl71uhukwSOra+ZoxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSAAzADAAZQA2ADQAMQA1ADgALQAwADcAYQBkAC0ANAA5ADIAMQAtAGEAMwBiADIALQBmADcAZQBhADkAZQBiADUAMgBiADcAMTB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIR6by//xWSU8CAgfQgIIDkPElW/fgKF2MqgELUMfm2kQL6NTkIFn2J1ppJLNAKTzbr+rDJ1tkikkbAxOCMWFRq+0SsgQ99pbXqqa3zNZ+qRB85Wu3xbBue7p52SiOnRAjD2uYsvpFjKa1S8hYvHckAC7JEw+TAXT3Abc+pSiSESIHucbmDvgDt9Ap9QxbSIam+ekVKMz73kcgAyvoTuZ/jMa3RNdzDeRaT/p0SCJNC/C3BLwUpVva4o6AAn9Wf731B5G9vXcM5nWIcEvFKzNB43qnDo4aVryogsQkBHpMjPzo4KluZtu0Ow2KDDimebcDpXMyoCD5shgiYgnVyZeWiTPNHKn9zoa5M7j6slZbpKNWNyyg6joSdosGR8WJzxAnMYyntkVFAG0Ihs1iTAQbRi/F6FIzOqEr3qLXVr810jEFtuyGlTkvyaJR8WmRrvu0uo49hZ39w0+Rsp3oQyYiRqXPISGVkXjN0Eo80HER1uAfOr08rqG6wo7zDPOAj3IiSQL0pc+ryxuLnsjLf5DouRjMmOsHbMGyhPkkVVat67HP86P6QkZYFTRmDqRWz6BQjo6R14GE0Hz+Yr2hJuU5vl4RW4b/2+HM6f14qHD3e9eJ9Zbt4kwI/BdnHbWX1juRiX9iO3c7COVk9TardKRy0Ijk9xNtW8AVrzpv98Gv6mpTYL2NXNNc1RHc+Y2TFhAkYcdrzdWh1qmmVJsMLGSWWsarEXq55nRXKG0f3DT/xvcb/2v9zvJApKwAon5Po6QdhlZLAHAJxLDcXRyP15NIk/0TiiSEXYU4szCRlD5p9LIgNOZ9Sy/1N5XcQo0C366ikytWhV+WoxKsXKgdCQlnFY/zY1qfa5Ui0S69eUDnPwe9Y6hJ/DsBoPiHObjJO1oUuvGnOZTJeiz3IsCfqBPrP/ekhBMuIVJkGm4LAAYo9eGVSf5R5Vx0onfRTLcoWQ/aWF9+thuLGHBebFjI9aBa05u7qaV5Lh8bcv4j0BHBV/kFmf2M/Un1Pc8vUpUmQeW5vry3xNfithw3qYUqda/FKYaXnbvIbIZxp+ksHGZ6iRgOadT4iGx3GHRHLHTztrWEkHU9P0PFquBGI/l239PK9gCi3r7tcbT3NWS1ztYywquqRCTIv1zDgn684uV3Q5f9D+k+U6Mp+3kqErEM2pYnTRQ0e4W7dHJGBYdhcMpDhRk4p3SQjuhLc3xOXpXi+IPSlSd0SoiAMUFaV460y8fq6TA3MB8wBwYFKw4DAhoEFCK1b00rr4HBzQruvEpxnHF+BdcUBBR4RjMcbv8ojPegZ6nSdGocs+Xr3w==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","managed":true,"attributes":{"enabled":true,"nbf":1576111256,"exp":1607734256,"created":1576111856,"updated":1576111856,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"}' + string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgSylzJZloQTgICB9AEggTYPxj0hCg9SgkY9igqj6a/KUIDFgv6Gz9usxnMqbqTei7fECuAeq4gn4Oau++r9pudy6gXgmhcr52QdSLMrwNKWRQZVVwPraa5TvF5e/w3VCn5uL/MmYsWIiCgc7mqhu7sRR9BY/XhOd8gsNagZq5Bn2EWkOxHogeEnbxAfugVLuaaYfByn9QsYLU4vCdOIT7lbjD3K6GSjqPGxdfXpqNMaHx9zXhKHIqdjxND6a1g8ak8ePCJRDTZJWxytPgJOPZj1qaqKmDe46oJ97e/kqugmYMwsDu6Dmqk2sFsCSqOyZC7Q/B0WLnL0lpxfSp7qSCf/F7efNjp97FUhwSl2aExznWiO7IbIPr5WO/pciob4VWNj+vEEyjYrGBISL77cyOomQaMhWsk9N9fcUuWHmGMAYkQLhumxXQo3Oqs2aG/4Hud54b0g/+8bM/DJfmP4HIGTknDpoMzN0Az4GcpfhVlDHmFiOaaV5KMrPRA7JERagR3BPXywt2qbJIkRQENwagDiQqE5eMpFZE11e6+AI/4W1Iqx46G8g9ysTpT6VsvuObDGT6LEbR8h3RnlYWt0r27m68PXKAUszn5dy+ZWWL3tbqXvMBMfWio2FZfF4ew5tiVOOSZaZrBN7p2wJj5Ep097469XCbyCLSlJnSC02K6F4s70Qei5JcaTWD8bKBudgDF/eAWGjt04bPN7sAcpVZWfYan7YfiH8l5VvcqbGKq/1dUrvuM5dNfMtFQWXCuyaI/NlrxEZbt+IhIqbYmzrBLfOMJ6fe8FEMMogcxzlGz/dj/UyOkFNj4tr/zweUK2wXY0ElvJjsO9IYzfKJ5aAaAy5RH0aoNVMYmK5NRikeRdh+nKxweC/NLU35gBuE+NnPAVIZHSRJeCZzIXRdHFoD+ow3f15nrqTMkxMpLDCIg+Yd4EUwDUTFsaw3JmjckLqpcSHq2fAzJCuWGR+tgqgcbbB3MbaB0gECzRPSfSRoukzfzOr8qzuA5DNuULkTvvuqFRVPcpELBq4T2OINFtYNuacvz3wPTU3yGp8HyX0gUlNch4/HgjNk8BXkYEjNoUSrvqoElyq0bA4i6MSYyFh87Rbs2l5wXV6J4o1cp5+tfD4h7luz3/6XiHtT6Pff/mxHxElaawxOcxwv1KBxQm+T60t8EE4X6aNzjm9vbeqpp6NvgqBz9u/h86jMssMX2ZpWpiDMgpaszwrgq/TCZRpMA6/mjRekZESTpejxdI0722+5XhttRmCUuXLaw4Dad/5KT7ODKyIbVV1JvfmSgsLQebJi7zNPdEuqzPDqoqSLbUgF2EXAgJfOmxYohKHcI15Jv2DZKvjeh23jfFb8ANCNu9Bbaji+rHoSDSlIjFh4MpmrFj9cCwLK0M1un2xryLASh4OIgKl7Qegyvr2fHYsiptHSNs1tqUSge7m9T+gO0SrKw2t61FyUo8UznZOuawc0SrIsKv8C5u/+pBPMqM0uymz0Tut+xikZ2vC9ZI0eR0a3QAF10IoNKnHOXF/LZHwWqUyS3t42mmxKKmocqZS9ZoFKKCwvlee1PBwnsgYxuOvIgGeaxEmPowpTYaagq9+5zlRFecIocAoP9Oxcq+lGN1uINSrybY45SEzMINMqkCz90VDa2IfJP04rzIIyKR1JWuq9RwzRPnjGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADAAOAAxAGEAMgAxADEAZQAtADQAOAA5ADAALQA0ADAAMQBhAC0AOAAxADkAYQAtADYANgBhAGMAMwAwADYANwAzAGYANABlMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAhNWAVIqXKmAAICB9CAggOQ1v5eMFMhLiA2peK7eU1fdayhcJoBtHKRztlTSWRRpSqzowM0jjWfdAk/G1u7Oz8OcUpjvePY0UjG7wCsHeAk0jkn2b19sOEb4GN1xSun+wSUz/MKB6+bmxsLy3Qq26yXj1/dCT+yL3+MvsxB9ID9GaTEDc6/omh1S1GCzohLVciaA/UgO8CW+bskG0ebLaxWFZmd/9qmYMfmn6fXWWQL13xoi331Lnc9V0GEFoltY/k8M18OI1nALLFfvQn0FXsBUWRoR4ual9KR0Kx5tfCuxsrVdvBtczIgh69pfCi7TOmDwcYee4LZUSyptukGHKhQCFt5VXc1iZFmS7dnox/z2CCnCvYWR7PUILJkVH3G9x6NvrVMxuTAfrBfHEvMk8zJRXBKaZTpjNHBmALdaA/JTotmlpVTEb75XXQM42fMxKDJQ/WggwyoIw6QErpCvskDTBchIegRnvnB8E+7q5T+JSBvyVGUWdviRTCuzLIjmWjRkPJqzaQm6Zy31WRZynas9yc5IbmuuavtRlkbISPoql4QlVqMn6hxLrjt4SJdvZ1rGRxY6nIlJj7wIBJXAqnu8L6a04hT8/5j1Nw8kkAk+Y3745UMXA3M3Z8iaQnjxiaoWD328H1TUaclE/tF7kWqZOZF6IlgDdlc+77xWwYcQtZoOyyrQvgORqeYbSms+CXebmggdFM5qlEVRiAU2Ojm7LDa8ccnyZRfZTyKLigT1z5SMC3W42ddJVOZMfbX3nYcYBgUQdSdlhhW0cxsZLAAO/uxc9HTl7hopSQA2se+0W2u1RcumYyuDAmr3TenNmyWc/r7uTn32kWEBE/RzS+OY/h6c6Gr6Y3n5BnFA5dOi3UNdg7bWyYWnLjYcPr4vYnTjYDBxDR79k/I2N4FtsncqZokErze7AIiJ3GoWXhoOIHHg+fLgZIFU5A1hWgpgTFTvUeK/8eGCA/m/g0f/cODVcZ7I6ttjGRhwGDy9AWL/fPDlfahsd8PuzW5O/Dnx1YfPxH7ew967CEziKIfSK1nTXf+9YrnyP37sO/7lyJSjvDqehLOvRqqDt+Vfd6iC872Dwf/4z2wJhnqVUdnoX8ujbkOdBoASA5ZghqqxjJRSUzRCloB9WVIdU0lUUNOukbc6QU7CLXQtaNly90CUhbMIIvMQFCLLMsT6jnQqEEc3Wn3kLBx3KGwZD6zTxizXRpMcf/LeIIIVrEftt5c4SZqMDcwHzAHBgUrDgMCGgQUUgxSFQU5a3Sh85S/0c2jVoc47LYEFDNNj0IWUjQTjLnyPCoTHPSOM1pN","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","managed":true,"attributes":{"enabled":true,"nbf":1578320467,"exp":1609943467,"created":1578321067,"updated":1578321067,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"}' headers: cache-control: - no-cache content-length: - - '3952' + - '3960' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:05 GMT + - Mon, 06 Jan 2020 14:31:16 GMT expires: - '-1' pragma: @@ -986,11 +700,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.147.235;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.883 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -1207,8 +921,8 @@ interactions: "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value": - "A6D42B59D36EB86B6C2E0030165727B007B6DEC0"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"}, + "ED1EF85578DE92F5C4D1B578E960D004AC45E951"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -1230,15 +944,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/validate?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651","name":"AzurePSDeployment-201912111651","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-12-12T00:51:07.2066018Z","duration":"PT0S","correlationId":"277ed304-5549-496c-ad87-3b94aac0ebc4","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231","name":"AzurePSDeployment-202001062231","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"ED1EF85578DE92F5C4D1B578E960D004AC45E951"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:31:18.2842734Z","duration":"PT0S","correlationId":"93c0a204-1900-49c2-a25d-06f89f571306","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' headers: cache-control: - no-cache @@ -1247,7 +961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:07 GMT + - Mon, 06 Jan 2020 14:31:18 GMT expires: - '-1' pragma: @@ -1476,8 +1190,8 @@ interactions: "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value": - "A6D42B59D36EB86B6C2E0030165727B007B6DEC0"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"}, + "ED1EF85578DE92F5C4D1B578E960D004AC45E951"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -1499,26 +1213,26 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651","name":"AzurePSDeployment-201912111651","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-12-12T00:51:09.79929Z","duration":"PT1.0801461S","correlationId":"b9cf5c15-fa62-4a10-850e-949a816113f0","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231","name":"AzurePSDeployment-202001062231","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"ED1EF85578DE92F5C4D1B578E960D004AC45E951"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:31:22.7876234Z","duration":"PT1.704698S","correlationId":"4a3bd98f-4587-4cd8-9b34-9e72c5b65b3e","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651/operationStatuses/08586254950167585573?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231/operationStatuses/08586232858043947527?api-version=2019-07-01 cache-control: - no-cache content-length: - - '7189' + - '7190' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:51:09 GMT + - Mon, 06 Jan 2020 14:31:22 GMT expires: - '-1' pragma: @@ -1528,7 +1242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1546,53 +1260,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 00:51:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1604,7 +1275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:52:09 GMT + - Mon, 06 Jan 2020 14:31:54 GMT expires: - '-1' pragma: @@ -1632,10 +1303,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1647,7 +1318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:52:40 GMT + - Mon, 06 Jan 2020 14:32:24 GMT expires: - '-1' pragma: @@ -1675,10 +1346,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1690,7 +1361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:53:09 GMT + - Mon, 06 Jan 2020 14:32:56 GMT expires: - '-1' pragma: @@ -1718,10 +1389,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1733,7 +1404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:53:39 GMT + - Mon, 06 Jan 2020 14:33:26 GMT expires: - '-1' pragma: @@ -1761,10 +1432,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1776,7 +1447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:54:10 GMT + - Mon, 06 Jan 2020 14:33:56 GMT expires: - '-1' pragma: @@ -1804,10 +1475,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1819,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:54:40 GMT + - Mon, 06 Jan 2020 14:34:27 GMT expires: - '-1' pragma: @@ -1847,10 +1518,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1862,7 +1533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:55:10 GMT + - Mon, 06 Jan 2020 14:34:58 GMT expires: - '-1' pragma: @@ -1890,10 +1561,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1905,7 +1576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:55:40 GMT + - Mon, 06 Jan 2020 14:35:28 GMT expires: - '-1' pragma: @@ -1933,10 +1604,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1948,7 +1619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:56:10 GMT + - Mon, 06 Jan 2020 14:36:00 GMT expires: - '-1' pragma: @@ -1976,10 +1647,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1991,7 +1662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:56:40 GMT + - Mon, 06 Jan 2020 14:36:30 GMT expires: - '-1' pragma: @@ -2019,10 +1690,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -2034,7 +1705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:57:11 GMT + - Mon, 06 Jan 2020 14:37:00 GMT expires: - '-1' pragma: @@ -2062,10 +1733,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -2077,7 +1748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:57:40 GMT + - Mon, 06 Jan 2020 14:37:31 GMT expires: - '-1' pragma: @@ -2105,13 +1776,13 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651","name":"AzurePSDeployment-201912111651","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-12-12T00:57:31.9225815Z","duration":"PT6M23.2034376S","correlationId":"b9cf5c15-fa62-4a10-850e-949a816113f0","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"5385900f-32fc-4bd6-964f-597c5eb51a3d","clusterCodeVersion":"6.5.676.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d","certificate":{"thumbprint":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogsxjb4dma6imrnu2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/","queueEndpoint":"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/","tableEndpoint":"https://sflogsxjb4dma6imrnu2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"6.5.676.9590","supportExpiryUtc":"2020-05-01T00:00:00","environment":"Windows"},{"codeVersion":"7.0.457.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231","name":"AzurePSDeployment-202001062231","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"ED1EF85578DE92F5C4D1B578E960D004AC45E951"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:37:09.3299086Z","duration":"PT5M48.2469832S","correlationId":"4a3bd98f-4587-4cd8-9b34-9e72c5b65b3e","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"c44f903e-f63a-48e0-b1cb-5b826c44ddc6","clusterCodeVersion":"6.5.676.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6","certificate":{"thumbprint":"ED1EF85578DE92F5C4D1B578E960D004AC45E951","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogs2fswaa2omdra62","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogs2fswaa2omdra62.blob.core.windows.net/","queueEndpoint":"https://sflogs2fswaa2omdra62.queue.core.windows.net/","tableEndpoint":"https://sflogs2fswaa2omdra62.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"6.5.676.9590","supportExpiryUtc":"2020-05-01T00:00:00","environment":"Windows"},{"codeVersion":"7.0.457.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62"}]}}' headers: cache-control: - no-cache @@ -2120,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 00:57:40 GMT + - Mon, 06 Jan 2020 14:37:32 GMT expires: - '-1' pragma: @@ -2148,8 +1819,8 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2160,12 +1831,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2179,11 +1850,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2199,7 +1870,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:41 GMT + - Mon, 06 Jan 2020 14:37:34 GMT expires: - '-1' pragma: @@ -2232,8 +1903,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2244,12 +1915,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2263,11 +1934,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2283,7 +1954,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:41 GMT + - Mon, 06 Jan 2020 14:37:36 GMT expires: - '-1' pragma: @@ -2316,8 +1987,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2328,12 +1999,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2347,11 +2018,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2367,7 +2038,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:42 GMT + - Mon, 06 Jan 2020 14:37:37 GMT expires: - '-1' pragma: @@ -2400,8 +2071,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2412,12 +2083,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2431,11 +2102,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2451,7 +2122,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:43 GMT + - Mon, 06 Jan 2020 14:37:40 GMT expires: - '-1' pragma: @@ -2484,8 +2155,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2496,12 +2167,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2515,11 +2186,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2535,7 +2206,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:44 GMT + - Mon, 06 Jan 2020 14:37:43 GMT expires: - '-1' pragma: @@ -2568,8 +2239,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2580,12 +2251,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2599,11 +2270,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2619,7 +2290,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:43 GMT + - Mon, 06 Jan 2020 14:37:44 GMT expires: - '-1' pragma: @@ -2652,8 +2323,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2664,12 +2335,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2683,11 +2354,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2703,7 +2374,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:44 GMT + - Mon, 06 Jan 2020 14:37:46 GMT expires: - '-1' pragma: @@ -2736,8 +2407,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2748,12 +2419,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2767,11 +2438,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2787,7 +2458,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:45 GMT + - Mon, 06 Jan 2020 14:37:49 GMT expires: - '-1' pragma: @@ -2820,8 +2491,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2832,12 +2503,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2851,11 +2522,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2871,7 +2542,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:45 GMT + - Mon, 06 Jan 2020 14:37:51 GMT expires: - '-1' pragma: @@ -2904,8 +2575,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -2916,12 +2587,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2935,11 +2606,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2955,7 +2626,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:45 GMT + - Mon, 06 Jan 2020 14:37:53 GMT expires: - '-1' pragma: @@ -2988,8 +2659,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3000,12 +2671,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3019,11 +2690,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3039,7 +2710,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:46 GMT + - Mon, 06 Jan 2020 14:37:54 GMT expires: - '-1' pragma: @@ -3072,8 +2743,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3084,12 +2755,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3103,11 +2774,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3123,7 +2794,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:46 GMT + - Mon, 06 Jan 2020 14:37:57 GMT expires: - '-1' pragma: @@ -3156,8 +2827,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3168,12 +2839,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3187,11 +2858,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3207,7 +2878,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:46 GMT + - Mon, 06 Jan 2020 14:37:58 GMT expires: - '-1' pragma: @@ -3240,8 +2911,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3252,12 +2923,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3271,11 +2942,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3291,7 +2962,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:47 GMT + - Mon, 06 Jan 2020 14:38:00 GMT expires: - '-1' pragma: @@ -3324,8 +2995,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3336,12 +3007,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3355,11 +3026,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3375,7 +3046,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:47 GMT + - Mon, 06 Jan 2020 14:38:02 GMT expires: - '-1' pragma: @@ -3408,8 +3079,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3420,12 +3091,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3439,11 +3110,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3459,7 +3130,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:48 GMT + - Mon, 06 Jan 2020 14:38:03 GMT expires: - '-1' pragma: @@ -3492,8 +3163,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3504,12 +3175,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3523,11 +3194,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3543,7 +3214,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:48 GMT + - Mon, 06 Jan 2020 14:38:05 GMT expires: - '-1' pragma: @@ -3576,8 +3247,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3588,12 +3259,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3607,11 +3278,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3627,7 +3298,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:48 GMT + - Mon, 06 Jan 2020 14:38:07 GMT expires: - '-1' pragma: @@ -3660,8 +3331,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3672,12 +3343,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3691,11 +3362,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3711,7 +3382,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:49 GMT + - Mon, 06 Jan 2020 14:38:08 GMT expires: - '-1' pragma: @@ -3744,8 +3415,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3756,12 +3427,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3775,11 +3446,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3795,7 +3466,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:49 GMT + - Mon, 06 Jan 2020 14:38:11 GMT expires: - '-1' pragma: @@ -3828,8 +3499,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3840,12 +3511,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3859,11 +3530,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3879,7 +3550,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:50 GMT + - Mon, 06 Jan 2020 14:38:12 GMT expires: - '-1' pragma: @@ -3912,8 +3583,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -3924,12 +3595,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3943,11 +3614,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3963,7 +3634,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:50 GMT + - Mon, 06 Jan 2020 14:38:14 GMT expires: - '-1' pragma: @@ -3996,8 +3667,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4008,12 +3679,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4027,11 +3698,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4047,7 +3718,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:51 GMT + - Mon, 06 Jan 2020 14:38:14 GMT expires: - '-1' pragma: @@ -4080,8 +3751,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4092,12 +3763,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4111,11 +3782,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4131,7 +3802,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:50 GMT + - Mon, 06 Jan 2020 14:38:16 GMT expires: - '-1' pragma: @@ -4164,8 +3835,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4176,12 +3847,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4195,11 +3866,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4215,7 +3886,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:51 GMT + - Mon, 06 Jan 2020 14:38:18 GMT expires: - '-1' pragma: @@ -4248,8 +3919,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4260,12 +3931,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4279,11 +3950,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4299,7 +3970,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:52 GMT + - Mon, 06 Jan 2020 14:38:19 GMT expires: - '-1' pragma: @@ -4332,8 +4003,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4344,12 +4015,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4363,11 +4034,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4383,7 +4054,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:52 GMT + - Mon, 06 Jan 2020 14:38:20 GMT expires: - '-1' pragma: @@ -4416,8 +4087,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4428,12 +4099,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4447,11 +4118,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4467,7 +4138,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:52 GMT + - Mon, 06 Jan 2020 14:38:22 GMT expires: - '-1' pragma: @@ -4500,8 +4171,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4512,12 +4183,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4531,11 +4202,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4551,7 +4222,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:53 GMT + - Mon, 06 Jan 2020 14:38:25 GMT expires: - '-1' pragma: @@ -4584,8 +4255,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4596,12 +4267,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4615,11 +4286,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4635,7 +4306,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:53 GMT + - Mon, 06 Jan 2020 14:38:27 GMT expires: - '-1' pragma: @@ -4668,8 +4339,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4680,12 +4351,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4699,11 +4370,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4719,7 +4390,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:54 GMT + - Mon, 06 Jan 2020 14:38:28 GMT expires: - '-1' pragma: @@ -4752,8 +4423,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4764,12 +4435,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4783,11 +4454,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4803,7 +4474,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:54 GMT + - Mon, 06 Jan 2020 14:38:30 GMT expires: - '-1' pragma: @@ -4836,8 +4507,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4848,12 +4519,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4867,11 +4538,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4887,7 +4558,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:55 GMT + - Mon, 06 Jan 2020 14:38:32 GMT expires: - '-1' pragma: @@ -4920,8 +4591,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -4932,12 +4603,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4951,11 +4622,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4971,7 +4642,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:55 GMT + - Mon, 06 Jan 2020 14:38:34 GMT expires: - '-1' pragma: @@ -5004,8 +4675,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5016,12 +4687,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5035,11 +4706,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5055,7 +4726,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:56 GMT + - Mon, 06 Jan 2020 14:38:34 GMT expires: - '-1' pragma: @@ -5088,8 +4759,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5100,12 +4771,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5119,11 +4790,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5139,7 +4810,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:56 GMT + - Mon, 06 Jan 2020 14:38:38 GMT expires: - '-1' pragma: @@ -5172,8 +4843,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5184,12 +4855,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5203,11 +4874,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5223,7 +4894,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:56 GMT + - Mon, 06 Jan 2020 14:38:40 GMT expires: - '-1' pragma: @@ -5256,8 +4927,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5268,12 +4939,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5287,11 +4958,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5307,7 +4978,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:56 GMT + - Mon, 06 Jan 2020 14:38:42 GMT expires: - '-1' pragma: @@ -5340,8 +5011,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5352,12 +5023,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5371,11 +5042,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5391,7 +5062,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:57 GMT + - Mon, 06 Jan 2020 14:38:42 GMT expires: - '-1' pragma: @@ -5424,8 +5095,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5436,12 +5107,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5455,11 +5126,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5475,7 +5146,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:57 GMT + - Mon, 06 Jan 2020 14:38:45 GMT expires: - '-1' pragma: @@ -5508,8 +5179,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5520,12 +5191,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5539,11 +5210,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5559,7 +5230,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:58 GMT + - Mon, 06 Jan 2020 14:38:47 GMT expires: - '-1' pragma: @@ -5592,8 +5263,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5604,12 +5275,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5623,11 +5294,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5643,7 +5314,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:58 GMT + - Mon, 06 Jan 2020 14:38:49 GMT expires: - '-1' pragma: @@ -5676,8 +5347,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5688,12 +5359,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5707,11 +5378,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5727,7 +5398,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:59 GMT + - Mon, 06 Jan 2020 14:38:50 GMT expires: - '-1' pragma: @@ -5760,8 +5431,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5772,12 +5443,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5791,11 +5462,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5811,7 +5482,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:59 GMT + - Mon, 06 Jan 2020 14:38:53 GMT expires: - '-1' pragma: @@ -5844,8 +5515,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5856,12 +5527,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5875,11 +5546,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5895,7 +5566,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:57:59 GMT + - Mon, 06 Jan 2020 14:38:55 GMT expires: - '-1' pragma: @@ -5928,8 +5599,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -5940,12 +5611,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5959,11 +5630,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5979,7 +5650,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:00 GMT + - Mon, 06 Jan 2020 14:38:56 GMT expires: - '-1' pragma: @@ -6012,8 +5683,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6024,12 +5695,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6043,11 +5714,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6063,7 +5734,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:00 GMT + - Mon, 06 Jan 2020 14:38:57 GMT expires: - '-1' pragma: @@ -6096,8 +5767,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6108,12 +5779,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6127,11 +5798,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6147,7 +5818,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:01 GMT + - Mon, 06 Jan 2020 14:39:00 GMT expires: - '-1' pragma: @@ -6180,8 +5851,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6192,12 +5863,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6211,11 +5882,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6231,7 +5902,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:01 GMT + - Mon, 06 Jan 2020 14:39:02 GMT expires: - '-1' pragma: @@ -6264,8 +5935,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6276,12 +5947,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6295,11 +5966,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6315,7 +5986,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:02 GMT + - Mon, 06 Jan 2020 14:39:04 GMT expires: - '-1' pragma: @@ -6348,8 +6019,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6360,12 +6031,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6379,11 +6050,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6399,7 +6070,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:02 GMT + - Mon, 06 Jan 2020 14:39:06 GMT expires: - '-1' pragma: @@ -6432,8 +6103,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6444,12 +6115,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6463,11 +6134,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6483,7 +6154,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:03 GMT + - Mon, 06 Jan 2020 14:39:09 GMT expires: - '-1' pragma: @@ -6516,8 +6187,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6528,12 +6199,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6547,11 +6218,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6567,7 +6238,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:03 GMT + - Mon, 06 Jan 2020 14:39:10 GMT expires: - '-1' pragma: @@ -6600,8 +6271,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6612,12 +6283,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6631,11 +6302,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6651,7 +6322,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:04 GMT + - Mon, 06 Jan 2020 14:39:13 GMT expires: - '-1' pragma: @@ -6684,8 +6355,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6696,12 +6367,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6715,11 +6386,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6735,7 +6406,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:04 GMT + - Mon, 06 Jan 2020 14:39:15 GMT expires: - '-1' pragma: @@ -6768,8 +6439,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6780,12 +6451,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6799,11 +6470,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6819,7 +6490,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:04 GMT + - Mon, 06 Jan 2020 14:39:16 GMT expires: - '-1' pragma: @@ -6852,8 +6523,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6864,12 +6535,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6883,11 +6554,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6903,7 +6574,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:04 GMT + - Mon, 06 Jan 2020 14:39:18 GMT expires: - '-1' pragma: @@ -6936,8 +6607,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -6948,12 +6619,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6967,11 +6638,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6987,7 +6658,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:06 GMT + - Mon, 06 Jan 2020 14:39:20 GMT expires: - '-1' pragma: @@ -7020,8 +6691,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7032,12 +6703,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7051,11 +6722,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7071,7 +6742,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:06 GMT + - Mon, 06 Jan 2020 14:39:23 GMT expires: - '-1' pragma: @@ -7104,8 +6775,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7116,12 +6787,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7135,11 +6806,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7155,7 +6826,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:07 GMT + - Mon, 06 Jan 2020 14:39:26 GMT expires: - '-1' pragma: @@ -7188,8 +6859,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7200,12 +6871,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7219,11 +6890,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7239,7 +6910,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:07 GMT + - Mon, 06 Jan 2020 14:39:28 GMT expires: - '-1' pragma: @@ -7272,8 +6943,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7284,12 +6955,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7303,11 +6974,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7323,7 +6994,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:07 GMT + - Mon, 06 Jan 2020 14:39:30 GMT expires: - '-1' pragma: @@ -7356,8 +7027,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7368,12 +7039,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7387,11 +7058,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7407,7 +7078,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:08 GMT + - Mon, 06 Jan 2020 14:39:32 GMT expires: - '-1' pragma: @@ -7440,8 +7111,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7452,12 +7123,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7471,11 +7142,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7491,7 +7162,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:08 GMT + - Mon, 06 Jan 2020 14:39:34 GMT expires: - '-1' pragma: @@ -7524,8 +7195,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7536,12 +7207,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7555,11 +7226,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7575,7 +7246,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:09 GMT + - Mon, 06 Jan 2020 14:39:35 GMT expires: - '-1' pragma: @@ -7608,8 +7279,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7620,12 +7291,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7639,11 +7310,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7659,7 +7330,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:09 GMT + - Mon, 06 Jan 2020 14:39:37 GMT expires: - '-1' pragma: @@ -7692,8 +7363,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7704,12 +7375,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7723,11 +7394,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7743,7 +7414,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:09 GMT + - Mon, 06 Jan 2020 14:39:39 GMT expires: - '-1' pragma: @@ -7776,8 +7447,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7788,12 +7459,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7807,11 +7478,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7827,7 +7498,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:09 GMT + - Mon, 06 Jan 2020 14:39:41 GMT expires: - '-1' pragma: @@ -7860,8 +7531,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7872,12 +7543,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7891,11 +7562,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7911,7 +7582,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:10 GMT + - Mon, 06 Jan 2020 14:39:43 GMT expires: - '-1' pragma: @@ -7944,8 +7615,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -7956,12 +7627,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7975,11 +7646,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7995,7 +7666,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:11 GMT + - Mon, 06 Jan 2020 14:39:45 GMT expires: - '-1' pragma: @@ -8028,8 +7699,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8040,12 +7711,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8059,11 +7730,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8079,7 +7750,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:11 GMT + - Mon, 06 Jan 2020 14:39:47 GMT expires: - '-1' pragma: @@ -8112,8 +7783,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8124,12 +7795,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8143,11 +7814,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8163,7 +7834,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:11 GMT + - Mon, 06 Jan 2020 14:39:49 GMT expires: - '-1' pragma: @@ -8196,8 +7867,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8208,12 +7879,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8227,11 +7898,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8247,7 +7918,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:12 GMT + - Mon, 06 Jan 2020 14:39:52 GMT expires: - '-1' pragma: @@ -8280,8 +7951,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8292,12 +7963,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8311,11 +7982,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8331,7 +8002,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:12 GMT + - Mon, 06 Jan 2020 14:39:54 GMT expires: - '-1' pragma: @@ -8364,8 +8035,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8376,12 +8047,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8395,11 +8066,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8415,7 +8086,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:13 GMT + - Mon, 06 Jan 2020 14:39:56 GMT expires: - '-1' pragma: @@ -8448,8 +8119,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8460,12 +8131,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8479,11 +8150,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8499,7 +8170,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:14 GMT + - Mon, 06 Jan 2020 14:39:58 GMT expires: - '-1' pragma: @@ -8532,8 +8203,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8544,12 +8215,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8563,11 +8234,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8583,7 +8254,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:14 GMT + - Mon, 06 Jan 2020 14:40:00 GMT expires: - '-1' pragma: @@ -8616,8 +8287,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8628,12 +8299,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8647,11 +8318,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8667,7 +8338,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:14 GMT + - Mon, 06 Jan 2020 14:40:02 GMT expires: - '-1' pragma: @@ -8700,8 +8371,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8712,12 +8383,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8731,11 +8402,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8751,7 +8422,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:15 GMT + - Mon, 06 Jan 2020 14:40:03 GMT expires: - '-1' pragma: @@ -8784,8 +8455,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8796,12 +8467,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8815,11 +8486,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8835,7 +8506,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:15 GMT + - Mon, 06 Jan 2020 14:40:07 GMT expires: - '-1' pragma: @@ -8868,8 +8539,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8880,12 +8551,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8899,11 +8570,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8919,7 +8590,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:16 GMT + - Mon, 06 Jan 2020 14:40:09 GMT expires: - '-1' pragma: @@ -8952,8 +8623,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -8964,12 +8635,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8983,11 +8654,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9003,7 +8674,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:16 GMT + - Mon, 06 Jan 2020 14:40:11 GMT expires: - '-1' pragma: @@ -9036,8 +8707,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9048,12 +8719,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9067,11 +8738,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9087,7 +8758,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:17 GMT + - Mon, 06 Jan 2020 14:40:13 GMT expires: - '-1' pragma: @@ -9120,8 +8791,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9132,12 +8803,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9151,11 +8822,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9171,7 +8842,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:17 GMT + - Mon, 06 Jan 2020 14:40:15 GMT expires: - '-1' pragma: @@ -9204,8 +8875,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9216,12 +8887,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9235,11 +8906,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9255,7 +8926,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:18 GMT + - Mon, 06 Jan 2020 14:40:16 GMT expires: - '-1' pragma: @@ -9288,8 +8959,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9300,12 +8971,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9319,11 +8990,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9339,7 +9010,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:18 GMT + - Mon, 06 Jan 2020 14:40:18 GMT expires: - '-1' pragma: @@ -9372,8 +9043,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9384,12 +9055,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9403,11 +9074,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9423,7 +9094,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:18 GMT + - Mon, 06 Jan 2020 14:40:22 GMT expires: - '-1' pragma: @@ -9456,8 +9127,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9468,12 +9139,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9487,11 +9158,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9507,7 +9178,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:19 GMT + - Mon, 06 Jan 2020 14:40:23 GMT expires: - '-1' pragma: @@ -9540,8 +9211,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9552,12 +9223,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9571,11 +9242,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9591,7 +9262,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:19 GMT + - Mon, 06 Jan 2020 14:40:25 GMT expires: - '-1' pragma: @@ -9624,8 +9295,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9636,12 +9307,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9655,11 +9326,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9675,7 +9346,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:20 GMT + - Mon, 06 Jan 2020 14:40:28 GMT expires: - '-1' pragma: @@ -9708,8 +9379,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9720,12 +9391,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9739,11 +9410,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9759,7 +9430,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:20 GMT + - Mon, 06 Jan 2020 14:40:30 GMT expires: - '-1' pragma: @@ -9792,8 +9463,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9804,12 +9475,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9823,11 +9494,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9843,7 +9514,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:21 GMT + - Mon, 06 Jan 2020 14:40:34 GMT expires: - '-1' pragma: @@ -9876,8 +9547,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9888,12 +9559,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9907,11 +9578,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9927,7 +9598,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:21 GMT + - Mon, 06 Jan 2020 14:40:35 GMT expires: - '-1' pragma: @@ -9960,8 +9631,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -9972,12 +9643,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9991,11 +9662,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10011,7 +9682,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:21 GMT + - Mon, 06 Jan 2020 14:40:38 GMT expires: - '-1' pragma: @@ -10044,8 +9715,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10056,12 +9727,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10075,11 +9746,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10095,7 +9766,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:22 GMT + - Mon, 06 Jan 2020 14:40:40 GMT expires: - '-1' pragma: @@ -10128,8 +9799,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10140,12 +9811,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10159,11 +9830,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10179,7 +9850,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:22 GMT + - Mon, 06 Jan 2020 14:40:43 GMT expires: - '-1' pragma: @@ -10212,8 +9883,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10224,12 +9895,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10243,11 +9914,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10263,7 +9934,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:23 GMT + - Mon, 06 Jan 2020 14:40:45 GMT expires: - '-1' pragma: @@ -10296,8 +9967,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10308,12 +9979,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10327,11 +9998,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10347,7 +10018,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:23 GMT + - Mon, 06 Jan 2020 14:40:47 GMT expires: - '-1' pragma: @@ -10380,8 +10051,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10392,12 +10063,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10411,11 +10082,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10431,7 +10102,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:24 GMT + - Mon, 06 Jan 2020 14:40:50 GMT expires: - '-1' pragma: @@ -10464,8 +10135,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10476,12 +10147,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10495,11 +10166,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10515,7 +10186,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:24 GMT + - Mon, 06 Jan 2020 14:40:52 GMT expires: - '-1' pragma: @@ -10548,8 +10219,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10560,12 +10231,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10579,11 +10250,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10599,7 +10270,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:25 GMT + - Mon, 06 Jan 2020 14:40:54 GMT expires: - '-1' pragma: @@ -10632,8 +10303,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10644,12 +10315,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10663,11 +10334,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10683,7 +10354,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:25 GMT + - Mon, 06 Jan 2020 14:40:57 GMT expires: - '-1' pragma: @@ -10716,8 +10387,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10728,12 +10399,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10747,11 +10418,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10767,7 +10438,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:25 GMT + - Mon, 06 Jan 2020 14:40:58 GMT expires: - '-1' pragma: @@ -10800,8 +10471,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10812,12 +10483,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10831,11 +10502,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10851,7 +10522,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:26 GMT + - Mon, 06 Jan 2020 14:41:01 GMT expires: - '-1' pragma: @@ -10884,8 +10555,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10896,12 +10567,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10915,11 +10586,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10935,7 +10606,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:27 GMT + - Mon, 06 Jan 2020 14:41:04 GMT expires: - '-1' pragma: @@ -10968,8 +10639,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -10980,12 +10651,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10999,11 +10670,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11019,7 +10690,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:27 GMT + - Mon, 06 Jan 2020 14:41:06 GMT expires: - '-1' pragma: @@ -11052,8 +10723,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11064,12 +10735,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11083,11 +10754,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11103,7 +10774,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:28 GMT + - Mon, 06 Jan 2020 14:41:09 GMT expires: - '-1' pragma: @@ -11136,8 +10807,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11148,12 +10819,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11167,11 +10838,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11187,7 +10858,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:28 GMT + - Mon, 06 Jan 2020 14:41:11 GMT expires: - '-1' pragma: @@ -11220,8 +10891,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11232,12 +10903,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11251,11 +10922,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11271,7 +10942,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:28 GMT + - Mon, 06 Jan 2020 14:41:13 GMT expires: - '-1' pragma: @@ -11304,8 +10975,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11316,12 +10987,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11335,11 +11006,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11355,7 +11026,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:29 GMT + - Mon, 06 Jan 2020 14:41:16 GMT expires: - '-1' pragma: @@ -11388,8 +11059,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11400,12 +11071,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11419,11 +11090,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11439,7 +11110,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:29 GMT + - Mon, 06 Jan 2020 14:41:18 GMT expires: - '-1' pragma: @@ -11472,8 +11143,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11484,12 +11155,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11503,11 +11174,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11523,7 +11194,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:30 GMT + - Mon, 06 Jan 2020 14:41:20 GMT expires: - '-1' pragma: @@ -11556,8 +11227,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11568,12 +11239,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11587,11 +11258,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11607,7 +11278,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:31 GMT + - Mon, 06 Jan 2020 14:41:24 GMT expires: - '-1' pragma: @@ -11640,8 +11311,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11652,12 +11323,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11671,11 +11342,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11691,7 +11362,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:31 GMT + - Mon, 06 Jan 2020 14:41:25 GMT expires: - '-1' pragma: @@ -11724,8 +11395,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11736,12 +11407,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11755,11 +11426,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11775,7 +11446,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:32 GMT + - Mon, 06 Jan 2020 14:41:29 GMT expires: - '-1' pragma: @@ -11808,8 +11479,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11820,12 +11491,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11839,11 +11510,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11859,7 +11530,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:32 GMT + - Mon, 06 Jan 2020 14:41:32 GMT expires: - '-1' pragma: @@ -11892,8 +11563,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11904,12 +11575,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11923,11 +11594,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11943,7 +11614,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:32 GMT + - Mon, 06 Jan 2020 14:41:34 GMT expires: - '-1' pragma: @@ -11976,8 +11647,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -11988,12 +11659,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12007,11 +11678,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12027,7 +11698,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:33 GMT + - Mon, 06 Jan 2020 14:41:37 GMT expires: - '-1' pragma: @@ -12060,8 +11731,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12072,12 +11743,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12091,11 +11762,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12111,7 +11782,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:33 GMT + - Mon, 06 Jan 2020 14:41:40 GMT expires: - '-1' pragma: @@ -12144,8 +11815,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12156,12 +11827,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12175,11 +11846,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12195,7 +11866,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:34 GMT + - Mon, 06 Jan 2020 14:41:42 GMT expires: - '-1' pragma: @@ -12228,8 +11899,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12240,12 +11911,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12259,11 +11930,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12279,7 +11950,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:35 GMT + - Mon, 06 Jan 2020 14:41:44 GMT expires: - '-1' pragma: @@ -12312,8 +11983,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12324,12 +11995,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12343,11 +12014,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12363,7 +12034,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:35 GMT + - Mon, 06 Jan 2020 14:41:46 GMT expires: - '-1' pragma: @@ -12396,8 +12067,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12408,12 +12079,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12427,11 +12098,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12447,7 +12118,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:35 GMT + - Mon, 06 Jan 2020 14:41:49 GMT expires: - '-1' pragma: @@ -12480,8 +12151,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12492,12 +12163,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12511,11 +12182,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12531,7 +12202,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:36 GMT + - Mon, 06 Jan 2020 14:41:53 GMT expires: - '-1' pragma: @@ -12564,8 +12235,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12576,12 +12247,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12595,11 +12266,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12615,7 +12286,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:36 GMT + - Mon, 06 Jan 2020 14:41:55 GMT expires: - '-1' pragma: @@ -12648,8 +12319,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12660,12 +12331,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12679,11 +12350,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12699,7 +12370,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:37 GMT + - Mon, 06 Jan 2020 14:41:57 GMT expires: - '-1' pragma: @@ -12732,8 +12403,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12744,12 +12415,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12763,11 +12434,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12783,7 +12454,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:38 GMT + - Mon, 06 Jan 2020 14:42:00 GMT expires: - '-1' pragma: @@ -12816,8 +12487,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12828,12 +12499,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12847,11 +12518,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12867,7 +12538,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:38 GMT + - Mon, 06 Jan 2020 14:42:03 GMT expires: - '-1' pragma: @@ -12900,8 +12571,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12912,12 +12583,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12931,11 +12602,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12951,7 +12622,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:38 GMT + - Mon, 06 Jan 2020 14:42:05 GMT expires: - '-1' pragma: @@ -12984,8 +12655,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -12996,12 +12667,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13015,11 +12686,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13035,7 +12706,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:38 GMT + - Mon, 06 Jan 2020 14:42:07 GMT expires: - '-1' pragma: @@ -13068,8 +12739,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13080,12 +12751,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13099,11 +12770,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13119,7 +12790,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:39 GMT + - Mon, 06 Jan 2020 14:42:09 GMT expires: - '-1' pragma: @@ -13152,8 +12823,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13164,12 +12835,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13183,11 +12854,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13203,7 +12874,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:40 GMT + - Mon, 06 Jan 2020 14:42:12 GMT expires: - '-1' pragma: @@ -13236,8 +12907,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13248,12 +12919,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13267,11 +12938,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13287,7 +12958,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:40 GMT + - Mon, 06 Jan 2020 14:42:15 GMT expires: - '-1' pragma: @@ -13320,8 +12991,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13332,12 +13003,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13351,11 +13022,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13371,7 +13042,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:41 GMT + - Mon, 06 Jan 2020 14:42:17 GMT expires: - '-1' pragma: @@ -13404,8 +13075,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13416,12 +13087,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13435,11 +13106,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13455,7 +13126,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:41 GMT + - Mon, 06 Jan 2020 14:42:20 GMT expires: - '-1' pragma: @@ -13488,8 +13159,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13500,12 +13171,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13519,11 +13190,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13539,7 +13210,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:42 GMT + - Mon, 06 Jan 2020 14:42:23 GMT expires: - '-1' pragma: @@ -13572,8 +13243,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13584,12 +13255,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13603,11 +13274,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13623,7 +13294,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:42 GMT + - Mon, 06 Jan 2020 14:42:25 GMT expires: - '-1' pragma: @@ -13656,8 +13327,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13668,12 +13339,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13687,11 +13358,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13707,7 +13378,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:42 GMT + - Mon, 06 Jan 2020 14:42:29 GMT expires: - '-1' pragma: @@ -13740,8 +13411,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13752,12 +13423,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13771,11 +13442,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13791,7 +13462,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:43 GMT + - Mon, 06 Jan 2020 14:42:31 GMT expires: - '-1' pragma: @@ -13824,8 +13495,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13836,12 +13507,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13855,11 +13526,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13875,7 +13546,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:44 GMT + - Mon, 06 Jan 2020 14:42:33 GMT expires: - '-1' pragma: @@ -13908,8 +13579,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -13920,12 +13591,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13939,11 +13610,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13959,7 +13630,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:45 GMT + - Mon, 06 Jan 2020 14:42:36 GMT expires: - '-1' pragma: @@ -13992,8 +13663,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14004,12 +13675,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14023,11 +13694,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14043,7 +13714,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:45 GMT + - Mon, 06 Jan 2020 14:42:38 GMT expires: - '-1' pragma: @@ -14076,8 +13747,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14088,12 +13759,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14107,11 +13778,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14127,7 +13798,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:46 GMT + - Mon, 06 Jan 2020 14:42:41 GMT expires: - '-1' pragma: @@ -14160,8 +13831,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14172,12 +13843,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14191,11 +13862,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14211,7 +13882,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:46 GMT + - Mon, 06 Jan 2020 14:42:45 GMT expires: - '-1' pragma: @@ -14244,8 +13915,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14256,12 +13927,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14275,11 +13946,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14295,7 +13966,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:47 GMT + - Mon, 06 Jan 2020 14:42:48 GMT expires: - '-1' pragma: @@ -14328,8 +13999,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14340,12 +14011,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14359,11 +14030,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14379,7 +14050,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:47 GMT + - Mon, 06 Jan 2020 14:42:50 GMT expires: - '-1' pragma: @@ -14412,8 +14083,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14424,12 +14095,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14443,11 +14114,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14463,7 +14134,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:47 GMT + - Mon, 06 Jan 2020 14:42:52 GMT expires: - '-1' pragma: @@ -14496,8 +14167,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14508,12 +14179,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14527,11 +14198,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14547,7 +14218,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:48 GMT + - Mon, 06 Jan 2020 14:42:55 GMT expires: - '-1' pragma: @@ -14580,8 +14251,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14592,12 +14263,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14611,11 +14282,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14631,7 +14302,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:48 GMT + - Mon, 06 Jan 2020 14:42:58 GMT expires: - '-1' pragma: @@ -14664,8 +14335,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14676,12 +14347,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14695,11 +14366,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14715,7 +14386,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:49 GMT + - Mon, 06 Jan 2020 14:43:02 GMT expires: - '-1' pragma: @@ -14748,8 +14419,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14760,12 +14431,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14779,11 +14450,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14799,7 +14470,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:49 GMT + - Mon, 06 Jan 2020 14:43:03 GMT expires: - '-1' pragma: @@ -14832,8 +14503,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14844,12 +14515,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14863,11 +14534,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14883,7 +14554,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:50 GMT + - Mon, 06 Jan 2020 14:43:07 GMT expires: - '-1' pragma: @@ -14916,8 +14587,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -14928,12 +14599,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14947,11 +14618,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14967,7 +14638,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:50 GMT + - Mon, 06 Jan 2020 14:43:09 GMT expires: - '-1' pragma: @@ -15000,8 +14671,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15012,12 +14683,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15031,11 +14702,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15051,7 +14722,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:51 GMT + - Mon, 06 Jan 2020 14:43:12 GMT expires: - '-1' pragma: @@ -15084,8 +14755,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15096,12 +14767,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15115,11 +14786,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15135,7 +14806,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:52 GMT + - Mon, 06 Jan 2020 14:43:15 GMT expires: - '-1' pragma: @@ -15168,8 +14839,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15180,12 +14851,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15199,11 +14870,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15219,7 +14890,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:52 GMT + - Mon, 06 Jan 2020 14:43:17 GMT expires: - '-1' pragma: @@ -15252,8 +14923,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15264,12 +14935,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15283,11 +14954,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15303,7 +14974,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:52 GMT + - Mon, 06 Jan 2020 14:43:20 GMT expires: - '-1' pragma: @@ -15336,8 +15007,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15348,12 +15019,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15367,11 +15038,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15387,7 +15058,7 @@ interactions: content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:53 GMT + - Mon, 06 Jan 2020 14:43:23 GMT expires: - '-1' pragma: @@ -15420,8 +15091,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15432,12 +15103,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15451,11 +15122,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15467,11 +15138,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:54 GMT + - Mon, 06 Jan 2020 14:43:26 GMT expires: - '-1' pragma: @@ -15504,8 +15175,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15516,12 +15187,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15535,11 +15206,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15551,11 +15222,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:54 GMT + - Mon, 06 Jan 2020 14:43:28 GMT expires: - '-1' pragma: @@ -15588,8 +15259,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15600,12 +15271,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15619,11 +15290,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15635,11 +15306,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:55 GMT + - Mon, 06 Jan 2020 14:43:32 GMT expires: - '-1' pragma: @@ -15672,8 +15343,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15684,12 +15355,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15703,11 +15374,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15719,11 +15390,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:56 GMT + - Mon, 06 Jan 2020 14:43:35 GMT expires: - '-1' pragma: @@ -15756,8 +15427,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15768,12 +15439,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15787,11 +15458,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15803,11 +15474,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:56 GMT + - Mon, 06 Jan 2020 14:43:38 GMT expires: - '-1' pragma: @@ -15840,8 +15511,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15852,12 +15523,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15871,11 +15542,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15887,11 +15558,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:57 GMT + - Mon, 06 Jan 2020 14:43:40 GMT expires: - '-1' pragma: @@ -15924,8 +15595,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -15936,12 +15607,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15955,11 +15626,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15971,11 +15642,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:57 GMT + - Mon, 06 Jan 2020 14:43:44 GMT expires: - '-1' pragma: @@ -16008,8 +15679,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16020,12 +15691,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16039,11 +15710,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16055,11 +15726,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:58 GMT + - Mon, 06 Jan 2020 14:43:47 GMT expires: - '-1' pragma: @@ -16092,8 +15763,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16104,12 +15775,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16123,11 +15794,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16139,11 +15810,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:58 GMT + - Mon, 06 Jan 2020 14:43:50 GMT expires: - '-1' pragma: @@ -16176,8 +15847,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16188,12 +15859,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16207,11 +15878,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16223,11 +15894,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:58 GMT + - Mon, 06 Jan 2020 14:43:52 GMT expires: - '-1' pragma: @@ -16260,8 +15931,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16272,12 +15943,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16291,11 +15962,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16307,11 +15978,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:58:59 GMT + - Mon, 06 Jan 2020 14:43:55 GMT expires: - '-1' pragma: @@ -16344,8 +16015,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16356,12 +16027,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16375,11 +16046,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16391,11 +16062,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:00 GMT + - Mon, 06 Jan 2020 14:43:58 GMT expires: - '-1' pragma: @@ -16428,8 +16099,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16440,12 +16111,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16459,11 +16130,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16475,11 +16146,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:00 GMT + - Mon, 06 Jan 2020 14:44:00 GMT expires: - '-1' pragma: @@ -16512,8 +16183,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16524,12 +16195,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16543,11 +16214,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16559,11 +16230,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:00 GMT + - Mon, 06 Jan 2020 14:44:03 GMT expires: - '-1' pragma: @@ -16596,8 +16267,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16608,12 +16279,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16627,11 +16298,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16643,11 +16314,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:01 GMT + - Mon, 06 Jan 2020 14:44:05 GMT expires: - '-1' pragma: @@ -16680,8 +16351,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16692,12 +16363,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16711,11 +16382,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16727,11 +16398,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:02 GMT + - Mon, 06 Jan 2020 14:44:09 GMT expires: - '-1' pragma: @@ -16764,8 +16435,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16776,12 +16447,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16795,11 +16466,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16811,11 +16482,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:02 GMT + - Mon, 06 Jan 2020 14:44:13 GMT expires: - '-1' pragma: @@ -16848,8 +16519,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16860,12 +16531,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16879,11 +16550,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16895,11 +16566,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:03 GMT + - Mon, 06 Jan 2020 14:44:16 GMT expires: - '-1' pragma: @@ -16932,8 +16603,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -16944,12 +16615,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16963,11 +16634,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16979,11 +16650,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:04 GMT + - Mon, 06 Jan 2020 14:44:19 GMT expires: - '-1' pragma: @@ -17016,8 +16687,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17028,12 +16699,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17047,11 +16718,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17063,11 +16734,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:04 GMT + - Mon, 06 Jan 2020 14:44:22 GMT expires: - '-1' pragma: @@ -17100,8 +16771,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17112,12 +16783,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17131,11 +16802,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17147,11 +16818,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:04 GMT + - Mon, 06 Jan 2020 14:44:24 GMT expires: - '-1' pragma: @@ -17184,8 +16855,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17196,12 +16867,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17215,11 +16886,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17231,11 +16902,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:04 GMT + - Mon, 06 Jan 2020 14:44:28 GMT expires: - '-1' pragma: @@ -17268,8 +16939,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17280,12 +16951,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17299,11 +16970,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17315,11 +16986,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:05 GMT + - Mon, 06 Jan 2020 14:44:31 GMT expires: - '-1' pragma: @@ -17352,8 +17023,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17364,12 +17035,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17383,11 +17054,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17399,11 +17070,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:06 GMT + - Mon, 06 Jan 2020 14:44:34 GMT expires: - '-1' pragma: @@ -17436,8 +17107,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17448,12 +17119,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17467,11 +17138,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17483,11 +17154,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:06 GMT + - Mon, 06 Jan 2020 14:44:37 GMT expires: - '-1' pragma: @@ -17520,8 +17191,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17532,12 +17203,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17551,11 +17222,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17567,11 +17238,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:06 GMT + - Mon, 06 Jan 2020 14:44:40 GMT expires: - '-1' pragma: @@ -17604,8 +17275,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17616,12 +17287,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17635,11 +17306,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17651,11 +17322,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:07 GMT + - Mon, 06 Jan 2020 14:44:43 GMT expires: - '-1' pragma: @@ -17688,8 +17359,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17700,12 +17371,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17719,11 +17390,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17735,11 +17406,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:08 GMT + - Mon, 06 Jan 2020 14:44:46 GMT expires: - '-1' pragma: @@ -17772,8 +17443,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17784,12 +17455,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17803,11 +17474,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17819,11 +17490,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:08 GMT + - Mon, 06 Jan 2020 14:44:49 GMT expires: - '-1' pragma: @@ -17856,8 +17527,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17868,12 +17539,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17887,11 +17558,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17903,11 +17574,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:09 GMT + - Mon, 06 Jan 2020 14:44:52 GMT expires: - '-1' pragma: @@ -17940,8 +17611,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -17952,12 +17623,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17971,11 +17642,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17987,11 +17658,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:09 GMT + - Mon, 06 Jan 2020 14:44:54 GMT expires: - '-1' pragma: @@ -18024,8 +17695,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18036,12 +17707,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18055,11 +17726,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18071,11 +17742,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:10 GMT + - Mon, 06 Jan 2020 14:44:58 GMT expires: - '-1' pragma: @@ -18108,8 +17779,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18120,12 +17791,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18139,11 +17810,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18155,11 +17826,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:11 GMT + - Mon, 06 Jan 2020 14:45:01 GMT expires: - '-1' pragma: @@ -18192,8 +17863,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18204,12 +17875,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18223,11 +17894,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18239,11 +17910,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:12 GMT + - Mon, 06 Jan 2020 14:45:04 GMT expires: - '-1' pragma: @@ -18276,8 +17947,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18288,12 +17959,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18307,11 +17978,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18323,11 +17994,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:12 GMT + - Mon, 06 Jan 2020 14:45:08 GMT expires: - '-1' pragma: @@ -18360,8 +18031,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18372,12 +18043,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18391,11 +18062,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18407,11 +18078,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:12 GMT + - Mon, 06 Jan 2020 14:45:12 GMT expires: - '-1' pragma: @@ -18444,8 +18115,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18456,12 +18127,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18475,11 +18146,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18491,11 +18162,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:14 GMT + - Mon, 06 Jan 2020 14:45:15 GMT expires: - '-1' pragma: @@ -18528,8 +18199,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18540,12 +18211,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18559,11 +18230,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18575,11 +18246,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:13 GMT + - Mon, 06 Jan 2020 14:45:18 GMT expires: - '-1' pragma: @@ -18612,8 +18283,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18624,12 +18295,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18643,11 +18314,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18659,11 +18330,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:14 GMT + - Mon, 06 Jan 2020 14:45:21 GMT expires: - '-1' pragma: @@ -18696,8 +18367,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18708,12 +18379,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18727,11 +18398,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18743,11 +18414,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:15 GMT + - Mon, 06 Jan 2020 14:45:24 GMT expires: - '-1' pragma: @@ -18780,8 +18451,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18792,12 +18463,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18811,11 +18482,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18827,11 +18498,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:15 GMT + - Mon, 06 Jan 2020 14:45:27 GMT expires: - '-1' pragma: @@ -18864,8 +18535,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18876,12 +18547,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18895,11 +18566,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18911,11 +18582,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:16 GMT + - Mon, 06 Jan 2020 14:45:30 GMT expires: - '-1' pragma: @@ -18948,8 +18619,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -18960,12 +18631,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18979,11 +18650,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18995,11 +18666,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:17 GMT + - Mon, 06 Jan 2020 14:45:34 GMT expires: - '-1' pragma: @@ -19032,8 +18703,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19044,12 +18715,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19063,11 +18734,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19079,11 +18750,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:17 GMT + - Mon, 06 Jan 2020 14:45:38 GMT expires: - '-1' pragma: @@ -19116,8 +18787,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19128,12 +18799,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19147,11 +18818,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19163,11 +18834,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:18 GMT + - Mon, 06 Jan 2020 14:45:41 GMT expires: - '-1' pragma: @@ -19200,8 +18871,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19212,12 +18883,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19231,11 +18902,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19247,11 +18918,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:18 GMT + - Mon, 06 Jan 2020 14:45:44 GMT expires: - '-1' pragma: @@ -19284,8 +18955,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19296,12 +18967,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19315,11 +18986,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19331,11 +19002,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:19 GMT + - Mon, 06 Jan 2020 14:45:47 GMT expires: - '-1' pragma: @@ -19368,8 +19039,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19380,12 +19051,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19399,11 +19070,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19415,11 +19086,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:20 GMT + - Mon, 06 Jan 2020 14:45:51 GMT expires: - '-1' pragma: @@ -19452,8 +19123,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19464,12 +19135,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19483,11 +19154,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19499,11 +19170,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:20 GMT + - Mon, 06 Jan 2020 14:45:55 GMT expires: - '-1' pragma: @@ -19536,8 +19207,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19548,12 +19219,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19567,11 +19238,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19583,11 +19254,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:21 GMT + - Mon, 06 Jan 2020 14:45:59 GMT expires: - '-1' pragma: @@ -19620,8 +19291,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19632,12 +19303,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19651,11 +19322,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19667,11 +19338,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:21 GMT + - Mon, 06 Jan 2020 14:46:02 GMT expires: - '-1' pragma: @@ -19704,8 +19375,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19716,12 +19387,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19735,11 +19406,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19751,11 +19422,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:22 GMT + - Mon, 06 Jan 2020 14:46:04 GMT expires: - '-1' pragma: @@ -19788,8 +19459,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19800,12 +19471,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19819,11 +19490,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19835,11 +19506,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:22 GMT + - Mon, 06 Jan 2020 14:46:08 GMT expires: - '-1' pragma: @@ -19872,8 +19543,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19884,12 +19555,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19903,11 +19574,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19919,11 +19590,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:23 GMT + - Mon, 06 Jan 2020 14:46:12 GMT expires: - '-1' pragma: @@ -19956,8 +19627,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -19968,12 +19639,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19987,11 +19658,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20003,11 +19674,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:24 GMT + - Mon, 06 Jan 2020 14:46:15 GMT expires: - '-1' pragma: @@ -20040,8 +19711,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20052,12 +19723,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20071,11 +19742,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20087,11 +19758,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:24 GMT + - Mon, 06 Jan 2020 14:46:18 GMT expires: - '-1' pragma: @@ -20124,8 +19795,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20136,12 +19807,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20155,11 +19826,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20171,11 +19842,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:25 GMT + - Mon, 06 Jan 2020 14:46:22 GMT expires: - '-1' pragma: @@ -20208,8 +19879,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20220,12 +19891,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20239,11 +19910,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20255,11 +19926,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:25 GMT + - Mon, 06 Jan 2020 14:46:26 GMT expires: - '-1' pragma: @@ -20292,8 +19963,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20304,12 +19975,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20323,11 +19994,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20339,11 +20010,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:26 GMT + - Mon, 06 Jan 2020 14:46:28 GMT expires: - '-1' pragma: @@ -20376,8 +20047,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20388,12 +20059,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20407,11 +20078,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20423,11 +20094,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:27 GMT + - Mon, 06 Jan 2020 14:46:32 GMT expires: - '-1' pragma: @@ -20460,8 +20131,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20472,12 +20143,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20491,11 +20162,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20507,11 +20178,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:27 GMT + - Mon, 06 Jan 2020 14:46:35 GMT expires: - '-1' pragma: @@ -20544,8 +20215,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20556,12 +20227,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20575,11 +20246,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20591,11 +20262,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:27 GMT + - Mon, 06 Jan 2020 14:46:38 GMT expires: - '-1' pragma: @@ -20628,8 +20299,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20640,12 +20311,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20659,11 +20330,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20675,11 +20346,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:28 GMT + - Mon, 06 Jan 2020 14:46:41 GMT expires: - '-1' pragma: @@ -20712,8 +20383,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20724,12 +20395,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20743,11 +20414,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20759,11 +20430,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:29 GMT + - Mon, 06 Jan 2020 14:46:45 GMT expires: - '-1' pragma: @@ -20796,8 +20467,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20808,12 +20479,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20827,11 +20498,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20843,11 +20514,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:29 GMT + - Mon, 06 Jan 2020 14:46:47 GMT expires: - '-1' pragma: @@ -20880,8 +20551,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20892,12 +20563,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20911,11 +20582,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20927,11 +20598,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:30 GMT + - Mon, 06 Jan 2020 14:46:50 GMT expires: - '-1' pragma: @@ -20964,8 +20635,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -20976,12 +20647,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20995,11 +20666,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21011,11 +20682,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:31 GMT + - Mon, 06 Jan 2020 14:46:53 GMT expires: - '-1' pragma: @@ -21048,8 +20719,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21060,12 +20731,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21079,11 +20750,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21095,11 +20766,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:31 GMT + - Mon, 06 Jan 2020 14:46:57 GMT expires: - '-1' pragma: @@ -21132,8 +20803,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21144,12 +20815,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21163,11 +20834,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21179,11 +20850,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:32 GMT + - Mon, 06 Jan 2020 14:47:01 GMT expires: - '-1' pragma: @@ -21216,8 +20887,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21228,12 +20899,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21247,11 +20918,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21263,11 +20934,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:33 GMT + - Mon, 06 Jan 2020 14:47:05 GMT expires: - '-1' pragma: @@ -21300,8 +20971,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21312,12 +20983,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21331,11 +21002,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21347,11 +21018,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:33 GMT + - Mon, 06 Jan 2020 14:47:07 GMT expires: - '-1' pragma: @@ -21384,8 +21055,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21396,12 +21067,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21415,11 +21086,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21431,11 +21102,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:33 GMT + - Mon, 06 Jan 2020 14:47:12 GMT expires: - '-1' pragma: @@ -21468,8 +21139,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21480,12 +21151,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21499,11 +21170,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21515,11 +21186,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:34 GMT + - Mon, 06 Jan 2020 14:47:15 GMT expires: - '-1' pragma: @@ -21552,8 +21223,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21564,12 +21235,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21583,11 +21254,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21599,11 +21270,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:35 GMT + - Mon, 06 Jan 2020 14:47:18 GMT expires: - '-1' pragma: @@ -21636,8 +21307,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21648,12 +21319,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21667,11 +21338,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21683,11 +21354,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:35 GMT + - Mon, 06 Jan 2020 14:47:22 GMT expires: - '-1' pragma: @@ -21720,8 +21391,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21732,12 +21403,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21751,11 +21422,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21767,11 +21438,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:36 GMT + - Mon, 06 Jan 2020 14:47:25 GMT expires: - '-1' pragma: @@ -21804,8 +21475,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21816,12 +21487,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21835,11 +21506,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21851,11 +21522,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:37 GMT + - Mon, 06 Jan 2020 14:47:29 GMT expires: - '-1' pragma: @@ -21888,8 +21559,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21900,12 +21571,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21919,11 +21590,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21935,11 +21606,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:37 GMT + - Mon, 06 Jan 2020 14:47:32 GMT expires: - '-1' pragma: @@ -21972,8 +21643,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -21984,12 +21655,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22003,11 +21674,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22019,11 +21690,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:38 GMT + - Mon, 06 Jan 2020 14:47:35 GMT expires: - '-1' pragma: @@ -22056,8 +21727,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22068,12 +21739,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22087,11 +21758,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22103,11 +21774,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:38 GMT + - Mon, 06 Jan 2020 14:47:39 GMT expires: - '-1' pragma: @@ -22140,8 +21811,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22152,12 +21823,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22171,11 +21842,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22187,11 +21858,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:39 GMT + - Mon, 06 Jan 2020 14:47:43 GMT expires: - '-1' pragma: @@ -22224,8 +21895,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22236,12 +21907,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22255,11 +21926,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22271,11 +21942,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:40 GMT + - Mon, 06 Jan 2020 14:47:48 GMT expires: - '-1' pragma: @@ -22308,8 +21979,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22320,12 +21991,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22339,11 +22010,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22355,11 +22026,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:41 GMT + - Mon, 06 Jan 2020 14:47:51 GMT expires: - '-1' pragma: @@ -22392,8 +22063,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22404,12 +22075,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22423,11 +22094,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22439,11 +22110,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:41 GMT + - Mon, 06 Jan 2020 14:47:53 GMT expires: - '-1' pragma: @@ -22476,8 +22147,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22488,12 +22159,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22507,11 +22178,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22523,11 +22194,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:42 GMT + - Mon, 06 Jan 2020 14:47:57 GMT expires: - '-1' pragma: @@ -22560,8 +22231,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22572,12 +22243,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22591,11 +22262,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22607,11 +22278,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:42 GMT + - Mon, 06 Jan 2020 14:48:01 GMT expires: - '-1' pragma: @@ -22644,8 +22315,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22656,12 +22327,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22675,11 +22346,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22691,11 +22362,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:43 GMT + - Mon, 06 Jan 2020 14:48:04 GMT expires: - '-1' pragma: @@ -22728,8 +22399,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22740,12 +22411,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22759,11 +22430,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22775,11 +22446,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:43 GMT + - Mon, 06 Jan 2020 14:48:08 GMT expires: - '-1' pragma: @@ -22812,8 +22483,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22824,12 +22495,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22843,11 +22514,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22859,11 +22530,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:44 GMT + - Mon, 06 Jan 2020 14:48:11 GMT expires: - '-1' pragma: @@ -22896,8 +22567,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22908,12 +22579,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22927,11 +22598,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22943,11 +22614,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:45 GMT + - Mon, 06 Jan 2020 14:48:15 GMT expires: - '-1' pragma: @@ -22980,8 +22651,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -22992,12 +22663,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23011,11 +22682,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23027,11 +22698,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:45 GMT + - Mon, 06 Jan 2020 14:48:18 GMT expires: - '-1' pragma: @@ -23064,8 +22735,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23076,12 +22747,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23095,11 +22766,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23111,11 +22782,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:46 GMT + - Mon, 06 Jan 2020 14:48:21 GMT expires: - '-1' pragma: @@ -23148,8 +22819,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23160,12 +22831,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23179,11 +22850,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23195,11 +22866,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:46 GMT + - Mon, 06 Jan 2020 14:48:26 GMT expires: - '-1' pragma: @@ -23232,8 +22903,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23244,12 +22915,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23263,11 +22934,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23279,11 +22950,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:47 GMT + - Mon, 06 Jan 2020 14:48:30 GMT expires: - '-1' pragma: @@ -23316,8 +22987,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23328,12 +22999,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23347,11 +23018,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23363,11 +23034,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:48 GMT + - Mon, 06 Jan 2020 14:48:33 GMT expires: - '-1' pragma: @@ -23400,8 +23071,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23412,12 +23083,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23431,11 +23102,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23447,11 +23118,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:48 GMT + - Mon, 06 Jan 2020 14:48:36 GMT expires: - '-1' pragma: @@ -23484,8 +23155,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23496,12 +23167,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23515,11 +23186,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23531,11 +23202,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:50 GMT + - Mon, 06 Jan 2020 14:48:39 GMT expires: - '-1' pragma: @@ -23568,8 +23239,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23580,12 +23251,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23599,11 +23270,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23615,11 +23286,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:49 GMT + - Mon, 06 Jan 2020 14:48:43 GMT expires: - '-1' pragma: @@ -23652,8 +23323,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23664,12 +23335,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23683,11 +23354,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23699,11 +23370,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:50 GMT + - Mon, 06 Jan 2020 14:48:46 GMT expires: - '-1' pragma: @@ -23736,8 +23407,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23748,12 +23419,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23767,11 +23438,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23783,11 +23454,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:51 GMT + - Mon, 06 Jan 2020 14:48:50 GMT expires: - '-1' pragma: @@ -23820,8 +23491,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23832,12 +23503,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23851,11 +23522,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23867,11 +23538,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:51 GMT + - Mon, 06 Jan 2020 14:48:54 GMT expires: - '-1' pragma: @@ -23904,8 +23575,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -23916,12 +23587,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23935,11 +23606,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23951,11 +23622,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:52 GMT + - Mon, 06 Jan 2020 14:48:58 GMT expires: - '-1' pragma: @@ -23988,8 +23659,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24000,12 +23671,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24019,11 +23690,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24035,11 +23706,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:52 GMT + - Mon, 06 Jan 2020 14:49:02 GMT expires: - '-1' pragma: @@ -24072,8 +23743,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24084,12 +23755,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24103,11 +23774,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24119,11 +23790,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:53 GMT + - Mon, 06 Jan 2020 14:49:06 GMT expires: - '-1' pragma: @@ -24156,8 +23827,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24168,12 +23839,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24187,11 +23858,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24203,11 +23874,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:54 GMT + - Mon, 06 Jan 2020 14:49:09 GMT expires: - '-1' pragma: @@ -24240,8 +23911,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24252,12 +23923,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24271,11 +23942,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24287,11 +23958,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:54 GMT + - Mon, 06 Jan 2020 14:49:13 GMT expires: - '-1' pragma: @@ -24324,8 +23995,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24336,12 +24007,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24355,11 +24026,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24371,11 +24042,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:55 GMT + - Mon, 06 Jan 2020 14:49:16 GMT expires: - '-1' pragma: @@ -24408,8 +24079,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24420,12 +24091,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24439,11 +24110,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24455,11 +24126,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:56 GMT + - Mon, 06 Jan 2020 14:49:19 GMT expires: - '-1' pragma: @@ -24492,8 +24163,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24504,12 +24175,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24523,11 +24194,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24539,11 +24210,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:56 GMT + - Mon, 06 Jan 2020 14:49:23 GMT expires: - '-1' pragma: @@ -24576,8 +24247,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24588,12 +24259,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24607,11 +24278,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24623,11 +24294,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:57 GMT + - Mon, 06 Jan 2020 14:49:28 GMT expires: - '-1' pragma: @@ -24660,8 +24331,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24672,12 +24343,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24691,11 +24362,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24707,11 +24378,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:57 GMT + - Mon, 06 Jan 2020 14:49:32 GMT expires: - '-1' pragma: @@ -24744,8 +24415,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24756,12 +24427,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24775,11 +24446,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24791,11 +24462,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:58 GMT + - Mon, 06 Jan 2020 14:49:35 GMT expires: - '-1' pragma: @@ -24828,8 +24499,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24840,12 +24511,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24859,11 +24530,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24875,11 +24546,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:59 GMT + - Mon, 06 Jan 2020 14:49:39 GMT expires: - '-1' pragma: @@ -24912,8 +24583,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -24924,12 +24595,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24943,11 +24614,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24959,11 +24630,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 00:59:59 GMT + - Mon, 06 Jan 2020 14:49:43 GMT expires: - '-1' pragma: @@ -24996,8 +24667,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25008,12 +24679,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25027,11 +24698,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25043,11 +24714,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:00 GMT + - Mon, 06 Jan 2020 14:49:46 GMT expires: - '-1' pragma: @@ -25080,8 +24751,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25092,12 +24763,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25111,11 +24782,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25127,11 +24798,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:01 GMT + - Mon, 06 Jan 2020 14:49:50 GMT expires: - '-1' pragma: @@ -25164,8 +24835,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25176,12 +24847,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25195,11 +24866,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25211,11 +24882,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:02 GMT + - Mon, 06 Jan 2020 14:49:54 GMT expires: - '-1' pragma: @@ -25248,8 +24919,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25260,12 +24931,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25279,11 +24950,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25295,11 +24966,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:03 GMT + - Mon, 06 Jan 2020 14:49:58 GMT expires: - '-1' pragma: @@ -25332,8 +25003,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25344,12 +25015,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25363,11 +25034,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25379,11 +25050,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:03 GMT + - Mon, 06 Jan 2020 14:50:02 GMT expires: - '-1' pragma: @@ -25416,8 +25087,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25428,12 +25099,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25447,11 +25118,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25463,11 +25134,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:03 GMT + - Mon, 06 Jan 2020 14:50:05 GMT expires: - '-1' pragma: @@ -25500,8 +25171,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25512,12 +25183,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25531,11 +25202,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25547,11 +25218,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:04 GMT + - Mon, 06 Jan 2020 14:50:09 GMT expires: - '-1' pragma: @@ -25584,8 +25255,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25596,12 +25267,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25615,11 +25286,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25631,11 +25302,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:05 GMT + - Mon, 06 Jan 2020 14:50:14 GMT expires: - '-1' pragma: @@ -25668,8 +25339,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25680,12 +25351,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25699,11 +25370,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25715,11 +25386,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:05 GMT + - Mon, 06 Jan 2020 14:50:17 GMT expires: - '-1' pragma: @@ -25752,8 +25423,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25764,12 +25435,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25783,11 +25454,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25799,11 +25470,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:07 GMT + - Mon, 06 Jan 2020 14:50:21 GMT expires: - '-1' pragma: @@ -25836,8 +25507,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25848,12 +25519,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25867,11 +25538,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25883,11 +25554,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:06 GMT + - Mon, 06 Jan 2020 14:50:25 GMT expires: - '-1' pragma: @@ -25920,8 +25591,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -25932,12 +25603,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25951,11 +25622,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25967,11 +25638,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:08 GMT + - Mon, 06 Jan 2020 14:50:28 GMT expires: - '-1' pragma: @@ -26004,8 +25675,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26016,12 +25687,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26035,11 +25706,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26051,11 +25722,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:08 GMT + - Mon, 06 Jan 2020 14:50:31 GMT expires: - '-1' pragma: @@ -26088,8 +25759,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26100,12 +25771,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26119,11 +25790,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26135,11 +25806,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:09 GMT + - Mon, 06 Jan 2020 14:50:35 GMT expires: - '-1' pragma: @@ -26172,8 +25843,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26184,12 +25855,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26203,11 +25874,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26219,11 +25890,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:10 GMT + - Mon, 06 Jan 2020 14:50:39 GMT expires: - '-1' pragma: @@ -26256,8 +25927,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26268,12 +25939,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26287,11 +25958,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26303,11 +25974,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:10 GMT + - Mon, 06 Jan 2020 14:50:43 GMT expires: - '-1' pragma: @@ -26340,8 +26011,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26352,12 +26023,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26371,11 +26042,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26387,11 +26058,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:11 GMT + - Mon, 06 Jan 2020 14:50:47 GMT expires: - '-1' pragma: @@ -26424,8 +26095,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26436,12 +26107,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26455,11 +26126,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26471,11 +26142,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:11 GMT + - Mon, 06 Jan 2020 14:50:51 GMT expires: - '-1' pragma: @@ -26508,8 +26179,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26520,12 +26191,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26539,11 +26210,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26555,11 +26226,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:12 GMT + - Mon, 06 Jan 2020 14:50:55 GMT expires: - '-1' pragma: @@ -26592,8 +26263,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26604,12 +26275,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26623,11 +26294,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26639,11 +26310,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:13 GMT + - Mon, 06 Jan 2020 14:51:00 GMT expires: - '-1' pragma: @@ -26676,8 +26347,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26688,12 +26359,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26707,11 +26378,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26723,11 +26394,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:13 GMT + - Mon, 06 Jan 2020 14:51:05 GMT expires: - '-1' pragma: @@ -26760,8 +26431,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26772,12 +26443,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26791,11 +26462,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26807,11 +26478,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:15 GMT + - Mon, 06 Jan 2020 14:51:08 GMT expires: - '-1' pragma: @@ -26844,8 +26515,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26856,12 +26527,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26875,11 +26546,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26891,11 +26562,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2732' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:15 GMT + - Mon, 06 Jan 2020 14:51:27 GMT expires: - '-1' pragma: @@ -26922,14 +26593,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -26940,12 +26612,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26959,11 +26631,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26975,11 +26647,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2732' content-type: - application/json date: - - Thu, 12 Dec 2019 01:00:15 GMT + - Mon, 06 Jan 2020 14:51:31 GMT expires: - '-1' pragma: @@ -27006,75 +26678,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:30:09Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2736' + - '428' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:16 GMT + - Mon, 06 Jan 2020 14:51:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -27090,64 +26724,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"VNet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet\",\r\n + \ \"etag\": \"W/\\\"6d42c0f5-ac8e-4d74-878c-26cf871a6fa1\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": + \"sfrp-cli-000004\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"f3c60fa0-e08e-45fe-84a1-8e50a6daa20f\",\r\n + \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n + \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": + \"Subnet-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n + \ \"etag\": \"W/\\\"6d42c0f5-ac8e-4d74-878c-26cf871a6fa1\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ }\r\n ],\r\n \"delegations\": [],\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2736' + - '2701' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:17 GMT + - Mon, 06 Jan 2020 14:51:36 GMT expires: - '-1' pragma: @@ -27163,6 +26784,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - d2a39258-79d4-44dd-99b0-fd16238736ec status: code: 200 message: OK @@ -27174,64 +26797,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Subnet-0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n + \ \"etag\": \"W/\\\"6d42c0f5-ac8e-4d74-878c-26cf871a6fa1\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": + \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2736' + - '1648' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:17 GMT + - Mon, 06 Jan 2020 14:51:38 GMT expires: - '-1' pragma: @@ -27247,75 +26848,55 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 6c7b96e6-2d9f-4c6f-9c53-cefc53f40d3f status: code: 200 message: OK - request: - body: null + body: '{"properties": {"addressPrefix": "10.0.1.0/24"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '48' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n + \ \"etag\": \"W/\\\"7fdbbbec-7b4c-4bc9-9b34-a3ea7b130fb1\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a3df8893-9274-4ee9-94ec-5a86192d454b?api-version=2019-09-01 cache-control: - no-cache content-length: - - '2736' + - '586' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:18 GMT + - Mon, 06 Jan 2020 14:51:39 GMT expires: - '-1' pragma: @@ -27325,15 +26906,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 57550021-7f7f-4fe7-879e-1511d0487f5f + x-ms-ratelimit-remaining-subscription-writes: + - '1192' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -27342,64 +26923,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a3df8893-9274-4ee9-94ec-5a86192d454b?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '2736' + - '29' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:19 GMT + - Mon, 06 Jan 2020 14:51:44 GMT expires: - '-1' pragma: @@ -27415,6 +26961,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - e667921d-5998-42ae-90af-b9fcbc598071 status: code: 200 message: OK @@ -27426,64 +26974,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n + \ \"etag\": \"W/\\\"8d793831-ddd4-44fe-a794-6dd39596ac86\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache content-length: - - '2736' + - '587' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:20 GMT + - Mon, 06 Jan 2020 14:51:45 GMT + etag: + - W/"8d793831-ddd4-44fe-a794-6dd39596ac86" expires: - '-1' pragma: @@ -27499,75 +27019,59 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 1ebbbcd9-3741-47b9-9845-ca269d9998b2 status: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic", + "dnsSettings": {"domainNameLabel": "sfrp-cli-000004-nt21"}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"58e6e49d-6b99-4224-b157-a22cf448e54b\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"31bed2c7-fc05-4031-97e1-0ec85bc1e338\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n + \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n + \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a0544591-5d06-4bb0-a3f3-01389e268fdd?api-version=2019-09-01 cache-control: - no-cache content-length: - - '2736' + - '878' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:20 GMT + - Mon, 06 Jan 2020 14:51:52 GMT expires: - '-1' pragma: @@ -27577,15 +27081,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - c8d00e98-4b92-4efc-a78d-c40efcf4d124 + x-ms-ratelimit-remaining-subscription-writes: + - '1191' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -27594,64 +27098,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a0544591-5d06-4bb0-a3f3-01389e268fdd?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '2736' + - '29' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:21 GMT + - Mon, 06 Jan 2020 14:51:55 GMT expires: - '-1' pragma: @@ -27667,6 +27136,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - a9cf9e4c-261f-4dd6-8c5b-843416a73a73 status: code: 200 message: OK @@ -27678,64 +27149,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"eaf7b2c0-1113-4145-8d93-10cd1492aad2\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"31bed2c7-fc05-4031-97e1-0ec85bc1e338\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n + \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n + \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2736' + - '879' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:00:21 GMT + - Mon, 06 Jan 2020 14:51:56 GMT + etag: + - W/"eaf7b2c0-1113-4145-8d93-10cd1492aad2" expires: - '-1' pragma: @@ -27751,58214 +27197,148 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 6b5a05b6-13d7-485a-8a0c-607a5b114770 status: code: 200 message: OK - request: - body: null + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1", + "location": "westus", "properties": {"frontendIPConfigurations": [{"properties": + {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21"}}, + "name": "LoadBalancerIPConfig"}], "backendAddressPools": [{"name": "LoadBalancerBEAddressPool"}], + "loadBalancingRules": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe"}, + "protocol": "tcp", "frontendPort": 19000, "backendPort": 19000, "idleTimeoutInMinutes": + 5, "enableFloatingIP": false}, "name": "LBRule"}, {"properties": {"frontendIPConfiguration": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe"}, + "protocol": "tcp", "frontendPort": 19080, "backendPort": 19080, "idleTimeoutInMinutes": + 5, "enableFloatingIP": false}, "name": "LBHttpRule"}], "probes": [{"properties": + {"protocol": "tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": + 2}, "name": "FabricGatewayProbe"}, {"properties": {"protocol": "tcp", "port": + 19080, "intervalInSeconds": 5, "numberOfProbes": 2}, "name": "FabricHttpGatewayProbe"}], + "inboundNatPools": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "protocol": "tcp", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, + "backendPort": 3389}, "name": "LoadBalancerBEAddressNatPool"}]}}''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster node-type add Connection: - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:00:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:01:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:02:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2736' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:03:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:04:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:05:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:06:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:07:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:08:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:09:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:10:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2742' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2732' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n - \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2732' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:11:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"VNet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet\",\r\n - \ \"etag\": \"W/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": - \"sfrp-cli-000004\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"7bf0ba8d-6e0f-4b8a-8f9e-59306f9ab709\",\r\n - \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n - \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": - \"Subnet-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n - \ \"etag\": \"W/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n - \ },\r\n \"ipConfigurations\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ }\r\n ],\r\n \"delegations\": [],\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2940' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3f9bb422-f42a-4838-9787-4fa3b7d6846d - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets?api-version=2019-09-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Subnet-0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n - \ \"etag\": \"W/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": - \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n - \ },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1869' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - e260edd0-4e0b-43ec-be7c-9a09b088c010 - status: - code: 200 - message: OK -- request: - body: '{"properties": {"addressPrefix": "10.0.1.0/24"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '48' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n - \ \"etag\": \"W/\\\"42501193-bece-48f9-9da5-f3b73e5e097e\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7de0682d-8f1a-4f7c-b6a1-dbc12e55c303?api-version=2019-09-01 - cache-control: - - no-cache - content-length: - - '586' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 332f7b15-a479-4d75-9087-925441897a53 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7de0682d-8f1a-4f7c-b6a1-dbc12e55c303?api-version=2019-09-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - eb7573e4-6161-40ea-a0ac-a0991107bd97 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n - \ \"etag\": \"W/\\\"126e10f3-0c86-423a-81ba-b083874d78b1\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:17 GMT - etag: - - W/"126e10f3-0c86-423a-81ba-b083874d78b1" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5a71e024-93b9-4f91-a4b1-7a3bc0283e76 - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic", - "dnsSettings": {"domainNameLabel": "sfrp-cli-000004-nt21"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '146' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n - \ \"etag\": \"W/\\\"dd7ad4ba-265a-4f01-b382-572636dbe379\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"60489557-d4f5-437c-a806-98c7082b84b0\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n - \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n - \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c95d6e1-e6ba-4a7b-8014-314b75b898f7?api-version=2019-09-01 - cache-control: - - no-cache - content-length: - - '878' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 832051ee-daae-4577-8483-64d5d833a91a - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c95d6e1-e6ba-4a7b-8014-314b75b898f7?api-version=2019-09-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - bbd545e2-bae9-4d59-b3b5-45b2c05a0ef3 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n - \ \"etag\": \"W/\\\"899a601e-edc6-44c5-bc01-417a8854f73d\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"60489557-d4f5-437c-a806-98c7082b84b0\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n - \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n - \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '879' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:22 GMT - etag: - - W/"899a601e-edc6-44c5-bc01-417a8854f73d" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 0bfd16b3-854c-4346-9bab-3f7b92812c8c - status: - code: 200 - message: OK -- request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1", - "location": "westus", "properties": {"frontendIPConfigurations": [{"properties": - {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21"}}, - "name": "LoadBalancerIPConfig"}], "backendAddressPools": [{"name": "LoadBalancerBEAddressPool"}], - "loadBalancingRules": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe"}, - "protocol": "tcp", "frontendPort": 19000, "backendPort": 19000, "idleTimeoutInMinutes": - 5, "enableFloatingIP": false}, "name": "LBRule"}, {"properties": {"frontendIPConfiguration": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe"}, - "protocol": "tcp", "frontendPort": 19080, "backendPort": 19080, "idleTimeoutInMinutes": - 5, "enableFloatingIP": false}, "name": "LBHttpRule"}], "probes": [{"properties": - {"protocol": "tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": - 2}, "name": "FabricGatewayProbe"}, {"properties": {"protocol": "tcp", "port": - 19080, "intervalInSeconds": 5, "numberOfProbes": 2}, "name": "FabricHttpGatewayProbe"}], - "inboundNatPools": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "protocol": "tcp", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, - "backendPort": 3389}, "name": "LoadBalancerBEAddressNatPool"}]}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '3402' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n - \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n - \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n - \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n - \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": - 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n - \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": - 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": - [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": - 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n - \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": - false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": - false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n - \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a809896-afa7-4f2f-8d13-729af2f70541?api-version=2019-09-01 - cache-control: - - no-cache - content-length: - - '10668' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f1244bf7-e42a-4797-a724-3465a5c09c94 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a809896-afa7-4f2f-8d13-729af2f70541?api-version=2019-09-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 43f0d9b0-d7bb-45e1-87a3-3ae6811949ef - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n - \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n - \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n - \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n - \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": - 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n - \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": - 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": - [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": - 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n - \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": - false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": - false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n - \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '10668' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:55 GMT - etag: - - W/"159a812e-f489-46e3-a2bd-c5030b16fb6b" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a76d6a89-3782-4499-bc0d-3de21ee1330d - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n - \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n - \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n - \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n - \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": - 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n - \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": - 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": - [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": - 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n - \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": - false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": - false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n - \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '10668' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:55 GMT - etag: - - W/"159a812e-f489-46e3-a2bd-c5030b16fb6b" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5e1dd530-06f4-4875-a9c5-241756059a4c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2019-07-01 - response: - body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n - \ \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n \"sku\": - {\r\n \"name\": \"Standard_D2_V2\",\r\n \"tier\": \"Standard\",\r\n - \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": - true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n - \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"nt1vm\",\r\n \"adminUsername\": - \"adminuser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": - true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n - \ \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d\",\r\n - \ \"certificateStore\": \"My\"\r\n }\r\n - \ ]\r\n }\r\n ]\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n - \ },\r\n \"imageReference\": {\r\n \"publisher\": - \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n - \ \"sku\": \"2016-Datacenter\",\r\n \"version\": - \"latest\"\r\n }\r\n },\r\n \"networkProfile\": - {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n - \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n - \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": - false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n - \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": - \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n - \ }\r\n },\r\n {\r\n \"name\": - \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": - {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": - \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n - \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": - {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"xjb4dma6imrnu3\"}\r\n - \ }\r\n },\r\n {\r\n \"name\": - \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": - {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": - true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n - \ \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": - \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n - \ ]\r\n }\r\n },\r\n \"provisioningState\": - \"Updating\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"6dd7c248-fc98-49c2-be5b-126efdb55cf2\"\r\n - \ }\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '5968' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;895 - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:11:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/93fc777d-5d7f-4bc5-ae1e-fdb1581639b2?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/93fc777d-5d7f-4bc5-ae1e-fdb1581639b2?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1","name":"sfrpcliijc3wu2qrg3wwx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:11:59.2106231Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx1.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx1.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:12:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1?api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1","name":"sfrpcliijc3wu2qrg3wwx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:11:59.2106231Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx1.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx1.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:12:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:12:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:12:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/996e6ce1-6a47-41d7-beba-5d352d16f165?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/996e6ce1-6a47-41d7-beba-5d352d16f165?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2","name":"sfrpcliijc3wu2qrg3wwx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:21.3367288Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx2.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx2.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:12:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2?api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2","name":"sfrpcliijc3wu2qrg3wwx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:21.3367288Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx2.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx2.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:12:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:12:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:12:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c2b9ef56-944e-4990-bb15-0dfeb166d809?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c2b9ef56-944e-4990-bb15-0dfeb166d809?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3","name":"sfrpcliijc3wu2qrg3wwx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:43.4776402Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx3.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx3.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3?api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3","name":"sfrpcliijc3wu2qrg3wwx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:43.4776402Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx3.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx3.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:13:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/a13f8a59-3d09-4495-a4cf-03e83e15a86b?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/a13f8a59-3d09-4495-a4cf-03e83e15a86b?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4","name":"sfrpcliijc3wu2qrg3wwx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:05.5568960Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx4.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx4.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4?api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4","name":"sfrpcliijc3wu2qrg3wwx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:05.5568960Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx4.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx4.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:13:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/52b7e4a1-0280-418d-9bd5-69534114a0ab?monitor=true&api-version=2019-04-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/52b7e4a1-0280-418d-9bd5-69534114a0ab?monitor=true&api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5","name":"sfrpcliijc3wu2qrg3wwx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:27.6550438Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx5.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx5.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5?api-version=2019-04-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5","name":"sfrpcliijc3wu2qrg3wwx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:27.6550438Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx5.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx5.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - 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 - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - 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 - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:13:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: 'b''{"location": "westus", "sku": {"name": "Standard_D15_v2", "tier": "Standard", - "capacity": 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": - {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": "admintest", "adminPassword": - "Pass@000005", "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d", - "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": - "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", - "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", - "createOption": "FromImage", "vhdContainers": ["https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd", - "https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd", "https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd", - "https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd", "https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd"]}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", - "properties": {"primary": true, "ipConfigurations": [{"name": "Nic-nt2", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1"}, - "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, - "extensionProfile": {"extensions": [{"name": "ServiceFabricNodeVmExt_vmNodeType0Name", - "properties": {"publisher": "Microsoft.Azure.ServiceFabric", "type": "ServiceFabricNode", - "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": false, "settings": {"clusterEndpoint": - "https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d", - "nodeTypeRef": "nt2", "dataPath": "D:\\\\\\\\SvcFab", "durabilityLevel": "Gold", - "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "A6D42B59D36EB86B6C2E0030165727B007B6DEC0", - "x509StoreName": "My"}}, "protectedSettings": {"StorageAccountKey1": "veryFakedStorageAccountKey==", - "StorageAccountKey2": "veryFakedStorageAccountKey=="}}}, {"name": "VMDiagnosticsVmExt_vmNodeType0Name", - "properties": {"publisher": "Microsoft.Azure.Diagnostics", "type": "IaaSDiagnostics", - "typeHandlerVersion": "1.5", "autoUpgradeMinorVersion": true, "settings": {"WadCfg": - {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": "50000", "EtwProviders": - {"EtwEventSourceProviderConfiguration": [{"provider": "Microsoft-ServiceFabric-Actors", - "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": "PT5M", "DefaultEvents": - {"eventDestination": "ServiceFabricReliableActorEventTable"}}, {"provider": - "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": "PT5M", "DefaultEvents": - {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], "EtwManifestProviderConfiguration": - [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter": - "Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod": - "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}}, - "StorageAccount": "xjb4dma6imrnu3"}, "protectedSettings": {"storageAccountName": - "xjb4dma6imrnu3", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint": - "https://core.windows.net/"}}}]}}, "overprovision": false}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '4417' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-01 - response: - body: - string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": - \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": - true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"nt2\",\r\n \"adminUsername\": \"admintest\",\r\n \"windowsConfiguration\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d\",\r\n - \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": - {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd\"\r\n - \ ],\r\n \"name\": \"vmssosdisk\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadOnly\"\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": - \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": - \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n - \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n - \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": - {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": - \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n - \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": - {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n - \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": - \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"xjb4dma6imrnu3\"}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": - \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n - \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n - \ }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"4c753048-1018-48a1-84c8-10059537beb8\"\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - cache-control: - - no-cache - content-length: - - '5837' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:13:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;4795 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-ms-request-charge: - - '5' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:14:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29870 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:15:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29883 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:16:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29879 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:16:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29875 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:17:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29872 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:17:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29869 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29865 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"endTime\": - \"2019-12-12T01:18:42.9491683+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:18:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29861 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-01 - response: - body: - string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": - \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": - true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n - \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"nt2\",\r\n \"adminUsername\": \"admintest\",\r\n \"windowsConfiguration\": - {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": - true\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d\",\r\n - \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n - \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": - {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd\"\r\n - \ ],\r\n \"name\": \"vmssosdisk\",\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadOnly\"\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": - \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": - \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n - \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n - \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": - {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": - \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n - \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": - {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n - \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": - \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"xjb4dma6imrnu3\"}\r\n - \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": - true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": - \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n - \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n - \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"4c753048-1018-48a1-84c8-10059537beb8\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '5838' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Dec 2019 01:18:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2585 - status: - code: 200 - message: OK -- request: - body: '{"properties": {"nodeTypes": [{"name": "nt1vm", "clientConnectionEndpointPort": - 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": "Bronze", "applicationPorts": - {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": {"startPort": 49152, - "endPort": 65534}, "isPrimary": true, "vmInstanceCount": 3}, {"name": "nt2", - "clientConnectionEndpointPort": 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": - "Gold", "applicationPorts": {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": - {"startPort": 49152, "endPort": 65534}, "isPrimary": false, "vmInstanceCount": - 5}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '588' - Content-Type: - - application/json; charset=utf-8 + Content-Length: + - '3402' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1?api-version=2019-09-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637117087295410024\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\": - \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n - \ \"clusterState\": \"UpdatingUserConfiguration\",\r\n \"managementEndpoint\": - \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": - [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n - \ ]\r\n }\r\n}" + string: "{\r\n \"name\": \"LB-sfrp-cli-xqprfkdop1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee46174e-d11a-4a2e-bece-254ef092035c\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n + \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview - cache-control: - - no-cache - content-length: - - '2661' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:18:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '353' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:19:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '353' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:20:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '353' - content-type: - - application/json - date: - - Thu, 12 Dec 2019 01:20:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - 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: - - sf cluster node-type add - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84e3adf3-3053-418a-b228-11b4ee93982e?api-version=2019-09-01 cache-control: - no-cache content-length: - - '3309' + - '10668' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:21:20 GMT + - Mon, 06 Jan 2020 14:52:01 GMT expires: - '-1' pragma: @@ -85968,15 +27348,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 8cbfd239-08fb-4c66-b5a3-26bd866f958f + x-ms-ratelimit-remaining-subscription-writes: + - '1190' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -85992,25 +27372,22 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84e3adf3-3053-418a-b228-11b4ee93982e?api-version=2019-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '3309' + - '29' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:21:52 GMT + - Mon, 06 Jan 2020 14:52:34 GMT expires: - '-1' pragma: @@ -86026,6 +27403,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 2a5e0004-1cfe-480e-9387-5a23f75d3c58 status: code: 200 message: OK @@ -86044,25 +27423,103 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1?api-version=2019-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: "{\r\n \"name\": \"LB-sfrp-cli-xqprfkdop1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee46174e-d11a-4a2e-bece-254ef092035c\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n + \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3394' + - '10668' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:22:23 GMT + - Mon, 06 Jan 2020 14:52:35 GMT + etag: + - W/"b7c4a216-c5ac-491b-b60b-2ec67440f5d4" expires: - '-1' pragma: @@ -86078,6 +27535,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 829d0562-41d5-48fa-aa25-f097fc4dddfb status: code: 200 message: OK @@ -86096,25 +27555,105 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1?api-version=2019-09-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: "{\r\n \"name\": \"LB-sfrp-cli-xqprfkdop1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee46174e-d11a-4a2e-bece-254ef092035c\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n + \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3394' + - '10668' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:22:54 GMT + - Mon, 06 Jan 2020 14:52:36 GMT + etag: + - W/"b7c4a216-c5ac-491b-b60b-2ec67440f5d4" expires: - '-1' pragma: @@ -86130,6 +27669,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 286af40a-79ca-488b-b3a1-10ddf2f2b7a9 status: code: 200 message: OK @@ -86148,25 +27689,65 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.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.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2019-07-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n + \ \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n \"sku\": + {\r\n \"name\": \"Standard_D2_V2\",\r\n \"tier\": \"Standard\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n + \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"nt1vm\",\r\n \"adminUsername\": + \"adminuser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": + true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n + \ ]\r\n }\r\n ]\r\n },\r\n + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n + \ \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": + {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": + \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n + \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": + \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n + \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": + {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"2fswaa2omdra63\"}\r\n + \ }\r\n }\r\n ]\r\n }\r\n },\r\n + \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"793d5fc5-8fd0-4db1-bf4a-3e7f3a902ab4\"\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '3305' + - '5558' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:23:25 GMT + - Mon, 06 Jan 2020 14:52:38 GMT expires: - '-1' pragma: @@ -86182,11 +27763,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899 status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' headers: Accept: - application/json @@ -86196,47 +27779,49 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '3305' + - '0' content-type: - - application/json + - text/plain; charset=utf-8 date: - - Thu, 12 Dec 2019 01:23:56 GMT + - Mon, 06 Jan 2020 14:52:43 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/258e5b72-46e3-4a4b-a221-3057d6fd7c4e?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1189' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -86252,32 +27837,28 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/258e5b72-46e3-4a4b-a221-3057d6fd7c4e?monitor=true&api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1","name":"sfrpclixqprfkdopjqfkd1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:52:43.4000405Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd1.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd1.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd1.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3305' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:24:27 GMT + - Mon, 06 Jan 2020 14:53:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86304,32 +27885,30 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1","name":"sfrpclixqprfkdopjqfkd1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:52:43.4000405Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd1.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd1.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd1.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3305' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:24:59 GMT + - Mon, 06 Jan 2020 14:53:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86352,36 +27931,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1/listKeys?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '3311' + - '288' content-type: - application/json date: - - Thu, 12 Dec 2019 01:25:30 GMT + - Mon, 06 Jan 2020 14:53:05 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86390,11 +27969,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' headers: Accept: - application/json @@ -86404,47 +27985,49 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '3311' + - '0' content-type: - - application/json + - text/plain; charset=utf-8 date: - - Thu, 12 Dec 2019 01:26:01 GMT + - Mon, 06 Jan 2020 14:53:11 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8227ba5-a8cf-4b32-8669-13cbbfe1ec42?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -86460,32 +28043,28 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8227ba5-a8cf-4b32-8669-13cbbfe1ec42?monitor=true&api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2","name":"sfrpclixqprfkdopjqfkd2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:11.5895283Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd2.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd2.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd2.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3396' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:26:32 GMT + - Mon, 06 Jan 2020 14:53:31 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86512,32 +28091,30 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2","name":"sfrpclixqprfkdopjqfkd2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:11.5895283Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd2.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd2.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd2.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3396' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:27:04 GMT + - Mon, 06 Jan 2020 14:53:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86560,36 +28137,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2/listKeys?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '3307' + - '288' content-type: - application/json date: - - Thu, 12 Dec 2019 01:27:34 GMT + - Mon, 06 Jan 2020 14:53:33 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86598,11 +28175,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' headers: Accept: - application/json @@ -86612,47 +28191,49 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '3307' + - '0' content-type: - - application/json + - text/plain; charset=utf-8 date: - - Thu, 12 Dec 2019 01:28:05 GMT + - Mon, 06 Jan 2020 14:53:40 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/329b2227-b0f4-4fbc-b677-3b1f75573d5f?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1193' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -86668,32 +28249,28 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/329b2227-b0f4-4fbc-b677-3b1f75573d5f?monitor=true&api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3","name":"sfrpclixqprfkdopjqfkd3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:39.5754699Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd3.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd3.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd3.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3307' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:28:37 GMT + - Mon, 06 Jan 2020 14:53:58 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86720,32 +28297,30 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3","name":"sfrpclixqprfkdopjqfkd3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:39.5754699Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd3.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd3.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd3.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3307' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:29:08 GMT + - Mon, 06 Jan 2020 14:54:00 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86768,36 +28343,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3/listKeys?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '3285' + - '288' content-type: - application/json date: - - Thu, 12 Dec 2019 01:29:39 GMT + - Mon, 06 Jan 2020 14:54:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86806,11 +28381,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' headers: Accept: - application/json @@ -86820,47 +28397,49 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '3285' + - '0' content-type: - - application/json + - text/plain; charset=utf-8 date: - - Thu, 12 Dec 2019 01:30:10 GMT + - Mon, 06 Jan 2020 14:54:08 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/75a961fb-0fe2-4d79-b42f-4f44d31c8732?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -86876,32 +28455,28 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/75a961fb-0fe2-4d79-b42f-4f44d31c8732?monitor=true&api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4","name":"sfrpclixqprfkdopjqfkd4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:08.2383032Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd4.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd4.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd4.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3417' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:30:42 GMT + - Mon, 06 Jan 2020 14:54:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86928,32 +28503,30 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4","name":"sfrpclixqprfkdopjqfkd4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:08.2383032Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd4.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd4.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd4.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3417' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:31:13 GMT + - Mon, 06 Jan 2020 14:54:28 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -86976,36 +28549,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4/listKeys?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '3370' + - '288' content-type: - application/json date: - - Thu, 12 Dec 2019 01:31:44 GMT + - Mon, 06 Jan 2020 14:54:29 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -87014,11 +28587,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: code: 200 message: OK - request: - body: null + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' headers: Accept: - application/json @@ -87028,47 +28603,49 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '3370' + - '0' content-type: - - application/json + - text/plain; charset=utf-8 date: - - Thu, 12 Dec 2019 01:32:15 GMT + - Mon, 06 Jan 2020 14:54:34 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/309086b0-1658-4cf4-bd3a-cb5c412b86a0?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -87084,32 +28661,28 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/309086b0-1658-4cf4-bd3a-cb5c412b86a0?monitor=true&api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5","name":"sfrpclixqprfkdopjqfkd5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:34.8330101Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd5.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd5.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd5.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3283' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:32:46 GMT + - Mon, 06 Jan 2020 14:54:53 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -87136,32 +28709,30 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5","name":"sfrpclixqprfkdopjqfkd5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:34.8330101Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd5.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd5.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd5.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '3283' + - '1188' content-type: - application/json date: - - Thu, 12 Dec 2019 01:33:17 GMT + - Mon, 06 Jan 2020 14:54:56 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -87184,36 +28755,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5/listKeys?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '3283' + - '288' content-type: - application/json date: - - Thu, 12 Dec 2019 01:33:48 GMT + - Mon, 06 Jan 2020 14:54:57 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -87222,6 +28793,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' status: code: 200 message: OK @@ -87236,36 +28809,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/2fswaa2omdra63/listKeys?api-version=2019-06-01 response: body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n - \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Succeeded\",\r\n - \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"2019-12-12T01:34:16.0939636Z\",\r\n - \ \"percentComplete\": 100.0\r\n}" + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '366' + - '288' content-type: - application/json date: - - Thu, 12 Dec 2019 01:34:20 GMT + - Mon, 06 Jan 2020 14:54:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -87274,6 +28847,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: code: 200 message: OK @@ -87288,70 +28863,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.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.Storage/storageAccounts/sflogs2fswaa2omdra62/listKeys?api-version=2019-06-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637117087295410024\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": - \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n - \ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": - 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": - 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n - \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": - {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n - \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Gold\"\r\n - \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\": - \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n - \ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": - \"7.0.457.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"addonFeatures\": - [\r\n \"DnsService\"\r\n ]\r\n }\r\n}" + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '3073' + - '288' content-type: - application/json date: - - Thu, 12 Dec 2019 01:34:21 GMT + - Mon, 06 Jan 2020 14:55:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -87360,11 +28901,50 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1195' status: code: 200 message: OK - request: - body: null + body: 'b''{"location": "westus", "sku": {"name": "Standard_D15_v2", "tier": "Standard", + "capacity": 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": + {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": "admintest", "adminPassword": + "Pass@000005", "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe", + "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": + "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", + "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", + "createOption": "FromImage", "vhdContainers": ["https://sfrpclixqprfkdopjqfkd1.blob.core.windows.net/vhd", + "https://sfrpclixqprfkdopjqfkd2.blob.core.windows.net/vhd", "https://sfrpclixqprfkdopjqfkd3.blob.core.windows.net/vhd", + "https://sfrpclixqprfkdopjqfkd4.blob.core.windows.net/vhd", "https://sfrpclixqprfkdopjqfkd5.blob.core.windows.net/vhd"]}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", + "properties": {"primary": true, "ipConfigurations": [{"name": "Nic-nt2", "properties": + {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, + "extensionProfile": {"extensions": [{"name": "ServiceFabricNodeVmExt_vmNodeType0Name", + "properties": {"publisher": "Microsoft.Azure.ServiceFabric", "type": "ServiceFabricNode", + "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": false, "settings": {"clusterEndpoint": + "https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6", + "nodeTypeRef": "nt2", "dataPath": "D:\\\\\\\\SvcFab", "durabilityLevel": "Gold", + "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "ED1EF85578DE92F5C4D1B578E960D004AC45E951", + "x509StoreName": "My"}}, "protectedSettings": {"StorageAccountKey1": "veryFakedStorageAccountKey==", + "StorageAccountKey2": "veryFakedStorageAccountKey=="}}}, {"name": "VMDiagnosticsVmExt_vmNodeType0Name", + "properties": {"publisher": "Microsoft.Azure.Diagnostics", "type": "IaaSDiagnostics", + "typeHandlerVersion": "1.5", "autoUpgradeMinorVersion": true, "settings": {"WadCfg": + {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": "50000", "EtwProviders": + {"EtwEventSourceProviderConfiguration": [{"provider": "Microsoft-ServiceFabric-Actors", + "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableActorEventTable"}}, {"provider": + "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], "EtwManifestProviderConfiguration": + [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter": + "Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}}, + "StorageAccount": "2fswaa2omdra63"}, "protectedSettings": {"storageAccountName": + "2fswaa2omdra63", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint": + "https://core.windows.net/"}}}]}}, "overprovision": false}}''' headers: Accept: - application/json @@ -87374,65 +28954,37 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '4417' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637117087295410024\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": - \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n - \ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": - 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": - 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n - \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": - {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n - \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Gold\"\r\n - \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\": - \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n - \ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": - \"7.0.457.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"addonFeatures\": - [\r\n \"DnsService\"\r\n ]\r\n }\r\n}" + string: "{\r\n \"error\": {\r\n \"code\": \"OperationNotAllowed\",\r\n \"message\": + \"The operation couldn't be completed as it results in exceeding quota limit + of Core. Maximum allowed: 100, Current in use: 7, Additional requested: 100. + Read more about quota limits at https://aka.ms/AzurePerVMQuotaLimits. Submit + a request for Quota increase using the link https://aka.ms/ProdportalCRP/?#create/Microsoft.Support/Parameters/%7B%22subId%22:%220b1f6471-1bf0-4dda-aec3-cb9272f09590%22,%22pesId%22:%2206bfd9d3-516b-d5c6-5802-169c800dec89%22,%22supportTopicId%22:%22e12e3d1d-7fa0-af33-c6d0-3c50df9658a3%22%7D.\"\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3073' + - '598' content-type: - - application/json + - application/json; charset=utf-8 date: - - Thu, 12 Dec 2019 01:34:22 GMT + - Mon, 06 Jan 2020 14:55:10 GMT expires: - '-1' pragma: @@ -87442,13 +28994,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;297 + x-ms-ratelimit-remaining-subscription-writes: + - '1195' status: - code: 200 - message: OK + code: 409 + message: Conflict version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml index 61fb400c117..753148fcebd 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 27 Dec 2019 15:27:50 GMT + - Mon, 06 Jan 2020 14:28:32 GMT duration: - - '2604136' + - '2558983' expires: - '-1' ocp-aad-diagnostics-server-name: - - JZYSRpCZhmJGFdvFQE2bGaGIHzHfmfBO9iretpLtuR0= + - u69wKTZejlOWfGF/THwvVNLcycS2MlZl9ie+5VVrrJA= ocp-aad-session-key: - - dZjzEI_eLd9sJHcBy8tAqc-aHVddECGpbnfLaBF0EA-DvBmX7Sz2tK2SGWVeNCJsWKf6etdR_ZXsX5F2mQybRktbgEKdF4eJ856hIqjl-OdhSovleWQVhaOr4Ge7pCWsQUekrQM1jAXnQh6mC5zz6RF6NknjDcGg0tmxH07p-xo.B2qQJVSbjpYY7qUQte9wzDsW2saQS_FsU5Vcpsjlp3M + - -0vKH3VBqX59DPQkNndIiAaNF_s4HF9_LQO7S4lpMg6jlsWmiE7xCUGNIotp9a8-Hx41lsmmHodYQfvAiv3g0GY1rMWejrGqbJETKKf1ToKAiBDT_4-BK94n0hVrUt9hOHY_f0fFh-vBRRrvqQ5JcW2-3Q94EkxqxUM7vhnXCIc.uazhD--7DdwTZH6SlvSa_WRpJOSn0dPnoMaeiNRaupk pragma: - no-cache request-id: - - d8de29ff-da7b-482b-9ccf-66c711c23973 + - 125a3f28-7aa6-452e-aa3e-3bd0e53f2a70 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -83,7 +83,7 @@ interactions: - -g -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:27:57 GMT + - Mon, 06 Jan 2020 14:28:38 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' x-powered-by: - ASP.NET status: @@ -140,7 +140,7 @@ interactions: - -g -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002?api-version=2018-02-14 response: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:28:29 GMT + - Mon, 06 Jan 2020 14:29:09 GMT expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:29:33 GMT + - Mon, 06 Jan 2020 14:30:11 GMT expires: - '-1' pragma: @@ -266,9 +266,9 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKR1gXyWtoeoACCoSW/RpZu/NxKJTUinlLSChcmKOWref5F4k9KDmiHRty30v5dlxy5Gdm66Yj+4P/4WCyAHs+vuKUGjVI68y9N0U1zKjxUk8xLbU+h9ZvrcBnEP0jy9D82MleaSleeELQI31egmXK5FPZDDVFvDEnKXjEXiyrExZ+0fMBheGbNx/58O+vSXwLZBaG6orVgz/MA94P89qn4BcGeecSlkJfW5mhvGaFVHD2b8eTJNXzUk+x3tUT1djcbn8xsomrdh5ExExQnNVePlst32CTtuNtbeZNqrS+5Wacw2ljfHBrwSr395+apb3wAvI1nCEsfOD6+fBS5ZP1ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCik2m7sSeCEHESdxzeEshedZlIGGIhqxAm3bWnttjcwDxeCqiCxmiEZla0FvG68i/W0jwbgtKXTTSPBrNGiqgrd1IQPrJV8juCqX9t476fbC1t8l6ocEER614kiKUn4dtl0dfc5lMZTt5UVBesRDoElicvNLRv0lsRdv+cNP9JtKDIC3uX4hjzo6bM5DDnK25W1FUcsOZLGXNFa9xWKzyqnnBuq+rBsdvNAqD6Px+d/H9lkCqugmRwPcrTxQnYO3/RwkZBLtnhj2MDEBwrmLrOk+uowdmZ9WR9rRid9/TBihv4YjLKq6KLSBMnFVb5BKl/5tFqZnTg9cOuiwDIrceT","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"4ece8159ad604f68a659fdf72f131f6f"}' + time based on the issuer provider. Please check again later.","request_id":"63bcbeb0392540388f2ecce79395d507"}' headers: cache-control: - no-cache @@ -277,11 +277,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:29:37 GMT + - Mon, 06 Jan 2020 14:30:12 GMT expires: - '-1' location: - - https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=4ece8159ad604f68a659fdf72f131f6f + - https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=63bcbeb0392540388f2ecce79395d507 pragma: - no-cache server: @@ -323,9 +323,9 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKR1gXyWtoeoACCoSW/RpZu/NxKJTUinlLSChcmKOWref5F4k9KDmiHRty30v5dlxy5Gdm66Yj+4P/4WCyAHs+vuKUGjVI68y9N0U1zKjxUk8xLbU+h9ZvrcBnEP0jy9D82MleaSleeELQI31egmXK5FPZDDVFvDEnKXjEXiyrExZ+0fMBheGbNx/58O+vSXwLZBaG6orVgz/MA94P89qn4BcGeecSlkJfW5mhvGaFVHD2b8eTJNXzUk+x3tUT1djcbn8xsomrdh5ExExQnNVePlst32CTtuNtbeZNqrS+5Wacw2ljfHBrwSr395+apb3wAvI1nCEsfOD6+fBS5ZP1ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCik2m7sSeCEHESdxzeEshedZlIGGIhqxAm3bWnttjcwDxeCqiCxmiEZla0FvG68i/W0jwbgtKXTTSPBrNGiqgrd1IQPrJV8juCqX9t476fbC1t8l6ocEER614kiKUn4dtl0dfc5lMZTt5UVBesRDoElicvNLRv0lsRdv+cNP9JtKDIC3uX4hjzo6bM5DDnK25W1FUcsOZLGXNFa9xWKzyqnnBuq+rBsdvNAqD6Px+d/H9lkCqugmRwPcrTxQnYO3/RwkZBLtnhj2MDEBwrmLrOk+uowdmZ9WR9rRid9/TBihv4YjLKq6KLSBMnFVb5BKl/5tFqZnTg9cOuiwDIrceT","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"4ece8159ad604f68a659fdf72f131f6f"}' + time based on the issuer provider. Please check again later.","request_id":"63bcbeb0392540388f2ecce79395d507"}' headers: cache-control: - no-cache @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:29:39 GMT + - Mon, 06 Jan 2020 14:30:13 GMT expires: - '-1' pragma: @@ -378,9 +378,9 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKR1gXyWtoeoACCoSW/RpZu/NxKJTUinlLSChcmKOWref5F4k9KDmiHRty30v5dlxy5Gdm66Yj+4P/4WCyAHs+vuKUGjVI68y9N0U1zKjxUk8xLbU+h9ZvrcBnEP0jy9D82MleaSleeELQI31egmXK5FPZDDVFvDEnKXjEXiyrExZ+0fMBheGbNx/58O+vSXwLZBaG6orVgz/MA94P89qn4BcGeecSlkJfW5mhvGaFVHD2b8eTJNXzUk+x3tUT1djcbn8xsomrdh5ExExQnNVePlst32CTtuNtbeZNqrS+5Wacw2ljfHBrwSr395+apb3wAvI1nCEsfOD6+fBS5ZP1ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCik2m7sSeCEHESdxzeEshedZlIGGIhqxAm3bWnttjcwDxeCqiCxmiEZla0FvG68i/W0jwbgtKXTTSPBrNGiqgrd1IQPrJV8juCqX9t476fbC1t8l6ocEER614kiKUn4dtl0dfc5lMZTt5UVBesRDoElicvNLRv0lsRdv+cNP9JtKDIC3uX4hjzo6bM5DDnK25W1FUcsOZLGXNFa9xWKzyqnnBuq+rBsdvNAqD6Px+d/H9lkCqugmRwPcrTxQnYO3/RwkZBLtnhj2MDEBwrmLrOk+uowdmZ9WR9rRid9/TBihv4YjLKq6KLSBMnFVb5BKl/5tFqZnTg9cOuiwDIrceT","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"4ece8159ad604f68a659fdf72f131f6f"}' + time based on the issuer provider. Please check again later.","request_id":"63bcbeb0392540388f2ecce79395d507"}' headers: cache-control: - no-cache @@ -389,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:29:50 GMT + - Mon, 06 Jan 2020 14:30:25 GMT expires: - '-1' pragma: @@ -433,62 +433,7 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKR1gXyWtoeoACCoSW/RpZu/NxKJTUinlLSChcmKOWref5F4k9KDmiHRty30v5dlxy5Gdm66Yj+4P/4WCyAHs+vuKUGjVI68y9N0U1zKjxUk8xLbU+h9ZvrcBnEP0jy9D82MleaSleeELQI31egmXK5FPZDDVFvDEnKXjEXiyrExZ+0fMBheGbNx/58O+vSXwLZBaG6orVgz/MA94P89qn4BcGeecSlkJfW5mhvGaFVHD2b8eTJNXzUk+x3tUT1djcbn8xsomrdh5ExExQnNVePlst32CTtuNtbeZNqrS+5Wacw2ljfHBrwSr395+apb3wAvI1nCEsfOD6+fBS5ZP1ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCik2m7sSeCEHESdxzeEshedZlIGGIhqxAm3bWnttjcwDxeCqiCxmiEZla0FvG68i/W0jwbgtKXTTSPBrNGiqgrd1IQPrJV8juCqX9t476fbC1t8l6ocEER614kiKUn4dtl0dfc5lMZTt5UVBesRDoElicvNLRv0lsRdv+cNP9JtKDIC3uX4hjzo6bM5DDnK25W1FUcsOZLGXNFa9xWKzyqnnBuq+rBsdvNAqD6Px+d/H9lkCqugmRwPcrTxQnYO3/RwkZBLtnhj2MDEBwrmLrOk+uowdmZ9WR9rRid9/TBihv4YjLKq6KLSBMnFVb5BKl/5tFqZnTg9cOuiwDIrceT","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"4ece8159ad604f68a659fdf72f131f6f"}' - headers: - cache-control: - - no-cache - content-length: - - '1415' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 27 Dec 2019 15:30:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 - response: - body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKR1gXyWtoeoACCoSW/RpZu/NxKJTUinlLSChcmKOWref5F4k9KDmiHRty30v5dlxy5Gdm66Yj+4P/4WCyAHs+vuKUGjVI68y9N0U1zKjxUk8xLbU+h9ZvrcBnEP0jy9D82MleaSleeELQI31egmXK5FPZDDVFvDEnKXjEXiyrExZ+0fMBheGbNx/58O+vSXwLZBaG6orVgz/MA94P89qn4BcGeecSlkJfW5mhvGaFVHD2b8eTJNXzUk+x3tUT1djcbn8xsomrdh5ExExQnNVePlst32CTtuNtbeZNqrS+5Wacw2ljfHBrwSr395+apb3wAvI1nCEsfOD6+fBS5ZP1ECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCik2m7sSeCEHESdxzeEshedZlIGGIhqxAm3bWnttjcwDxeCqiCxmiEZla0FvG68i/W0jwbgtKXTTSPBrNGiqgrd1IQPrJV8juCqX9t476fbC1t8l6ocEER614kiKUn4dtl0dfc5lMZTt5UVBesRDoElicvNLRv0lsRdv+cNP9JtKDIC3uX4hjzo6bM5DDnK25W1FUcsOZLGXNFa9xWKzyqnnBuq+rBsdvNAqD6Px+d/H9lkCqugmRwPcrTxQnYO3/RwkZBLtnhj2MDEBwrmLrOk+uowdmZ9WR9rRid9/TBihv4YjLKq6KLSBMnFVb5BKl/5tFqZnTg9cOuiwDIrceT","cancellation_requested":false,"status":"completed","target":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1","request_id":"4ece8159ad604f68a659fdf72f131f6f"}' + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"completed","target":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1","request_id":"63bcbeb0392540388f2ecce79395d507"}' headers: cache-control: - no-cache @@ -497,7 +442,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:14 GMT + - Mon, 06 Jan 2020 14:30:36 GMT expires: - '-1' pragma: @@ -541,7 +486,7 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/secrets/cert1/versions?api-version=7.0 response: body: - string: '{"value":[{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/16086e3d6290467788b7ea91731820b0","managed":true,"attributes":{"enabled":false,"nbf":1577459976,"exp":1735313376,"created":1577460577,"updated":1577460577,"recoveryLevel":"Purgeable"}},{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/2b29548ba445407ebe4d5d03c9caf14d","managed":true,"attributes":{"enabled":true,"nbf":1577460002,"exp":1735313402,"created":1577460602,"updated":1577460602,"recoveryLevel":"Purgeable"}}],"nextLink":null}' + string: '{"value":[{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/515aba2798a24649b6561badb6f7c138","managed":true,"attributes":{"enabled":false,"nbf":1578320412,"exp":1736173812,"created":1578321012,"updated":1578321012,"recoveryLevel":"Purgeable"}},{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372","managed":true,"attributes":{"enabled":true,"nbf":1578320430,"exp":1736173830,"created":1578321030,"updated":1578321030,"recoveryLevel":"Purgeable"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -550,7 +495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:16 GMT + - Mon, 06 Jan 2020 14:30:38 GMT expires: - '-1' pragma: @@ -591,23 +536,23 @@ interactions: - -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002","name":"vmlinuxkv000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002","name":"vmlinuxkv000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '11425' + - '3694' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:18 GMT + - Mon, 06 Jan 2020 14:30:39 GMT expires: - '-1' pragma: @@ -638,7 +583,7 @@ interactions: - -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -654,7 +599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:20 GMT + - Mon, 06 Jan 2020 14:30:41 GMT expires: - '-1' pragma: @@ -693,14 +638,14 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/cli_test_vmss_create_linux_secrets000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001","name":"cli_test_vmss_create_linux_secrets000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-27T15:27:43Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001","name":"cli_test_vmss_create_linux_secrets000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:28:27Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -709,7 +654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:21 GMT + - Mon, 06 Jan 2020 14:30:41 GMT expires: - '-1' pragma: @@ -788,13 +733,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:23 GMT + - Mon, 06 Jan 2020 14:30:42 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Fri, 27 Dec 2019 15:35:23 GMT + - Mon, 06 Jan 2020 14:35:42 GMT source-age: - - '231' + - '88' strict-transport-security: - max-age=31536000 vary: @@ -804,21 +749,21 @@ interactions: x-cache: - HIT x-cache-hits: - - '4' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - 6770f84d712228799994d244debb2c254872e6e1 + - 310d003af298999e53d2c0354bcddcdd15e7761b x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - DA32:2FE7:5AE968:618044:5E0622A7 + - CF78:1F60:3E5219:4518E0:5E13443A x-served-by: - - cache-sin18031-SIN + - cache-sin18029-SIN x-timer: - - S1577460623.249721,VS0,VE0 + - S1578321043.622947,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -839,7 +784,7 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -855,7 +800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:23 GMT + - Mon, 06 Jan 2020 14:30:42 GMT expires: - '-1' pragma: @@ -894,14 +839,14 @@ interactions: "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss1747e", "adminUsername": + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss1c58d", "adminUsername": "deploy", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/deploy/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n"}]}}, "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002"}, - "vaultCertificates": [{"certificateUrl": "https://vmlinuxkv000002.vault.azure.net/secrets/cert1/2b29548ba445407ebe4d5d03c9caf14d"}]}]}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1747eNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1747eIPConfig", + "vaultCertificates": [{"certificateUrl": "https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372"}]}]}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1c58dNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1c58dIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool"}]}}]}}]}}, @@ -926,25 +871,25 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_u48yEAWGfHpvt8G1UJZndp6NI7wXRqno","name":"vmss_deploy_u48yEAWGfHpvt8G1UJZndp6NI7wXRqno","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6614067519221116442","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-12-27T15:30:29.8550662Z","duration":"PT2.9380752S","correlationId":"a46fe773-1cea-42c8-b288-2e04fb991daa","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","name":"vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4710857271621719298","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:30:49.194862Z","duration":"PT3.065384S","correlationId":"9cf9b4ea-6a25-41b3-ac94-eb9e0f52099c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_u48yEAWGfHpvt8G1UJZndp6NI7wXRqno/operationStatuses/08586241462585606323?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc/operationStatuses/08586232858393481533?api-version=2019-07-01 cache-control: - no-cache content-length: - - '2752' + - '2750' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:30:31 GMT + - Mon, 06 Jan 2020 14:30:51 GMT expires: - '-1' pragma: @@ -954,7 +899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -973,95 +918,9 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 27 Dec 2019 15:31:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --ssh-key-value --secrets - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 27 Dec 2019 15:31:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -n -g --image --admin-username --ssh-key-value --secrets - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1073,7 +932,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:32:04 GMT + - Mon, 06 Jan 2020 14:31:22 GMT expires: - '-1' pragma: @@ -1102,9 +961,9 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1116,7 +975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:32:35 GMT + - Mon, 06 Jan 2020 14:31:53 GMT expires: - '-1' pragma: @@ -1145,9 +1004,9 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1159,7 +1018,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:33:05 GMT + - Mon, 06 Jan 2020 14:32:23 GMT expires: - '-1' pragma: @@ -1188,9 +1047,9 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1202,7 +1061,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:33:36 GMT + - Mon, 06 Jan 2020 14:32:54 GMT expires: - '-1' pragma: @@ -1231,9 +1090,9 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1245,7 +1104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:34:07 GMT + - Mon, 06 Jan 2020 14:33:24 GMT expires: - '-1' pragma: @@ -1274,9 +1133,9 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1288,7 +1147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:34:37 GMT + - Mon, 06 Jan 2020 14:33:54 GMT expires: - '-1' pragma: @@ -1317,9 +1176,9 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586241462585606323?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -1331,7 +1190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:35:08 GMT + - Mon, 06 Jan 2020 14:34:25 GMT expires: - '-1' pragma: @@ -1360,23 +1219,23 @@ interactions: - -n -g --image --admin-username --ssh-key-value --secrets User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_u48yEAWGfHpvt8G1UJZndp6NI7wXRqno","name":"vmss_deploy_u48yEAWGfHpvt8G1UJZndp6NI7wXRqno","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6614067519221116442","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-12-27T15:35:00.3904881Z","duration":"PT4M33.4734971S","correlationId":"a46fe773-1cea-42c8-b288-2e04fb991daa","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1747e","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","name":"vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4710857271621719298","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:34:07.0671185Z","duration":"PT3M20.9376405S","correlationId":"9cf9b4ea-6a25-41b3-ac94-eb9e0f52099c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1c58d","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true},"secrets":[{"sourceVault":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002"},"vaultCertificates":[{"certificateUrl":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/2b29548ba445407ebe4d5d03c9caf14d"}]}],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"}},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1747eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1747eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"84512e19-153d-48f9-a1ce-bd286993e61a"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET"}]}}' + test@example.com\n"}]},"provisionVMAgent":true},"secrets":[{"sourceVault":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002"},"vaultCertificates":[{"certificateUrl":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372"}]}],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1c58dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1c58dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"fedf65b8-5877-483c-981a-05d351df7ac2"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET"}]}}' headers: cache-control: - no-cache content-length: - - '6655' + - '6671' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:35:09 GMT + - Mon, 06 Jan 2020 14:34:26 GMT expires: - '-1' pragma: @@ -1405,7 +1264,7 @@ interactions: - -n -g User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1418,7 +1277,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmss1747e\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmss1c58d\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1428,27 +1287,28 @@ interactions: [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/2b29548ba445407ebe4d5d03c9caf14d\"\r\n + \ \"certificateUrl\": \"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n - \ \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n - \ \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n - \ \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": - \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1747eNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1747eIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool\"}]}}]}}]}\r\n + \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": + 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1c58dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1c58dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"84512e19-153d-48f9-a1ce-bd286993e61a\"\r\n }\r\n}" + \"fedf65b8-5877-483c-981a-05d351df7ac2\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '4099' + - '4128' content-type: - application/json; charset=utf-8 date: - - Fri, 27 Dec 2019 15:35:11 GMT + - Mon, 06 Jan 2020 14:34:27 GMT expires: - '-1' pragma: @@ -1465,7 +1325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2580 + - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2596 status: code: 200 message: OK From f0fce606e4409812348f0997fa606822533c8552 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 7 Jan 2020 13:32:02 +0800 Subject: [PATCH 28/51] pass test_metric_alert_v2_scenario --- .../test_metric_alert_v2_scenario.yaml | 192 +++++++++--------- 1 file changed, 96 insertions(+), 96 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/recordings/test_metric_alert_v2_scenario.yaml b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/recordings/test_metric_alert_v2_scenario.yaml index a5216aefc1d..79c6d2ac90e 100644 --- a/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/recordings/test_metric_alert_v2_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/monitor/tests/latest/recordings/test_metric_alert_v2_scenario.yaml @@ -21,8 +21,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -38,7 +38,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:04 GMT + - Tue, 07 Jan 2020 05:00:25 GMT expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -76,8 +76,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -93,7 +93,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:11 GMT + - Tue, 07 Jan 2020 05:00:36 GMT expires: - '-1' pragma: @@ -138,8 +138,8 @@ interactions: ParameterSetName: - -g -n --scopes --action --description --condition --condition User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -182,7 +182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:19 GMT + - Tue, 07 Jan 2020 05:00:48 GMT expires: - '-1' pragma: @@ -221,8 +221,8 @@ interactions: - -g -n --severity --description --add-action --remove-action --remove-conditions --evaluation-frequency --window-size --tags --auto-mitigate User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -265,7 +265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:20 GMT + - Tue, 07 Jan 2020 05:00:49 GMT expires: - '-1' pragma: @@ -315,8 +315,8 @@ interactions: - -g -n --severity --description --add-action --remove-action --remove-conditions --evaluation-frequency --window-size --tags --auto-mitigate User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -351,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:26 GMT + - Tue, 07 Jan 2020 05:00:58 GMT expires: - '-1' pragma: @@ -369,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '299' x-powered-by: - ASP.NET status: @@ -389,8 +389,8 @@ interactions: ParameterSetName: - -g -n --enabled User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -425,7 +425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:27 GMT + - Tue, 07 Jan 2020 05:01:00 GMT expires: - '-1' pragma: @@ -473,8 +473,8 @@ interactions: ParameterSetName: - -g -n --enabled User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -508,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:31 GMT + - Tue, 07 Jan 2020 05:01:04 GMT expires: - '-1' pragma: @@ -526,7 +526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '297' + - '299' x-powered-by: - ASP.NET status: @@ -546,8 +546,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -582,7 +582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:33 GMT + - Tue, 07 Jan 2020 05:01:05 GMT expires: - '-1' pragma: @@ -618,8 +618,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -653,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:35 GMT + - Tue, 07 Jan 2020 05:01:06 GMT expires: - '-1' pragma: @@ -691,8 +691,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: DELETE @@ -706,7 +706,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 04:28:41 GMT + - Tue, 07 Jan 2020 05:01:12 GMT expires: - '-1' pragma: @@ -740,8 +740,8 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:43 GMT + - Tue, 07 Jan 2020 05:01:14 GMT expires: - '-1' pragma: @@ -804,8 +804,8 @@ interactions: ParameterSetName: - -g -n --scopes --action --description --condition User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -838,7 +838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:54 GMT + - Tue, 07 Jan 2020 05:01:22 GMT expires: - '-1' pragma: @@ -876,15 +876,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/cli_test_metric_alert_v2000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001","name":"cli_test_metric_alert_v2000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T04:27:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001","name":"cli_test_metric_alert_v2000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-07T04:59:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -893,7 +893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:56 GMT + - Tue, 07 Jan 2020 05:01:23 GMT expires: - '-1' pragma: @@ -926,12 +926,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_metric_alert_v2000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -943,7 +943,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 04:28:56 GMT + - Tue, 07 Jan 2020 05:01:24 GMT expires: - '-1' pragma: @@ -961,7 +961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -981,15 +981,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/cli_test_metric_alert_v2000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001","name":"cli_test_metric_alert_v2000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T04:27:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001","name":"cli_test_metric_alert_v2000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-07T04:59:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -998,7 +998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:28:58 GMT + - Tue, 07 Jan 2020 05:01:24 GMT expires: - '-1' pragma: @@ -1031,17 +1031,17 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1","name":"plan1","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23792,"name":"plan1","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_metric_alert_v2000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23792","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26217,"name":"plan1","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_metric_alert_v2000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-111_26217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1050,7 +1050,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 04:29:10 GMT + - Tue, 07 Jan 2020 05:01:35 GMT expires: - '-1' pragma: @@ -1068,7 +1068,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -1088,17 +1088,17 @@ interactions: ParameterSetName: - -g -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1","name":"plan1","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23792,"name":"plan1","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_metric_alert_v2000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23792","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26217,"name":"plan1","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_metric_alert_v2000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-111_26217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1107,7 +1107,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 04:29:12 GMT + - Tue, 07 Jan 2020 05:01:38 GMT expires: - '-1' pragma: @@ -1148,12 +1148,12 @@ interactions: ParameterSetName: - -g -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_metric_alert_v2000001/providers/Microsoft.Web/validate?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/validate?api-version=2019-08-01 response: body: string: '{"status":"Success","error":null}' @@ -1165,7 +1165,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 04:29:14 GMT + - Tue, 07 Jan 2020 05:01:39 GMT expires: - '-1' pragma: @@ -1183,7 +1183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1203,17 +1203,17 @@ interactions: ParameterSetName: - -g -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1?api-version=2018-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1","name":"plan1","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":23792,"name":"plan1","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_metric_alert_v2000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-053_23792","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26217,"name":"plan1","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_metric_alert_v2000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-111_26217","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -1222,7 +1222,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 04:29:16 GMT + - Tue, 07 Jan 2020 05:01:39 GMT expires: - '-1' pragma: @@ -1266,27 +1266,27 @@ interactions: ParameterSetName: - -g -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_metric_alert_v2000001/providers/Microsoft.Web/sites/app000003?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/sites/app000003?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/sites/app000003","name":"app000003","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"app000003","state":"Running","hostNames":["app000003.azurewebsites.net"],"webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","selfLink":"https://waws-prod-bay-053.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_metric_alert_v2000001-WestUSwebspace/sites/app000003","repositorySiteName":"app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["app000003.azurewebsites.net","app000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T04:29:22.7233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"app000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"E3DC0535C9C32C7919A1E64809EC7743CEB7AC5DD4113286F72952B4CA5CB435","kind":"app","inboundIpAddress":"40.83.184.25","possibleInboundIpAddresses":"40.83.184.25","outboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","possibleOutboundIpAddresses":"40.83.189.163,40.83.189.130,40.83.188.201,40.83.187.134","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-053","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_metric_alert_v2000001","defaultHostName":"app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"app000003","state":"Running","hostNames":["app000003.azurewebsites.net"],"webSpace":"cli_test_metric_alert_v2000001-WestUSwebspace","selfLink":"https://waws-prod-bay-111.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_metric_alert_v2000001-WestUSwebspace/sites/app000003","repositorySiteName":"app000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["app000003.azurewebsites.net","app000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"app000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"app000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/serverfarms/plan1","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-07T05:01:45.3266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"app000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"7B1870C2942134A3DEA846B23EEEC06C2515825BE7EF994D472F40BDBE67ABA8","kind":"app","inboundIpAddress":"104.42.148.55","possibleInboundIpAddresses":"104.42.148.55","outboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103","possibleOutboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103,40.112.173.196,40.112.176.145,40.83.179.99","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-111","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_metric_alert_v2000001","defaultHostName":"app000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3407' + - '3480' content-type: - application/json date: - - Mon, 06 Jan 2020 04:29:40 GMT + - Tue, 07 Jan 2020 05:02:03 GMT etag: - - '"1D5C449DF395EB5"' + - '"1D5C5178F5DB360"' expires: - '-1' pragma: @@ -1328,27 +1328,27 @@ interactions: ParameterSetName: - -g -n -p User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-web/0.42.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/cli_test_metric_alert_v2000001/providers/Microsoft.Web/sites/app000003/publishxml?api-version=2018-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_metric_alert_v2000001/providers/Microsoft.Web/sites/app000003/publishxml?api-version=2019-08-01 response: body: string: @@ -1360,7 +1360,7 @@ interactions: content-type: - application/xml date: - - Mon, 06 Jan 2020 04:29:40 GMT + - Tue, 07 Jan 2020 05:02:04 GMT expires: - '-1' pragma: @@ -1405,8 +1405,8 @@ interactions: ParameterSetName: - -g -n --scopes --action --description --condition User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.2 azure-mgmt-monitor/0.7.0 - Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-monitor/0.7.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1438,7 +1438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 04:29:56 GMT + - Tue, 07 Jan 2020 05:02:18 GMT expires: - '-1' pragma: @@ -1456,7 +1456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '298' + - '299' x-powered-by: - ASP.NET status: From 8f51b841195df4b09b9cb2a658f25199ae773d82 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Mon, 13 Jan 2020 15:42:00 +0800 Subject: [PATCH 29/51] pass test_functionapp_access_restriction_set_complex --- .../cli/command_modules/appservice/custom.py | 8 +-- ...ionapp_access_restriction_set_complex.yaml | 60 +++++++++---------- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index 6e4af509efc..e5b2eeb31a1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -1433,10 +1433,10 @@ def update_app_service_plan(instance, sku=None, number_of_workers=None): return instance -def update_functionapp_app_service_plan(instance, sku=None, number_of_workers=None, max_burst=None): +def update_functionapp_app_service_plan(cmd, instance, sku=None, number_of_workers=None, max_burst=None): instance = update_app_service_plan(instance, sku, number_of_workers) if max_burst is not None: - if not is_plan_elastic_premium(instance): + if not is_plan_elastic_premium(cmd, instance): raise CLIError("Usage error: --max-burst is only supported for Elastic Premium (EP) plans") max_burst = validate_range_of_int_flag('--max-burst', max_burst, min_val=0, max_val=20) instance.maximum_elastic_worker_count = max_burst @@ -2398,12 +2398,12 @@ def create_function(cmd, resource_group_name, name, storage_account, plan=None, runtime_version))) # If plan is not consumption or elastic premium, we need to set always on - if consumption_plan_location is None and not is_plan_elastic_premium(plan_info): + if consumption_plan_location is None and not is_plan_elastic_premium(cmd, plan_info): site_config.always_on = True # If plan is elastic premium or windows consumption, we need these app settings is_windows_consumption = consumption_plan_location is not None and not is_linux - if is_plan_elastic_premium(plan_info) or is_windows_consumption: + if is_plan_elastic_premium(cmd, plan_info) or is_windows_consumption: site_config.app_settings.append(NameValuePair(name='WEBSITE_CONTENTAZUREFILECONNECTIONSTRING', value=con_string)) site_config.app_settings.append(NameValuePair(name='WEBSITE_CONTENTSHARE', value=name.lower())) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml index 0c941195a4b..7b1feebcba8 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml @@ -105,7 +105,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:12 GMT + - Mon, 13 Jan 2020 07:39:33 GMT expires: - '-1' pragma: @@ -142,14 +142,14 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.2749548Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.2749548Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:52.1968214Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-13T07:39:10.7893607Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-13T07:39:10.7893607Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-13T07:39:10.7112290Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -158,7 +158,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:13 GMT + - Mon, 13 Jan 2020 07:39:34 GMT expires: - '-1' pragma: @@ -193,7 +193,7 @@ interactions: - -g -n --consumption-plan-location -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -209,7 +209,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:13 GMT + - Mon, 13 Jan 2020 07:39:34 GMT expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -263,18 +263,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-079.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:23.9033333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"00E46EADB3E8DCB492E3BBC2B7E1BADB30B4FE3DECCAA9C5F7E0041F0ACCCED7","kind":"functionapp","inboundIpAddress":"40.80.155.102","possibleInboundIpAddresses":"40.80.155.102","outboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21","possibleOutboundIpAddresses":"40.80.155.102,13.93.226.152,13.93.228.36,13.93.230.197,13.93.228.21,13.91.96.210,13.91.94.255","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-079","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"westus","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-059.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/WestUSPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T07:39:42.473","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"0267FA60A16E33EB45DA0DCD743BE12D5448876F8F407CC5A92D3EA9C4EC86F4","kind":"functionapp","inboundIpAddress":"23.99.91.55","possibleInboundIpAddresses":"23.99.91.55","outboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","possibleOutboundIpAddresses":"23.99.7.165,23.99.4.206,23.99.7.131,23.99.3.236","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-059","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3593' + - '3519' content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:00 GMT + - Mon, 13 Jan 2020 07:40:18 GMT etag: - - '"1D5C3AB09E31A80"' + - '"1D5C9E49EBB5020"' expires: - '-1' pragma: @@ -292,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -325,18 +325,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55018826-0000-0700-0000-5e11ad510000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"42dbb263-3d29-4d51-ab11-8ba8e7d587a6","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"f78130f9-48ae-434a-bae7-91906d4626da","ConnectionString":"InstrumentationKey=f78130f9-48ae-434a-bae7-91906d4626da","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:33:05.394435+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"82002666-0000-0700-0000-5e1c1ee90000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"45e7b1c4-8b6e-4fe0-8e94-4dc91d8b3d24","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b00f2a15-5246-4e83-89e1-a952762a8768","ConnectionString":"InstrumentationKey=b00f2a15-5246-4e83-89e1-a952762a8768","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-13T07:40:25.0909726+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '891' + - '892' content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:07 GMT + - Mon, 13 Jan 2020 07:40:27 GMT expires: - '-1' pragma: @@ -354,7 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' x-powered-by: - ASP.NET status: @@ -394,7 +394,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:07 GMT + - Mon, 13 Jan 2020 07:40:27 GMT expires: - '-1' pragma: @@ -425,7 +425,7 @@ interactions: "WEBSITE_NODE_DEFAULT_VERSION": "~10", "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY": - "f78130f9-48ae-434a-bae7-91906d4626da"}}''' + "b00f2a15-5246-4e83-89e1-a952762a8768"}}''' headers: Accept: - application/json @@ -451,7 +451,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"f78130f9-48ae-434a-bae7-91906d4626da"}}' + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b00f2a15-5246-4e83-89e1-a952762a8768"}}' headers: cache-control: - no-cache @@ -460,9 +460,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:10 GMT + - Mon, 13 Jan 2020 07:40:30 GMT etag: - - '"1D5C3AB248FEB95"' + - '"1D5C9E4BA24D480"' expires: - '-1' pragma: @@ -480,7 +480,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1197' x-powered-by: - ASP.NET status: @@ -520,7 +520,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:13 GMT + - Mon, 13 Jan 2020 07:40:31 GMT expires: - '-1' pragma: @@ -598,9 +598,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:19 GMT + - Mon, 13 Jan 2020 07:40:34 GMT etag: - - '"1D5C3AB248FEB95"' + - '"1D5C9E4BA24D480"' expires: - '-1' pragma: @@ -618,7 +618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -658,7 +658,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:20 GMT + - Mon, 13 Jan 2020 07:40:35 GMT expires: - '-1' pragma: @@ -736,9 +736,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:23 GMT + - Mon, 13 Jan 2020 07:40:38 GMT etag: - - '"1D5C3AB28714475"' + - '"1D5C9E4BD17AEB0"' expires: - '-1' pragma: @@ -756,7 +756,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' x-powered-by: - ASP.NET status: From 3083e61ac4e56fd59ce6fc6e43d1de30cbfd10c2 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Mon, 13 Jan 2020 15:45:04 +0800 Subject: [PATCH 30/51] pass test_functionapp_access_restriction_add_service_endpoint --- ...cess_restriction_add_service_endpoint.yaml | 144 +++++++++--------- 1 file changed, 72 insertions(+), 72 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml index 77756bf886d..98f67b661a1 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:31:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T07:42:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:32:12 GMT + - Mon, 13 Jan 2020 07:43:07 GMT expires: - '-1' pragma: @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:14 GMT + - Mon, 13 Jan 2020 07:43:08 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:31:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T07:42:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:32:15 GMT + - Mon, 13 Jan 2020 07:43:08 GMT expires: - '-1' pragma: @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25874,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25874","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":31660,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31660","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:25 GMT + - Mon, 13 Jan 2020 07:43:19 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' x-powered-by: - ASP.NET status: @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25874,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-069_25874","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":31660,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31660","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:26 GMT + - Mon, 13 Jan 2020 07:43:21 GMT expires: - '-1' pragma: @@ -281,14 +281,14 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.8374502Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-05T09:31:52.8374502Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-05T09:31:52.7593266Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-13T07:42:46.8242254Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-13T07:42:46.8242254Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-13T07:42:46.7617169Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -297,7 +297,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:25 GMT + - Mon, 13 Jan 2020 07:43:22 GMT expires: - '-1' pragma: @@ -332,7 +332,7 @@ interactions: - -g -n --plan -s User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -348,7 +348,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:26 GMT + - Mon, 13 Jan 2020 07:43:22 GMT expires: - '-1' pragma: @@ -364,7 +364,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -401,18 +401,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"West - US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-069.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-05T09:32:29.67","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"63F0685C9A246B27B637927CEC592E71F3F1E725F8C3C99DFB8EAA0CC629AFB6","kind":"functionapp","inboundIpAddress":"13.93.231.75","possibleInboundIpAddresses":"13.93.231.75","outboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","possibleOutboundIpAddresses":"13.93.224.99,13.93.229.16,13.93.230.177,13.93.226.129","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-069","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T07:43:30.95","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"cli-funcapp-nwr000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"162D6879B875C0FF4C0C6DF6215E7B5D0AB195C29F1B034A88A8D147A83CCCC0","kind":"functionapp","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3545' + - '3557' content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:47 GMT + - Mon, 13 Jan 2020 07:43:48 GMT etag: - - '"1D5C3AB0CE4A7B5"' + - '"1D5C9E526D0A780"' expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"55010d26-0000-0700-0000-5e11ad460000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"652621f8-2625-4a9b-a826-4e712a878a96","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b5479589-ffad-4031-b0a2-226e831f82bf","ConnectionString":"InstrumentationKey=b5479589-ffad-4031-b0a2-226e831f82bf","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-05T09:32:54.0201342+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"westus","tags":{},"kind":"web","etag":"\"8200f88f-0000-0700-0000-5e1c1fbd0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"8234fe15-d2fe-4bba-86c1-e8b90a1349c8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"281d0062-19e8-48db-8444-251c8c11c720","ConnectionString":"InstrumentationKey=281d0062-19e8-48db-8444-251c8c11c720","Name":"cli-funcapp-nwr000003","CreationDate":"2020-01-13T07:43:57.5480797+00:00","TenantId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","provisioningState":"Succeeded","SamplingPercentage":null}}' headers: access-control-expose-headers: - Request-Context @@ -474,7 +474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:32:56 GMT + - Mon, 13 Jan 2020 07:43:59 GMT expires: - '-1' pragma: @@ -492,7 +492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -532,7 +532,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:32:59 GMT + - Mon, 13 Jan 2020 07:43:59 GMT expires: - '-1' pragma: @@ -560,7 +560,7 @@ interactions: body: 'b''{"kind": "", "properties": {"FUNCTIONS_EXTENSION_VERSION": "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "b5479589-ffad-4031-b0a2-226e831f82bf"}}''' + "WEBSITE_NODE_DEFAULT_VERSION": "~10", "APPINSIGHTS_INSTRUMENTATIONKEY": "281d0062-19e8-48db-8444-251c8c11c720"}}''' headers: Accept: - application/json @@ -586,7 +586,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"West - US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"b5479589-ffad-4031-b0a2-226e831f82bf"}}' + US","properties":{"FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","AzureWebJobsDashboard":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_NODE_DEFAULT_VERSION":"~10","APPINSIGHTS_INSTRUMENTATIONKEY":"281d0062-19e8-48db-8444-251c8c11c720"}}' headers: cache-control: - no-cache @@ -595,9 +595,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:00 GMT + - Mon, 13 Jan 2020 07:44:00 GMT etag: - - '"1D5C3AB1F1D4455"' + - '"1D5C9E5384D2010"' expires: - '-1' pragma: @@ -615,7 +615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -643,7 +643,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-05T09:31:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T07:42:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -652,7 +652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:00 GMT + - Mon, 13 Jan 2020 07:44:01 GMT expires: - '-1' pragma: @@ -695,15 +695,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n - \ \"etag\": \"W/\\\"1f2803c3-207d-4f2f-98f8-d5807df3dc46\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8519f7ad-e5b4-4a83-be6d-acaf3e7460f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"cacf7f72-803f-44b1-ac37-8d4819705fd1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"de964367-e67c-42c4-a201-6c3a1f9450a0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n - \ \"etag\": \"W/\\\"1f2803c3-207d-4f2f-98f8-d5807df3dc46\\\"\",\r\n + \ \"etag\": \"W/\\\"8519f7ad-e5b4-4a83-be6d-acaf3e7460f7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -712,7 +712,7 @@ interactions: false,\r\n \"enableVmProtection\": false\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c803efa9-c807-4deb-ba9a-fc4c15d3c4e6?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d1d5ec91-af6b-4a87-be99-c1b31dd87677?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -720,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:07 GMT + - Mon, 13 Jan 2020 07:44:08 GMT expires: - '-1' pragma: @@ -733,9 +733,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d56d4db2-b32b-4961-800d-09f775b1551e + - 9497725d-0e3b-4ae2-b9df-d929d2ec7526 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -756,7 +756,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c803efa9-c807-4deb-ba9a-fc4c15d3c4e6?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d1d5ec91-af6b-4a87-be99-c1b31dd87677?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -768,7 +768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:11 GMT + - Mon, 13 Jan 2020 07:44:12 GMT expires: - '-1' pragma: @@ -785,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b81a593-0bab-44c9-852e-2676c06c2cc0 + - b3f5e3dd-a61b-47ed-8717-8b5fc683a613 status: code: 200 message: OK @@ -810,15 +810,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n - \ \"etag\": \"W/\\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3061d917-fa08-4812-b5c1-5e3b2e758b4b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"cacf7f72-803f-44b1-ac37-8d4819705fd1\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"de964367-e67c-42c4-a201-6c3a1f9450a0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n - \ \"etag\": \"W/\\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\\"\",\r\n + \ \"etag\": \"W/\\\"3061d917-fa08-4812-b5c1-5e3b2e758b4b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -833,9 +833,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:12 GMT + - Mon, 13 Jan 2020 07:44:12 GMT etag: - - W/"d8df7309-8dd5-4368-a90b-043eb21727e3" + - W/"3061d917-fa08-4812-b5c1-5e3b2e758b4b" expires: - '-1' pragma: @@ -852,7 +852,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 50d7fa88-cfc8-4b20-8aac-0d05e6d32a59 + - 314da7e3-a1c9-4085-9cd5-7f21d0709648 status: code: 200 message: OK @@ -890,7 +890,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:13 GMT + - Mon, 13 Jan 2020 07:44:14 GMT expires: - '-1' pragma: @@ -946,7 +946,7 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:14 GMT + - Mon, 13 Jan 2020 07:44:16 GMT expires: - '-1' pragma: @@ -991,7 +991,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n - \ \"etag\": \"W/\\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"3061d917-fa08-4812-b5c1-5e3b2e758b4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: @@ -1002,9 +1002,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:15 GMT + - Mon, 13 Jan 2020 07:44:17 GMT etag: - - W/"d8df7309-8dd5-4368-a90b-043eb21727e3" + - W/"3061d917-fa08-4812-b5c1-5e3b2e758b4b" expires: - '-1' pragma: @@ -1021,7 +1021,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba8e54bc-deb5-4261-b51e-836d9c1654d2 + - 240238d2-be65-4e41-89a0-9f4506760616 status: code: 200 message: OK @@ -1029,7 +1029,7 @@ interactions: body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet", "properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service": "Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}, "name": - "endpoint-subnet", "etag": "W/\\"d8df7309-8dd5-4368-a90b-043eb21727e3\\""}''' + "endpoint-subnet", "etag": "W/\\"3061d917-fa08-4812-b5c1-5e3b2e758b4b\\""}''' headers: Accept: - application/json @@ -1055,7 +1055,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n - \ \"etag\": \"W/\\\"6ec2822d-fcb9-4527-9f81-51427ba5abe4\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"6b915985-7a3d-4e33-9444-f2d2515cf31c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1063,7 +1063,7 @@ interactions: \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27f35b4b-4022-4af0-8d98-fc57c31307dd?api-version=2019-02-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/093c5e35-ed73-4c15-82fa-def226e43871?api-version=2019-02-01 cache-control: - no-cache content-length: @@ -1071,7 +1071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:16 GMT + - Mon, 13 Jan 2020 07:44:17 GMT expires: - '-1' pragma: @@ -1088,9 +1088,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03be0a02-cc99-4e19-8bc5-1f25e5a63533 + - 493b8b03-2378-448d-b4fc-69192d52c99a x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -1111,7 +1111,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/27f35b4b-4022-4af0-8d98-fc57c31307dd?api-version=2019-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/093c5e35-ed73-4c15-82fa-def226e43871?api-version=2019-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1123,7 +1123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:19 GMT + - Mon, 13 Jan 2020 07:44:22 GMT expires: - '-1' pragma: @@ -1140,7 +1140,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b386e4fc-d957-4819-b873-13188a217946 + - 965b07d8-1ff0-4f10-aee3-85237835b507 status: code: 200 message: OK @@ -1165,7 +1165,7 @@ interactions: response: body: string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n - \ \"etag\": \"W/\\\"4835788c-9ea3-4ae3-8ae2-a7454e11c42a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"96d559bc-3f82-48a5-9bd9-52fbbdda562b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n @@ -1179,9 +1179,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 05 Jan 2020 09:33:20 GMT + - Mon, 13 Jan 2020 07:44:22 GMT etag: - - W/"4835788c-9ea3-4ae3-8ae2-a7454e11c42a" + - W/"96d559bc-3f82-48a5-9bd9-52fbbdda562b" expires: - '-1' pragma: @@ -1198,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c078194-9558-4f10-99a4-bcb039cb3d63 + - 31a9fecd-f573-44ca-be3c-f6827ff999f7 status: code: 200 message: OK @@ -1259,9 +1259,9 @@ interactions: content-type: - application/json date: - - Sun, 05 Jan 2020 09:33:22 GMT + - Mon, 13 Jan 2020 07:44:25 GMT etag: - - '"1D5C3AB1F1D4455"' + - '"1D5C9E5384D2010"' expires: - '-1' pragma: @@ -1279,7 +1279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: From 0f4999fd490c09f0d023474a83e27710aaace1f4 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Mon, 13 Jan 2020 19:24:21 +0800 Subject: [PATCH 31/51] pass more test --- .../cli/command_modules/appservice/custom.py | 2 +- .../recordings/test_download_win_web_log.yaml | 920 ++++++++++-------- .../latest/recordings/test_webapp_config.yaml | 234 ++--- .../recordings/test_webapp_ssl_import.yaml | 257 ++--- .../test_win_webapp_quick_create_cd.yaml | 228 +++-- .../test_win_webapp_quick_create_runtime.yaml | 121 +-- .../tests/latest/test_webapp_commands.py | 2 +- 7 files changed, 990 insertions(+), 774 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index e5b2eeb31a1..86c28408ec2 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -132,7 +132,7 @@ def create_webapp(cmd, resource_group_name, name, plan, runtime=None, startup_fi match = helper.resolve(runtime) if not match: raise CLIError("Runtime '{}' is not supported. Please invoke 'list-runtimes' to cross check".format(runtime)) # pylint: disable=line-too-long - match['setter'](match, site_config) + match['setter'](cmd, match, site_config) # Be consistent with portal: any windows webapp should have this even it doesn't have node in the stack if not match['displayName'].startswith('node'): site_config.app_settings.append(NameValuePair(name="WEBSITE_NODE_DEFAULT_VERSION", diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml index 4fc2c71c173..763ba35ea66 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_download_win_web_log.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T09:55:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:25:49 GMT + - Mon, 13 Jan 2020 09:56:06 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:49 GMT + - Mon, 13 Jan 2020 09:56:07 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:25:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T09:55:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:25:49 GMT + - Mon, 13 Jan 2020 09:56:07 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25557,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25557","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":53497,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_53497","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:56 GMT + - Mon, 13 Jan 2020 09:56:18 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25557,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25557","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":53497,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_53497","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:58 GMT + - Mon, 13 Jan 2020 09:56:18 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:58 GMT + - Mon, 13 Jan 2020 09:56:19 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","name":"win-log000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":25557,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-077_25557","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":53497,"name":"win-log000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_53497","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:59 GMT + - Mon, 13 Jan 2020 09:56:20 GMT expires: - '-1' pragma: @@ -396,7 +396,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -434,7 +434,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:59 GMT + - Mon, 13 Jan 2020 09:56:21 GMT expires: - '-1' pragma: @@ -460,7 +460,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "6.12"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": false}}''' headers: Accept: - application/json @@ -471,14 +472,14 @@ interactions: Connection: - keep-alive Content-Length: - - '519' + - '539' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -486,18 +487,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:04.14","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C99284C95018DD255E01D2B5A7FAD4459C252D45592F73D7E15EFC85C8DF8A29","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T09:56:26.77","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"190B200B590721498F48671A525A16B5BE2F8E8F610F86C81D0A0A7CA0F3CDB6","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3539' + - '3527' content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:22 GMT + - Mon, 13 Jan 2020 09:56:44 GMT etag: - - '"1D5BF81A6AFF495"' + - '"1D5C9F7B8E9C1D0"' expires: - '-1' pragma: @@ -515,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -536,7 +537,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -544,18 +545,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:04.5533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C99284C95018DD255E01D2B5A7FAD4459C252D45592F73D7E15EFC85C8DF8A29","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T09:56:27.373","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"190B200B590721498F48671A525A16B5BE2F8E8F610F86C81D0A0A7CA0F3CDB6","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3542' + - '3526' content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:23 GMT + - Mon, 13 Jan 2020 09:56:45 GMT etag: - - '"1D5BF81A6AFF495"' + - '"1D5C9F7B8E9C1D0"' expires: - '-1' pragma: @@ -597,7 +598,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -614,9 +615,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:26:30 GMT + - Mon, 13 Jan 2020 09:56:53 GMT etag: - - '"1D5BF81B6957975"' + - '"1D5C9F7C8BD9370"' expires: - '-1' pragma: @@ -630,7 +631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' x-powered-by: - ASP.NET status: @@ -651,14 +652,14 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:26:54.2977121 - https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-26-43Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-01-13T09:57:17.3156413 + https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-01-13_09-57-06Z"}}' headers: cache-control: - no-cache @@ -667,9 +668,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:27:03 GMT + - Mon, 13 Jan 2020 09:57:24 GMT etag: - - '"1D5BF81B6957975"' + - '"1D5C9F7C8BD9370"' expires: - '-1' pragma: @@ -706,7 +707,62 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/sourcecontrols/web","name":"webapp-win-log000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-01-13T09:57:48.4224871 + https://webapp-win-log000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-01-13_09-57-06Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '730' + content-type: + - application/json + date: + - Mon, 13 Jan 2020 09:57:54 GMT + etag: + - '"1D5C9F7C8BD9370"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-source-url -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/webapp-win-log000002/sourcecontrols/web?api-version=2019-08-01 response: @@ -721,9 +777,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:27:35 GMT + - Mon, 13 Jan 2020 09:58:27 GMT etag: - - '"1D5BF81B6957975"' + - '"1D5C9F7C8BD9370"' expires: - '-1' pragma: @@ -764,7 +820,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -773,19 +829,19 @@ interactions: body: string: @@ -797,7 +853,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:27:36 GMT + - Mon, 13 Jan 2020 09:58:28 GMT expires: - '-1' pragma: @@ -811,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' x-powered-by: - ASP.NET status: @@ -832,7 +888,7 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -840,18 +896,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-077.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:26:31.2233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C99284C95018DD255E01D2B5A7FAD4459C252D45592F73D7E15EFC85C8DF8A29","kind":"app","inboundIpAddress":"138.91.240.81","possibleInboundIpAddresses":"138.91.240.81","outboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","possibleOutboundIpAddresses":"138.91.247.220,138.91.246.230,138.91.246.197,138.91.241.182","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-077","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-win-log000002","state":"Running","hostNames":["webapp-win-log000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-win-log000002","repositorySiteName":"webapp-win-log000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-win-log000002.azurewebsites.net","webapp-win-log000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-win-log000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-win-log000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/win-log000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T09:56:53.927","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-win-log000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"190B200B590721498F48671A525A16B5BE2F8E8F610F86C81D0A0A7CA0F3CDB6","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-win-log000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3542' + - '3526' content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:06 GMT + - Mon, 13 Jan 2020 09:58:59 GMT etag: - - '"1D5BF81B6957975"' + - '"1D5C9F7C8BD9370"' expires: - '-1' pragma: @@ -892,7 +948,7 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -901,19 +957,19 @@ interactions: body: string: @@ -925,7 +981,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:28:08 GMT + - Mon, 13 Jan 2020 09:59:02 GMT expires: - '-1' pragma: @@ -939,7 +995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11996' + - '11999' x-powered-by: - ASP.NET status: @@ -962,7 +1018,7 @@ interactions: - -g -n --log-file User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -970,7 +1026,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-win-log000002/publishingcredentials/$webapp-win-log000002","name":"webapp-win-log000002","type":"Microsoft.Web/sites/publishingcredentials","location":"West - US","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"D2a2HgbvLyEvExh7vic2dCb5X4PiSGXdfzHctj4xYZwZ8sGBvZRmkFx4Qvj3","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:D2a2HgbvLyEvExh7vic2dCb5X4PiSGXdfzHctj4xYZwZ8sGBvZRmkFx4Qvj3@webapp-win-log000002.scm.azurewebsites.net"}}' + US","properties":{"name":null,"publishingUserName":"$webapp-win-log000002","publishingPassword":"fvDy6txJdlZlN6upizdaKTxmcwftywxGTNl3XiCbuqp0GrFzuZX2JkL6EahR","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-win-log000002:fvDy6txJdlZlN6upizdaKTxmcwftywxGTNl3XiCbuqp0GrFzuZX2JkL6EahR@webapp-win-log000002.scm.azurewebsites.net"}}' headers: cache-control: - no-cache @@ -979,7 +1035,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:28:09 GMT + - Mon, 13 Jan 2020 09:59:03 GMT expires: - '-1' pragma: @@ -1011,342 +1067,394 @@ interactions: response: body: string: !!binary | - UEsDBBQACAAIAGUTn08AAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw - l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACABl - E59PAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj - MDFlYzc5MjQyZmZiMDcvbG9nLmxvZ61YXY7juBF+ToDcQZiHTA9gKiRFiVTnpRczkw2QZLCYmcUC - jQYWtETZytqiI8nd6zzlEPOYqwS5y14gV8hHyZYod1vTHaS7gZkyXVVf/bCqWJyylDBOIvaZ8mue - XAsRJjyiPI5vF9/vct2W1Spo9sutzfcb04SLIityxaOMmDyJiTBFQtRSS5KZVClNM6lTs6C/+TV/ - SnIseCzp7eK72ux07UTnZrexh62p2qCwdZDZ7bZsgzIPXmeZEgV+Uv46XOSKKWpMRmhEcyJyE5GU - SkY4T6jSTMmY0ktaFaMxfm8X35rK1L1Fntomq8tdGy6kSkwhIkYSGkdERMKQJWeUcJ3GktEly0Tk - VPzqKcscgDSK4LPGWdWuDczZbOyDo5xRusqD1garHoLx7e4BXAev9d/3tQmasvWP+9OAHAJCKkty - 2xIPPKmDV++u79Z2a+4c4x0ca/EfWx9eBcSeHY6MzV1r7abBdyA0N/jHcX+n2/UZiycPYbhgfxxK - IdNU8XkfdxF26sK/NsEPZhl8gs5O5mOXQmQqlOTidvFxX1VnqXL0aBgibFKqnJmCiCxOiFjGmqQi - 44id4Dwy2shoeRG2Sw0hkBpv+xBdn1n/yGF3/Sdhts1fXfKGChnjURolt4s/Iuwbh/1k9SjwojNV - GMmIUolkelubPl31bvejLQqIMuG63V7WPLD+aZ/vPx2qLPzw/nNQ1HaL/LqQKK+RmOenDw8PtbXt - 6xlNKeNUwXXvzMZ0VaIoNwZy1rZxZNPqunVgN88R8tbuDs5PRxnhqmzLVWVrM8MsqOBCok6dMe90 - 9pNeuSSz1f/CXtvMNM1X2VEbFEfGn2lvTH1vanDPqT7xDr57doBloiLGkVp/tvanzmOomuCGwt8N - qoN9lZu6ryQujDO5lkaSxgq3rC9cXdTIfhccy84g8nIiDBKO5dXkwYNZhpmtinL1HM0fjhUBbmtK - WzWBvtflRi83JrBVV0p3G92iO2wDXSPDaJiEnP62qwG/B6VC7hMs9SmeTCg5odRIMRrGE4pNDzmb - nHIxJT0tkMTPeD1EOI2moiIPPU6FZxnj4ZTyv8rDyMPAwwGCCOnIJkI2JQYRIuThgMQRk5NBtjsZ - jBVh5EuLfB6oPeERIdT6hIdNhEMMRBj7PMmU8ASoEQE4xq/FMG74Wuxji4FggBP7emJkj3cip4Qn - Tfkn6agH7ONJ4rsXaTk6JPHhJD6CxEeQhB6CJEx90ROlqS86HR3ieIbMBZwpOGTbKQ4487zVUUPE - O8qXMjEEaThIAdoRovStl7B+cKz0rZd+MKTvCum7QvqucMSQdtAz1UrHcCBMo1q03pELWeOfeLmm - fE0KBWTA7YghB5QfDkcMXnDEgA4cUwiem93JKB2Ul3ygmHdPHBmPQXYkcugUPcSA4e49p55+QkPO - WpTh09BxLKxBd9/C4PvGBH6P7JquG06ztbU400FeFoWp3Ux+ZH2Z2t32xBcANS4pe0b3GB4bZdl0 - wA/bTaDbYDK0HMeSO+87F0THUYg2yVMubxcVAP3wzccPU6sP+5WuVg8EzYqggd6gToY0+GAxmvfN - D71osWBPDfxOeKQSPD5eLHycp+F2s8nh2f+3io/vv3n3l/cB3m56RnicUO76/gudsykzUyFJZsDL - a5qGiUiFpOntwvy8qzFO3SDTcY27nPzx+Ji8O549GcJeShInPAHKX77885cv/8BfgODonSFusOxC - Fs1wqzimEgkwcuu61gdSYJ5oTQV+/L6IP3NTl8FjaVXpFq+1DkIyIyJNIhFhShwh7Nty05CtqVc9 - 9xyAx9wdH16AfYrauukQzMiQLOZRxHwEW9Oube44WcgvY3+CE0Md/NaS9rDrwYsZdi7jVOAVM5pe - IBPWN5i0ZtU+5qtxUQ3BxgDjKFCjqMyoFSKN3Fw+qu2DBr3oBy9iNFWG2XRf95k256rHSk2rV8CK - 5jCjMlZKxBMXnTycl033kEcR6hw2k+bysZR7XR++Gl4pEpZOEqOb9gneAG2ZOXbc2Rnwj/m7CPXu - isI5xE+xtmvSWlKbFaoCTGahnNGdChG7d/sY5Ma0u9q21qWmLTrjZ8ArGkvO8Hb0BOgCG5+963w3 - brCcCbeKklSySdyc0/aNcZcKg8Zl5E+wYieQfy1YT7D9rbnphscZXbFgVKBHjUbaihRlVTZrk99g - qkPDuzIGH9VN27vszYvEQZberN2So7uYcFpwta925bE60BlpqUBlTCY+RPx+PhCd5zWwoUoEV3j0 - Peg6B1iXEMO4Wu7cl/DkBWZMzC/TkpvlfgUFGJyDq23TqZoVkXCVuNXe6MXGVB0i19B6Ebgsp0kN - tbmtrbt+KDinD7fl1hVMb/pbt+2OmLruSzjm5TkrHkNwaU5K5wDM7gooTF7qri7X8JX3SnOau8+d - pfBh/DI9OsvMrnV6olAGV5VZ2bbU2C9CC947vn3P1qKwBI66tvzlP//+F/5cX1/a/DCWeIawBlfL - Q4sbhWFrHKFr/UDcV2GMN92fO3PAVaKe3pMN9ozAi6esmLP+hOsPxxuCvTesb5piv9kc+hH4bFEp - rzGmYw1FmbPntKhE4W79Be9xW3nVvHELS06xtDL5kuRFLolguiBporFKL6SIFcVp2i0sn1LFMFUp - hqnqc12uVqbboNcmO2TYlVxhzrovzUOA6QoL5LJxG5T8DTakgkuZOQ0Ka3Nh+JIsk+WSpIYuFdU8 - pbx4Ynfe2cbRW7ot17txTz96JVxkJspkyrB9VUwT3OccxuScxKmSeUpz/Ggn+79QSwcIbWnhjh0I - AABoGAAAUEsDBBQACAAIAFgTn08AAAAAAAAAAAAAAAA9AAAAZGVwbG95bWVudHMvY2M4NGZmZmY5 - MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdNNLzyzJTM/LL0rl5SpITM5O - TE/VyyrOzwPyivKTU4uLobzi1KKy1CIgh5dLD6iFlwsAUEsHCE08ibUyAAAAOQAAAFBLAwQUAAgA - CABlE59PAAAAAAAAAAAAAAAAPwAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVl - ODhjMDFlYzc5MjQyZmZiMDcvc3RhdHVzLnhtbI2SvW7DIBSF90p9Byu7/4h/I0K6pO1eT10qgq9d - JGMswGnybB36SH2FUmJbqZShTNx7zne4CL4/v/DuJDrvCEpz2W9XcRCtPOiZrHnfblejafxitSP3 - d7iGoZNnAb2xledhXhPGiqSxq0S0TKKEAaRlClAULIqB5SVKUNMcohyH1uwgOpp3qch5bGnffvhC - NwaHU9MZLqeAIk/cPI8HHC6NK34vKO/mkAfBmZJaNiZgUsxpF4tjBGhNWyC0rj09Hmpp6d7uhkEq - Yy8WzgbnHpRslSUIDpetE7ShZtTkZWTMyjic6iutgpOx2EVwhRM7qs1E7fu64gIIiuLSj5G/jqsI - bVC+iaMApUVRIPSKwxuAC1LAgB/hZkS2SZIgzbN1lv1G/LHOIypz63BHZllZ5CixpJ1+8jkM/jXx - 7HKIfYWhAwOkUiPgcCmdyPWbATGQR9ppK87lrCmgtey785W+tH6f6uoT/gBQSwcIiZmQL2YBAAC8 - AgAAUEsDBBQAAAAAAFUTn08AAAAAAAAAAAAAAAATAAAAZGVwbG95bWVudHMvcGVuZGluZ1BLAwQU - AAgACABPE59PAAAAAAAAAAAAAAAAGAAAAGRlcGxveW1lbnRzL3NldHRpbmdzLnhtbHu/e7+NfUVu - jkJZalFxZn6erZKhnoGSQmpecn5KZl66rVJpSZquhZK9HS+XTXFqSQlQrBjIVlCwSUktyMmvzE3N - KwHzgSKJKSkK2amVtkpJRYl5yRlKCmWJOaWptkq5icUlqUVKCvoQjfooOm304cYCAFBLBwgMBWYk - cgAAAIwAAABQSwMEFAAIAAgAVhOfTwAAAAAAAAAAAAAAABwAAABkZXBsb3ltZW50cy90b29scy9k - ZXBsb3kuY21kxVbfb+JGEH5H4n8YkCzdVcFJrq0qkVIdIssdPTAUO7mchGQ59gK+mF3XXofQh/7t - ndm1+RFI7vp0PIDx7Mx+O/t9M/M+nkPTcnsj35t2e8wfsls2tJrgsL+g+UsT3vNwKUHO5/VavdZu - Q+vkR5s+3VzfwDVPE7lZcaHADbM4Vdp0y7M8lqINl/aFffnbq5G0cZLxjP9dxHmseH68vASDYeP5 - BoSMuP01h1jkKkgSHtVr6yX6awO8+0MUCdBXvTbog8Wm0/HUHFOf8gLe1GsA+pyjOM9jsdhG5E88 - LFRwn/AzSBMe5LzapFpyBpjAIMl4EG0qG49gFTxwyAvEECsIAwH3HHBNuETbPJMrCIssoyRx8Rhn - UlDCbIKxkEoCzzKZ1Wtvy2O6XBXpLgn0NucqkWGQoD+hi3gSbPD7KQ0EJZqWuMyD7tQb9Ls9z+1Y - /0bphWXbsyBT8TwIFWZV58MZe3DN+gOHXePvZDj+MmKO57vjm2mPmdRQpCNTFbGEiZl9IZLXnX7A - ADrJzyIZU8fawrRm6/U6kxJZow//LKrD7jx/1HUGfeZ6/qTrfdyFPbYdxF0FIp7zHANTlp/FnUzZ - 7WB8456KDUCgT694YQcABH8KPynEd784Pb83ujbQUVIDQ1t4KKIC8o0It3QsLcTIT2R0SyNefAIi - XVWE067kCa0FKjSPE6RTec7Gju+Nku/7HKNViGFIZEo28LXIFWSFELRnkxDRnk1YyyKJkOe5xMfs - gbwoLQcH6lhBmkaBCqwZYptVzna4QkFiOvS2u/pAN4E736g4idUG+oUIFVL3hNqp5OjVLk94qByU - e1lQSg5X/DVw2JD1PN8ZXzP/lk3dwdg5SLe35DCXSSLXdMYAJRpJwUEKPL4U8DkWkVzn0P2H1PuZ - 3+sStK9TOry+Aeu1/Swsq0eiwcJ68NYI4OgtG02s5vffH7KZ3Q1c71lsijLzfaqOZbpstUqbhnfm - /s5TVC3mid2xzu+HyF7wJlRaP9/gldYAQHmI1+Clq9fQTUb+n66W+ksAD/3/F74S3X7hqtKxn6Xq - XYdSST5a2yaDDgJEMXeajWpVA++4Qa9L3A28ybfAhu5eNa28UCcUj6RUuZeb6C20Ytps3Ddaaf/g - j9brvoAP5gGNcd+qO+rHQETJfkuNtgMC9jsd8dLW1c0UN+Ty+QCJPHD8yZAGkp2GqqnksqSw1mCb - 6RbNe6sIvQ7qEa5vPcKvF9CiEWcXp+xtZFaHhq0cWwINxx2FXFK0nO4GZI2haS9idWUvF1f27qhX - 5pFK4XfqWt8/5vedDabqmWHm0QxS9Zo5/MmCiF4/29uuQm0iDcKHYEGD1AulQrdoa1auw1lKijLJ - aZEvKbN76auyRMw9ugPNfBREY9ubWq00k1Ghi3spuG/WjlSmpmcQQX70p+xcXCAkTdiSchDKFY4V - EWSyUDG2ELUMFKxj7M1maC7w35KLapzbo+pugNNPQCXE71g/lfdq6f9WvaaH810DR4bpufyiaXbo - B9jpI+BPsephaersz7ZnFbzONhqtg/P7gxFYH6mcN/GEeqis1zT+bokclkEOMtQTawRRkZGc1/we - qDPCjuSoZ0MH2gdnVkZT7JA/chy8d4Y+Tr9VrzezuYFw7FPBvdwu2Pet194Yjeh7eQa9H4s4p1k7 - L8KQ5/m8wOEG8f0HUEsHCHohM0npBAAA7gwAAFBLAwQUAAgACABWE59PAAAAAAAAAAAAAAAAJAAA - AGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveW1lbnRDYWNoZUtlebMw1TM0NDI00TMxMjfXM+Dl0q1U - 0NXNy9dNyS/RTUktyMmvzE3NK1HQLVJQcrGKycjPTY0pzixJjSlKLcgHMvKLKpUUdPPRJBEai2NK - 8vNzioFqgIampAIpkO6AxJIMNC1I5vFyAQBQSwcIRVXWI2cAAACWAAAAUEsDBBQACAAIAFITn08A - AAAAAAAAAAAAAAAVAAAATG9nRmlsZXMvZXZlbnRsb2cueG1sbVBNa8MwDL0P9h9M7yW2m/QjqIYs - ydawrgttTitlmEajYfnCcTsKY799btKUHXaxnp+kpydBeMJSNwLaKGBzbjQWAmJVnbIUFVnJAueD - hdZ1nEv9UaliIcs0RzWwrk1RIDilFKxWwvxgiSfMhQ1WByCRzacwBW2EZzx/VSptRA/A6pGAJCvQ - Vyg1pqTzcmHmA07ZbMj4cMQSyl0+dkeTt5uDNe6NoJnMZmPqzCZTdjVzS4B/kGVpTHl1nWd7qbOq - BKsnwa+K+qhRiXVAKXOcIGTh5ME3FX0CNrg/qkyfzdZWf6R24UBqKaB9vTheRr6XRK+r9xdv5T2F - a9f9+Ycl30QfsmZO7UcWcI+SbRIFZDzldEe28QU6tr0Dq9PuDvsXGw/t7Ebc3/0CUEsHCPmrVQ0p - AQAAwgEAAFBLAwQUAAAAAACFE59PAAAAAAAAAAAAAAAAGQAAAExvZ0ZpbGVzL2t1ZHUvZGVwbG95 - bWVudC9QSwMEFAAIAAgAThOfTwAAAAAAAAAAAAAAAFMAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIw - MTktMTItMzFUMDItMjYtMjlfNTA1MGNlXzAwMV9TdGFydHVwX1BPU1RfYXBpLXNldHRpbmdzXzBz - LnhtbH2OTUvEMBRF94L/4fnWE5umH9jSDgzjplhnBlOG2ZXQBg20aW1eF/57M4IiLty+c989t3Ck - ZyBDgy5RklponeFFv6/aEUKvyJ8FDzMWChaFDRe5SHOR3WfxA4KxjpTtfCThCe80wroMJQZqNoHT - RMa+OoRR09vUl3g6ygaBPmafX74Ns/EkTeJ4IzYpgtw/t/KpOrVS1u15V1ePu6Y6HkrknnVj8/V8 - mKxXbW9vAIrf8/eDVtbPv4wD1NNV/c/+NEIItsUdY9CviyIz2Rz46IAx31wE1+K/OPrhn1BLBwgh - CUyN2wAAADcBAABQSwMEFAAIAAgATxOfTwAAAAAAAAAAAAAAAE8AAABMb2dGaWxlcy9rdWR1L3Ry - YWNlLzIwMTktMTItMzFUMDItMjYtMjlfNTA1MGNlXzAwMl9QT1NUX2FwaS1zZXR0aW5nc18yMDRf - MXMueG1snVPbbtpAEH2v1H/Y7nNm8Q2CEY7kEtJY5SZsSvpo7AU2MrvO7jok+fqOSZGqRkhVX2fO - XM6ZM0NjeU2ssBWPaCILdRByR5b8qeHGUlLmFuOe44bgeuC7meMNvN7AC1kYBpQIaWwuC4R0na5T - cEoaXUW0k9eiY7i12MtQcuB2r8qILuZpRol9rRGvzxNqgZleNwiuvKseJSMlJS+sUDKi3zmvIa7E - M/bFuOXSwoTLnd3jSu/YUyw7dczruhJF3pZ2Ho2SlMQNztXi7RSL6NfcMMYoGb/UOCGiruNAgW2F - bHDAvTIYO/IN9oGjkFCpnagem93h1T8+MVMcWP7WaI4IIyw3THLUZ2W4hniHm0U0btOw5pu0zUO7 - sVZVxXWn32MOu2Yh7vwCBwO/yUNLfYvcN+WmhNLJexAEfQ7963wLvbJwur0iLzbbPiUPsI7XKawk - xxOVvITVcvJB59EkGc8ySBbIze+z0GVe4LC+O/C7QRdnP0C8XMJk/g2S238fnCbZGG7Hi8n85/TU - HmsvyUTJOk4RfBevJhnc471n8XR8GX9J1ge4U/qY65bpQiurIrq3tkYvIYe6Trl+FgX/kJqmMJpP - btMsXmaoASU3nz8RMvzT4vPG7lRrcc1NraTBy1/wuO+w0EePn/16hqPjbWNGeIX2MRDwHsj4C3pg - ps5OpaTdkuuITkWhlVFbC0mSdlyHOf9tg1Fe7PnZWRGttXjGBz2pYuoZt/CDa3P6nQAd5zu+G1LS - uRl+ASBlo0+PMCCudzAEAMUZdlpt/s6HXf8M+AVQSwcI7g/KAlECAAAfBAAAUEsDBBQACAAIAE8T - n08AAAAAAAAAAAAAAABWAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTMx - XzUwNTBjZV8wMDNfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIwMF8wcy54bWydk91u2kAQhe8r - 9R22e53xD7bBUBzJJSRBISHCpqSXxh5gI+N1dtchydN3TIpaRaKqervn7OyZ2W+G2mDNjDAlRnxS - 5XInqg2b41OD2nBWZIbOO47bB7cDnps6nUGnO/Bcyw96nIlKm6zKyRI4gZMjZ40qI25ntbA1GkO1 - tJ3ku/S1Jm2HZiuLiF+NU84MHUVcHR+qBQndwPfPOmddzkayqjA3QlYRv0GsIS7FM5WIGyqhxFv2 - Ln3LtGVZnF1LbSK+x1VW17AXFZRyI8rHZrN79fZPls53VvbWKCSHFga1VSE1t9CoIN5gRXfjVoYl - rpJWB3rfKFmWqOywazlWz+pTqhfYafgVGdrAa0q8KlYFFE7WBd8PEcJetoZukTtBN8/y1Trk7AGW - 8TKBRYU03wILWMynJ4c0mk7GdylM7iPueqHVd62O71ihO/ACP6AMDxDP5zCdXcHk4t8DJJN0DBfj - ++nsx+2hPN09NS7OlnFC5st4MU3hepakd/Ht+LT/1Hgf4FKqfabaju+VNDLiW2NqfeihrhNUzyLH - D9L550+MDf+EctaYjWyhVKhrWWmi4C9Uhv3faB3txKhp9IhG36LscPZ+kOILffzshrM2CqqI34pc - SS3XBiaTxHYdi7z/+eejLN/iEaOI10o80yodWtf1HRr4jkof8PYJL8/xXAreUkc0QrsuESeWS5Ef - SLcftay+snybKVqrqDFrIK7s8+EXAFY06mAaMDfYaQZAMxza7Qg/6n7vqP8EUEsHCJJeuaE4AgAA - 9wMAAFBLAwQUAAgACABRE59PAAAAAAAAAAAAAAAAVgAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAx - OS0xMi0zMVQwMi0yNi0zNF81MDUwY2VfMDA0X0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBf - MHMueG1snZPdbtpAEIXvK/Udtnud8Q82DlAcySUksUJChE1JL409wEbG6+yuQ5Kn79gpUlUJtert - ntnZM2e/GWuDNTPClBjyuMrlXlRbtsDnBrXhrMgMnfccdwhuDzw3dXqjXjDyfKvv+ZyJSpusyqmk - 7/SdHDlrVBlyO6uFrdEY6qXtJN+nbzVpezQ7WYT8eppyZugo5Or4UC1ICPq+f9Y7CzibyKrC3AhZ - hfwWsYaoFC/UImqohRLv2Yf0LdOWZXF2I7UJ+QHXWV3DQVRQyq0on5rt/s07PFs631vZe6OQKrQw - qK0KabilRgXRFiu6G7UyrHCdtDrQ+0bJskRlDwLLsc6tIbl6hb2GX5ahNbwhx+tiXUDhZAH4/gBh - cJ5tIChypx/kWb7eDDh7hFW0SmBZIeVbYAHLxexkSJNZPL1PIX4IuesNrKFr9XzHGrgjr+/3ycMj - RIsFzObXEF/+u4EkTqdwOX2YzX/cde3p7qm4OFtFCRVfRctZCjfzJL2P7qan60/F+whXUh0y1U78 - oKSRId8ZU+tuhrpOUL2IHP+QLj5/Ymz8O5TzxmxlC6VCXctKEwV/ofKI1rGcGDWNnlD0LcoOZx8H - Kb7Sx89vOWutoAr5nciV1HJjII4T23Usqv3PP59k+Q6PGIW8VuKFVqkbXdf3aOA7Kt3h7RNenuO5 - w456QzRCuy4hJ5ZLkXek209aVl9ZvssUrVXYmA0QV/bF+AsAKxrVFY2YG+w1A6AMx3Yb4Wn9J1BL - Bwj7CEg2MgIAAPcDAABQSwMEFAAIAAgAUhOfTwAAAAAAAAAAAAAAAEIAAABMb2dGaWxlcy9rdWR1 - L3RyYWNlLzIwMTktMTItMzFUMDItMjYtMzdfNTA1MGNlXzAwNV9TaHV0ZG93bl8wcy54bWxVjEsK - wyAUReeF7uHVcUyfGrUJSdZQaDcgUaiQX+OTbr92WLijcw63TxR2oEhzGNj92KaQEjxemfz2WRl4 - R4VLFC0XkivxRNlJ0ylbGyEZxDWRW6eSaNQ4BQZ79AMzumkqWRkGeae4FI3Y/WZri3hDFAxml+gI - 7xwS/SWqxlZZbcv7dewvnIPPh6O4rR3gkoDz8Xz6AlBLBwgLCIo1lQAAALYAAABQSwMEFAAIAAgA - VROfTwAAAAAAAAAAAAAAAFoAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYt - NDJfNTA1MGNlXzAwMV9TdGFydHVwX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8wcy54bWx9j11L - xDAQRd8F/8M4z1ubpN2ylmZhWZelWD8wRXwroQ1roE1rMwX990ZkQXzw9Z7h3LmFJzMBWeqNREV6 - pmWCZ/O+GE8InaYQC8ZvIi6ihNdM5CLLU3HNN2sE6zxp14aTNVuz1iAscy8x1pONvSGy7uRj1Q71 - 5xTYYOht7CQeDzUChUjifC6abABptklXYpUhqP19o+7Kp0apqnnZVeXtri4fHySywH58Eg8fZGan - +6MNn24vLwCK32P2vdEujHkdeqjGk/9vjWApQrwtrqIIumXWZEeXA08GD1EU1EX8bf7LE37mX1BL - BwjoglO+5gAAAEYBAABQSwMEFAAIAAgAVROfTwAAAAAAAAAAAAAAAFYAAABMb2dGaWxlcy9rdWR1 - L3RyYWNlLzIwMTktMTItMzFUMDItMjYtNDJfNTA1MGNlXzAwMl9HRVRfYXBpLXNldHRpbmdzLVNj - bVR5cGVfMjAwXzBzLnhtbJ2T3W7aQBCF7yv1HbZ7nfE/DlAcySWkQSEhwqakl8YeYCPb6+yuQ5Kn - 75gUtYqEVPV2z9nZmTPfjrTBhhlhSoz4tM5lJeotW+BTi9pwVmSGzj3HHYDrge+mjjf0wmHgWV7Q - 50zU2mR1Tpae03Ny5KxVZcTtrBG2RmOolraTvEpfG9IqNDtZRPz7JOXM0FHE1fGhRpAQhP3gzDsL - ORvLusbcCFlH/AaxgbgUz1QibqmEEm/Zu/Qt05ZlcXYttYn4HtdZ08Be1FDKrSgf22316u+fLJ1X - VvbWKiSHFga1VSMNt9SoIN5iTXfjToYVrpNOB3rfKFmWqOx+aDnWuTWgrl6g0vC7Zega3oS9YF2s - CyicLIQg6CP0z7MNhEXu9MI8y9cbSukBVvEqgWWNlG+BBSwXs5MhjWfTyV0K0/uIu37fGriUtGP1 - 3aHfC3rUwwPEiwXM5t9hevnvDSTTdAKXk/vZ/OftoTzdPRUXZ6s4IfNVvJylcD1P0rv4dnLafyre - B7iSap+pbuJ7JY2M+M6YRh9maJoE1bPI8YN08fkTY6O/oZy3Zis7KBXqRtaaKDhNJe3jD1pHOzFq - Wj2m6DuUHc7eD1J8ocXPbzjrWkEV8VuRK6nlxsB0mtiuY5H3P3c+zvIdHjGKeKPEM32lw+i6uUMD - P1DpA94B4eU7vjs4UG+IRui+S8SJ5VLkB9LtRy3rryzfZYq+VdSaDRBX9sXoCwArWnUwDZl7XmkG - QBmO7C7Cj3rg+UfDL1BLBwhFNlocNwIAAPgDAABQSwMEFAAIAAgAVROfTwAAAAAAAAAAAAAAAEkA - AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYtNDJfNTA1MGNlXzAwM19QT1NU - X2RlcGxveV8yMDJfMHMueG1slVRZc9s2EH7vTP8Dioc+BSR46aqZDOPIsSbyMZZcu33pQOBaQkoC - CAD6yK/vUrJTj8fKJK/YA7vfsQc+gCVBhQZKOtPStEqvyQV86cAHSmoR8D3lyZglKcuSJU8n6WCS - p9GQJ5Qo7YPQElMKXnAJlHSuKWlcg23Mwzsv2+WDhXJ6H8Bp0XxU4XfR2j+Ur/yDlmVwHZa0EDam - Lun52WJJSegLqHsawCqM5INR/iZ9M6Dk0GgNMiijS/oJwLKqUbfYA98D6MDmoNdhU9IxDld12Nep - r2KX/l74KIoomd5b7FDShHMmsUzpfohj4/HtDlbCWnanNGvMWjWfu3X7kN19iXCTSHztHGCGVwF8 - pAHhufTgWLXGn0ta9WF2BatFH2f9RM40Dbh4NIh4NIzGOP89az17XI71q90MinxVr2pWczFgeT4C - NhqKGzaoJS8GUsjVzYiSa3ZVXS3YpQZkqIaaXV7Mfxbmw/lserpks3NcPRtF4yRKcx6NkklW5AWO - ds2qiws2P/vIZh9+fK7FbDllH6bn87O/TrbtsXYfipRcVQtMPqou50t2jHSfVifT/fn7UL9mR8bd - CdcDce5MMCXdhGD9dgdrF+BulYQXobe//kLIwXO1H0GQm2Oha+Tou0ovOCXb8hcNFkG4QHZab1ED - aAcSNkBWQv67dqbT9ffajooxJfHbg98YI3XntiqdkGTIW08Y240b9/O+TEmH42cpzzc668La9P51 - 4K3RHnW9z8BZxHMU1pPbntLRzqHzh6ix3vUpJbuHJdz3CpcSbADcqocYXElPlHTGm5vAZrNFnPAI - kZob+ei4LSmTON6nh9f5jYVVjwekB9XHDd4gH97tcMZf8Yocd6vtIQmqhfL/6/QPT1mKLsr+xosg - 5AaeXFhS69Qt9tlKxNtTCOxPcH57R3J0Z8az5DU6vpFx8CoVWfGNiv8AUEsHCG+ER/rEAgAASQUA - AFBLAwQUAAgACABlE59PAAAAAAAAAAAAAAAAUQAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0x - Mi0zMVQwMi0yNi00Ml81MDUwY2VfMDA0X0JhY2tncm91bmRfUE9TVF9kZXBsb3lfMjhzLnhtbNVW - TW/jNhC9F+h/mOpQJAcrkiJZkhsv0E2y3aLYrQGn2IuAgqbGtmCJ1JJUEv/7Du34S5aFYG8VAsQg - yHkzj2/e8E4brMEUpsSx85Hx1ULJRuRPinF0IGeGlgPPTwd+MLj1n7xgFAxHYeAmUepAIbRhgtOW - yIs8e6BR5di5ybEu5dqBCs1S5mNn8vf0yYEPP/8EcHeMd6+QmUIswGBVS8XUGrZHKxSmDz2NfAdu - Ptz9MhhA3igKIsUIhreVhsHgHGeCai5VZZHmaPgSZkxj/i6sW9cLqNJNzFb2D5sqbapfmGALVO52 - 5arIR5wn4Zy+NGBp6IUcMUojxCThno88ToMwmM9nXnx9ucrQjcLhHrmFfS/LEvmGO75kYoEaDV2H - rXJDRm/YoddB3q1/IA/oO7mof2pSgqVPN7NK5k2Juhch7bqeXoQHNGhvyIIcNACzpihzVH1gwyQ6 - YqmV+MfteSg0fJU5TguDb0t9IeMw7mDIaxF0Y6Xcp8EzGu9lvbYFTqefYYXrXg7jmGR3JnF/2Eri - uJ02lVH83tLSHrb+QIG2mU7vQHNV1D3tGLpJcCzUs7IfX5E3m6j4SrcsWAm1khx1LwGpFzpg1jW5 - y353zcxy7JDpKIrj8ip3gKlFY3tQj51fvzfS/PYwyiZKLhSr4FNBQoWr12R4ndmrfyR4ockrdPZX - kzdZErm+H/ihGwZxnM0KkQkSyb9vCs9cu7KijVsGLN4WAgZr8hkhB7k0gyO1DhTsc1jKCjNNoJnC - WtIPqda707Jr2yGOzoyUpd7tJqAcCc8GmxABXYfbGB3SScIje7R3ZL+TLp+yZ3JFzviS/j2jskyB - nINZ4nFPbtkA8hrgsqqYyP8PfFwaZZEbD9/R7URVZ7+nYcs3W5z+iPYjNwnJQH9M+wfdnQkq264c - dNyhkiD0o/6KnlSxoGFnTUIhX/MS4apW+FzgC1DnkFQKzWYl5tfuBSOKR77n+uF7/K3F5p8LITfI - n6bwwmiSo3qb5btUFH5vUBtgmmRLrk9/DHjJtC44fCtELl9opa77cxuSSZ55b8v/W6lNV0UN80bQ - UKauMVuSwDZHKRcFJ0jQa8Fhhpw1Gg9bKUMhDaDYkNafV9I1uc9mQqdQgygKToZHt56DKI6j4xlz - 4hD3JbLNiG7ozUhvNphbh+275tug6ylwmvIJxDecfZZypXdvqkkzKwu9fHwmj//dMjiCidTmYf/4 - 6kWPgo6LHAaHAi+wEIfevgsubYmSeBfnP1BLBwht8n+kqwMAAEYLAABQSwMEFAAIAAgAVROfTwAA - AAAAAAAAAAAAAFgAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYtNDNfNTA1 - MGNlXzAwNV9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1srVTbctMwEH1nhn8Q - euCJ9d2OE2oY04Y2Q3qZJKWFF0axN6kY2xKS3FK+Htm9pEObDsPwql2dPXs5Z0cblMRwU2FGJ00h - at6syQx/tKgNJSUz9j3w/CH4AYT+wgtGQTKKQsf3Ukp4ow1rCpsSe7FXICWtqjLqMsndEmUlrmts - jHYrC6PN+5snVNk+Nwft8jWr5VvDa8w2Bb55AQQJROFXSmo0F6LM6P54QYm5lraMuiMmuQ1ESRq9 - Cd5YIruiabAwXDQZ/YQoIa/4paWTtxZC8V/sJvSBacdxKDkQ2mT0CpdMSrjiDVRizavv7bq+Dq9+ - OLqoHfarVWgzNLfUnQbtME41KsjXtqOM5l0YznA57+Jg6xslqgqVmyaO5wycYULJT6g13FKGjvAq - iaNluSyh9JhtMkoR0gFbQVIWXpwUrFiubDPncJafzeG0QbuPEks4nU3/21B3p5Px0QImJxn1w9QZ - +k4QeU7qj8I4ii3nc8hnM5ge78Nk7+8JzyeLMeyNT6bHXw57ePt323gpOcvnNvljfjpdwMHxfHGU - H463529bxzl8FOqKqW5CJ0oYkdELY6Tue5ByjuqSF/hH6N3LF4TsPDz6vfs7vf3h7KOZoW6r5+8/ - HlDSo/0N3rQXwKbUs8pKhvfIW7EPWcPWqDZcbdvPiLWDdN/tvAIgZat6NYyIPwhqTQBuu9haixis - JXjD2GdewgjX5ASb0vrEcyXDbj6PSnoPC+643R4esUrTTdLTKYE/fJDycJnHrVmLzsEUaikabS1g - +1SiMN74yl26NTTT6l2ru873AkpuHhb4s1N9UaA0WFLS3Yo1MnrICyW0WBmYTOau7zneP8t+lxUX - eOckGZWKX9qr6a9ZyyM08BmV7h0usg4TeqFvlzoVxa239bc/ct1tsntaRv/Jqjv/s74Ii96lratW - /IaX+12L5i0pLpjSaLLWrMA63Pa7eHrhYTC4W/hvUEsHCEG5gDHWAgAAsQYAAFBLAwQUAAgACABb - E59PAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNi01 - NF81MDUwY2VfMDA2X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWytVcty2zYU - 3Xem/4Bi0ZVBguBDpGKmw8iKralkayQ5drvpUOCVjAxfAUA7ztcXpKxKUSxN0gmXwOHBua9zz5WG - Gmmhc4jxqORVIco1msGnBpTGKEu1OWfUiYjDiOssKOuzoO97lkN7GIlS6bTkBuJTn3LAqJF5jO20 - FnYGdV49F1BqZeeGRuk/Nkcg40uhr5rl72lRv9GigHj3wD+UERYQz/0bowL0Q5XF+HK4wEg/1+YZ - uRVWC3PhBaF3xs4chtGgKkvgWlRljP8EqEmSi0ejJ2kMhxRf0s3Vu1RZloXRVaV0jJ9gmdY1eRIl - yau1yD826+LZffpkKV5Y6ZdGgkEoYbRbJZhs3CqQJFmbkGKctNfkDpbz9p6Y97Ws8hykHQYWtXpW - FGD0mRSKvGgmreJV4HvLbJmRjKYmSi8EEvbSFQkyTv2Ap3y5CjG6J3fJ3ZzclmAKkkFGbmfjn5bV - wXg0vF6Q0TTGjhtakWMxj1qh03d9zzea70kym5HxzSUZXXy/4PloMSQXw+n45q9JR2/+PZZejO6S - uQG/T27HC3J1M19cJ5PhcfyxctyT95V8SmWboamsdBXjB61r1cVQ13OQj4LDwdXbX39B6Hy/6wc5 - pGVTo/siR+NqbX4/0fXM9Jr99vw3QlDWyK6r+ogWChHyLfPFfyPwosW6BD0D1eSnR8szj3RsB0pf - 5Rt3s7W7Oil/j/ko9yQt0zXIndbTGfmK8oB02sg1oM3Yt06AzKwUJ+kY3cWOuu+rWs2gqB4BGZaa - 0Mh3ztAUysxY1hmSwMGMfIZSjRxmu47dugrq/MpjKJmcSgzz6em6vmix28Y5LL8X7urf4s5fRTn0 - ELbfhLv6Ic5Db2W+iKWRRz0O4Ec+QBhy6gDvRcxjq9WS9pBQ6F0j8jb8H4/NcfdFH5HMnB3oeyD7 - Ed00el21y0SCqqtSGTM+PlcscHcWv4Wb3aIbNTAO2K4g0xebgwV8bv2Xc6g1ZBi1s2V2Cp4ILitV - rTQZjea2Qy1T0v9pwIOUP8DW02NcS/FopqzzFVVfgyYfQKpu13jG613qOhE23sFftkznQn3bPmaA - rxvaT9qa7SYyo0YW3cI0+y0XG132R1WVbxB/SKUCHTd6Rcyu+cbMnGBb8yMV77Et4F9QSwcIGGSw - GVcDAAA9CAAAUEsDBBQACAAIAGITn08AAAAAAAAAAAAAAABVAAAATG9nRmlsZXMva3VkdS90cmFj - ZS8yMDE5LTEyLTMxVDAyLTI3LTA0XzUwNTBjZV8wMDdfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hf - MjAwXzBzLnhtbJ1T0VLbMBB870z/QdUzZ8uOCQ6NmXFDKBkCYRKnSR9t50jEOJaRZAJ8fc+m6XRg - 0nb6qt1b6Va7fWOxYlbaAiM+KnO1leWaTfGhRmM5W6WWzn3h9cDzoeMlwj/1T05F4AR+yJksjU3L - nCjH4ljkyFmti4i7aSVdg9aSlnEzTZQNZ1u0G7WK+Ndhwpl9rmhK7++pJAFBNwyO/CPP52ygyhJz - K1UZ8SvECuJCPpJ8XJOGli/pK/QlNY7jcHapjI34DrO0qmAnSyjUWhb39Xr73Nk9OCbfOulLrZEY - Rlo0Tom03NyghniNJc3GDQwLzGYNDnS/1aooULth1xHOidPrcvYEWwM/3wzNi7NMeF2vG4IgiyAI - sgDSMEwhC/JeJrK7NOjknC1hES9mMC+R/F3hCubT8SGTBuPR8CaB0W3EvU7o9DzHD4QTeqd+2BXk - +BLi6RTGk68wOv/3+2ejZAjnw9vx5Pt1K0+zh9zibBHPiHwRz8cJXE5myU18PTzMP+TuEi6U3qW6 - WfhWK6sivrG2Mu0OVTVD/ShzfAOdffzAWP/3TA4KTMu6YsttwcZqTeN/yaR71v8EwFa1bkNyyjpi - axjAe+lJbdeqibtGU6nSUL7+oH1M7u9Tu6dT+m1tBvSpTUkEZ68HCT5RpCZXnDVboo74tcy1MurO - wmg0cz3hEPc/0zRI8w3uAxrxSstHKmnrqqlu0MI31KYtTkDB7YiO12v7ZCnnkLS1o5YUMm/tce+N - Kj+zfJNqKmxU2zugPd956PX2Hvbd5nfeehz8wn8AUEsHCDOOU3pOAgAAUQQAAFBLAwQUAAgACABi - E59PAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNy0w - NF81MDUwY2VfMDA4X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWytlEtv2zgQ - x+8F9jtweeipI1FPS27UhZq4ibHOA7bTpL0saGrssNCrJJU0/fRLKXGTbeMgWFRHzmjmP6/fnjbY - EiNNiRmd1qKpZL0hc/zaoTaUFNzYd595KXg+BN6S+WN/NGahE7ERJbLWhtfCukQsYgIp6VSZUZe3 - 0i2wLZvbCmuj3dKG0eavuydU2aE0R93qNa/at0ZWmD0k+If54McQBp8pqdBcNUVGDydLSsxta9Oo - rbBWWkMYJ+Eb/43nU7Lf1DUKI5s6o38jtpCX8trqyTsbQ8nv/M70nmvHcSg5arTJ6A2ueNvCjayh - bDay/NJtqtvg5qujReXw751C66Gl1e7UaLtxrlFBvrElZTTvzXCBq0VvB5vfqKYsUblJ7DBn5KQx - Jd+g0nCvGXrF6zgKV8WqgIJxW2WYICQjvoa4ECyKBRerdULJJVzkFws4r9EOpMACzuez39bV/dl0 - crKE6VlGvSBxUs/xQ+Yk3jiIwshqvoR8PofZ6SFMD14ueDFdTuBgcjY7/XQ8hLf/7movJRf5wjp/ - yM9nSzg6XSxP8uPJbv9d47iED4264arv0JlqTJPRK2NaPdTQtgtU11LgT6Z3f7wiZO/x1h/8WNT7 - P5xDNHPUXfn8AQT2AIZoL4k3Gy7gIdWzp/Uo8s7Yx7zmG1QPWm3Zz1xrH9J9t/cnACk6NVzDmHge - qzQBuK9iZy4iRBKu7Zf6PA1ZKBCjNEJMEsE8FKPUD/31esVGRGryvpNlYSHynJw4fErOf8Tsuf2M - flEcPHJ6icvjQZ92ZtP0eFOo26bWFg+7OxaPrMQtdLbulnam0/v2JnsoWuzcPSzxW08EIbA1WFDS - 75GlHD2WQjW6WRuYTheuxxz2v5Gwz8UVbimT0VbJa7tRw6br9gQNfESlB/qFlj4BC7yUklkj7rk3 - 3MXYdXed5NMn9ps43rPRMhOWA8ItcUt5p8v9opv6LRFXXGk0WWfWYOn3y5r+GPnTA/fDdLvF/wJQ - SwcIOIUGvOsCAADOBgAAUEsDBBQACAAIAHETn08AAAAAAAAAAAAAAABVAAAATG9nRmlsZXMva3Vk - dS90cmFjZS8yMDE5LTEyLTMxVDAyLTI3LTM0XzUwNTBjZV8wMTBfR0VUX2FwaS1zZXR0aW5ncy1i - cmFuY2hfMjAwXzBzLnhtbJ2T3U7bQBCF7yv1HbZ7zfi/xkljJDcEiAgEJU5DLx17kixyvGZ3TYCn - 79g0UkWVturtzszZnbPfGWiDNTPClBjzcZXLnag2bIaPDWrDWZEZOvcctweuB76bOl7fO+37gdVz - Hc5EpU1W5dTy2fns5MhZo8qY21ktbI3GkJa2V4patpzt0GxlEfPLUcqZealpSh3uqQUVgjAKTryT - VngoqwpzI2QV82vEGpJSPJF80pCGEq/ZW+lrpi3L4uxKahPzPa6yuoa9qKCUG1E+NJvdi79/tHS+ - s7LXRiF1aGFQWxXScguNCpINVjSbtGVY4mre1oHuN0qWJSo7Ci3HOrV6IWfPsNPw883Qvjjy/XV4 - 6vuwCkMHgnUWQOZHIRS+4+ZR7odF7nF2D8tkOYdFheRvgQUsZpNjJg0n49FtCuO7mLt+RC5bXuBY - kdv3otCJWq1kNoPJ9BLG5/9+/3ycjuB8dDeZfr/p5Gn2mFucLZM5NV8ki0kKV9N5epvcjI73H3P3 - Hi6k2meqXfhOSSNjvjWm1t0OdT1H9SRyfFc6+/iBscGvTA5LzKqmZve7kk3khsb/wqR9NvgEwIpG - dZD0mbPTDOB35WljNrKlXaGuZaUJrz9Ie/T/B2gP7QS/afSQ/rTNCGH7dpDiMxE1veasXRJVzG9E - rqSWawPj8dx2HYt6/xOmYZZv8cBnzGslniijnam6vkUD31DpLjcBces7vtvr4mQIc0i71FFISpF3 - 7tgPWlZfWL7NFOU1bswaCLLjFg7s9m/eO+yGB4t/AFBLBwjPiCjlSQIAAE8EAABQSwMEFAAIAAgA - hROfTwAAAAAAAAAAAAAAAEcAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjgt - MTBfNTA1MGNlXzAxMV9HRVRfZHVtcF9wZW5kaW5nLnhtbIVSXW/aQBB8r9T/cL3n7MXfYIQjucRJ - rDgBYSNo3w57IVfZ54t9DiK/vgdVq6oV7evuzOzM7k57jYpooWuMaCrLthFyT5b4OmCvKam4NnXH - skOwHXDtwnImznhiWyx0RpQI2WsuSwPxLd8qkZKhqyN6XQ2NoqRB/dJWEb1PCkr0URlY91NYCdPw - grF35VzZFiWzVkostWhlRB8RFcS1eDN6cVmi0pAYZ5VxFlFRoTR2j6Y1GPlOvPMfrM+8Z4xR8tD2 - OqIH3HKl4CAk1O1e1N+GfXN0D6+sLxvG34cODaIXGnsm0QTdwDpe57CSeJqEFayW2a8gsyxNngtI - FxG1gxFzHIs5vs9s2594tjsKT/R4uYRsfg/p7WkZVbDFksNu523BC0cBbMtwB5YbBHa1s7g7Nsvb - QJ4WCdwmi2z+5ek8wHAvGadkHecGfBevsgIe5nnxHD8ll/GXg9613YF3p4yLrtVtRF+0Vv05g1I5 - dm+ixD9aNx8/EDL9/VVmNXI5KLJpapK1e0P/z6tc30w/AZBq6M73mhCr6QnA38pfhcp1h7wxL6HN - rdlcmtI/9QOHku9QSwcILEsEILEBAADJAgAAUEsDBBQACAAIAE4Tn08AAAAAAAAAAAAAAABLAAAA - TG9nRmlsZXMva3VkdS90cmFjZS9SRDAwMTU1REUxRTdCQy05M2JjZTQwOS1iYmNjLTRmNjctOWVk - NC0xMjIxMGEwZmJlMzIudHh0NcvBCsIgGADge9A7/A/gmNoS5m3URVrbSOkqo6SEtpn+Hnr7RtD5 - 4+OU1QXjxY4ZyiUXktcAGseIOcDFvbNLSCDHl4RyDL5MDtHPj0Rgcvhc7hKGXhsC+AlOQvyH4FcR - +6oinAgC+nC2+qQGq3Vrr02rjo1RfSeBrnabzC93y+y2my9QSwcIBYlYBYMAAACRAAAAUEsBAhQA - FAAIAAgAZROfT1X9O3cnAAAAKAAAABIAAAAAAAAAAAAAAAAAAAAAAGRlcGxveW1lbnRzL2FjdGl2 - ZVBLAQIUABQACAAIAGUTn09taeGOHQgAAGgYAAA8AAAAAAAAAAAAAAAAAGcAAABkZXBsb3ltZW50 - cy9jYzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L2xvZy5sb2dQSwECFAAU - AAgACABYE59PTTyJtTIAAAA5AAAAPQAAAAAAAAAAAAAAAADuCAAAZGVwbG95bWVudHMvY2M4NGZm - ZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdFBLAQIUABQACAAIAGUT - n0+JmZAvZgEAALwCAAA/AAAAAAAAAAAAAAAAAIsJAABkZXBsb3ltZW50cy9jYzg0ZmZmZjkyYTk0 - MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L3N0YXR1cy54bWxQSwECFAAUAAAAAABVE59PAAAA - AAAAAAAAAAAAEwAAAAAAAAAAAAAAAABeCwAAZGVwbG95bWVudHMvcGVuZGluZ1BLAQIUABQACAAI - AE8Tn08MBWYkcgAAAIwAAAAYAAAAAAAAAAAAAAAAAI8LAABkZXBsb3ltZW50cy9zZXR0aW5ncy54 - bWxQSwECFAAUAAgACABWE59PeiEzSekEAADuDAAAHAAAAAAAAAAAAAAAAABHDAAAZGVwbG95bWVu - dHMvdG9vbHMvZGVwbG95LmNtZFBLAQIUABQACAAIAFYTn09FVdYjZwAAAJYAAAAkAAAAAAAAAAAA - AAAAAHoRAABkZXBsb3ltZW50cy90b29scy9kZXBsb3ltZW50Q2FjaGVLZXlQSwECFAAUAAgACABS - E59P+atVDSkBAADCAQAAFQAAAAAAAAAAAAAAAAAzEgAATG9nRmlsZXMvZXZlbnRsb2cueG1sUEsB - AhQAFAAAAAAAhROfTwAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAnxMAAExvZ0ZpbGVzL2t1ZHUv - ZGVwbG95bWVudC9QSwECFAAUAAgACABOE59PIQlMjdsAAAA3AQAAUwAAAAAAAAAAAAAAAADWEwAA - TG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTI5XzUwNTBjZV8wMDFfU3RhcnR1 - cF9QT1NUX2FwaS1zZXR0aW5nc18wcy54bWxQSwECFAAUAAgACABPE59P7g/KAlECAAAfBAAATwAA - AAAAAAAAAAAAAAAyFQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTI5XzUw - NTBjZV8wMDJfUE9TVF9hcGktc2V0dGluZ3NfMjA0XzFzLnhtbFBLAQIUABQACAAIAE8Tn0+SXrmh - OAIAAPcDAABWAAAAAAAAAAAAAAAAAAAYAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFU - MDItMjYtMzFfNTA1MGNlXzAwM19HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnhtbFBL - AQIUABQACAAIAFETn0/7CEg2MgIAAPcDAABWAAAAAAAAAAAAAAAAALwaAABMb2dGaWxlcy9rdWR1 - L3RyYWNlLzIwMTktMTItMzFUMDItMjYtMzRfNTA1MGNlXzAwNF9HRVRfYXBpLXNldHRpbmdzLVNj - bVR5cGVfMjAwXzBzLnhtbFBLAQIUABQACAAIAFITn08LCIo1lQAAALYAAABCAAAAAAAAAAAAAAAA - AHIdAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMTktMTItMzFUMDItMjYtMzdfNTA1MGNlXzAwNV9T - aHV0ZG93bl8wcy54bWxQSwECFAAUAAgACABVE59P6IJTvuYAAABGAQAAWgAAAAAAAAAAAAAAAAB3 - HgAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTQyXzUwNTBjZV8wMDFfU3Rh - cnR1cF9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMHMueG1sUEsBAhQAFAAIAAgAVROfT0U2Whw3 - AgAA+AMAAFYAAAAAAAAAAAAAAAAA5R8AAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQw - Mi0yNi00Ml81MDUwY2VfMDAyX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMueG1sUEsB - AhQAFAAIAAgAVROfT2+ER/rEAgAASQUAAEkAAAAAAAAAAAAAAAAAoCIAAExvZ0ZpbGVzL2t1ZHUv - dHJhY2UvMjAxOS0xMi0zMVQwMi0yNi00Ml81MDUwY2VfMDAzX1BPU1RfZGVwbG95XzIwMl8wcy54 - bWxQSwECFAAUAAgACABlE59PbfJ/pKsDAABGCwAAUQAAAAAAAAAAAAAAAADbJQAATG9nRmlsZXMv - a3VkdS90cmFjZS8yMDE5LTEyLTMxVDAyLTI2LTQyXzUwNTBjZV8wMDRfQmFja2dyb3VuZF9QT1NU - X2RlcGxveV8yOHMueG1sUEsBAhQAFAAIAAgAVROfT0G5gDHWAgAAsQYAAFgAAAAAAAAAAAAAAAAA - BSoAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNi00M181MDUwY2VfMDA1X0dF - VF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACABbE59PGGSwGVcD - AAA9CAAAWAAAAAAAAAAAAAAAAABhLQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAy - LTI2LTU0XzUwNTBjZV8wMDZfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBzLnhtbFBL - AQIUABQACAAIAGITn08zjlN6TgIAAFEEAABVAAAAAAAAAAAAAAAAAD4xAABMb2dGaWxlcy9rdWR1 - L3RyYWNlLzIwMTktMTItMzFUMDItMjctMDRfNTA1MGNlXzAwN19HRVRfYXBpLXNldHRpbmdzLWJy - YW5jaF8yMDBfMHMueG1sUEsBAhQAFAAIAAgAYhOfTziFBrzrAgAAzgYAAFgAAAAAAAAAAAAAAAAA - DzQAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAxOS0xMi0zMVQwMi0yNy0wNF81MDUwY2VfMDA4X0dF - VF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACABxE59Pz4go5UkC - AABPBAAAVQAAAAAAAAAAAAAAAACANwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDE5LTEyLTMxVDAy - LTI3LTM0XzUwNTBjZV8wMTBfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hfMjAwXzBzLnhtbFBLAQIU - ABQACAAIAIUTn08sSwQgsQEAAMkCAABHAAAAAAAAAAAAAAAAAEw6AABMb2dGaWxlcy9rdWR1L3Ry - YWNlLzIwMTktMTItMzFUMDItMjgtMTBfNTA1MGNlXzAxMV9HRVRfZHVtcF9wZW5kaW5nLnhtbFBL - AQIUABQACAAIAE4Tn08FiVgFgwAAAJEAAABLAAAAAAAAAAAAAAAAAHI8AABMb2dGaWxlcy9rdWR1 - L3RyYWNlL1JEMDAxNTVERTFFN0JDLTkzYmNlNDA5LWJiY2MtNGY2Ny05ZWQ0LTEyMjEwYTBmYmUz - Mi50eHRQSwUGAAAAABoAGgAtCwAAbj0AAAAA + UEsDBBQACAAIADpPLVAAAAAAAAAAAAAAAAASAAAAZGVwbG95bWVudHMvYWN0aXZlDcGBDQAgCAOw + l5CMyM7RZfx/grZSYz7mIQKyi2V3K5a1mciZG/sBUEsHCFX9O3cnAAAAKAAAAFBLAwQUAAgACAA6 + Ty1QAAAAAAAAAAAAAAAAPAAAAGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhj + MDFlYzc5MjQyZmZiMDcvbG9nLmxvZ51Y247byBF9ToD8A+GHeAyoGXazb5y8zMJ2NkCyxsIXLDAY + YNEimxKzEqmQ1MwqT/sRfsyvBPkX/0B+IadJiWyORlzP+gK7pllVpy5dXVUsYhGJKKHxxyi5Fuo6 + 0iHXkWQyvl182mWmLcpV0OyX2yrbb2wTLnIb5bnggiwp+HiWJSSRKiaxZHkcUUMTFi2iP/yePSFZ + CK3jWNwuvq/tztROdGZ3m+qwtWUb5FUdpNV2W7RBkQUv01TzHL8S9jJcGJVaphgjkpmIcC0pSXIl + SEK5sMss4TJTl7SqOFJRTG8X39rS1r1FntomrYtdGy6o0vhuaYlMsiXhMmfESAqNcZ4mKY2X+OtU + /O4pyzSlkY6g41PjrGrXFuZsNtWDo5xRpsyCtgpWPQTr290DuA5emn/taxs0Resf96cBOQSElBXJ + qpZ44EkdvHhzfbeutvbOMd7BsRX+U9WHFwGpHh2OjM1dW1WbBt9AaGbxj+P+3rTrRyyePIThaftp + FMpYJgmT8z7uIuzUhf9ogh/sMvgAnZ3MM5dCpI604nF0u3i/L8tHqXL0aBiGC2tlmmZWEqGRijwS + CTEaAWQRRVqkOtVxlxnnYXM6hJCSqtvF6z5E14+sP3PYXf+TMN1mLy55Iw5pJFSsIPavCPvGYT9Z + PQq86EweRkwJ6hL2dW37dDW73Y9VnkOUDdft9pJmj/Vv+2z/4VCm4bu3H4O8rrbIrwuJ8hKJ+fj0 + 4eGhrqr25YwmHlMewcY3dmO7KpEXGws566pxZNOaunVgN3NCRILMQUF4Xe0Ozk9HGeGqaItVWdX2 + NzDvTPqTWbkkq8rfwl5XqW2aX2VXiVY6OYPe2Pre1uCeU51EEeW+7746wFLEUircir9X1U+dx1A1 + wQ2FfxpUB/sys3VfSVwYZ3ItiZigCaD0hauLGtnvgmPZGUReToRBwrG82ix4sMswrcq8WH2N5nfH + igC3NUVVNoG5N8XGLDc2qMqulO42psXrsA1MjQxDtQlZ9MeuBvwZlA6ZT9DEp5icUGpC6ZFCMRAT + ik4PGZ2cMj4lPS2QxB7xeohwGk9FxR56nHLPMsrCKeV/ysLYw8DCAQKqwMjGQzolBhE8ZOGAxBGT + k0G2OxmM5WHsS4t9Hqg94eEh1PqEh42HQwx4KHweOSU8AehJTtLAMX4mYNzwmfCxCSAY4Ahfj0D2 + eCdqSnjStH+SjHrAPp5I371Iy9Eh0ocjfQTSRyBDD4EME1/0RGnii05GhzieIXMBZwoO2XbyHM48 + b3XUEPGO8qVMDEEaDlKAdoSofOsVrB8cq3zrlR8M5btC+a5QviscMQQdeqZaozEcCNOoVgPQwIWs + 8U+8XNO+Jo0CMuB2xJAD2g+HIwYvOMLT46MDv+dmdzJKB+UlHyjq3RNHijHIjkQOnaKHGFDcvbl6 + SjWPmb5dfMCDnLYow6em41hYg+6+hcGnxgb+G9k9uq45TddVhTMTZEWe29r15EfW56ndbU98AVDj + ktKZ1yPmkYzQAQzDRlE0HfDDdhOYNpg0Lce25M775oJohhApzrTkt4sSgH745v27qdWH/cqUqweC + x4rgAb1BnQyj4F2F1rx//PAWLRb0qYbfCU+iWDD2bOFjPw23200Gzz6tApUAA5Z209Iz8b9/+82b + 794GmN3MjHBGqXTZ8kzhmyK1JZJkFrxA2COpuESfYn/e1WinbpDpuMZdTv54HCbvjmcXQuhL+fL5 + 318+/4I/AYJjdpa4xrILWTzDzYSMGfrokdvUtTmQHP1Ea0vw4/ez+FPXdVkMS6vStJjWOghyRkSs + NLp5H8K+LTYN2dp61XPPARAiSjiCNBrQ8WEC7FO0qpsOwfNkoDWD9S1pD7seAp8xQCaRSiY+tGWK + jm1f9/5nM7yaazU1fmvbdZU50DR8HmeOLFrfoEub42MRx8g+RduaFdShLF8G+gTbDqMwaStS2xWy + FHppqGYEUC3lNFB9poARj9AzGfvoZEXTjfIoQ53ZM4nOztXfm/rwa15mMRUqwaJnTK8aJdES7GbQ + +IMd93gG+zl7Y3JLlnv3ety45mwmxIwnFCO+r7wbNghGkLZIHXaUjBntT/G3u7pqK5fXVd5ZPycA + 5Y/pSa441fvGuvREtzCj+5y1c1l/J+JwLlQao5+eFATsBLIO7Jy3ztmqkuRFWTRrm92gQcPbdWUt + flQ3bW/6qxkDzsVBltms3b6iizxiF1zty11xLBHRnLQkEXx66xCHnw/EZFkNbLi0wRXmtwdTZwDr + 7tLQeRY79xGmV2DGk/c8Lf9sbrr++bKhcZSoSKAHGFM8s8v9CqjQOAdX26bDN6f3CRGNLTsz3IPW + i0C2njo11Oa2rtzlw90//XBbbF2p9bq/ddvuiK3rvoSjX54xHW0dXgIM6aMVJk3trnVei0MVXJV2 + VbWFwd4P7sUc4uvt6ryzE26Xc1p4lAjXb4xa3E0ihdOCCUHDVpsVppPn9HizoLPvq/UIpeIEu8Iv + nz//77//wR/3ri+r7DAWHopcCK6WhxaXEfu0sYWuzQNxn8Icr7t/7MzB/gJv3T3ZYM8IvBhl+Zz9 + SjHKsdH5y/FaYe8NLzdNvt9sDn0LfLaoRJPCY4k3Hq3gaVGJst36C97jtvKqeeUWlomJtbY2IpIb + RbjSihjKEpJrmsuUZnGe6SdX2VAlKJeCo6v6WBerle026LVNDyl2JVfos+4L+xCgu8ICuWjcBiV7 + hcV2nIuUU0WUyDNsSBNKlgKqc5ZJpY2IsdK/pFAyxoRAkXwz7ulHr4QLRRO6TFRKACslnOaQnauM + KKNiSTN0DjJzsv8PUEsHCH3lN+0zCAAAaBgAAFBLAwQUAAgACAAmTy1QAAAAAAAAAAAAAAAAPQAA + AGRlcGxveW1lbnRzL2NjODRmZmZmOTJhOTQwNGNlZTU5NWVlODhjMDFlYzc5MjQyZmZiMDcvbWFu + aWZlc3TTS88syUzPyy9K5eUqSEzOTkxP1csqzs8D8oryk1OLi6G84tSistQiIIeXSw+ohZcLAFBL + BwhNPIm1MgAAADkAAABQSwMEFAAIAAgAOk8tUAAAAAAAAAAAAAAAAD8AAABkZXBsb3ltZW50cy9j + Yzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L3N0YXR1cy54bWyNkk1OwzAQ + hfdI3CHKPonzR5LKddkU2NMVG+Q6k2ApjiPbKe3ZWHAkroBxmyhIRcIrz7z3PY9lf3184s1RdN4B + lOayX/txiHwPeiZr3rdrfzRNUPobcnuDaxg6eRLQG1t5HuY1YazMGruqhFYZyhhAXuUAZclQDKyo + kixpmj0qcGTNDqKjeZOKnMaW9u17IHRjcHRpOsP5FFDkkZuncY+jubHgt4Lybgq5F5wpqWVjQibF + lHa2OEaA1rQFQuva0+O+lpbu7W4YpDL2YtFkcO5ByVZZguBo3jpBG2pGTZ5HxqyMo0u90HZwNBY7 + C65wYke1uVDbvt5xASRBCQpQHMTpDlWrvFjlSXiXFmWK0hccXQFckAIG/AB/RKAyzNK0yOPMRvyy + TiMqc/1wS+ZF9rMsaae/+BwG/5p4cjnEvsLQgQGyUyPgaC6dyPWrATGQB9ppK07lpCmgtey700Kf + Wz9PtfiE31BLBwjQvGoXZAEAALwCAABQSwMEFAAAAAAAI08tUAAAAAAAAAAAAAAAABMAAABkZXBs + b3ltZW50cy9wZW5kaW5nUEsDBBQACAAIABpPLVAAAAAAAAAAAAAAAAAYAAAAZGVwbG95bWVudHMv + c2V0dGluZ3MueG1se797v419RW6OQllqUXFmfp6tkqGegZJCal5yfkpmXrqtUmlJmq6Fkr0dL5dN + cWpJCVCsGMhWULBJSS3Iya/MTc0rAfOBIokpKQrZqZW2SklFiXnJGUoKZYk5pam2SrmJxSWpRUoK + +hCN+ig6bfThxgIAUEsHCAwFZiRyAAAAjAAAAFBLAwQUAAgACAAlTy1QAAAAAAAAAAAAAAAAHAAA + AGRlcGxveW1lbnRzL3Rvb2xzL2RlcGxveS5jbWTFVt9v4kYQfkfifxiQLN1VwUmurSqRUh0iyx09 + MBQ7uZyEZDn2Ar6YXddeh9CH/u2d2bX5EUju+nQ8gPHszH47+30z8z6eQ9NyeyPfm3Z7zB+yWza0 + muCwv6D5SxPe83ApQc7n9Vq91m5D6+RHmz7dXN/ANU8TuVlxocANszhV2nTLszyWog2X9oV9+dur + kbRxkvGM/13Eeax4fry8BINh4/kGhIy4/TWHWOQqSBIe1WvrJfprA7z7QxQJ0Fe9NuiDxabT8dQc + U5/yAt7UawD6nKM4z2Ox2EbkTzwsVHCf8DNIEx7kvNqkWnIGmMAgyXgQbSobj2AVPHDIC8QQKwgD + AfcccE24RNs8kysIiyyjJHHxGGdSUMJsgrGQSgLPMpnVa2/LY7pcFekuCfQ25yqRYZCgP6GLeBJs + 8PspDQQlmpa4zIPu1Bv0uz3P7Vj/RumFZduzIFPxPAgVZlXnwxl7cM36A4dd4+9kOP4yYo7nu+Ob + aY+Z1FCkI1MVsYSJmX0hktedfsAAOsnPIhlTx9rCtGbr9TqTElmjD/8sqsPuPH/UdQZ95nr+pOt9 + 3IU9th3EXQUinvMcA1OWn8WdTNntYHzjnooNQKBPr3hhBwAEfwo/KcR3vzg9vze6NtBRUgNDW3go + ogLyjQi3dCwtxMhPZHRLI158AiJdVYTTruQJrQUqNI8TpFN5zsaO742S7/sco1WIYUhkSjbwtcgV + ZIUQtGeTENGeTVjLIomQ57nEx+yBvCgtBwfqWEGaRoEKrBlim1XOdrhCQWI69La7+kA3gTvfqDiJ + 1Qb6hQgVUveE2qnk6NUuT3ioHJR7WVBKDlf8NXDYkPU83xlfM/+WTd3B2DlIt7fkMJdJItd0xgAl + GknBQQo8vhTwORaRXOfQ/YfU+5nf6xK0r1M6vL4B67X9LCyrR6LBwnrw1gjg6C0bTazm998fspnd + DVzvWWyKMvN9qo5lumy1SpuGd+b+zlNULeaJ3bHO74fIXvAmVFo/3+CV1gBAeYjX4KWr19BNRv6f + rpb6SwAP/f8XvhLdfuGq0rGfpepdh1JJPlrbJoMOAkQxd5qNalUD77hBr0vcDbzJt8CG7l41rbxQ + JxSPpFS5l5voLbRi2mzcN1pp/+CP1uu+gA/mAY1x36o76sdARMl+S422AwL2Ox3x0tbVzRQ35PL5 + AIk8cPzJkAaSnYaqqeSypLDWYJvpFs17qwi9DuoRrm89wq8X0KIRZxen7G1kVoeGrRxbAg3HHYVc + UrSc7gZkjaFpL2J1ZS8XV/buqFfmkUrhd+pa3z/m950NpuqZYebRDFL1mjn8yYKIXj/b265CbSIN + wodgQYPUC6VCt2hrVq7DWUqKMslpkS8ps3vpq7JEzD26A818FERj25tarTSTUaGLeym4b9aOVKam + ZxBBfvSn7FxcICRN2JJyEMoVjhURZLJQMbYQtQwUrGPszWZoLvDfkotqnNuj6m6A009AJcTvWD+V + 92rp/1a9pofzXQNHhum5/KJpdugH2Okj4E+x6mFp6uzPtmcVvM42Gq2D8/uDEVgfqZw38YR6qKzX + NP5uiRyWQQ4y1BNrBFGRkZzX/B6oM8KO5KhnQwfaB2dWRlPskD9yHLx3hj5Ov1WvN7O5gXDsU8G9 + 3C7Y963X3hiN6Ht5Br0fizinWTsvwpDn+bzA4Qbx/QdQSwcIeiEzSekEAADuDAAAUEsDBBQACAAI + ACVPLVAAAAAAAAAAAAAAAAAkAAAAZGVwbG95bWVudHMvdG9vbHMvZGVwbG95bWVudENhY2hlS2V5 + szDVMzQ0MjTRMzEyN9cz4OXSrVTQ1c3L103JL9FNSS3Iya/MTc0rUdAtUlBysYrJyM9NjSnOLEmN + KUotyAcy8osqlRR089EkERqLY0ry83OKgWqAhqakAimQ7oDEkgw0LUjm8XIBAFBLBwhFVdYjZwAA + AJYAAABQSwMEFAAIAAgAIE8tUAAAAAAAAAAAAAAAABUAAABMb2dGaWxlcy9ldmVudGxvZy54bWxt + UF1rgzAUfR/sP4S+l0Sd2sptwGm7yrpOWp9Wygh6R2V+EdOOwthvX6q17GEvuScnN+eec2F+wkq1 + HLrKYXtuFZYcYlmf8gwlWYsSZ6OlUk1cCPVRy3IpqqxAOaLXT1HITcYY0E5C32CFJyz4A9AeQCLa + T64bugrPeP6qZdbyAQAdEIckLzGQKBRmpPdyYWYjk5lszIyxYSVs6tmux4y3m4MNplpQT54y13Rs + 52rlRkNwEFWlLflNU+SpUHldAR1ICOqyOSqUfBPqHNZiMbmIBLpjeIAtpkeZq7POTIcVdXFDoQSH + 7vTjeBUFfhK9rt9f/LX/NN943s8/LPkm6pC3M2abJps+MrJLopBYrjPZk12soW24zh5or92v9S/W + HrrZLb+/+wVQSwcIIZq6CCYBAADAAQAAUEsDBBQAAAAAAGJPLVAAAAAAAAAAAAAAAAAZAAAATG9n + RmlsZXMva3VkdS9kZXBsb3ltZW50L1BLAwQUAAgACAAaTy1QAAAAAAAAAAAAAAAAUwAAAExvZ0Zp + bGVzL2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1QwOS01Ni01Ml80OWFmODFfMDAxX1N0YXJ0dXBfUE9T + VF9hcGktc2V0dGluZ3NfMHMueG1sdY5Pa4MwGMbvg32Hd++5mVGnVdFC6S4y15ZFxm4SarYFNGbm + 9bBvv3RQGIVdn9/zr3SkLJCmQVUoSM60WHhRX4tyhNBL8nLEI854yMK45XmRpEUS3a/zEEEbR9Kc + vOUhl++ZV5Z5qDCQVgdOEWnz4RBGRZ9TX+HxIFoE+rbeP18WrPYkCdfpKlqlCGL33Imn+tgJ0XSv + 26Z+3Lb1YV8h9+w0tr/h/WQUwub2BqD8e383KGn8/bdxgGY6T///P+N+LdiUd4xBv8yS9GQKCLPR + AWO+ugzOzdc8ji/8B1BLBwgqjk7O3AAAADgBAABQSwMEFAAIAAgAGk8tUAAAAAAAAAAAAAAAAE8A + AABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTYtNTJfNDlhZjgxXzAwMl9QT1NU + X2FwaS1zZXR0aW5nc18yMDRfMXMueG1snVPbbtpAEH2v1H/Y7nNmWYPBgHAkl5AGlZuwKemjMQM4 + gl1nd52k+fqOnaJWjZCqvs6cuZwzZwbWYcFc7o4Y8rHK9ClXe7bExxKt42ybOoo3ZVOC9MBrJbLX + b3f67abotluc5cq6VGUE8XvprutxVppjyBtpkTcsOke9LGcndAe9DfliHiecuR8F4c15QpFTpu0F + navmVYezoVYKM5drFfKviAVEx/wJ67hD5WCCau8OtNIbto4ldce0KI55llaljQerFWdRSXNN/lrH + Qv45tUIIzkYvBU0IuSclZFrRkiUNuNOWYs+4oT7wnCs46v3pFLjHzvahXQibnUT6WhokhM0dWqGQ + 9FlZNBDtabOQR1Ua1riJqzwQE2f08Yim0e0IKQLRo51f4GThF3moqLf8boqbwAdvF3jgZ7stpH5z + Az0ZoOzuAgzSlLN7WEfrGFYK6URb3MJqOXmn83AyHs0SGC8qbr7wpeg1hSeDvtfsdvyqSbRcwmT+ + BcY3/z44HicjuBktJvPv07o91V6SibN1FBP4NlpNErije8+i6egy/pKs93CrzXNqKqYLo50O+cG5 + grxEHIoiRvOUZ/guNY1hOJ/cxEm0TEgDzq4/fmBs8KfF56Xb68riBm2hlaXLX/J4S3Ta8rdfz3By + vCvtkK5QPQbJ+hZI8IU8MNOVgytXclZtiSbk0zwz2uqdg/E4bnhSUNP/tMEwzQ54dlbIC5M/0YPW + qthihg6+obH17/jkuJZseT3OGteDTwBsW5r6EfpMniwDIG0GjUqav9NBLzgDfgJQSwcI9DjTMlEC + AAAeBAAAUEsDBBQACAAIABtPLVAAAAAAAAAAAAAAAABWAAAATG9nRmlsZXMva3VkdS90cmFjZS8y + MDIwLTAxLTEzVDA5LTU2LTU0XzQ5YWY4MV8wMDNfR0VUX2FwaS1zZXR0aW5ncy1TY21UeXBlXzIw + MF8wcy54bWydk11vmzAUhu8n7T94vu4xHyFAslCJpWmLmjZVIEt36cBJQgWY2qZfv34mXbepUqRp + t35fH5/z+jkTpbElutQVRjRpclGXzY4s8aFDpSkpuDbnru3aYDvgDDJ7NB7646HH7DCgpGyU5k1u + LN6Ib0OHkk5WEbV4W1oKtTa1lJXmdfbSIiU16r0oInoxyyjR5iii8v2htjTC0An8E/fEp2QqmgZz + XYomoleILcRV+WhKxJ0pIctX/iZ944oxRsmlUDqiT7jhbQtPZQOV2NV1oB/84n7YMpXXjL92Eo1D + lRoVa9AMt1IoId5hY+7GvQxr3KS9DuZ9LUVVobRCn9ksYCPT1TPUCn61DH3DAy/kuAk8cLaBA16+ + LYB77gZGdoB2uA0w4JySO1jH6xRWDZp8CyxgtZwfDWk6T2Y3GSS3EXVsj3k2G7nMsYOx44a+1xeL + l0uYLy4gOfv3BtIkm8HZ7Ha++HF9KG/uHouLknWcGvN5vJpncLlIs5v4enbcfyzeOzgX8onLfuJb + KbSI6F7rVh1maNsU5WOZ4wfp9PMnQiZ/Q7no9E70UEpUrWiUoeA4lc4g/IPWu90wqjs1NdH3KNuU + vB1k+Gw+fnFFSd8Kyohel7kUSmw1JElqOTYz3v/88ynP9/iOUURbWT6aVTqMrtob1PAdpTrgbVaJ + DeyBMzpQrw2N0K9LRA3LVZkfSLfulWi+knzPpVmrqNNbMHNap5MvAKTo5ME0Jo5bKwJgMpxYfYQf + df+3/hNQSwcI5oqriDcCAAD3AwAAUEsDBBQACAAIABxPLVAAAAAAAAAAAAAAAABWAAAATG9nRmls + ZXMva3VkdS90cmFjZS8yMDIwLTAxLTEzVDA5LTU2LTU3XzQ5YWY4MV8wMDRfR0VUX2FwaS1zZXR0 + aW5ncy1TY21UeXBlXzIwMF8wcy54bWydk1Fv2jAUhd8n7T94fu51EggEGKmUUbpGpaUiYXSPJrmA + KxK7ttN2/fVz6NCmSkzTXn2Or+89/u7YWFTECrvHmKZ1IStRb8kCHxs0lpKSW3fe8Ts++AEE3dwf + jnr9US9iQW9IiaiN5XXhLOGQbwYBJY3ex9TjSngGrXW1jJcVVf5DISUV2p0sY/p1mlNi3VFM9fEh + JZzQC6L+WeesT8lE1jUWVsg6pteICpK9eHIlksaV0OKVv0lfuGGMUXIljY3pM665UvAsatjLbVVF + 9rFfPvQUM0XF+Guj0TmMsGhYjW64pUENyRZrdzdpZVjhOmt1cO9bLfd71N6gz3wWsaHr6gUqA79a + hrbhbjjguI5CCDZRAGGxKYGHnTUM/Qj9wSbCiHNK7mGVrDJY1ujyLbGE5WJ2MqTJLJ3e5pDexTTw + Qxb6bNhhgR+Ngs6gH7bFksUCZvOvkF78ewNZmk/hYno3m3+/OZR3d0/FRckqyZz5MlnOcriaZ/lt + cjM97T8V7z1cSv3MdTvxnZZWxnRnrTKHGZTKUD+JAt9J5x8/EDL+E8p5Y7eyhVKjUbI2joK/UBn1 + fqN1tDtGbWMmLvoWZZ+St4McX9zHz68paVtBHdMbUWhp5MZCmmZe4DPn/c8/n/Bih0eMYqq0eHKr + dBjdqFu08A21OeAdOry6fjdw69RS52iEdl1i6ljei+JAuvdgZP2ZFDuu3VrFjd3AgBLvfPwJgJSN + PphGxK8MAXARjr02wfdyNzjqPwFQSwcITibI2jcCAAD2AwAAUEsDBBQACAAIACBPLVAAAAAAAAAA + AAAAAABCAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAxLTEzVDA5LTU3LTAxXzQ5YWY4MV8w + MDVfU2h1dGRvd25fMHMueG1sVYtBDsIgEEX3Jt5hZF3qQMECaXsGE70AsRhJWlrLEK9vXZr81Xvv + d5nCChRpCj27bssj5Ay3V6Fx+SQGo6edS5TIUXDR3NE63ToUtbaKQUyZfHrsibL+aQSDNY4906K9 + VLKyDMpKcd41ovvN1EZLZZRmMPlMW3iXkOkvUbVqdKNxP5+H7sQ5jGXzFJfkAOcMnA/HwxdQSwcI + wgBy/pUAAAC2AAAAUEsDBBQACAAIACJPLVAAAAAAAAAAAAAAAABaAAAATG9nRmlsZXMva3VkdS90 + cmFjZS8yMDIwLTAxLTEzVDA5LTU3LTA1XzQ5YWY4MV8wMDFfU3RhcnR1cF9HRVRfYXBpLXNldHRp + bmdzLVNjbVR5cGVfMHMueG1sfY9dS8NAEEXfBf/DOM/dZvNRm4ZsodRSgqlKN4hvYWnWupBsYnYC + +u9dkYL44Os9w7lzc0d6ADLUaoGS1EjTAEf9PmlHCI0iH0c84oyHLIwrvsoWy4wv5ss0QTDWkbIn + f5Ks1GsaIkxjKzBQgwmcJjL27AJ56qrPQSN0mt76RuB+VyGQjwSOl6LBeBCHPJ1Fs1sEuT3U8r54 + qqUs6+dNWdxtquLxQSD37McncPdBerSq3Rv/6fr6CiD/PWbbamX9mJeuhbI/u//WpDxCCNb5DWPQ + TKMi09sMwqRzwJhX58G3+S+Powv/AlBLBwimKVtJ6AAAAEYBAABQSwMEFAAIAAgAI08tUAAAAAAA + AAAAAAAAAFYAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTctMDVfNDlhZjgx + XzAwMl9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBzLnhtbJ2TUW/aMBDH3yftO3h+7jkO + pCQwUimjtEWlpSJhdI8mOSBVEqe2Q7t++jnpmKZKSNNe7/4+3/3vd2NtsCYmNwWGdFalssyrHVni + c4PaUJIJY+M93uPAXXD7CR+Ozv0RP2eB51OSV9qIKrUSbyi2gUtJo4qQOqLOHY3G2FraidMy+Vkj + JSWavcxCej1NKDE2FFJ1/KjObaLv8uCsdzagZCKrClOTyyqkt4g1REV+sCWixpZQ+Zt4T30TmjFG + yY3UJqQvuBF1DS95BYXclaVvngfZ03nNdFoy8dYotAqdG9SsQjvcSqOCaIeVfRu1aVjjJm7zYP83 + ShYFKicYMM58NrRdvUKp4XfL0DXsBQI3vgfu1nfBS7cZCK+3gSH3kQdbH30hKHmEdbSOYVWh9TfD + DFbL+UmTJvPZ9D6B2UNIXe4xj7Nhj7ncH7m9YOC1xaLlEuaLa5hdWsf+sYF4lkzhcvowX/y468rb + t6fsomQdxVZ8Fa3mCdws4uQ+upue1p+y9xGupHoRqp34QUkjQ7o3ptbdDHUdozrkKX5IXXz+RMj4 + bygXjdnJFkqFupaVthSconLAetyu6YjWUW4ZNY2eWOtblDkl74EEX+3iF7eUtK2gCuldniqp5dbA + bBY7LmdW+587n4h0j0eMQlqr/GBPqRtd1/do4Dsq3eHtWbz6vO8OO+qNpRHacwmpZbnI045050nL + 6itJ90LZswobs4WAEudi/AWAZI3qRCPSd0tNAKyHY6e18GPec/8IfgFQSwcIzlIRCjsCAAD4AwAA + UEsDBBQACAAIACNPLVAAAAAAAAAAAAAAAABJAAAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAx + LTEzVDA5LTU3LTA2XzQ5YWY4MV8wMDNfUE9TVF9kZXBsb3lfMjAyXzBzLnhtbJVUS3PbNhC+d6b/ + AcGhp4AEJYoUFTMZ1pFtTeTHWHKd9tKByJWElgQQAPQjvz5Lyko8HivTXheLfXyPPXIeDPHS15DT + mSp1I9WGXMOXFpynpBIe4wM+4IxHLBoueTYZpROeBEPOKZHKeaFKTIkzsR5HlLS2zmlYgan14wdX + NstHA/n0wYNVoj6V/jfRmHfSFe5Rlbm3LVDSgN/qKqdXl4slJb77QO1+ACPxZRjx8dvB24SSY60U + lF5qldNPAIYVtbzDGhj3oDybg9r4bU4zHKVosa6VX8Uu/XfhgiCgZPpgsEJOI85Zid+k6oY40w5j + 97ASxrB7qVitN02T+i9J9c/IBLhJIL62FjDDSQ8uUIDw3DiwrNhg55wW3TO7hdWie2fdRFbXNdhw + nAQ8SIMM539gjWNPy7F+tXgsYJXGLFqnEYvLdcVEPFixjKfAx+sUUiEo+cxui9sFu1GADFVQsZvr + +f+F+Xg+m14s2eyqWz0OYh5kgyDi6SQajJO461FcX7P55SmbfUTI/+Nci9lyyj5Or+aXf5735fHv + IRQpuS0WmHxS3MyX7AzpvijOp4fzD6H+mZ1oey9sB8SV1V7ndOu9cf0OxizA3skSXjy9//UXQo6e + q/0EfLk9E6pCjn6q9DilpP/+osDCC+vJTusNagDtQPwWyEqU/26sblX1s7JxPKIkfH/0hjFStbZX + 6YREo6hxhLHduGE378uUQZI8S3m+0WXrN7rzrwVntHKo68MGTobYf++2fTra2bfuGDXWu56SXWAJ + D53CyxKMB9yqgxhsTs9labXTa89ms0UY8QBvwlyXT47rSZmE4SE9vM5vKIx8OiAdqC6s8QY5/2GH + M3bFK3LWrvpD4mUD+Y/r9DfP2ChlPPkLL4Iot7B3YU6NlXdYp5eIMxfg2R9gXX9HYnTnkA+j7DU6 + vrNx9CoXw1G25+IbUEsHCEoQmsrDAgAASgUAAFBLAwQUAAgACAA6Ty1QAAAAAAAAAAAAAAAAUQAA + AExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1QwOS01Ny0wNl80OWFmODFfMDA0X0JhY2tn + cm91bmRfUE9TVF9kZXBsb3lfNDZzLnhtbNVWTW/jNhC9F+h/mOpQJAcrkkx9ufEC3STbLYrdGnCK + vQgoaGpsC5FILUkl8b/vyE5iW5bVdtFLDQM2iOG8mTdvZnhtLNZgC1vi1HnPxcNKq0bm95oLdCDn + lo4DL/BGnj/yx/deOgnjiRe5LIwdKKSxXAoyYSlfJr4DjS6nzlWOdak2DlRo1yqfOrPf5/cOvPv+ + O4DrQ7wbjdwWcgUWq1pprjewu1qhtEPoIfMcuHp3/cNoBHmjyYmSEwjjysBodIozQ71UumqRlmjF + GhbcYP4PsSI/eIm9E/3tNss21E9c8hVqd3dyUeQTIRK2pE8a8JR5TCCGaYiYJMLzUcRpwILlcuHF + l+ezTFzmRW/IHewbVZYottyJNZcrNGipHG2WWzIG3fpJD3ljf08e0OeoUH/UpISWPtMsKpU3JZpB + hIj9W4RbtNhWqAXZawAWTVHmqIfAwpjAtjVvw+4E/n53HwoDn1WO88Liy9GQyyikkp/Iy+sQdNVK + uavBlHWsjvSu6k2b4Hz+ER5wM8hhlIx7YvCjAffbzMj/YGppep6tX1Bi20zHNTBCF/VAOyZuPKZ2 + PChBpwh3zyiarVd8pipLXkKtlUAzSEASUF3tpqbp8mZdc7ueOjR0NPlxRZU7wPWqaXvQTJ0fvzbK + /nQ7yWZarTSv4ENBQoWL5yS6zNrS3xG8NDQrTPZbkzdZErq+H/jMZUEcZ4tCZpJE8ueLwjO3PXkg + wx0DLd4OAkYbmjNSjXJlRwdqHWl4i2GtKswMgWYaa0V/lN683lZ9Zns/JrNKlebVmoByJLzW2YwI + 6LvcxeiTThoEx+I56ZY5f6SxKLhY088j6pYqUEuwazxsyh0dQMMGhKoqLvP/AyFndpnvuXFEc/bv + 2p003dvwgccO1s52Ah3Pzm9QP8WUpNRS36b+vfJOJJXtTvZK7smb+SwZzuheFytad+2Y0Cg2okS4 + qDU+FvgE1DuklcLwRYn5pXt2FIWBGwZ9e6gzZTuj5NeVVFvgD3N44rTKUb8s89dINH5t0FjghmRL + Y5++HETJjSkEfClkrp7opK7/89DmD0UNy0bSVqausTuOoG2OUq0KQZBgNlLAAgVvDO5NKUKpLKDc + cjYcF+tbrEF3dfcKlTHPP6prv54ZGwfh4Zw4egjclMi3O7qhRyM92mDZjtihKsdjehaeNJefnIX4 + gouPSj2Y10fVrFmUhVnfPdKQ/7llcAIzZezt2+trED3q2+TRwZI+w0IUsDejcybjNH3N4i9QSwcI + SwVNy6wDAABHCwAAUEsDBBQACAAIACNPLVAAAAAAAAAAAAAAAABYAAAATG9nRmlsZXMva3VkdS90 + cmFjZS8yMDIwLTAxLTEzVDA5LTU3LTA2XzQ5YWY4MV8wMDVfR0VUX2FwaS1kZXBsb3ltZW50cy1s + YXRlc3RfMjAyXzBzLnhtbK1UTW/bOBC9L9D/wPKwpw5FyYpku1EX2sRNjHU+YDtNu5cFLY0dFpLI + klTS9tcvpSR10FZFUfTKGc6bj/feoXWoiZOuwozOm0LVstmRJX5o0TpKSuH8e8QjDjyEcLTmk+lB + OuUJS6MRJbKxTjSFT4knYjsOKWlNldFAaBmUqCv1qcbG2aDyZaz76/4JTXYi3Wm7+VPU+qWTNWZ7 + gP/4BA5S4Mm/lNToblSZ0ZPZmhL3SXsY89iYlj4wCvn4RfRiTMmRahosnFRNRv9B1JBX8hYpyVtf + wsjP4j70t7CMMUpOlXUZvcON0BruZAOV2tV16j4k5fsDzWxRM/G5NegzrPStswb9Mq4sGsh3fqKM + 5l0YrnGz6uLg8Z1RVYUmGCeMs5RNEko+Qm3hoWXoG47HAjdpDOE2DSEutiWIONrAhKfIx9sUUyEo + eQvX+fUKrhr09yixhKvl4rct9Wgxn52vYX6Z0ZDHLOZsErGQp9MwGidxB54vl7C4OIH5sd/wTza8 + mq9ncDy7XFy8O+vL+79D66XkOl/55Nf51WINpxer9Xl+NhvOHzrHW3itzJ0w3YYujXIqozfOadvP + oPUKza0s8KvQq2d/EHL4lPTHX3j68IOdoFuibasf8z/xtOur/Uy9RS+APdSPlDXm/EvlwdpnohE7 + NPte/djDYu1LBq8OnwOQsjW9GqYkCie1JQAPUwxiEYe1hmhUirCMOZGWXGJTep8YhkwZDyeUfAPJ + nwIeBt0dvulqFO+TBlKS5EnK02NetG6nOgczaLVqrLeAoa2kLAzTva88pntDc6098rrrfY+S+4c1 + fuxUXxSoHZaUdFzxRkbPZGGUVVsH8/kqCDnzt/tF2R+J4gYfnSSj2shbz5qezVafo4M3aGzvcLF3 + mBEfdRteqOLB23ruT4NgSHbfl9FvsurO/7wvwrp3ae+qlbzvK3hvVfOSFDfCWHRZ67bgdTPMi+8f + POYHjwf/H1BLBwizb/IE3AIAALEGAABQSwMEFAAIAAgAKE8tUAAAAAAAAAAAAAAAAFgAAABMb2dG + aWxlcy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTctMTdfNDlhZjgxXzAwNl9HRVRfYXBpLWRl + cGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1srVXBcts2EL13pv+A4tCTQQIUJZKOmQ4jK7Ymkq2R + 5NrtpQORK5kZkkAA0E7y9QUpK5IVSel0wiOwfHi7+/bthTYgkclNATEeVqko82qFpvCpBm0wyrix + 5x71KKGMsM6cRufd4JwFDuv1MMorbXiV2hA/4suQYVSrIsYul7mbgSzElxIqo93Cwmjzx/oIVHyV + m+t68Tsv5RuTlxBvH/iHRqQbENr7G6MSzKPIYnw1mGNkvkj7jNoQk7m96DAannlnzMOoL6oKUpOL + KsYfACRJivwJMEpqi6Hyr3x99Y5rx3EwuhbaxPgZFlxK8pxXpBCrsgzMp172sSsdnZYO/1orsBE6 + t9ydCmw17jQokqxsSjFOmmtyD4tZc0/s+0aJogDlhj2HOoET2fp8JqUmL5xJy9gPOSwCn7BlwIif + LjPCfW9BIhoADZcBBJxj9EDuk/sZuavANiSDjNxNRz+tqv3RcHAzJ8NJjBn1HZ86kecwapvqhT2/ + eTyZTsno9ooML22J/yPh2XA+IJeDyej2r3ELb/89Vl6M7pOZDX6f3I3m5Pp2Nr9JxoPj8cfa8UDe + C/XMVVOhiRJGxPjRGKnbHKScgXrKU9i7evvrLwhd7Kq+XwCvaokeygKNxMr+/gPVu28vfiMEZbVq + VXWOaKkRId8jX34bgRcuzhWYKei6OD1aoRV0i7bH9CDeqJ2t7dVJ+jvIR7HHvOIrUFuupysSBd/I + Ivu9Ku2kVitA67FvnADZWSlPwnle9ApuD3AKpXgCZFEk8ToZP0MTqDJrWWdIQQp25DPEDWIu67iN + qaDWrmgPJeNTdfECO6yn2tpkZqm4jW72u+8H2/YfjwqivahdCW67h9I09Jf2izwe+dRPAbpRFyAM + U8ogDSLP95bLBQ1QrtG7Oi+a5E+mFlkxnU7tcFqM7cr6YOavQ3YTuq3NSjSbRIGWotLWiY8PlddQ + 3Pj7JtwuFlPrvrW/dv9gtD6Yw+fGfNMUpIEMo2aw7ELB4zxVQoulIcPhzGXUof/bffs8fYSNocdY + qvzJjlhrKlregCF/gtLtovGt0Xdoh1nJjkT6smJaCzp33WPud9jNftLKbNaQnTMyb7elXW5Fvubl + ftSieoPSR640mLg2SxIe0AXrbVR6RBS+twn4F1BLBwitGbYrWAMAADoIAABQSwMEFAAIAAgALE8t + UAAAAAAAAAAAAAAAAFUAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTctMjVf + NDlhZjgxXzAwN19HRVRfYXBpLXNldHRpbmdzLWJyYW5jaF8yMDBfMHMueG1snZNdb5swFIbvJ+0/ + eL7uAUNIgSxUYmm6oqZNFcjSXRI4SVwBprZpu/76GbpI06Ro02593vP1+jlTpbElmusKI5o0hah5 + sycrfOpQaUrKXJt3l7kMmAPOKGPhZOxP3LHF2DklvFE6bwoj8cJ8FziUdLKKqJ233Faotaml7K00 + kgMlNeqDKCP6dZ5Ron+0Jkse+7TcBEYOC87cM8elZCaaBgvNRRPRG8QW4oo/IyVxZ2pI/pa/h77k + yrIsSq6F0hF9wW3etvDCG6jEvq59/XRePo5bSxW1lb91Eo1CcY3KatAst1YoId5jY3LjPgwb3KZ9 + HEx/LUVVobSDc4tZvhWadV+hVvBrZugnHjO3cHz0YVS6IXh+7kK4CxkE2zAoxswr0GOUPMAm3qSw + btD4W2IJ69XilEmzRTK/yyC5j6jDPMtjVuhaDvMnxptgqBWvVrBYfoXk8t/7p0k2h8v5/WL5/XYo + b3JPuUXJJk6N+CpeLzK4XqbZXXw7P60/5e4DXAn5kst+4XsptIjoQetW9X7EbZuifOYF/hG6+PiB + kOnvTC47vRc9kxJVKxplIPgLlEe0jnKDqO7UzDjfk2w8fH/I8NX8+/KGkn4UlBG95YUUSuw0JElq + O8wy2v/88lleHPBIUURbyZ/NJQ2rq/YONXxDqQa6PUPXiI2ccIBeGxghG27DoFzxYgDdflSi+UyK + Qy7NVUWd3kFAiX0x/QRAyk4OoglxWa0IgPFwavcWno7/BFBLBwjGCLHfLwIAAPYDAABQSwMEFAAI + AAgALU8tUAAAAAAAAAAAAAAAAFgAAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDkt + NTctMjdfNDlhZjgxXzAwOF9HRVRfYXBpLWRlcGxveW1lbnRzLWxhdGVzdF8yMDJfMHMueG1srVVN + c9s2EL13pv8BxaGngAQpSiQVMx1GVmxN5I+R5NrtpQOBSxkZkkAA0E7y6wvSVqU6lqbTCY7YxeLh + 7duHE2NBIStsBRmeNVzWotmgBXxuwViMCmbdfkhDSmhAgsGKpuNhPA5jbzCgGInGWNZwlxKlrEwC + jFpdZdhnSvgFqEp+raGxxq9cGWN/e9oCnZ0Je96uf2W1emtFDdnugr9oSoYxoaM/MarB3ssiw2fT + FUb2q3LX6C0wJVxgENDkTfgmCDGayKYBboVsMvwRQJG8Eg+AUd66Glp8Y0+h98x4nofRuTQ2w4+w + ZkqRR9GQSm7qOrafR8WnofIMrz32rdXgMoxw2L0GHBs3BjTJN+5JGc67MLmF9bKLE3e/1bKqQPvJ + yKNe7KUjjL6Q2pBnzKRHHCUM1nFEgjIOSMTLgrAoXJOUxkCTMoaYMYzuyG1+uyQ3DbiGFFCQm8X8 + h7E6mc+mlysyu85wQCMvol4aegGNx0GYjKLu8nyxIPOrMzI7dRT/R8DL2WpKTqfX86s/Lvry7uwh + ejG6zZcu+UN+M1+R86vl6jK/mB7OP9SOO/JB6kemO4autbQyw/fWKtO/Qakl6AfB4UXo3c8/IXSy + r/pJBaxpFbqrKzSXG3f8iOojpzX/3ckvhKCi1b2qxojWBhHyfeXTf0bgGYt3BnYBpq2Oj1bspNNX + e4H01XrzfrZ2oaPw9yofrH3BGrYBvcN6nJGu5HeMBGG44wS59S/Gd2AR50lUupWGLI1oxAGG6RAg + STgNgMdpGIVluaYxEga9b0VVOHs69sJhMHwFzl6DHBS/6/7LHgajdIf4QEqyn7IvoavWbmRnnBqM + ko1xxnNYQ8ORg7i1s22681Hbmomb9t5uMXraWMGXzms4B2WhwKjTkfNPfCG4lkaWlsxmSz+gnjPj + /2k2E8bvYetfGVZaPDhF9TNk1CVY8jto0/tq5HxtQAdBit2c8GdH7Sdu7PuHhv314f1BP0Tnus6N + yar/HJyXV+IJl//JyOYt4vdMG7BZa0uSHNPF6w0Po9FWE38DUEsHCOn9zKQMAwAAKAcAAFBLAwQU + AAgACAAzTy1QAAAAAAAAAAAAAAAAWAAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1Qw + OS01Ny0zN180OWFmODFfMDA5X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8xcy54bWyt + lU1v2zgQhu8F9j9weeiplKgvS3KjFqrjJkadD9jOJruXgpZGDgtJZEkqafvrl1LiOk3iYLGojprR + 8OXMvI8OtAGJDDc1ZHjWFqLh7QYt4GsH2mBUMmPf+9SnhHrEC1Y0HUfxOIidUUAx4q02rC1sSpiy + KvEw6lSdYZdJ7pYga/G9gdZot7ZltHl/9wpUdsTNcbd+zRr51vAGst0Bn2lKopjQ0T8YNWCuRZnh + o+kKI/Nd2mPUVpjkNhB4NHnjv/F8jCaibaEwXLQZ/gQgSV7zG8Ao72wNxX+wu9AHph3HwehYaJPh + W1gzKcktb0ktNk0Tm6+j8kskHV00DvvRKbAZmlvtTgu2GxcaFMk39koZzvswuYT1so8Te75Roq5B + ucnIoU7spCOMvpFGk3vNZFAcJgzWcUi8KvZIWFQlYaG/JimNgSZVDDFjGF2Ry/xySS5asAMpoSQX + i/lv6+pkPpuersjsPMMeDZ2QOqnveDQee34yCvvD88WCzM+OyOzQtvg/Cl7OVlNyOD2fn/19MpS3 + 3+5rL0aX+dImf8wv5ityfLZcneYn0/35+8ZxRT4KdctU36FzJYzI8LUxUg93kHIJ6oYX8Cj07o9X + CB083PpJDaztJLpqajQXG/v5C1sfphi57w7+JASVnRq2aoy8oNGIkKelD3964F6McwRmAbqrX/RW + 7CcYDdUeSX223nww1y70kv44sPrvK++tfcJatgG10/piS4aST1riRw96guzzS8t3YlFRJGFln9Rn + aUjDAiBKI4AkKagHRZz6oV9VaxojrtGHjtel5dP+GyYO9S0NnsgJ6G5CVovbz//xFIPA3yXtSYmi + BykPl+isMxvRo1OBlqLVFj37tiixbrOk3AJtm25Jajo9sX4fgIvR3YsVfOtpUxQgDZQY9YtkCYpP + eKGEFpUhs9nS9ahjcfw/cTNhxTVsCZZhqfiNXanBRVqegiF/gdIDWUNLtoAGnl2iuSjumTp4buy6 + ++z+vH1/0z+i567lMVkNvwdL85rf6XK/aNG+RcU1UxpM1pmKWFM9WYyddZ+feES97cT/BVBLBwgn + g0VyGgMAACsHAABQSwMEFAAIAAgAOE8tUAAAAAAAAAAAAAAAAFgAAABMb2dGaWxlcy9rdWR1L3Ry + YWNlLzIwMjAtMDEtMTNUMDktNTctNDhfNDlhZjgxXzAxMF9HRVRfYXBpLWRlcGxveW1lbnRzLWxh + dGVzdF8yMDJfMHMueG1srVVNb9s4EL0v0P/A5WFPpUTJsiW5UQvVcRKjzgdsZ5PdS0FTI4eFJLIk + lbT99UspH06bOF0U5ZEzfHx8M/O4ZywoZIWtIMOzhstaNBu0gM8tGItRwazbD2lICQ1IMFjRdDyM + x1HihTTBSDTGsoa7lChlZRJg1Ooqwz5Twi9AVfJrDY01fuVgjH13uwU6OxT2qF3/xWr1xooasu0F + H2lKhjGho38xqsFeySLDh9MVRvarctfoe2JKuMAgoMnr8HUQYjSRTQPcCtlk+AOAInklrgGjvHUY + Wnxjt6H3zHieh9GRNDbDN7BmSpEb0ZBKbuo6tp9Hxaeh8gyvPfat1eAyjHDcvQacGucGNMk37kkZ + zrswuYD1sosTd7/VsqpA+8nIo17spSOMvpDakDvOpGccJQzWcUSCMg5IxMuCsChck5TGQJMyhpgx + jC7JRX6xJOcNuIIUUJDzxfy3qTqZz6YnKzI7y3BAIy+iXhp6AY3HQZiMou7yfLEg89NDMtt3Ev9P + wsvZakr2p2fz03+Oe3h3dpe8GF3kS5d8kJ/PV+TodLk6yY+nu/N3leOSHEh9w3Sn0JmWVmb4ylpl + +jcotQR9LTj8EHr76g+E9h53/aQC1rQKXdYVmsuNO/6Trvff7v1JCCpa3XfVGAWj2iBCnkLvP8zA + HRnvEOwCTFu9PFuRq0OP9gPVZ/Hm/XBtQy/yHw4fkHdiH7OGbUBvub4sSQf5RJI42UqC3PpO8S1X + xHkSlW6lIUsjGnGAYToESBJOA+BxGkZhWa5pjIRB71tRFc6eXnrgIEqfYUMfk9nzu+o/qWEQbpN2 + pISDRymPW+i0tRvZGacGo2RjnPHs7qFBQrd2dp/ufNS2ZuKmvbdbjG43VvCl8xrOQVkoMOrayPkn + PhZcSyNLS2azpR9Qz0H+otlMGL+Ce//KsNLi2jVUP0NGnYAlf4M2va9GztcGdBA4heeS3zlqP3Fj + 39817M8P72/6ITrXdW5MVv3n4Ly8Ere8/E9GNm8Qv2LagM1aWxL3XT3p0oe+2FHw9CHhP1BLBwij + Bf7zCgMAACgHAABQSwMEFAAIAAgAO08tUAAAAAAAAAAAAAAAAFUAAABMb2dGaWxlcy9rdWR1L3Ry + YWNlLzIwMjAtMDEtMTNUMDktNTctNTVfNDlhZjgxXzAxMV9HRVRfYXBpLXNldHRpbmdzLWJyYW5j + aF8yMDBfMHMueG1snZPbbtpAEIbvK/UdtnudWa8Bg6E4kktIYoWECExJL409gCPsdXbXOT19x06R + qkqoVW93/jn9+83YWKyYze0BAx6VqSrycscW+FSjsZxliaX3juxIkC643VgOR95g5Hmi50nO8tLY + pExJ0hsmW9/lrNaHgDtJlTsGraVaxtlokuw5K9DuVRbwq2nMmX2rKEsf+1Q5Bbqu9M86Zx5nE1WW + mNpclQG/QawgPOTPyFlYUwmdvycfoW+JEUJwdq2MDfgLbpKqgpe8hIPaFcXAPvWzR68SJi1E8l5r + JIXJLRpRIu22Mqgh3GFJuWEThjVulk0cqL/V6nBA7fh9IcVADPucvUJh4NfI0Azc33hJss0QBpvN + AHruIAU/2/qQbRJfSjJNpjT0A6zD9RJWJZK9GWawWsxOeTSZRdO7GKL7gLuyJ3pSDDvClYMRWeOT + 4Q8QLhYwm19BdPHv/ZdRPIWL6f1s/uO2LU+5p9zibB0uSXwZrmYxXM+X8V14Oz2tP+XuA1wq/ZLo + ZuF7rawK+N7ayrQ7VNUS9XOe4h+h88+fGBv/juS8tjvVIKnRVKo05OdfmDySdZQTobY2E3K+AZk8 + /HiI8ZX+fX7DWTMK6oDf5qlWRm0tRNHScaUg7X9++SRJ93ikKOCVzp/pkNrVTXWHFr6jNi3dPaKr + K7vusIXeEowQt6dBKB/ytAXdeTSq/MrSfaLpqILabsHnzDkffwFgWa1b0YjJwjAAsnDsNA6eDP8E + UEsHCGfg3Z4uAgAA8wMAAFBLAwQUAAgACABNTy1QAAAAAAAAAAAAAAAAVQAAAExvZ0ZpbGVzL2t1 + ZHUvdHJhY2UvMjAyMC0wMS0xM1QwOS01OC0yNl80OWFmODFfMDEzX0dFVF9hcGktc2V0dGluZ3Mt + YnJhbmNoXzIwMF8wcy54bWydU11v2jAUfZ+0/+D5uTdfBJIwUimjdEWlpYIw2KMTLpAqiV3babv+ + +jnpkKZubNMe/OJ77te554yURkF0oUuM6bTOeVXUe7LAhwaVpmTLtPn3HM8BxwW3lzrRsB8OvYEV + DHxKilppVucG4kdsF7qUNLKMqc1EYSvU2tRSdiYN5EBJhfrAtzH9PEkp0d+EyZLHPqIwgZ7rhGfe + 2YCSMa9rzHXB65heIwpIyuIRKUkaU0IWL+w19Ikpy7IoueJKx/QJMyYEPBU1lHxfVYF+GGzv+8JS + eWWxl0aiQahCo7JqNLutFEpI9lib3KQNwxqzZRsH019LXpYo7XBgOVZgRWaqZ6gU/BgZ2oGDXoYB + +hkEfpaDeX1grL8D9IPMzaN+bxAySjawTtZLWNVo6N3iFlaL2SmOxrPp5DaF6V1MXce3fMeKPMt1 + gqHrhS3hG0gWC5jNP8P04t/7L6fpBC4md7P515uuvMk9xRYl62RpwJfJapbC1XyZ3iY3k9P4U+xu + 4JLLJybbhe8k1zymB62F6nYQYonyscjxTej8/TtCRj9LclwiqxtBNlVJZnxv0v8gydChxD4ffQAg + 20Z2IhkSp1IE4NfK80bveSt2iUrwWhl5/aX0UbNHuNG+btTY3LS1iOn9+pHis1HU/JqSdkmUMb0p + cskV32mYTpe261gG+59iGrP8gEd9xlTI4tFYtCNViVvU8AWl6nzjG932nJ4bdXbSRuaQdqYzJimL + vGPHvle8/kjyA5PGrnGjdxD+hkLPjY4kjuz2Om859nr+EfAdUEsHCHgyuuZNAgAAUQQAAFBLAwQU + AAgACABiTy1QAAAAAAAAAAAAAAAARwAAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1Qw + OS01OS0wNV80OWFmODFfMDE0X0dFVF9kdW1wX3BlbmRpbmcueG1sfVJhb5swEP0+af/B8+ceBQdC + iEIlltI2Km2iQJRu3zy4pJ7Ado1p1P76OZk2TZuyj7577917vpv1FjWxwraY0oWsVSfknqzxZcDe + UtJw6+rMZz74AQSjyk+mUTL1Iy9IAkqE7C2XtYOECd9NXGUwbUovm6HTlHRon1WT0tu8osS+aQcz + v4S1cI1R4E8u2MWYkrmSEmsrlEzpPaKGrBWvSElW16gt5M5Y44ylVDQonds31xqcuhHv/CfrM+89 + z6PkTvU2pQf8xrWGg5DQqn3XxfZl3HyPtNfXncffB4MO0QuLvSfR5XyCbbYtYSPxOAkb2KyL3znm + xSJ/rGCxSmkwjj3GfI9F7geCaDqK3OtIz9ZrKJa3sLhOacxC3sRhCHEUJxDWPoNJNN4BC3gSc97U + u1145JSLKofrfFUsvzycBjjuOeOUbLPSgW+yTVHB3bKsHrOH/Dz+fNAbZQ7cHDOujLIqpc/W6v6U + QesSzauo8a/W1ccPhMz+vJR5i1wOmjx1LSnU3tHPXwrzE0our2afAEgzmNO+psTvegLwr/JXoUtr + kHfuJKzbtbeUrvRf/dGEkh9QSwcIWom7PbIBAADIAgAAUEsDBBQACAAIABpPLVAAAAAAAAAAAAAA + AABLAAAATG9nRmlsZXMva3VkdS90cmFjZS9SRDAwMDNGRjgyNjU2Qy00NWEwYzY0MS1kMmE3LTQz + MTYtYmEwOS04OTg0YzMwODE4YTEudHh0NcvBCsIgGADge9A7/A/gmBoaeRt1kdY2UrqOsaSEtpn+ + Hnr7RtD54+OU04Kygu0sPSghleAABoeIOcDVvbNLSCDHl4JyCL5MDtHPj0Rgcvhc7gq61lgC+AlO + QfyH4FcRbC8JJ5KAOV56c9Zdb0zd36panyqr20YBXW2c7C83y+y2my9QSwcIIqSPz4MAAACRAAAA + UEsBAhQAFAAIAAgAOk8tUFX9O3cnAAAAKAAAABIAAAAAAAAAAAAAAAAAAAAAAGRlcGxveW1lbnRz + L2FjdGl2ZVBLAQIUABQACAAIADpPLVB95TftMwgAAGgYAAA8AAAAAAAAAAAAAAAAAGcAAABkZXBs + b3ltZW50cy9jYzg0ZmZmZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L2xvZy5sb2dQ + SwECFAAUAAgACAAmTy1QTTyJtTIAAAA5AAAAPQAAAAAAAAAAAAAAAAAECQAAZGVwbG95bWVudHMv + Y2M4NGZmZmY5MmE5NDA0Y2VlNTk1ZWU4OGMwMWVjNzkyNDJmZmIwNy9tYW5pZmVzdFBLAQIUABQA + CAAIADpPLVDQvGoXZAEAALwCAAA/AAAAAAAAAAAAAAAAAKEJAABkZXBsb3ltZW50cy9jYzg0ZmZm + ZjkyYTk0MDRjZWU1OTVlZTg4YzAxZWM3OTI0MmZmYjA3L3N0YXR1cy54bWxQSwECFAAUAAAAAAAj + Ty1QAAAAAAAAAAAAAAAAEwAAAAAAAAAAAAAAAAByCwAAZGVwbG95bWVudHMvcGVuZGluZ1BLAQIU + ABQACAAIABpPLVAMBWYkcgAAAIwAAAAYAAAAAAAAAAAAAAAAAKMLAABkZXBsb3ltZW50cy9zZXR0 + aW5ncy54bWxQSwECFAAUAAgACAAlTy1QeiEzSekEAADuDAAAHAAAAAAAAAAAAAAAAABbDAAAZGVw + bG95bWVudHMvdG9vbHMvZGVwbG95LmNtZFBLAQIUABQACAAIACVPLVBFVdYjZwAAAJYAAAAkAAAA + AAAAAAAAAAAAAI4RAABkZXBsb3ltZW50cy90b29scy9kZXBsb3ltZW50Q2FjaGVLZXlQSwECFAAU + AAgACAAgTy1QIZq6CCYBAADAAQAAFQAAAAAAAAAAAAAAAABHEgAATG9nRmlsZXMvZXZlbnRsb2cu + eG1sUEsBAhQAFAAAAAAAYk8tUAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAsBMAAExvZ0ZpbGVz + L2t1ZHUvZGVwbG95bWVudC9QSwECFAAUAAgACAAaTy1QKo5OztwAAAA4AQAAUwAAAAAAAAAAAAAA + AADnEwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAxLTEzVDA5LTU2LTUyXzQ5YWY4MV8wMDFf + U3RhcnR1cF9QT1NUX2FwaS1zZXR0aW5nc18wcy54bWxQSwECFAAUAAgACAAaTy1Q9DjTMlECAAAe + BAAATwAAAAAAAAAAAAAAAABEFQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAxLTEzVDA5LTU2 + LTUyXzQ5YWY4MV8wMDJfUE9TVF9hcGktc2V0dGluZ3NfMjA0XzFzLnhtbFBLAQIUABQACAAIABtP + LVDmiquINwIAAPcDAABWAAAAAAAAAAAAAAAAABIYAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAt + MDEtMTNUMDktNTYtNTRfNDlhZjgxXzAwM19HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMjAwXzBz + LnhtbFBLAQIUABQACAAIABxPLVBOJsjaNwIAAPYDAABWAAAAAAAAAAAAAAAAAM0aAABMb2dGaWxl + cy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTYtNTdfNDlhZjgxXzAwNF9HRVRfYXBpLXNldHRp + bmdzLVNjbVR5cGVfMjAwXzBzLnhtbFBLAQIUABQACAAIACBPLVDCAHL+lQAAALYAAABCAAAAAAAA + AAAAAAAAAIgdAABMb2dGaWxlcy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTctMDFfNDlhZjgx + XzAwNV9TaHV0ZG93bl8wcy54bWxQSwECFAAUAAgACAAiTy1QpilbSegAAABGAQAAWgAAAAAAAAAA + AAAAAACNHgAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAxLTEzVDA5LTU3LTA1XzQ5YWY4MV8w + MDFfU3RhcnR1cF9HRVRfYXBpLXNldHRpbmdzLVNjbVR5cGVfMHMueG1sUEsBAhQAFAAIAAgAI08t + UM5SEQo7AgAA+AMAAFYAAAAAAAAAAAAAAAAA/R8AAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0w + MS0xM1QwOS01Ny0wNV80OWFmODFfMDAyX0dFVF9hcGktc2V0dGluZ3MtU2NtVHlwZV8yMDBfMHMu + eG1sUEsBAhQAFAAIAAgAI08tUEoQmsrDAgAASgUAAEkAAAAAAAAAAAAAAAAAvCIAAExvZ0ZpbGVz + L2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1QwOS01Ny0wNl80OWFmODFfMDAzX1BPU1RfZGVwbG95XzIw + Ml8wcy54bWxQSwECFAAUAAgACAA6Ty1QSwVNy6wDAABHCwAAUQAAAAAAAAAAAAAAAAD2JQAATG9n + RmlsZXMva3VkdS90cmFjZS8yMDIwLTAxLTEzVDA5LTU3LTA2XzQ5YWY4MV8wMDRfQmFja2dyb3Vu + ZF9QT1NUX2RlcGxveV80NnMueG1sUEsBAhQAFAAIAAgAI08tULNv8gTcAgAAsQYAAFgAAAAAAAAA + AAAAAAAAISoAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1QwOS01Ny0wNl80OWFmODFf + MDA1X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACAAoTy1Q + rRm2K1gDAAA6CAAAWAAAAAAAAAAAAAAAAACDLQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAx + LTEzVDA5LTU3LTE3XzQ5YWY4MV8wMDZfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzBz + LnhtbFBLAQIUABQACAAIACxPLVDGCLHfLwIAAPYDAABVAAAAAAAAAAAAAAAAAGExAABMb2dGaWxl + cy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTctMjVfNDlhZjgxXzAwN19HRVRfYXBpLXNldHRp + bmdzLWJyYW5jaF8yMDBfMHMueG1sUEsBAhQAFAAIAAgALU8tUOn9zKQMAwAAKAcAAFgAAAAAAAAA + AAAAAAAAEzQAAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1QwOS01Ny0yN180OWFmODFf + MDA4X0dFVF9hcGktZGVwbG95bWVudHMtbGF0ZXN0XzIwMl8wcy54bWxQSwECFAAUAAgACAAzTy1Q + J4NFchoDAAArBwAAWAAAAAAAAAAAAAAAAAClNwAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAx + LTEzVDA5LTU3LTM3XzQ5YWY4MV8wMDlfR0VUX2FwaS1kZXBsb3ltZW50cy1sYXRlc3RfMjAyXzFz + LnhtbFBLAQIUABQACAAIADhPLVCjBf7zCgMAACgHAABYAAAAAAAAAAAAAAAAAEU7AABMb2dGaWxl + cy9rdWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTctNDhfNDlhZjgxXzAxMF9HRVRfYXBpLWRlcGxv + eW1lbnRzLWxhdGVzdF8yMDJfMHMueG1sUEsBAhQAFAAIAAgAO08tUGfg3Z4uAgAA8wMAAFUAAAAA + AAAAAAAAAAAA1T4AAExvZ0ZpbGVzL2t1ZHUvdHJhY2UvMjAyMC0wMS0xM1QwOS01Ny01NV80OWFm + ODFfMDExX0dFVF9hcGktc2V0dGluZ3MtYnJhbmNoXzIwMF8wcy54bWxQSwECFAAUAAgACABNTy1Q + eDK65k0CAABRBAAAVQAAAAAAAAAAAAAAAACGQQAATG9nRmlsZXMva3VkdS90cmFjZS8yMDIwLTAx + LTEzVDA5LTU4LTI2XzQ5YWY4MV8wMTNfR0VUX2FwaS1zZXR0aW5ncy1icmFuY2hfMjAwXzBzLnht + bFBLAQIUABQACAAIAGJPLVBaibs9sgEAAMgCAABHAAAAAAAAAAAAAAAAAFZEAABMb2dGaWxlcy9r + dWR1L3RyYWNlLzIwMjAtMDEtMTNUMDktNTktMDVfNDlhZjgxXzAxNF9HRVRfZHVtcF9wZW5kaW5n + LnhtbFBLAQIUABQACAAIABpPLVAipI/PgwAAAJEAAABLAAAAAAAAAAAAAAAAAH1GAABMb2dGaWxl + cy9rdWR1L3RyYWNlL1JEMDAwM0ZGODI2NTZDLTQ1YTBjNjQxLWQyYTctNDMxNi1iYTA5LTg5ODRj + MzA4MThhMS50eHRQSwUGAAAAAB0AHQC8DAAAeUcAAAAA headers: cache-control: - no-cache content-disposition: - - attachment; filename=dump-12-31-02-28-10.zip + - attachment; filename=dump-01-13-09-59-05.zip content-type: - application/zip date: - - Tue, 31 Dec 2019 02:28:10 GMT + - Mon, 13 Jan 2020 09:59:04 GMT expires: - '-1' pragma: @@ -1354,7 +1462,7 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=5050ce4256dd242414a945f914f7df82a73c49ae3d61b250b8244f5ed8870263;Path=/;HttpOnly;Domain=webapp-win-logiljugmy3wq.scm.azurewebsites.net + - ARRAffinity=49af819e0608e67afe62c59bc44c46789717a712db38a712dd891da7e6a09a48;Path=/;HttpOnly;Domain=webapp-win-logmm7tq6dj5p.scm.azurewebsites.net transfer-encoding: - chunked x-aspnet-version: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index 4a97f362547..fc1756d098d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T10:40:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:19:22 GMT + - Mon, 13 Jan 2020 10:40:30 GMT expires: - '-1' pragma: @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:23 GMT + - Mon, 13 Jan 2020 10:40:31 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T10:40:24Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:19:24 GMT + - Mon, 13 Jan 2020 10:40:31 GMT expires: - '-1' pragma: @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26645,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_26645","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26301,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:35 GMT + - Mon, 13 Jan 2020 10:40:44 GMT expires: - '-1' pragma: @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26645,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_26645","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26301,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:35 GMT + - Mon, 13 Jan 2020 10:40:45 GMT expires: - '-1' pragma: @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:36 GMT + - Mon, 13 Jan 2020 10:40:45 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26645,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_26645","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":26301,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:37 GMT + - Mon, 13 Jan 2020 10:40:46 GMT expires: - '-1' pragma: @@ -412,18 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:19:44.8066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F8140AC0FEEE62A42C3F40E63A158280BE75E749590AC451A29A82DF6CB0D150","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T10:40:54.2466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1EC28456261D5EF66F6107CBE97C2258DDAFB6057A13A0D3EF329ED139E18480","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3753' + - '3793' content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:04 GMT + - Mon, 13 Jan 2020 10:41:26 GMT etag: - - '"1D5C49C5848B580"' + - '"1D5C9FDEED66075"' expires: - '-1' pragma: @@ -476,19 +476,19 @@ interactions: string: @@ -500,7 +500,7 @@ interactions: content-type: - application/xml date: - - Mon, 06 Jan 2020 14:20:04 GMT + - Mon, 13 Jan 2020 10:41:27 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:06 GMT + - Mon, 13 Jan 2020 10:41:28 GMT expires: - '-1' pragma: @@ -612,7 +612,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:08 GMT + - Mon, 13 Jan 2020 10:41:29 GMT expires: - '-1' pragma: @@ -690,9 +690,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:11 GMT + - Mon, 13 Jan 2020 10:41:31 GMT etag: - - '"1D5C49C5848B580"' + - '"1D5C9FDEED66075"' expires: - '-1' pragma: @@ -710,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -750,7 +750,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:12 GMT + - Mon, 13 Jan 2020 10:41:33 GMT expires: - '-1' pragma: @@ -806,7 +806,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:13 GMT + - Mon, 13 Jan 2020 10:41:34 GMT expires: - '-1' pragma: @@ -824,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -867,9 +867,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:15 GMT + - Mon, 13 Jan 2020 10:41:37 GMT etag: - - '"1D5C49C6A05374B"' + - '"1D5C9FE0821B2C0"' expires: - '-1' pragma: @@ -927,7 +927,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:17 GMT + - Mon, 13 Jan 2020 10:41:38 GMT expires: - '-1' pragma: @@ -945,7 +945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -983,7 +983,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:18 GMT + - Mon, 13 Jan 2020 10:41:38 GMT expires: - '-1' pragma: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:19 GMT + - Mon, 13 Jan 2020 10:41:40 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:20 GMT + - Mon, 13 Jan 2020 10:41:41 GMT expires: - '-1' pragma: @@ -1154,9 +1154,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:20 GMT + - Mon, 13 Jan 2020 10:41:42 GMT etag: - - '"1D5C49C6D60CB60"' + - '"1D5C9FE0B50024B"' expires: - '-1' pragma: @@ -1174,7 +1174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -1212,9 +1212,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:22 GMT + - Mon, 13 Jan 2020 10:41:44 GMT etag: - - '"1D5C49C6D60CB60"' + - '"1D5C9FE0B50024B"' expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:22 GMT + - Mon, 13 Jan 2020 10:41:44 GMT expires: - '-1' pragma: @@ -1291,7 +1291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -1326,8 +1326,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":15171,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-125_15171","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":14032,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-147_14032","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1336,7 +1336,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:41 GMT + - Mon, 13 Jan 2020 10:42:03 GMT expires: - '-1' pragma: @@ -1354,7 +1354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -1383,8 +1383,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":15171,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-125_15171","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":14032,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-147_14032","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1393,7 +1393,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:43 GMT + - Mon, 13 Jan 2020 10:42:04 GMT expires: - '-1' pragma: @@ -1451,7 +1451,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:44 GMT + - Mon, 13 Jan 2020 10:42:04 GMT expires: - '-1' pragma: @@ -1469,7 +1469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -1498,8 +1498,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":15171,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-125_15171","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":14032,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-147_14032","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1508,7 +1508,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:45 GMT + - Mon, 13 Jan 2020 10:42:05 GMT expires: - '-1' pragma: @@ -1575,7 +1575,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:45 GMT + - Mon, 13 Jan 2020 10:42:07 GMT expires: - '-1' pragma: @@ -1627,18 +1627,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005","name":"webapp-linux000005","type":"Microsoft.Web/sites","kind":"app,linux","location":"East - US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-125.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:20:49.36","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"6441FAAADD44DFBC571C728405B38ADB7A025DC69172F963323E83547CC3642E","kind":"app,linux","inboundIpAddress":"104.45.141.247","possibleInboundIpAddresses":"104.45.141.247","outboundIpAddresses":"104.45.141.247,137.135.68.200,40.114.0.237,137.135.72.121,104.45.154.191","possibleOutboundIpAddresses":"104.45.141.247,137.135.68.200,40.114.0.237,137.135.72.121,104.45.154.191,137.117.65.231,104.41.156.195,137.135.71.44,137.135.69.14,23.100.31.222","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-125","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T10:42:13.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F3DE88C8B5D0C5F852719B01FD9D376700DE2D02BF0139BF32130ECC2B5CC3C9","kind":"app,linux","inboundIpAddress":"40.71.11.134","possibleInboundIpAddresses":"40.71.11.134","outboundIpAddresses":"40.71.11.134,40.117.215.11,40.76.9.115,13.68.199.96,40.117.113.125","possibleOutboundIpAddresses":"40.71.11.134,40.117.215.11,40.76.9.115,13.68.199.96,40.117.113.125,40.114.121.56,13.68.202.75,40.76.0.204,40.76.10.230,40.76.27.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3661' + - '3638' content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:06 GMT + - Mon, 13 Jan 2020 10:42:30 GMT etag: - - '"1D5C49C7ED61800"' + - '"1D5C9FE1DC525B5"' expires: - '-1' pragma: @@ -1690,17 +1690,17 @@ interactions: body: string: @@ -1712,7 +1712,7 @@ interactions: content-type: - application/xml date: - - Mon, 06 Jan 2020 14:21:07 GMT + - Mon, 13 Jan 2020 10:42:31 GMT expires: - '-1' pragma: @@ -1726,7 +1726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' x-powered-by: - ASP.NET status: @@ -1767,7 +1767,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:09 GMT + - Mon, 13 Jan 2020 10:42:33 GMT expires: - '-1' pragma: @@ -1785,7 +1785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1830,9 +1830,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:10 GMT + - Mon, 13 Jan 2020 10:42:33 GMT etag: - - '"1D5C49C8AED15B5"' + - '"1D5C9FE2A00C26B"' expires: - '-1' pragma: @@ -1850,7 +1850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -1890,7 +1890,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:11 GMT + - Mon, 13 Jan 2020 10:42:34 GMT expires: - '-1' pragma: @@ -1908,7 +1908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:12 GMT + - Mon, 13 Jan 2020 10:42:36 GMT expires: - '-1' pragma: @@ -2002,7 +2002,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:12 GMT + - Mon, 13 Jan 2020 10:42:38 GMT expires: - '-1' pragma: @@ -2020,7 +2020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2064,9 +2064,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:14 GMT + - Mon, 13 Jan 2020 10:42:39 GMT etag: - - '"1D5C49C8D6BEB60"' + - '"1D5C9FE2D0D8035"' expires: - '-1' pragma: @@ -2084,7 +2084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:15 GMT + - Mon, 13 Jan 2020 10:42:41 GMT expires: - '-1' pragma: @@ -2142,7 +2142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -2180,7 +2180,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:17 GMT + - Mon, 13 Jan 2020 10:42:41 GMT expires: - '-1' pragma: @@ -2236,7 +2236,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:19 GMT + - Mon, 13 Jan 2020 10:42:44 GMT expires: - '-1' pragma: @@ -2292,7 +2292,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:20 GMT + - Mon, 13 Jan 2020 10:42:45 GMT expires: - '-1' pragma: @@ -2348,7 +2348,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:21 GMT + - Mon, 13 Jan 2020 10:42:46 GMT expires: - '-1' pragma: @@ -2404,7 +2404,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:22 GMT + - Mon, 13 Jan 2020 10:42:46 GMT expires: - '-1' pragma: @@ -2462,9 +2462,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:23 GMT + - Mon, 13 Jan 2020 10:42:48 GMT etag: - - '"1D5C49C925E6620"' + - '"1D5C9FE32D28D35"' expires: - '-1' pragma: @@ -2482,7 +2482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -2522,7 +2522,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:23 GMT + - Mon, 13 Jan 2020 10:42:49 GMT expires: - '-1' pragma: @@ -2540,7 +2540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2584,9 +2584,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:26 GMT + - Mon, 13 Jan 2020 10:42:51 GMT etag: - - '"1D5C49C9490F08B"' + - '"1D5C9FE3457A695"' expires: - '-1' pragma: @@ -2604,7 +2604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -2642,7 +2642,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:26 GMT + - Mon, 13 Jan 2020 10:42:51 GMT expires: - '-1' pragma: @@ -2700,7 +2700,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:27 GMT + - Mon, 13 Jan 2020 10:42:52 GMT expires: - '-1' pragma: @@ -2718,7 +2718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-powered-by: - ASP.NET status: @@ -2758,7 +2758,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:28 GMT + - Mon, 13 Jan 2020 10:42:54 GMT expires: - '-1' pragma: @@ -2776,7 +2776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2814,7 +2814,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:29 GMT + - Mon, 13 Jan 2020 10:42:54 GMT expires: - '-1' pragma: @@ -2870,7 +2870,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:31 GMT + - Mon, 13 Jan 2020 10:42:56 GMT expires: - '-1' pragma: @@ -2926,7 +2926,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:32 GMT + - Mon, 13 Jan 2020 10:42:57 GMT expires: - '-1' pragma: @@ -2985,7 +2985,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:32 GMT + - Mon, 13 Jan 2020 10:42:57 GMT expires: - '-1' pragma: @@ -3003,7 +3003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -3046,9 +3046,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:33 GMT + - Mon, 13 Jan 2020 10:42:58 GMT etag: - - '"1D5C49C98E0A8A0"' + - '"1D5C9FE385476B5"' expires: - '-1' pragma: @@ -3066,7 +3066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' x-powered-by: - ASP.NET status: @@ -3106,7 +3106,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:34 GMT + - Mon, 13 Jan 2020 10:42:59 GMT expires: - '-1' pragma: @@ -3124,7 +3124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -3162,7 +3162,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:21:36 GMT + - Mon, 13 Jan 2020 10:43:00 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml index 2e4a5745d55..25be830e950 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_ssl_import.yaml @@ -14,14 +14,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T11:00:52Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:31:06 GMT + - Mon, 13 Jan 2020 11:00:57 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:08 GMT + - Mon, 13 Jan 2020 11:00:58 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' x-powered-by: - ASP.NET status: @@ -119,14 +119,14 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T11:00:52Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:31:08 GMT + - Mon, 13 Jan 2020 11:00:59 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n --sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - Europe","properties":{"serverFarmId":32869,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-219_32869","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + Europe","properties":{"serverFarmId":29190,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-147_29190","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:23 GMT + - Mon, 13 Jan 2020 11:01:12 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1198' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - Europe","properties":{"serverFarmId":32869,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-219_32869","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + Europe","properties":{"serverFarmId":29190,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-147_29190","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:24 GMT + - Mon, 13 Jan 2020 11:01:14 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:25 GMT + - Mon, 13 Jan 2020 11:01:14 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","name":"ssl-test-plan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - Europe","properties":{"serverFarmId":32869,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-219_32869","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + Europe","properties":{"serverFarmId":29190,"name":"ssl-test-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestEuropewebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + Europe","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-am2-147_29190","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:26 GMT + - Mon, 13 Jan 2020 11:01:15 GMT expires: - '-1' pragma: @@ -385,7 +385,8 @@ interactions: body: 'b''{"location": "West Europe", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": false}}''' headers: Accept: - application/json @@ -396,14 +397,14 @@ interactions: Connection: - keep-alive Content-Length: - - '524' + - '544' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -411,18 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:34.6633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T11:01:22.42","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A2ABB90472A729B866EC53EF7E9ECE9A3CBBD360D9A02517B3CF900D7D49586","kind":"app","inboundIpAddress":"52.166.119.99","possibleInboundIpAddresses":"52.166.119.99","outboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152","possibleOutboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152,52.166.64.201,52.166.64.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3574' + - '3555' content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:53 GMT + - Mon, 13 Jan 2020 11:01:39 GMT etag: - - '"1D5BF826C26CC35"' + - '"1D5CA00CAC2B62B"' expires: - '-1' pragma: @@ -440,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '495' + - '499' x-powered-by: - ASP.NET status: @@ -465,7 +466,7 @@ interactions: - -g -n --plan User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -474,17 +475,17 @@ interactions: body: string: @@ -496,7 +497,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:31:53 GMT + - Mon, 13 Jan 2020 11:01:41 GMT expires: - '-1' pragma: @@ -510,7 +511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11995' + - '11999' x-powered-by: - ASP.NET status: @@ -531,14 +532,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:31:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T11:00:52Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -547,7 +548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:31:54 GMT + - Mon, 13 Jan 2020 11:01:42 GMT expires: - '-1' pragma: @@ -593,19 +594,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 31 Dec 2019 02:31:58 GMT + - Mon, 13 Jan 2020 11:01:42 GMT duration: - - '2827994' + - '2415404' expires: - '-1' ocp-aad-diagnostics-server-name: - - LYzAcq7V3eLxMoJD8VBflwEorAlQCAHjPijhfeZyV1w= + - C8TrCVVTAkLP6c6HL4PGoY9R0WooVdfsYI7c9Lj6EBs= ocp-aad-session-key: - - BbZ6vBi3vI8LYXKdS5fgx_zC4Q0vWHYqFSI6i6AMWmDPBiVcajRK_58S40uDGS5LbG_SPqg-LGXHTA7nJwYhsCGHCpn7cRyFfpl7VH1-NXl9MQbAIbiOAGR0r1gNlR3f.n5ZqbWXIzhZC_GlFaDSGVfLddP26v_hP3wPw-lhy9Yk + - s75my9-IiQRnDPsiGgOBLA8C7D3A65j5bn1XsDHFYxlZA6qeZwBzLbq9ywpjEDn6UQmyMHbT3kuITmFo-uozGp9NDOSDICLOa98ZQBph6LGsL1jV-04ELYNuGjliJfjV.lypDX8kD7EqMWwsmHWh4lNxGyGKt8D6i87NrQqK-ab0 pragma: - no-cache request-id: - - 5db573c1-07ba-487d-b5c6-16e4a1d18026 + - f40e2bed-4def-4274-8a48-ff4950cee007 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -644,7 +645,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -660,7 +661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:11 GMT + - Mon, 13 Jan 2020 11:01:51 GMT expires: - '-1' pragma: @@ -680,7 +681,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' x-powered-by: - ASP.NET status: @@ -701,7 +702,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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.KeyVault/vaults/kv-ssl-test000004?api-version=2018-02-14 response: @@ -715,7 +716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:43 GMT + - Mon, 13 Jan 2020 11:02:22 GMT expires: - '-1' pragma: @@ -756,23 +757,23 @@ interactions: - --name --spn --secret-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.KeyVault/vaults/yugangwcu-kv","name":"yugangwcu-kv","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.KeyVault/vaults/yugangwcu2-kv","name":"yugangwcu2-kv","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/kv-ssl-test000004","name":"kv-ssl-test000004","type":"Microsoft.KeyVault/vaults","location":"westeurope","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest2/providers/Microsoft.KeyVault/vaults/vault1587","name":"vault1587","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '1887' + - '1211' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:43 GMT + - Mon, 13 Jan 2020 11:02:23 GMT expires: - '-1' pragma: @@ -823,19 +824,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 31 Dec 2019 02:32:45 GMT + - Mon, 13 Jan 2020 11:02:24 GMT duration: - - '2403305' + - '2405483' expires: - '-1' ocp-aad-diagnostics-server-name: - - ZtjrL6855/1nWsQgXw4059xGL7CEBjwxyLJieTbtGTs= + - /JobBrpFkR/7pijMuZ1+szDzkfKvEa/y7XtnoLF0dSE= ocp-aad-session-key: - - QrDLcCLbH8UNqdWVo35B4prSmturxuJ0VqxAnhlo6SPLEGzy8K90uMuUryTyaFuerur7CJqW5IWCtShB4QM2rW41pec7dBp25DEhPFbne0NGS5NTdW4lukoR9_pkda1m.akqmFHePWc64Y6Be5LkNEB9Be8incY9k5w0YYJ75rRA + - zKPKvD-YSNgAFCN2apSjePKkChqz-MICDQmPzvCp25tSe5rx8kX1BvO_av2iRDFhzdJogyUxpXJX-9knunbAEbqei3gGvbolWpaAAthMgoldBnR2De-DSxc9t5qS2aeo.NA1I_glY4kuk8AXFe_pef1cmrmW1zxpeI5bmAUtA3dQ pragma: - no-cache request-id: - - ff7acca7-0aaf-402f-844c-ab0f56808cd5 + - 47a7ce23-c326-4427-947e-c3dac7540935 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -864,7 +865,7 @@ interactions: - --name --spn --secret-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -880,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:46 GMT + - Mon, 13 Jan 2020 11:02:26 GMT expires: - '-1' pragma: @@ -934,7 +935,7 @@ interactions: - --name --spn --secret-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -950,7 +951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:47 GMT + - Mon, 13 Jan 2020 11:02:28 GMT expires: - '-1' pragma: @@ -970,7 +971,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1199' x-powered-by: - ASP.NET status: @@ -1008,7 +1009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:49 GMT + - Mon, 13 Jan 2020 11:02:30 GMT expires: - '-1' pragma: @@ -1059,7 +1060,7 @@ interactions: uri: https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/import?api-version=7.0 response: body: - string: '{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/a7ef500a19b846bcb611b369949548e2","kid":"https://kv-ssl-test000004.vault.azure.net/keys/test-cert/a7ef500a19b846bcb611b369949548e2","sid":"https://kv-ssl-test000004.vault.azure.net/secrets/test-cert/a7ef500a19b846bcb611b369949548e2","x5t":"npc1xFx5KwOz_8ymFIUrMu5xrWs","cer":"MIIDYTCCAk2gAwIBAgIQLVKvAHY+rqVB+C7Wbh24QDAJBgUrDgMCHQUAMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0MCAXDTE4MDEwMTA3MDAwMFoYDzIxMTgxMjMxMDcwMDAwWjAxMS8wLQYDVQQDHiYAKgAuAGEAegB1AHIAZQB3AGUAYgBzAGkAdABlAHMALgBuAGUAdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKcqVpT4O7YwltwNd/XSTqITNrpb1lxkLE5r0CpummRxDtjSKbY/vrA7cnHByZS0lRnVPgnZFSyTR0qU0XhGQxedMx+uLGnaDfvDtbCzElsrH4yaMU/dU4959liNYccV//OZOOfr8AB5xnD3k1ix/ssMphIE7sdZx2Icr9TGZzE6Ckm0afEdp7SdwUpXvOjxfB6tFtqyhN5Gtgm1f1rhugCb1QA1UCM1b0Af2XTHbhW057BmUppNI6rzYr3RPed0pXTryeI1/5U3a9ZJ2XFW3VXTXw9Wo+qv8I+9DWIUj0JdoYJ2XkTcZJEeo3woJSBx1yCv2bggR3OUM0wG7/n4HykCAwEAAaN7MHkwEwYDVR0lBAwwCgYIKwYBBQUHAwEwYgYDVR0BBFswWYAQ3sdVft+h9rOb7gSClEWvkaEzMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0ghAtUq8Adj6upUH4LtZuHbhAMAkGBSsOAwIdBQADggEBAB+08jsd9CeKCX4qeEUNx3i1uklsTAdwoEkK6xQqF4LuHsV9J8NEkQnJow1w2wsg/lULbm+k6LJmM7qCP0NquYOQra3/sdWZvPQflhFM8awpBkIOWO9/wS1oQWhyUHFCwSWUOhJ218bNxBLwIjX6bjCEVNQWNNOFooPz3/dNNVfxqXggqgWXBQ11LuZha+zvU7G82zCttImywZUFcKK3dcvdYPAU9POWQvuuvUqBBdKzPcNCnJAFyXPpJPegW+3ycwphRKxBjYUATe7aP+ulc+/YkyK19dLdUqxBkx2ElJ2HKTcUo6eEXgAuyjQ/jQejZI+fG2FV4NxGEoSned4BKng=","attributes":{"enabled":true,"nbf":1514790000,"exp":4701913200,"created":1577759572,"updated":1577759572,"recoveryLevel":"Purgeable"},"policy":{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=*.azurewebsites.net","ekus":["1.3.6.1.5.5.7.3.1"],"key_usage":[],"validity_months":1200,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"EmailContacts"}}],"issuer":{"name":"Unknown"},"attributes":{"enabled":true,"created":1577759572,"updated":1577759572}}}' + string: '{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/4ae799fb145a418c95d734ee0c7d5c8f","kid":"https://kv-ssl-test000004.vault.azure.net/keys/test-cert/4ae799fb145a418c95d734ee0c7d5c8f","sid":"https://kv-ssl-test000004.vault.azure.net/secrets/test-cert/4ae799fb145a418c95d734ee0c7d5c8f","x5t":"npc1xFx5KwOz_8ymFIUrMu5xrWs","cer":"MIIDYTCCAk2gAwIBAgIQLVKvAHY+rqVB+C7Wbh24QDAJBgUrDgMCHQUAMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0MCAXDTE4MDEwMTA3MDAwMFoYDzIxMTgxMjMxMDcwMDAwWjAxMS8wLQYDVQQDHiYAKgAuAGEAegB1AHIAZQB3AGUAYgBzAGkAdABlAHMALgBuAGUAdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKcqVpT4O7YwltwNd/XSTqITNrpb1lxkLE5r0CpummRxDtjSKbY/vrA7cnHByZS0lRnVPgnZFSyTR0qU0XhGQxedMx+uLGnaDfvDtbCzElsrH4yaMU/dU4959liNYccV//OZOOfr8AB5xnD3k1ix/ssMphIE7sdZx2Icr9TGZzE6Ckm0afEdp7SdwUpXvOjxfB6tFtqyhN5Gtgm1f1rhugCb1QA1UCM1b0Af2XTHbhW057BmUppNI6rzYr3RPed0pXTryeI1/5U3a9ZJ2XFW3VXTXw9Wo+qv8I+9DWIUj0JdoYJ2XkTcZJEeo3woJSBx1yCv2bggR3OUM0wG7/n4HykCAwEAAaN7MHkwEwYDVR0lBAwwCgYIKwYBBQUHAwEwYgYDVR0BBFswWYAQ3sdVft+h9rOb7gSClEWvkaEzMDExLzAtBgNVBAMeJgAqAC4AYQB6AHUAcgBlAHcAZQBiAHMAaQB0AGUAcwAuAG4AZQB0ghAtUq8Adj6upUH4LtZuHbhAMAkGBSsOAwIdBQADggEBAB+08jsd9CeKCX4qeEUNx3i1uklsTAdwoEkK6xQqF4LuHsV9J8NEkQnJow1w2wsg/lULbm+k6LJmM7qCP0NquYOQra3/sdWZvPQflhFM8awpBkIOWO9/wS1oQWhyUHFCwSWUOhJ218bNxBLwIjX6bjCEVNQWNNOFooPz3/dNNVfxqXggqgWXBQ11LuZha+zvU7G82zCttImywZUFcKK3dcvdYPAU9POWQvuuvUqBBdKzPcNCnJAFyXPpJPegW+3ycwphRKxBjYUATe7aP+ulc+/YkyK19dLdUqxBkx2ElJ2HKTcUo6eEXgAuyjQ/jQejZI+fG2FV4NxGEoSned4BKng=","attributes":{"enabled":true,"nbf":1514790000,"exp":4701913200,"created":1578913352,"updated":1578913352,"recoveryLevel":"Purgeable"},"policy":{"id":"https://kv-ssl-test000004.vault.azure.net/certificates/test-cert/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=*.azurewebsites.net","ekus":["1.3.6.1.5.5.7.3.1"],"key_usage":[],"validity_months":1200,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"EmailContacts"}}],"issuer":{"name":"Unknown"},"attributes":{"enabled":true,"created":1578913352,"updated":1578913352}}}' headers: cache-control: - no-cache @@ -1068,7 +1069,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:52 GMT + - Mon, 13 Jan 2020 11:02:33 GMT expires: - '-1' pragma: @@ -1107,7 +1108,7 @@ interactions: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1115,18 +1116,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:35.8433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T11:01:22.7866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A2ABB90472A729B866EC53EF7E9ECE9A3CBBD360D9A02517B3CF900D7D49586","kind":"app","inboundIpAddress":"52.166.119.99","possibleInboundIpAddresses":"52.166.119.99","outboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152","possibleOutboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152,52.166.64.201,52.166.64.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3572' + - '3558' content-type: - application/json date: - - Tue, 31 Dec 2019 02:32:54 GMT + - Mon, 13 Jan 2020 11:02:33 GMT etag: - - '"1D5BF826C26CC35"' + - '"1D5CA00CAC2B62B"' expires: - '-1' pragma: @@ -1165,7 +1166,7 @@ interactions: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1181,7 +1182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:55 GMT + - Mon, 13 Jan 2020 11:02:34 GMT expires: - '-1' pragma: @@ -1220,7 +1221,7 @@ interactions: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1229,7 +1230,7 @@ interactions: body: string: '{"odata.error":{"code":"Request_ResourceNotFound","message":{"lang":"en","value":"Resource ''21cd756e-e290-4a26-9547-93e8cc1a8923'' does not exist or one of its queried - reference-property objects are not present."},"requestId":"0c336413-b117-4f9d-8341-85c07687cb32","date":"2019-12-31T02:32:56"}}' + reference-property objects are not present."},"requestId":"565acc56-c8f7-4da3-93db-40b98fa5ae5f","date":"2020-01-13T11:02:35"}}' headers: access-control-allow-origin: - '*' @@ -1242,19 +1243,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 31 Dec 2019 02:32:56 GMT + - Mon, 13 Jan 2020 11:02:35 GMT duration: - - '2457869' + - '2336972' expires: - '-1' ocp-aad-diagnostics-server-name: - - hYcM8xGo3UDnolVC93y3QsXQUHmcq33QIFHDssXymn4= + - xsDuxg+DnSkPNi77Rg8RaRUuQ9cvtYMMdi27ynpDZuA= ocp-aad-session-key: - - aZXzWdm2-tPrckchx2NXT3T2iNxYBl5aGofZroivDOTjXLmDzgXCBxmzYt048LSAjWgpTRqg9ucXVRz5WXJER7TWjx4ckxFYNpAsjAbfPRT6qqTVudRQQ3W9qbTQ_KDx.Xp_fGElpzv0JVcCFxxc_I5c7r3EA1WJzD3gbl4Fiu00 + - hEfpJOohgIsNkV0ZWZoyGGATEk0ETh5M2WGW3s66MKYAHffRNC0LMkqpmv9vsDOYyPG5iEJPBeJBUelHu0bMVMHmQym6MOSrI6rfOLN-ZclqC5pmNsVC-qqI1qO3SQn2.xs-1AaAy0Se84bpAT29YMAAJ3eK0UMwexPSys3KbyOw pragma: - no-cache request-id: - - 0c336413-b117-4f9d-8341-85c07687cb32 + - 565acc56-c8f7-4da3-93db-40b98fa5ae5f strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1281,7 +1282,7 @@ interactions: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1307,19 +1308,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 31 Dec 2019 02:32:57 GMT + - Mon, 13 Jan 2020 11:02:36 GMT duration: - - '2519966' + - '2388310' expires: - '-1' ocp-aad-diagnostics-server-name: - - 08YU0IxZ9gKU1vId0ceklYsBswf3+92fGse+Uu+6oFI= + - Ape/spQCG0XP19Hk8iE/ATS2tS1w3fT1+xqIKJSVb1M= ocp-aad-session-key: - - IVGMARMNBf7dtdlXZHjaASaxRhxG7zvVcoj-2IPMMVkRGLBNmNRxGFbv3kUA1lzEx0lF9a7OM76P-wN6Op4hYV_8QTYZczN5TIT3RsBFCaVevv4zzXYSCAMet__ziYNa.ca1ufTdAptdULjhuJKODqDtkB4AFi7zU2IDHQdU5rhs + - 6ePnICl_pzUV564iH-X1qWUA67MsXiv-geU84yPtyz6lGEhSCmoC7Nd2ckFWjajw0WBgaVx9jBJenx_Yw9srov6txBFDOuK-HuzNFGtJUQe0QCY2mEUEB9rFY0FW8OOT.aySdEm4K5sEG-ZHLOcT0ksbEVYJ1j1F8QE3-c9gZ-oQ pragma: - no-cache request-id: - - 21f6bc80-7325-4302-b668-84fc131f95f9 + - 639a77b3-ca57-46f1-84da-04ea954af777 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1352,7 +1353,7 @@ interactions: - --resource-group --name --key-vault --key-vault-certificate-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1369,7 +1370,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:05 GMT + - Mon, 13 Jan 2020 11:02:42 GMT expires: - '-1' pragma: @@ -1390,7 +1391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1180' + - '1197' x-powered-by: - ASP.NET status: @@ -1411,7 +1412,7 @@ interactions: - -g -n --certificate-thumbprint --ssl-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1419,18 +1420,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:35.8433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T11:01:22.7866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A2ABB90472A729B866EC53EF7E9ECE9A3CBBD360D9A02517B3CF900D7D49586","kind":"app","inboundIpAddress":"52.166.119.99","possibleInboundIpAddresses":"52.166.119.99","outboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152","possibleOutboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152,52.166.64.201,52.166.64.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3572' + - '3558' content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:08 GMT + - Mon, 13 Jan 2020 11:02:43 GMT etag: - - '"1D5BF826C26CC35"' + - '"1D5CA00CAC2B62B"' expires: - '-1' pragma: @@ -1467,7 +1468,7 @@ interactions: - -g -n --certificate-thumbprint --ssl-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1475,18 +1476,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:31:35.8433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T11:01:22.7866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A2ABB90472A729B866EC53EF7E9ECE9A3CBBD360D9A02517B3CF900D7D49586","kind":"app","inboundIpAddress":"52.166.119.99","possibleInboundIpAddresses":"52.166.119.99","outboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152","possibleOutboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152,52.166.64.201,52.166.64.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3572' + - '3558' content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:09 GMT + - Mon, 13 Jan 2020 11:02:44 GMT etag: - - '"1D5BF826C26CC35"' + - '"1D5CA00CAC2B62B"' expires: - '-1' pragma: @@ -1523,7 +1524,7 @@ interactions: - -g -n --certificate-thumbprint --ssl-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1540,7 +1541,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:09 GMT + - Mon, 13 Jan 2020 11:02:45 GMT expires: - '-1' pragma: @@ -1577,7 +1578,7 @@ interactions: - -g -n --certificate-thumbprint --ssl-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1594,9 +1595,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:10 GMT + - Mon, 13 Jan 2020 11:02:45 GMT etag: - - '"1D5BF826C26CC35"' + - '"1D5CA00CAC2B62B"' expires: - '-1' pragma: @@ -1640,7 +1641,7 @@ interactions: - -g -n --certificate-thumbprint --ssl-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -1648,18 +1649,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:13.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T11:02:47.9133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A2ABB90472A729B866EC53EF7E9ECE9A3CBBD360D9A02517B3CF900D7D49586","kind":"app","inboundIpAddress":"52.166.119.99","possibleInboundIpAddresses":"52.166.119.99","outboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152","possibleOutboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152,52.166.64.201,52.166.64.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3609' + - '3600' content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:16 GMT + - Mon, 13 Jan 2020 11:02:49 GMT etag: - - '"1D5BF826C26CC35"' + - '"1D5CA00CAC2B62B"' expires: - '-1' pragma: @@ -1677,7 +1678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '498' + - '499' x-powered-by: - ASP.NET status: @@ -1698,7 +1699,7 @@ interactions: - -g -n --certificate-thumbprint --ssl-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -1706,18 +1707,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/web-ssl-test000003","name":"web-ssl-test000003","type":"Microsoft.Web/sites","kind":"app","location":"West - Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:33:13.11","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"565AFD823129C7399EC1EED37F6E7698D4E421F59034BB11CBE8C8247425CC31","kind":"app","inboundIpAddress":"40.114.210.78","possibleInboundIpAddresses":"40.114.210.78","outboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109","possibleOutboundIpAddresses":"40.114.210.78,40.114.239.62,40.114.231.39,13.80.106.127,40.114.212.109,40.114.236.249,40.114.238.127,13.80.108.215","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + Europe","properties":{"name":"web-ssl-test000003","state":"Running","hostNames":["web-ssl-test000003.azurewebsites.net"],"webSpace":"clitest.rg000001-WestEuropewebspace","selfLink":"https://waws-prod-am2-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestEuropewebspace/sites/web-ssl-test000003","repositorySiteName":"web-ssl-test000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["web-ssl-test000003.azurewebsites.net","web-ssl-test000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"web-ssl-test000003.azurewebsites.net","sslState":"SniEnabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":"9E9735C45C792B03B3FFCCA614852B32EE71AD6B","toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"web-ssl-test000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/ssl-test-plan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T11:02:47.9133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"web-ssl-test000003","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"8A2ABB90472A729B866EC53EF7E9ECE9A3CBBD360D9A02517B3CF900D7D49586","kind":"app","inboundIpAddress":"52.166.119.99","possibleInboundIpAddresses":"52.166.119.99","outboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152","possibleOutboundIpAddresses":"52.166.119.99,52.166.119.196,52.233.176.113,23.100.14.211,23.100.11.152,52.166.64.201,52.166.64.192","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-am2-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"web-ssl-test000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3607' + - '3598' content-type: - application/json date: - - Tue, 31 Dec 2019 02:33:17 GMT + - Mon, 13 Jan 2020 11:02:50 GMT etag: - - '"1D5BF82A6208360"' + - '"1D5CA00FD800295"' expires: - '-1' pragma: @@ -1758,7 +1759,7 @@ interactions: - -g -n --certificate-thumbprint --ssl-type User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -1767,17 +1768,17 @@ interactions: body: string: @@ -1789,7 +1790,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:33:17 GMT + - Mon, 13 Jan 2020 11:02:51 GMT expires: - '-1' pragma: @@ -1803,7 +1804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11994' + - '11999' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml index aef34e09084..3701ae2ed13 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_cd.yaml @@ -14,14 +14,64 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:35Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"error":{"code":"ServerTimeout","message":"The request timed out. + Diagnostic information: timestamp ''20200113T075655Z'', subscription id ''0b1f6471-1bf0-4dda-aec3-cb9272f09590'', + tracking id ''b5b05473-f847-43a7-96ee-b6031486f613'', request correlation + id ''b5b05473-f847-43a7-96ee-b6031486f613''."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 13 Jan 2020 07:56:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 503 + message: Service Unavailable +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - appservice plan create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T07:55:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:29:37 GMT + - Mon, 13 Jan 2020 07:56:57 GMT expires: - '-1' pragma: @@ -64,7 +114,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -80,7 +130,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:38 GMT + - Mon, 13 Jan 2020 07:56:59 GMT expires: - '-1' pragma: @@ -98,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1198' x-powered-by: - ASP.NET status: @@ -119,14 +169,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:29:35Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T07:55:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:29:38 GMT + - Mon, 13 Jan 2020 07:56:58 GMT expires: - '-1' pragma: @@ -169,7 +219,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -177,8 +227,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":52867,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_52867","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26536,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-111_26536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +237,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:48 GMT + - Mon, 13 Jan 2020 07:57:12 GMT expires: - '-1' pragma: @@ -205,7 +255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' x-powered-by: - ASP.NET status: @@ -226,7 +276,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -234,8 +284,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":52867,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_52867","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26536,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-111_26536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +294,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:51 GMT + - Mon, 13 Jan 2020 07:57:14 GMT expires: - '-1' pragma: @@ -286,7 +336,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -302,7 +352,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:52 GMT + - Mon, 13 Jan 2020 07:57:15 GMT expires: - '-1' pragma: @@ -320,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -341,7 +391,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -349,8 +399,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":52867,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-043_52867","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":26536,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-111_26536","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +409,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:52 GMT + - Mon, 13 Jan 2020 07:57:16 GMT expires: - '-1' pragma: @@ -396,7 +446,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -434,7 +484,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:29:54 GMT + - Mon, 13 Jan 2020 07:57:16 GMT expires: - '-1' pragma: @@ -460,7 +510,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "6.12"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": false}}''' headers: Accept: - application/json @@ -471,14 +522,14 @@ interactions: Connection: - keep-alive Content-Length: - - '519' + - '539' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -486,18 +537,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:00.823","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CDC6810AD975D27611931877550BB5E3B9DAA25A0BA8F8527C85E5303C7F6D3B","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-111.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T07:57:23.7333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"419AF99427196ED823DEE99FBD724F921A7C5E10E3AB11CE7021B7EF11831916","kind":"app","inboundIpAddress":"104.42.148.55","possibleInboundIpAddresses":"104.42.148.55","outboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103","possibleOutboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103,40.112.173.196,40.112.176.145,40.83.179.99","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-111","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3528' + - '3607' content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:18 GMT + - Mon, 13 Jan 2020 07:57:41 GMT etag: - - '"1D5BF8233BF5AD0"' + - '"1D5C9E7172DBF00"' expires: - '-1' pragma: @@ -515,7 +566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -536,7 +587,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -544,18 +595,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-043.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:30:01.213","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"CDC6810AD975D27611931877550BB5E3B9DAA25A0BA8F8527C85E5303C7F6D3B","kind":"app","inboundIpAddress":"104.40.92.107","possibleInboundIpAddresses":"104.40.92.107","outboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","possibleOutboundIpAddresses":"104.40.88.152,104.40.87.132,104.40.95.34,104.40.88.78","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-043","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick-cd000002","state":"Running","hostNames":["webapp-quick-cd000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-111.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick-cd000002","repositorySiteName":"webapp-quick-cd000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick-cd000002.azurewebsites.net","webapp-quick-cd000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick-cd000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick-cd000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T07:57:24.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick-cd000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"419AF99427196ED823DEE99FBD724F921A7C5E10E3AB11CE7021B7EF11831916","kind":"app","inboundIpAddress":"104.42.148.55","possibleInboundIpAddresses":"104.42.148.55","outboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103","possibleOutboundIpAddresses":"104.42.148.55,40.83.176.137,40.118.203.40,40.83.182.54,40.118.206.103,40.112.173.196,40.112.176.145,40.83.179.99","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-111","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick-cd000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3526' + - '3600' content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:18 GMT + - Mon, 13 Jan 2020 07:57:42 GMT etag: - - '"1D5BF8233BF5AD0"' + - '"1D5C9E7172DBF00"' expires: - '-1' pragma: @@ -597,7 +648,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -614,9 +665,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:30:30 GMT + - Mon, 13 Jan 2020 07:57:51 GMT etag: - - '"1D5BF82457AD830"' + - '"1D5C9E727C548CB"' expires: - '-1' pragma: @@ -630,7 +681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1199' x-powered-by: - ASP.NET status: @@ -651,14 +702,69 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-01-13T07:58:25.9068986 + https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-01-13_07-58-02Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '730' + content-type: + - application/json + date: + - Mon, 13 Jan 2020 07:58:25 GMT + etag: + - '"1D5C9E727C548CB"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --plan --deployment-source-url -r + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick-cd000002/sourcecontrols/web","name":"webapp-quick-cd000002","type":"Microsoft.Web/sites/sourcecontrols","location":"West - US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2019-12-31T02:31:02.4929065 - https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2019-12-31_02-30-41Z"}}' + US","properties":{"repoUrl":"https://github.com/yugangw-msft/azure-site-test.git","branch":"master","isManualIntegration":true,"isGitHubAction":false,"deploymentRollbackEnabled":false,"isMercurial":false,"provisioningState":"InProgress","provisioningDetails":"2020-01-13T07:58:50.9093818 + https://webapp-quick-cd000002.scm.azurewebsites.net/api/deployments/latest?deployer=GitHub&time=2020-01-13_07-58-02Z"}}' headers: cache-control: - no-cache @@ -667,9 +773,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:02 GMT + - Mon, 13 Jan 2020 07:58:56 GMT etag: - - '"1D5BF82457AD830"' + - '"1D5C9E727C548CB"' expires: - '-1' pragma: @@ -706,7 +812,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.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.Web/sites/webapp-quick-cd000002/sourcecontrols/web?api-version=2019-08-01 response: @@ -721,9 +827,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:31:32 GMT + - Mon, 13 Jan 2020 07:59:27 GMT etag: - - '"1D5BF82457AD830"' + - '"1D5C9E727C548CB"' expires: - '-1' pragma: @@ -764,7 +870,7 @@ interactions: - -g -n --plan --deployment-source-url -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -773,19 +879,19 @@ interactions: body: string: @@ -797,7 +903,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:31:35 GMT + - Mon, 13 Jan 2020 07:59:30 GMT expires: - '-1' pragma: @@ -839,13 +945,13 @@ interactions: content-type: - text/html; charset=utf-8 date: - - Tue, 31 Dec 2019 02:32:13 GMT + - Mon, 13 Jan 2020 08:00:08 GMT etag: - W/"1f-5wgfifX1chdI4CmMe+Iov0qAB9Q" server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=6abe2ec503776fbac71c62f2f74722d72f9db2620f14285172a5b8ce875e5c3e;Path=/;HttpOnly;Domain=webapp-quick-cdmorfb3lxt.azurewebsites.net + - ARRAffinity=94172f5487d231c2d0c7ffe567b886259eb44ddbfd8f88adc109ab9b026ea441;Path=/;HttpOnly;Domain=webapp-quick-cdwj6tpcgv6.azurewebsites.net vary: - Accept-Encoding x-powered-by: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml index 3c2993f86c1..019642086f0 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_win_webapp_quick_create_runtime.yaml @@ -14,14 +14,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T09:55:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:24:52 GMT + - Mon, 13 Jan 2020 09:56:06 GMT expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:24:52 GMT + - Mon, 13 Jan 2020 09:56:07 GMT expires: - '-1' pragma: @@ -119,14 +119,14 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-resource/6.0.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/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-31T02:24:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T09:55:58Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Dec 2019 02:24:52 GMT + - Mon, 13 Jan 2020 09:56:07 GMT expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26040,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26040","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27038,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27038","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:04 GMT + - Mon, 13 Jan 2020 09:56:18 GMT expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' x-powered-by: - ASP.NET status: @@ -226,7 +226,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26040,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26040","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27038,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27038","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:04 GMT + - Mon, 13 Jan 2020 09:56:20 GMT expires: - '-1' pragma: @@ -286,7 +286,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:08 GMT + - Mon, 13 Jan 2020 09:56:20 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -341,7 +341,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","name":"plan-quick000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26040,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26040","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' + US","properties":{"serverFarmId":27038,"name":"plan-quick000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27038","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:09 GMT + - Mon, 13 Jan 2020 09:56:21 GMT expires: - '-1' pragma: @@ -396,7 +396,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -434,7 +434,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:10 GMT + - Mon, 13 Jan 2020 09:56:22 GMT expires: - '-1' pragma: @@ -460,7 +460,8 @@ interactions: body: 'b''{"location": "West US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "6.12"}], - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, + "httpsOnly": false}}''' headers: Accept: - application/json @@ -471,14 +472,14 @@ interactions: Connection: - keep-alive Content-Length: - - '519' + - '539' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -486,18 +487,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:15.08","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BE3B283EB71A383C0CF5B33B290440B53DB42BD42E5FDB877454C8453CD398FA","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T09:56:26.7","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A6BE3CB8CAB6DFE528075BDE8EC60C912BC3EEEFC52C398AB873BA719EAFAC69","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3577' + - '3536' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:31 GMT + - Mon, 13 Jan 2020 09:56:44 GMT etag: - - '"1D5BF81898963EB"' + - '"1D5C9F7B8DE1C0B"' expires: - '-1' pragma: @@ -515,7 +516,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '497' + - '499' x-powered-by: - ASP.NET status: @@ -536,7 +537,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -544,18 +545,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-quick000002","name":"webapp-quick000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-12-31T02:25:15.6466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"BE3B283EB71A383C0CF5B33B290440B53DB42BD42E5FDB877454C8453CD398FA","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-quick000002","state":"Running","hostNames":["webapp-quick000002.azurewebsites.net"],"webSpace":"clitest.rg000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-WestUSwebspace/sites/webapp-quick000002","repositorySiteName":"webapp-quick000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-quick000002.azurewebsites.net","webapp-quick000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-quick000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-quick000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-quick000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T09:56:27.2966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-quick000002","trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"A6BE3CB8CAB6DFE528075BDE8EC60C912BC3EEEFC52C398AB873BA719EAFAC69","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-quick000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3580' + - '3540' content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:32 GMT + - Mon, 13 Jan 2020 09:56:44 GMT etag: - - '"1D5BF81898963EB"' + - '"1D5C9F7B8DE1C0B"' expires: - '-1' pragma: @@ -597,7 +598,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -616,9 +617,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:33 GMT + - Mon, 13 Jan 2020 09:56:45 GMT etag: - - '"1D5BF81898963EB"' + - '"1D5C9F7B8DE1C0B"' expires: - '-1' pragma: @@ -636,7 +637,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -657,7 +658,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -673,7 +674,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:35 GMT + - Mon, 13 Jan 2020 09:56:46 GMT expires: - '-1' pragma: @@ -710,7 +711,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -727,9 +728,9 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:36 GMT + - Mon, 13 Jan 2020 09:56:47 GMT etag: - - '"1D5BF819454C1CB"' + - '"1D5C9F7C41F7A40"' expires: - '-1' pragma: @@ -770,7 +771,7 @@ interactions: - -g -n --plan --deployment-local-git -r User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -779,17 +780,17 @@ interactions: body: string: @@ -801,7 +802,7 @@ interactions: content-type: - application/xml date: - - Tue, 31 Dec 2019 02:25:36 GMT + - Mon, 13 Jan 2020 09:56:47 GMT expires: - '-1' pragma: @@ -838,7 +839,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -855,7 +856,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:38 GMT + - Mon, 13 Jan 2020 09:56:49 GMT expires: - '-1' pragma: @@ -873,7 +874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -894,7 +895,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.78 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -911,7 +912,7 @@ interactions: content-type: - application/json date: - - Tue, 31 Dec 2019 02:25:39 GMT + - Mon, 13 Jan 2020 09:56:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index 3cdc32a76dc..371e884bb20 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -1067,7 +1067,7 @@ def test_webapp_ssl_import(self, resource_group): self.cmd('appservice plan create -g {} -n {} --sku B1'.format(resource_group, plan_name)) self.cmd('webapp create -g {} -n {} --plan {}'.format(resource_group, webapp_name, plan_name)) self.cmd('keyvault create -g {} -n {}'.format(resource_group, kv_name)) - self.cmd('keyvault set-policy --name {} --spn {} --secret-permissions get'.format(kv_name, 'Microsoft.Azure.WebSites')) + self.cmd('keyvault set-policy -g {} --name {} --spn {} --secret-permissions get'.format(resource_group, kv_name, 'Microsoft.Azure.WebSites')) self.cmd('keyvault certificate import --name {} --vault-name {} --file "{}" --password {}'.format(cert_name, kv_name, pfx_file, cert_password)) self.cmd('webapp config ssl import --resource-group {} --name {} --key-vault {} --key-vault-certificate-name {}'.format(resource_group, webapp_name, kv_name, cert_name), checks=[ From 295f08a315472be7c74bcaeebf34192f89af52e8 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Mon, 13 Jan 2020 20:21:12 +0800 Subject: [PATCH 32/51] pass mock --- .../cli/command_modules/appservice/custom.py | 1 + .../test_functionapp_commands_thru_mock.py | 24 ++++++++++++++----- .../latest/test_webapp_commands_thru_mock.py | 23 +++++++++++++++--- 3 files changed, 39 insertions(+), 9 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index 86c28408ec2..063f5c59ffc 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -1163,6 +1163,7 @@ def list_hostnames(cmd, resource_group_name, webapp_name, slot=None): def get_external_ip(cmd, resource_group_name, webapp_name): + SslState = cmd.get_models('SslState') # logics here are ported from portal client = web_client_factory(cmd.cli_ctx) webapp = client.web_apps.get(resource_group_name, webapp_name) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands_thru_mock.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands_thru_mock.py index bf27d011a74..8e80b6bbe5d 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands_thru_mock.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands_thru_mock.py @@ -12,11 +12,23 @@ from azure.cli.command_modules.appservice.custom import ( enable_zip_deploy_functionapp, enable_zip_deploy) - +from azure.cli.core.profiles import ResourceType TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) +def _get_test_cmd(): + from azure.cli.core.mock import DummyCli + from azure.cli.core import AzCommandsLoader + from azure.cli.core.commands import AzCliCommand + cli_ctx = DummyCli() + loader = AzCommandsLoader(cli_ctx, resource_type=ResourceType.MGMT_APPSERVICE) + cmd = AzCliCommand(loader, 'test', None) + cmd.command_kwargs = {'resource_type': ResourceType.MGMT_APPSERVICE} + cmd.cli_ctx = cli_ctx + return cmd + + class TestFunctionappMocked(unittest.TestCase): def setUp(self): self.client = WebSiteManagementClient(AdalAuthentication(lambda: ('bearer', 'secretToken')), '123455678') @@ -29,7 +41,7 @@ def test_functionapp_zip_deploy_flow(self, add_remote_build_app_settings_mock, enable_zip_deploy_mock, parse_resource_id_mock, web_client_factory_mock): - cmd_mock = mock.MagicMock() + cmd_mock = _get_test_cmd() cli_ctx_mock = mock.MagicMock() cmd_mock.cli_ctx = cli_ctx_mock @@ -50,7 +62,7 @@ def test_functionapp_linux_consumption_non_remote_build(self, parse_resource_id_mock, web_client_factory_mock): # prepare - cmd_mock = mock.MagicMock() + cmd_mock = _get_test_cmd() cli_ctx_mock = mock.MagicMock() cmd_mock.cli_ctx = cli_ctx_mock @@ -80,7 +92,7 @@ def test_functionapp_remote_build_supports_linux(self, web_client_factory_mock, add_remote_build_app_settings_mock): # prepare - cmd_mock = mock.MagicMock() + cmd_mock = _get_test_cmd() cli_ctx_mock = mock.MagicMock() cmd_mock.cli_ctx = cli_ctx_mock @@ -107,7 +119,7 @@ def test_functionapp_remote_build_doesnt_support_windows(self, parse_resource_id_mock, web_client_factory_mock): # prepare - cmd_mock = mock.MagicMock() + cmd_mock = _get_test_cmd() cli_ctx_mock = mock.MagicMock() cmd_mock.cli_ctx = cli_ctx_mock @@ -132,7 +144,7 @@ def test_enable_zip_deploy_remote_build_no_scm_site(self, get_scm_url_mock, get_site_credential_mock): # prepare - cmd_mock = mock.MagicMock() + cmd_mock = _get_test_cmd() cli_ctx_mock = mock.MagicMock() cmd_mock.cli_ctx = cli_ctx_mock diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py index 2ffc3b38b99..c84f66c2104 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py @@ -34,8 +34,20 @@ # pylint: disable=line-too-long from vsts_cd_manager.continuous_delivery_manager import ContinuousDeliveryResult +from azure.cli.core.profiles import ResourceType +def _get_test_cmd(): + from azure.cli.core.mock import DummyCli + from azure.cli.core import AzCommandsLoader + from azure.cli.core.commands import AzCliCommand + cli_ctx = DummyCli() + loader = AzCommandsLoader(cli_ctx, resource_type=ResourceType.MGMT_APPSERVICE) + cmd = AzCliCommand(loader, 'test', None) + cmd.command_kwargs = {'resource_type': ResourceType.MGMT_APPSERVICE} + cmd.cli_ctx = cli_ctx + return cmd + class TestWebappMocked(unittest.TestCase): def setUp(self): self.client = WebSiteManagementClient(AdalAuthentication(lambda: ('bearer', 'secretToken')), '123455678') @@ -50,7 +62,7 @@ def update_publishing_user(self, user): client_factory_mock.return_value = MockClient() # action - user = set_deployment_user(mock.MagicMock(), 'admin', 'verySecret1') + user = set_deployment_user(_get_test_cmd(), 'admin', 'verySecret1') # assert things get wired up with a result returned assert user.publishing_user_name == 'admin' @@ -95,12 +107,14 @@ def test_set_domain_name(self, client_factory_mock): def test_get_external_ip_from_ase(self, client_factory_mock): client = mock.Mock() client_factory_mock.return_value = client - cmd_mock = mock.MagicMock() + cmd_mock = _get_test_cmd() # set up the web inside a ASE, with an ip based ssl binding host_env = HostingEnvironmentProfile(id='id11') host_env.name = 'ase1' host_env.resource_group = 'myRg' + HostNameSslState, SslState, Site = cmd_mock.get_models('HostNameSslState', 'SslState', 'Site') + host_ssl_state = HostNameSslState(ssl_state=SslState.ip_based_enabled, virtual_ip='1.2.3.4') client.web_apps.get.return_value = Site(name='antarctica', hosting_environment_profile=host_env, host_name_ssl_states=[host_ssl_state], location='westus') @@ -292,6 +306,7 @@ def test_restore_deleted_webapp(self, site_op_mock): cmd_mock = mock.MagicMock() cli_ctx_mock = mock.MagicMock() cmd_mock.cli_ctx = cli_ctx_mock + DeletedAppRestoreRequest = cmd_mock.get_models('DeletedAppRestoreRequest') request = DeletedAppRestoreRequest(deleted_site_id='12345', recover_configuration=False) # action @@ -314,7 +329,7 @@ def test_list_webapp_snapshots(self, site_op_mock): @mock.patch('azure.cli.command_modules.appservice.custom.web_client_factory', autospec=True) def test_restore_snapshot(self, client_factory_mock): - cmd_mock = mock.MagicMock() + cmd_mock = _get_test_cmd() cli_ctx_mock = mock.MagicMock() cli_ctx_mock.data = {'subscription_id': 'sub1'} cmd_mock.cli_ctx = cli_ctx_mock @@ -324,6 +339,8 @@ def test_restore_snapshot(self, client_factory_mock): client.web_apps.restore_snapshot = mock.MagicMock() client_factory_mock.return_value = client + SnapshotRecoverySource, SnapshotRestoreRequest = \ + cmd_mock.get_models('SnapshotRecoverySource', 'SnapshotRestoreRequest') source = SnapshotRecoverySource(id='/subscriptions/sub1/resourceGroups/src_rg/providers/Microsoft.Web/sites/src_web/slots/src_slot') request = SnapshotRestoreRequest(overwrite=False, snapshot_time='2018-12-07T02:01:31.4708832Z', recovery_source=source, recover_configuration=False) From 8a9570464b48997550ee8de98896ab4c8cc69298 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 10:46:23 +0800 Subject: [PATCH 33/51] pass other tests in live mode azdev test --lf --live --- ...slb_vmss_with_outbound_ip_then_update.yaml | 1967 ++-- .../recordings/test_ams_sp_create_reset.yaml | 214 +- .../tests/latest/export_features_prop.json | 2 +- .../recordings/test_linux_webapp_ssh.yaml | 56 +- .../latest/recordings/test_webapp_config.yaml | 226 +- .../test_keyvault_certificate_contacts.yaml | 36 +- .../test_keyvault_certificate_crud.yaml | 281 +- .../test_keyvault_certificate_download.yaml | 42 +- .../test_keyvault_certificate_import.yaml | 30 +- .../test_keyvault_certificate_issuers.yaml | 84 +- .../test_keyvault_pending_certificate.yaml | 60 +- .../recordings/test_keyvault_secret.yaml | 142 +- .../test_keyvault_secret_soft_delete.yaml | 197 +- .../recordings/test_keyvault_softdelete.yaml | 1528 +--- .../test_keyvault_storage_account.yaml | 175 +- .../latest/zone_files/zone1.txt_export.txt | 2 +- .../latest/zone_files/zone2.txt_export.txt | 2 +- .../latest/zone_files/zone3.txt_export.txt | 2 +- .../latest/zone_files/zone4.txt_export.txt | 2 +- .../latest/zone_files/zone5.txt_export.txt | 2 +- .../latest/zone_files/zone6.txt_export.txt | 2 +- .../latest/zone_files/zone7.txt_export.txt | 2 +- .../latest/zone_files/zone8.txt_export.txt | 2 +- ...create_for_rbac_with_existing_kv_cert.yaml | 2604 +----- .../latest/recordings/test_node_type.yaml | 8118 +++++++++++------ .../test_vmss_create_linux_secrets.yaml | 223 +- 26 files changed, 7162 insertions(+), 8839 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml index 689334b5a8a..fb6bce60b67 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml @@ -1,8 +1,7 @@ interactions: - request: - body: !!python/unicode '{"sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location": - "eastus"}' + body: '{"location": "eastus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' headers: Accept: - application/json @@ -19,35 +18,32 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2019-09-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - ,\r\n \"etag\": \"W/\\\"4eaf2915-3e0f-481d-8313-162648c107c3\\\"\",\r\n \ - \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"77203fae-70da-4ee4-b7ff-e3499a36cd1b\"\ - ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ - : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n\ - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ - : {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n\ - }" + string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n + \ \"etag\": \"W/\\\"2cb5fef0-5314-432e-9864-5fc08d28932a\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"46af33cf-7a33-4cf3-8dcd-ee81507badc3\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d534a649-f5c3-4bc6-a333-b5b609576e90?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bc07c0df-a6e5-4265-81a0-4f960a6b3e55?api-version=2019-09-01 cache-control: - no-cache content-length: - - '649' + - '624' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Sep 2019 02:02:15 GMT + - Tue, 14 Jan 2020 01:22:01 GMT expires: - '-1' pragma: @@ -60,7 +56,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6707e2e8-a29f-4b89-a95a-6ec17cc54d7e + - ea2960b0-2a15-421c-9d59-0bbaa7f76dee x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -80,13 +76,13 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d534a649-f5c3-4bc6-a333-b5b609576e90?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bc07c0df-a6e5-4265-81a0-4f960a6b3e55?api-version=2019-09-01 response: body: - string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -95,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Sep 2019 02:02:17 GMT + - Tue, 14 Jan 2020 01:22:04 GMT expires: - '-1' pragma: @@ -105,10 +101,14 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a867774e-534c-4c13-b328-a6d7c2894b34 + - 576e1cfe-7e78-42e1-a258-550302546177 status: code: 200 message: OK @@ -126,33 +126,31 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2019-09-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - ,\r\n \"etag\": \"W/\\\"8c5952ef-f94d-4137-96ad-17f0cf4fed25\\\"\",\r\n \ - \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"77203fae-70da-4ee4-b7ff-e3499a36cd1b\"\ - ,\r\n \"ipAddress\": \"40.88.48.193\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ - ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n + \ \"etag\": \"W/\\\"33b5913c-e252-479d-a459-254e07ac8015\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"46af33cf-7a33-4cf3-8dcd-ee81507badc3\",\r\n \"ipAddress\": + \"52.142.20.48\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '684' + - '659' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Sep 2019 02:02:17 GMT + - Tue, 14 Jan 2020 01:22:04 GMT etag: - - W/"8c5952ef-f94d-4137-96ad-17f0cf4fed25" + - W/"33b5913c-e252-479d-a459-254e07ac8015" expires: - '-1' pragma: @@ -162,17 +160,20 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fcefbf40-5644-40f2-b457-999e0f511b89 + - 743390ca-518b-4d0d-bc5d-a9bb1883675d status: code: 200 message: OK - request: - body: !!python/unicode '{"sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location": - "eastus"}' + body: '{"location": "eastus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' headers: Accept: - application/json @@ -189,35 +190,32 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.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/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2019-09-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ - ,\r\n \"etag\": \"W/\\\"11bc5714-2010-471b-a9d1-018a3ca3b7d0\\\"\",\r\n \ - \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"dbb3d4c9-fea4-4188-9065-513c945765a3\"\ - ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ - : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n\ - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ - : {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n\ - }" + string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n + \ \"etag\": \"W/\\\"bb5e85aa-ba3b-40bc-98d6-6c6a9fcb3896\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"109bafbc-9334-4106-b9a5-08bb2b876d06\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/005a9f8e-8c7e-4d75-a9c0-d13b6a8f1cd5?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/01566cf3-68f1-4642-86db-b279bf6149e9?api-version=2019-09-01 cache-control: - no-cache content-length: - - '649' + - '624' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Sep 2019 02:02:19 GMT + - Tue, 14 Jan 2020 01:22:15 GMT expires: - '-1' pragma: @@ -230,9 +228,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16226a92-19df-4427-9bf2-6ced5ada3e4f + - a947c2c1-24c4-4bba-8dc4-e645148b2861 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -250,61 +248,13 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/005a9f8e-8c7e-4d75-a9c0-d13b6a8f1cd5?api-version=2019-09-01 - response: - body: - string: !!python/unicode '{"error":{"code":"ServerTimeout","message":"The request - timed out. Diagnostic information: timestamp ''20190912T020306Z'', subscription - id ''c1089427-83d3-4286-9f35-5af546a6eb67'', tracking id ''52e7d687-7135-4ae2-b3b0-fb0308f4520d'', - request correlation id ''52e7d687-7135-4ae2-b3b0-fb0308f4520d''."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 12 Sep 2019 02:03:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 503 - message: Service Unavailable -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --location --sku - User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/005a9f8e-8c7e-4d75-a9c0-d13b6a8f1cd5?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/01566cf3-68f1-4642-86db-b279bf6149e9?api-version=2019-09-01 response: body: - string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -313,7 +263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Sep 2019 02:03:06 GMT + - Tue, 14 Jan 2020 01:22:17 GMT expires: - '-1' pragma: @@ -330,7 +280,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 522d0727-cb01-402a-98c2-63cc67f0594f + - 30bbf765-9c5a-4354-b2da-b72f87e3c43d status: code: 200 message: OK @@ -348,33 +298,31 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2019-09-01 response: body: - string: !!python/unicode "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ - ,\r\n \"etag\": \"W/\\\"a5381b98-e1d1-4ce9-b51a-ed95938e7233\\\"\",\r\n \ - \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"dbb3d4c9-fea4-4188-9065-513c945765a3\"\ - ,\r\n \"ipAddress\": \"40.88.48.204\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ - ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n + \ \"etag\": \"W/\\\"98f1b9a2-5e3c-42c0-b2c0-85c5174a60f4\\\"\",\r\n \"location\": + \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"109bafbc-9334-4106-b9a5-08bb2b876d06\",\r\n \"ipAddress\": + \"52.149.202.233\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '684' + - '661' content-type: - application/json; charset=utf-8 date: - - Thu, 12 Sep 2019 02:03:07 GMT + - Tue, 14 Jan 2020 01:22:17 GMT etag: - - W/"a5381b98-e1d1-4ce9-b51a-ed95938e7233" + - W/"98f1b9a2-5e3c-42c0-b2c0-85c5174a60f4" expires: - '-1' pragma: @@ -391,7 +339,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fa54f5a8-36a4-4a51-8c55-2b38b396be24 + - 0b98ac0d-42aa-4ac1-81e7-f90bd7fe7f2f status: code: 200 message: OK @@ -410,15 +358,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-resource/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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/resourcegroups/clitest000001?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"date":"2019-09-12T02:01:32Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -427,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 Sep 2019 02:03:07 GMT + - Tue, 14 Jan 2020 01:22:18 GMT expires: - '-1' pragma: @@ -442,18 +390,17 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"enableRBAC": true, "linuxProfile": {"adminUsername": + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]}}, "networkProfile": {"podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "networkPlugin": "kubenet", "loadBalancerSku": "standard", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}, - "dnsServiceIP": "10.0.0.10"}, "dnsPrefix": "cliaksdns000004", "kubernetesVersion": - "", "agentPoolProfiles": [{"count": 1, "scaleSetEvictionPolicy": "Delete", "scaleSetPriority": - "Regular", "name": "nodepool1", "osType": "Linux", "vmSize": "Standard_DS2_v2", - "type": "VirtualMachineScaleSets"}], "addonProfiles": {}, "servicePrincipalProfile": - {"secret": "r7rpDQLwRhJQF/WoSPp6sMKJB9GQJCsZ9/o8xkqP/xM=", "clientId": "fe3666d9-187f-4884-882e-85b5d0c2b2f0"}}, - "location": "eastus"}' + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -464,56 +411,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1736' + - '1716' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": \"1.13.10\"\ - ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"provisioningState\": \"Creating\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n\ - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ - ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n },\n \"maxAgentPools\"\ - : 8\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2387' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:03:13 GMT + - Tue, 14 Jan 2020 01:22:26 GMT expires: - '-1' pragma: @@ -525,12 +449,22 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: - code: 201 - message: Created + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -540,29 +474,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:03:44 GMT + - Tue, 14 Jan 2020 01:22:37 GMT expires: - '-1' pragma: @@ -571,17 +510,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -591,29 +538,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:04:14 GMT + - Tue, 14 Jan 2020 01:22:45 GMT expires: - '-1' pragma: @@ -622,17 +574,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -642,29 +602,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:04:44 GMT + - Tue, 14 Jan 2020 01:22:54 GMT expires: - '-1' pragma: @@ -673,17 +638,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1192' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -693,29 +666,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:05:14 GMT + - Tue, 14 Jan 2020 01:23:03 GMT expires: - '-1' pragma: @@ -724,17 +702,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1191' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -744,29 +730,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:05:45 GMT + - Tue, 14 Jan 2020 01:23:11 GMT expires: - '-1' pragma: @@ -775,17 +766,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1190' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -795,29 +794,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:06:15 GMT + - Tue, 14 Jan 2020 01:23:19 GMT expires: - '-1' pragma: @@ -826,17 +830,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1189' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -846,29 +858,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:06:45 GMT + - Tue, 14 Jan 2020 01:23:27 GMT expires: - '-1' pragma: @@ -877,17 +894,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1188' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -897,29 +922,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:07:16 GMT + - Tue, 14 Jan 2020 01:23:35 GMT expires: - '-1' pragma: @@ -928,17 +958,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1187' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -948,29 +986,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:07:46 GMT + - Tue, 14 Jan 2020 01:23:44 GMT expires: - '-1' pragma: @@ -979,17 +1022,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1186' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -999,29 +1050,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:08:16 GMT + - Tue, 14 Jan 2020 01:23:52 GMT expires: - '-1' pragma: @@ -1030,17 +1086,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1185' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -1050,29 +1114,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:08:47 GMT + - Tue, 14 Jan 2020 01:24:00 GMT expires: - '-1' pragma: @@ -1081,17 +1150,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1184' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -1101,29 +1178,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:09:17 GMT + - Tue, 14 Jan 2020 01:24:08 GMT expires: - '-1' pragma: @@ -1132,17 +1214,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1183' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -1152,29 +1242,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:09:47 GMT + - Tue, 14 Jan 2020 01:24:18 GMT expires: - '-1' pragma: @@ -1183,17 +1278,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1182' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -1203,29 +1306,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:17 GMT + - Tue, 14 Jan 2020 01:24:25 GMT expires: - '-1' pragma: @@ -1234,17 +1342,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1181' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -1254,29 +1370,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ - ,\n \"status\": \"Succeeded\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ - ,\n \"endTime\": \"2019-09-12T02:10:38.3655409Z\"\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:47 GMT + - Tue, 14 Jan 2020 01:24:33 GMT expires: - '-1' pragma: @@ -1285,17 +1406,25 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1180' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json @@ -1305,50 +1434,34 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ - ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2607' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:48 GMT + - Tue, 14 Jan 2020 01:24:41 GMT expires: - '-1' pragma: @@ -1357,73 +1470,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1179' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.13.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"\ - cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \ - \ \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 100,\n \ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"\ - publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ - ,\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ - ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n },\n \"maxAgentPools\"\ - : 8\n }\n }\n ]\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2756' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:50 GMT + - Tue, 14 Jan 2020 01:24:49 GMT expires: - '-1' pragma: @@ -1432,73 +1534,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1178' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -o + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \ - \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ - : \"1.13.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"\ - cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\",\n \"agentPoolProfiles\"\ - : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \ - \ \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 100,\n \ - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ - \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"\ - publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n\ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ - ,\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ - ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n },\n \"maxAgentPools\"\ - : 8\n }\n }\n ]\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2756' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:51 GMT + - Tue, 14 Jan 2020 01:25:09 GMT expires: - '-1' pragma: @@ -1507,71 +1598,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1177' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US - method: GET + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ - ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2607' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:52 GMT + - Tue, 14 Jan 2020 01:25:18 GMT expires: - '-1' pragma: @@ -1580,52 +1662,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1176' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks create Connection: - keep-alive Content-Length: - - '0' + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --file + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\"\ - ,\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VWNGVrTkRRWEVyWjBGM1NVSkJaMGxSU1d3MlEwMXVZbmhDV0U0eWFXdzVUVmw2VEVSNGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjRUMVJCTlUxVVNYZE5WRlY2VFdwU1lVWjNNREJQVkVFMVRVUlJkMDFxUVhwTmFsSmhUVUV3ZUFwRGVrRktRbWRPVmtKQlRWUkJiVTVvVFVsSlEwbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVVVkdRVUZQUTBGbk9FRk5TVWxEUTJkTFEwRm5SVUY0UVhkc0NrVmtiMjVaY0dwYWJEUkRWRlZIUVd0SlRYSktNR3hzVTBwMFprRTVTVlp5TkV3MWRFTlVUbE5pVDNWNlVTOXdNemhuU0dZdk5GUk1TbTF0UVVsclJtMEtZazEzYjAxNmJFTmhRV05oTXpWQ2NHTkRUbWRYTUROb1JHRllkbGx4UzI5NWJHUlRWV1pOWW5GbWFWaDFXRk53V2tWVGNrNXdXazVrUnl0bllqa3ZlQXA1T1d0bE9UQTVVMDh4V0ZKbGMyOVdNVXBRTUV0aFNqbGhTakV2TkRSclRsZExNbU4yYVV4VWVscGpja1J0TUVaa1EwRTNibmN2TUROdVdVWXhRMmxpQ25oV09FRk5kalJVWTFCUlVFRmhOWGRKV1U5SE4waE5kVkZrY21GTlNVMUtaMHBuYzA0MWF6Sm1RMmQ2WlZGQlQzbHNZbXBpUkhNd1FtZEpaRXRWY1VvS1pUTlNORlpYYkc4MU1Dc3dSVVpaV1M5UmRDOWtaMVp2UlhKRFRtbE9kQ3Q0UW1kUGJVUk9hMFJNWTNGcU1GQldZemhFVlVvck9UaDBZblpEYTJKeFRBcDNkMFZFTW5oRFRXNHZXRTFqYWtwNVFVd3laWGQ0UW1kQ01HdHlNMWhsVVdzd1dWUkxWemRzY0Rnd1UycDBUa0ZQYTI5NFRIcEdLMnc1T1ZOUmVFVjFDbVZTYkVWWGJqUlNSM0J0ZUhOc1VURkRiamgzZW5JeWIzVldlR3RxTldWeGVXNXhWM1pFS3pWeWVFTTNWRkI2Y2k5eVRuRTNSV3BxVERWWGJtaEtRakVLTlROQk16Y3lNRVJrZUdSME5VRlVWWE5DTmxGblFUVTNUV0kzTUVOU1JURTRVVTlQVm01SlkwUlRNSGhDZFZsQ2NVVlJURXhKT0hCVVVrb3hkWE5oV1FwTGEydGpOM0pFTDIxVlZubHdibkpxSzBaUFIxbG9ibkpqZUhkNkwzQkljVTlTVTNWcE1HRkVWV0ZMY3pCMlVWaDRaMDlEUTJ4R1duSktObE5EYW5CU0Nua3dTREJyU20xcWRWY3ZMeXRxTVd4MGVEQjRkVVIxVmpRNWQwZEZNRGt6ZFZwNlVYUTFWbVE0Y1hrMVVrZFJaemxZV2tVeFl5OUhXRVZrWjB0U1owTUtWMnhEVldocWQyTlJOV1F6YjNrMVlVUnJVM2hDUjNOWlEwSXJSR2hQZVhCQ05YTjNSR0V3UTBGM1JVRkJZVTFxVFVORmQwUm5XVVJXVWpCUVFWRklMd3BDUVZGRVFXZExhMDFCT0VkQk1WVmtSWGRGUWk5M1VVWk5RVTFDUVdZNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1JVZExWbUpIQ2xNNWJ6UjNTM1l4TDJJMVIxYzBORWNyU1hWTlVEaG1NSGhsUnl0c1ZHMVhXbTFLTVZNNE0yY3ZLMGxJWlhaSU5Fc3daR013UVhCWlVqRXhaWGg1VW1NS2RtZzRNVGh5T0VGdFQzaHhObE5RU2tOalJteDBlbWhwUVZGQksyUlhUblpaYW5KQ2RrdHRlbVpuTUZWTllqSXlaMGw1T0RKWGVYTlVlamt2Wml0MFp3cFlURmswUkM5dVEybDJTR3AwZDB4a1RXWkpPV3RGVGxvMVZpOVlObkpSVFZKdFNFNUxlazVQZDFaaGMyUTBablp3UzFkS09GQldhaTlEWjBKamRXMWFDakZrUkU1MlRuWkNiV2hwVERkSGJGaDVLM2RTTVZWa1dGVnlhemxDTlVGQ01EWkNOVUUwZVhSS056QlFabWhsYUZOS0swNDNOelEwVmxJcmMyWm9MMllLWWtaVFVtcFNLM3BOUjJSR2JVOUZkVEV6UlhSbmNVOUplREIzWm01SWVteENPVXRZV1hKcGFqaDRRM05OVEhoYWFGaFNUMGx4VjJ4eGIwRmFRMk12TndwV09EZE9aSFZUYVRFMVEydG1NVVIyUW5JNFFtSlhiblIzYTNCdWNqQjVPWGRzUVZWVFIyWmFRMjh5UTFsc2JWSlNPSFJ5ZVV0aGNIbE9iSEpoU0ZsV0NqRXpOR2RIWjNrdlFtazFOME5LYTJoWU1IaDVOMDl6YUdwQ05uSkpSWEJyWkhKcGEwOVFOa3cxVUdNeVFVaFRZVEZEVGxadlRUWnpWelJyWVZSa1VuQUtVbmxQV2s5Q2VWUm1ZMk53VEVoQ05IazJPR2h3YldsT2NubzRMemd6TkVWU1JVVkhPVXRJVVhGM1UxcGxhbXN2TVVoelUwcHBOR3BZV0djd1NFcHZiQXBqU1ZnemQyUlpZalJ6VERGS1pWUXdaR00wUjB0aGQwMXFkRUpWYW1jMk9XWkJZUzlJYW05S1pVcHphRTFCV0dkMGEydElPR1Y0YURGQmFtRm9TemhzQ2tGcFZHeGtXQzlWVVZWa2RHcHJSRVY2ZFVkb01VWnpkblJaUmtjdlIwZFdXbTVtTTJGbVNub3dVRlpDYUZVMFRtWlBSRU13TVVkbUsxRlRjVmhIYmtJS2FIUkdhSEZ3ZGpOU2QzWlBVVGwxVGpWTGQxbExNa2RGUm5JcldsaG1iMWR2Ym10ckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2txcTRlemItNzFmNjRlODYuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG50dTZhMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG50dTZhMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIG5hbWU6IGNsaWFrc3Rlc3RudHU2YTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bnR1NmEyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVVXZSRU5EUVhWVFowRjNTVUpCWjBsUlVtaElPRGxvVlZoV01ESlVLMVJQZUUxNkwyVTRla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI0VDFSQk5VMVVTWGROVkZWNlRXcFNZVVozTUhsTlZFRTFUVlJGZDAxcVFYcE5hbEpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjBlVTlIY0U1MFR6bGFOa2hQVldseGNHRnFka1VLVkhGUFJGbFZablZQYmtnd1dtZHRXa0pOVkRoNFlpc3pVMGhtVW1kVmNXdDRSelExVGpkSVJ6TkZTREJ5THpKMlNHZGlSR3N5UldFeGFWQXJVbmwwVlFvMGMwOUthbU4wZVhCUVIxSnRkVVpTVERNNU56ZEhkaTh3UWxCMmIzZHRSRFZpZDJsUVp6QTFZMFp1ZGpaWFdtSTRXbUZ6WmtremJGQXllblJJWW5KVkNuUkVVR29yY0V0V05Fc3ZZbWh5U0hWbVJETXdjaXRJYld0U0swUjVPV3hPV0hkc1ptVlBURXRXU25wSGFEUm1kRTFCYkhOWWRHUk5PVXh0ZFRCUWNETUtibmhVVjJ0UlFXNTFMemR4T1VKcVFVVkVZV3BIUkUwNWFGWkdNVEUwT1V0MlZHaDNjemd4T1RadVEzQlJVbEJwUmtZeUwzVk1TVkJ5S3poWFFXSm9WQXBIYkVOV05GbHpPRUpRYzBGQ2NVSkhSbHByYUd3NWIxVXJUbWN5ZEdrMFFVdGpOM0JtVEhOcU1IaFlTakpwUkVkQ0wwbzFlVTUyS3l0SlpqUlphRmMwQ2l0MFluUklTMFpxZGtWRGJ6UnhXVkF3UVZScU1pdENWMXBpYzBVeVpHNTZlV2RHYTNGRkwyUjBWbk5NVEZwdWFGRnpXRkpxTTFkWFkyUmpVWGd6ZFdVS2RVNWFWek0yZVZKVFNUZ3piVTFqYm1kdFpUSlhiVGRCUTNWeFZ6SkxkR3R6ZDNRdmFtWXJSSHB4TUZSUVIxSnVlREU1ZWpSMFdTOVBNR2N2Um1aeVJBcDZkSHBNV201MVl6aHRkMXBPZUdSaVFXSXdhVE5XTjNGU1JIaFZjV0k1WW5SRU1HeG9PRzU1YWxRNVdXMU9VSGRDV21aR1dGSXZUV2xJYUV3dlIwdDJDbkp3TmpWa1QzaFpjV1pOYmxCNlprMXNTMjlXT0U1b2MxbzJjRWxuTVVad2NUWkVUQ3RYUVRkbWJ6WmtlSFpwYUhvNVlsY3lURXBQTkV4SVJXSktXWG9LUjFoTlIwaDRXVko2VDJweWMzWnNibmxqY1hWbU5raG1hM2RPSzNOMloyVkhXalZKWVhsUGQxTkVNVkpHYjNFck1XdDVkMWxuYldwMWRHTjJZakJHTXdwcGVXeDFOREZsYms5elNHaENOUzlNTTNaTldWZFJTVVJCVVVGQ2IzcFZkMDE2UVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRUtSMkUxYlVOTVpHWjNWVk5RTUVSTE9WcGxTR2REUm01MVlXczNibWt4Wkc1MVoyVnFOMmxxZVhOMGIyeE1MekJHTTNkTWJtUmthM1ZGYTJKNk4xUmlNUW93ZWtSNU5VNHpVM1IzU2xkUk5FZDJaR1ZFUkZCWlRsZGpXRVZTU0dOWk1saHliSGxxUTBVeWNDczNSM05sUzBGYVJVZzVZbWhFTTFWNldEaDBUR2xpQ2tNdllVeGtXazlJVlhwV2F6SkNla3BSTmxoamRGTTJZMDFxUlZKbFkzUk5iV3BUV0ZJd1IzbG9MMlU0UXpnd2RVOVhZbmhoUkVGNldTOXdUSHBRVEdRS2JrMXlWRWhrWWxsMGJtMUhObmc0YlVSbFVsWnZaVU5TVGxnM056QlpTMFZ6YUZWWmFDODJSak4wZUVkTVYzTm5WR05SU1V4VVMzYzNlV1VyUm5ad05RcEhNbmMyT0VORFRreHVOWFJvYUU0d1JuZ3pWblozT1VsaU9YaHJkamRxVUdzdlYzSjZLMFp3YWs0MmVYbzBabkZFY25RMlNWZzRaVlJqVDBRNWQyWjNDblpVYVVGTFUxSTNNMHBXZEhwV1VsWk1ZekpqT1ZWU1NXcG5aMWczVEVWRFQyZFllbGhrY0dSaWQxVlBVWE53VkhWcE1YRnRkWGN5V1V3NE5uWmpXbkFLU0hCUE4yZElTamRDZEc0d2RERkNjVmwxU2sxMllUVkJRVEpKTXpkUGJ6Uk9WMWN5UjJsd2JYaDZXSHBaWkZobGRtaFFiazU2VlRCR1QyaDJXalV6WVFwWWFrMVFNRGRNT1M5UU1GbFFTVlV4WkRneU1IWkNWMnRLUW10Wkt6STBhakpTTjJOWFNtUXJUMmxxTjNaVldYWnBNMk5CZEZCa1NqbERNbTVEVFVOMUNrbFBTMkpJYUdkaEszSmhNM0JWY3pOblNrOTBibWhEWmk5RVdtRkhRM2hqZW5Ca1RtTlFOWGQwVWxkeU5Fd3lRVWhTVW5sTUsyY3ZTek55ZURWc1lYRUtSR3RzWW1OSWFrbGlabGRDUWxvcmFqSm1ORVpyUjBWT1IwRmxTM0ZzTUhGbEwycEtVMDVqVmpNd1VEQk5WR0UxUmxWMFVteFhUekZEVkd4SFptZHJPQW93ZG5OcWNrMHpXV2hYYXpBdk5FZHZiekUyVEZoallubEVLMnBJZDBWTWMyMXVZMDlqWlRRcmIwZzRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJjbU5xYUhGVVlsUjJWMlZvZW14SmNYRlhiemQ0UlRacVp6SkdTRGRxY0hnNVIxbEtiVkZVUlM5TlZ5OTBNR2d6Q2pCWlJrdHdUVkoxVDFSbGVIaDBlRUk1U3k4NWNuZzBSM2MxVG1oSGRGbHFMMnRqY2xaUFRFUnBXVE5NWTNGVWVHdGFjbWhWVXprdlpTdDRjaTg1UVZRS056Wk5TbWNyVnpoSmFqUk9UMWhDV2pjcmJHMVhMMGRYY2toNVRqVlVPWE0zVWpJMk1VeFJlalF2Y1ZOc1pVTjJNalJoZURkdWR6azVTeTlvTlhCRlpncG5PSFphVkZZNFNsZ3phbWw1YkZOamVHOWxTRGRVUVVwaVJqZFlWRkJUTlhKMFJEWmtOVGhWTVhCRlFVbzNkaXMyZGxGWmQwSkJNbTk0WjNwUVdWWlNDbVJrWlZCVGNqQTBZMHhRVG1abGNIZHhWVVZVTkdoU1pIWTNhWGxFTmk5MlJtZEhORlY0Y0ZGc1pVZE1VRUZVTjBGQllXZFNhRmRhU1ZwbVlVWlFhbGtLVG5KWmRVRkRiazgyV0hrM1NUbE5WbmxrYjJkNFoyWjVaV05xWWk5MmFVZ3JSMGxXZFZCeVZ6ZFNlV2haTjNoQmNVOUxiVVE1UVVVME9YWm5WbTFYTndwQ1RtNWFPRGh2UWxwTGFGQXpZbFppUTNreVdqUlZURVl3V1RreGJHNUlXRVZOWkRkdWNtcFhWblFyYzJ0VmFWQk9OV3BJU2pSS2JuUnNjSFYzUVhKeENteDBhWEphVEUxTVpqUXpMMmM0Tm5SRmVuaHJXamhrWm1NclRGZFFlblJKVUhoWU5uYzROMk41TWxvM2JsQktjMGRVWTFoWGQwYzVTWFF4WlRaclVUZ0tWa3R0TDFjM1VUbEtXV1pLT0c4d0wxZEthbFE0UVZkWWVGWXdabnBKYURSVEwzaHBjalkyWlhWWVZITlhTMjU2U25vNE0zcEtVM0ZHWmtSWllrZGxjUXBUU1U1U1lXRjFaM2t2YkdkUE16WlBibU5pTkc5akwxY3hkR2w1VkhWRGVIaEhlVmROZUd4NlFtZzRWMFZqZW04Mk4wdzFXamh1UzNKdUsyZ3pOVTFFQ21aeVREUklhRzFsVTBkemFuTkZaemxWVW1GTGRuUmFUWE5IU1Vwdk4zSllUREk1UW1RMGMzQmlkVTVZY0hweVFqUlJaV1o1T1RkNlIwWnJRMEYzUlVFS1FWRkxRMEZuUW1aMlRFeFZhbUZtU1ZORVkxUmxjVU5YUWtSbk5IaFViUzlRZGtKd2FGUnJVamh6VTBkNkswaFdablowUnpsV01VMTRXRlpvYmk5Vk5RcEJSREp1TVRrNVpEbFVXa1ZMY2pVdlREaHVia0oxUmpsVE5tWk1ZemhHVmtob1FtVmpRUzlGY25oYVFuRXpSVWg2UVRoVVRtOWFSa1puVVM4M1YyWm1DbFpXTDJweVRXeG1TMkV5UTB0WE1XZFRTak5FUmxaWWEzRjFVWEZIWW5kalpFRlpaRWN4VEVkR1ZWbG5iemhHWkRoNVlqTTFhWElyWVVkaGJVRlNNR2NLZHpJdmRFWjJMMjVRZGt4aE9FRlFRVGs1TmxWUWNESnpaVTlSUXpCc2FXZGxMMFZvT0hGa1ZYVklVMHRIYlZJdlNrOHpWbXB2VWpVM2RUWTFkR1JTU3dwQmExQkxaMnRVWldWVlQwTTBUVlpyZDFaTlZ6UlZNVTVUYkZaS1RYTTBRMUVyV2pSbmFWaHJkR05JUmpKc1FYQXJXVmhwTVRsUlJrVkJaak5tZUVSSENrRkVhalJYTW1zNVkycFdjalI1VkhCbmIxaDJlVTl5WmtsMWJtcDJURzFKYm1sbU4yWkJkVFpUTjJ3eU5VdDRWbU41Y1U5b1ZtMVhObFZhV1ZBclJVSUtUMDlPYldOQ1ltbGlObmN4VWpFNFl5OVZiRWt3VnpoRVNFWm9aUzg0SzJWR1RIYzFWVkU1U1RWdlJrdFVRMFJJTVhoVU1uRm5ibGg0YUdNMVRHSTRkZ3BWUW5FNWJHeFFjR3R3Ym1Od1NVSXhlbWRDWW5SMGRVdDRWVnBpUlVGMGRuaHNXRFpqWms4M0swSnJTakZyYkVvME1VOUNjRGRNUlVGQ1dUUk9kSEpvQ2pCT1lYRldjM2wyT1VKTFltTnpXVFJHVURWdWJrTlhjVmhEUVV3NE9UZENjRkUzY2twdlYzRnZaa0ZFWkhCNVNUbExWVFl3WVM5clZuVXJOMVZhT1RVS01EZEJkVUZyVVd4S2JsY3ZRMDkxTHpsUk9HOUNiSFJ1V2poQ1kyeFVWMjFIVWxCWFZYcHNOQ3RGTlZJcmIwdEpSR1Z5UWtGaFdsWlNNbk5XVFhOb1NRcHFVbEZGWTI1aFMxUTRTM1ZsVjFONE1GTjNUV3BKYUV3NE4yTktZbXQ2YTJkbldVNVZVMVJOT0c0Mk9IVm5VbFp2VVV0RFFWRkZRVFZ3Tm0xdlNtOUdDbEJTTWswMVRVUjNia2Q0YWtnM1MwZFRWRlp1TUVkNmFERXZOeXR2Y0dwbVJ6RTBMMFJ1VUROWFVrNXJkVzg1UVhoeE5YZERUbkl5YUhOSVdGRTVZV2NLU0hCVGR6VnNNVmRTWlhKMFZpOUpOSEpJVURVeWIyWmFTMFpOYUZoelZtaEllVlIwTUdadlVYQldWWGxsUmtGNWRsQXdibWRFU2tsdFJHMXJjalpJUkFwcE1FYzRNSEoxYkhOcWJYbzVVR2dyTlZSVVRFVlpWV041UkhnekswSjVURE54WldaU01reG1aMVJtZEZCV1lsZDBjRGhKWTBWeFluUndTVkJpZUc5TkNrNHJibTFJUXl0Tk1qVjVTVXBTVW05b2RYcHBjM0JsTms5V1VrSjJOVVpyY2tWc2RtSXhNVk14VlRoMVoyMVNSMEYwVFZKYU56ZDNUbkIxYjNCMk5tTUtkVEp1TUhWM2RrazNibTF1VDNJNFZHRlBkMkkxUmtwdVdHZzJaVEp1VVdWTGJqWjVLMHhDYmpkUWVETlJWVmRDY0d0RWRGbDFVakYxVDI5eFJIbHZlUXB1WVUxSmVUazJXamhwY25Wa2QwdERRVkZGUVhkUGFpdEhkMXBYU1ZOWk9YTk1hbkZJYzBVeldrdGlNMDFvVDJaYWFVcGhUMk5JZW1WNWFsbHllbWs0Q2pNelUyTTJWMGhaVUU1VlRVSlROalF4UkdOU1lURk9UekpsUW10eVQxWk5SSGhaYTJGa2FEZFFXak5ZY0Vab1VFdHdOVTV1Y1VSTGFVMW5SbUZJU0dFS2JYZzBjQzlrUVRGdlRrdFFRbVV5V2tKd2JtOVlVblZHTkhWTGVGZDNiMHN5WkhSb04yWnpaa3hUZEZaV2RGSnRObXhzTDNnMFIzRmxUVWhOYzFGdWNncHJhbEZYY1ZoWWVWaFlVM2MwV0dWdGF6VkRVSFI0VTBObk9YaElNMjAyVDI5RlRXd3pZa3RFWVVOMFprNXVNR3RoTTBVM1VUVm5kbmxMUTFsdmFXSjZDbGwxTldaS05YUklUamx0UzNsT2REZFhWM1JzWTNWbmQxbGljSFYxVFdWTVFXaGFSM042ZVZjeGEwTlRWa3BXUlUxU1FVdFlSR1ozVGs0NVUybGphbG9LTTBNdlNIQjBNbk5NYms4eWJGSmtjVE5MVEhCdWJITk1WVlI2ZVU1WGJVTkpWSHB4T1U5TVZISjNTME5CVVVGbE5XeEVla2xqTDJvMFYzRTBWamRYYkFwaU9IaFZUMlZ3VDAxek5tNUhXQ3RzU0dwQ2JDOXpLMlEzYVVoTGQxQlVObEpYVUhkeWVrMUNjU3QxY3psQ1Iyd3JjVVJ4U1ZBMmVFOXJSRGxxVEVnM0NtbHFLMnN3Wm5GUUsweFpXV1J4TURndmRUVjNjMVZsVkVWaVMyWjFURFl3VDBaallqQmljMHR2VjNwRFpUTndTV3Q1YVdsek5ucHpiM0pGTTBaNFpHSUtZWFZ1VjNZNWFsbDNlSE5YVkU1NVVGazNTemRXY1M5VE9VZHBaQ3QyZUhoYWRHNTBjSGN6TjNsQ1JYTlpiMHM0YTNCT2J6QnVaV2x2YWpsSWRGbE9UZ3BDV1hOclZreHBkMjh4Y1RScVUxaFNaWEF5V1cxc1ZpOHhRazFRVHpsVVYyRmtZVlZrTDFRNVpXVlNVMGg2TkRKUmRVd3hRbEphWnpob1FuUlpNbGhZQ25SbmMxaEVkbFE1TUU5NmJubGlZVFUwUzFwMVNreE1TMEpPU0dORGJEZFRXRkF4Y0dwSVQxUnZRVEYxWlRabVpWUTViVEF3U0ZkYWN6TmxRbEZYUld3S1JtMVdMMEZ2U1VKQlNHNVBXa040YVU5ME5HaHFSa0poTkdoR1lsSlJUemN6Vm1Zd1VtWkRlV1pwTHpoQ1ExcGxObnB5ZDFreWJtYzRkbUl4TDJocGFncEhWSHB2WmtoSllUa3haa05QV1dGbVFteExXbFZuV1hkdUwzUndXWEF2VFZjME16ZzJUR1p5VkhVeE4ySTBZMmRpVkVjcmRXZzJOVEZDTDJOaFVrSk5Da0V4ZW13MGJuSnNhMWN2UVRScVFWcHVXWHA2WTFacFVVTnRlU3MxVEdWaWNHWXpNbXBoYTNCeEswbHZVVXREVWtab1RYWlNWbmxEYjFaRFRrWmxWRzBLZFc4d1ZFSk5ORzFQUjJsTlptTkRUM2hhTlhkU2IxSjRRV0ZpVkdka0szcHBlVWxZYzBob1lTOWxWek5aVjNsWU5IVm9ORWRpVURncldEVkVjMHAwVndwT1EybFNWbGhvYm5SS00zbGxRMGwwUjNBMU15dEtSSFo1WlV0QmRtMXJORk50TURNNWRDOVlNV2RNVjIwd2FETlFiVWRpZG1SM2JrZDZVMFYzWVZKMkNrVm1iR1l5VDNwS2RsTk9kRXd4T0hwVlYyaHBXRE5XYmxKeFFYSXpVMk5EWjJkRlFVNW5WREZzUWxkblEzQTFiR2hKT1RKaldUZHBlRXQyZW5NdmVua0tiVVI1VWxVd1NWQkVOVFZJZUZCTk5GZFVhbE01TkZCeWFHRXJRM2w1Vm1veVRFZzVSVmtyTUd4VEx6QmtVVTFRTTBjMVNHNDJVVXRySzNwRk5XTlBiQXBpTWs1TFdXdEZUVE5CUnl0T1duQnphSFpaTm1OMFdtSmFhMFV2VWpWMVRIcDJORU5MWXpWSFQxWk1iMjF0VVc5RlVWZzBjRVV2T1hSM2MxbDVRMGhwQ2s5SmFEUnJZemhCYjFZdlVrNU5kbElyY25seFVrTlNkMFJ4U0RWaVFscEZVREEwTkZGeGNWRXZaM1Z0V21GQ2FqZE1TMUJtZHpaSlIwOUJORTFrWTJrS05YTXZhRk5qVW1VMVdVMHpWV0UxZUV4aFZscGlWamRHZVVVelNWVXpWeTltYW1SVlQzaDZhbTh5YlhoV2Nub3ZLemg2TDBsc2MyRkJiMGhQZEUxMU53bzBMMDh5VkhSTlJUTmtiVGtyZDBOMFJEbFlVbmwxVWxGeVVUSkhjVzA0TVcxellUWlVhM0JhT0VWdlZEUmhjMHc1YmtwYWEwRTJSMk5uUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAyMEFKZnF4T0RDQ3F6OTVUeFMxdVVGMnNmUVQ5bnd0V3pIQkZDTVVyQW5yTldlOUI3c3JTaklSUVVmN3pEMm03c1o5T1lqUFNyWmxMTGM0Q21GaXppN1l4M3c3aHMxSEM2NFdPQmtDM1BBcVJmYW9aRHVzajRIdlUxbndWdjRLUQo=\"\ - \n }\n ]\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '12912' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:53 GMT + - Tue, 14 Jan 2020 01:25:25 GMT expires: - '-1' pragma: @@ -1634,54 +1726,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1175' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks create Connection: - keep-alive Content-Length: - - '0' + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n -f + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\"\ - ,\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VWNGVrTkRRWEVyWjBGM1NVSkJaMGxSU1d3MlEwMXVZbmhDV0U0eWFXdzVUVmw2VEVSNGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjRUMVJCTlUxVVNYZE5WRlY2VFdwU1lVWjNNREJQVkVFMVRVUlJkMDFxUVhwTmFsSmhUVUV3ZUFwRGVrRktRbWRPVmtKQlRWUkJiVTVvVFVsSlEwbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVVVkdRVUZQUTBGbk9FRk5TVWxEUTJkTFEwRm5SVUY0UVhkc0NrVmtiMjVaY0dwYWJEUkRWRlZIUVd0SlRYSktNR3hzVTBwMFprRTVTVlp5TkV3MWRFTlVUbE5pVDNWNlVTOXdNemhuU0dZdk5GUk1TbTF0UVVsclJtMEtZazEzYjAxNmJFTmhRV05oTXpWQ2NHTkRUbWRYTUROb1JHRllkbGx4UzI5NWJHUlRWV1pOWW5GbWFWaDFXRk53V2tWVGNrNXdXazVrUnl0bllqa3ZlQXA1T1d0bE9UQTVVMDh4V0ZKbGMyOVdNVXBRTUV0aFNqbGhTakV2TkRSclRsZExNbU4yYVV4VWVscGpja1J0TUVaa1EwRTNibmN2TUROdVdVWXhRMmxpQ25oV09FRk5kalJVWTFCUlVFRmhOWGRKV1U5SE4waE5kVkZrY21GTlNVMUtaMHBuYzA0MWF6Sm1RMmQ2WlZGQlQzbHNZbXBpUkhNd1FtZEpaRXRWY1VvS1pUTlNORlpYYkc4MU1Dc3dSVVpaV1M5UmRDOWtaMVp2UlhKRFRtbE9kQ3Q0UW1kUGJVUk9hMFJNWTNGcU1GQldZemhFVlVvck9UaDBZblpEYTJKeFRBcDNkMFZFTW5oRFRXNHZXRTFqYWtwNVFVd3laWGQ0UW1kQ01HdHlNMWhsVVdzd1dWUkxWemRzY0Rnd1UycDBUa0ZQYTI5NFRIcEdLMnc1T1ZOUmVFVjFDbVZTYkVWWGJqUlNSM0J0ZUhOc1VURkRiamgzZW5JeWIzVldlR3RxTldWeGVXNXhWM1pFS3pWeWVFTTNWRkI2Y2k5eVRuRTNSV3BxVERWWGJtaEtRakVLTlROQk16Y3lNRVJrZUdSME5VRlVWWE5DTmxGblFUVTNUV0kzTUVOU1JURTRVVTlQVm01SlkwUlRNSGhDZFZsQ2NVVlJURXhKT0hCVVVrb3hkWE5oV1FwTGEydGpOM0pFTDIxVlZubHdibkpxSzBaUFIxbG9ibkpqZUhkNkwzQkljVTlTVTNWcE1HRkVWV0ZMY3pCMlVWaDRaMDlEUTJ4R1duSktObE5EYW5CU0Nua3dTREJyU20xcWRWY3ZMeXRxTVd4MGVEQjRkVVIxVmpRNWQwZEZNRGt6ZFZwNlVYUTFWbVE0Y1hrMVVrZFJaemxZV2tVeFl5OUhXRVZrWjB0U1owTUtWMnhEVldocWQyTlJOV1F6YjNrMVlVUnJVM2hDUjNOWlEwSXJSR2hQZVhCQ05YTjNSR0V3UTBGM1JVRkJZVTFxVFVORmQwUm5XVVJXVWpCUVFWRklMd3BDUVZGRVFXZExhMDFCT0VkQk1WVmtSWGRGUWk5M1VVWk5RVTFDUVdZNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1JVZExWbUpIQ2xNNWJ6UjNTM1l4TDJJMVIxYzBORWNyU1hWTlVEaG1NSGhsUnl0c1ZHMVhXbTFLTVZNNE0yY3ZLMGxJWlhaSU5Fc3daR013UVhCWlVqRXhaWGg1VW1NS2RtZzRNVGh5T0VGdFQzaHhObE5RU2tOalJteDBlbWhwUVZGQksyUlhUblpaYW5KQ2RrdHRlbVpuTUZWTllqSXlaMGw1T0RKWGVYTlVlamt2Wml0MFp3cFlURmswUkM5dVEybDJTR3AwZDB4a1RXWkpPV3RGVGxvMVZpOVlObkpSVFZKdFNFNUxlazVQZDFaaGMyUTBablp3UzFkS09GQldhaTlEWjBKamRXMWFDakZrUkU1MlRuWkNiV2hwVERkSGJGaDVLM2RTTVZWa1dGVnlhemxDTlVGQ01EWkNOVUUwZVhSS056QlFabWhsYUZOS0swNDNOelEwVmxJcmMyWm9MMllLWWtaVFVtcFNLM3BOUjJSR2JVOUZkVEV6UlhSbmNVOUplREIzWm01SWVteENPVXRZV1hKcGFqaDRRM05OVEhoYWFGaFNUMGx4VjJ4eGIwRmFRMk12TndwV09EZE9aSFZUYVRFMVEydG1NVVIyUW5JNFFtSlhiblIzYTNCdWNqQjVPWGRzUVZWVFIyWmFRMjh5UTFsc2JWSlNPSFJ5ZVV0aGNIbE9iSEpoU0ZsV0NqRXpOR2RIWjNrdlFtazFOME5LYTJoWU1IaDVOMDl6YUdwQ05uSkpSWEJyWkhKcGEwOVFOa3cxVUdNeVFVaFRZVEZEVGxadlRUWnpWelJyWVZSa1VuQUtVbmxQV2s5Q2VWUm1ZMk53VEVoQ05IazJPR2h3YldsT2NubzRMemd6TkVWU1JVVkhPVXRJVVhGM1UxcGxhbXN2TVVoelUwcHBOR3BZV0djd1NFcHZiQXBqU1ZnemQyUlpZalJ6VERGS1pWUXdaR00wUjB0aGQwMXFkRUpWYW1jMk9XWkJZUzlJYW05S1pVcHphRTFCV0dkMGEydElPR1Y0YURGQmFtRm9TemhzQ2tGcFZHeGtXQzlWVVZWa2RHcHJSRVY2ZFVkb01VWnpkblJaUmtjdlIwZFdXbTVtTTJGbVNub3dVRlpDYUZVMFRtWlBSRU13TVVkbUsxRlRjVmhIYmtJS2FIUkdhSEZ3ZGpOU2QzWlBVVGwxVGpWTGQxbExNa2RGUm5JcldsaG1iMWR2Ym10ckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2txcTRlemItNzFmNjRlODYuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG50dTZhMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG50dTZhMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIG5hbWU6IGNsaWFrc3Rlc3RudHU2YTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bnR1NmEyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVVXZSRU5EUVhWVFowRjNTVUpCWjBsUlVtaElPRGxvVlZoV01ESlVLMVJQZUUxNkwyVTRla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI0VDFSQk5VMVVTWGROVkZWNlRXcFNZVVozTUhsTlZFRTFUVlJGZDAxcVFYcE5hbEpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjBlVTlIY0U1MFR6bGFOa2hQVldseGNHRnFka1VLVkhGUFJGbFZablZQYmtnd1dtZHRXa0pOVkRoNFlpc3pVMGhtVW1kVmNXdDRSelExVGpkSVJ6TkZTREJ5THpKMlNHZGlSR3N5UldFeGFWQXJVbmwwVlFvMGMwOUthbU4wZVhCUVIxSnRkVVpTVERNNU56ZEhkaTh3UWxCMmIzZHRSRFZpZDJsUVp6QTFZMFp1ZGpaWFdtSTRXbUZ6WmtremJGQXllblJJWW5KVkNuUkVVR29yY0V0V05Fc3ZZbWh5U0hWbVJETXdjaXRJYld0U0swUjVPV3hPV0hkc1ptVlBURXRXU25wSGFEUm1kRTFCYkhOWWRHUk5PVXh0ZFRCUWNETUtibmhVVjJ0UlFXNTFMemR4T1VKcVFVVkVZV3BIUkUwNWFGWkdNVEUwT1V0MlZHaDNjemd4T1RadVEzQlJVbEJwUmtZeUwzVk1TVkJ5S3poWFFXSm9WQXBIYkVOV05GbHpPRUpRYzBGQ2NVSkhSbHByYUd3NWIxVXJUbWN5ZEdrMFFVdGpOM0JtVEhOcU1IaFlTakpwUkVkQ0wwbzFlVTUyS3l0SlpqUlphRmMwQ2l0MFluUklTMFpxZGtWRGJ6UnhXVkF3UVZScU1pdENWMXBpYzBVeVpHNTZlV2RHYTNGRkwyUjBWbk5NVEZwdWFGRnpXRkpxTTFkWFkyUmpVWGd6ZFdVS2RVNWFWek0yZVZKVFNUZ3piVTFqYm1kdFpUSlhiVGRCUTNWeFZ6SkxkR3R6ZDNRdmFtWXJSSHB4TUZSUVIxSnVlREU1ZWpSMFdTOVBNR2N2Um1aeVJBcDZkSHBNV201MVl6aHRkMXBPZUdSaVFXSXdhVE5XTjNGU1JIaFZjV0k1WW5SRU1HeG9PRzU1YWxRNVdXMU9VSGRDV21aR1dGSXZUV2xJYUV3dlIwdDJDbkp3TmpWa1QzaFpjV1pOYmxCNlprMXNTMjlXT0U1b2MxbzJjRWxuTVVad2NUWkVUQ3RYUVRkbWJ6WmtlSFpwYUhvNVlsY3lURXBQTkV4SVJXSktXWG9LUjFoTlIwaDRXVko2VDJweWMzWnNibmxqY1hWbU5raG1hM2RPSzNOMloyVkhXalZKWVhsUGQxTkVNVkpHYjNFck1XdDVkMWxuYldwMWRHTjJZakJHTXdwcGVXeDFOREZsYms5elNHaENOUzlNTTNaTldWZFJTVVJCVVVGQ2IzcFZkMDE2UVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRUtSMkUxYlVOTVpHWjNWVk5RTUVSTE9WcGxTR2REUm01MVlXczNibWt4Wkc1MVoyVnFOMmxxZVhOMGIyeE1MekJHTTNkTWJtUmthM1ZGYTJKNk4xUmlNUW93ZWtSNU5VNHpVM1IzU2xkUk5FZDJaR1ZFUkZCWlRsZGpXRVZTU0dOWk1saHliSGxxUTBVeWNDczNSM05sUzBGYVJVZzVZbWhFTTFWNldEaDBUR2xpQ2tNdllVeGtXazlJVlhwV2F6SkNla3BSTmxoamRGTTJZMDFxUlZKbFkzUk5iV3BUV0ZJd1IzbG9MMlU0UXpnd2RVOVhZbmhoUkVGNldTOXdUSHBRVEdRS2JrMXlWRWhrWWxsMGJtMUhObmc0YlVSbFVsWnZaVU5TVGxnM056QlpTMFZ6YUZWWmFDODJSak4wZUVkTVYzTm5WR05SU1V4VVMzYzNlV1VyUm5ad05RcEhNbmMyT0VORFRreHVOWFJvYUU0d1JuZ3pWblozT1VsaU9YaHJkamRxVUdzdlYzSjZLMFp3YWs0MmVYbzBabkZFY25RMlNWZzRaVlJqVDBRNWQyWjNDblpVYVVGTFUxSTNNMHBXZEhwV1VsWk1ZekpqT1ZWU1NXcG5aMWczVEVWRFQyZFllbGhrY0dSaWQxVlBVWE53VkhWcE1YRnRkWGN5V1V3NE5uWmpXbkFLU0hCUE4yZElTamRDZEc0d2RERkNjVmwxU2sxMllUVkJRVEpKTXpkUGJ6Uk9WMWN5UjJsd2JYaDZXSHBaWkZobGRtaFFiazU2VlRCR1QyaDJXalV6WVFwWWFrMVFNRGRNT1M5UU1GbFFTVlV4WkRneU1IWkNWMnRLUW10Wkt6STBhakpTTjJOWFNtUXJUMmxxTjNaVldYWnBNMk5CZEZCa1NqbERNbTVEVFVOMUNrbFBTMkpJYUdkaEszSmhNM0JWY3pOblNrOTBibWhEWmk5RVdtRkhRM2hqZW5Ca1RtTlFOWGQwVWxkeU5Fd3lRVWhTVW5sTUsyY3ZTek55ZURWc1lYRUtSR3RzWW1OSWFrbGlabGRDUWxvcmFqSm1ORVpyUjBWT1IwRmxTM0ZzTUhGbEwycEtVMDVqVmpNd1VEQk5WR0UxUmxWMFVteFhUekZEVkd4SFptZHJPQW93ZG5OcWNrMHpXV2hYYXpBdk5FZHZiekUyVEZoallubEVLMnBJZDBWTWMyMXVZMDlqWlRRcmIwZzRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJjbU5xYUhGVVlsUjJWMlZvZW14SmNYRlhiemQ0UlRacVp6SkdTRGRxY0hnNVIxbEtiVkZVUlM5TlZ5OTBNR2d6Q2pCWlJrdHdUVkoxVDFSbGVIaDBlRUk1U3k4NWNuZzBSM2MxVG1oSGRGbHFMMnRqY2xaUFRFUnBXVE5NWTNGVWVHdGFjbWhWVXprdlpTdDRjaTg1UVZRS056Wk5TbWNyVnpoSmFqUk9UMWhDV2pjcmJHMVhMMGRYY2toNVRqVlVPWE0zVWpJMk1VeFJlalF2Y1ZOc1pVTjJNalJoZURkdWR6azVTeTlvTlhCRlpncG5PSFphVkZZNFNsZ3phbWw1YkZOamVHOWxTRGRVUVVwaVJqZFlWRkJUTlhKMFJEWmtOVGhWTVhCRlFVbzNkaXMyZGxGWmQwSkJNbTk0WjNwUVdWWlNDbVJrWlZCVGNqQTBZMHhRVG1abGNIZHhWVVZVTkdoU1pIWTNhWGxFTmk5MlJtZEhORlY0Y0ZGc1pVZE1VRUZVTjBGQllXZFNhRmRhU1ZwbVlVWlFhbGtLVG5KWmRVRkRiazgyV0hrM1NUbE5WbmxrYjJkNFoyWjVaV05xWWk5MmFVZ3JSMGxXZFZCeVZ6ZFNlV2haTjNoQmNVOUxiVVE1UVVVME9YWm5WbTFYTndwQ1RtNWFPRGh2UWxwTGFGQXpZbFppUTNreVdqUlZURVl3V1RreGJHNUlXRVZOWkRkdWNtcFhWblFyYzJ0VmFWQk9OV3BJU2pSS2JuUnNjSFYzUVhKeENteDBhWEphVEUxTVpqUXpMMmM0Tm5SRmVuaHJXamhrWm1NclRGZFFlblJKVUhoWU5uYzROMk41TWxvM2JsQktjMGRVWTFoWGQwYzVTWFF4WlRaclVUZ0tWa3R0TDFjM1VUbEtXV1pLT0c4d0wxZEthbFE0UVZkWWVGWXdabnBKYURSVEwzaHBjalkyWlhWWVZITlhTMjU2U25vNE0zcEtVM0ZHWmtSWllrZGxjUXBUU1U1U1lXRjFaM2t2YkdkUE16WlBibU5pTkc5akwxY3hkR2w1VkhWRGVIaEhlVmROZUd4NlFtZzRWMFZqZW04Mk4wdzFXamh1UzNKdUsyZ3pOVTFFQ21aeVREUklhRzFsVTBkemFuTkZaemxWVW1GTGRuUmFUWE5IU1Vwdk4zSllUREk1UW1RMGMzQmlkVTVZY0hweVFqUlJaV1o1T1RkNlIwWnJRMEYzUlVFS1FWRkxRMEZuUW1aMlRFeFZhbUZtU1ZORVkxUmxjVU5YUWtSbk5IaFViUzlRZGtKd2FGUnJVamh6VTBkNkswaFdablowUnpsV01VMTRXRlpvYmk5Vk5RcEJSREp1TVRrNVpEbFVXa1ZMY2pVdlREaHVia0oxUmpsVE5tWk1ZemhHVmtob1FtVmpRUzlGY25oYVFuRXpSVWg2UVRoVVRtOWFSa1puVVM4M1YyWm1DbFpXTDJweVRXeG1TMkV5UTB0WE1XZFRTak5FUmxaWWEzRjFVWEZIWW5kalpFRlpaRWN4VEVkR1ZWbG5iemhHWkRoNVlqTTFhWElyWVVkaGJVRlNNR2NLZHpJdmRFWjJMMjVRZGt4aE9FRlFRVGs1TmxWUWNESnpaVTlSUXpCc2FXZGxMMFZvT0hGa1ZYVklVMHRIYlZJdlNrOHpWbXB2VWpVM2RUWTFkR1JTU3dwQmExQkxaMnRVWldWVlQwTTBUVlpyZDFaTlZ6UlZNVTVUYkZaS1RYTTBRMUVyV2pSbmFWaHJkR05JUmpKc1FYQXJXVmhwTVRsUlJrVkJaak5tZUVSSENrRkVhalJYTW1zNVkycFdjalI1VkhCbmIxaDJlVTl5WmtsMWJtcDJURzFKYm1sbU4yWkJkVFpUTjJ3eU5VdDRWbU41Y1U5b1ZtMVhObFZhV1ZBclJVSUtUMDlPYldOQ1ltbGlObmN4VWpFNFl5OVZiRWt3VnpoRVNFWm9aUzg0SzJWR1RIYzFWVkU1U1RWdlJrdFVRMFJJTVhoVU1uRm5ibGg0YUdNMVRHSTRkZ3BWUW5FNWJHeFFjR3R3Ym1Od1NVSXhlbWRDWW5SMGRVdDRWVnBpUlVGMGRuaHNXRFpqWms4M0swSnJTakZyYkVvME1VOUNjRGRNUlVGQ1dUUk9kSEpvQ2pCT1lYRldjM2wyT1VKTFltTnpXVFJHVURWdWJrTlhjVmhEUVV3NE9UZENjRkUzY2twdlYzRnZaa0ZFWkhCNVNUbExWVFl3WVM5clZuVXJOMVZhT1RVS01EZEJkVUZyVVd4S2JsY3ZRMDkxTHpsUk9HOUNiSFJ1V2poQ1kyeFVWMjFIVWxCWFZYcHNOQ3RGTlZJcmIwdEpSR1Z5UWtGaFdsWlNNbk5XVFhOb1NRcHFVbEZGWTI1aFMxUTRTM1ZsVjFONE1GTjNUV3BKYUV3NE4yTktZbXQ2YTJkbldVNVZVMVJOT0c0Mk9IVm5VbFp2VVV0RFFWRkZRVFZ3Tm0xdlNtOUdDbEJTTWswMVRVUjNia2Q0YWtnM1MwZFRWRlp1TUVkNmFERXZOeXR2Y0dwbVJ6RTBMMFJ1VUROWFVrNXJkVzg1UVhoeE5YZERUbkl5YUhOSVdGRTVZV2NLU0hCVGR6VnNNVmRTWlhKMFZpOUpOSEpJVURVeWIyWmFTMFpOYUZoelZtaEllVlIwTUdadlVYQldWWGxsUmtGNWRsQXdibWRFU2tsdFJHMXJjalpJUkFwcE1FYzRNSEoxYkhOcWJYbzVVR2dyTlZSVVRFVlpWV041UkhnekswSjVURE54WldaU01reG1aMVJtZEZCV1lsZDBjRGhKWTBWeFluUndTVkJpZUc5TkNrNHJibTFJUXl0Tk1qVjVTVXBTVW05b2RYcHBjM0JsTms5V1VrSjJOVVpyY2tWc2RtSXhNVk14VlRoMVoyMVNSMEYwVFZKYU56ZDNUbkIxYjNCMk5tTUtkVEp1TUhWM2RrazNibTF1VDNJNFZHRlBkMkkxUmtwdVdHZzJaVEp1VVdWTGJqWjVLMHhDYmpkUWVETlJWVmRDY0d0RWRGbDFVakYxVDI5eFJIbHZlUXB1WVUxSmVUazJXamhwY25Wa2QwdERRVkZGUVhkUGFpdEhkMXBYU1ZOWk9YTk1hbkZJYzBVeldrdGlNMDFvVDJaYWFVcGhUMk5JZW1WNWFsbHllbWs0Q2pNelUyTTJWMGhaVUU1VlRVSlROalF4UkdOU1lURk9UekpsUW10eVQxWk5SSGhaYTJGa2FEZFFXak5ZY0Vab1VFdHdOVTV1Y1VSTGFVMW5SbUZJU0dFS2JYZzBjQzlrUVRGdlRrdFFRbVV5V2tKd2JtOVlVblZHTkhWTGVGZDNiMHN5WkhSb04yWnpaa3hUZEZaV2RGSnRObXhzTDNnMFIzRmxUVWhOYzFGdWNncHJhbEZYY1ZoWWVWaFlVM2MwV0dWdGF6VkRVSFI0VTBObk9YaElNMjAyVDI5RlRXd3pZa3RFWVVOMFprNXVNR3RoTTBVM1VUVm5kbmxMUTFsdmFXSjZDbGwxTldaS05YUklUamx0UzNsT2REZFhWM1JzWTNWbmQxbGljSFYxVFdWTVFXaGFSM042ZVZjeGEwTlRWa3BXUlUxU1FVdFlSR1ozVGs0NVUybGphbG9LTTBNdlNIQjBNbk5NYms4eWJGSmtjVE5MVEhCdWJITk1WVlI2ZVU1WGJVTkpWSHB4T1U5TVZISjNTME5CVVVGbE5XeEVla2xqTDJvMFYzRTBWamRYYkFwaU9IaFZUMlZ3VDAxek5tNUhXQ3RzU0dwQ2JDOXpLMlEzYVVoTGQxQlVObEpYVUhkeWVrMUNjU3QxY3psQ1Iyd3JjVVJ4U1ZBMmVFOXJSRGxxVEVnM0NtbHFLMnN3Wm5GUUsweFpXV1J4TURndmRUVjNjMVZsVkVWaVMyWjFURFl3VDBaallqQmljMHR2VjNwRFpUTndTV3Q1YVdsek5ucHpiM0pGTTBaNFpHSUtZWFZ1VjNZNWFsbDNlSE5YVkU1NVVGazNTemRXY1M5VE9VZHBaQ3QyZUhoYWRHNTBjSGN6TjNsQ1JYTlpiMHM0YTNCT2J6QnVaV2x2YWpsSWRGbE9UZ3BDV1hOclZreHBkMjh4Y1RScVUxaFNaWEF5V1cxc1ZpOHhRazFRVHpsVVYyRmtZVlZrTDFRNVpXVlNVMGg2TkRKUmRVd3hRbEphWnpob1FuUlpNbGhZQ25SbmMxaEVkbFE1TUU5NmJubGlZVFUwUzFwMVNreE1TMEpPU0dORGJEZFRXRkF4Y0dwSVQxUnZRVEYxWlRabVpWUTViVEF3U0ZkYWN6TmxRbEZYUld3S1JtMVdMMEZ2U1VKQlNHNVBXa040YVU5ME5HaHFSa0poTkdoR1lsSlJUemN6Vm1Zd1VtWkRlV1pwTHpoQ1ExcGxObnB5ZDFreWJtYzRkbUl4TDJocGFncEhWSHB2WmtoSllUa3haa05QV1dGbVFteExXbFZuV1hkdUwzUndXWEF2VFZjME16ZzJUR1p5VkhVeE4ySTBZMmRpVkVjcmRXZzJOVEZDTDJOaFVrSk5Da0V4ZW13MGJuSnNhMWN2UVRScVFWcHVXWHA2WTFacFVVTnRlU3MxVEdWaWNHWXpNbXBoYTNCeEswbHZVVXREVWtab1RYWlNWbmxEYjFaRFRrWmxWRzBLZFc4d1ZFSk5ORzFQUjJsTlptTkRUM2hhTlhkU2IxSjRRV0ZpVkdka0szcHBlVWxZYzBob1lTOWxWek5aVjNsWU5IVm9ORWRpVURncldEVkVjMHAwVndwT1EybFNWbGhvYm5SS00zbGxRMGwwUjNBMU15dEtSSFo1WlV0QmRtMXJORk50TURNNWRDOVlNV2RNVjIwd2FETlFiVWRpZG1SM2JrZDZVMFYzWVZKMkNrVm1iR1l5VDNwS2RsTk9kRXd4T0hwVlYyaHBXRE5XYmxKeFFYSXpVMk5EWjJkRlFVNW5WREZzUWxkblEzQTFiR2hKT1RKaldUZHBlRXQyZW5NdmVua0tiVVI1VWxVd1NWQkVOVFZJZUZCTk5GZFVhbE01TkZCeWFHRXJRM2w1Vm1veVRFZzVSVmtyTUd4VEx6QmtVVTFRTTBjMVNHNDJVVXRySzNwRk5XTlBiQXBpTWs1TFdXdEZUVE5CUnl0T1duQnphSFpaTm1OMFdtSmFhMFV2VWpWMVRIcDJORU5MWXpWSFQxWk1iMjF0VVc5RlVWZzBjRVV2T1hSM2MxbDVRMGhwQ2s5SmFEUnJZemhCYjFZdlVrNU5kbElyY25seFVrTlNkMFJ4U0RWaVFscEZVREEwTkZGeGNWRXZaM1Z0V21GQ2FqZE1TMUJtZHpaSlIwOUJORTFrWTJrS05YTXZhRk5qVW1VMVdVMHpWV0UxZUV4aFZscGlWamRHZVVVelNWVXpWeTltYW1SVlQzaDZhbTh5YlhoV2Nub3ZLemg2TDBsc2MyRkJiMGhQZEUxMU53bzBMMDh5VkhSTlJUTmtiVGtyZDBOMFJEbFlVbmwxVWxGeVVUSkhjVzA0TVcxellUWlVhM0JhT0VWdlZEUmhjMHc1YmtwYWEwRTJSMk5uUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAyMEFKZnF4T0RDQ3F6OTVUeFMxdVVGMnNmUVQ5bnd0V3pIQkZDTVVyQW5yTldlOUI3c3JTaklSUVVmN3pEMm03c1o5T1lqUFNyWmxMTGM0Q21GaXppN1l4M3c3aHMxSEM2NFdPQmtDM1BBcVJmYW9aRHVzajRIdlUxbndWdjRLUQo=\"\ - \n }\n ]\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '12912' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:54 GMT + - Tue, 14 Jan 2020 01:25:34 GMT expires: - '-1' pragma: @@ -1690,54 +1790,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1174' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks create Connection: - keep-alive Content-Length: - - '0' + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n -f + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2019-10-01 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\"\ - ,\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VWNGVrTkRRWEVyWjBGM1NVSkJaMGxSU1d3MlEwMXVZbmhDV0U0eWFXdzVUVmw2VEVSNGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjRUMVJCTlUxVVNYZE5WRlY2VFdwU1lVWjNNREJQVkVFMVRVUlJkMDFxUVhwTmFsSmhUVUV3ZUFwRGVrRktRbWRPVmtKQlRWUkJiVTVvVFVsSlEwbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVVVkdRVUZQUTBGbk9FRk5TVWxEUTJkTFEwRm5SVUY0UVhkc0NrVmtiMjVaY0dwYWJEUkRWRlZIUVd0SlRYSktNR3hzVTBwMFprRTVTVlp5TkV3MWRFTlVUbE5pVDNWNlVTOXdNemhuU0dZdk5GUk1TbTF0UVVsclJtMEtZazEzYjAxNmJFTmhRV05oTXpWQ2NHTkRUbWRYTUROb1JHRllkbGx4UzI5NWJHUlRWV1pOWW5GbWFWaDFXRk53V2tWVGNrNXdXazVrUnl0bllqa3ZlQXA1T1d0bE9UQTVVMDh4V0ZKbGMyOVdNVXBRTUV0aFNqbGhTakV2TkRSclRsZExNbU4yYVV4VWVscGpja1J0TUVaa1EwRTNibmN2TUROdVdVWXhRMmxpQ25oV09FRk5kalJVWTFCUlVFRmhOWGRKV1U5SE4waE5kVkZrY21GTlNVMUtaMHBuYzA0MWF6Sm1RMmQ2WlZGQlQzbHNZbXBpUkhNd1FtZEpaRXRWY1VvS1pUTlNORlpYYkc4MU1Dc3dSVVpaV1M5UmRDOWtaMVp2UlhKRFRtbE9kQ3Q0UW1kUGJVUk9hMFJNWTNGcU1GQldZemhFVlVvck9UaDBZblpEYTJKeFRBcDNkMFZFTW5oRFRXNHZXRTFqYWtwNVFVd3laWGQ0UW1kQ01HdHlNMWhsVVdzd1dWUkxWemRzY0Rnd1UycDBUa0ZQYTI5NFRIcEdLMnc1T1ZOUmVFVjFDbVZTYkVWWGJqUlNSM0J0ZUhOc1VURkRiamgzZW5JeWIzVldlR3RxTldWeGVXNXhWM1pFS3pWeWVFTTNWRkI2Y2k5eVRuRTNSV3BxVERWWGJtaEtRakVLTlROQk16Y3lNRVJrZUdSME5VRlVWWE5DTmxGblFUVTNUV0kzTUVOU1JURTRVVTlQVm01SlkwUlRNSGhDZFZsQ2NVVlJURXhKT0hCVVVrb3hkWE5oV1FwTGEydGpOM0pFTDIxVlZubHdibkpxSzBaUFIxbG9ibkpqZUhkNkwzQkljVTlTVTNWcE1HRkVWV0ZMY3pCMlVWaDRaMDlEUTJ4R1duSktObE5EYW5CU0Nua3dTREJyU20xcWRWY3ZMeXRxTVd4MGVEQjRkVVIxVmpRNWQwZEZNRGt6ZFZwNlVYUTFWbVE0Y1hrMVVrZFJaemxZV2tVeFl5OUhXRVZrWjB0U1owTUtWMnhEVldocWQyTlJOV1F6YjNrMVlVUnJVM2hDUjNOWlEwSXJSR2hQZVhCQ05YTjNSR0V3UTBGM1JVRkJZVTFxVFVORmQwUm5XVVJXVWpCUVFWRklMd3BDUVZGRVFXZExhMDFCT0VkQk1WVmtSWGRGUWk5M1VVWk5RVTFDUVdZNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1JVZExWbUpIQ2xNNWJ6UjNTM1l4TDJJMVIxYzBORWNyU1hWTlVEaG1NSGhsUnl0c1ZHMVhXbTFLTVZNNE0yY3ZLMGxJWlhaSU5Fc3daR013UVhCWlVqRXhaWGg1VW1NS2RtZzRNVGh5T0VGdFQzaHhObE5RU2tOalJteDBlbWhwUVZGQksyUlhUblpaYW5KQ2RrdHRlbVpuTUZWTllqSXlaMGw1T0RKWGVYTlVlamt2Wml0MFp3cFlURmswUkM5dVEybDJTR3AwZDB4a1RXWkpPV3RGVGxvMVZpOVlObkpSVFZKdFNFNUxlazVQZDFaaGMyUTBablp3UzFkS09GQldhaTlEWjBKamRXMWFDakZrUkU1MlRuWkNiV2hwVERkSGJGaDVLM2RTTVZWa1dGVnlhemxDTlVGQ01EWkNOVUUwZVhSS056QlFabWhsYUZOS0swNDNOelEwVmxJcmMyWm9MMllLWWtaVFVtcFNLM3BOUjJSR2JVOUZkVEV6UlhSbmNVOUplREIzWm01SWVteENPVXRZV1hKcGFqaDRRM05OVEhoYWFGaFNUMGx4VjJ4eGIwRmFRMk12TndwV09EZE9aSFZUYVRFMVEydG1NVVIyUW5JNFFtSlhiblIzYTNCdWNqQjVPWGRzUVZWVFIyWmFRMjh5UTFsc2JWSlNPSFJ5ZVV0aGNIbE9iSEpoU0ZsV0NqRXpOR2RIWjNrdlFtazFOME5LYTJoWU1IaDVOMDl6YUdwQ05uSkpSWEJyWkhKcGEwOVFOa3cxVUdNeVFVaFRZVEZEVGxadlRUWnpWelJyWVZSa1VuQUtVbmxQV2s5Q2VWUm1ZMk53VEVoQ05IazJPR2h3YldsT2NubzRMemd6TkVWU1JVVkhPVXRJVVhGM1UxcGxhbXN2TVVoelUwcHBOR3BZV0djd1NFcHZiQXBqU1ZnemQyUlpZalJ6VERGS1pWUXdaR00wUjB0aGQwMXFkRUpWYW1jMk9XWkJZUzlJYW05S1pVcHphRTFCV0dkMGEydElPR1Y0YURGQmFtRm9TemhzQ2tGcFZHeGtXQzlWVVZWa2RHcHJSRVY2ZFVkb01VWnpkblJaUmtjdlIwZFdXbTVtTTJGbVNub3dVRlpDYUZVMFRtWlBSRU13TVVkbUsxRlRjVmhIYmtJS2FIUkdhSEZ3ZGpOU2QzWlBVVGwxVGpWTGQxbExNa2RGUm5JcldsaG1iMWR2Ym10ckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2txcTRlemItNzFmNjRlODYuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG50dTZhMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG50dTZhMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIG5hbWU6IGNsaWFrc3Rlc3RudHU2YTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bnR1NmEyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVVXZSRU5EUVhWVFowRjNTVUpCWjBsUlVtaElPRGxvVlZoV01ESlVLMVJQZUUxNkwyVTRla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI0VDFSQk5VMVVTWGROVkZWNlRXcFNZVVozTUhsTlZFRTFUVlJGZDAxcVFYcE5hbEpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjBlVTlIY0U1MFR6bGFOa2hQVldseGNHRnFka1VLVkhGUFJGbFZablZQYmtnd1dtZHRXa0pOVkRoNFlpc3pVMGhtVW1kVmNXdDRSelExVGpkSVJ6TkZTREJ5THpKMlNHZGlSR3N5UldFeGFWQXJVbmwwVlFvMGMwOUthbU4wZVhCUVIxSnRkVVpTVERNNU56ZEhkaTh3UWxCMmIzZHRSRFZpZDJsUVp6QTFZMFp1ZGpaWFdtSTRXbUZ6WmtremJGQXllblJJWW5KVkNuUkVVR29yY0V0V05Fc3ZZbWh5U0hWbVJETXdjaXRJYld0U0swUjVPV3hPV0hkc1ptVlBURXRXU25wSGFEUm1kRTFCYkhOWWRHUk5PVXh0ZFRCUWNETUtibmhVVjJ0UlFXNTFMemR4T1VKcVFVVkVZV3BIUkUwNWFGWkdNVEUwT1V0MlZHaDNjemd4T1RadVEzQlJVbEJwUmtZeUwzVk1TVkJ5S3poWFFXSm9WQXBIYkVOV05GbHpPRUpRYzBGQ2NVSkhSbHByYUd3NWIxVXJUbWN5ZEdrMFFVdGpOM0JtVEhOcU1IaFlTakpwUkVkQ0wwbzFlVTUyS3l0SlpqUlphRmMwQ2l0MFluUklTMFpxZGtWRGJ6UnhXVkF3UVZScU1pdENWMXBpYzBVeVpHNTZlV2RHYTNGRkwyUjBWbk5NVEZwdWFGRnpXRkpxTTFkWFkyUmpVWGd6ZFdVS2RVNWFWek0yZVZKVFNUZ3piVTFqYm1kdFpUSlhiVGRCUTNWeFZ6SkxkR3R6ZDNRdmFtWXJSSHB4TUZSUVIxSnVlREU1ZWpSMFdTOVBNR2N2Um1aeVJBcDZkSHBNV201MVl6aHRkMXBPZUdSaVFXSXdhVE5XTjNGU1JIaFZjV0k1WW5SRU1HeG9PRzU1YWxRNVdXMU9VSGRDV21aR1dGSXZUV2xJYUV3dlIwdDJDbkp3TmpWa1QzaFpjV1pOYmxCNlprMXNTMjlXT0U1b2MxbzJjRWxuTVVad2NUWkVUQ3RYUVRkbWJ6WmtlSFpwYUhvNVlsY3lURXBQTkV4SVJXSktXWG9LUjFoTlIwaDRXVko2VDJweWMzWnNibmxqY1hWbU5raG1hM2RPSzNOMloyVkhXalZKWVhsUGQxTkVNVkpHYjNFck1XdDVkMWxuYldwMWRHTjJZakJHTXdwcGVXeDFOREZsYms5elNHaENOUzlNTTNaTldWZFJTVVJCVVVGQ2IzcFZkMDE2UVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRUtSMkUxYlVOTVpHWjNWVk5RTUVSTE9WcGxTR2REUm01MVlXczNibWt4Wkc1MVoyVnFOMmxxZVhOMGIyeE1MekJHTTNkTWJtUmthM1ZGYTJKNk4xUmlNUW93ZWtSNU5VNHpVM1IzU2xkUk5FZDJaR1ZFUkZCWlRsZGpXRVZTU0dOWk1saHliSGxxUTBVeWNDczNSM05sUzBGYVJVZzVZbWhFTTFWNldEaDBUR2xpQ2tNdllVeGtXazlJVlhwV2F6SkNla3BSTmxoamRGTTJZMDFxUlZKbFkzUk5iV3BUV0ZJd1IzbG9MMlU0UXpnd2RVOVhZbmhoUkVGNldTOXdUSHBRVEdRS2JrMXlWRWhrWWxsMGJtMUhObmc0YlVSbFVsWnZaVU5TVGxnM056QlpTMFZ6YUZWWmFDODJSak4wZUVkTVYzTm5WR05SU1V4VVMzYzNlV1VyUm5ad05RcEhNbmMyT0VORFRreHVOWFJvYUU0d1JuZ3pWblozT1VsaU9YaHJkamRxVUdzdlYzSjZLMFp3YWs0MmVYbzBabkZFY25RMlNWZzRaVlJqVDBRNWQyWjNDblpVYVVGTFUxSTNNMHBXZEhwV1VsWk1ZekpqT1ZWU1NXcG5aMWczVEVWRFQyZFllbGhrY0dSaWQxVlBVWE53VkhWcE1YRnRkWGN5V1V3NE5uWmpXbkFLU0hCUE4yZElTamRDZEc0d2RERkNjVmwxU2sxMllUVkJRVEpKTXpkUGJ6Uk9WMWN5UjJsd2JYaDZXSHBaWkZobGRtaFFiazU2VlRCR1QyaDJXalV6WVFwWWFrMVFNRGRNT1M5UU1GbFFTVlV4WkRneU1IWkNWMnRLUW10Wkt6STBhakpTTjJOWFNtUXJUMmxxTjNaVldYWnBNMk5CZEZCa1NqbERNbTVEVFVOMUNrbFBTMkpJYUdkaEszSmhNM0JWY3pOblNrOTBibWhEWmk5RVdtRkhRM2hqZW5Ca1RtTlFOWGQwVWxkeU5Fd3lRVWhTVW5sTUsyY3ZTek55ZURWc1lYRUtSR3RzWW1OSWFrbGlabGRDUWxvcmFqSm1ORVpyUjBWT1IwRmxTM0ZzTUhGbEwycEtVMDVqVmpNd1VEQk5WR0UxUmxWMFVteFhUekZEVkd4SFptZHJPQW93ZG5OcWNrMHpXV2hYYXpBdk5FZHZiekUyVEZoallubEVLMnBJZDBWTWMyMXVZMDlqWlRRcmIwZzRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJjbU5xYUhGVVlsUjJWMlZvZW14SmNYRlhiemQ0UlRacVp6SkdTRGRxY0hnNVIxbEtiVkZVUlM5TlZ5OTBNR2d6Q2pCWlJrdHdUVkoxVDFSbGVIaDBlRUk1U3k4NWNuZzBSM2MxVG1oSGRGbHFMMnRqY2xaUFRFUnBXVE5NWTNGVWVHdGFjbWhWVXprdlpTdDRjaTg1UVZRS056Wk5TbWNyVnpoSmFqUk9UMWhDV2pjcmJHMVhMMGRYY2toNVRqVlVPWE0zVWpJMk1VeFJlalF2Y1ZOc1pVTjJNalJoZURkdWR6azVTeTlvTlhCRlpncG5PSFphVkZZNFNsZ3phbWw1YkZOamVHOWxTRGRVUVVwaVJqZFlWRkJUTlhKMFJEWmtOVGhWTVhCRlFVbzNkaXMyZGxGWmQwSkJNbTk0WjNwUVdWWlNDbVJrWlZCVGNqQTBZMHhRVG1abGNIZHhWVVZVTkdoU1pIWTNhWGxFTmk5MlJtZEhORlY0Y0ZGc1pVZE1VRUZVTjBGQllXZFNhRmRhU1ZwbVlVWlFhbGtLVG5KWmRVRkRiazgyV0hrM1NUbE5WbmxrYjJkNFoyWjVaV05xWWk5MmFVZ3JSMGxXZFZCeVZ6ZFNlV2haTjNoQmNVOUxiVVE1UVVVME9YWm5WbTFYTndwQ1RtNWFPRGh2UWxwTGFGQXpZbFppUTNreVdqUlZURVl3V1RreGJHNUlXRVZOWkRkdWNtcFhWblFyYzJ0VmFWQk9OV3BJU2pSS2JuUnNjSFYzUVhKeENteDBhWEphVEUxTVpqUXpMMmM0Tm5SRmVuaHJXamhrWm1NclRGZFFlblJKVUhoWU5uYzROMk41TWxvM2JsQktjMGRVWTFoWGQwYzVTWFF4WlRaclVUZ0tWa3R0TDFjM1VUbEtXV1pLT0c4d0wxZEthbFE0UVZkWWVGWXdabnBKYURSVEwzaHBjalkyWlhWWVZITlhTMjU2U25vNE0zcEtVM0ZHWmtSWllrZGxjUXBUU1U1U1lXRjFaM2t2YkdkUE16WlBibU5pTkc5akwxY3hkR2w1VkhWRGVIaEhlVmROZUd4NlFtZzRWMFZqZW04Mk4wdzFXamh1UzNKdUsyZ3pOVTFFQ21aeVREUklhRzFsVTBkemFuTkZaemxWVW1GTGRuUmFUWE5IU1Vwdk4zSllUREk1UW1RMGMzQmlkVTVZY0hweVFqUlJaV1o1T1RkNlIwWnJRMEYzUlVFS1FWRkxRMEZuUW1aMlRFeFZhbUZtU1ZORVkxUmxjVU5YUWtSbk5IaFViUzlRZGtKd2FGUnJVamh6VTBkNkswaFdablowUnpsV01VMTRXRlpvYmk5Vk5RcEJSREp1TVRrNVpEbFVXa1ZMY2pVdlREaHVia0oxUmpsVE5tWk1ZemhHVmtob1FtVmpRUzlGY25oYVFuRXpSVWg2UVRoVVRtOWFSa1puVVM4M1YyWm1DbFpXTDJweVRXeG1TMkV5UTB0WE1XZFRTak5FUmxaWWEzRjFVWEZIWW5kalpFRlpaRWN4VEVkR1ZWbG5iemhHWkRoNVlqTTFhWElyWVVkaGJVRlNNR2NLZHpJdmRFWjJMMjVRZGt4aE9FRlFRVGs1TmxWUWNESnpaVTlSUXpCc2FXZGxMMFZvT0hGa1ZYVklVMHRIYlZJdlNrOHpWbXB2VWpVM2RUWTFkR1JTU3dwQmExQkxaMnRVWldWVlQwTTBUVlpyZDFaTlZ6UlZNVTVUYkZaS1RYTTBRMUVyV2pSbmFWaHJkR05JUmpKc1FYQXJXVmhwTVRsUlJrVkJaak5tZUVSSENrRkVhalJYTW1zNVkycFdjalI1VkhCbmIxaDJlVTl5WmtsMWJtcDJURzFKYm1sbU4yWkJkVFpUTjJ3eU5VdDRWbU41Y1U5b1ZtMVhObFZhV1ZBclJVSUtUMDlPYldOQ1ltbGlObmN4VWpFNFl5OVZiRWt3VnpoRVNFWm9aUzg0SzJWR1RIYzFWVkU1U1RWdlJrdFVRMFJJTVhoVU1uRm5ibGg0YUdNMVRHSTRkZ3BWUW5FNWJHeFFjR3R3Ym1Od1NVSXhlbWRDWW5SMGRVdDRWVnBpUlVGMGRuaHNXRFpqWms4M0swSnJTakZyYkVvME1VOUNjRGRNUlVGQ1dUUk9kSEpvQ2pCT1lYRldjM2wyT1VKTFltTnpXVFJHVURWdWJrTlhjVmhEUVV3NE9UZENjRkUzY2twdlYzRnZaa0ZFWkhCNVNUbExWVFl3WVM5clZuVXJOMVZhT1RVS01EZEJkVUZyVVd4S2JsY3ZRMDkxTHpsUk9HOUNiSFJ1V2poQ1kyeFVWMjFIVWxCWFZYcHNOQ3RGTlZJcmIwdEpSR1Z5UWtGaFdsWlNNbk5XVFhOb1NRcHFVbEZGWTI1aFMxUTRTM1ZsVjFONE1GTjNUV3BKYUV3NE4yTktZbXQ2YTJkbldVNVZVMVJOT0c0Mk9IVm5VbFp2VVV0RFFWRkZRVFZ3Tm0xdlNtOUdDbEJTTWswMVRVUjNia2Q0YWtnM1MwZFRWRlp1TUVkNmFERXZOeXR2Y0dwbVJ6RTBMMFJ1VUROWFVrNXJkVzg1UVhoeE5YZERUbkl5YUhOSVdGRTVZV2NLU0hCVGR6VnNNVmRTWlhKMFZpOUpOSEpJVURVeWIyWmFTMFpOYUZoelZtaEllVlIwTUdadlVYQldWWGxsUmtGNWRsQXdibWRFU2tsdFJHMXJjalpJUkFwcE1FYzRNSEoxYkhOcWJYbzVVR2dyTlZSVVRFVlpWV041UkhnekswSjVURE54WldaU01reG1aMVJtZEZCV1lsZDBjRGhKWTBWeFluUndTVkJpZUc5TkNrNHJibTFJUXl0Tk1qVjVTVXBTVW05b2RYcHBjM0JsTms5V1VrSjJOVVpyY2tWc2RtSXhNVk14VlRoMVoyMVNSMEYwVFZKYU56ZDNUbkIxYjNCMk5tTUtkVEp1TUhWM2RrazNibTF1VDNJNFZHRlBkMkkxUmtwdVdHZzJaVEp1VVdWTGJqWjVLMHhDYmpkUWVETlJWVmRDY0d0RWRGbDFVakYxVDI5eFJIbHZlUXB1WVUxSmVUazJXamhwY25Wa2QwdERRVkZGUVhkUGFpdEhkMXBYU1ZOWk9YTk1hbkZJYzBVeldrdGlNMDFvVDJaYWFVcGhUMk5JZW1WNWFsbHllbWs0Q2pNelUyTTJWMGhaVUU1VlRVSlROalF4UkdOU1lURk9UekpsUW10eVQxWk5SSGhaYTJGa2FEZFFXak5ZY0Vab1VFdHdOVTV1Y1VSTGFVMW5SbUZJU0dFS2JYZzBjQzlrUVRGdlRrdFFRbVV5V2tKd2JtOVlVblZHTkhWTGVGZDNiMHN5WkhSb04yWnpaa3hUZEZaV2RGSnRObXhzTDNnMFIzRmxUVWhOYzFGdWNncHJhbEZYY1ZoWWVWaFlVM2MwV0dWdGF6VkRVSFI0VTBObk9YaElNMjAyVDI5RlRXd3pZa3RFWVVOMFprNXVNR3RoTTBVM1VUVm5kbmxMUTFsdmFXSjZDbGwxTldaS05YUklUamx0UzNsT2REZFhWM1JzWTNWbmQxbGljSFYxVFdWTVFXaGFSM042ZVZjeGEwTlRWa3BXUlUxU1FVdFlSR1ozVGs0NVUybGphbG9LTTBNdlNIQjBNbk5NYms4eWJGSmtjVE5MVEhCdWJITk1WVlI2ZVU1WGJVTkpWSHB4T1U5TVZISjNTME5CVVVGbE5XeEVla2xqTDJvMFYzRTBWamRYYkFwaU9IaFZUMlZ3VDAxek5tNUhXQ3RzU0dwQ2JDOXpLMlEzYVVoTGQxQlVObEpYVUhkeWVrMUNjU3QxY3psQ1Iyd3JjVVJ4U1ZBMmVFOXJSRGxxVEVnM0NtbHFLMnN3Wm5GUUsweFpXV1J4TURndmRUVjNjMVZsVkVWaVMyWjFURFl3VDBaallqQmljMHR2VjNwRFpUTndTV3Q1YVdsek5ucHpiM0pGTTBaNFpHSUtZWFZ1VjNZNWFsbDNlSE5YVkU1NVVGazNTemRXY1M5VE9VZHBaQ3QyZUhoYWRHNTBjSGN6TjNsQ1JYTlpiMHM0YTNCT2J6QnVaV2x2YWpsSWRGbE9UZ3BDV1hOclZreHBkMjh4Y1RScVUxaFNaWEF5V1cxc1ZpOHhRazFRVHpsVVYyRmtZVlZrTDFRNVpXVlNVMGg2TkRKUmRVd3hRbEphWnpob1FuUlpNbGhZQ25SbmMxaEVkbFE1TUU5NmJubGlZVFUwUzFwMVNreE1TMEpPU0dORGJEZFRXRkF4Y0dwSVQxUnZRVEYxWlRabVpWUTViVEF3U0ZkYWN6TmxRbEZYUld3S1JtMVdMMEZ2U1VKQlNHNVBXa040YVU5ME5HaHFSa0poTkdoR1lsSlJUemN6Vm1Zd1VtWkRlV1pwTHpoQ1ExcGxObnB5ZDFreWJtYzRkbUl4TDJocGFncEhWSHB2WmtoSllUa3haa05QV1dGbVFteExXbFZuV1hkdUwzUndXWEF2VFZjME16ZzJUR1p5VkhVeE4ySTBZMmRpVkVjcmRXZzJOVEZDTDJOaFVrSk5Da0V4ZW13MGJuSnNhMWN2UVRScVFWcHVXWHA2WTFacFVVTnRlU3MxVEdWaWNHWXpNbXBoYTNCeEswbHZVVXREVWtab1RYWlNWbmxEYjFaRFRrWmxWRzBLZFc4d1ZFSk5ORzFQUjJsTlptTkRUM2hhTlhkU2IxSjRRV0ZpVkdka0szcHBlVWxZYzBob1lTOWxWek5aVjNsWU5IVm9ORWRpVURncldEVkVjMHAwVndwT1EybFNWbGhvYm5SS00zbGxRMGwwUjNBMU15dEtSSFo1WlV0QmRtMXJORk50TURNNWRDOVlNV2RNVjIwd2FETlFiVWRpZG1SM2JrZDZVMFYzWVZKMkNrVm1iR1l5VDNwS2RsTk9kRXd4T0hwVlYyaHBXRE5XYmxKeFFYSXpVMk5EWjJkRlFVNW5WREZzUWxkblEzQTFiR2hKT1RKaldUZHBlRXQyZW5NdmVua0tiVVI1VWxVd1NWQkVOVFZJZUZCTk5GZFVhbE01TkZCeWFHRXJRM2w1Vm1veVRFZzVSVmtyTUd4VEx6QmtVVTFRTTBjMVNHNDJVVXRySzNwRk5XTlBiQXBpTWs1TFdXdEZUVE5CUnl0T1duQnphSFpaTm1OMFdtSmFhMFV2VWpWMVRIcDJORU5MWXpWSFQxWk1iMjF0VVc5RlVWZzBjRVV2T1hSM2MxbDVRMGhwQ2s5SmFEUnJZemhCYjFZdlVrNU5kbElyY25seFVrTlNkMFJ4U0RWaVFscEZVREEwTkZGeGNWRXZaM1Z0V21GQ2FqZE1TMUJtZHpaSlIwOUJORTFrWTJrS05YTXZhRk5qVW1VMVdVMHpWV0UxZUV4aFZscGlWamRHZVVVelNWVXpWeTltYW1SVlQzaDZhbTh5YlhoV2Nub3ZLemg2TDBsc2MyRkJiMGhQZEUxMU53bzBMMDh5VkhSTlJUTmtiVGtyZDBOMFJEbFlVbmwxVWxGeVVUSkhjVzA0TVcxellUWlVhM0JhT0VWdlZEUmhjMHc1YmtwYWEwRTJSMk5uUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAyMEFKZnF4T0RDQ3F6OTVUeFMxdVVGMnNmUVQ5bnd0V3pIQkZDTVVyQW5yTldlOUI3c3JTaklSUVVmN3pEMm03c1o5T1lqUFNyWmxMTGM0Q21GaXppN1l4M3c3aHMxSEM2NFdPQmtDM1BBcVJmYW9aRHVzajRIdlUxbndWdjRLUQo=\"\ - \n }\n ]\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '12912' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:55 GMT + - Tue, 14 Jan 2020 01:25:42 GMT expires: - '-1' pragma: @@ -1746,73 +1854,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1173' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --load-balancer-outbound-ips + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US - method: GET + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ - ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2607' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:10:56 GMT + - Tue, 14 Jan 2020 01:25:50 GMT expires: - '-1' pragma: @@ -1821,90 +1918,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1172' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: !!python/unicode '{"properties": {"nodeResourceGroup": "MC_clitest000001_cliakstest000001_eastus", - "enableRBAC": true, "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": - [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]}}, "networkProfile": {"podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "networkPlugin": "kubenet", "loadBalancerSku": "Standard", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003"}]}}, - "dnsServiceIP": "10.0.0.10"}, "dnsPrefix": "cliaksdns000004", "kubernetesVersion": - "1.13.10", "agentPoolProfiles": [{"count": 1, "name": "nodepool1", "osType": - "Linux", "type": "VirtualMachineScaleSets", "vmSize": "Standard_DS2_v2", "maxPods": - 110, "osDiskSizeGB": 100, "orchestratorVersion": "1.13.10"}], "servicePrincipalProfile": - {"clientId": "fe3666d9-187f-4884-882e-85b5d0c2b2f0"}}, "location": "eastus"}' + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive Content-Length: - - '1896' + - '1716' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -n --load-balancer-outbound-ips + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Updating\",\n \"kubernetesVersion\": \"1.13.10\"\ - ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"provisioningState\": \"Updating\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 cache-control: - no-cache content-length: - - '2788' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:11:00 GMT + - Tue, 14 Jan 2020 01:25:57 GMT expires: - '-1' pragma: @@ -1913,150 +1982,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - 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 - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - -g -n --load-balancer-outbound-ips - User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 - response: - body: - string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ - \n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 12 Sep 2019 02:11:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1171' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - -g -n --load-balancer-outbound-ips - User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 - response: - body: - string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ - \n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 12 Sep 2019 02:12:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - 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 + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --load-balancer-outbound-ips + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ - ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ - \n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:12:31 GMT + - Tue, 14 Jan 2020 01:26:05 GMT expires: - '-1' pragma: @@ -2065,48 +2046,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1170' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --load-balancer-outbound-ips + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ - ,\n \"status\": \"Succeeded\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ - ,\n \"endTime\": \"2019-09-12T02:12:57.9213774Z\"\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:13:01 GMT + - Tue, 14 Jan 2020 01:26:13 GMT expires: - '-1' pragma: @@ -2115,71 +2110,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1169' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --load-balancer-outbound-ips + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 - method: GET + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ - ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2970' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:13:01 GMT + - Tue, 14 Jan 2020 01:26:22 GMT expires: - '-1' pragma: @@ -2188,73 +2174,62 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1168' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks create Connection: - keep-alive + Content-Length: + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US - method: GET + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ - : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ - \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ - ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ - ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ - : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ - ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ - : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ - : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ - : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ - \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ - : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ - : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ - : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ - \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ - \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ - \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ - : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ - : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: cache-control: - no-cache content-length: - - '2970' + - '241' content-type: - application/json date: - - Thu, 12 Sep 2019 02:13:03 GMT + - Tue, 14 Jan 2020 01:26:29 GMT expires: - '-1' pragma: @@ -2263,54 +2238,64 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1167' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: - body: null + body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", + "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": + true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": + {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks delete + - aks create Connection: - keep-alive Content-Length: - - '0' + - '1716' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --yes --no-wait + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 - msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python - AZURECLI/2.0.73 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US - method: DELETE + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: !!python/unicode '' + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service + principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, + Please see https://aka.ms/aks-sp-help for more details.\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/abd2fad4-00e8-4bb1-9618-01e757993586?api-version=2017-08-31 cache-control: - no-cache content-length: - - '0' + - '241' + content-type: + - application/json date: - - Thu, 12 Sep 2019 02:13:05 GMT + - Tue, 14 Jan 2020 01:26:37 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/abd2fad4-00e8-4bb1-9618-01e757993586?api-version=2017-08-31 pragma: - no-cache server: @@ -2319,9 +2304,9 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1166' status: - code: 202 - message: Accepted + code: 400 + message: Bad Request version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml index c8148a592bb..ca87c0a442b 100644 --- a/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_sp_create_reset.yaml @@ -28,7 +28,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"1b30ac51-debf-4009-80d0-90a21bd49bba\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"99f377da-0a7e-4cca-8985-99680b46f319\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -39,7 +39,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Mon, 06 Jan 2020 14:19:50 GMT + - Tue, 14 Jan 2020 01:22:20 GMT expires: - '-1' odata-version: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -80,7 +80,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"1b30ac51-debf-4009-80d0-90a21bd49bba\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"99f377da-0a7e-4cca-8985-99680b46f319\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -91,7 +91,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Mon, 06 Jan 2020 14:19:52 GMT + - Tue, 14 Jan 2020 01:22:22 GMT expires: - '-1' odata-version: @@ -146,19 +146,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:19:55 GMT + - Tue, 14 Jan 2020 01:22:23 GMT duration: - - '2610532' + - '2409762' expires: - '-1' ocp-aad-diagnostics-server-name: - - dMQIMqTNmvClkFrJur55SvaXYOP0//qg9V+JHwyJ2DU= + - qD03Phkyp3PESyOCOq/UWezyOoJRSPWoF1sQ7pSJmlE= ocp-aad-session-key: - - _6sBvHZwioIkm_nkX1Cl2vHAT6AtZdtG9KUBIBJT5JgnAM1rWVlas003Nhf5l17thySp1zy0uP_7XRUv_wz0KU0icQfjkhx2qFFlsyUaf2sVto89qwie1AJsQo1Hkexx.qBKypgOB8-ciNXG-r6ibkk--jz2VwuxUvOMSERutoQE + - SStM8oqSA-E3Tvp8BlrSg4SX0BRQtN_UiFIreqm4hrFdI6LjDbdvFeerwKTSnu-_IxHjL7kHy31Z1_VeBJvxs0Xkm3VZ-myqVmhz-tZxiuvOGcS4OZZHsF7wwNRUJ_wP3JCKBQhhJzgKUWqIa139V7Uyo3RHsE2w7FJZtnfFu3U.-bxjMzer3tyO-MT1FPfnr90Y0uc4avj9__JJBiTy1xI pragma: - no-cache request-id: - - 416bac69-013b-49c2-b29c-8e464e3e79b1 + - 8e157932-227c-44a9-bf4f-a560bbe7019a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -172,8 +172,8 @@ interactions: message: OK - request: body: 'b''{"availableToOtherTenants": false, "homepage": "http://clitest.rg000001", - "passwordCredentials": [{"startDate": "2020-01-06T14:19:56.105784Z", "endDate": - "2021-01-06T14:19:56.105784Z", "keyId": "88888888-0000-0000-0000-000000000001", + "passwordCredentials": [{"startDate": "2020-01-14T01:22:24.663647Z", "endDate": + "2021-01-14T01:22:24.663647Z", "keyId": "88888888-0000-0000-0000-000000000001", "value": "ReplacedSPPassword123*"}], "displayName": "clitest.rg000001", "identifierUris": ["http://clitest.rg000001"]}''' headers: @@ -202,28 +202,28 @@ interactions: body: string: '{"odata.metadata": "https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element", "odata.type": "Microsoft.DirectoryServices.Application", "objectType": "Application", - "objectId": "dbb17987-55cc-40a9-bede-d1e82c1f26db", "deletionTimestamp": null, - "acceptMappedClaims": null, "addIns": [], "appId": "579137d5-3be9-4c30-b12b-c0930e5274c1", + "objectId": "4d54b364-58ab-40b8-ab4d-44ad68eb799b", "deletionTimestamp": null, + "acceptMappedClaims": null, "addIns": [], "appId": "dd75f9b3-7602-45f3-b3cf-4a2b7af00112", "applicationTemplateId": null, "appRoles": [], "availableToOtherTenants": false, "displayName": "clitest.rg000001", "errorUrl": null, "groupMembershipClaims": null, "homepage": "http://clitest.rg000001", "identifierUris": ["http://clitest.rg000001"], "informationalUrls": {"termsOfService": null, "support": null, "privacy": null, "marketing": null}, "isDeviceOnlyAuthSupported": null, "keyCredentials": [], "knownClientApplications": [], "logoutUrl": null, "logo@odata.mediaEditLink": - "directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/logo", + "directoryObjects/4d54b364-58ab-40b8-ab4d-44ad68eb799b/Microsoft.DirectoryServices.Application/logo", "logo@odata.mediaContentType": "application/json;odata=minimalmetadata; charset=utf-8", - "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/mainLogo", + "logoUrl": null, "mainLogo@odata.mediaEditLink": "directoryObjects/4d54b364-58ab-40b8-ab4d-44ad68eb799b/Microsoft.DirectoryServices.Application/mainLogo", "oauth2AllowIdTokenImplicitFlow": true, "oauth2AllowImplicitFlow": false, "oauth2AllowUrlPathMatching": false, "oauth2Permissions": [{"adminConsentDescription": "Allow the application to access clitest.rg000001 on behalf of the signed-in - user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "5c07b576-9a81-4023-bb61-e1a48123f71d", + user.", "adminConsentDisplayName": "Access clitest.rg000001", "id": "d4471ac0-5278-4d7d-bf3b-3cc4aa33f860", "isEnabled": true, "type": "User", "userConsentDescription": "Allow the application to access clitest.rg000001 on your behalf.", "userConsentDisplayName": "Access clitest.rg000001", "value": "user_impersonation"}], "oauth2RequirePostResponse": false, "optionalClaims": null, "orgRestrictions": [], "parentalControlSettings": {"countriesBlockedForMinors": [], "legalAgeGroupRule": "Allow"}, "passwordCredentials": - [{"customKeyIdentifier": null, "endDate": "2021-01-06T14:19:56.105784Z", "keyId": - "88888888-0000-0000-0000-000000000001", "startDate": "2020-01-06T14:19:56.105784Z", + [{"customKeyIdentifier": null, "endDate": "2021-01-14T01:22:24.663647Z", "keyId": + "88888888-0000-0000-0000-000000000001", "startDate": "2020-01-14T01:22:24.663647Z", "value": "ReplacedSPPassword123*"}], "publicClient": null, "publisherDomain": "AzureSDKTeam.onmicrosoft.com", "recordConsentConditions": null, "replyUrls": [], "requiredResourceAccess": [], "samlMetadataUrl": null, "signInAudience": @@ -240,21 +240,21 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:19:57 GMT + - Tue, 14 Jan 2020 01:22:25 GMT duration: - - '8137593' + - '7523412' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/4d54b364-58ab-40b8-ab4d-44ad68eb799b/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - BnOm9eidzVvEzdcjEkK3IqSSrIC1S15Nz8usiy4jLaU= + - Z1oxbFGVWWSVUNgUJQwzH6MA8tfaPhwW0mAej+ZjmRA= ocp-aad-session-key: - - Q1PI03xZvYlmZV4whH6nv7m7mxE4w7_7rtA1_UVhy3aB6MCRs3pgGjiJSO3gnwaNT08XhsCQCgd0m7ezBeEvKMmUKvZEmRDyrYflPuwCIujFAE6lMKMQpRRDhDXA6o5vl9WwSkW77yGaB6US3APxEU_6_XoaXwau2z_b3ezCssI.bqRxi_QyGdL9JoYU20AYBtFZsxDwD_mN94zb2d3Rqq4 + - BasY67eWf4cQnR1TJF9FGF35MsktoATD7lT_X2F6ujTFZsYOjOx4adbAY5dTrpzd2P80_qp_N5XqAAHNQZcM29DeDLsd3BxwcFbuEFySfTPeVib7l9Fa7AdXxELLN0dmlEWXfj3h-5XfV6tVaBXFwQ9-cpt4Ovz4DIk2gwSFqMQ.ItWWWLWtv5b9SG8wUwvN_bwlqdNADxEetfG1yfBlnO4 pragma: - no-cache request-id: - - 3b2b09e0-4d0d-4fd9-89a1-7e521034adf2 + - 2511b121-cc2a-498c-8acd-ce92740c6854 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -267,7 +267,7 @@ interactions: code: 201 message: Created - request: - body: '{"accountEnabled": "True", "appId": "579137d5-3be9-4c30-b12b-c0930e5274c1"}' + body: '{"accountEnabled": "True", "appId": "dd75f9b3-7602-45f3-b3cf-4a2b7af00112"}' headers: Accept: - application/json @@ -292,11 +292,11 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"ef8d35fc-c14d-4380-b800-195ed452ab64","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"3af0c37e-b8e6-4858-aae6-10b5e6446c17","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"dd75f9b3-7602-45f3-b3cf-4a2b7af00112","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d4471ac0-5278-4d7d-bf3b-3cc4aa33f860","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["579137d5-3be9-4c30-b12b-c0930e5274c1","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["dd75f9b3-7602-45f3-b3cf-4a2b7af00112","http://clitest.rg000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' @@ -309,21 +309,21 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:19:57 GMT + - Tue, 14 Jan 2020 01:22:26 GMT duration: - - '5551347' + - '5892907' expires: - '-1' location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/ef8d35fc-c14d-4380-b800-195ed452ab64/Microsoft.DirectoryServices.ServicePrincipal + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/3af0c37e-b8e6-4858-aae6-10b5e6446c17/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - DmG6BTB70jkjS5bCyYHVevIHWvxRtyn25Nsb3Pg9kqQ= + - Z1oxbFGVWWSVUNgUJQwzH6MA8tfaPhwW0mAej+ZjmRA= ocp-aad-session-key: - - bftHf2FNjR03m5zBOy-jlO4zp6LMzSsnFahJ2zYXcPyNpbyjqKWQZer56HORUb23XASrLv6tFhNUMQEcb1K8bsibqS8c67a29eO-ZWs45YrmtKcUt-Sybl2uQjBVj_zuqxOXmqcIs16euTnZCbWT7VxYmSMAWVBfpOOvIzWsqCg.27epB6feJbHtMuJP5dFm43JC_BbMDZ_kAKoebKf2EvQ + - X88whUXVJbzQuVWgY3drVkJQ6ZMoh7u9a2srcehBFX-T7rH51NtdbacHh7hvWOyjPP1eyTLjE-iBefghet9Q7cTWIJJJl3fspCbwt4GAklgjJyx9legxiycREvinZbDOaxoDK2QRxdRDMv7nkacuMvRCMpihgJphtA7GVWYM2JQ.lHksGsyHcM5pQPdmuoP4y3uGrjLaD2R89jJjmrXzRVw pragma: - no-cache request-id: - - 979061df-4b76-497b-9f64-7fe8f336d642 + - 86b45485-32dc-4e81-a32d-33155bcc8599 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -354,7 +354,7 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27ef8d35fc-c14d-4380-b800-195ed452ab64%27&api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%273af0c37e-b8e6-4858-aae6-10b5e6446c17%27&api-version=2018-09-01-preview response: body: string: '{"value":[]}' @@ -366,7 +366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:19:57 GMT + - Tue, 14 Jan 2020 01:22:26 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:19:58 GMT + - Tue, 14 Jan 2020 01:22:27 GMT expires: - '-1' pragma: @@ -440,7 +440,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "ef8d35fc-c14d-4380-b800-195ed452ab64"}}' + "principalId": "3af0c37e-b8e6-4858-aae6-10b5e6446c17"}}' headers: Accept: - application/json @@ -467,7 +467,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2018-09-01-preview response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal ef8d35fcc14d4380b800195ed452ab64 + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 3af0c37eb8e64858aae610b5e6446c17 does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a."}}' headers: cache-control: @@ -477,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:19:59 GMT + - Tue, 14 Jan 2020 01:22:29 GMT expires: - '-1' pragma: @@ -525,7 +525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:20:04 GMT + - Tue, 14 Jan 2020 01:22:34 GMT expires: - '-1' pragma: @@ -547,7 +547,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635", - "principalId": "ef8d35fc-c14d-4380-b800-195ed452ab64"}}' + "principalId": "3af0c37e-b8e6-4858-aae6-10b5e6446c17"}}' headers: Accept: - application/json @@ -574,7 +574,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2018-09-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ef8d35fc-c14d-4380-b800-195ed452ab64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2020-01-06T14:20:05.9708883Z","updatedOn":"2020-01-06T14:20:05.9708883Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3af0c37e-b8e6-4858-aae6-10b5e6446c17","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2020-01-14T01:22:35.2115917Z","updatedOn":"2020-01-14T01:22:35.2115917Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' headers: cache-control: - no-cache @@ -583,7 +583,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:20:10 GMT + - Tue, 14 Jan 2020 01:22:40 GMT expires: - '-1' pragma: @@ -624,7 +624,7 @@ interactions: response: body: string: "{\r\n \"name\":\"ams000003\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003\",\"type\":\"Microsoft.Media/mediaservices\",\"location\":\"West - US 2\",\"properties\":{\r\n \"mediaServiceId\":\"1b30ac51-debf-4009-80d0-90a21bd49bba\",\"storageAccounts\":[\r\n + US 2\",\"properties\":{\r\n \"mediaServiceId\":\"99f377da-0a7e-4cca-8985-99680b46f319\",\"storageAccounts\":[\r\n \ {\r\n \"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002\",\"type\":\"Primary\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -635,7 +635,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Mon, 06 Jan 2020 14:20:11 GMT + - Tue, 14 Jan 2020 01:22:42 GMT expires: - '-1' odata-version: @@ -677,11 +677,11 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fclitest.rg000001%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"ef8d35fc-c14d-4380-b800-195ed452ab64","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"3af0c37e-b8e6-4858-aae6-10b5e6446c17","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"dd75f9b3-7602-45f3-b3cf-4a2b7af00112","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d4471ac0-5278-4d7d-bf3b-3cc4aa33f860","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","579137d5-3be9-4c30-b12b-c0930e5274c1"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","dd75f9b3-7602-45f3-b3cf-4a2b7af00112"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -694,19 +694,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:20:12 GMT + - Tue, 14 Jan 2020 01:22:42 GMT duration: - - '2562983' + - '2461632' expires: - '-1' ocp-aad-diagnostics-server-name: - - yjFpNiVH7H4hNgUCg7e4viVgl8ghPqdy05PYLJHsfOI= + - ME/Z7cMAnO6/vrzoMc6yckPd+gMqTzZtj4gnNCQoWjg= ocp-aad-session-key: - - A3hQ29RpttQw--gRW5TG8sYY7qIDr_55g8e--emz_IsU0nECgf1UjzFNxloKiG761a1GZcVqfvBTMynk11shnw31F1WAkbzqnKmCssJ-dAlmIBtGMHY3_rhVew-x5JcjscJR1S4y56XDWyziHWUFKo7GuF0wWfAKT2ZFbVykBxk._-92_heFV7Wmg2TDw8GUClNdLAbwUsWTpaY45hpTnFA + - t2AKhLTCJxtdOiwdptUtfE4rRAcRST8ROc7abS8_Phph7Ie4XLKK4aAC737TWxEDAueond38-rMB0B-PuvLEGjb-itpWLnJx6uHWmc60z8VJTQytiW8H37nSyntKgCIZ-wk5N_KWZX4_Aut940tPLC3yMSnxMb8i1BkxOZoeNhY.tPFmp5YYeMHpn8cMSso5_uwazYWCMzJjbI7smsu6sao pragma: - no-cache request-id: - - 8dacaef2-bb56-44b7-a909-d46d4d67b253 + - 0b11a7f4-94e2-4367-a152-e152ef45197d strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -737,14 +737,14 @@ interactions: accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27579137d5-3be9-4c30-b12b-c0930e5274c1%27&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27dd75f9b3-7602-45f3-b3cf-4a2b7af00112%27&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"dbb17987-55cc-40a9-bede-d1e82c1f26db","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"4d54b364-58ab-40b8-ab4d-44ad68eb799b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"dd75f9b3-7602-45f3-b3cf-4a2b7af00112","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/4d54b364-58ab-40b8-ab4d-44ad68eb799b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/4d54b364-58ab-40b8-ab4d-44ad68eb799b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d4471ac0-5278-4d7d-bf3b-3cc4aa33f860","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-01-06T14:19:56.105784Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-06T14:19:56.105784Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-01-14T01:22:24.663647Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-14T01:22:24.663647Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -757,19 +757,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:20:12 GMT + - Tue, 14 Jan 2020 01:22:43 GMT duration: - - '2426079' + - '2597971' expires: - '-1' ocp-aad-diagnostics-server-name: - - D8da6Z00zv5l3pI9cGPVo16n7vtqzRfrbwcETYmDmuo= + - zUe8ZYaKatjoHb/aHXtCthgIcK4iubnaPZXyP1+ZA+Q= ocp-aad-session-key: - - jKwqyExfADBYCcYtBhU7B3twCSUYQDWhil2-x1g0_5NKOBFFV5Mv3hBH6ZoX-5MX1W0nYI7MXVjc05d4zfgZXt7Gqlz5bn6XA3F_WTYSf6UEn8JRCgawVpwfp61WtNjm1ikIJIc0ESyvBZdJzKm01X4hhYTn5v9zhnzEw2ppwqU.l7PH12BL4vk46IzFg6kjLG1fpP8M4lGsNF520aVB30k + - m6eVrcXv4_Mf7VBjHRtV7VWqw2Y-JZ8Uxw6CiQbdOzIZaSyQYjmxGYjJA_cqCqJjYaCqiCf63OV5TOAKfvisNOU36S4-sTChc9a4XUsTWFyQ_7Edw9TzaeTnYuaboPqq13pYMLxWN78ycEXgv915h_SbOJn00-vSbMxUvjQLX14.qRBVrfDT8ZN8CojJyrsjUnfbarWTTOQYuwStzjNl7i0 pragma: - no-cache request-id: - - a0098ef1-1af4-41b9-96df-aab11295d1d5 + - e66c7358-4a37-4b38-a305-6cd54d73550c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -800,10 +800,10 @@ interactions: accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/dbb17987-55cc-40a9-bede-d1e82c1f26db/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/4d54b364-58ab-40b8-ab4d-44ad68eb799b/passwordCredentials?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2021-01-06T14:19:56.105784Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-06T14:19:56.105784Z","value":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#Collection(Microsoft.DirectoryServices.PasswordCredential)","value":[{"customKeyIdentifier":null,"endDate":"2021-01-14T01:22:24.663647Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-14T01:22:24.663647Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -816,19 +816,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:20:13 GMT + - Tue, 14 Jan 2020 01:22:43 GMT duration: - - '2401635' + - '2508633' expires: - '-1' ocp-aad-diagnostics-server-name: - - PVmdQVFo4vbIl3qFfJQXwZ8eIdlDxR0EypQwMc2EbEk= + - KuI5dWrN/8PhCEgeMZJvxaMvh+SYEqFwIaXyWKsa+6g= ocp-aad-session-key: - - odYVgsK9HvzK4NjHd0dg3DLZxg0cOhQpqAyYhC-kCM-qFufr9ThZpmHMRSwEJUCQzwJ1oOwqMgFkAgSoWfJyxFYJti6dVFHSReR_i7KV9kCiGBrTceLkUcLXTncJ2OKi8E-m-k2ST0GVubO01LnbTWub_WfZWhRdVUn5xhf8ozI.HIPrMN1z3c7jqnDzL2YPmerzQ4bnMcDeRsemRV0-8c8 + - YqydeiapYoMvO1bF0sX7vYd5pnODlYypo6m1WqyrG0UjjWzrsR3bo382G03yrRIPJ8RgShMoMLjba4Yv8-nvQsBEsD714vngjKEkkWOYbes07ax0mUu8j7_2ZruVP3Gyz2--ol2WjpO0RE6CKO7imQxbWWFhL_1ZWMH1LmViLQU.CQJwLBEsDi4nlVWQDSGJhMZMUAmv9zk9ts8kwMTpYKw pragma: - no-cache request-id: - - 7f66622a-a9e8-4e56-9751-e4c181317a20 + - 69c5c27c-4630-4842-a158-adf9ca225701 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -841,9 +841,9 @@ interactions: code: 200 message: OK - request: - body: '{"value": [{"startDate": "2020-01-06T14:19:56.105784Z", "endDate": "2021-01-06T14:19:56.105784Z", - "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2020-01-06T14:20:13.953242Z", - "endDate": "2021-01-06T14:20:13.953242Z", "keyId": "88888888-0000-0000-0000-000000000004", + body: '{"value": [{"startDate": "2020-01-14T01:22:24.663647Z", "endDate": "2021-01-14T01:22:24.663647Z", + "keyId": "88888888-0000-0000-0000-000000000001"}, {"startDate": "2020-01-14T01:22:44.428563Z", + "endDate": "2021-01-14T01:22:44.428563Z", "keyId": "88888888-0000-0000-0000-000000000004", "value": "spp!000005"}]}' headers: Accept: @@ -866,7 +866,7 @@ interactions: accept-language: - en-US method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/dbb17987-55cc-40a9-bede-d1e82c1f26db/passwordCredentials?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/4d54b364-58ab-40b8-ab4d-44ad68eb799b/passwordCredentials?api-version=1.6 response: body: string: '' @@ -876,19 +876,19 @@ interactions: cache-control: - no-cache date: - - Mon, 06 Jan 2020 14:20:14 GMT + - Tue, 14 Jan 2020 01:22:44 GMT duration: - - '7709239' + - '7702415' expires: - '-1' ocp-aad-diagnostics-server-name: - - uw2DI55YPxO27iCQ9gmp7jkFjvTBnlg/TMjn48ai3jY= + - CB6SIW0UFZAjiWXJN39BLCKPIxfd8cS9A1TPlCaqMlk= ocp-aad-session-key: - - coosjklyGqUWbeimgB4UAlPu6wZPJqVcJOFHp265j4bVZrmW6144OwDhWraKMj6bZbr01fRSd_hpFoILqgCmlYrGbBA1OOPJxXmHzmdQnnonCoG36d_9xgSkLtGbsINaRUWgS0-mrgN43GnzWW-UIF-5-ACzmbV44MG8M7V9-v4.5m6DxcOpn__ILBsv4Dt_cxpX-Xa7ez2O6VFwYhR8VaU + - pGHzAmQxF5biOry6t59wzJ6iKrgbZqVm1bHqH6vbWCgaI1OA9gNnG5lk1v6ZDHnu40-84xkG0vPSq_4r9EvvP1N7rjRzebs8nvp4jz2OsgP6CuOME_j5vvJveZeLxyuAmnXqynLbeMox85ByiWDhgC3na5tAIs29R0GNQbZY71o.YEQ-qdlEvj8o51PKJ9dz8a1s-wj2jU17pYWx5s7VXI8 pragma: - no-cache request-id: - - a87dc39d-49cc-417f-962d-32e9814b5d86 + - aa2a094d-a0e3-43b0-9053-d5377e93dca1 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -919,10 +919,10 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%27ef8d35fc-c14d-4380-b800-195ed452ab64%27&api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20%273af0c37e-b8e6-4858-aae6-10b5e6446c17%27&api-version=2018-09-01-preview response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"ef8d35fc-c14d-4380-b800-195ed452ab64","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2020-01-06T14:20:08.5097844Z","updatedOn":"2020-01-06T14:20:08.5097844Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"3af0c37e-b8e6-4858-aae6-10b5e6446c17","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003","createdOn":"2020-01-14T01:22:37.9877037Z","updatedOn":"2020-01-14T01:22:37.9877037Z","createdBy":"21cd756e-e290-4a26-9547-93e8cc1a8923","updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}]}' headers: cache-control: - no-cache @@ -931,7 +931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:20:15 GMT + - Tue, 14 Jan 2020 01:22:45 GMT expires: - '-1' pragma: @@ -1307,7 +1307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:20:15 GMT + - Tue, 14 Jan 2020 01:22:45 GMT expires: - '-1' pragma: @@ -1328,7 +1328,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["ef8d35fc-c14d-4380-b800-195ed452ab64"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["3af0c37e-b8e6-4858-aae6-10b5e6446c17"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1354,11 +1354,11 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"ef8d35fc-c14d-4380-b800-195ed452ab64","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"3af0c37e-b8e6-4858-aae6-10b5e6446c17","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"clitest.rg000001","appId":"dd75f9b3-7602-45f3-b3cf-4a2b7af00112","applicationTemplateId":null,"appOwnerTenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"clitest.rg000001","errorUrl":null,"homepage":"http://clitest.rg000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d4471ac0-5278-4d7d-bf3b-3cc4aa33f860","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","579137d5-3be9-4c30-b12b-c0930e5274c1"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"AzureSDKTeam","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://clitest.rg000001","dd75f9b3-7602-45f3-b3cf-4a2b7af00112"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1371,19 +1371,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:20:15 GMT + - Tue, 14 Jan 2020 01:22:47 GMT duration: - - '4396606' + - '4563799' expires: - '-1' ocp-aad-diagnostics-server-name: - - CB6SIW0UFZAjiWXJN39BLCKPIxfd8cS9A1TPlCaqMlk= + - ME/Z7cMAnO6/vrzoMc6yckPd+gMqTzZtj4gnNCQoWjg= ocp-aad-session-key: - - ez2DePommUXwW9YCqBFkmtCxUWsuU3UJgNQVh855VSvDUqLiAkoNU36GTNApdB4b6LFf3dV7QAAXC-PtOVohFhdZvgT2WVZa-z5T0ERZnhm2ItgYlajFePTd1GPS2fFgs8SMQ8YCP5HbJxNu7fgWVuouGJ7RYu-w8IvQSIIa-SE.81OVgk4guqWnLnTaoqyf_CYsYVOe09LEbgZljaqKV9g + - 4yAlF6_ZRUATFpbTThGg_s8Cv3bX6EzQTZCgmWaKk77g3m_3-BfxDuwg435qIRXRBfRsLKeJX70c_AS0DPOW8558uBrgAOlRr2PGI8tewT8U7EQKFiNcJJJYLavYuka0NzyvaFudk6PPLHMppuGNIYvlSlQ814pugS9A0CzMEug.wkSHT7qPXFY4BPb1Tikm_rw8cmoFlcM2vQHTNc6sYm4 pragma: - no-cache request-id: - - c6880fdf-1637-429e-a48f-f4637af956ce + - ecc7ef3b-9cff-4a90-93e0-6281f4153075 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1417,11 +1417,11 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fclitest.rg000001%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"dbb17987-55cc-40a9-bede-d1e82c1f26db","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"579137d5-3be9-4c30-b12b-c0930e5274c1","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/dbb17987-55cc-40a9-bede-d1e82c1f26db/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"4d54b364-58ab-40b8-ab4d-44ad68eb799b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"dd75f9b3-7602-45f3-b3cf-4a2b7af00112","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"clitest.rg000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"http://clitest.rg000001","identifierUris":["http://clitest.rg000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/4d54b364-58ab-40b8-ab4d-44ad68eb799b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/4d54b364-58ab-40b8-ab4d-44ad68eb799b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow the application to access clitest.rg000001 on behalf of the signed-in user.","adminConsentDisplayName":"Access - clitest.rg000001","id":"5c07b576-9a81-4023-bb61-e1a48123f71d","isEnabled":true,"type":"User","userConsentDescription":"Allow + clitest.rg000001","id":"d4471ac0-5278-4d7d-bf3b-3cc4aa33f860","isEnabled":true,"type":"User","userConsentDescription":"Allow the application to access clitest.rg000001 on your behalf.","userConsentDisplayName":"Access - clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-01-06T14:20:13.953242Z","keyId":"88888888-0000-0000-0000-000000000004","startDate":"2020-01-06T14:20:13.953242Z","value":null},{"customKeyIdentifier":null,"endDate":"2021-01-06T14:19:56.105784Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-06T14:19:56.105784Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + clitest.rg000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[{"customKeyIdentifier":null,"endDate":"2021-01-14T01:22:44.428563Z","keyId":"88888888-0000-0000-0000-000000000004","startDate":"2020-01-14T01:22:44.428563Z","value":null},{"customKeyIdentifier":null,"endDate":"2021-01-14T01:22:24.663647Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2020-01-14T01:22:24.663647Z","value":null}],"publicClient":null,"publisherDomain":"AzureSDKTeam.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1434,19 +1434,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:20:17 GMT + - Tue, 14 Jan 2020 01:22:47 GMT duration: - - '2429564' + - '2569917' expires: - '-1' ocp-aad-diagnostics-server-name: - - bjNxOO4JJe6y/+2Ru4f1c2yR+8kj70jYtxaslVt3278= + - cTgtNQkuDGr6qwftSfgSfUGBogf7OfXqQNU+jCyiv78= ocp-aad-session-key: - - ZfXpF4BQp1Kw1qQNS0hIgUtNthrWPRPwZuaxTPD68oiuZQ8CqIHYVkR-z8Ce5hF4fjcUE9P2nFP1uQ3emPu2U22yeVzHdS0Uycx9xvN1uIijFOh8Oh8MrGljJHh7snvo9MwFeJJQZVxRmNj2Yc4UY4O4rqroDTbzlNSQnBruD3o.5XnlDK8PQgPexhMuxa9lay4gAFDx5Bm8YI3XDIIMZyI + - 79avUAf09EBwVymT5L7Cd74TNycMyS4MGh6lT3vXaGa36Vsw_8LMl3HgQwsBGte-8DCnUuVbdW2BA1_rtHEBB8oVugO6M_1MKiWsG-SIZfvTuFH75NT83dwZFMZtIYuGt1Xvj2K8GFr_qr0bk1jU3291SaNVFe5Qo5gTWERgQGU.d9j0daXf6kLiYs56xDiezo1pP_swP8tMzuNAJcoRkSk pragma: - no-cache request-id: - - b72fc2a8-6c3d-4ed5-81a9-e0d8c3e30e58 + - 5824871c-d0f8-4c60-a767-1d3e7946478c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1479,7 +1479,7 @@ interactions: accept-language: - en-US method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/dbb17987-55cc-40a9-bede-d1e82c1f26db?api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/4d54b364-58ab-40b8-ab4d-44ad68eb799b?api-version=1.6 response: body: string: '' @@ -1489,19 +1489,19 @@ interactions: cache-control: - no-cache date: - - Mon, 06 Jan 2020 14:20:24 GMT + - Tue, 14 Jan 2020 01:22:48 GMT duration: - - '62130098' + - '5114217' expires: - '-1' ocp-aad-diagnostics-server-name: - - jr8yj9FL/uTgHXWOfs1K3qZJqXzBMlORaqSHWNV+91s= + - ujUSmj8FiX4t/EX+dTu/7F8x7hmXB38pLUyIq9mZgws= ocp-aad-session-key: - - 4FdQTogsdtiDloGAgm-N_Ezk6tezxd_naT3WKr6NQaBBmVMx5hxlw-_9uVWVwGKYjWpucO2C_AiA4KlBHto4GIbi5JS98Z7nEJj9P-Y7tO-mDQTlmUXlSG14vXzONrZZtmiAnu1eNwGcrT81VW7i6HspGMSeQhVb8JGsRUkBlV0.u0d4h79mg8N884kYN2RvypSP2Nb-dPxvTjBHKsj8jpQ + - 8r3teHphy5R4YqNc3yazQRQuQKKohGRGRF8xpAr0qkg2_61qkxn0WB2LvTUglyQeQXrkdVTObGwoEh4pL2r_ID-KqfbQJjtJHMqlYxicG7KiYv2hFhFj3Vw0Tmj0q-0w-fe1VZREEWNW4nIT7kL9JiiWFs_y0gHwb5rkZxlCo8Y.tM1dPIrp-eRxyJjYfSQhkGYj66lamUC4fAaLrnyze2c pragma: - no-cache request-id: - - 8777b9d9-5be7-456f-87d6-e8404369670e + - 151916f7-dc46-4d25-981e-ed58cf1fda35 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: 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 ac2d3d485b1..f792306a036 100644 --- a/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json +++ b/src/azure-cli/azure/cli/command_modules/appconfig/tests/latest/export_features_prop.json @@ -1,4 +1,4 @@ -#Mon Jan 06 10:22:11 China Standard Time 2020 +#Mon Jan 13 20:24:18 China Standard Time 2020 Color=Red Region=West US feature-management.FalseFeature=false diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml index a07e1b60c21..9cf7f418360 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:19:12 GMT + - Tue, 14 Jan 2020 01:21:47 GMT expires: - '-1' pragma: @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:13 GMT + - Tue, 14 Jan 2020 01:21:48 GMT expires: - '-1' pragma: @@ -127,7 +127,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:19:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:19:14 GMT + - Tue, 14 Jan 2020 01:21:48 GMT expires: - '-1' pragma: @@ -179,8 +179,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6189,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6189","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6265,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6265","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:33 GMT + - Tue, 14 Jan 2020 01:22:08 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -236,8 +236,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6189,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6189","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6265,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6265","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +246,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:35 GMT + - Tue, 14 Jan 2020 01:22:10 GMT expires: - '-1' pragma: @@ -304,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:35 GMT + - Tue, 14 Jan 2020 01:22:10 GMT expires: - '-1' pragma: @@ -322,7 +322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -351,8 +351,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6189,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6189","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":6265,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6265","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +361,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:36 GMT + - Tue, 14 Jan 2020 01:22:12 GMT expires: - '-1' pragma: @@ -428,7 +428,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:19:38 GMT + - Tue, 14 Jan 2020 01:22:14 GMT expires: - '-1' pragma: @@ -481,7 +481,7 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-06T14:19:44.18","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1C23D3079C4131515FC7941B8DEB73D57B798EBB38A9FF9B097B96DCFD73DE72","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T01:22:20.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C4136155466A1B032E3AAB576DEBB565AABD2B2265D81F6C68072E95AB1DB327","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache @@ -490,9 +490,9 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:20:03 GMT + - Tue, 14 Jan 2020 01:22:39 GMT etag: - - '"1D5C49C57E9988B"' + - '"1D5CA791140A340"' expires: - '-1' pragma: @@ -544,17 +544,17 @@ interactions: body: string: @@ -566,7 +566,7 @@ interactions: content-type: - application/xml date: - - Mon, 06 Jan 2020 14:20:03 GMT + - Tue, 14 Jan 2020 01:22:40 GMT expires: - '-1' pragma: @@ -647,13 +647,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Mon, 06 Jan 2020 14:21:50 GMT + - Tue, 14 Jan 2020 01:24:01 GMT etag: - W/"ca5-16e3e8a1c88" last-modified: - Wed, 06 Nov 2019 02:27:49 GMT set-cookie: - - ARRAffinity=5a6b5a0a634d30de5f17ff449e118314cc910a66acb034b5e20d8ebce3ea88fe;Path=/;HttpOnly;Domain=webapp-sshz2nhokjtyd7nwj.azurewebsites.net + - ARRAffinity=6ba22433a1b457c187a850f5c19202dc1734850343a7e4d01eaa9725a3e6374c;Path=/;HttpOnly;Domain=webapp-ssh2wbizez7j6vvm3.azurewebsites.net x-powered-by: - Express status: @@ -693,7 +693,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:22:21 GMT + - Tue, 14 Jan 2020 01:24:32 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index fc1756d098d..1c4ef4c6617 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T10:40:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 10:40:30 GMT + - Tue, 14 Jan 2020 01:21:49 GMT expires: - '-1' pragma: @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:40:31 GMT + - Tue, 14 Jan 2020 01:21:51 GMT expires: - '-1' pragma: @@ -98,7 +98,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-13T10:40:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jan 2020 10:40:31 GMT + - Tue, 14 Jan 2020 01:21:52 GMT expires: - '-1' pragma: @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26301,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":27075,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:40:44 GMT + - Tue, 14 Jan 2020 01:22:03 GMT expires: - '-1' pragma: @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26301,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":27075,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:40:45 GMT + - Tue, 14 Jan 2020 01:22:06 GMT expires: - '-1' pragma: @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:40:45 GMT + - Tue, 14 Jan 2020 01:22:07 GMT expires: - '-1' pragma: @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":26301,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-083_26301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":27075,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:40:46 GMT + - Tue, 14 Jan 2020 01:22:07 GMT expires: - '-1' pragma: @@ -412,18 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-083.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T10:40:54.2466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"1EC28456261D5EF66F6107CBE97C2258DDAFB6057A13A0D3EF329ED139E18480","kind":"app","inboundIpAddress":"40.118.246.51","possibleInboundIpAddresses":"40.118.246.51","outboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93","possibleOutboundIpAddresses":"40.118.246.51,40.78.98.75,40.86.187.157,40.78.101.192,40.78.97.93,40.85.159.5,13.91.108.158","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-083","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T01:22:13.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"00978770152F46A8C20D7D9E7776CEC0569A92EA201035346B966E58FBBF9AD5","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3793' + - '3753' content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:26 GMT + - Tue, 14 Jan 2020 01:22:30 GMT etag: - - '"1D5C9FDEED66075"' + - '"1D5CA790D508A55"' expires: - '-1' pragma: @@ -476,19 +476,19 @@ interactions: string: @@ -500,7 +500,7 @@ interactions: content-type: - application/xml date: - - Mon, 13 Jan 2020 10:41:27 GMT + - Tue, 14 Jan 2020 01:22:31 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:28 GMT + - Tue, 14 Jan 2020 01:22:32 GMT expires: - '-1' pragma: @@ -612,7 +612,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:29 GMT + - Tue, 14 Jan 2020 01:22:33 GMT expires: - '-1' pragma: @@ -690,9 +690,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:31 GMT + - Tue, 14 Jan 2020 01:22:36 GMT etag: - - '"1D5C9FDEED66075"' + - '"1D5CA790D508A55"' expires: - '-1' pragma: @@ -710,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -750,7 +750,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:33 GMT + - Tue, 14 Jan 2020 01:22:37 GMT expires: - '-1' pragma: @@ -806,7 +806,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:34 GMT + - Tue, 14 Jan 2020 01:22:39 GMT expires: - '-1' pragma: @@ -824,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -867,9 +867,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:37 GMT + - Tue, 14 Jan 2020 01:22:41 GMT etag: - - '"1D5C9FE0821B2C0"' + - '"1D5CA791DD2B760"' expires: - '-1' pragma: @@ -887,7 +887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -927,7 +927,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:38 GMT + - Tue, 14 Jan 2020 01:22:43 GMT expires: - '-1' pragma: @@ -945,7 +945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -983,7 +983,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:38 GMT + - Tue, 14 Jan 2020 01:22:44 GMT expires: - '-1' pragma: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:40 GMT + - Tue, 14 Jan 2020 01:22:45 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:41 GMT + - Tue, 14 Jan 2020 01:22:46 GMT expires: - '-1' pragma: @@ -1154,9 +1154,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:42 GMT + - Tue, 14 Jan 2020 01:22:47 GMT etag: - - '"1D5C9FE0B50024B"' + - '"1D5CA792169CDD5"' expires: - '-1' pragma: @@ -1174,7 +1174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -1212,9 +1212,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:44 GMT + - Tue, 14 Jan 2020 01:22:48 GMT etag: - - '"1D5C9FE0B50024B"' + - '"1D5CA792169CDD5"' expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:41:44 GMT + - Tue, 14 Jan 2020 01:22:49 GMT expires: - '-1' pragma: @@ -1291,7 +1291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1326,8 +1326,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":14032,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-147_14032","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":31197,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-089_31197","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1336,7 +1336,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:03 GMT + - Tue, 14 Jan 2020 01:23:04 GMT expires: - '-1' pragma: @@ -1354,7 +1354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1383,8 +1383,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":14032,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-147_14032","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":31197,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-089_31197","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1393,7 +1393,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:04 GMT + - Tue, 14 Jan 2020 01:23:05 GMT expires: - '-1' pragma: @@ -1451,7 +1451,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:04 GMT + - Tue, 14 Jan 2020 01:23:06 GMT expires: - '-1' pragma: @@ -1469,7 +1469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -1498,8 +1498,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":14032,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-147_14032","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":31197,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-089_31197","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -1508,7 +1508,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:05 GMT + - Tue, 14 Jan 2020 01:23:08 GMT expires: - '-1' pragma: @@ -1575,7 +1575,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:07 GMT + - Tue, 14 Jan 2020 01:23:09 GMT expires: - '-1' pragma: @@ -1627,18 +1627,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005","name":"webapp-linux000005","type":"Microsoft.Web/sites","kind":"app,linux","location":"East - US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-147.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-13T10:42:13.23","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F3DE88C8B5D0C5F852719B01FD9D376700DE2D02BF0139BF32130ECC2B5CC3C9","kind":"app,linux","inboundIpAddress":"40.71.11.134","possibleInboundIpAddresses":"40.71.11.134","outboundIpAddresses":"40.71.11.134,40.117.215.11,40.76.9.115,13.68.199.96,40.117.113.125","possibleOutboundIpAddresses":"40.71.11.134,40.117.215.11,40.76.9.115,13.68.199.96,40.117.113.125,40.114.121.56,13.68.202.75,40.76.0.204,40.76.10.230,40.76.27.228","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-147","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T01:23:16.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2D9D895107464074664B26DA13BD2B8DB4717CC0830CBAE84A1DE88120471550","kind":"app,linux","inboundIpAddress":"40.71.177.34","possibleInboundIpAddresses":"40.71.177.34","outboundIpAddresses":"40.71.177.34,40.71.1.129,52.170.233.65,40.71.3.54,52.191.115.185","possibleOutboundIpAddresses":"40.71.177.34,40.71.1.129,52.170.233.65,40.71.3.54,52.191.115.185,104.211.20.160,104.211.22.67","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3638' + - '3603' content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:30 GMT + - Tue, 14 Jan 2020 01:23:35 GMT etag: - - '"1D5C9FE1DC525B5"' + - '"1D5CA7932D46C15"' expires: - '-1' pragma: @@ -1690,17 +1690,17 @@ interactions: body: string: @@ -1712,7 +1712,7 @@ interactions: content-type: - application/xml date: - - Mon, 13 Jan 2020 10:42:31 GMT + - Tue, 14 Jan 2020 01:23:37 GMT expires: - '-1' pragma: @@ -1726,7 +1726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -1767,7 +1767,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:33 GMT + - Tue, 14 Jan 2020 01:23:40 GMT expires: - '-1' pragma: @@ -1830,9 +1830,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:33 GMT + - Tue, 14 Jan 2020 01:23:41 GMT etag: - - '"1D5C9FE2A00C26B"' + - '"1D5CA794198886B"' expires: - '-1' pragma: @@ -1850,7 +1850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -1890,7 +1890,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:34 GMT + - Tue, 14 Jan 2020 01:23:42 GMT expires: - '-1' pragma: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:36 GMT + - Tue, 14 Jan 2020 01:23:44 GMT expires: - '-1' pragma: @@ -2002,7 +2002,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:38 GMT + - Tue, 14 Jan 2020 01:23:46 GMT expires: - '-1' pragma: @@ -2020,7 +2020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2064,9 +2064,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:39 GMT + - Tue, 14 Jan 2020 01:23:47 GMT etag: - - '"1D5C9FE2D0D8035"' + - '"1D5CA7944DAAE15"' expires: - '-1' pragma: @@ -2084,7 +2084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:41 GMT + - Tue, 14 Jan 2020 01:23:48 GMT expires: - '-1' pragma: @@ -2142,7 +2142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -2180,7 +2180,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:41 GMT + - Tue, 14 Jan 2020 01:23:50 GMT expires: - '-1' pragma: @@ -2236,7 +2236,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:44 GMT + - Tue, 14 Jan 2020 01:23:52 GMT expires: - '-1' pragma: @@ -2254,7 +2254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2292,7 +2292,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:45 GMT + - Tue, 14 Jan 2020 01:23:54 GMT expires: - '-1' pragma: @@ -2348,7 +2348,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:46 GMT + - Tue, 14 Jan 2020 01:23:55 GMT expires: - '-1' pragma: @@ -2404,7 +2404,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:46 GMT + - Tue, 14 Jan 2020 01:23:57 GMT expires: - '-1' pragma: @@ -2462,9 +2462,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:48 GMT + - Tue, 14 Jan 2020 01:23:59 GMT etag: - - '"1D5C9FE32D28D35"' + - '"1D5CA794C382860"' expires: - '-1' pragma: @@ -2482,7 +2482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-powered-by: - ASP.NET status: @@ -2522,7 +2522,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:49 GMT + - Tue, 14 Jan 2020 01:24:00 GMT expires: - '-1' pragma: @@ -2584,9 +2584,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:51 GMT + - Tue, 14 Jan 2020 01:24:02 GMT etag: - - '"1D5C9FE3457A695"' + - '"1D5CA794D8C6DC0"' expires: - '-1' pragma: @@ -2604,7 +2604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -2642,7 +2642,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:51 GMT + - Tue, 14 Jan 2020 01:24:03 GMT expires: - '-1' pragma: @@ -2700,7 +2700,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:52 GMT + - Tue, 14 Jan 2020 01:24:04 GMT expires: - '-1' pragma: @@ -2718,7 +2718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-powered-by: - ASP.NET status: @@ -2758,7 +2758,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:54 GMT + - Tue, 14 Jan 2020 01:24:06 GMT expires: - '-1' pragma: @@ -2814,7 +2814,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:54 GMT + - Tue, 14 Jan 2020 01:24:07 GMT expires: - '-1' pragma: @@ -2870,7 +2870,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:56 GMT + - Tue, 14 Jan 2020 01:24:08 GMT expires: - '-1' pragma: @@ -2926,7 +2926,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:57 GMT + - Tue, 14 Jan 2020 01:24:10 GMT expires: - '-1' pragma: @@ -2985,7 +2985,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:57 GMT + - Tue, 14 Jan 2020 01:24:10 GMT expires: - '-1' pragma: @@ -3003,7 +3003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-powered-by: - ASP.NET status: @@ -3046,9 +3046,9 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:58 GMT + - Tue, 14 Jan 2020 01:24:11 GMT etag: - - '"1D5C9FE385476B5"' + - '"1D5CA7953896DAB"' expires: - '-1' pragma: @@ -3066,7 +3066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -3106,7 +3106,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:42:59 GMT + - Tue, 14 Jan 2020 01:24:13 GMT expires: - '-1' pragma: @@ -3162,7 +3162,7 @@ interactions: content-type: - application/json date: - - Mon, 13 Jan 2020 10:43:00 GMT + - Tue, 14 Jan 2020 01:24:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml index 71aa7e8dea1..12fa5524049 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_contacts.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:36:46 GMT + - Tue, 14 Jan 2020 01:22:56 GMT duration: - - '2604025' + - '2565080' expires: - '-1' ocp-aad-diagnostics-server-name: - - dMQIMqTNmvClkFrJur55SvaXYOP0//qg9V+JHwyJ2DU= + - tGsmYshASkBfdb3iPu2T/1h7r7xzkDN1GnQjn1sd4kQ= ocp-aad-session-key: - - 1s0y4MiazVAxTdqTRINNAi4esc-UsJKH4GLdSrpMfoVbUPMT93DRbV5M65mQG5JJp7NmbxpIidFNlzQ-z9bam0pKNut3_EokCA86nV69cRjVTmgjua1Uglvk0CZM-xjm-l86tEm0rsW-UGrfXgN-_ZSEcJfSpExyXtc5mQByhsU.hGa4qaIbeVNO_u1KcRXb014qwVba4WJKjBlbhxjZfnE + - 6CoExUyNFFtuCTdpSyMzhcCEs48fhRxNcusoHQpR-gAylxoB4969AA8iihSUXgZtEnAQdeH0HnI-wK5AdG8Yh8fzQOJOWny9C0Fbv1CUDw1Yw00l0d-kn-jmGZ7EnqiVSrOjs5GHiEK-A-eTWQcDP6etyXXz2Eq7o0IgrmVSjT0.kJokGt28GlKp4grRy0lxiDcIbIPdpTGBBuzQ8itK0Yk pragma: - no-cache request-id: - - 3ac8b6a0-46ae-46a2-a421-3c284a152cf1 + - d1124b24-d03b-454f-bef2-a7c1304cfe34 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:36:53 GMT + - Tue, 14 Jan 2020 01:23:04 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:24 GMT + - Tue, 14 Jan 2020 01:23:35 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:26 GMT + - Tue, 14 Jan 2020 01:23:37 GMT expires: - '-1' pragma: @@ -267,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:28 GMT + - Tue, 14 Jan 2020 01:23:38 GMT expires: - '-1' pragma: @@ -324,7 +324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:29 GMT + - Tue, 14 Jan 2020 01:23:40 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:31 GMT + - Tue, 14 Jan 2020 01:23:42 GMT expires: - '-1' pragma: @@ -435,7 +435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:33 GMT + - Tue, 14 Jan 2020 01:23:43 GMT expires: - '-1' pragma: @@ -489,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:34 GMT + - Tue, 14 Jan 2020 01:23:44 GMT expires: - '-1' pragma: @@ -543,7 +543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:36 GMT + - Tue, 14 Jan 2020 01:23:46 GMT expires: - '-1' pragma: @@ -597,7 +597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:37 GMT + - Tue, 14 Jan 2020 01:23:47 GMT expires: - '-1' pragma: @@ -652,7 +652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:39 GMT + - Tue, 14 Jan 2020 01:23:49 GMT expires: - '-1' pragma: @@ -705,7 +705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:37:40 GMT + - Tue, 14 Jan 2020 01:23:50 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml index 77765d5128e..7595721fbab 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_crud.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:26:38 GMT + - Tue, 14 Jan 2020 01:21:50 GMT duration: - - '2659773' + - '2730542' expires: - '-1' ocp-aad-diagnostics-server-name: - - aP7R6MA20cup8msdSP2y3ghSXzLVVH210DgvMbRfVHU= + - NSWIiCK/5GEjwQ7/80e5hxAEcp4h2yQEdpGnPSUr9Z4= ocp-aad-session-key: - - K3beWM6ePLPOLHJrP74jRLlEBijwOaemjS0WGX1lIe5Nm7dOTq9Lx3O6JJpj6aJwu75ozMC8C0XrSAZalWsfElTjeX3sX4eElco6qtEeAohJJl3ZP0WGM9z5D929w7_O_grtOHiJvSfzkMG-inxnm_WLfozMYpuHkio78l6cXkc.v0PDND5vUuxYTLROZSb34h1OhAQfDAuztELPdbCaM7c + - eV4SaTT3TU-TL1MLusrCZoLkM3faDHrN37JevT-swGC0pSnGS4D7Cm8pSiUF3p6BZGLomNTdr0xjwzsY-Pyv7Mfk-qWbnyqkf06fznnphWVN2u6TySKK7dUsGnnqAfBT.ZUx5k8N8ABaBDfMHMzGxrUO6ckEdkZG14LdM7aix-1o pragma: - no-cache request-id: - - d29e64aa-cc48-4706-8856-341e18e5153e + - 5368d4bd-4cff-44de-bb21-1da3be07ff16 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:44 GMT + - Tue, 14 Jan 2020 01:21:58 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:16 GMT + - Tue, 14 Jan 2020 01:22:30 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:19 GMT + - Tue, 14 Jan 2020 01:22:32 GMT expires: - '-1' pragma: @@ -265,9 +265,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCoi2dW9p8yB+fadaBKn6YBueU9bEJXke7Vsz+0wVfsqWSA2CVpBZTcWr7DW5OAaXBXTSqqzKUDOESP8Wjt4IvtPCxhiuS96f2HnJpmV0NPSK/9vefv5JKJ3n77/5mnak0u0QxdOxqlbpgAlPWvi2h8Iokz7JNXvaIeWVHGOw/ZVq9AfQgTga+fu+22xq3Rk1HNECISSkRqAUYXwl6OlL8xuicoWN/WMdZQBj9dymcT84xDqensh6JAHqkUqNrCUI54HA3jK/uSsBMvLsuAUOrwKndI3yh981NwBfiWQ1WRWPf3JjY/lJOv7V3Hb+4QBRm8C0/CxKkRHSjbVQLYq5AX","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' + time based on the issuer provider. Please check again later.","request_id":"4d9e2fffba0b497cb07276601de9e68c"}' headers: cache-control: - no-cache @@ -276,11 +276,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:22 GMT + - Tue, 14 Jan 2020 01:22:35 GMT expires: - '-1' location: - - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=3efe7fb954c846b8abcc7b38cc2df747 + - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=4d9e2fffba0b497cb07276601de9e68c pragma: - no-cache server: @@ -322,9 +322,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCoi2dW9p8yB+fadaBKn6YBueU9bEJXke7Vsz+0wVfsqWSA2CVpBZTcWr7DW5OAaXBXTSqqzKUDOESP8Wjt4IvtPCxhiuS96f2HnJpmV0NPSK/9vefv5JKJ3n77/5mnak0u0QxdOxqlbpgAlPWvi2h8Iokz7JNXvaIeWVHGOw/ZVq9AfQgTga+fu+22xq3Rk1HNECISSkRqAUYXwl6OlL8xuicoWN/WMdZQBj9dymcT84xDqensh6JAHqkUqNrCUI54HA3jK/uSsBMvLsuAUOrwKndI3yh981NwBfiWQ1WRWPf3JjY/lJOv7V3Hb+4QBRm8C0/CxKkRHSjbVQLYq5AX","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' + time based on the issuer provider. Please check again later.","request_id":"4d9e2fffba0b497cb07276601de9e68c"}' headers: cache-control: - no-cache @@ -333,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:24 GMT + - Tue, 14 Jan 2020 01:22:37 GMT expires: - '-1' pragma: @@ -377,9 +377,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCoi2dW9p8yB+fadaBKn6YBueU9bEJXke7Vsz+0wVfsqWSA2CVpBZTcWr7DW5OAaXBXTSqqzKUDOESP8Wjt4IvtPCxhiuS96f2HnJpmV0NPSK/9vefv5JKJ3n77/5mnak0u0QxdOxqlbpgAlPWvi2h8Iokz7JNXvaIeWVHGOw/ZVq9AfQgTga+fu+22xq3Rk1HNECISSkRqAUYXwl6OlL8xuicoWN/WMdZQBj9dymcT84xDqensh6JAHqkUqNrCUI54HA3jK/uSsBMvLsuAUOrwKndI3yh981NwBfiWQ1WRWPf3JjY/lJOv7V3Hb+4QBRm8C0/CxKkRHSjbVQLYq5AX","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' + time based on the issuer provider. Please check again later.","request_id":"4d9e2fffba0b497cb07276601de9e68c"}' headers: cache-control: - no-cache @@ -388,7 +388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:35 GMT + - Tue, 14 Jan 2020 01:22:48 GMT expires: - '-1' pragma: @@ -432,7 +432,172 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7MSBplWj3+2XLyXcWcV43PV9sW1VvmTJLlVFWFG/2yoWo+VVmPEi8/bKPHC+AsYeFqV/1XTwRVPEY1jsADTmi/m7IQU0VP1BWKybA0JHeR8LySmWhK07JtqO1redIGqAqiza107NYsGXEsW/SmolLVikw9ug9+z4d7zjs4SdHEbPn+J8KchBYXYEpv/MpkY8AXC4/uHombxkNK7Q6gDETLZJeE883uaUcpU/x6GhojT3EvOmSJAqNhyhlwSJGCoRx6JKyGryQ1ZLRd7g5/7FqVIiERzkhMtVfgC/fTf0k2WNbVzIrtUyWoj6zCOzfAWp4SPfMSaTha4KJZppUMNS3","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"3efe7fb954c846b8abcc7b38cc2df747"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCoi2dW9p8yB+fadaBKn6YBueU9bEJXke7Vsz+0wVfsqWSA2CVpBZTcWr7DW5OAaXBXTSqqzKUDOESP8Wjt4IvtPCxhiuS96f2HnJpmV0NPSK/9vefv5JKJ3n77/5mnak0u0QxdOxqlbpgAlPWvi2h8Iokz7JNXvaIeWVHGOw/ZVq9AfQgTga+fu+22xq3Rk1HNECISSkRqAUYXwl6OlL8xuicoWN/WMdZQBj9dymcT84xDqensh6JAHqkUqNrCUI54HA3jK/uSsBMvLsuAUOrwKndI3yh981NwBfiWQ1WRWPf3JjY/lJOv7V3Hb+4QBRm8C0/CxKkRHSjbVQLYq5AX","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"4d9e2fffba0b497cb07276601de9e68c"}' + headers: + cache-control: + - no-cache + content-length: + - '1419' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:22:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCoi2dW9p8yB+fadaBKn6YBueU9bEJXke7Vsz+0wVfsqWSA2CVpBZTcWr7DW5OAaXBXTSqqzKUDOESP8Wjt4IvtPCxhiuS96f2HnJpmV0NPSK/9vefv5JKJ3n77/5mnak0u0QxdOxqlbpgAlPWvi2h8Iokz7JNXvaIeWVHGOw/ZVq9AfQgTga+fu+22xq3Rk1HNECISSkRqAUYXwl6OlL8xuicoWN/WMdZQBj9dymcT84xDqensh6JAHqkUqNrCUI54HA3jK/uSsBMvLsuAUOrwKndI3yh981NwBfiWQ1WRWPf3JjY/lJOv7V3Hb+4QBRm8C0/CxKkRHSjbVQLYq5AX","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"4d9e2fffba0b497cb07276601de9e68c"}' + headers: + cache-control: + - no-cache + content-length: + - '1419' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:23:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCoi2dW9p8yB+fadaBKn6YBueU9bEJXke7Vsz+0wVfsqWSA2CVpBZTcWr7DW5OAaXBXTSqqzKUDOESP8Wjt4IvtPCxhiuS96f2HnJpmV0NPSK/9vefv5JKJ3n77/5mnak0u0QxdOxqlbpgAlPWvi2h8Iokz7JNXvaIeWVHGOw/ZVq9AfQgTga+fu+22xq3Rk1HNECISSkRqAUYXwl6OlL8xuicoWN/WMdZQBj9dymcT84xDqensh6JAHqkUqNrCUI54HA3jK/uSsBMvLsuAUOrwKndI3yh981NwBfiWQ1WRWPf3JjY/lJOv7V3Hb+4QBRm8C0/CxKkRHSjbVQLYq5AX","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"4d9e2fffba0b497cb07276601de9e68c"}' + headers: + cache-control: + - no-cache + content-length: + - '1419' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:23:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCoi2dW9p8yB+fadaBKn6YBueU9bEJXke7Vsz+0wVfsqWSA2CVpBZTcWr7DW5OAaXBXTSqqzKUDOESP8Wjt4IvtPCxhiuS96f2HnJpmV0NPSK/9vefv5JKJ3n77/5mnak0u0QxdOxqlbpgAlPWvi2h8Iokz7JNXvaIeWVHGOw/ZVq9AfQgTga+fu+22xq3Rk1HNECISSkRqAUYXwl6OlL8xuicoWN/WMdZQBj9dymcT84xDqensh6JAHqkUqNrCUI54HA3jK/uSsBMvLsuAUOrwKndI3yh981NwBfiWQ1WRWPf3JjY/lJOv7V3Hb+4QBRm8C0/CxKkRHSjbVQLYq5AX","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"4d9e2fffba0b497cb07276601de9e68c"}' headers: cache-control: - no-cache @@ -441,7 +606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:47 GMT + - Tue, 14 Jan 2020 01:23:33 GMT expires: - '-1' pragma: @@ -485,7 +650,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"CUQbk2aIeJAuUl4rGsSxmD99Kzs","attributes":{"enabled":true,"nbf":1578964406,"exp":1736817806,"created":1578965006,"updated":1578965006},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -494,7 +659,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:48 GMT + - Tue, 14 Jan 2020 01:23:35 GMT expires: - '-1' pragma: @@ -538,7 +703,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","x5t":"CUQbk2aIeJAuUl4rGsSxmD99Kzs","attributes":{"enabled":true,"nbf":1578964406,"exp":1736817806,"created":1578965006,"updated":1578965006},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -547,7 +712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:50 GMT + - Tue, 14 Jan 2020 01:23:36 GMT expires: - '-1' pragma: @@ -599,9 +764,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKP9nMVgtZOWo96yH8tMDlrDPMNG32lanQ9WoeZt3FQav7QqC51cFnxk3WhLXqn9GNoSgjNDPI94v4ktbXLz86nT/2x27ty/WEB5nUxzX4br1sHUQ9bm2CQT6X/CoKX+j9IkAEiJG/wRVmeaW70UQaIzhWv+Wri4+4UXOBzCTlhKYM2+QdZC8OGKkKIIDU64It24tgz8qSm8tD6mJnmelaPZ6Zan8qKRx9WuNWRuk6XwGOJcs53J1nI/lS/MLK+f8FJr7j8zbCJAjyomsh6kNbaa5Jd9UdK0YyjWgI4frEtTEbqdrshkSbJ2Sq7OWVE/gpgffh8ST16rzPJsfhn8snsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCGNQXG/MQ2cGUZqyvvpVMATShcqjBnecIxSxrVsB6+gZdztkxPqajjQSCf+wlRqjsYzcgEfj+0rorVfa/IIZzA2lzmWOvZ/bQr39ZnLDatbzGaNyFzzDYx37tuHP0WOGJpck9ZYHWLanRl7shUV56gtirAVj9YXMEy/cTnV/PE/GAPci8SntA9EAYM9xZwngs9gUP9gCP7Z4pn9SNoG/QlKweo32PkuEPOh1/wflJrcKwZTZN0c0X7K4iONCfa5fECzV4aICpYrUXZy5YNGb14hLNTLekrkQc70BX2rrxraAWaH+euoWuMR2x5L2LYtBJRs+qEHeh0kqr8QnwxgIP","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' + time based on the issuer provider. Please check again later.","request_id":"53e681b5b0354a22890a5751a95ecfc3"}' headers: cache-control: - no-cache @@ -610,11 +775,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:51 GMT + - Tue, 14 Jan 2020 01:23:38 GMT expires: - '-1' location: - - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=6c96a57ac50949eb8b1adb454a3c7cf7 + - https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=53e681b5b0354a22890a5751a95ecfc3 pragma: - no-cache server: @@ -656,9 +821,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKP9nMVgtZOWo96yH8tMDlrDPMNG32lanQ9WoeZt3FQav7QqC51cFnxk3WhLXqn9GNoSgjNDPI94v4ktbXLz86nT/2x27ty/WEB5nUxzX4br1sHUQ9bm2CQT6X/CoKX+j9IkAEiJG/wRVmeaW70UQaIzhWv+Wri4+4UXOBzCTlhKYM2+QdZC8OGKkKIIDU64It24tgz8qSm8tD6mJnmelaPZ6Zan8qKRx9WuNWRuk6XwGOJcs53J1nI/lS/MLK+f8FJr7j8zbCJAjyomsh6kNbaa5Jd9UdK0YyjWgI4frEtTEbqdrshkSbJ2Sq7OWVE/gpgffh8ST16rzPJsfhn8snsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCGNQXG/MQ2cGUZqyvvpVMATShcqjBnecIxSxrVsB6+gZdztkxPqajjQSCf+wlRqjsYzcgEfj+0rorVfa/IIZzA2lzmWOvZ/bQr39ZnLDatbzGaNyFzzDYx37tuHP0WOGJpck9ZYHWLanRl7shUV56gtirAVj9YXMEy/cTnV/PE/GAPci8SntA9EAYM9xZwngs9gUP9gCP7Z4pn9SNoG/QlKweo32PkuEPOh1/wflJrcKwZTZN0c0X7K4iONCfa5fECzV4aICpYrUXZy5YNGb14hLNTLekrkQc70BX2rrxraAWaH+euoWuMR2x5L2LYtBJRs+qEHeh0kqr8QnwxgIP","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' + time based on the issuer provider. Please check again later.","request_id":"53e681b5b0354a22890a5751a95ecfc3"}' headers: cache-control: - no-cache @@ -667,7 +832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:53 GMT + - Tue, 14 Jan 2020 01:23:39 GMT expires: - '-1' pragma: @@ -711,9 +876,9 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKP9nMVgtZOWo96yH8tMDlrDPMNG32lanQ9WoeZt3FQav7QqC51cFnxk3WhLXqn9GNoSgjNDPI94v4ktbXLz86nT/2x27ty/WEB5nUxzX4br1sHUQ9bm2CQT6X/CoKX+j9IkAEiJG/wRVmeaW70UQaIzhWv+Wri4+4UXOBzCTlhKYM2+QdZC8OGKkKIIDU64It24tgz8qSm8tD6mJnmelaPZ6Zan8qKRx9WuNWRuk6XwGOJcs53J1nI/lS/MLK+f8FJr7j8zbCJAjyomsh6kNbaa5Jd9UdK0YyjWgI4frEtTEbqdrshkSbJ2Sq7OWVE/gpgffh8ST16rzPJsfhn8snsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCGNQXG/MQ2cGUZqyvvpVMATShcqjBnecIxSxrVsB6+gZdztkxPqajjQSCf+wlRqjsYzcgEfj+0rorVfa/IIZzA2lzmWOvZ/bQr39ZnLDatbzGaNyFzzDYx37tuHP0WOGJpck9ZYHWLanRl7shUV56gtirAVj9YXMEy/cTnV/PE/GAPci8SntA9EAYM9xZwngs9gUP9gCP7Z4pn9SNoG/QlKweo32PkuEPOh1/wflJrcKwZTZN0c0X7K4iONCfa5fECzV4aICpYrUXZy5YNGb14hLNTLekrkQc70BX2rrxraAWaH+euoWuMR2x5L2LYtBJRs+qEHeh0kqr8QnwxgIP","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' + time based on the issuer provider. Please check again later.","request_id":"53e681b5b0354a22890a5751a95ecfc3"}' headers: cache-control: - no-cache @@ -722,7 +887,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:04 GMT + - Tue, 14 Jan 2020 01:23:51 GMT expires: - '-1' pragma: @@ -766,7 +931,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC3wLqqlbvkAUvgyxZVTwPawQKAwdtxJK/tohyfokm4DLF80xTHsbsrsXcgn8zBExSHtCai6FBiY5WiRGrN1cpAoNEItcqySjE/W7YRI5KPasf1PEwzJPGpsTcg+s68lGhrV4SyoiOvfjzluN9gwY6XjAUAkn1syhl/p2HvSmgrBVx4VHK4mUqPEVEWarJmmkLjszhDCHLzQevk8KVhuXNpTVxgi+ikhYqxAafytYvAH5qwZfRd2ZKqMqZnpvk/ZwZ19Lh/M3dK965AqPn5aQwwSXymESCY8mOGSe7Jd2poq94GqKQViG10nu/afbc5HDCx2DD0lqRjJtZx+v3Bn65f","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"6c96a57ac50949eb8b1adb454a3c7cf7"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKP9nMVgtZOWo96yH8tMDlrDPMNG32lanQ9WoeZt3FQav7QqC51cFnxk3WhLXqn9GNoSgjNDPI94v4ktbXLz86nT/2x27ty/WEB5nUxzX4br1sHUQ9bm2CQT6X/CoKX+j9IkAEiJG/wRVmeaW70UQaIzhWv+Wri4+4UXOBzCTlhKYM2+QdZC8OGKkKIIDU64It24tgz8qSm8tD6mJnmelaPZ6Zan8qKRx9WuNWRuk6XwGOJcs53J1nI/lS/MLK+f8FJr7j8zbCJAjyomsh6kNbaa5Jd9UdK0YyjWgI4frEtTEbqdrshkSbJ2Sq7OWVE/gpgffh8ST16rzPJsfhn8snsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCGNQXG/MQ2cGUZqyvvpVMATShcqjBnecIxSxrVsB6+gZdztkxPqajjQSCf+wlRqjsYzcgEfj+0rorVfa/IIZzA2lzmWOvZ/bQr39ZnLDatbzGaNyFzzDYx37tuHP0WOGJpck9ZYHWLanRl7shUV56gtirAVj9YXMEy/cTnV/PE/GAPci8SntA9EAYM9xZwngs9gUP9gCP7Z4pn9SNoG/QlKweo32PkuEPOh1/wflJrcKwZTZN0c0X7K4iONCfa5fECzV4aICpYrUXZy5YNGb14hLNTLekrkQc70BX2rrxraAWaH+euoWuMR2x5L2LYtBJRs+qEHeh0kqr8QnwxgIP","cancellation_requested":false,"status":"completed","target":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1","request_id":"53e681b5b0354a22890a5751a95ecfc3"}' headers: cache-control: - no-cache @@ -775,7 +940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:16 GMT + - Tue, 14 Jan 2020 01:24:01 GMT expires: - '-1' pragma: @@ -819,7 +984,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/versions?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","attributes":{"enabled":true,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320887},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","x5t":"CUQbk2aIeJAuUl4rGsSxmD99Kzs","attributes":{"enabled":true,"nbf":1578964406,"exp":1736817806,"created":1578965006,"updated":1578965006},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/d99b5d5d62f040878b1057a731668f59","x5t":"OO1iKpmPN6QQm6pPYj2WHzaK0k4","attributes":{"enabled":true,"nbf":1578964438,"exp":1710379438,"created":1578965038,"updated":1578965038},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -828,7 +993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:18 GMT + - Tue, 14 Jan 2020 01:24:03 GMT expires: - '-1' pragma: @@ -872,7 +1037,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/versions?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","attributes":{"enabled":true,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320887},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","x5t":"CUQbk2aIeJAuUl4rGsSxmD99Kzs","attributes":{"enabled":true,"nbf":1578964406,"exp":1736817806,"created":1578965006,"updated":1578965006},"subject":""},{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/d99b5d5d62f040878b1057a731668f59","x5t":"OO1iKpmPN6QQm6pPYj2WHzaK0k4","attributes":{"enabled":true,"nbf":1578964438,"exp":1710379438,"created":1578965038,"updated":1578965038},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -881,7 +1046,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:21 GMT + - Tue, 14 Jan 2020 01:24:05 GMT expires: - '-1' pragma: @@ -925,8 +1090,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c04af78de04d4f22aad37ff60048bb27","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","cer":"MIID3jCCAsagAwIBAgIQe/h2iFr/RKaJTWRM+gLuSjANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTgwN1oXDTI0MDMwNjE0MjgwN1owbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFHCdIRaoG0oWDMX56dlbsB+LPeybMB0GA1UdDgQWBBRwnSEWqBtKFgzF+enZW7Afiz3smzANBgkqhkiG9w0BAQsFAAOCAQEAPb48Il/phWJMQ7q9M1fwdpRXjw69BrT3/chg1eg1fM+EkH8C3ULG3YwJrq6GS5LSuwa2inNT6IEoxqSCcDoqNfIKtRpnyxmTvs8IFgytLsYWQSsk1t/QZonEm4GRZyRq/0vsNvCn79PK1QZcUS4/ZLPAo4L938q/NbS7ybt3CB+MNtKJ3be5qTi3GbvtTYGlXNJ1aER42l+DPaeOMo7ytbl/5PrUW5m0QWJ7tmd74nysmdY7p+WC2HAxjer5QBYup9iUCSXD7XQ5kyThv2MYOjqE2jdqZ1e/4PhQPMd60OfGFbhnnKB1Y78xsIcNxXNPqECq/47QfSs/wtgXpkcR7A==","attributes":{"enabled":true,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320887,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmond, O=TestO, OU=TestOU, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":50,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320842,"updated":1578320872}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/d99b5d5d62f040878b1057a731668f59","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/d99b5d5d62f040878b1057a731668f59","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/d99b5d5d62f040878b1057a731668f59","x5t":"OO1iKpmPN6QQm6pPYj2WHzaK0k4","cer":"MIID3jCCAsagAwIBAgIQHnSVg7EyQtyQgIoQX1pmtDANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDExNDAxMTM1OFoXDTI0MDMxNDAxMjM1OFowbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKP9nMVgtZOWo96yH8tMDlrDPMNG32lanQ9WoeZt3FQav7QqC51cFnxk3WhLXqn9GNoSgjNDPI94v4ktbXLz86nT/2x27ty/WEB5nUxzX4br1sHUQ9bm2CQT6X/CoKX+j9IkAEiJG/wRVmeaW70UQaIzhWv+Wri4+4UXOBzCTlhKYM2+QdZC8OGKkKIIDU64It24tgz8qSm8tD6mJnmelaPZ6Zan8qKRx9WuNWRuk6XwGOJcs53J1nI/lS/MLK+f8FJr7j8zbCJAjyomsh6kNbaa5Jd9UdK0YyjWgI4frEtTEbqdrshkSbJ2Sq7OWVE/gpgffh8ST16rzPJsfhn8snsCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFFJC63/+/TLCQDzGogtZtdYYDIDeMB0GA1UdDgQWBBRSQut//v0ywkA8xqILWbXWGAyA3jANBgkqhkiG9w0BAQsFAAOCAQEAWvF/CDfWsT/qpnA6y+VnQUfdwXHgZXNSvoKhEurD2bifjRzazvt9HaT792OLzSCO1IRwofVyPJ7OhAGCUSgdsHXRvqdPkUPotJhL1Lzid6yQmDI/34/puxs1LtGz0yzEWOhg3aP9jYfnzgVId15hVnB+DyIRQvpfT1tRWyTArmPqutuscNsGVqd5znwY/GK91k4weNftKM96lrwb8rG8tKoPtO04401k5u1P7LLM3P7A89NqbWcSwwUUV8TBJuZ3tv75URjmVIzf2gE+7zz+Ahq2u8KbEwTB/ztvd0tkc+QeX9h28J/itKgxhe3xDXB9xtICCW6oc5lB/ePcWtkACw==","attributes":{"enabled":true,"nbf":1578964438,"exp":1710379438,"created":1578965038,"updated":1578965038,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmond, O=TestO, OU=TestOU, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":50,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964955,"updated":1578965018}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -935,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:23 GMT + - Tue, 14 Jan 2020 01:24:06 GMT expires: - '-1' pragma: @@ -976,10 +1141,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c4ed4e99120441fc9d02b52e86526d87","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","cer":"MIID8DCCAtigAwIBAgIQePS07/xYSBu7ANRB9Lwo3TANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTc0MloXDTI1MDEwNjE0Mjc0MlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFGpKOxsupY+fBp8Xw0Ebe7SOtVO3MB0GA1UdDgQWBBRqSjsbLqWPnwafF8NBG3u0jrVTtzANBgkqhkiG9w0BAQsFAAOCAQEATeKO5+a6UhhTDkp44ecgQClgfUCmXsyse88kyZEYp6UwYZz29nfAe1b/5GN4IPGPbvUsG3bZ5Cljb0gyCuMLb6FT9/JKD7bUQ6JQneNfFVPXQTDAMHHWPw6JL1X7a2PrOUA/rChC5wWoar61gP9tT5fgtWsdigHeONSIqa4w5vAYKFfqJJSsKreeO7+gJfjyemaZB2+ib9g9pStoM0xEUnVkFr5EGfuzieDNgpNwSkGkbSs2EIgu8fepT+q89iGdhF55+28UQ4TKjQYLa/YIYffxqvcuuyUyoinQZAbcSTQOpZq8Efo0pKOnKCSibLQKZN+n5l3V/kHIlrHq4932sQ==","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","x5t":"CUQbk2aIeJAuUl4rGsSxmD99Kzs","cer":"MIID8DCCAtigAwIBAgIQBmf+STI5T4ysH++do2n7XTANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDExNDAxMTMyNloXDTI1MDExNDAxMjMyNlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPM6yHCfG47OAa02yTaPgZdji5DbMB0GA1UdDgQWBBTzOshwnxuOzgGtNsk2j4GXY4uQ2zANBgkqhkiG9w0BAQsFAAOCAQEAdljayUGcVMAgDMCJQ95tqZQA3iCBUdv00lauXwa+MwXu3VA+omamCM1vGIl59XG6e728k/As37D21R+fnBZQNOaaUcKgPwO297amxSDa50/VBEDTUpFbbLLqd63Wpe6RUE7jXG5YTta2b/yWRG2rX7iLpfzGvf5sLlqXZtCP94+vDaG9W74Ok52NnMuDtOQd4Df9f/ZQ6zaK9rImUdwJ94C1ZVfMp9PtskyASrG0NZxhEFx9wCz68pfjJjkaVhlJXk/Er2ObG4onhowCJoxRYOOxjFh7k5uPcgcumHFLDGlkrDJ1BvFPFiHrAc7PDbGDYWAzw98xxxeqBGjhOiMVrQ==","attributes":{"enabled":true,"nbf":1578964406,"exp":1736817806,"created":1578965006,"updated":1578965006,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -988,7 +1153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:24 GMT + - Tue, 14 Jan 2020 01:24:08 GMT expires: - '-1' pragma: @@ -1029,10 +1194,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c4ed4e99120441fc9d02b52e86526d87","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c4ed4e99120441fc9d02b52e86526d87","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c4ed4e99120441fc9d02b52e86526d87","x5t":"Btl29Y646Q9JJOKyau5YznkU9sk","cer":"MIID8DCCAtigAwIBAgIQePS07/xYSBu7ANRB9Lwo3TANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTc0MloXDTI1MDEwNjE0Mjc0MlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKehUdV+sXYOthSh8ycNHrVCXO3fouXt/036xy10ChCjbKA5Wj2epGGzB8NE91UrY/Pw2CK8eXxYYFRFn/v7D8zFsnMDj2KA3DfyrN/XNYCpbkL4Elolni1Xfe5o78ha4u8Aiz1x498tGdfsnapWcEKmvoxan/tG8Vj4AsgIjd0iUUr8QoQuSjPYr8aUK1arUX2dcEFzStZTwJpModuHhXh803VQFj6UH95C6W7AC09hhmZ4oLbi9mHyIlGGjhoTL++CrcOCv2serm1Q0Anvh3jwSnrISvZ85/yCdbGX+IuW3NDRmkMXGusRMUMjUsSxPxuo2Jz/ZyDCyTGos9rIGtMCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFGpKOxsupY+fBp8Xw0Ebe7SOtVO3MB0GA1UdDgQWBBRqSjsbLqWPnwafF8NBG3u0jrVTtzANBgkqhkiG9w0BAQsFAAOCAQEATeKO5+a6UhhTDkp44ecgQClgfUCmXsyse88kyZEYp6UwYZz29nfAe1b/5GN4IPGPbvUsG3bZ5Cljb0gyCuMLb6FT9/JKD7bUQ6JQneNfFVPXQTDAMHHWPw6JL1X7a2PrOUA/rChC5wWoar61gP9tT5fgtWsdigHeONSIqa4w5vAYKFfqJJSsKreeO7+gJfjyemaZB2+ib9g9pStoM0xEUnVkFr5EGfuzieDNgpNwSkGkbSs2EIgu8fepT+q89iGdhF55+28UQ4TKjQYLa/YIYffxqvcuuyUyoinQZAbcSTQOpZq8Efo0pKOnKCSibLQKZN+n5l3V/kHIlrHq4932sQ==","attributes":{"enabled":true,"nbf":1578320262,"exp":1736173662,"created":1578320862,"updated":1578320862,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/ab48ea8fdd524a30a4d9ae8ab141fb79","x5t":"CUQbk2aIeJAuUl4rGsSxmD99Kzs","cer":"MIID8DCCAtigAwIBAgIQBmf+STI5T4ysH++do2n7XTANBgkqhkiG9w0BAQsFADB1MR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTETMBEGA1UECxMKVGVzdE51Z2dldDEUMBIGA1UEChMLVGVzdCBOb29kbGUxDzANBgNVBAcTBlJlZG1vbjELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDExNDAxMTMyNloXDTI1MDExNDAxMjMyNlowdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMMD64rjxhvrHxMlSsY0amiXb+yvJ2mCWoaAEFXc0ekXw/YQAPC4EkMgpcxh4oqlYpm3Ctc5weEtyD+/qqjIHxPZu7bolfyl3Ek/ddqR3l7czTQBjOMjoIgHTcZ/ssRAwjd0Wl8q+zZmj+fA/1CuoKyZezRfhFzGGB2qUuCLt01cEuB8txkf5TmtdqxFgpStZfKCfw1QJhbAZXSTyCh7cU9tm9HruZwj6/OXBv8QRZBLVxsG+3h5Qf6p4rfkb8lUOc0u6uSbBJhMzrdbHybVfWy0kbnEH6BOH1K9Ve/pC9eFnWl8hOYfGy7y46i6PZZ++C5JX/oPkIbFuP0ZAufP0IUCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPM6yHCfG47OAa02yTaPgZdji5DbMB0GA1UdDgQWBBTzOshwnxuOzgGtNsk2j4GXY4uQ2zANBgkqhkiG9w0BAQsFAAOCAQEAdljayUGcVMAgDMCJQ95tqZQA3iCBUdv00lauXwa+MwXu3VA+omamCM1vGIl59XG6e728k/As37D21R+fnBZQNOaaUcKgPwO297amxSDa50/VBEDTUpFbbLLqd63Wpe6RUE7jXG5YTta2b/yWRG2rX7iLpfzGvf5sLlqXZtCP94+vDaG9W74Ok52NnMuDtOQd4Df9f/ZQ6zaK9rImUdwJ94C1ZVfMp9PtskyASrG0NZxhEFx9wCz68pfjJjkaVhlJXk/Er2ObG4onhowCJoxRYOOxjFh7k5uPcgcumHFLDGlkrDJ1BvFPFiHrAc7PDbGDYWAzw98xxxeqBGjhOiMVrQ==","attributes":{"enabled":true,"nbf":1578964406,"exp":1736817806,"created":1578965006,"updated":1578965006,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -1041,7 +1206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:26 GMT + - Tue, 14 Jan 2020 01:24:09 GMT expires: - '-1' pragma: @@ -1094,8 +1259,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c04af78de04d4f22aad37ff60048bb27","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","cer":"MIID3jCCAsagAwIBAgIQe/h2iFr/RKaJTWRM+gLuSjANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTgwN1oXDTI0MDMwNjE0MjgwN1owbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFHCdIRaoG0oWDMX56dlbsB+LPeybMB0GA1UdDgQWBBRwnSEWqBtKFgzF+enZW7Afiz3smzANBgkqhkiG9w0BAQsFAAOCAQEAPb48Il/phWJMQ7q9M1fwdpRXjw69BrT3/chg1eg1fM+EkH8C3ULG3YwJrq6GS5LSuwa2inNT6IEoxqSCcDoqNfIKtRpnyxmTvs8IFgytLsYWQSsk1t/QZonEm4GRZyRq/0vsNvCn79PK1QZcUS4/ZLPAo4L938q/NbS7ybt3CB+MNtKJ3be5qTi3GbvtTYGlXNJ1aER42l+DPaeOMo7ytbl/5PrUW5m0QWJ7tmd74nysmdY7p+WC2HAxjer5QBYup9iUCSXD7XQ5kyThv2MYOjqE2jdqZ1e/4PhQPMd60OfGFbhnnKB1Y78xsIcNxXNPqECq/47QfSs/wtgXpkcR7A==","attributes":{"enabled":false,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320908,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320842,"updated":1578320908}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/d99b5d5d62f040878b1057a731668f59","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/d99b5d5d62f040878b1057a731668f59","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/d99b5d5d62f040878b1057a731668f59","x5t":"OO1iKpmPN6QQm6pPYj2WHzaK0k4","cer":"MIID3jCCAsagAwIBAgIQHnSVg7EyQtyQgIoQX1pmtDANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDExNDAxMTM1OFoXDTI0MDMxNDAxMjM1OFowbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKP9nMVgtZOWo96yH8tMDlrDPMNG32lanQ9WoeZt3FQav7QqC51cFnxk3WhLXqn9GNoSgjNDPI94v4ktbXLz86nT/2x27ty/WEB5nUxzX4br1sHUQ9bm2CQT6X/CoKX+j9IkAEiJG/wRVmeaW70UQaIzhWv+Wri4+4UXOBzCTlhKYM2+QdZC8OGKkKIIDU64It24tgz8qSm8tD6mJnmelaPZ6Zan8qKRx9WuNWRuk6XwGOJcs53J1nI/lS/MLK+f8FJr7j8zbCJAjyomsh6kNbaa5Jd9UdK0YyjWgI4frEtTEbqdrshkSbJ2Sq7OWVE/gpgffh8ST16rzPJsfhn8snsCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFFJC63/+/TLCQDzGogtZtdYYDIDeMB0GA1UdDgQWBBRSQut//v0ywkA8xqILWbXWGAyA3jANBgkqhkiG9w0BAQsFAAOCAQEAWvF/CDfWsT/qpnA6y+VnQUfdwXHgZXNSvoKhEurD2bifjRzazvt9HaT792OLzSCO1IRwofVyPJ7OhAGCUSgdsHXRvqdPkUPotJhL1Lzid6yQmDI/34/puxs1LtGz0yzEWOhg3aP9jYfnzgVId15hVnB+DyIRQvpfT1tRWyTArmPqutuscNsGVqd5znwY/GK91k4weNftKM96lrwb8rG8tKoPtO04401k5u1P7LLM3P7A89NqbWcSwwUUV8TBJuZ3tv75URjmVIzf2gE+7zz+Ahq2u8KbEwTB/ztvd0tkc+QeX9h28J/itKgxhe3xDXB9xtICCW6oc5lB/ePcWtkACw==","attributes":{"enabled":false,"nbf":1578964438,"exp":1710379438,"created":1578965038,"updated":1578965051,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964955,"updated":1578965051}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -1104,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:28 GMT + - Tue, 14 Jan 2020 01:24:12 GMT expires: - '-1' pragma: @@ -1150,8 +1315,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/c04af78de04d4f22aad37ff60048bb27","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/c04af78de04d4f22aad37ff60048bb27","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/c04af78de04d4f22aad37ff60048bb27","x5t":"DhVYNsNvJJmawICrKhUei0GkwW8","cer":"MIID3jCCAsagAwIBAgIQe/h2iFr/RKaJTWRM+gLuSjANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDEwNjE0MTgwN1oXDTI0MDMwNjE0MjgwN1owbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMRfM/UwmZVhbE2dZyQWMmxsfNsLmRzviy8Ki8GC5MOrGGQPkeLdN8i4etocmwbC4oOHNmtonYmyLbUzqarXlVaLTD2y20+PBJCDsVh+ZbSuYNccIKZNV6g1jLm+H54hm9kynomz4crPbJ/ODv88qk6z4dkDnRvKJlPms3QY5vFGGazcaHmhwRKvCoszdTvr6a31bQkUTSwD4dW+84nAKbu/kJ6ExOSFnzrFEEBnsk+yUiVC60XouodSxDaQhioUq7SeX1eHp7I/9D2FqehD1mOuKFJhGPdK422BpdtsJWq9B0KwofkNQExEzMnePvEodMcabSyE8DLHC9RgArqu0FkCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFHCdIRaoG0oWDMX56dlbsB+LPeybMB0GA1UdDgQWBBRwnSEWqBtKFgzF+enZW7Afiz3smzANBgkqhkiG9w0BAQsFAAOCAQEAPb48Il/phWJMQ7q9M1fwdpRXjw69BrT3/chg1eg1fM+EkH8C3ULG3YwJrq6GS5LSuwa2inNT6IEoxqSCcDoqNfIKtRpnyxmTvs8IFgytLsYWQSsk1t/QZonEm4GRZyRq/0vsNvCn79PK1QZcUS4/ZLPAo4L938q/NbS7ybt3CB+MNtKJ3be5qTi3GbvtTYGlXNJ1aER42l+DPaeOMo7ytbl/5PrUW5m0QWJ7tmd74nysmdY7p+WC2HAxjer5QBYup9iUCSXD7XQ5kyThv2MYOjqE2jdqZ1e/4PhQPMd60OfGFbhnnKB1Y78xsIcNxXNPqECq/47QfSs/wtgXpkcR7A==","attributes":{"enabled":false,"nbf":1578320287,"exp":1709735287,"created":1578320887,"updated":1578320908,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, - ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320842,"updated":1578320908}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/d99b5d5d62f040878b1057a731668f59","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/d99b5d5d62f040878b1057a731668f59","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/d99b5d5d62f040878b1057a731668f59","x5t":"OO1iKpmPN6QQm6pPYj2WHzaK0k4","cer":"MIID3jCCAsagAwIBAgIQHnSVg7EyQtyQgIoQX1pmtDANBgkqhkiG9w0BAQsFADBsMR0wGwYDVQQDExR3d3cubXl0ZXN0ZG9tYWluLmNvbTEPMA0GA1UECxMGVGVzdE9VMQ4wDAYDVQQKEwVUZXN0TzEQMA4GA1UEBxMHUmVkbW9uZDELMAkGA1UECBMCV0ExCzAJBgNVBAYTAlVTMB4XDTIwMDExNDAxMTM1OFoXDTI0MDMxNDAxMjM1OFowbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKP9nMVgtZOWo96yH8tMDlrDPMNG32lanQ9WoeZt3FQav7QqC51cFnxk3WhLXqn9GNoSgjNDPI94v4ktbXLz86nT/2x27ty/WEB5nUxzX4br1sHUQ9bm2CQT6X/CoKX+j9IkAEiJG/wRVmeaW70UQaIzhWv+Wri4+4UXOBzCTlhKYM2+QdZC8OGKkKIIDU64It24tgz8qSm8tD6mJnmelaPZ6Zan8qKRx9WuNWRuk6XwGOJcs53J1nI/lS/MLK+f8FJr7j8zbCJAjyomsh6kNbaa5Jd9UdK0YyjWgI4frEtTEbqdrshkSbJ2Sq7OWVE/gpgffh8ST16rzPJsfhn8snsCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgLsMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFFJC63/+/TLCQDzGogtZtdYYDIDeMB0GA1UdDgQWBBRSQut//v0ywkA8xqILWbXWGAyA3jANBgkqhkiG9w0BAQsFAAOCAQEAWvF/CDfWsT/qpnA6y+VnQUfdwXHgZXNSvoKhEurD2bifjRzazvt9HaT792OLzSCO1IRwofVyPJ7OhAGCUSgdsHXRvqdPkUPotJhL1Lzid6yQmDI/34/puxs1LtGz0yzEWOhg3aP9jYfnzgVId15hVnB+DyIRQvpfT1tRWyTArmPqutuscNsGVqd5znwY/GK91k4weNftKM96lrwb8rG8tKoPtO04401k5u1P7LLM3P7A89NqbWcSwwUUV8TBJuZ3tv75URjmVIzf2gE+7zz+Ahq2u8KbEwTB/ztvd0tkc+QeX9h28J/itKgxhe3xDXB9xtICCW6oc5lB/ePcWtkACw==","attributes":{"enabled":false,"nbf":1578964438,"exp":1710379438,"created":1578965038,"updated":1578965051,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"C=US, + ST=WA, L=Redmon, O=Test Noodle, OU=TestNugget, CN=www.mytestdomain.com","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["digitalSignature","keyAgreement","keyCertSign","keyEncipherment","nonRepudiation"],"validity_months":60,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"lifetime_percentage":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964955,"updated":1578965051}},"pending":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -1160,7 +1325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:30 GMT + - Tue, 14 Jan 2020 01:24:13 GMT expires: - '-1' pragma: @@ -1213,7 +1378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:32 GMT + - Tue, 14 Jan 2020 01:24:15 GMT expires: - '-1' pragma: @@ -1266,7 +1431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:34 GMT + - Tue, 14 Jan 2020 01:24:16 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml index d145d252df5..f87fd643950 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_download.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:31:10 GMT + - Tue, 14 Jan 2020 01:21:51 GMT duration: - - '2443525' + - '2532041' expires: - '-1' ocp-aad-diagnostics-server-name: - - 5aglZegLKIoSH8+p/BYGbK1SiTprU5InRiYqvkDNAcE= + - CB6SIW0UFZAjiWXJN39BLCKPIxfd8cS9A1TPlCaqMlk= ocp-aad-session-key: - - CmxYpvgJHKXc7p7MPo46ksu_sXR2S3X1QtIjzI8eWECDS1_F_4JV85kpnefIOwPq1sQocxwkVtMwFn5FJLdCiY6loXxu_e7Yi54JSS9z-sxByNn5nQoVW0JXFHGf9AukreorjfM1kx6-8KmqAJOlmvlK6oCBCrnJEstTNTUJX6k.tIYLHSx4dicwoAcJKuDb1EqVGHNztDtWS6ICnbuMNkc + - FTksvj2OeeSbxa34CeAQOR8O7ieEx6nQAT_ypuD8WuQG3JDyuAVdtGFxtkar6smi4FyhiT3lfjclsLlnbdVtzfg4iHDM-KXVrBU_5AV23NPp411EXRm7QtC6LbqyNx7B.KzxULPgTB9L2sCmH_TJ0E63LoIzrgIid9r1IuHZdzC8 pragma: - no-cache request-id: - - 848b9a9a-0466-46ea-a862-d9935a61d677 + - 7a86e5b0-cc68-48f2-bdff-88c7db39d5f5 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:17 GMT + - Tue, 14 Jan 2020 01:22:00 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' x-powered-by: - ASP.NET status: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:50 GMT + - Tue, 14 Jan 2020 01:22:31 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:52 GMT + - Tue, 14 Jan 2020 01:22:33 GMT expires: - '-1' pragma: @@ -263,8 +263,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578964955,"updated":1578964955,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964955,"updated":1578964955}}}' headers: cache-control: - no-cache @@ -273,7 +273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:55 GMT + - Tue, 14 Jan 2020 01:22:35 GMT expires: - '-1' pragma: @@ -317,8 +317,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578964955,"updated":1578964955,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964955,"updated":1578964955}}}' headers: cache-control: - no-cache @@ -327,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:57 GMT + - Tue, 14 Jan 2020 01:22:37 GMT expires: - '-1' pragma: @@ -371,8 +371,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578964955,"updated":1578964955,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964955,"updated":1578964955}}}' headers: cache-control: - no-cache @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:59 GMT + - Tue, 14 Jan 2020 01:22:38 GMT expires: - '-1' pragma: @@ -427,8 +427,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/c716908af831457a8405b8fc5787ad4d","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/c716908af831457a8405b8fc5787ad4d","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/c716908af831457a8405b8fc5787ad4d","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578321115,"updated":1578321115,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321115,"updated":1578321115}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/8d1ac2b4c6114ffabf177aab730302f1","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578964955,"updated":1578964955,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964955,"updated":1578964955}}}' headers: cache-control: - no-cache @@ -437,7 +437,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:32:01 GMT + - Tue, 14 Jan 2020 01:22:40 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml index 0571dc1f854..03660d69cec 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_import.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:27:37 GMT + - Tue, 14 Jan 2020 01:21:50 GMT duration: - - '2498392' + - '2770757' expires: - '-1' ocp-aad-diagnostics-server-name: - - 9ZHp9DWrFOJDdtIudkw3WViQ6HjfSWNkT6r5darksVU= + - 0+nBYYNlPnl3/H/fUvx6oeuxW6RMny3hEOAJ2BrjYsU= ocp-aad-session-key: - - ai0tbqBxsB1zBCW9bh09kvf2tz6d_CajPo-omosiTb3ynbgVBHKoKBgZHu__HGuO_N9bx5tvmnP8lnK0b3ex2G6ZCqd584-c5OHq17KL3Qsmh6GbKH7RNPmd089mibYjjcF7pD6M1AR24Gh6DK9eIJVEpbMTEt1zdZZojpUCzY0.xvPuSrpGnUgp1c0MFSHbKB9EiNL09QALhvR4NWRYwLo + - U3Il-A02wMYEk9OH7qFcArzlsonSFnlRIumS2rh-0JmTGJiifv_NTV2Nzpoxz5QxuAmBLKVJ7MJXj0Sj5x9KVWupFIXrJB63v3f-Lv1a7OBwTsgmymhMx-ltRbL-Ro-G.E3EHq_qaVWc6Ou3KN5JjOPbJv7VGEnPdBejUCe-bu7A pragma: - no-cache request-id: - - 0823b129-e71a-4b40-bdde-43d24fa5c58c + - 63a911ed-c9b3-41f9-9096-6fd0c0272cdf strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:45 GMT + - Tue, 14 Jan 2020 01:21:57 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:17 GMT + - Tue, 14 Jan 2020 01:22:29 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:18 GMT + - Tue, 14 Jan 2020 01:22:32 GMT expires: - '-1' pragma: @@ -263,8 +263,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/6b5e88caf15b4dbab8568ea0560bae29","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/6b5e88caf15b4dbab8568ea0560bae29","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/6b5e88caf15b4dbab8568ea0560bae29","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320900,"updated":1578320900,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320900,"updated":1578320900}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/10f6cda86c284d168005b2fc69cafb56","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert1/10f6cda86c284d168005b2fc69cafb56","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert1/10f6cda86c284d168005b2fc69cafb56","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578964954,"updated":1578964954,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964954,"updated":1578964954}}}' headers: cache-control: - no-cache @@ -273,7 +273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:19 GMT + - Tue, 14 Jan 2020 01:22:35 GMT expires: - '-1' pragma: @@ -324,8 +324,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/aeaf919f6037400b9c160c0cc33744c4","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert2/aeaf919f6037400b9c160c0cc33744c4","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert2/aeaf919f6037400b9c160c0cc33744c4","x5t":"YeWRfBMXCT-AJpLKZ_3xxU9_m9k","cer":"MIIDazCCAlOgAwIBAgIULVGF7UpaVphGSUG4mf4DLywqU18wDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNTU5MzVaFw0yOTEwMTIwNTU5MzVaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtZiVGHgw3hqXrXh8/96aYl7OgyfAu9yrbnjwIydiZjVjQ6wAjfLxoaudgieSAaADKfnyHb59s+cxZ7MxJEEv5Cxt+dSoGuQx6kagttpm9EXOVe2EW6xKUGSTpV1+pd9ywN6SHT0VSUJj1mvlDPFFZiERrJpn4WE/QFHfF8Zo/hOXkWYnCCnK3JrUh9M9VsDZ7BiP83RywPH5CMEIdfQb1XcYj4myRXTO1rN1PFy25jPV5pEFx48u3RjEsLQ/G317YXl+NScSYpF4nvPIWK/95QvO5UdaefNnkSkzLuHdgOF3qLn3Q6CHYjetZ8gbjxaKKb68OND82wNNU864UtnRzAgMBAAGjUzBRMB0GA1UdDgQWBBSYzAx6+3QOcje8w3moJ75Lea+17zAfBgNVHSMEGDAWgBSYzAx6+3QOcje8w3moJ75Lea+17zAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQA34S+HbJ6B10YCGi/A85O9x7GDOl40T4b0JN+4U6sSSYe/k6g44MemHP6QdNsKQD10ll9ZjBGHX+CVy8z5Fckxt4LtfKZ+g49XOS8Rr2qu1Ganr5tIhAE0irAA3C754R9l0UDuRLyboeGVcNfiTJCWvvEw2ezbAi+F3vJVU3qGtHmQv3FBHMUlJN893Yj7dW8xxAYrf+YYlxKKbEbCFk8sB1cNlOSK35J4MHJE/1Rv9oxaL0xlSh4J1lGHPMr93hJjsJRCywGqCe4u4qcNgiOHyI1Kv3CA/ZcwKsA0gHwDd3ySHYH6GoXt+XbpH0RZtQkL8JJQIVgZcAoDUvkN1DQ9","attributes":{"enabled":true,"nbf":1571119175,"exp":1886479175,"created":1578320902,"updated":1578320902,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320902,"updated":1578320902}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/551bdaf0de64476ba6ff158e4b29bc39","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/pem-cert2/551bdaf0de64476ba6ff158e4b29bc39","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/pem-cert2/551bdaf0de64476ba6ff158e4b29bc39","x5t":"YeWRfBMXCT-AJpLKZ_3xxU9_m9k","cer":"MIIDazCCAlOgAwIBAgIULVGF7UpaVphGSUG4mf4DLywqU18wDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNTU5MzVaFw0yOTEwMTIwNTU5MzVaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtZiVGHgw3hqXrXh8/96aYl7OgyfAu9yrbnjwIydiZjVjQ6wAjfLxoaudgieSAaADKfnyHb59s+cxZ7MxJEEv5Cxt+dSoGuQx6kagttpm9EXOVe2EW6xKUGSTpV1+pd9ywN6SHT0VSUJj1mvlDPFFZiERrJpn4WE/QFHfF8Zo/hOXkWYnCCnK3JrUh9M9VsDZ7BiP83RywPH5CMEIdfQb1XcYj4myRXTO1rN1PFy25jPV5pEFx48u3RjEsLQ/G317YXl+NScSYpF4nvPIWK/95QvO5UdaefNnkSkzLuHdgOF3qLn3Q6CHYjetZ8gbjxaKKb68OND82wNNU864UtnRzAgMBAAGjUzBRMB0GA1UdDgQWBBSYzAx6+3QOcje8w3moJ75Lea+17zAfBgNVHSMEGDAWgBSYzAx6+3QOcje8w3moJ75Lea+17zAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQA34S+HbJ6B10YCGi/A85O9x7GDOl40T4b0JN+4U6sSSYe/k6g44MemHP6QdNsKQD10ll9ZjBGHX+CVy8z5Fckxt4LtfKZ+g49XOS8Rr2qu1Ganr5tIhAE0irAA3C754R9l0UDuRLyboeGVcNfiTJCWvvEw2ezbAi+F3vJVU3qGtHmQv3FBHMUlJN893Yj7dW8xxAYrf+YYlxKKbEbCFk8sB1cNlOSK35J4MHJE/1Rv9oxaL0xlSh4J1lGHPMr93hJjsJRCywGqCe4u4qcNgiOHyI1Kv3CA/ZcwKsA0gHwDd3ySHYH6GoXt+XbpH0RZtQkL8JJQIVgZcAoDUvkN1DQ9","attributes":{"enabled":true,"nbf":1571119175,"exp":1886479175,"created":1578964957,"updated":1578964957,"recoveryLevel":"Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pem-cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578964957,"updated":1578964957}}}' headers: cache-control: - no-cache @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:22 GMT + - Tue, 14 Jan 2020 01:22:37 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml index c478362a9f9..f0eeb64980d 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_certificate_issuers.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:29:31 GMT + - Tue, 14 Jan 2020 01:24:28 GMT duration: - - '3373876' + - '2655125' expires: - '-1' ocp-aad-diagnostics-server-name: - - 8lVrSY0cb3yYmzhL1jb6bG/9VqDeaSkgeMUNwJzqewM= + - 111y7HzMkoF7ETvCpr8Oy05nl+w+YtkaVR6AK6LH4Ao= ocp-aad-session-key: - - R0OZom8d3lygP-NdtwyGVzdcInrCGXpf6pj3KYUSazFICozv-eBiH82iX_mIcU9QhC5AaGiIFDS91jkG118OE-L4sXBRsG2WO9tPRWfs3S-iN4eSxQBlT77g4PwHKa_gDP0no0L3q2z_y-hFFBjNtT2Jkwv4Ock6_z_SL8LqIkU.crTjBA9qy5vSafLzUqGSMWJPxdUBmh3sEz-DUThrC5A + - qmSd2DvK5xbvOcOAQJFW6CYoujgyO2XH0ZvAXVKqzsFeGIA1CTb_Mr7LNsGx4W7Da9YGMiR_777ch58FHQFJw2IVeHPrOvwKRqgB-Cf9diirhZhKmsZl9_-Z52JiIYnulhSSImcscj_X7iteTklx5rfLm3p1tmkIZOd7AEaFilE.NEgx6ajBG2mp7zca6W9yaB5NV1d4TeV7tUIYeRQXtxs pragma: - no-cache request-id: - - 42cba3e7-e7d1-4308-8ade-7abfe1289126 + - 12d1d947-8bff-4a19-9e3e-39ce150518b5 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:39 GMT + - Tue, 14 Jan 2020 01:24:37 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:11 GMT + - Tue, 14 Jan 2020 01:25:08 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:13 GMT + - Tue, 14 Jan 2020 01:25:10 GMT expires: - '-1' pragma: @@ -259,7 +259,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321016}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965113}}' headers: cache-control: - no-cache @@ -268,7 +268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:16 GMT + - Tue, 14 Jan 2020 01:25:13 GMT expires: - '-1' pragma: @@ -312,7 +312,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321016}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965113}}' headers: cache-control: - no-cache @@ -321,7 +321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:17 GMT + - Tue, 14 Jan 2020 01:25:14 GMT expires: - '-1' pragma: @@ -365,7 +365,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321016}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965113}}' headers: cache-control: - no-cache @@ -374,7 +374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:18 GMT + - Tue, 14 Jan 2020 01:25:16 GMT expires: - '-1' pragma: @@ -421,7 +421,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321021}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965118}}' headers: cache-control: - no-cache @@ -430,7 +430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:20 GMT + - Tue, 14 Jan 2020 01:25:18 GMT expires: - '-1' pragma: @@ -484,7 +484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:23 GMT + - Tue, 14 Jan 2020 01:25:20 GMT expires: - '-1' pragma: @@ -528,7 +528,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321021}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{"account_id":"test_account"},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965118}}' headers: cache-control: - no-cache @@ -537,7 +537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:24 GMT + - Tue, 14 Jan 2020 01:25:21 GMT expires: - '-1' pragma: @@ -584,7 +584,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321026}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965123}}' headers: cache-control: - no-cache @@ -593,7 +593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:25 GMT + - Tue, 14 Jan 2020 01:25:23 GMT expires: - '-1' pragma: @@ -646,7 +646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:27 GMT + - Tue, 14 Jan 2020 01:25:24 GMT expires: - '-1' pragma: @@ -690,7 +690,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321026}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965123}}' headers: cache-control: - no-cache @@ -699,7 +699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:28 GMT + - Tue, 14 Jan 2020 01:25:26 GMT expires: - '-1' pragma: @@ -747,7 +747,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321031}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965128}}' headers: cache-control: - no-cache @@ -756,7 +756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:30 GMT + - Tue, 14 Jan 2020 01:25:27 GMT expires: - '-1' pragma: @@ -800,7 +800,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321031}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965128}}' headers: cache-control: - no-cache @@ -809,7 +809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:31 GMT + - Tue, 14 Jan 2020 01:25:29 GMT expires: - '-1' pragma: @@ -858,7 +858,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321034}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965131}}' headers: cache-control: - no-cache @@ -867,7 +867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:33 GMT + - Tue, 14 Jan 2020 01:25:30 GMT expires: - '-1' pragma: @@ -911,7 +911,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321034}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965131}}' headers: cache-control: - no-cache @@ -920,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:35 GMT + - Tue, 14 Jan 2020 01:25:32 GMT expires: - '-1' pragma: @@ -964,7 +964,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321034}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"first_name":"Test","last_name":"Admin","email":"test@test.com","phone":"123-456-7890"},{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965131}}' headers: cache-control: - no-cache @@ -973,7 +973,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:37 GMT + - Tue, 14 Jan 2020 01:25:35 GMT expires: - '-1' pragma: @@ -1020,7 +1020,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321038}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965136}}' headers: cache-control: - no-cache @@ -1029,7 +1029,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:38 GMT + - Tue, 14 Jan 2020 01:25:36 GMT expires: - '-1' pragma: @@ -1073,7 +1073,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321038}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965136}}' headers: cache-control: - no-cache @@ -1082,7 +1082,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:40 GMT + - Tue, 14 Jan 2020 01:25:37 GMT expires: - '-1' pragma: @@ -1128,7 +1128,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578321016,"updated":1578321038}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/issuers/issuer1","provider":"Test","credentials":{},"org_details":{"id":"TestOrg","zip":0,"admin_details":[{"email":"test2@test.com"}]},"attributes":{"enabled":true,"created":1578965113,"updated":1578965136}}' headers: cache-control: - no-cache @@ -1137,7 +1137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:42 GMT + - Tue, 14 Jan 2020 01:25:39 GMT expires: - '-1' pragma: @@ -1190,7 +1190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:43 GMT + - Tue, 14 Jan 2020 01:25:41 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml index 58d2eb4a0b4..3d630779cf0 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_pending_certificate.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:32:55 GMT + - Tue, 14 Jan 2020 01:24:42 GMT duration: - - '2669664' + - '2408547' expires: - '-1' ocp-aad-diagnostics-server-name: - - u84kEvNmBHxW4/vtHqUleUYQGGbAjaquR19gMFnyQJs= + - v9yI3GNQqNXz0aoNCJywTDYIqIKG+Dlb/txFx1mcpdc= ocp-aad-session-key: - - lrLL6PBtD6hGQz4MxyJJPGbM0TySMXfqs8wLWrmrBluh1joTP9q0PlyTyqu4Bwutcmzua2NHfy_VJUR-yghlR4BhMBTrASVe4BvKGVarYzBxKiP31-d8MsBn5dZNLOAMA5Qmp9Xim2VHJz_c8y4qKqjDgbdO3pJF89vMk0p4Bus.LH9R_6bbGDJHZ7GdhGA19FdHf4YGXVvSHMFpHyUwBKU + - K4dV5Z-cbyq0zf4kPQqIKEFY8McH-vVI2tqkfTESQj38EGPBGyaMreYisqyAfCv46NkmyR1ei8Tmh0cAA7BXub97AAXc3AeWidvRCvS58TdRBf4bdCjIqnRMbkBGPQyQuNs_gfFTJ9OR96uovo6ayaQA6wFhFRBMGQ-1-7bnxsI.n2kYykSURm_QmZLQb_qTFbM2Gr4b7aO1-Toz0DH0Fn4 pragma: - no-cache request-id: - - b700d78c-23d9-44b3-8dec-2526158bf922 + - 14e497b2-c022-44b1-9195-4e420dd74be8 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:01 GMT + - Tue, 14 Jan 2020 01:24:49 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' x-powered-by: - ASP.NET status: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:33 GMT + - Tue, 14 Jan 2020 01:25:21 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:36 GMT + - Tue, 14 Jan 2020 01:25:22 GMT expires: - '-1' pragma: @@ -263,8 +263,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/create?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCti7PDYbkouv4t7jQ06/jzYBv/n/muKb8rsfZ6x8wVc921HgmxamOHcfUkRHK/NpyRZXUw19qGeCUtCcMY6GXrfqAACUHf4G25nUClwZVmmF6RT3T5F7NQcjj6g74oTyADURry7jgmifugXE/Cj94vEkpTruVgoXFaJntovOuE3bGeiMvwJX97+PMtm3dGLz37Ey0ds+igRzv/RCjbo7fcw2XVDuHtKfMeML5cOuoqda14NpyhB5XB/JRsZafb59jCuMZ21mCQtLIHD1naBalFhXi9T2GSH1HMhFastXB+haPyzVZ1UGOpR/bVpzDNfmvCIBz7VldrC2JEf29lixkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7IhG6Lu5Hem8CyjwrAsgYD+Wlaag9fY+TBFl/rkuhVX8W2zP4prckxIl4ZbWruVbZKMzdj7gQU7vA8QwCDcJblcJULVMo6+vl0oo5y8EMVO+pc4IkLKlYM/cIKt1BjU3Y5mfO4pEQxeN4n5JWwDef/K2ivVishiCgzKdXjA4+uNv657gUpHiaddlkpdDeEYb+bu+6FhtoOdQMQpcJJkb+NoOxgjsy5y2q8Vb1mEnwZ+40kQ4mhZcZHjmrgQtCmjXmE7RX95bWMMp9EZnTckOncBt7ndYFK4ELmPNzqQoQxZbWoOBMXP00lOasqgQ95IaF80ndYFZV/skQUc2gLxOB","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"e71d6dac46614b288fc5381cd122bf37"}' headers: cache-control: - no-cache @@ -273,11 +273,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:38 GMT + - Tue, 14 Jan 2020 01:25:25 GMT expires: - '-1' location: - - https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0&request_id=316ad55ca13140b3af1e798f651e313a + - https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0&request_id=e71d6dac46614b288fc5381cd122bf37 pragma: - no-cache server: @@ -319,8 +319,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCti7PDYbkouv4t7jQ06/jzYBv/n/muKb8rsfZ6x8wVc921HgmxamOHcfUkRHK/NpyRZXUw19qGeCUtCcMY6GXrfqAACUHf4G25nUClwZVmmF6RT3T5F7NQcjj6g74oTyADURry7jgmifugXE/Cj94vEkpTruVgoXFaJntovOuE3bGeiMvwJX97+PMtm3dGLz37Ey0ds+igRzv/RCjbo7fcw2XVDuHtKfMeML5cOuoqda14NpyhB5XB/JRsZafb59jCuMZ21mCQtLIHD1naBalFhXi9T2GSH1HMhFastXB+haPyzVZ1UGOpR/bVpzDNfmvCIBz7VldrC2JEf29lixkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7IhG6Lu5Hem8CyjwrAsgYD+Wlaag9fY+TBFl/rkuhVX8W2zP4prckxIl4ZbWruVbZKMzdj7gQU7vA8QwCDcJblcJULVMo6+vl0oo5y8EMVO+pc4IkLKlYM/cIKt1BjU3Y5mfO4pEQxeN4n5JWwDef/K2ivVishiCgzKdXjA4+uNv657gUpHiaddlkpdDeEYb+bu+6FhtoOdQMQpcJJkb+NoOxgjsy5y2q8Vb1mEnwZ+40kQ4mhZcZHjmrgQtCmjXmE7RX95bWMMp9EZnTckOncBt7ndYFK4ELmPNzqQoQxZbWoOBMXP00lOasqgQ95IaF80ndYFZV/skQUc2gLxOB","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"e71d6dac46614b288fc5381cd122bf37"}' headers: cache-control: - no-cache @@ -329,7 +329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:39 GMT + - Tue, 14 Jan 2020 01:25:26 GMT expires: - '-1' pragma: @@ -373,8 +373,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCti7PDYbkouv4t7jQ06/jzYBv/n/muKb8rsfZ6x8wVc921HgmxamOHcfUkRHK/NpyRZXUw19qGeCUtCcMY6GXrfqAACUHf4G25nUClwZVmmF6RT3T5F7NQcjj6g74oTyADURry7jgmifugXE/Cj94vEkpTruVgoXFaJntovOuE3bGeiMvwJX97+PMtm3dGLz37Ey0ds+igRzv/RCjbo7fcw2XVDuHtKfMeML5cOuoqda14NpyhB5XB/JRsZafb59jCuMZ21mCQtLIHD1naBalFhXi9T2GSH1HMhFastXB+haPyzVZ1UGOpR/bVpzDNfmvCIBz7VldrC2JEf29lixkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7IhG6Lu5Hem8CyjwrAsgYD+Wlaag9fY+TBFl/rkuhVX8W2zP4prckxIl4ZbWruVbZKMzdj7gQU7vA8QwCDcJblcJULVMo6+vl0oo5y8EMVO+pc4IkLKlYM/cIKt1BjU3Y5mfO4pEQxeN4n5JWwDef/K2ivVishiCgzKdXjA4+uNv657gUpHiaddlkpdDeEYb+bu+6FhtoOdQMQpcJJkb+NoOxgjsy5y2q8Vb1mEnwZ+40kQ4mhZcZHjmrgQtCmjXmE7RX95bWMMp9EZnTckOncBt7ndYFK4ELmPNzqQoQxZbWoOBMXP00lOasqgQ95IaF80ndYFZV/skQUc2gLxOB","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"e71d6dac46614b288fc5381cd122bf37"}' headers: cache-control: - no-cache @@ -383,7 +383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:40 GMT + - Tue, 14 Jan 2020 01:25:28 GMT expires: - '-1' pragma: @@ -427,7 +427,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?includePending=true&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1578320618,"exp":1709735618,"created":1578321218,"updated":1578321218},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1578964525,"exp":1710379525,"created":1578965125,"updated":1578965125},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -436,7 +436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:42 GMT + - Tue, 14 Jan 2020 01:25:30 GMT expires: - '-1' pragma: @@ -480,7 +480,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates?includePending=true&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1578320618,"exp":1709735618,"created":1578321218,"updated":1578321218},"subject":""}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert","attributes":{"enabled":false,"nbf":1578964525,"exp":1710379525,"created":1578965125,"updated":1578965125},"subject":""}],"nextLink":null}' headers: cache-control: - no-cache @@ -489,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:45 GMT + - Tue, 14 Jan 2020 01:25:31 GMT expires: - '-1' pragma: @@ -542,7 +542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:46 GMT + - Tue, 14 Jan 2020 01:25:33 GMT expires: - '-1' pragma: @@ -595,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:48 GMT + - Tue, 14 Jan 2020 01:25:35 GMT expires: - '-1' pragma: @@ -653,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:50 GMT + - Tue, 14 Jan 2020 01:25:36 GMT expires: - '-1' pragma: @@ -699,8 +699,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK5sB1QchPdgt82aHkPidYQ+hksvueGFQKDEctvRinan6BMTgmJiOan+aYkEAnxaxsYuvmySdUBUiQW3qvlGWtVqWiixMp4GLaofzpAM4pP5XjhgKQGn2c8QO95YR0i7c0YJEGWADM1vQIuXiLvsto6IOaDs9tzZFH0TmF7Y2Qyb+QgSGJsEvK2jz3emrO3S/Wy5xVTVOqf7b2lZmHHeyUpXUlGSFvaVnDZPf3VdDzKEekZhgyTm6oOljnKhy8HoSa80cver5UvoM6DNn4Jj4YqHSouJy9iEUEV/aZpuvHOQxfGQZbKA+aSS8LHM/I2X2EaDBWso6YEWRkdtJne+nJsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBMqrrxr5zc7I9MyGYHBM9DgLAndXZOswty3lcUXk8aBhFX+hOj3s0JwqMycDT9XX37qrUO0AzPNlIZbncLihYkOa3jTpV9ajte2bHjfdzCnYUL1vI+XyKi8tao+uBQ2PdIrmt6Y1dFqiXJUYpsOlMuwUsRmbP4JKsYrs68BkWP9xx1vFRCZ8NnpinTZVEEbLGtZu8UHmFP4tbIpJBhJEml4oPPmWlb9ZU5KxYz9fb9ADpOAJzql4fGbpJTzZqJU/26jUASzMwQQE/PHlJIZnYw736ByTxJgyqeVIvLltF49t/GG6i4gf0J/jL6XdBNMQimdwoo+Xce/xvQkII791rF","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Please Perform Merge to complete the request.","request_id":"316ad55ca13140b3af1e798f651e313a"}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/pending-cert/pending","issuer":{"name":"Unknown"},"csr":"MIIC/DCCAeQCAQAwbDEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xDzANBgNVBAsTBlRlc3RPVTEOMAwGA1UEChMFVGVzdE8xEDAOBgNVBAcTB1JlZG1vbmQxCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALCti7PDYbkouv4t7jQ06/jzYBv/n/muKb8rsfZ6x8wVc921HgmxamOHcfUkRHK/NpyRZXUw19qGeCUtCcMY6GXrfqAACUHf4G25nUClwZVmmF6RT3T5F7NQcjj6g74oTyADURry7jgmifugXE/Cj94vEkpTruVgoXFaJntovOuE3bGeiMvwJX97+PMtm3dGLz37Ey0ds+igRzv/RCjbo7fcw2XVDuHtKfMeML5cOuoqda14NpyhB5XB/JRsZafb59jCuMZ21mCQtLIHD1naBalFhXi9T2GSH1HMhFastXB+haPyzVZ1UGOpR/bVpzDNfmvCIBz7VldrC2JEf29lixkCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA7IhG6Lu5Hem8CyjwrAsgYD+Wlaag9fY+TBFl/rkuhVX8W2zP4prckxIl4ZbWruVbZKMzdj7gQU7vA8QwCDcJblcJULVMo6+vl0oo5y8EMVO+pc4IkLKlYM/cIKt1BjU3Y5mfO4pEQxeN4n5JWwDef/K2ivVishiCgzKdXjA4+uNv657gUpHiaddlkpdDeEYb+bu+6FhtoOdQMQpcJJkb+NoOxgjsy5y2q8Vb1mEnwZ+40kQ4mhZcZHjmrgQtCmjXmE7RX95bWMMp9EZnTckOncBt7ndYFK4ELmPNzqQoQxZbWoOBMXP00lOasqgQ95IaF80ndYFZV/skQUc2gLxOB","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Please Perform Merge to complete the request.","request_id":"e71d6dac46614b288fc5381cd122bf37"}' headers: cache-control: - no-cache @@ -709,7 +709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:51 GMT + - Tue, 14 Jan 2020 01:25:38 GMT expires: - '-1' pragma: @@ -763,7 +763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:53 GMT + - Tue, 14 Jan 2020 01:25:39 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml index 0d68ab3a92f..2087d8bfda3 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:28:27 GMT + - Tue, 14 Jan 2020 01:27:02 GMT duration: - - '2533166' + - '2386203' expires: - '-1' ocp-aad-diagnostics-server-name: - - SFbJInTaT683Cen+qrs+HFFI8cgxwxtSRzegXrfGI4E= + - ucg8vBzR+r47m5A/zvezGk2r6aWzAgtXxfZuU6zhGaw= ocp-aad-session-key: - - vKU2vrA4VC2NMS7Efq5DtI4nSPmq1MoQb98ljOjYrQFmbfd6re-aTfNmQv4YbhquYag-rm_sECXz5OAK5b3lqMhSJx2w1m253Aqa-vSfGWHGE9-aADQuBuSkdxlW6Q-db6vlVVcTOVznKcYLROEigFmddVjbmoUEkXjbv5gg_dk.2FTGYgJshMLs7yAEwxAdqvzvRRhr_U4VhMWQU-qJelE + - K-kymCs5sYLwlURm8hTGuWnMGr-uzLJ9qlPJOYtPNd3bjHyXzxtUIChb2di-3HkH6vMDr60skZWJT7NtXRBfP_1DPWKTQQzALwzFlS1D2GyrAX9U-Oh-k5EXUeDYNOu4xiyZ1erjgY_so5nK8bPyqEybr4mTaVIflAeLqRmaKVM.01_A-ccPxHIc9q_I1CuqcDsONGZDLTFMrVK5NJwBQEs pragma: - no-cache request-id: - - d72e3b01-7779-4957-b47e-89f370e47907 + - eb6215ed-9da1-40ba-b68f-5767bcfdad22 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:35 GMT + - Tue, 14 Jan 2020 01:27:10 GMT expires: - '-1' pragma: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:06 GMT + - Tue, 14 Jan 2020 01:27:41 GMT expires: - '-1' pragma: @@ -209,7 +209,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:08 GMT + - Tue, 14 Jan 2020 01:27:43 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -267,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:11 GMT + - Tue, 14 Jan 2020 01:27:45 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -320,7 +320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:14 GMT + - Tue, 14 Jan 2020 01:27:47 GMT expires: - '-1' pragma: @@ -364,7 +364,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -373,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:15 GMT + - Tue, 14 Jan 2020 01:27:47 GMT expires: - '-1' pragma: @@ -420,7 +420,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":true,"created":1578965270,"updated":1578965270,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -429,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:16 GMT + - Tue, 14 Jan 2020 01:27:49 GMT expires: - '-1' pragma: @@ -473,8 +473,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/versions?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test - type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test + type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":true,"created":1578965270,"updated":1578965270,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -483,7 +483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:19 GMT + - Tue, 14 Jan 2020 01:27:51 GMT expires: - '-1' pragma: @@ -527,8 +527,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/versions?maxresults=10&api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test - type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test + type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":true,"created":1578965270,"updated":1578965270,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -537,7 +537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:20 GMT + - Tue, 14 Jan 2020 01:27:52 GMT expires: - '-1' pragma: @@ -581,7 +581,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/?api-version=7.0 response: body: - string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":true,"created":1578320956,"updated":1578320956,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"value":"DEF456","contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":true,"created":1578965270,"updated":1578965270,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -590,7 +590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:21 GMT + - Tue, 14 Jan 2020 01:27:54 GMT expires: - '-1' pragma: @@ -631,10 +631,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -643,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:23 GMT + - Tue, 14 Jan 2020 01:27:56 GMT expires: - '-1' pragma: @@ -684,10 +684,10 @@ interactions: accept-language: - en-US method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656?api-version=7.0 + uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -696,7 +696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:25 GMT + - Tue, 14 Jan 2020 01:27:58 GMT expires: - '-1' pragma: @@ -742,7 +742,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":false,"created":1578965270,"updated":1578965280,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -751,7 +751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:27 GMT + - Tue, 14 Jan 2020 01:27:59 GMT expires: - '-1' pragma: @@ -797,7 +797,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/backup?api-version=7.0 response: body: - string: '{"value":"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkFDVzdtTDFhYkhKNThLbFg5YVJZTGo0SmtrYV94d1R3a084ckxvTG8ybzdTM2FTNU9WMl8xOHUwUmNJY3ZsdFhUa3RCT2xnS1ZwMENyOGN6WFdmSnc1Y0o5Nl9QdVJCeHduYUFDVGZVWF9zYUlvSjJSWVktT2dnYWE4dkZ4RmNyNGgtVGtULXNkUTVkWk5TV19PNlkzV1hIMkM1YlpsRmJkQXY0ZjUtaXdzWTJUUXdfU0dVNnhNNGx0RWt0TEw3dUlVU1RWaFh5aFdDN3NvbDlibEFKTkI3T2tpMzdSeW5qTFdaNkZ5aW5OeVRzQVBRaUtjOUVVVzU5cFZwT2d4NExwR3ZScWJUSjU0LTNjZkItdW1sLS1ITzhKWmRxdDVFcEJSeHR5ajhLV0ctY0hDN1FtSWFkeHFPRXpUUVl2SUNlSU1YT3FmWnFtb0IzMHphTlIxZUFUUS5UZWhfNEdEd29PaFZhbDY3bUpTUmJRLnF0b25FVWlGTHBwZWFzeW53V2RkZC1XQkd2QVQ3aUlOTG12akhVNWhoeURUeWF1VmFiYWRINlJDZm1hTGxqUlphclAtT0lCTjM5N1RURFU1eWN0b01SSFMzbTZHcWVDbkRZcVRQV01OcFZ2Wm5fcVYtdmhXTzdZX0R1eGJWNmFlYkx0Q1B2bmQ0OE5ONW1XZ3RJTTAxSVdZQVJNQ01IOUk2LURXZFZ3VE9hYzN0MGxHa0dPQjZyU013MzBLZkFXcWI3bDRTb3owUUFncDlwY2JsRDBuaThINkJ2amVtTlFDTnNwZ2E1T2pISWJ0UlBRTWNxWDd1c0YzYWg0bmxKS2ZYNEJWYkZralN1TGNVYzdITzFMSmxUUmZ0ckV6MHNKSVRERUZpR0VLUUJVMVpqZXd3TFJmZ3NsWGtXNndnb2VEbl9yaXoxTFA4cTVHZTR5X1UxMDFycmR6WlFrZFhZWnlvZmEza0J6X2FuWkpCMVYxY2Q0a0NuaU9nUW0wdlpaTFd5ZWw3QkpRcnNaWXQ3dnR2Z1lwUGNMdDdFNmhCUV9NLTBlRUU1blZDemtxQmNjbWxFa2YxOTRacFZNVTZYX0lHaFBfZl8zRnNCcDVLRUxXYl9NX25OcnJMNk5vMXlrTF9nZEJBdFhHaVNUSnRDNVFLWEN0SjVHbG9Zd3RrTUlvVm1GM3BUQURWd2FpZGJ4aG1GaFpYdTE4Y05vcUgtaVliaXhuWW5CTTNJVVF6enJHdk5IVFZ5VUJqRXVBS2VWeWZtSXgzQmc5cnZ6QWV4UzlGN19RbWVGVUVtUDNPbzFVcjQ2QktTWVN0LVJpSzFxMW1odHRWY3FhTHQtMlp1WVJQakJKME1odzRyVUxnT2l6d1NPN2szUlVKd1dDeWJsUHBfZDV0ZkFaOEtqQVZOMW9HUTMxci1PcEtiTWFKQUdkWW5RZzlzcVo3dXVyU1A0UFhkMFowV2kxc1I5bngyYWxTd3VtT0pHOVdkSjNWNGhuWUJYbjFMTDJrZVRlLUUwMUJHeWtoM0xfdXIwX0pqRm4tOE92aEF3ck1sTUp2d0xpUWp6UFk3enJ5Y0N3VzFreFlGX250VXphUmdTdEJtVk1JQzdKT3MxSUVTWHFnSXYtZm1vNEloNmpiTTdPMEpTZjc2UU5DcmN0VXlBMThlQXllWDVMU3Q3a3FEeGtnb0Zxb2dXc0h4YU9VOGZRYlVyZVJCZTFJRU1IV1Vma3M4TDczSW0welpKSTEyNTdMMjVtZlpPT09rcU4yWXNiZW8tSnd5aC1GZW53LWVwcWlnUVdDTGZPellUdlVuN1hybUljbkZnSEVGTXNnWE9vNV81cFRHQmkwY05hTXVsY2ZHbXhHYWNYWWRWdnduWnhybUxBTXIwVDJ4cHZWLTRLYkF6ZFlIQXVkbUg1dGN6a3hYcnRtZ1pMVWxKY3hnQmYzLWE1bkRnQTdYcm5pd3BTRHJwR25sY3VWeTZxR2dIT0FSajNpcU53LWdMcVlDeHk5MlhxNW5VWlhzSUIyTW81dWljSUpaY3B1NTFPYklSLTc0cTF6Z0FxcDVmakU5R1dvVklrcUk0NFp0WThMSmswWUlfdzY0VUdKcEFqbVduRzhfOGdxOXBCc1dqQUVCdEt2VWhnSzctUllyblBTQUYwTGhQckl4OTY1aW9HZHJidHYycFV3WHhNYW9xYUZ4VEFKb0ZVYU1GY0FOUkNUSUVXZmpPQTFxS09xOUFHUm0tbmpYYlpqalpUamg0SEl6VVpETVdhNnZLSmVRa0UwT3d3bU5kRkZBaG1yRk5iT2hmMzZYaXdnZEpkSXpadkdMcUVPN1BlcE9Wem1nVC1CX1V3MGxPWXZIQW5CMDRMRGxUSjliQkFuc0paTW9yVnB5THhZOXBhVmJGb3FCSmRUVmE2RWpTQ0RwSEpUYUQxS0pzM3loQ2M2RHM0V0dpRHc5Z3ZVOG8zWjA0cnE3MDE3N2lBbXB6UUtlUE9uSHk3VHE2YWxBUmgxVmlQVWNTbzBhUHhBZkxjMVlrXzNlSFhYZlRHRFFlTzRpOVE5ck5leGUzMnhuaHNTbFJhaHNEeVM4QW1rSWlna0FLaUlOdVJVa3hPaDZJYzVLWWZLS00yZjZkTGlQSzhJVEs2Q2RMdTJEVWhfYVQ3YVN5R1RycFFURHpUbnhxcWxWNkhzakNiaWwyUVhrclppekhGZkI0cllBdmxwa3RkV2N3dkI5WmZMYThYdXo5YzcyVWpGdmtXQzB3VnNET3Z6b2x2MGtLR3JYWF9NZzBBT2JQbVd0aVBRLUV3eVZuLVkwZ2lrb1VneXVwWlc3UE5aOFlTQURzYVBoNk1EbkRVa1R3SUgyS1U1dDRuNGU0S1FlaDlqV0F5bG9rUkxUX29wRm9ULVJOcXJseUtteGt2YS1PUUJJSDRic05KaFF4SXhZeGVkTUxnSXpFRmVnWHJNSHhoelVoMWp2cF81aWFDR1c3WTIzNXNYbVZ2RkJ6Q21wYXBjbjNJRGN1N3RDblhhZ1M5bVplcFlhLWhwNFdDVklMR09kdEl6b2ROWnl1dFdZQ3JodUE0bFk1LTdJNEJma212dTRRT3k1UFJMdWdQM0hPa01DN2ZrSmVwRzN2QVBzb1hvaFJWLTd0eF9UMjF2NmNYVlhKZk9HRlkzejNxenM5MUNzbUZ2WENtRUQtZUMweWszZFNPdVg0Sm13X2V6ZFRXRTFGN3NqMW9sTlMtRDJrYlJfNXJOemQyR0hYU2VDSVQ0ZUhaY2syZF9sWDVuQi1rQ1Y0MkhxQklrZk13Z3plOUFRTnZJRmxMZ1ZsRGl5RzJhOHlwRDN1T01qSzFHdTBwQWtqVE44ckFwTHc2S05FbWNOdTU0S3BwZmZzeWU1LXcwc1hOT3BZdmFWVHdZMUNyT0psd0RzVkRPSjh6UUJnOTlVWWxkSDdFTXdYclUwejhIaGlOdXJLQXlpRWhlMDlvNWg5SGpscEFteGdNWEhTZlJWUVZyUDROWTI4QVZ2LWo4RENMdExPb0RYbkJRZlJoTHd2R3dtenpYLXBFZlluS205SldWc2V5emJ1S1o1Q09rZ1NLMGdUSHplWVBrQnhTSEF4SEdWNXZWREhiMURmVzc0MkpUNWp5WnRGbElwd3VrYTRpMlFJcXBlc0piaElZeUJ4TW4zYkZHVVdLS2dFb0FBNmM3ejlsZk5Cd0hDVl8yRGw0cUZCNEJ2WWxfTzlMZmRNZGZ5QnNySEpWa1gyQnByei1tNjkwWU9IVmcteUtiT2lfcS1vdHhJLUhpVTd0emFoQ0Y3NXN3TW04dHJwSDk2ZFJBdGhmaExuYXc4bFBJVGItSkhqT2ZmbXBxYmlDSFJvOTF6NlRnNTFkZHQwTy1ITTk4R0tsMlhkT2RmSVRVekNBLUlUWUQ5U3F4TjBHcF9YRWMwektIRlhJNDFCc0NpQmZHeXV5V3IwTHBCUG55YVFlQy1NNHptRlpZNnp0UFZuS1VaLU50X1FmWWZueXVhQS1KRWZpMUxtRDdZd3RKUzlRbkk1emJGOVJSam1sSG90ZzNrM2RqdlhzbUZ3M2tWY3BKaGk0ZmczNnVRTVJuV3RtZ2k0Z1hVTk5nbU1ZeGhya0I1X1QyekUzZkQ5emsxVWxOb21WczluMkl4Z0l5YndQYkFtajhNell0TjBOX2hmOWxGaWlPN2tkak9uOUpZUnYtaURfRHRPNXNNV3NBSGl3d0FzMllQNlVEaTlSTy1fT256UUJMNW5tdkZmOWdGX19VMlUtNlVQQ3pqd0J3M0lub19VUFl0NjRZQUR0MXBUYlNOUU96NUxQTkZGMFZwTHNqa3NKZ3d6bk5WQTh3SkNJLTV4OU5KRkhSMTBzMzl2N1drbUZoZXhLTmIzNzB0SEtpUmI0STNqT0xla2JmNmFGaXJwV3djTllsUTVLMGZ5aWpid2duUEh3SFBEMXVlMHRIT3hZOHQyY1dZSVhraXo4Z2FCRGU3N1BrbGVINzJ3cU53eWJLX0Frc3dsalVpcklRNTlQT3lEWTMyY09FRzlsOW1yc1VoVXRTdm9VdHE0cTYwOUVDcktISVd2dXdTR2N4cS1rY3VYbkF3UEMzekNzcFVzN0NONzdIdFFMdV9vRzBDaFp2ZzlzVTdsNzd4NnBsU09BMGIwZWZVaEpETERlYTJlM3JZbC1VS2djOVpFWTVmNTZ4TzVqZ3hXT2oxdE1iZFZ3QzdNYWR6MVZ0VXhGYXhib1ZGTC01UEdLNVBUSWV2R2o1UUVxcm82RE1RTVdlRmkwQXlnNUtSUEFBZDdQTF9qSS1jNFlwN2sxWDJQTU5hSVE0d1JxR2lHUGs0WXBuWDRfZmg5TDJFSHJsc0xKOFE4SnAxWXZSN2xENEN5MFNfMkhyUzQtTWg2cUlISWswd195ak9ibUN0X0lXdXVwaFpDY09YWHdTcXdMMEt6bDc0SXkwMmRIZ2JKblB4ZnBncWxvWFpxZmI4OWpEdEZkNFFITWR1OG9zcnNYRTdPS2RyM3V6ODkyT1VydkpLYTFjc3pMS09BbW1iblRDSndLWFozVHJUWEJqZzVfY3M2aWlsaE54SUJFdGpvOHpfbEZxN25Hc1FnbHAzamtXZDFKcDlRMlRkczQ0cTRrMUxOZ3JhSkhZdTI1Z1QxN3NfZFBuV21qeF9Ca2hjMGNDSDBsSm1LUF91dDFJQTV1M0lBOWw5SjhpckJOYTh1RVRzSGI0V1RmMjVYMGdVZUFzV1hkcmNpcVlFX295SmNOZndwQkRtaHZhLUZjU0lVcVVqNHNCdDZsdi1IdUxFd2xiNzFHMXlKRmJyOUx2djBDVnJDWlRIMENSdkhRZHg5b0ptZFB6ajgtR1lmZ0J3SVFURWNUa3JMRHM0RlBCTzBYeEhqY2p1Q2k1bnFOZVJKZEo5TkgwamIxZFJDQTZUS1NpWV9sUjd5MWRrRDBrRjMxdVhEbHNQTVRvM2RZWVp2RlZPZGNpVzljT0ttY1c2Unhfclh3bEpjLmtTLTVXMHdUU3lTNHl0X1c5YnY4TWc"}' + string: '{"value":"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmxKRmVtRW94a1dhMFlvZE8xWHRRZ3FpUmlhdjl3d293MHI5TDBGcGh4S2gtTHpIWHBTRVZFLTJQMUpCaXlfMkxBOWJLNjJBdGZUR28yVjVYOUxBWDFXckhaTFNxQUZJWldLTmlsdG9LSzg4SEhCWUx5c2tWclZIeEoyeGxnSjE1bWkxVmFoZGs4bHl0eHRlZzh2OW5lSXd2T0szSnFvd3U5SHV2bE5xX3BvZExLT1l0SllkSEI0UWp2alBuR2Jmc29zT09jN1dVTFVUeWRmTzNGazB1T19xZnc0ejE1RjVDWjF2dVNDYjI1Z2tGSWRkUlhtbnFxMjRPcXNqSUFDMVo4bDZPdzVJZk1Rbi1HZ25YWnpuRlBhMHJSbFcybjVMbUFaY2wtMUdadUpHdklNemFlMkt3X2tpaXdrQkNJYXBPeVpCZ0hEYVd6Z05IcGFtekxFVEhmdy5ZWXpKamo5emlWeVF1SEgyT1dFSHNBLnJPNENuMWJDQVJuRTA2MnBNd2xxTWVvSVdJcmJrQjdUaTc0dUQyYnk4MDRFZ0VVcDhGTXhaWHpsSzZnNmtBM1BDMFJCSTFSa0dJM3g5V0o3Ql9aam1pRGw1enBtUFloNFlpemJfejd1LWtRYjF2S0dUWXE4S2kzdVhtYV9paVRLUGFIdmtlbURkNVAybk5Rdy1UcFVwVjE2VF9NT3JjeXhTWkxhQThPRU1DUGp6LWtIeDNzVEprOTNWTVdzVU1jNGNKdlIxUVVOaVVZT2pQZ2ZnR2loWmhqbU80SDktU1NFZ29oUktwdS1ab2ZPZ1QwNkR4ZDMwVFRheUtFX1QteFlqNkdSMk5ENldvS2ZvanlQOXBFTVM3b1hQdlhBcHVrRENlQl9pbVdJY1JqRFhqQURjS3NXTjBlQXVMLV90ZXJueF9oN1B3bEhxYkJHdDUzcWFTSGxpUThVVEl6a0psWHpDd2pHWHpwTk4zU3kyUktfcmcxekxZaVhabkRXTFJaVkdvd2psMVN3Q21hdE5vOFR2S252c2w1UEdDUmtUbFUzcnAtMUpfaHdENjVCMXhaYXV5X0Y0ZXBRcm1QSHB2bkpjbFk4NVV0Rk1mZVB6Nkg4S1A3RE45aEhSVU1zX3dDUEM5R0czRlp5WXlNTGJXLVRnT09felhxSkhmbGRzWFVtd2t6V2g1TVNSYXVGTURqX3E5a1lpTkRDVmxtLVl2SFREd1YyQUQwX1UyR3FOQzRfRjJLNHJERHlyUjVKTzRWV1pxQ3BiQ2J1bkhHVnlnS1QtY2RYWVg2dk9WM0hzQTk2NjRNMzdDZWxLcUI0LVgtMGhKUmhaakVFZVRyV3B2QWd0VlVJZEZPV2xjU0hSNHBDWjNGTTMxLWJkQW1tdHV6bWdqS1lOVVpIenVaRWdtOVBuM2Flc3VIbnc2ZzZyVEx4X3JPWkRENldWNW1MaDdOZU5EX3dkSjFSb0NrdVdrc180U0JtbWZvQkFRa2F6MGtULTNCRFB6bmVJVTFzNHBBZjRPR3FDeUJmWVdma2JJaHBFbVhKdV9ZVnZCU1BqXzZJQUNQR190Qk5LaVNaWV83Q0FqYzh6TEZiOUZVbXkyR3lwdS1qZGVrSzN5NlMxY3dqaDRPNEpYN2UwWUVNNUprbWRnRzg3a2pFTEo4eHAySENQR01hUG03Rk5LM2wyOWUwQVFlZUNUd1JCWVJhY21MS3g3XzFIU0dTZ1ZyNUhNTV81cUhVVzNPVEtUNldYOW5pMWNkbGpidEVwTFprMmcxeUNuQnY5b2VyTW5sQTdYMGZYNDVMUU1UV3c5X1RMWmFOTHg1X3BmeU94RHMyYnEwZDlaMDE2ZFlaMlc0VzZSUnFTSVRrX0tYY3U3Y0piYUF1ZUI4b251amkwYXR3VW8zVXBJbk1XYjNDbGh5X1pwNFFmcnhqMGQ2VW1BcDJwNVVnSHRHR2RTdmtrQ3JIYWZmaWZhRzlFOThCemg4M0VRdmwwSzBFRFAxMzNPM1dSektiZmdISVZXZkswUkFoc3ZsOW5YYXVnZFRNTUI1ZzBZQTN3d3BBeFNHZUg0OXhMTEliTEtZbFVfRWZqREZhTEFfMUhkVzhQZWxEOXJib2k2azZGcUJPQTBIMWRnM0Vqb0VLYlJWdFhleE1YVjBBWXR3MGdWenVISG5OTXNGb3pMal9RMlZHQzNXYnMtcFEwM2pyZjlITjJRWVJLTFdoYzhLcmQ3Q2FzSGtLUU13RTdUUXVPdVJRdnFXNWk2aldxSnZNOGRwRWNTRXBqLTJNcVR0SlJEdDFNUFhuY1BFa1FEazBOUlJQWHR5VHA2Qy1MTFF2UFUwR05YbE5YcFdJaGVZc2VRSldhanV1SlBFN1AtYWJRVnV0VThMYnJiLTFhWWtMYUZUOEZyWkItY1ZYVjFrUlFRek5qNEtwS2tmOTFOUzdiakFwbXVqYnhvUlFXeWdJMUJDZTZuZUhRbHl4NHY3Um5qNzB3TkI3UkFsVzZnLVFZbTZaYngxbnVHQjZPRlphZ093dWJhaWxRV25wQ1owVXlacUd0emVKenN3blR4SExnVHJIN1Fpc0VtaVl2U09RZ0Q2RmhqaFlMenVLXzM4aTJHZXJ2VUJ5MmJNZGZTM0FqY1B2a2xXOXFVXzBRa0V0X1ZUVEtjUTlZNVQ1YzkzckpVdXBNb1NSOU9PT2xldUpTY083bktFU0xyVEdRUDU4NWw2TVZMRmQ0Y1VHRktlVUFOODZjS2Jvd2ZLRG1ZNEF2X2FVUFVJMTV4Z255MnF3SGFBMDVJbE9EYm4waERwSmJaSldmREVsNjFvWFZlbHdnZXFFZll0RDJmTkZSV3VZeHJKY3Z3ZkZjVEtzTlQ1VHRucGRVeWowVko5SXZwc2NKYXJ3Qi1naVdmUzhGUFo0cEJISVdESWxQSmlwUFNHVi1CZnk0NTVqT1VoZEJPU0dGWTdkaVFoQjd0UVZndDF4bkFQbEd1TTU1d0NyR044NWpTcV80ZE9fcnBWVjMwOXl5MDg3MVo1b1RET2lZMHhseFRSSmNEbHhTczNmVFllLTR2TlRqQ3FlbHFaS1ZhOTJSVFlNdnRTckVXSnJGVjVDeGpmS2NULS1jRWExZWx3amxrWHByZ3YyVkpTaXBzUVBTZlprYzJfN3hBeURlb0dUM0RHN3V0NE1OOVNxRzV1LWFqYjhwS1o4X2dRaUlrRkU0dVNjUFNzT3BwNnZwSFpoV09tVUJYQkN6Z28zSUx6YVFPMzZTM0xScmdVV1I2ZDN0aXczRjVjcEI5alhrS2hOTzVfMGJ6d0JBVGJ1a3p1QWpJYTF1b3VjYWRCYjBHeHFITkxXb3RRLU9IelhDTFBBZ21fS3QzbmN6eVFQMmhDSmVsVjRvcUxPTk1MU3NXSDBsRzNpWnNLdzBZclp2czZXdy1rLS11SloxaTFzVUMxOXltaTRsYVpOQXgwejNCeklnSFZ1am5yejUwS0hueHFZR0VhajRzdjBNeGVhcDd2T2dqbHc5MzB4T0FGOFNORHlrRUJ2QVZ6X0dVb0p3SnpKcWF0dWUtOEpKanE1cGt5aklZWUd4YXdLM1RodFZadnFKNzlCQUJWX3NxM2RJVldGYWRiOEJkTklCRmI5SFZsMmc4T19zT0puUUtIU2E0amVxMEtwb0FLVE9FTEg3Q2p3aG02VGVBNThNWnpnTGdtdVZBdE9DT1JHak9fa2FUN0ZLWDZZeVBYUzlEaTVLRVA5U1EyZFlDUWxFSXpnYkR4VzJJZXVkdEcwTW5nRngxUDdXZ21SUXZYNVdncDJkMUtvWlNMZ1ZzZVZBX3NzTTRYLTEtbUxJVHJWYXI3OVJWN2xNbTVUSURCYXZmTnZIYzFkX2Z1Vlc0SW9tM2JuMnMxTkZhVDFKS2RSejJYa0lhU0g5cFRzQU1qdm1YWjFpWDRxOHZxN3lPeUh5YzlCMHE0WUxMZTV6ZER5T2RWNGV4U0U2NllfVmo0LTE4cTZua0hSN0IxM3Q0VEpxZXJyaUxiSUFZaWNIYzNOMlZQaVVhazFudi1GRUtBYlZoejZKV3lEZk1nMGtreVR6Vlg3UHlVOW95RFFsenNlNzFvaTd4bS1EU0c1ZnZscnRkUWdOa3NWVDJpOHl0V3VWTG1QTzhwNmRKaEhiMVpRNTFqV3o0TWNvb2pud0JSRmhQczhSbW1DcEYyTkx5UnBTaGExcDkwRDJrWFQtLThtQ0NkQlgyT1lRcmlMWnYtOHpqVkhJWndBbEdmTlBqN3lZRkxFZktNR1VwdmdtMDg1T1l4WDFkMV95U05EVlJEWTBtX25OaEZITzNmeHFuQlB5bHU2cjVDNXp3dUx6ZVFiRENuQU1XSDA1Q2I5Vk9VeXcwSWd2LUw4eUpZUGJiaTZvOFdsU0tlT0cxbVY2ZEd5QlBtOU5mdlJXMTJtZHQxX1RKVVphY1VYeW5SaTJFN0NmQXJrQjhURlJaU2RXT3NEMFUxSlNKQzlyanFKME5xVWlncE9JdUFOYkJGNDdoWnFuQzRiM2JNNDQ0MXptX1JRLXdoVlA1aENHOGE0UElXeDQxb3hfVHN5Ul9IRy1MV3BLSUY4VVptaXp3T19UUFRWOUU1Y1dOVEdnMFJlRU1qdXNMWk55eWJ6d01XOVkzT2pYTXZzdXNERGp4UUo4eVlkdnEyTW1STjhYSUZXeHBBS09YeTBFOE55aVA2MDVFTWlidm0yVVJBQzZORFRKTk1fNVRDVURsRmkxTWd4UlV2Ql96WGpwMk93SWRpM3dtSHFMcWJScUxLcmthcmRFeXp4YzdUTzhxM1BfQnhFcjdoak5HbUctY2JBSnd4UVV4Mk5UaHFZVEZLWTNYMWhPSFpZMzB0NjNYQlhWZl9nZW9QN0ttRG9WOElDQzVXdEJ6ODc1VTdRNWYxX0NUb1NkcmJaOW1uRGg3VEc1QUxKdEVsdGhiSVgyS1A3TnZtYV9CLVVSdloxUGZzSFhpZ3U2VTJQbWhaWEtpbFdEeFhlTnZzWWxmM2ZHeVZRdW8wblZlZ0V3WjFmRGVVZzByQml4VUlrTXA1QTJFeVNoOEMxd01kVWhiTmkzOEoyZnUtT3cxcGVENnhEZV9XWjB1Q0pZYXFRSXhEaU10ZFF3aENFUXVnT2Q2emgtdXQtSXhMdE5TYjlUVHFUM1JBLW1vRDVkUF90M0Fka2FVd0xPM3RjYVlNLXBpR085NzJGOExwa05uTzEyaXN5WE9RNGdmYkFxMG04UWdGb2dQTkxkOEVPRHY0ZjljdG5SZ0tGa0JOV2tLT00zYjk3UG0yV2pFNVNBN0pnSGNLU2REaktGZ052TUhVZVdueHRXSzQ1YlJEbVFuaE1DbjhnTS1HU3VoamtoQ1lUTGFITnlVMW5tYWtVcVBKaXlNbV9FamtXaUhNa0xfU1RsdWl5c19QNG9qZzB0RDczal9FcnV3NEU0Z0QtNTFkV3IzZC1LMC0wQmVmN2IxbDBDQ1NGc2YxVS1zTERHcnF6cVFVLlczUlQwc01iVjlxVUlWSU1CTWxEN3c"}' headers: cache-control: - no-cache @@ -806,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:29 GMT + - Tue, 14 Jan 2020 01:28:01 GMT expires: - '-1' pragma: @@ -852,7 +852,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":false,"created":1578965270,"updated":1578965280,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -861,7 +861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:31 GMT + - Tue, 14 Jan 2020 01:28:02 GMT expires: - '-1' pragma: @@ -914,7 +914,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:32 GMT + - Tue, 14 Jan 2020 01:28:04 GMT expires: - '-1' pragma: @@ -939,7 +939,7 @@ interactions: code: 200 message: OK - request: - body: '{"value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkFDVzdtTDFhYkhKNThLbFg5YVJZTGo0SmtrYV94d1R3a084ckxvTG8ybzdTM2FTNU9WMl8xOHUwUmNJY3ZsdFhUa3RCT2xnS1ZwMENyOGN6WFdmSnc1Y0o5Nl9QdVJCeHduYUFDVGZVWF9zYUlvSjJSWVktT2dnYWE4dkZ4RmNyNGgtVGtULXNkUTVkWk5TV19PNlkzV1hIMkM1YlpsRmJkQXY0ZjUtaXdzWTJUUXdfU0dVNnhNNGx0RWt0TEw3dUlVU1RWaFh5aFdDN3NvbDlibEFKTkI3T2tpMzdSeW5qTFdaNkZ5aW5OeVRzQVBRaUtjOUVVVzU5cFZwT2d4NExwR3ZScWJUSjU0LTNjZkItdW1sLS1ITzhKWmRxdDVFcEJSeHR5ajhLV0ctY0hDN1FtSWFkeHFPRXpUUVl2SUNlSU1YT3FmWnFtb0IzMHphTlIxZUFUUS5UZWhfNEdEd29PaFZhbDY3bUpTUmJRLnF0b25FVWlGTHBwZWFzeW53V2RkZC1XQkd2QVQ3aUlOTG12akhVNWhoeURUeWF1VmFiYWRINlJDZm1hTGxqUlphclAtT0lCTjM5N1RURFU1eWN0b01SSFMzbTZHcWVDbkRZcVRQV01OcFZ2Wm5fcVYtdmhXTzdZX0R1eGJWNmFlYkx0Q1B2bmQ0OE5ONW1XZ3RJTTAxSVdZQVJNQ01IOUk2LURXZFZ3VE9hYzN0MGxHa0dPQjZyU013MzBLZkFXcWI3bDRTb3owUUFncDlwY2JsRDBuaThINkJ2amVtTlFDTnNwZ2E1T2pISWJ0UlBRTWNxWDd1c0YzYWg0bmxKS2ZYNEJWYkZralN1TGNVYzdITzFMSmxUUmZ0ckV6MHNKSVRERUZpR0VLUUJVMVpqZXd3TFJmZ3NsWGtXNndnb2VEbl9yaXoxTFA4cTVHZTR5X1UxMDFycmR6WlFrZFhZWnlvZmEza0J6X2FuWkpCMVYxY2Q0a0NuaU9nUW0wdlpaTFd5ZWw3QkpRcnNaWXQ3dnR2Z1lwUGNMdDdFNmhCUV9NLTBlRUU1blZDemtxQmNjbWxFa2YxOTRacFZNVTZYX0lHaFBfZl8zRnNCcDVLRUxXYl9NX25OcnJMNk5vMXlrTF9nZEJBdFhHaVNUSnRDNVFLWEN0SjVHbG9Zd3RrTUlvVm1GM3BUQURWd2FpZGJ4aG1GaFpYdTE4Y05vcUgtaVliaXhuWW5CTTNJVVF6enJHdk5IVFZ5VUJqRXVBS2VWeWZtSXgzQmc5cnZ6QWV4UzlGN19RbWVGVUVtUDNPbzFVcjQ2QktTWVN0LVJpSzFxMW1odHRWY3FhTHQtMlp1WVJQakJKME1odzRyVUxnT2l6d1NPN2szUlVKd1dDeWJsUHBfZDV0ZkFaOEtqQVZOMW9HUTMxci1PcEtiTWFKQUdkWW5RZzlzcVo3dXVyU1A0UFhkMFowV2kxc1I5bngyYWxTd3VtT0pHOVdkSjNWNGhuWUJYbjFMTDJrZVRlLUUwMUJHeWtoM0xfdXIwX0pqRm4tOE92aEF3ck1sTUp2d0xpUWp6UFk3enJ5Y0N3VzFreFlGX250VXphUmdTdEJtVk1JQzdKT3MxSUVTWHFnSXYtZm1vNEloNmpiTTdPMEpTZjc2UU5DcmN0VXlBMThlQXllWDVMU3Q3a3FEeGtnb0Zxb2dXc0h4YU9VOGZRYlVyZVJCZTFJRU1IV1Vma3M4TDczSW0welpKSTEyNTdMMjVtZlpPT09rcU4yWXNiZW8tSnd5aC1GZW53LWVwcWlnUVdDTGZPellUdlVuN1hybUljbkZnSEVGTXNnWE9vNV81cFRHQmkwY05hTXVsY2ZHbXhHYWNYWWRWdnduWnhybUxBTXIwVDJ4cHZWLTRLYkF6ZFlIQXVkbUg1dGN6a3hYcnRtZ1pMVWxKY3hnQmYzLWE1bkRnQTdYcm5pd3BTRHJwR25sY3VWeTZxR2dIT0FSajNpcU53LWdMcVlDeHk5MlhxNW5VWlhzSUIyTW81dWljSUpaY3B1NTFPYklSLTc0cTF6Z0FxcDVmakU5R1dvVklrcUk0NFp0WThMSmswWUlfdzY0VUdKcEFqbVduRzhfOGdxOXBCc1dqQUVCdEt2VWhnSzctUllyblBTQUYwTGhQckl4OTY1aW9HZHJidHYycFV3WHhNYW9xYUZ4VEFKb0ZVYU1GY0FOUkNUSUVXZmpPQTFxS09xOUFHUm0tbmpYYlpqalpUamg0SEl6VVpETVdhNnZLSmVRa0UwT3d3bU5kRkZBaG1yRk5iT2hmMzZYaXdnZEpkSXpadkdMcUVPN1BlcE9Wem1nVC1CX1V3MGxPWXZIQW5CMDRMRGxUSjliQkFuc0paTW9yVnB5THhZOXBhVmJGb3FCSmRUVmE2RWpTQ0RwSEpUYUQxS0pzM3loQ2M2RHM0V0dpRHc5Z3ZVOG8zWjA0cnE3MDE3N2lBbXB6UUtlUE9uSHk3VHE2YWxBUmgxVmlQVWNTbzBhUHhBZkxjMVlrXzNlSFhYZlRHRFFlTzRpOVE5ck5leGUzMnhuaHNTbFJhaHNEeVM4QW1rSWlna0FLaUlOdVJVa3hPaDZJYzVLWWZLS00yZjZkTGlQSzhJVEs2Q2RMdTJEVWhfYVQ3YVN5R1RycFFURHpUbnhxcWxWNkhzakNiaWwyUVhrclppekhGZkI0cllBdmxwa3RkV2N3dkI5WmZMYThYdXo5YzcyVWpGdmtXQzB3VnNET3Z6b2x2MGtLR3JYWF9NZzBBT2JQbVd0aVBRLUV3eVZuLVkwZ2lrb1VneXVwWlc3UE5aOFlTQURzYVBoNk1EbkRVa1R3SUgyS1U1dDRuNGU0S1FlaDlqV0F5bG9rUkxUX29wRm9ULVJOcXJseUtteGt2YS1PUUJJSDRic05KaFF4SXhZeGVkTUxnSXpFRmVnWHJNSHhoelVoMWp2cF81aWFDR1c3WTIzNXNYbVZ2RkJ6Q21wYXBjbjNJRGN1N3RDblhhZ1M5bVplcFlhLWhwNFdDVklMR09kdEl6b2ROWnl1dFdZQ3JodUE0bFk1LTdJNEJma212dTRRT3k1UFJMdWdQM0hPa01DN2ZrSmVwRzN2QVBzb1hvaFJWLTd0eF9UMjF2NmNYVlhKZk9HRlkzejNxenM5MUNzbUZ2WENtRUQtZUMweWszZFNPdVg0Sm13X2V6ZFRXRTFGN3NqMW9sTlMtRDJrYlJfNXJOemQyR0hYU2VDSVQ0ZUhaY2syZF9sWDVuQi1rQ1Y0MkhxQklrZk13Z3plOUFRTnZJRmxMZ1ZsRGl5RzJhOHlwRDN1T01qSzFHdTBwQWtqVE44ckFwTHc2S05FbWNOdTU0S3BwZmZzeWU1LXcwc1hOT3BZdmFWVHdZMUNyT0psd0RzVkRPSjh6UUJnOTlVWWxkSDdFTXdYclUwejhIaGlOdXJLQXlpRWhlMDlvNWg5SGpscEFteGdNWEhTZlJWUVZyUDROWTI4QVZ2LWo4RENMdExPb0RYbkJRZlJoTHd2R3dtenpYLXBFZlluS205SldWc2V5emJ1S1o1Q09rZ1NLMGdUSHplWVBrQnhTSEF4SEdWNXZWREhiMURmVzc0MkpUNWp5WnRGbElwd3VrYTRpMlFJcXBlc0piaElZeUJ4TW4zYkZHVVdLS2dFb0FBNmM3ejlsZk5Cd0hDVl8yRGw0cUZCNEJ2WWxfTzlMZmRNZGZ5QnNySEpWa1gyQnByei1tNjkwWU9IVmcteUtiT2lfcS1vdHhJLUhpVTd0emFoQ0Y3NXN3TW04dHJwSDk2ZFJBdGhmaExuYXc4bFBJVGItSkhqT2ZmbXBxYmlDSFJvOTF6NlRnNTFkZHQwTy1ITTk4R0tsMlhkT2RmSVRVekNBLUlUWUQ5U3F4TjBHcF9YRWMwektIRlhJNDFCc0NpQmZHeXV5V3IwTHBCUG55YVFlQy1NNHptRlpZNnp0UFZuS1VaLU50X1FmWWZueXVhQS1KRWZpMUxtRDdZd3RKUzlRbkk1emJGOVJSam1sSG90ZzNrM2RqdlhzbUZ3M2tWY3BKaGk0ZmczNnVRTVJuV3RtZ2k0Z1hVTk5nbU1ZeGhya0I1X1QyekUzZkQ5emsxVWxOb21WczluMkl4Z0l5YndQYkFtajhNell0TjBOX2hmOWxGaWlPN2tkak9uOUpZUnYtaURfRHRPNXNNV3NBSGl3d0FzMllQNlVEaTlSTy1fT256UUJMNW5tdkZmOWdGX19VMlUtNlVQQ3pqd0J3M0lub19VUFl0NjRZQUR0MXBUYlNOUU96NUxQTkZGMFZwTHNqa3NKZ3d6bk5WQTh3SkNJLTV4OU5KRkhSMTBzMzl2N1drbUZoZXhLTmIzNzB0SEtpUmI0STNqT0xla2JmNmFGaXJwV3djTllsUTVLMGZ5aWpid2duUEh3SFBEMXVlMHRIT3hZOHQyY1dZSVhraXo4Z2FCRGU3N1BrbGVINzJ3cU53eWJLX0Frc3dsalVpcklRNTlQT3lEWTMyY09FRzlsOW1yc1VoVXRTdm9VdHE0cTYwOUVDcktISVd2dXdTR2N4cS1rY3VYbkF3UEMzekNzcFVzN0NONzdIdFFMdV9vRzBDaFp2ZzlzVTdsNzd4NnBsU09BMGIwZWZVaEpETERlYTJlM3JZbC1VS2djOVpFWTVmNTZ4TzVqZ3hXT2oxdE1iZFZ3QzdNYWR6MVZ0VXhGYXhib1ZGTC01UEdLNVBUSWV2R2o1UUVxcm82RE1RTVdlRmkwQXlnNUtSUEFBZDdQTF9qSS1jNFlwN2sxWDJQTU5hSVE0d1JxR2lHUGs0WXBuWDRfZmg5TDJFSHJsc0xKOFE4SnAxWXZSN2xENEN5MFNfMkhyUzQtTWg2cUlISWswd195ak9ibUN0X0lXdXVwaFpDY09YWHdTcXdMMEt6bDc0SXkwMmRIZ2JKblB4ZnBncWxvWFpxZmI4OWpEdEZkNFFITWR1OG9zcnNYRTdPS2RyM3V6ODkyT1VydkpLYTFjc3pMS09BbW1iblRDSndLWFozVHJUWEJqZzVfY3M2aWlsaE54SUJFdGpvOHpfbEZxN25Hc1FnbHAzamtXZDFKcDlRMlRkczQ0cTRrMUxOZ3JhSkhZdTI1Z1QxN3NfZFBuV21qeF9Ca2hjMGNDSDBsSm1LUF91dDFJQTV1M0lBOWw5SjhpckJOYTh1RVRzSGI0V1RmMjVYMGdVZUFzV1hkcmNpcVlFX295SmNOZndwQkRtaHZhLUZjU0lVcVVqNHNCdDZsdi1IdUxFd2xiNzFHMXlKRmJyOUx2djBDVnJDWlRIMENSdkhRZHg5b0ptZFB6ajgtR1lmZ0J3SVFURWNUa3JMRHM0RlBCTzBYeEhqY2p1Q2k1bnFOZVJKZEo5TkgwamIxZFJDQTZUS1NpWV9sUjd5MWRrRDBrRjMxdVhEbHNQTVRvM2RZWVp2RlZPZGNpVzljT0ttY1c2Unhfclh3bEpjLmtTLTVXMHdUU3lTNHl0X1c5YnY4TWc"}' + body: '{"value": "KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmxKRmVtRW94a1dhMFlvZE8xWHRRZ3FpUmlhdjl3d293MHI5TDBGcGh4S2gtTHpIWHBTRVZFLTJQMUpCaXlfMkxBOWJLNjJBdGZUR28yVjVYOUxBWDFXckhaTFNxQUZJWldLTmlsdG9LSzg4SEhCWUx5c2tWclZIeEoyeGxnSjE1bWkxVmFoZGs4bHl0eHRlZzh2OW5lSXd2T0szSnFvd3U5SHV2bE5xX3BvZExLT1l0SllkSEI0UWp2alBuR2Jmc29zT09jN1dVTFVUeWRmTzNGazB1T19xZnc0ejE1RjVDWjF2dVNDYjI1Z2tGSWRkUlhtbnFxMjRPcXNqSUFDMVo4bDZPdzVJZk1Rbi1HZ25YWnpuRlBhMHJSbFcybjVMbUFaY2wtMUdadUpHdklNemFlMkt3X2tpaXdrQkNJYXBPeVpCZ0hEYVd6Z05IcGFtekxFVEhmdy5ZWXpKamo5emlWeVF1SEgyT1dFSHNBLnJPNENuMWJDQVJuRTA2MnBNd2xxTWVvSVdJcmJrQjdUaTc0dUQyYnk4MDRFZ0VVcDhGTXhaWHpsSzZnNmtBM1BDMFJCSTFSa0dJM3g5V0o3Ql9aam1pRGw1enBtUFloNFlpemJfejd1LWtRYjF2S0dUWXE4S2kzdVhtYV9paVRLUGFIdmtlbURkNVAybk5Rdy1UcFVwVjE2VF9NT3JjeXhTWkxhQThPRU1DUGp6LWtIeDNzVEprOTNWTVdzVU1jNGNKdlIxUVVOaVVZT2pQZ2ZnR2loWmhqbU80SDktU1NFZ29oUktwdS1ab2ZPZ1QwNkR4ZDMwVFRheUtFX1QteFlqNkdSMk5ENldvS2ZvanlQOXBFTVM3b1hQdlhBcHVrRENlQl9pbVdJY1JqRFhqQURjS3NXTjBlQXVMLV90ZXJueF9oN1B3bEhxYkJHdDUzcWFTSGxpUThVVEl6a0psWHpDd2pHWHpwTk4zU3kyUktfcmcxekxZaVhabkRXTFJaVkdvd2psMVN3Q21hdE5vOFR2S252c2w1UEdDUmtUbFUzcnAtMUpfaHdENjVCMXhaYXV5X0Y0ZXBRcm1QSHB2bkpjbFk4NVV0Rk1mZVB6Nkg4S1A3RE45aEhSVU1zX3dDUEM5R0czRlp5WXlNTGJXLVRnT09felhxSkhmbGRzWFVtd2t6V2g1TVNSYXVGTURqX3E5a1lpTkRDVmxtLVl2SFREd1YyQUQwX1UyR3FOQzRfRjJLNHJERHlyUjVKTzRWV1pxQ3BiQ2J1bkhHVnlnS1QtY2RYWVg2dk9WM0hzQTk2NjRNMzdDZWxLcUI0LVgtMGhKUmhaakVFZVRyV3B2QWd0VlVJZEZPV2xjU0hSNHBDWjNGTTMxLWJkQW1tdHV6bWdqS1lOVVpIenVaRWdtOVBuM2Flc3VIbnc2ZzZyVEx4X3JPWkRENldWNW1MaDdOZU5EX3dkSjFSb0NrdVdrc180U0JtbWZvQkFRa2F6MGtULTNCRFB6bmVJVTFzNHBBZjRPR3FDeUJmWVdma2JJaHBFbVhKdV9ZVnZCU1BqXzZJQUNQR190Qk5LaVNaWV83Q0FqYzh6TEZiOUZVbXkyR3lwdS1qZGVrSzN5NlMxY3dqaDRPNEpYN2UwWUVNNUprbWRnRzg3a2pFTEo4eHAySENQR01hUG03Rk5LM2wyOWUwQVFlZUNUd1JCWVJhY21MS3g3XzFIU0dTZ1ZyNUhNTV81cUhVVzNPVEtUNldYOW5pMWNkbGpidEVwTFprMmcxeUNuQnY5b2VyTW5sQTdYMGZYNDVMUU1UV3c5X1RMWmFOTHg1X3BmeU94RHMyYnEwZDlaMDE2ZFlaMlc0VzZSUnFTSVRrX0tYY3U3Y0piYUF1ZUI4b251amkwYXR3VW8zVXBJbk1XYjNDbGh5X1pwNFFmcnhqMGQ2VW1BcDJwNVVnSHRHR2RTdmtrQ3JIYWZmaWZhRzlFOThCemg4M0VRdmwwSzBFRFAxMzNPM1dSektiZmdISVZXZkswUkFoc3ZsOW5YYXVnZFRNTUI1ZzBZQTN3d3BBeFNHZUg0OXhMTEliTEtZbFVfRWZqREZhTEFfMUhkVzhQZWxEOXJib2k2azZGcUJPQTBIMWRnM0Vqb0VLYlJWdFhleE1YVjBBWXR3MGdWenVISG5OTXNGb3pMal9RMlZHQzNXYnMtcFEwM2pyZjlITjJRWVJLTFdoYzhLcmQ3Q2FzSGtLUU13RTdUUXVPdVJRdnFXNWk2aldxSnZNOGRwRWNTRXBqLTJNcVR0SlJEdDFNUFhuY1BFa1FEazBOUlJQWHR5VHA2Qy1MTFF2UFUwR05YbE5YcFdJaGVZc2VRSldhanV1SlBFN1AtYWJRVnV0VThMYnJiLTFhWWtMYUZUOEZyWkItY1ZYVjFrUlFRek5qNEtwS2tmOTFOUzdiakFwbXVqYnhvUlFXeWdJMUJDZTZuZUhRbHl4NHY3Um5qNzB3TkI3UkFsVzZnLVFZbTZaYngxbnVHQjZPRlphZ093dWJhaWxRV25wQ1owVXlacUd0emVKenN3blR4SExnVHJIN1Fpc0VtaVl2U09RZ0Q2RmhqaFlMenVLXzM4aTJHZXJ2VUJ5MmJNZGZTM0FqY1B2a2xXOXFVXzBRa0V0X1ZUVEtjUTlZNVQ1YzkzckpVdXBNb1NSOU9PT2xldUpTY083bktFU0xyVEdRUDU4NWw2TVZMRmQ0Y1VHRktlVUFOODZjS2Jvd2ZLRG1ZNEF2X2FVUFVJMTV4Z255MnF3SGFBMDVJbE9EYm4waERwSmJaSldmREVsNjFvWFZlbHdnZXFFZll0RDJmTkZSV3VZeHJKY3Z3ZkZjVEtzTlQ1VHRucGRVeWowVko5SXZwc2NKYXJ3Qi1naVdmUzhGUFo0cEJISVdESWxQSmlwUFNHVi1CZnk0NTVqT1VoZEJPU0dGWTdkaVFoQjd0UVZndDF4bkFQbEd1TTU1d0NyR044NWpTcV80ZE9fcnBWVjMwOXl5MDg3MVo1b1RET2lZMHhseFRSSmNEbHhTczNmVFllLTR2TlRqQ3FlbHFaS1ZhOTJSVFlNdnRTckVXSnJGVjVDeGpmS2NULS1jRWExZWx3amxrWHByZ3YyVkpTaXBzUVBTZlprYzJfN3hBeURlb0dUM0RHN3V0NE1OOVNxRzV1LWFqYjhwS1o4X2dRaUlrRkU0dVNjUFNzT3BwNnZwSFpoV09tVUJYQkN6Z28zSUx6YVFPMzZTM0xScmdVV1I2ZDN0aXczRjVjcEI5alhrS2hOTzVfMGJ6d0JBVGJ1a3p1QWpJYTF1b3VjYWRCYjBHeHFITkxXb3RRLU9IelhDTFBBZ21fS3QzbmN6eVFQMmhDSmVsVjRvcUxPTk1MU3NXSDBsRzNpWnNLdzBZclp2czZXdy1rLS11SloxaTFzVUMxOXltaTRsYVpOQXgwejNCeklnSFZ1am5yejUwS0hueHFZR0VhajRzdjBNeGVhcDd2T2dqbHc5MzB4T0FGOFNORHlrRUJ2QVZ6X0dVb0p3SnpKcWF0dWUtOEpKanE1cGt5aklZWUd4YXdLM1RodFZadnFKNzlCQUJWX3NxM2RJVldGYWRiOEJkTklCRmI5SFZsMmc4T19zT0puUUtIU2E0amVxMEtwb0FLVE9FTEg3Q2p3aG02VGVBNThNWnpnTGdtdVZBdE9DT1JHak9fa2FUN0ZLWDZZeVBYUzlEaTVLRVA5U1EyZFlDUWxFSXpnYkR4VzJJZXVkdEcwTW5nRngxUDdXZ21SUXZYNVdncDJkMUtvWlNMZ1ZzZVZBX3NzTTRYLTEtbUxJVHJWYXI3OVJWN2xNbTVUSURCYXZmTnZIYzFkX2Z1Vlc0SW9tM2JuMnMxTkZhVDFKS2RSejJYa0lhU0g5cFRzQU1qdm1YWjFpWDRxOHZxN3lPeUh5YzlCMHE0WUxMZTV6ZER5T2RWNGV4U0U2NllfVmo0LTE4cTZua0hSN0IxM3Q0VEpxZXJyaUxiSUFZaWNIYzNOMlZQaVVhazFudi1GRUtBYlZoejZKV3lEZk1nMGtreVR6Vlg3UHlVOW95RFFsenNlNzFvaTd4bS1EU0c1ZnZscnRkUWdOa3NWVDJpOHl0V3VWTG1QTzhwNmRKaEhiMVpRNTFqV3o0TWNvb2pud0JSRmhQczhSbW1DcEYyTkx5UnBTaGExcDkwRDJrWFQtLThtQ0NkQlgyT1lRcmlMWnYtOHpqVkhJWndBbEdmTlBqN3lZRkxFZktNR1VwdmdtMDg1T1l4WDFkMV95U05EVlJEWTBtX25OaEZITzNmeHFuQlB5bHU2cjVDNXp3dUx6ZVFiRENuQU1XSDA1Q2I5Vk9VeXcwSWd2LUw4eUpZUGJiaTZvOFdsU0tlT0cxbVY2ZEd5QlBtOU5mdlJXMTJtZHQxX1RKVVphY1VYeW5SaTJFN0NmQXJrQjhURlJaU2RXT3NEMFUxSlNKQzlyanFKME5xVWlncE9JdUFOYkJGNDdoWnFuQzRiM2JNNDQ0MXptX1JRLXdoVlA1aENHOGE0UElXeDQxb3hfVHN5Ul9IRy1MV3BLSUY4VVptaXp3T19UUFRWOUU1Y1dOVEdnMFJlRU1qdXNMWk55eWJ6d01XOVkzT2pYTXZzdXNERGp4UUo4eVlkdnEyTW1STjhYSUZXeHBBS09YeTBFOE55aVA2MDVFTWlidm0yVVJBQzZORFRKTk1fNVRDVURsRmkxTWd4UlV2Ql96WGpwMk93SWRpM3dtSHFMcWJScUxLcmthcmRFeXp4YzdUTzhxM1BfQnhFcjdoak5HbUctY2JBSnd4UVV4Mk5UaHFZVEZLWTNYMWhPSFpZMzB0NjNYQlhWZl9nZW9QN0ttRG9WOElDQzVXdEJ6ODc1VTdRNWYxX0NUb1NkcmJaOW1uRGg3VEc1QUxKdEVsdGhiSVgyS1A3TnZtYV9CLVVSdloxUGZzSFhpZ3U2VTJQbWhaWEtpbFdEeFhlTnZzWWxmM2ZHeVZRdW8wblZlZ0V3WjFmRGVVZzByQml4VUlrTXA1QTJFeVNoOEMxd01kVWhiTmkzOEoyZnUtT3cxcGVENnhEZV9XWjB1Q0pZYXFRSXhEaU10ZFF3aENFUXVnT2Q2emgtdXQtSXhMdE5TYjlUVHFUM1JBLW1vRDVkUF90M0Fka2FVd0xPM3RjYVlNLXBpR085NzJGOExwa05uTzEyaXN5WE9RNGdmYkFxMG04UWdGb2dQTkxkOEVPRHY0ZjljdG5SZ0tGa0JOV2tLT00zYjk3UG0yV2pFNVNBN0pnSGNLU2REaktGZ052TUhVZVdueHRXSzQ1YlJEbVFuaE1DbjhnTS1HU3VoamtoQ1lUTGFITnlVMW5tYWtVcVBKaXlNbV9FamtXaUhNa0xfU1RsdWl5c19QNG9qZzB0RDczal9FcnV3NEU0Z0QtNTFkV3IzZC1LMC0wQmVmN2IxbDBDQ1NGc2YxVS1zTERHcnF6cVFVLlczUlQwc01iVjlxVUlWSU1CTWxEN3c"}' headers: Accept: - application/json @@ -960,7 +960,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/restore?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":false,"created":1578965270,"updated":1578965280,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -969,7 +969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:34 GMT + - Tue, 14 Jan 2020 01:28:06 GMT expires: - '-1' pragma: @@ -1013,8 +1013,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/versions?api-version=7.0 response: body: - string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/70db930543df488ba8979f558c917656","attributes":{"enabled":true,"created":1578320952,"updated":1578320952,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test - type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/050deacf44924e2495fc1f69e9ab023d","attributes":{"enabled":true,"created":1578965265,"updated":1578965265,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}},{"contentType":"test + type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":false,"created":1578965270,"updated":1578965280,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -1023,7 +1023,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:36 GMT + - Tue, 14 Jan 2020 01:28:08 GMT expires: - '-1' pragma: @@ -1069,7 +1069,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ca390c555b99469da71e7e8eb2894e63","attributes":{"enabled":false,"created":1578320956,"updated":1578320967,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' + string: '{"contentType":"test type","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/b796b9bc604b4edeae0df01413bfeb4f","attributes":{"enabled":false,"created":1578965270,"updated":1578965280,"recoveryLevel":"Purgeable"},"tags":{"test":"foo","file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1078,7 +1078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:37 GMT + - Tue, 14 Jan 2020 01:28:10 GMT expires: - '-1' pragma: @@ -1131,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:39 GMT + - Tue, 14 Jan 2020 01:28:11 GMT expires: - '-1' pragma: @@ -1184,7 +1184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:41 GMT + - Tue, 14 Jan 2020 01:28:13 GMT expires: - '-1' pragma: @@ -1231,7 +1231,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/95f3787a16764420866c4f7ed74e937a","attributes":{"enabled":true,"created":1578320983,"updated":1578320983,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/f81a160af1d0439f8d0103c99aba09c6","attributes":{"enabled":true,"created":1578965296,"updated":1578965296,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1240,7 +1240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:43 GMT + - Tue, 14 Jan 2020 01:28:15 GMT expires: - '-1' pragma: @@ -1284,7 +1284,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/95f3787a16764420866c4f7ed74e937a","attributes":{"enabled":true,"created":1578320983,"updated":1578320983,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-8/f81a160af1d0439f8d0103c99aba09c6","attributes":{"enabled":true,"created":1578965296,"updated":1578965296,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1293,7 +1293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:44 GMT + - Tue, 14 Jan 2020 01:28:17 GMT expires: - '-1' pragma: @@ -1340,7 +1340,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/9350b4be360d48f7987485f2fca0af55","attributes":{"enabled":true,"created":1578320986,"updated":1578320986,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/00d7c6df156c417fa31b448f1b4092ce","attributes":{"enabled":true,"created":1578965299,"updated":1578965299,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' headers: cache-control: - no-cache @@ -1349,7 +1349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:46 GMT + - Tue, 14 Jan 2020 01:28:19 GMT expires: - '-1' pragma: @@ -1393,7 +1393,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/9350b4be360d48f7987485f2fca0af55","attributes":{"enabled":true,"created":1578320986,"updated":1578320986,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16le/00d7c6df156c417fa31b448f1b4092ce","attributes":{"enabled":true,"created":1578965299,"updated":1578965299,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16le"}}' headers: cache-control: - no-cache @@ -1402,7 +1402,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:47 GMT + - Tue, 14 Jan 2020 01:28:21 GMT expires: - '-1' pragma: @@ -1449,7 +1449,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/2dbca17ac778405cb2e7c37e97fc198b","attributes":{"enabled":true,"created":1578320990,"updated":1578320990,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/914788d62f084fc7a7086404f15d36d5","attributes":{"enabled":true,"created":1578965303,"updated":1578965303,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' headers: cache-control: - no-cache @@ -1458,7 +1458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:50 GMT + - Tue, 14 Jan 2020 01:28:22 GMT expires: - '-1' pragma: @@ -1502,7 +1502,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/2dbca17ac778405cb2e7c37e97fc198b","attributes":{"enabled":true,"created":1578320990,"updated":1578320990,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-utf-16be/914788d62f084fc7a7086404f15d36d5","attributes":{"enabled":true,"created":1578965303,"updated":1578965303,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"utf-16be"}}' headers: cache-control: - no-cache @@ -1511,7 +1511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:52 GMT + - Tue, 14 Jan 2020 01:28:24 GMT expires: - '-1' pragma: @@ -1558,7 +1558,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/2fa1d0b7bcca417fa59f2c98f0b2377d","attributes":{"enabled":true,"created":1578320994,"updated":1578320994,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/a8bb0493bba54958b43913c72b21b836","attributes":{"enabled":true,"created":1578965306,"updated":1578965306,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' headers: cache-control: - no-cache @@ -1567,7 +1567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:53 GMT + - Tue, 14 Jan 2020 01:28:26 GMT expires: - '-1' pragma: @@ -1611,7 +1611,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/?api-version=7.0 response: body: - string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/2fa1d0b7bcca417fa59f2c98f0b2377d","attributes":{"enabled":true,"created":1578320994,"updated":1578320994,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' + string: '{"value":"TestSecretTestSecretTestSecretTestSecret\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-ascii/a8bb0493bba54958b43913c72b21b836","attributes":{"enabled":true,"created":1578965306,"updated":1578965306,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"ascii"}}' headers: cache-control: - no-cache @@ -1620,7 +1620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:56 GMT + - Tue, 14 Jan 2020 01:28:27 GMT expires: - '-1' pragma: @@ -1667,7 +1667,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64?api-version=7.0 response: body: - string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/25c0284259f2408a96466a637370ebb3","attributes":{"enabled":true,"created":1578320998,"updated":1578320998,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' + string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/f424528bc0bf401ca92b92419482202d","attributes":{"enabled":true,"created":1578965310,"updated":1578965310,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' headers: cache-control: - no-cache @@ -1676,7 +1676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:57 GMT + - Tue, 14 Jan 2020 01:28:30 GMT expires: - '-1' pragma: @@ -1720,7 +1720,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/?api-version=7.0 response: body: - string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/25c0284259f2408a96466a637370ebb3","attributes":{"enabled":true,"created":1578320998,"updated":1578320998,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' + string: '{"value":"VGVzdFNlY3JldFRlc3RTZWNyZXRUZXN0U2VjcmV0VGVzdFNlY3JldA0K\n","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-base64/f424528bc0bf401ca92b92419482202d","attributes":{"enabled":true,"created":1578965310,"updated":1578965310,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"base64"}}' headers: cache-control: - no-cache @@ -1729,7 +1729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:59 GMT + - Tue, 14 Jan 2020 01:28:31 GMT expires: - '-1' pragma: @@ -1776,7 +1776,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex?api-version=7.0 response: body: - string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/26abc5c6d6dd4efa975d0c25642362b5","attributes":{"enabled":true,"created":1578321002,"updated":1578321002,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' + string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/fa001bcf53e9408eaaff096346c042c8","attributes":{"enabled":true,"created":1578965314,"updated":1578965314,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' headers: cache-control: - no-cache @@ -1785,7 +1785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:01 GMT + - Tue, 14 Jan 2020 01:28:33 GMT expires: - '-1' pragma: @@ -1829,7 +1829,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/?api-version=7.0 response: body: - string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/26abc5c6d6dd4efa975d0c25642362b5","attributes":{"enabled":true,"created":1578321002,"updated":1578321002,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' + string: '{"value":"546573745365637265745465737453656372657454657374536563726574546573745365637265740d0a","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/download-hex/fa001bcf53e9408eaaff096346c042c8","attributes":{"enabled":true,"created":1578965314,"updated":1578965314,"recoveryLevel":"Purgeable"},"tags":{"file-encoding":"hex"}}' headers: cache-control: - no-cache @@ -1838,7 +1838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:02 GMT + - Tue, 14 Jan 2020 01:28:35 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml index 2461cab5a14..ad4d399e32c 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:25:53 GMT + - Tue, 14 Jan 2020 01:21:50 GMT duration: - - '2679114' + - '2531574' expires: - '-1' ocp-aad-diagnostics-server-name: - - 1xKkKNXlZH9/UfFZHBaUKUlYOYWLeRVZUJpmsmgJSbc= + - jr8yj9FL/uTgHXWOfs1K3qZJqXzBMlORaqSHWNV+91s= ocp-aad-session-key: - - kyafPJ9rDUOlkgyQaLsOkHHDLgIVCLFLjMIoqxRbBPdaHjNPA0wKT1ntUcUbd3oufogK3OoZz60TNSomX2Ist3SY1vy8eL5AUQlYcSsH6On5WKl5rRAWgStj_V9OlAoPb6lmaVCJGL82rTvoXBrZ0CitJnUY_APe8aO6kW0nd2c.KkbCyDwZ6MQAdjarS7-gOKFq3WCCdj00mm9XqNpQdo0 + - Ejc_2O5sUtAsDmDvWgxTlqby6bL1L_61CcAeYATCqdY7O8SHHrkqZwRdJzIrc03TzXJOFHz_LRTwwUihzghJkfqhaVTR4tVGGupaPjf4q0tqzeNGHSqVbaf55QItMvAz.BKAo6o-dTp-RYTN6Z2hZyeJr_TfPOofaY8U2DAZ_RgY pragma: - no-cache request-id: - - 05a97512-d73f-423e-922f-6248bba6b0f4 + - 9af5fdae-e487-413f-a432-e10642055846 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:00 GMT + - Tue, 14 Jan 2020 01:21:59 GMT expires: - '-1' pragma: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:31 GMT + - Tue, 14 Jan 2020 01:22:30 GMT expires: - '-1' pragma: @@ -202,16 +202,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","name":"yugangwbyok","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certbk3fay3vvkixlzogwucbyymtjdhws2ojd47jesq2q6mb6k4gty7wp/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-feryep","name":"cli-test-keyvault-feryep","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdpwadtwvnxjrnmtb5v72hs6kdiwou6qd2rnz6ep7dzaci466nyzyeehx/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zewjks","name":"cli-test-keyvault-zewjks","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadefgmduqfddf3kdgizlvjevoxulnr3czgwk7cpapgkcv6cpdunl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-cdiosz","name":"cli-test-keyvault-cdiosz","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","name":"yugangw30-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '2766' + - '2369' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:32 GMT + - Tue, 14 Jan 2020 01:22:31 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:34 GMT + - Tue, 14 Jan 2020 01:22:32 GMT expires: - '-1' pragma: @@ -314,7 +314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:55 GMT + - Tue, 14 Jan 2020 01:22:54 GMT expires: - '-1' pragma: @@ -363,7 +363,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ba6b66a51f9d466c93e71c791f4c9f61","attributes":{"enabled":true,"created":1578964976,"updated":1578964976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -372,7 +372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:57 GMT + - Tue, 14 Jan 2020 01:22:56 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578964978,"scheduledPurgeDate":1586740978,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ba6b66a51f9d466c93e71c791f4c9f61","attributes":{"enabled":true,"created":1578964976,"updated":1578964976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -427,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:59 GMT + - Tue, 14 Jan 2020 01:22:57 GMT expires: - '-1' pragma: @@ -471,175 +471,16 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets?api-version=7.0 response: body: - string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + string: '{"value":[],"nextLink":null}' headers: cache-control: - no-cache content-length: - - '390' + - '28' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets?maxresults=10&api-version=7.0 - response: - body: - string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' - headers: - cache-control: - - no-cache - content-length: - - '390' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:27:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1?api-version=7.0 - response: - body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' - headers: - cache-control: - - no-cache - content-length: - - '395' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:27:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1?api-version=7.0 - response: - body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320820,"scheduledPurgeDate":1586096820,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/320785ef87f94bcaa183b6f5025e7f37","attributes":{"enabled":true,"created":1578320818,"updated":1578320818,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' - headers: - cache-control: - - no-cache - content-length: - - '395' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:27:26 GMT + - Tue, 14 Jan 2020 01:23:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml index 2f6d6bba20b..86a0b5088bc 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:28:44 GMT + - Tue, 14 Jan 2020 01:23:25 GMT duration: - - '2427486' + - '2389455' expires: - '-1' ocp-aad-diagnostics-server-name: - - XwM9J6mYB/CvvQX3xOj9NMCXa2qCyINEEs06ms8zTaI= + - 08YU0IxZ9gKU1vId0ceklYsBswf3+92fGse+Uu+6oFI= ocp-aad-session-key: - - 5jrPTi2bDVmW112EJGsfPmlZuWUSWZr_j7xlOdgaL3WrRjYpJcmk1gKDftyKGmqFfQ5XtkXE6NugZ4vyZ33232lheO9f1qLEC5dyXVpPcDp6GqtqlatVuRAxQvpVWg17DVKQFFARVy6F9j1F34QTMwBh3w4C4kXEAI-BEak7OQo.WAkV_J8JaVtnH-ampvYoQBUeSKu3n2UMG5meA0xQImc + - rZUv-5t9MNMo3NHNHTtCLy8-vewdzsiYDcyY2WfPgVi6oU_v3bUyW5tXVj9iz0B1GYRpzcyVFphtm6Za2mq23OnABfrQTJXwIRol7R5V3e2NKfPTsyPRrxcxe-bEKH3Lv3HxKWw4Z32laHopAadtF7ORQZUffcaHKjbArIsT5Dk.FvTUxwtFdb_B69kKZN3TxFUIja0ypV6GIrvHSiACm1Y pragma: - no-cache request-id: - - 484e469b-9dee-41ed-9999-c090e4bba87a + - c4249f97-a425-47ba-adf4-c11954b9fd75 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:51 GMT + - Tue, 14 Jan 2020 01:23:35 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-powered-by: - ASP.NET status: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:23 GMT + - Tue, 14 Jan 2020 01:24:07 GMT expires: - '-1' pragma: @@ -202,16 +202,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_safnmh7vestt34i3psj7abuswurmhupovf6ry7dr3crtyrbq6mq6parx6/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dtfdy7","name":"cli-test-keyvault-dtfdy7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","name":"yugangwbyok","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certbk3fay3vvkixlzogwucbyymtjdhws2ojd47jesq2q6mb6k4gty7wp/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-feryep","name":"cli-test-keyvault-feryep","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_saxgau4bydccjibwzr2wfspkrfubvrgqest4vbwj52ltuk6sjnuhii7sa/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-fa22px","name":"cli-test-keyvault-fa22px","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret5yhunrxgffpbqtbiesczpnqmfdbqxjkzb2rd7ychconne3iherr/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-pgndvw","name":"cli-test-keyvault-pgndvw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5xwvxujgqsmaygl3epc6r75gcu5cjetkecvw43ksukxvzdhmqj/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tz6oq","name":"cli-test-keyvault-3tz6oq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cfe5iai5q7lhl3l233jrs4wt7ky543gdmrojqsyeryb3rhg5qbv5lm3t55y2xjqb/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-hyiplwf6d67h","name":"sfrp-cli-kv-hyiplwf6d67h","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","name":"yugangw30-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '3695' + - '2992' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:25 GMT + - Tue, 14 Jan 2020 01:24:08 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:26 GMT + - Tue, 14 Jan 2020 01:24:09 GMT expires: - '-1' pragma: @@ -327,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:30 GMT + - Tue, 14 Jan 2020 01:24:11 GMT expires: - '-1' pragma: @@ -347,7 +347,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' x-powered-by: - ASP.NET status: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:32 GMT + - Tue, 14 Jan 2020 01:24:13 GMT expires: - '-1' pragma: @@ -434,7 +434,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/c1cad5d669ef4e4a98d54c7284ae308d","attributes":{"enabled":true,"created":1578320973,"updated":1578320973,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f482e4b7438440eea6afa2aaaf6b1959","attributes":{"enabled":true,"created":1578965054,"updated":1578965054,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -443,7 +443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:32 GMT + - Tue, 14 Jan 2020 01:24:13 GMT expires: - '-1' pragma: @@ -489,7 +489,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/5a9c59225d774707bc19a82125944ec5","attributes":{"enabled":true,"created":1578320976,"updated":1578320976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/c73d61216f064d119f18f9c4c64ea554","attributes":{"enabled":true,"created":1578965055,"updated":1578965055,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:35 GMT + - Tue, 14 Jan 2020 01:24:16 GMT expires: - '-1' pragma: @@ -544,7 +544,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key1/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/fae13a9e567d4341bf82f96a7ccf3cfc","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"jhlBvJb_KBBcjuN9QoUjMxC7I9KJJN5RCaGFDgkYES4y96x7RbIS-QnywklCG9thdpYAMFX-N50hwK37Ytry_lOpmDLLL9jqDHhRnOU9ooh5u1nKiNC4vfHMGuHP8Wix76KoyHhiddFzCDJ-2LduPjcZNEt5k8ErI064-griLWsuzGRmeRYhPduQDUvyv3MrJP7P11D_2Qe_zLxoOd-b-wr6lhL9aEPId92iRxF0tOY3iGfbQrQIuQ2KlqRrQ67jVJU4hpgAYslWFARG4DnHshCrXlKuVHL4HzMum_YYWJjbAqTceHQ_VpL2gyEZfI_DmRJ2mCR_8V1Gb0opaqlMvw","e":"AQAB"},"attributes":{"enabled":true,"created":1578320978,"updated":1578320978,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/cc49ed8ae0be4947b5c1f17a12ff6cdd","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"wlGMgA0g9QO7qhHIl3wplrAytNTcs3FS74Zd11HtNWackfwNNUheE__tL2hCS2C7U8yVqzA2l8y198H6i-9YGc8JNAZNYqWsO5Q1xzS382FOO7AighqU-iUgjWmXeNPqJ804zqzpV-7ZNMFtjI6pVZUgFTndqz0H9aMiu4nqh4X2BYSjE-eQ4JvdNYAnYNY8NodFFr7LxBH-3KsHvBgkOYoYZ04-eaVHY38ItjaqNoeJfJSrw2FtmkeRe-ZmJTMOshwEujO4L_zLWaQWb6MlXZkzIt3CUP8OoTqmDEB5SGcs2LK_9BLQcAuyf2XJCx4sbcAmg_7H6GTci14eqtWzsw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965057,"updated":1578965057,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:37 GMT + - Tue, 14 Jan 2020 01:24:17 GMT expires: - '-1' pragma: @@ -599,7 +599,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key2/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/e38f2e32436948f99e9c0a762996bd39","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"p1R6c2pfIreP3yL5w22f75GAV-hvKKYwbcPug-HZH9lfvaMKK08N2tKOfGsfutjHA3p3MjYZ8RmwtHyWE-09_KdZTdb_2iPsOrkRMuQQDmlA5rgcAfp5lcSERf_dXz_0R9Tj-HQGhHZqLTucyo6KZB8zkeXC6Nrw2RP9GWLaPu1OObfZWqAtq8Xi-bwGJHHeMKp9wbESshBhEY0EYGnJ77zLmoRYHz9KtMB0GeTJWvElzB3-cTH4WQvbGocHBBa2pjrILm3RChwShsdoI32Pvw612bHrjXqo1_lK40bbJ_e1n3UzJKiAD97_KYU8tetxv1d5lzewRQZHze8bd8kLHQ","e":"AQAB"},"attributes":{"enabled":true,"created":1578320980,"updated":1578320980,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/1873c4b98d6b4a75b38a1147eb4ea6b0","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vXGc5mwUUIRKeLougzXO9_-GNCVkjQtIMlwf5jjU52eGrEDME0ubM6EWJaY4fKbemOhLdzqV9dTc86CL7Y5W8OPcHdIPnTATSrxA1H9KZvWBydXciHTaWtlK24W05-rmDnj0gn_qxSGe92caEkCn10sdAg28bX4q8hoy8k18N_C_L60kFoPe9a3zPW4reRvw_reDYeYq6EXjDGvHsRcoJUKRvNhU0FVUAvq9q9FCweh9AUmYywVJ55DiT3WpzCkk7Fj_Me_zGmdmNtkGgGx_PrnHfmentGZjSv9m_pqzbGJZvGkqRNtMrB4vkvwEs_aXRoib_sq15rsGSWFFh5zGDw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965059,"updated":1578965059,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -608,7 +608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:39 GMT + - Tue, 14 Jan 2020 01:24:18 GMT expires: - '-1' pragma: @@ -659,8 +659,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/3333518331eb4b9780e41081d27c37ad","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/3333518331eb4b9780e41081d27c37ad","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/3333518331eb4b9780e41081d27c37ad","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320982,"updated":1578320982,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320982,"updated":1578320982}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/77158610e8af47bbb66456cce7bb39be","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/77158610e8af47bbb66456cce7bb39be","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/77158610e8af47bbb66456cce7bb39be","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965061,"updated":1578965061,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965061,"updated":1578965061}}}' headers: cache-control: - no-cache @@ -669,7 +669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:42 GMT + - Tue, 14 Jan 2020 01:24:21 GMT expires: - '-1' pragma: @@ -720,8 +720,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/07dcf52496854d9f816255550f9563b3","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/07dcf52496854d9f816255550f9563b3","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/07dcf52496854d9f816255550f9563b3","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320984,"updated":1578320984,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320984,"updated":1578320984}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/0c6236b8314e42b8ba6abfb59539121a","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/0c6236b8314e42b8ba6abfb59539121a","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/0c6236b8314e42b8ba6abfb59539121a","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965064,"updated":1578965064,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965064,"updated":1578965064}}}' headers: cache-control: - no-cache @@ -730,7 +730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:44 GMT + - Tue, 14 Jan 2020 01:24:23 GMT expires: - '-1' pragma: @@ -776,7 +776,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578320987,"scheduledPurgeDate":1586096987,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/c1cad5d669ef4e4a98d54c7284ae308d","attributes":{"enabled":true,"created":1578320973,"updated":1578320973,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578965066,"scheduledPurgeDate":1586741066,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f482e4b7438440eea6afa2aaaf6b1959","attributes":{"enabled":true,"created":1578965054,"updated":1578965054,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -785,7 +785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:46 GMT + - Tue, 14 Jan 2020 01:24:26 GMT expires: - '-1' pragma: @@ -831,7 +831,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret2","deletedDate":1578320988,"scheduledPurgeDate":1586096988,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/5a9c59225d774707bc19a82125944ec5","attributes":{"enabled":true,"created":1578320976,"updated":1578320976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret2","deletedDate":1578965068,"scheduledPurgeDate":1586741068,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/c73d61216f064d119f18f9c4c64ea554","attributes":{"enabled":true,"created":1578965055,"updated":1578965055,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -840,7 +840,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:48 GMT + - Tue, 14 Jan 2020 01:24:28 GMT expires: - '-1' pragma: @@ -886,7 +886,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1","deletedDate":1578320991,"scheduledPurgeDate":1586096991,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/fae13a9e567d4341bf82f96a7ccf3cfc","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"jhlBvJb_KBBcjuN9QoUjMxC7I9KJJN5RCaGFDgkYES4y96x7RbIS-QnywklCG9thdpYAMFX-N50hwK37Ytry_lOpmDLLL9jqDHhRnOU9ooh5u1nKiNC4vfHMGuHP8Wix76KoyHhiddFzCDJ-2LduPjcZNEt5k8ErI064-griLWsuzGRmeRYhPduQDUvyv3MrJP7P11D_2Qe_zLxoOd-b-wr6lhL9aEPId92iRxF0tOY3iGfbQrQIuQ2KlqRrQ67jVJU4hpgAYslWFARG4DnHshCrXlKuVHL4HzMum_YYWJjbAqTceHQ_VpL2gyEZfI_DmRJ2mCR_8V1Gb0opaqlMvw","e":"AQAB"},"attributes":{"enabled":true,"created":1578320978,"updated":1578320978,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1","deletedDate":1578965070,"scheduledPurgeDate":1586741070,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/cc49ed8ae0be4947b5c1f17a12ff6cdd","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"wlGMgA0g9QO7qhHIl3wplrAytNTcs3FS74Zd11HtNWackfwNNUheE__tL2hCS2C7U8yVqzA2l8y198H6i-9YGc8JNAZNYqWsO5Q1xzS382FOO7AighqU-iUgjWmXeNPqJ804zqzpV-7ZNMFtjI6pVZUgFTndqz0H9aMiu4nqh4X2BYSjE-eQ4JvdNYAnYNY8NodFFr7LxBH-3KsHvBgkOYoYZ04-eaVHY38ItjaqNoeJfJSrw2FtmkeRe-ZmJTMOshwEujO4L_zLWaQWb6MlXZkzIt3CUP8OoTqmDEB5SGcs2LK_9BLQcAuyf2XJCx4sbcAmg_7H6GTci14eqtWzsw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965057,"updated":1578965057,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -895,7 +895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:51 GMT + - Tue, 14 Jan 2020 01:24:29 GMT expires: - '-1' pragma: @@ -941,7 +941,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key2","deletedDate":1578320993,"scheduledPurgeDate":1586096993,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/e38f2e32436948f99e9c0a762996bd39","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"p1R6c2pfIreP3yL5w22f75GAV-hvKKYwbcPug-HZH9lfvaMKK08N2tKOfGsfutjHA3p3MjYZ8RmwtHyWE-09_KdZTdb_2iPsOrkRMuQQDmlA5rgcAfp5lcSERf_dXz_0R9Tj-HQGhHZqLTucyo6KZB8zkeXC6Nrw2RP9GWLaPu1OObfZWqAtq8Xi-bwGJHHeMKp9wbESshBhEY0EYGnJ77zLmoRYHz9KtMB0GeTJWvElzB3-cTH4WQvbGocHBBa2pjrILm3RChwShsdoI32Pvw612bHrjXqo1_lK40bbJ_e1n3UzJKiAD97_KYU8tetxv1d5lzewRQZHze8bd8kLHQ","e":"AQAB"},"attributes":{"enabled":true,"created":1578320980,"updated":1578320980,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key2","deletedDate":1578965072,"scheduledPurgeDate":1586741072,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/1873c4b98d6b4a75b38a1147eb4ea6b0","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vXGc5mwUUIRKeLougzXO9_-GNCVkjQtIMlwf5jjU52eGrEDME0ubM6EWJaY4fKbemOhLdzqV9dTc86CL7Y5W8OPcHdIPnTATSrxA1H9KZvWBydXciHTaWtlK24W05-rmDnj0gn_qxSGe92caEkCn10sdAg28bX4q8hoy8k18N_C_L60kFoPe9a3zPW4reRvw_reDYeYq6EXjDGvHsRcoJUKRvNhU0FVUAvq9q9FCweh9AUmYywVJ55DiT3WpzCkk7Fj_Me_zGmdmNtkGgGx_PrnHfmentGZjSv9m_pqzbGJZvGkqRNtMrB4vkvwEs_aXRoib_sq15rsGSWFFh5zGDw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965059,"updated":1578965059,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -950,7 +950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:53 GMT + - Tue, 14 Jan 2020 01:24:31 GMT expires: - '-1' pragma: @@ -996,8 +996,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1","deletedDate":1578320995,"scheduledPurgeDate":1586096995,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/3333518331eb4b9780e41081d27c37ad","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/3333518331eb4b9780e41081d27c37ad","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/3333518331eb4b9780e41081d27c37ad","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320982,"updated":1578320982,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320982,"updated":1578320982}}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1","deletedDate":1578965074,"scheduledPurgeDate":1586741074,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/77158610e8af47bbb66456cce7bb39be","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/77158610e8af47bbb66456cce7bb39be","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/77158610e8af47bbb66456cce7bb39be","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965061,"updated":1578965061,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965061,"updated":1578965061}}}' headers: cache-control: - no-cache @@ -1006,7 +1006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:54 GMT + - Tue, 14 Jan 2020 01:24:33 GMT expires: - '-1' pragma: @@ -1052,8 +1052,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2","deletedDate":1578320997,"scheduledPurgeDate":1586096997,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/07dcf52496854d9f816255550f9563b3","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/07dcf52496854d9f816255550f9563b3","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/07dcf52496854d9f816255550f9563b3","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320984,"updated":1578320984,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320984,"updated":1578320984}}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2","deletedDate":1578965076,"scheduledPurgeDate":1586741076,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/0c6236b8314e42b8ba6abfb59539121a","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/0c6236b8314e42b8ba6abfb59539121a","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/0c6236b8314e42b8ba6abfb59539121a","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965064,"updated":1578965064,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965064,"updated":1578965064}}}' headers: cache-control: - no-cache @@ -1062,7 +1062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:57 GMT + - Tue, 14 Jan 2020 01:24:35 GMT expires: - '-1' pragma: @@ -1108,7 +1108,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1/recover?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/c1cad5d669ef4e4a98d54c7284ae308d","attributes":{"enabled":true,"created":1578320973,"updated":1578320973,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f482e4b7438440eea6afa2aaaf6b1959","attributes":{"enabled":true,"created":1578965054,"updated":1578965054,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1117,7 +1117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:19 GMT + - Tue, 14 Jan 2020 01:24:57 GMT expires: - '-1' pragma: @@ -1163,7 +1163,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1/recover?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/fae13a9e567d4341bf82f96a7ccf3cfc","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"jhlBvJb_KBBcjuN9QoUjMxC7I9KJJN5RCaGFDgkYES4y96x7RbIS-QnywklCG9thdpYAMFX-N50hwK37Ytry_lOpmDLLL9jqDHhRnOU9ooh5u1nKiNC4vfHMGuHP8Wix76KoyHhiddFzCDJ-2LduPjcZNEt5k8ErI064-griLWsuzGRmeRYhPduQDUvyv3MrJP7P11D_2Qe_zLxoOd-b-wr6lhL9aEPId92iRxF0tOY3iGfbQrQIuQ2KlqRrQ67jVJU4hpgAYslWFARG4DnHshCrXlKuVHL4HzMum_YYWJjbAqTceHQ_VpL2gyEZfI_DmRJ2mCR_8V1Gb0opaqlMvw","e":"AQAB"},"attributes":{"enabled":true,"created":1578320978,"updated":1578320978,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/cc49ed8ae0be4947b5c1f17a12ff6cdd","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"wlGMgA0g9QO7qhHIl3wplrAytNTcs3FS74Zd11HtNWackfwNNUheE__tL2hCS2C7U8yVqzA2l8y198H6i-9YGc8JNAZNYqWsO5Q1xzS382FOO7AighqU-iUgjWmXeNPqJ804zqzpV-7ZNMFtjI6pVZUgFTndqz0H9aMiu4nqh4X2BYSjE-eQ4JvdNYAnYNY8NodFFr7LxBH-3KsHvBgkOYoYZ04-eaVHY38ItjaqNoeJfJSrw2FtmkeRe-ZmJTMOshwEujO4L_zLWaQWb6MlXZkzIt3CUP8OoTqmDEB5SGcs2LK_9BLQcAuyf2XJCx4sbcAmg_7H6GTci14eqtWzsw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965057,"updated":1578965057,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -1172,7 +1172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:21 GMT + - Tue, 14 Jan 2020 01:25:00 GMT expires: - '-1' pragma: @@ -1218,8 +1218,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1/recover?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/3333518331eb4b9780e41081d27c37ad","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/3333518331eb4b9780e41081d27c37ad","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/3333518331eb4b9780e41081d27c37ad","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578320982,"updated":1578320982,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578320982,"updated":1578320982}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/77158610e8af47bbb66456cce7bb39be","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/77158610e8af47bbb66456cce7bb39be","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/77158610e8af47bbb66456cce7bb39be","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965061,"updated":1578965061,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965061,"updated":1578965061}}}' headers: cache-control: - no-cache @@ -1228,7 +1228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:23 GMT + - Tue, 14 Jan 2020 01:25:01 GMT expires: - '-1' pragma: @@ -1279,7 +1279,7 @@ interactions: cache-control: - no-cache date: - - Mon, 06 Jan 2020 14:30:26 GMT + - Tue, 14 Jan 2020 01:25:03 GMT expires: - '-1' pragma: @@ -1330,7 +1330,7 @@ interactions: cache-control: - no-cache date: - - Mon, 06 Jan 2020 14:30:28 GMT + - Tue, 14 Jan 2020 01:25:05 GMT expires: - '-1' pragma: @@ -1376,12 +1376,17 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2?api-version=7.0 response: body: - string: '' + string: '{"error":{"code":"Conflict","message":"Certificate is currently being + deleted.","innererror":{"code":"ObjectIsBeingDeleted"}}}' headers: cache-control: - no-cache + content-length: + - '126' + content-type: + - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:30 GMT + - Tue, 14 Jan 2020 01:25:08 GMT expires: - '-1' pragma: @@ -1403,1417 +1408,6 @@ interactions: x-powered-by: - ASP.NET status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault delete - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4007' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:30:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - keyvault delete - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 06 Jan 2020 14:30:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-deletes: - - '14997' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault recover - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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.KeyVault/deletedVaults?api-version=2018-02-14 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/yugangwncu-kv","name":"yugangwncu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwncu/providers/Microsoft.KeyVault/vaults/yugangwncu-kv","location":"northcentralus","tags":{},"deletionDate":"2020-01-04T17:11:31Z","scheduledPurgeDate":"2020-04-03T17:11:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:30:34Z","scheduledPurgeDate":"2020-04-05T14:30:34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-dgs3ww","name":"cli-test-keyvault-dgs3ww","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretpsvxdcwyihjpliaox62f5jbkgkkx4p4jhvja7ajaivpshjohcta/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgs3ww","location":"westus","tags":{},"deletionDate":"2020-01-06T14:28:03Z","scheduledPurgeDate":"2020-04-05T14:28:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-glkolr","name":"cli-test-keyvault-glkolr","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretn4dexdawjt7z6l74otluozv6mg4jvgpswu3rbbrbvnjkxcbghve/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-glkolr","location":"westus","tags":{},"deletionDate":"2020-01-05T08:50:14Z","scheduledPurgeDate":"2020-04-04T08:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-p6umsyofnyo","name":"cli-keyvault-p6umsyofnyo","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtfnltd4bbrg5iqe4fai7xlfcolyb5bwwzftqsbgpegr3h6udufjlap/providers/Microsoft.KeyVault/vaults/cli-keyvault-p6umsyofnyo","location":"westus","tags":{},"deletionDate":"2019-12-31T02:23:58Z","scheduledPurgeDate":"2020-03-30T02:23:58Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","location":"westus","tags":{},"deletionDate":"2019-12-27T17:27:31Z","scheduledPurgeDate":"2020-03-26T17:27:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","location":"westus","tags":{},"deletionDate":"2019-12-27T17:25:48Z","scheduledPurgeDate":"2020-03-26T17:25:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-lgqxlozvqvm7qp","name":"vault-lgqxlozvqvm7qp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_ghrkiwtzwo6lt6hsc47lnlf3s7s3qoiqwzrohk4kdwl2qp/providers/Microsoft.KeyVault/vaults/vault-lgqxlozvqvm7qp","location":"westcentralus","tags":{},"deletionDate":"2020-01-02T11:38:52Z","scheduledPurgeDate":"2020-04-01T11:38:52Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu2-kv","name":"yugangwcu2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.KeyVault/vaults/yugangwcu2-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu-kv","name":"yugangwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.KeyVault/vaults/yugangwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwwcu-kv","name":"yugangwwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwcu/providers/Microsoft.KeyVault/vaults/yugangwwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-30T17:14:10Z","scheduledPurgeDate":"2020-03-29T17:14:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan2-kv","name":"yugangwcan2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan2/providers/Microsoft.KeyVault/vaults/yugangwcan2-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-30T17:13:53Z","scheduledPurgeDate":"2020-03-29T17:13:53Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-27T17:13:49Z","scheduledPurgeDate":"2020-03-26T17:13:49Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbtowFIbfBU27GsUJyUYrVVOCHRrWczwbOxXcUQiUmEJF6Jp46rvvpKr2Dq1yEUWyEunT9%2f352zuUzfl2d3B17%2bpvD6U2N2OBRie3dta76j2cz0%2f11WDwuDwst%2bVjeThfLP3zqbxYHR8H9fN9vTrtns6746EesPtg8z36EfSD%2bw3rR%2bv1sr8sV8P%2b6v4y%2fBFu2GV8yQZPp%2bOf3bo81QPYrU7H%2brg5X%2fwq22L5vD8P1uW%2bPJfrt4f65%2fJp1%2f9DJ%2bnl1yELRn0W9oPo65fa0RePrjxcW1fc6WJqtNWZEYWd2Ut5a%2fd2w%2fMAzLbFaj7EyjLgwiMXkTTFCHx36TE9M8m1QKFTLaZjRefQLFJ0Rab8fAhW9b71ZtKaG5HMTDLLk4%2bOQ3LCYaCV3MZgcoZ8MdI8eYFqG6LLCMk2Qp40aPapciJUZh6jswEhjHVlCUdHws7Cjw8iD9DMPfB5ADwnN%2fbkxXSsXcHRgkefcuQulmYvsEpixbJMGhiiWHBkQCA%2bTSKSbz1W0BIKcmJFyawJhYvQzUPJM4FuQV6kmXb5C%2fJVQ8lMwFE6ZhtL26F4S%2bSz8PBghCcmDTkfAd3Br0doCq4rR%2fOhAlU9CGoklkKEKGysTN4qrzNtXKBNNxl3omvkoydCW0Az2c2opTxUSymMoFp5qPKGtqCFqptUTZlQIgwYetEqqyLJ1yl58s7hs2jRorFD8MkQed5NJINqMQIrGP1JOIqMS44TQpEBdy%2bqSifoRKMckC7TVLE54XifTmGT3x%2feDUNtkO%2bSQ9DtwNt8OoihKsbK2wBs3pAzDK2IQFgPTjFddb2oVlUdjP9efA4c84YyCdEk5IYjHNkImGikoFmwxQRZlqLAiXLTTFlyxUwn6KHRNpsAU73X138%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '22171' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:30:40 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: - - a62c0f52-b42e-4dd7-ac29-05e3f2a6893d - - 3ee6ac35-694e-4bbc-83f2-93df60b52518 - - 610f0ad2-6b59-4fb4-9bfe-012a3e15c4d1 - - b50faef5-29e9-4179-8cf7-ea4ed4a3a0a2 - - db1e9d23-722c-4e57-bc04-f5e5838e6943 - - 1b472d89-2dad-46ee-8709-81baedbe79bf - - d35d2526-c1d1-4ddd-b254-aaa32fea2e7e - - f79ada10-348a-438f-864b-323a78fc84d9 - - 3a03d45d-10b3-4d90-8090-c51ade8a6d4d - - d9874dbd-2b70-4da7-a8cf-3b7dc1ecb2f9 - - d95b1924-1348-460b-9e16-1bf6ee6e3f8a - - 076a03a8-5c59-44f2-bcd1-06b952168dcc - - 6628e782-c525-4384-8bd9-bb17a710cfac - - 8ead80ea-b89a-4425-8a31-3f42d2952737 - - b9a8af04-de0d-4d77-a687-3e502df573be - - 4640b015-f716-4e44-ad7f-0efa567df67a - - 4e272887-4ff2-4540-ab96-f3c9138ed901 - - 12a5996a-49f1-47b4-bf7d-e65964467fa0 - - df718f2b-4196-4817-999e-7605a709a7ba - - bd28dec7-9c0d-4ff8-bc2b-09e7a0a0987b - - cbedcb97-705e-4ded-b564-245c077d828a - - 373919e6-f8d8-48a1-b33e-3ccf275a3dd8 - - 4b64728e-b701-42f7-9f71-173540e8b444 - - 08098755-fd2b-4e28-8e44-8b3038434d2d - - 8ce135e0-8aed-49bd-9846-d48970799799 - - e2f5bb61-293f-491f-a96d-f222a0dd5f54 - - 03217151-16d5-48ce-ae34-724e4549dadf - - a55e0261-4d74-451c-a21f-7c656216b5c1 - - 0c7b1c53-2960-40fb-b033-c318eda36005 - - 8d8edd34-50f9-4cce-a241-6e8eea43d8eb - - ab6b386e-5983-4242-b021-b824bb995f85 - - ee845e67-52bd-4ba0-8dae-4f30ab140e61 - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "sku": {"family": "A", "name": "standard"}, "createMode": "recover"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault recover - Connection: - - keep-alive - Content-Length: - - '160' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover","purge"],"secrets":["get","list","set","delete","backup","restore","recover","purge"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover","purge"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1150' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:30:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault delete - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4007' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:30:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - keyvault delete - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 06 Jan 2020 14:30:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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.KeyVault/deletedVaults?api-version=2018-02-14 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/yugangwncu-kv","name":"yugangwncu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwncu/providers/Microsoft.KeyVault/vaults/yugangwncu-kv","location":"northcentralus","tags":{},"deletionDate":"2020-01-04T17:11:31Z","scheduledPurgeDate":"2020-04-03T17:11:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:30:52Z","scheduledPurgeDate":"2020-04-05T14:30:52Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-dgs3ww","name":"cli-test-keyvault-dgs3ww","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretpsvxdcwyihjpliaox62f5jbkgkkx4p4jhvja7ajaivpshjohcta/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgs3ww","location":"westus","tags":{},"deletionDate":"2020-01-06T14:28:03Z","scheduledPurgeDate":"2020-04-05T14:28:03Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-glkolr","name":"cli-test-keyvault-glkolr","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretn4dexdawjt7z6l74otluozv6mg4jvgpswu3rbbrbvnjkxcbghve/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-glkolr","location":"westus","tags":{},"deletionDate":"2020-01-05T08:50:14Z","scheduledPurgeDate":"2020-04-04T08:50:14Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-p6umsyofnyo","name":"cli-keyvault-p6umsyofnyo","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtfnltd4bbrg5iqe4fai7xlfcolyb5bwwzftqsbgpegr3h6udufjlap/providers/Microsoft.KeyVault/vaults/cli-keyvault-p6umsyofnyo","location":"westus","tags":{},"deletionDate":"2019-12-31T02:23:58Z","scheduledPurgeDate":"2020-03-30T02:23:58Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","location":"westus","tags":{},"deletionDate":"2019-12-27T17:27:31Z","scheduledPurgeDate":"2020-03-26T17:27:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","location":"westus","tags":{},"deletionDate":"2019-12-27T17:25:48Z","scheduledPurgeDate":"2020-03-26T17:25:48Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-lgqxlozvqvm7qp","name":"vault-lgqxlozvqvm7qp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_ghrkiwtzwo6lt6hsc47lnlf3s7s3qoiqwzrohk4kdwl2qp/providers/Microsoft.KeyVault/vaults/vault-lgqxlozvqvm7qp","location":"westcentralus","tags":{},"deletionDate":"2020-01-02T11:38:52Z","scheduledPurgeDate":"2020-04-01T11:38:52Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu2-kv","name":"yugangwcu2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu2/providers/Microsoft.KeyVault/vaults/yugangwcu2-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwcu-kv","name":"yugangwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcu/providers/Microsoft.KeyVault/vaults/yugangwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-31T17:24:36Z","scheduledPurgeDate":"2020-03-30T17:24:36Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/yugangwwcu-kv","name":"yugangwwcu-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwcu/providers/Microsoft.KeyVault/vaults/yugangwwcu-kv","location":"westcentralus","tags":{},"deletionDate":"2019-12-30T17:14:10Z","scheduledPurgeDate":"2020-03-29T17:14:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan2-kv","name":"yugangwcan2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan2/providers/Microsoft.KeyVault/vaults/yugangwcan2-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-30T17:13:53Z","scheduledPurgeDate":"2020-03-29T17:13:53Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-27T17:13:49Z","scheduledPurgeDate":"2020-03-26T17:13:49Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbtowFIbfBU27GsUJyUYrVVOCHRrWczwbOxXcUQiUmEJF6Jp46rvvpKr2Dq1yEUWyEunT9%2f352zuUzfl2d3B17%2bpvD6U2N2OBRie3dta76j2cz0%2f11WDwuDwst%2bVjeThfLP3zqbxYHR8H9fN9vTrtns6746EesPtg8z36EfSD%2bw3rR%2bv1sr8sV8P%2b6v4y%2fBFu2GV8yQZPp%2bOf3bo81QPYrU7H%2brg5X%2fwq22L5vD8P1uW%2bPJfrt4f65%2fJp1%2f9DJ%2bnl1yELRn0W9oPo65fa0RePrjxcW1fc6WJqtNWZEYWd2Ut5a%2fd2w%2fMAzLbFaj7EyjLgwiMXkTTFCHx36TE9M8m1QKFTLaZjRefQLFJ0Rab8fAhW9b71ZtKaG5HMTDLLk4%2bOQ3LCYaCV3MZgcoZ8MdI8eYFqG6LLCMk2Qp40aPapciJUZh6jswEhjHVlCUdHws7Cjw8iD9DMPfB5ADwnN%2fbkxXSsXcHRgkefcuQulmYvsEpixbJMGhiiWHBkQCA%2bTSKSbz1W0BIKcmJFyawJhYvQzUPJM4FuQV6kmXb5C%2fJVQ8lMwFE6ZhtL26F4S%2bSz8PBghCcmDTkfAd3Br0doCq4rR%2fOhAlU9CGoklkKEKGysTN4qrzNtXKBNNxl3omvkoydCW0Az2c2opTxUSymMoFp5qPKGtqCFqptUTZlQIgwYetEqqyLJ1yl58s7hs2jRorFD8MkQed5NJINqMQIrGP1JOIqMS44TQpEBdy%2bqSifoRKMckC7TVLE54XifTmGT3x%2feDUNtkO%2bSQ9DtwNt8OoihKsbK2wBs3pAzDK2IQFgPTjFddb2oVlUdjP9efA4c84YyCdEk5IYjHNkImGikoFmwxQRZlqLAiXLTTFlyxUwn6KHRNpsAU73X138%3d"}' - headers: - cache-control: - - no-cache - content-length: - - '22171' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:30:58 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: - - 6b842a53-788f-48c7-9788-dd188287d9b4 - - 4e27488f-0256-4276-aa13-84318b079477 - - bea7b2fb-db7c-4c6c-9ea2-00e16746e01f - - d33bc845-dce8-4e19-a632-e751ed14547c - - c58c64d5-03f0-436d-932e-bd78dc8fa980 - - 440ba493-b2aa-4b21-8429-0f44d753ea67 - - 07b59031-8235-42ea-99ad-3c8011f1493d - - f088c43d-dc51-450a-a6be-1b745919ee2d - - bfd1ee3b-affc-45a5-b006-63c3b0c7923e - - d3d56529-c4bb-4e38-b150-ff0b5733541d - - 25df0ce2-9ab9-4ee8-a6c7-be42d4550a97 - - f66473b2-2d49-4f34-8296-38cff0c2fb0b - - 07f692e9-7a50-494e-a1fa-428444b25f4c - - 4eb18f89-fee9-4116-a2bd-7576aa8ef02a - - 8448a940-2cf6-4f14-9163-dac7f7eebb8f - - d3dd0cd1-7e25-47dc-b037-ad5e3c638696 - - 6cfc2c25-b872-466f-8eb9-683a042c4dca - - 8b201b67-a5b7-4497-b551-8ea2bfe62881 - - 468277e1-5fa7-4b29-8433-7b50b59cded3 - - a62f3bf6-6213-4a7f-887c-01d52dc3354f - - 25b9634b-79c1-4e7e-8153-ab4472193c93 - - 083be890-cd9e-4eee-acff-ba41374fb064 - - 44c39b49-61a1-42cb-9269-981c13e5efaf - - 781ba769-c755-4650-a465-e8d351bb3d4d - - ee3a42f7-4473-405d-a700-7fe982864445 - - c5541210-2648-4a11-8de9-5d2fdc786292 - - 16a3e7f3-73da-4742-957d-b713559ebaaa - - 4f494e0e-1efa-4787-b07a-acb3172a7e7e - - 1b6f452e-f5cb-4afd-8d19-5542ca0bb0ab - - 03216504-3cff-4304-9f81-894492ab72e9 - - cbff4589-12c4-40a4-a200-ef2b94f6df3c - - 53ced6fb-9b37-4184-81a9-608ba52ae054 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002/purge?api-version=2018-02-14 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 06 Jan 2020 14:30:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 - response: - body: - string: '{"createdDateTime":"2020-01-06 14:30:59Z","status":"NotStarted"}' - headers: - cache-control: - - no-cache - content-length: - - '64' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:31:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 - response: - body: - string: '{"createdDateTime":"2020-01-06 14:30:59Z","status":"NotStarted"}' - headers: - cache-control: - - no-cache - content-length: - - '64' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:31:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3ODYwOTUzNjE3MnwwODFBMDU5NkEwNEQ0NTBCODYwRjQyNTAxMUVFQjY4MQ?api-version=2018-02-14 - response: - body: - string: '{"createdDateTime":"2020-01-06 14:30:59Z","lastActionDateTime":"2020-01-06 - 14:31:14Z","status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:31:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-06-21T01:32:03Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Zunli - Hu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zuh@microsoft.com","mailNickname":"zuh_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zuh@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zuh@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-21T01:32:03Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/21cd756e-e290-4a26-9547-93e8cc1a8923/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zuh_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-06-24T01:43:59Z","userType":"Guest"}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '1670' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Mon, 06 Jan 2020 14:31:22 GMT - duration: - - '2404241' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - QE46OP7QH9b9YEig+PQuzvbDRWQ4hRBhkwALGVrMwDo= - ocp-aad-session-key: - - KOi7iSnWs00V7a1VfRQ-Tt_9ei0L9kKT_16ymx4hpj2XjvG5VCCxftT4LEw0FQJWBNjybbYND-CaO09d5ADfWBtDbAohYAG1GHlaKsmUhdSuKpklkvBHpMqb_6PHAWrtyVqWMLN5P7lG2O0yBjwT6iALV4zv9ykrQMC43USlLEI.s1PWHjS8fG0fH0IU8bDEDlF7dFtl01FIZArtfhG5N1A - pragma: - - no-cache - request-id: - - 34f81ace-c21c-4421-bb1f-4aed51f15e16 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "sku": {"family": "A", "name": "premium"}, "accessPolicies": [{"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", "permissions": {"keys": - ["get", "create", "delete", "list", "update", "import", "backup", "restore", - "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", - "recover"], "certificates": ["get", "list", "delete", "create", "import", "update", - "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", - "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", - "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}], "enableSoftDelete": - true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - Content-Length: - - '772' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -l --sku --enable-soft-delete - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' - headers: - cache-control: - - no-cache - content-length: - - '1130' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:31:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku --enable-soft-delete - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1126' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault delete - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_download32msczfuvzh5ocqy7gn5yyjy2hjed4ydv3m55vuhycp5vbngv5/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgmjh3","name":"cli-test-keyvault-dgmjh3","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3696' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - keyvault delete - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 06 Jan 2020 14:32:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault recover - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -l - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:32:07Z","scheduledPurgeDate":"2020-04-05T14:32:07Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "sku": {"family": "A", "name": "standard"}, "createMode": "recover"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault recover - Connection: - - keep-alive - Content-Length: - - '160' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -l - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1126' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-writes: - - '1191' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault delete - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_download32msczfuvzh5ocqy7gn5yyjy2hjed4ydv3m55vuhycp5vbngv5/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-dgmjh3","name":"cli-test-keyvault-dgmjh3","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3696' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - keyvault delete - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 06 Jan 2020 14:32:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -l - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002?api-version=2018-02-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2020-01-06T14:32:24Z","scheduledPurgeDate":"2020-04-05T14:32:24Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -l - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.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/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002/purge?api-version=2018-02-14 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 06 Jan 2020 14:32:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - ParameterSetName: - - -n -l - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 - response: - body: - string: '{"createdDateTime":"2020-01-06 14:32:32Z","status":"NotStarted"}' - headers: - cache-control: - - no-cache - content-length: - - '64' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - ParameterSetName: - - -n -l - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 - response: - body: - string: '{"createdDateTime":"2020-01-06 14:32:32Z","status":"NotStarted"}' - headers: - cache-control: - - no-cache - content-length: - - '64' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault purge - Connection: - - keep-alive - ParameterSetName: - - -n -l - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzOTE3OTUzMjIwODE4NnxGRTNFQTFENjg5Qzg0RjAxODdCNEYxMTQyNzIyRjVFNA?api-version=2018-02-14 - response: - body: - string: '{"createdDateTime":"2020-01-06 14:32:32Z","lastActionDateTime":"2020-01-06 - 14:32:47Z","status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:32:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.269 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK + code: 409 + message: Conflict version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml index 3f89b753555..a86dab6c710 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:27:15 GMT + - Tue, 14 Jan 2020 01:22:51 GMT duration: - - '2379770' + - '2538916' expires: - '-1' ocp-aad-diagnostics-server-name: - - jkM1lzjvNxXCHuvy0rCnAJ/uYNEE7+B/zPhCEcVEXNc= + - P6XHi15PiD96nTMoJDvb6zXRHSAmPtZhG5f+3+NCpS4= ocp-aad-session-key: - - a1Mstc5ghby1BOl-PsH50y5BPjsMrcU5gBoZR4PeRVGnRK552Wwz0vjjv4muRhaX9gXNf0L6BVRTAVbs0AGhWpip0fiVTb6d_79uQ3IK5oyYd9P5mnMBEAaA62-LieusJr56cNPEDyIbWDhD4W8qmoY0fV7VO3nMWPJ6gAXn6hQ.CQXk8zTXA4jcJbWPAE6MfxqYIy4rtYl_ZtNlIJoJLNM + - L5RvWFilbtxYEMIDjUXrGxFUNXSP0q5XQx9Ut98JhUntmbfbSpM8Jvn3KgMMIIdD4QlG43vcK-gX1dXAV4aWDwpVixVYfR4PBhrlrnvglXiZlvb-tAH5bpDshnW1o58999_mY6AS8biZpw3e5wq6-m8rvEU9ral-aVssM4tv3U8.v1umpc1P7NdBVG5k3OITFVDLbumbgK9v8C2JRQHJ7f4 pragma: - no-cache request-id: - - 13e94a34-6e97-4082-a6c3-4580a37fcbd2 + - 0676de7b-b553-4303-801e-a07de37b8a30 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -98,7 +98,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:23 GMT + - Tue, 14 Jan 2020 01:22:57 GMT expires: - '-1' pragma: @@ -118,7 +118,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' x-powered-by: - ASP.NET status: @@ -153,7 +153,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:55 GMT + - Tue, 14 Jan 2020 01:23:28 GMT expires: - '-1' pragma: @@ -199,7 +199,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_keyvault_sa000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:27:07Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:47Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -208,7 +208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:27:57 GMT + - Tue, 14 Jan 2020 01:23:28 GMT expires: - '-1' pragma: @@ -241,7 +241,7 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: PUT @@ -257,11 +257,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:01 GMT + - Tue, 14 Jan 2020 01:23:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/f94e1171-071d-4481-96da-d772e1ea417e?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -271,52 +271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Mon, 06 Jan 2020 14:28:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + - '1197' status: code: 202 message: Accepted @@ -335,12 +290,12 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/4a3729fd-5737-416d-a483-89c57ffc187d?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/f94e1171-071d-4481-96da-d772e1ea417e?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:28:01.3292672Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:23:32.2858501Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache @@ -349,7 +304,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:28:21 GMT + - Tue, 14 Jan 2020 01:23:50 GMT expires: - '-1' pragma: @@ -400,7 +355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:23 GMT + - Tue, 14 Jan 2020 01:23:51 GMT expires: - '-1' pragma: @@ -462,19 +417,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:28:24 GMT + - Tue, 14 Jan 2020 01:23:51 GMT duration: - - '2416013' + - '2580408' expires: - '-1' ocp-aad-diagnostics-server-name: - - OGd52dHkIHcaxAyeCQfct4XNZH6J5AlyMhbgNvkrhVk= + - ME/Z7cMAnO6/vrzoMc6yckPd+gMqTzZtj4gnNCQoWjg= ocp-aad-session-key: - - 4zNBQGlD80DcLUoGHt6P6MXRrlhIIL1jIujPBebDjCpgZkfURVbfGvUesd5biv_pnftwNnxAAo607GoXwZwTgij5qsStDwvYeHrCnJdRpOzfoKnWfe4Oe943-rfgnoza5-sTroMsa774ZY-Dr15ldYCld-O5cMnZuHnzGEjtPHQ.RaiROhW0Lsa2uZKzuAVHDFXGTZSodeQFMrplFUCTHd0 + - D8ALzTOtmFym-BQmSmamrYwGS4e9y2QPWkhtE0_CsfU8-N_yxunNnEYZizXV-BWaN_fExmbBi9m1AyJkExTVhzxh2eZq-Pz6QiVu2kPyc_1rNZe9Bg5u0pdPXvpUWkh-UXfUAX_HWKYsqpzqFdw4GMas2IzknMOpZ4-1zRzN4GY.hIEN4Sm8X76MtN5Hb5rxlw84R9f8rMpD33c9mmtBqVE pragma: - no-cache request-id: - - 20d71154-e8e1-440f-8abd-1a7117664545 + - 226babd6-849c-46b6-b960-7f839031aa26 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -512,10 +467,10 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/3d2cd6fa-2973-49f6-aabb-fe88b55a8c46?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/8ea5a470-f795-434f-89fc-6f7f6c255d69?api-version=2018-09-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"8a32e482-bbc6-4304-a475-52ac8a89c64f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","createdOn":"2020-01-06T14:28:24.7308557Z","updatedOn":"2020-01-06T14:28:24.7308557Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/3d2cd6fa-2973-49f6-aabb-fe88b55a8c46","type":"Microsoft.Authorization/roleAssignments","name":"3d2cd6fa-2973-49f6-aabb-fe88b55a8c46"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"8a32e482-bbc6-4304-a475-52ac8a89c64f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","createdOn":"2020-01-14T01:23:52.9334236Z","updatedOn":"2020-01-14T01:23:52.9334236Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/8ea5a470-f795-434f-89fc-6f7f6c255d69","type":"Microsoft.Authorization/roleAssignments","name":"8ea5a470-f795-434f-89fc-6f7f6c255d69"}' headers: cache-control: - no-cache @@ -524,7 +479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:29 GMT + - Tue, 14 Jan 2020 01:23:57 GMT expires: - '-1' pragma: @@ -538,7 +493,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1196' x-ms-request-charge: - - '4' + - '3' status: code: 201 message: Created @@ -574,7 +529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:31 GMT + - Tue, 14 Jan 2020 01:23:58 GMT expires: - '-1' pragma: @@ -625,7 +580,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1578320915,"updated":1578320915,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1578965041,"updated":1578965041,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -634,7 +589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:34 GMT + - Tue, 14 Jan 2020 01:24:01 GMT expires: - '-1' pragma: @@ -681,7 +636,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1578320917,"updated":1578320917,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1578965043,"updated":1578965043,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -690,7 +645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:37 GMT + - Tue, 14 Jan 2020 01:24:02 GMT expires: - '-1' pragma: @@ -734,16 +689,16 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess/?api-version=7.0 response: body: - string: '{"value":"?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-06T18:28:39Z&spr=https&sig=KY9oHUDJpLPtCkPvhV3Zsl16eQ%2FyQL1XhaCAppAJUz0%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","managed":true,"attributes":{"enabled":true,"exp":1578335319,"recoveryLevel":"Purgeable"}}' + string: '{"value":"?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-14T05:24:05Z&spr=https&sig=knV9lCtSnvSlzfMuFRZrH5NiweoGlocVsvzaWCyzmT8%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","managed":true,"attributes":{"enabled":true,"exp":1578979445,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache content-length: - - '380' + - '378' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:39 GMT + - Tue, 14 Jan 2020 01:24:04 GMT expires: - '-1' pragma: @@ -777,11 +732,11 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 x-ms-date: - - Mon, 06 Jan 2020 14:28:39 GMT + - Tue, 14 Jan 2020 01:24:05 GMT x-ms-version: - '2018-11-09' method: PUT - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1?restype=container&sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-06T18%3A28%3A39Z&spr=https&sig=KY9oHUDJpLPtCkPvhV3Zsl16eQ%2FyQL1XhaCAppAJUz0%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1?restype=container&sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-14T05%3A24%3A05Z&spr=https&sig=knV9lCtSnvSlzfMuFRZrH5NiweoGlocVsvzaWCyzmT8%3D response: body: string: '' @@ -789,11 +744,11 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:28:41 GMT + - Tue, 14 Jan 2020 01:24:06 GMT etag: - - '"0x8D792B4BB10DC7B"' + - '"0x8D798907328FD98"' last-modified: - - Mon, 06 Jan 2020 14:28:42 GMT + - Tue, 14 Jan 2020 01:24:07 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -815,11 +770,11 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-date: - - Mon, 06 Jan 2020 14:28:43 GMT + - Tue, 14 Jan 2020 01:24:07 GMT x-ms-version: - '2018-11-09' method: PUT - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-06T18%3A28%3A39Z&spr=https&sig=KY9oHUDJpLPtCkPvhV3Zsl16eQ%2FyQL1XhaCAppAJUz0%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-14T05%3A24%3A05Z&spr=https&sig=knV9lCtSnvSlzfMuFRZrH5NiweoGlocVsvzaWCyzmT8%3D response: body: string: '' @@ -829,11 +784,11 @@ interactions: content-md5: - oyaT6AGPWTpUFslcIAG1hw== date: - - Mon, 06 Jan 2020 14:28:44 GMT + - Tue, 14 Jan 2020 01:24:07 GMT etag: - - '"0x8D792B4BBF4CCB9"' + - '"0x8D7989074018497"' last-modified: - - Mon, 06 Jan 2020 14:28:44 GMT + - Tue, 14 Jan 2020 01:24:08 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -858,23 +813,23 @@ interactions: - -c -n --account-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:28:01.3917393Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:28:01.3292672Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.Storage/storageAccounts/zuhstoragev2","name":"zuhstoragev2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"dep":"css"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-09T05:28:20.0245374Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-09T05:28:20.0245374Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-09T05:28:19.9620255Z","primaryEndpoints":{"dfs":"https://zuhstoragev2.dfs.core.windows.net/","web":"https://zuhstoragev2.z22.web.core.windows.net/","blob":"https://zuhstoragev2.blob.core.windows.net/","queue":"https://zuhstoragev2.queue.core.windows.net/","table":"https://zuhstoragev2.table.core.windows.net/","file":"https://zuhstoragev2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs10b1f64711bf0x4ddaxaec","name":"cs10b1f64711bf0x4ddaxaec","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T06:54:10.7368577Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T06:54:10.7368577Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T06:54:10.6744174Z","primaryEndpoints":{"dfs":"https://cs10b1f64711bf0x4ddaxaec.dfs.core.windows.net/","web":"https://cs10b1f64711bf0x4ddaxaec.z23.web.core.windows.net/","blob":"https://cs10b1f64711bf0x4ddaxaec.blob.core.windows.net/","queue":"https://cs10b1f64711bf0x4ddaxaec.queue.core.windows.net/","table":"https://cs10b1f64711bf0x4ddaxaec.table.core.windows.net/","file":"https://cs10b1f64711bf0x4ddaxaec.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/jlrg1diag","name":"jlrg1diag","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-27T08:28:13.4137165Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-27T08:28:13.4137165Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-27T08:28:13.3512138Z","primaryEndpoints":{"blob":"https://jlrg1diag.blob.core.windows.net/","queue":"https://jlrg1diag.queue.core.windows.net/","table":"https://jlrg1diag.table.core.windows.net/","file":"https://jlrg1diag.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.Storage/storageAccounts/storageaccountjlrg1839d","name":"storageaccountjlrg1839d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-31T03:00:46.3355764Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-31T03:00:46.3355764Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-31T03:00:46.2730735Z","primaryEndpoints":{"blob":"https://storageaccountjlrg1839d.blob.core.windows.net/","queue":"https://storageaccountjlrg1839d.queue.core.windows.net/","table":"https://storageaccountjlrg1839d.table.core.windows.net/","file":"https://storageaccountjlrg1839d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:23:32.2858501Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}}]}' headers: cache-control: - no-cache content-length: - - '55731' + - '51059' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:46 GMT + - Tue, 14 Jan 2020 01:24:09 GMT expires: - '-1' pragma: @@ -886,10 +841,10 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 5338d8ee-aa1d-4101-8184-131b40a0e663 - - 12614d68-becc-496a-bb4e-0ef6a5a15ceb - - 99f24cbd-f3f0-4ac0-8058-3504cc441f66 - - ccbea9d2-6fc8-4750-a011-7d53de973ddd + - fca8c303-28b5-4b6a-8ac3-44a21357169c + - 4b885e29-b367-44fd-94e0-0fa52883d52e + - 16bf2459-21a9-420d-8ac9-69c62069b4c0 + - 88546d74-9ecd-445d-b776-4ab9cc4e0010 status: code: 200 message: OK @@ -910,7 +865,7 @@ interactions: - -c -n --account-name User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: POST @@ -926,7 +881,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:28:46 GMT + - Tue, 14 Jan 2020 01:24:09 GMT expires: - '-1' pragma: @@ -942,7 +897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -969,7 +924,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-11-09&sr=b&sig=fy39JBx9bFTaI6VL6zzWtsXWQARwQj4SqlYNnsFEsDg%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1578320928,"updated":1578320928,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-11-09&sr=b&sig=fy39JBx9bFTaI6VL6zzWtsXWQARwQj4SqlYNnsFEsDg%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1578965052,"updated":1578965052,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -978,7 +933,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:47 GMT + - Tue, 14 Jan 2020 01:24:12 GMT expires: - '-1' pragma: @@ -1022,16 +977,16 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r/?api-version=7.0 response: body: - string: '{"value":"?sv=2018-11-09&sr=b&sp=r&se=2020-01-07T14%3A28%3A50Z&sig=nm6CvAAIelJxK08WgjSemP77PbWVRPXKi7J6QphQcKI%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1578407330,"recoveryLevel":"Purgeable"}}' + string: '{"value":"?sv=2018-11-09&sr=b&sp=r&se=2020-01-15T01%3A24%3A14Z&sig=Tk2WUgJ1zVa6dukNpShrU3c4BnUFE%2FbJTI5jsOWHTPs%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1579051454,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache content-length: - - '347' + - '349' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:50 GMT + - Tue, 14 Jan 2020 01:24:13 GMT expires: - '-1' pragma: @@ -1063,17 +1018,17 @@ interactions: User-Agent: - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 x-ms-date: - - Mon, 06 Jan 2020 14:28:51 GMT + - Tue, 14 Jan 2020 01:24:14 GMT x-ms-version: - '2018-11-09' method: HEAD - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-11-09&sr=b&sp=r&se=2020-01-07T14%3A28%3A50Z&sig=nm6CvAAIelJxK08WgjSemP77PbWVRPXKi7J6QphQcKI%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-11-09&sr=b&sp=r&se=2020-01-15T01%3A24%3A14Z&sig=Tk2WUgJ1zVa6dukNpShrU3c4BnUFE%2FbJTI5jsOWHTPs%3D response: body: string: '' headers: date: - - Mon, 06 Jan 2020 14:28:52 GMT + - Tue, 14 Jan 2020 01:24:14 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt index d0583e8c05a..fa1a4831d91 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone1.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone1.com ; Resource Group Name: cli_dns_zone1_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 10:49:40 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 20:52:39 +0800 $TTL 300 $ORIGIN zone1.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt index 044591212d0..15b87da39d5 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone2.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone2.com ; Resource Group Name: cli_dns_zone2_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 10:51:42 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 20:54:01 +0800 $TTL 3600 $ORIGIN zone2.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt index 10dbd5f4cee..0e4de19ed2b 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone3.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone3.com ; Resource Group Name: cli_dns_zone3_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 10:53:37 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 20:55:23 +0800 $TTL 10800 $ORIGIN zone3.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt index abaa8b234d5..936e892e9cd 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone4.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone4.com ; Resource Group Name: cli_dns_zone4_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 10:55:29 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 20:56:39 +0800 $TTL 10800 $ORIGIN zone4.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt index 9974a9a467a..096229d0208 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone5.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone5.com ; Resource Group Name: cli_dns_zone5_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 10:57:36 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 20:57:50 +0800 $TTL 10800 $ORIGIN zone5.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt index a49bf2c0301..b77009825d1 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone6.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone6.com ; Resource Group Name: cli_dns_zone6_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 10:59:02 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 20:58:51 +0800 $TTL 300 $ORIGIN zone6.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt index d8cbdb5ee56..593d1dccd2e 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone7.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone7.com ; Resource Group Name: cli_dns_zone7_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 11:00:06 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 20:59:37 +0800 $TTL 300 $ORIGIN zone7.com. diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt index 45a5518c1a7..f21c4d1983e 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/zone_files/zone8.txt_export.txt @@ -2,7 +2,7 @@ ; Exported zone file from Azure DNS ; Zone name: zone8.com ; Resource Group Name: cli_dns_zone8_import000001 -; Date and time (UTC): Mon, 06 Jan 2020 11:01:29 +0800 +; Date and time (UTC): Mon, 13 Jan 2020 21:00:24 +0800 $TTL 300 $ORIGIN zone8.com. diff --git a/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml index fafcb413a8f..c64ec200dff 100644 --- a/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml +++ b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml @@ -1,247 +1,130 @@ interactions: - request: - body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-06-21T18:29:11Z"}}' + body: '' headers: Accept: - application/json Accept-Encoding: - gzip, deflate - CommandName: - - group create Connection: - keep-alive Content-Length: - - '110' + - 0 Content-Type: - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sp_with_kv_existing_cert000001?api-version=2019-07-01 + method: POST + uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001","name":"cli_test_sp_with_kv_existing_cert000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-21T18:29:11Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer + or PoP token."}}' headers: cache-control: - no-cache content-length: - - '384' + - '87' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jun 2019 18:29:11 GMT - expires: - - '-1' - pragma: - - no-cache - 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 - Connection: - - keep-alive - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a1239024-a78f-4b62-a84e-3119f8924ffb","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","4a51bca5-1eff-43f5-878c-177680f191af","efb0351d-3b08-4503-993d-383af8de41e3","5136a095-5cf0-4aff-bec3-e84448b38ea5","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-05-23T14:27:34Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-10T02:07:48Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-02T19:20:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-02T19:20:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-02T19:20:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-13T18:49:58Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-13T18:49:58Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T17:03:22Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T17:03:20Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2018-09-24T17:03:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-24T17:03:19Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-24T17:03:19Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-22T06:47:29Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T13:37:22Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T13:37:22Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T13:37:22Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T08:57:59Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T02:18:57Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T02:18:57Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T11:40:38Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-16T05:25:47Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-12-16T05:25:47Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-16T05:25:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-10-07T04:08:23Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-07T04:08:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2017-08-13T12:28:53Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-06-11T01:38:05Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-06-11T01:38:05Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-06-11T01:38:05Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-05-13T03:49:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2016-12-14T10:51:56Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2016-12-14T10:51:56Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2016-02-26T23:00:35Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure - and Web COGS 1010 US","dirSyncEnabled":true,"displayName":"Travis Prescott","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Travis","immutableId":"1002380","isCompromised":null,"jobTitle":"SOFTWARE - ENGINEER II","lastDirSyncTime":"2019-05-31T17:03:21Z","legalAgeGroupClassification":null,"mail":"trpresco@microsoft.com","mailNickname":"trpresco","mobile":null,"onPremisesDistinguishedName":"CN=Travis - Prescott,OU=UserAccounts,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-20039400","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3200FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Adallom"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=MMS/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=f090f69a03ec4c0883b09aba05bc0e7f-Travis - Prescoefc91e9","SMTP:trpresco@microsoft.com","smtp:trpresco@service.microsoft.com","smtp:trpresco@microsoft.onmicrosoft.com","X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Travis Prescott930","X500:/o=Nokia/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Travis Prescotte5c","X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Travis Prescottf88","X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=31c24bdc1fc944a694953dfc8ed1db9e-Travis - Prescot","X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=2ba2598701d14f2684d504228fa7f530-Travis - Pres"],"refreshTokensValidFromDateTime":"2019-05-31T16:44:26Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"trpresco@microsoft.com","state":null,"streetAddress":null,"surname":"Prescott","telephoneNumber":"+1 - (425) 7071057","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a1239024-a78f-4b62-a84e-3119f8924ffb/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"trpresco@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"138058","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Wang, - Yugang","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"YUGANGW","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10130001","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10130001","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"4664","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 - Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1002380","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US"}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '17278' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:29:13 GMT - duration: - - '3114696' + - Tue, 14 Jan 2020 01:25:16 GMT expires: - '-1' - ocp-aad-diagnostics-server-name: - - 8b/Ht2S1JqSnD0uF+3TSXMqw6CMlMu8U0UwicIuMm2g= - ocp-aad-session-key: - - Ra26dtSFH1-Pgk-YH6droJpQ2yJ1ax8v7JOAO-fQcuRnpI-r1xCciEeLFEfq99w1McuJzdToe2mWjoGsG-HfF8fQqdCi1IEaa2pbH5YHHkKZJMGkPQharU5VjywIKdzgXv0LVK_vkq3iyd3d5xVPEA.t0oqgqj00jYoh15GMBOSUBoxOzWPZZqEcfPIf5hF-Os pragma: - no-cache - request-id: - - 6ddca812-ee66-4d70-8ad3-48fe44d70aa1 + server: + - Microsoft-IIS/10.0 strict-transport-security: - - max-age=31536000; includeSubDomains + - max-age=31536000;includeSubDomains + www-authenticate: + - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 401 + message: Unauthorized - request: - body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "a1239024-a78f-4b62-a84e-3119f8924ffb", - "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", - "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", - "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", - "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", - "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", - "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}]}}' + body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": + 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, + "x509_props": {"subject": "CN=CLIGetDefaultPolicy", "key_usage": ["cRLSign", + "dataEncipherment", "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], + "validity_months": 24}, "lifetime_actions": [{"trigger": {"days_before_expiry": + 90}, "action": {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}}, + "attributes": {"enabled": true}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate - CommandName: - - keyvault create Connection: - keep-alive Content-Length: - - '746' + - '511' Content-Type: - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-keyvault/1.1.0 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2018-02-14 + method: POST + uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"a1239024-a78f-4b62-a84e-3119f8924ffb","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000002.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' headers: cache-control: - no-cache content-length: - - '1106' + - '1303' content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jun 2019 18:29:15 GMT + - Tue, 14 Jan 2020 01:25:17 GMT expires: - '-1' + location: + - https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=81dd259355e14214bb0f6489a92e942a pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + - max-age=31536000;includeSubDomains x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus x-ms-keyvault-service-version: - - 1.1.0.245 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - 1.1.0.891 x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-keyvault/1.1.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2018-02-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"a1239024-a78f-4b62-a84e-3119f8924ffb","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1102' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:29:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.1.0.245 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '' headers: Accept: - application/json @@ -249,27 +132,29 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - 0 Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US - method: POST - uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 + method: GET + uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '' + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' headers: cache-control: - no-cache content-length: - - '0' + - '1303' + content-type: + - application/json; charset=utf-8 date: - - Fri, 21 Jun 2019 18:29:52 GMT + - Tue, 14 Jan 2020 01:25:18 GMT expires: - '-1' pragma: @@ -278,32 +163,23 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000;includeSubDomains - www-authenticate: - - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", - resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: - code: 401 - message: Unauthorized + code: 200 + message: OK - request: - body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": - 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, - "x509_props": {"subject": "CN=CLIGetDefaultPolicy", "key_usage": ["cRLSign", - "dataEncipherment", "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], - "validity_months": 24}, "lifetime_actions": [{"trigger": {"days_before_expiry": - 90}, "action": {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}}, - "attributes": {"enabled": true}}' + body: null headers: Accept: - application/json @@ -311,22 +187,20 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '511' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US - method: POST - uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 + method: GET + uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"712ec39acbe14640aa04e2af81ac7357"}' + time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' headers: cache-control: - no-cache @@ -335,11 +209,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jun 2019 18:29:54 GMT + - Tue, 14 Jan 2020 01:25:29 GMT expires: - '-1' - location: - - https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=712ec39acbe14640aa04e2af81ac7357 pragma: - no-cache server: @@ -351,16 +223,16 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -373,17 +245,17 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"712ec39acbe14640aa04e2af81ac7357"}' + time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' headers: cache-control: - no-cache @@ -392,7 +264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jun 2019 18:29:55 GMT + - Tue, 14 Jan 2020 01:25:40 GMT expires: - '-1' pragma: @@ -406,11 +278,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -428,15 +300,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"completed","target":"https://clitest000002.vault.azure.net/certificates/cert1","request_id":"712ec39acbe14640aa04e2af81ac7357"}' + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"completed","target":"https://clitest000002.vault.azure.net/certificates/cert1","request_id":"81dd259355e14214bb0f6489a92e942a"}' headers: cache-control: - no-cache @@ -445,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jun 2019 18:30:05 GMT + - Tue, 14 Jan 2020 01:25:52 GMT expires: - '-1' pragma: @@ -459,11 +331,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -483,8 +355,8 @@ interactions: ParameterSetName: - -n --keyvault --cert --scopes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -504,19 +376,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Jun 2019 18:30:06 GMT + - Tue, 14 Jan 2020 01:25:53 GMT duration: - - '808763' + - '2311456' expires: - '-1' ocp-aad-diagnostics-server-name: - - 5tXUu3y+ErO1/XND1tRuShyWMEydPW/DHrlAYL3nHdc= + - 111y7HzMkoF7ETvCpr8Oy05nl+w+YtkaVR6AK6LH4Ao= ocp-aad-session-key: - - 25-0HKjvJ-OMLQaKa6qyNol_2YDqH3InoRML8cQZf827JZyqM3Ap2cjGPnmYwMZ2rN2A82u502rGy8Ys9f5mxJfDB0roGr3PD24F_QYhzOqlT_MDRyb-kCY-8BLjOmgjWoeQD0jxbf1XBVME8ev8Ow.L2eonk4HI8mTJoTpENLwAGlXXoMQbV-RgIn_2AZO-E4 + - 8RUuyAqTnu6MzDeTq2aAxGaMgqT7u0HgZdptAUgpd61IDHM8f1eltJ5NTvyHZGbzJr_ti0vPRPLR_6XUeNbsOM5K5PmfaHLQDlqM3fdKbqt-ubjMLxnI_rSxQM3KWFJDQk4IiTxRK6-Yez4Eo00U7qu8C4G2Qzs27C6uKF1hCLk.n1YKRDqh6UGf3KQ2ERJMbK_XqdZNqWMY-TLmKBMGEVQ pragma: - no-cache request-id: - - 793ab314-e838-4aaf-8415-aa59602e7565 + - efea7750-4907-431a-83ce-2cf69547a718 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -540,15 +412,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/7981b3c73d584fab9b104f087b3a031b","kid":"https://clitest000002.vault.azure.net/keys/cert1/7981b3c73d584fab9b104f087b3a031b","sid":"https://clitest000002.vault.azure.net/secrets/cert1/7981b3c73d584fab9b104f087b3a031b","x5t":"RZGAltuVzEuwCerEt-L_8IIdMLc","cer":"MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==","attributes":{"enabled":true,"nbf":1561141204,"exp":1624300204,"created":1561141804,"updated":1561141804,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":24,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141794}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/706587dbefdb4059bbccd45506da4576","kid":"https://clitest000002.vault.azure.net/keys/cert1/706587dbefdb4059bbccd45506da4576","sid":"https://clitest000002.vault.azure.net/secrets/cert1/706587dbefdb4059bbccd45506da4576","x5t":"4kKyVlONgBzq_3S0AniFPjNmtiM","cer":"MIIDQjCCAiqgAwIBAgIQae9/MCvCQtaxqGxz4tnyGTANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDExNDAxMTU0N1oXDTIyMDExNDAxMjU0N1owHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFASXwdsjLcwutxkLyb/9nnvNaEnoMB0GA1UdDgQWBBQEl8HbIy3MLrcZC8m//Z57zWhJ6DANBgkqhkiG9w0BAQsFAAOCAQEAuimEev4EyBU5p178Xf6ysYRv68Np4lmiwxEIg+SwVpy2KDOxGuLt8HOk2SIi9Rfg9XaM4dSJHaMHojCnva8OhwVGlGuXB2QObHA67XS5MSDZCA98Pb1og+SYUuSMdE32UUcBLlM4eCMGR9MJtBUuSIENjxfLGBodkwCA5vzAt87k5G316DjxZ3A7xcnzGt/Lo7sx8fMpmoFdii1c2fsiukjh0FR6rH8Uj92Y7b0XClrCtcFMDwefsM/h3bHkDomaLSUcEeh+KIDRWmB/KMWdqK042YHVcQVw0T8FB4hhR6W6h1aF+Xp9/uKjgnfdcZJoeoUBEpPnxUSgJvTMKui67w==","attributes":{"enabled":true,"nbf":1578964547,"exp":1642123547,"created":1578965147,"updated":1578965147,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":24,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965117,"updated":1578965117}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -557,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 21 Jun 2019 18:30:06 GMT + - Tue, 14 Jan 2020 01:25:54 GMT expires: - '-1' pragma: @@ -571,11 +443,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; + - addr=167.220.255.51;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.866 + - 1.1.0.891 x-powered-by: - ASP.NET status: @@ -595,8 +467,8 @@ interactions: ParameterSetName: - -n --keyvault --cert --scopes User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US method: GET @@ -616,19 +488,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 21 Jun 2019 18:30:06 GMT + - Tue, 14 Jan 2020 01:25:55 GMT duration: - - '641417' + - '2319554' expires: - '-1' ocp-aad-diagnostics-server-name: - - I4v0qcnOlje1nXMrnV4NRb3YM/2Yho5JJMkIV0jxR4s= + - x6LuulQ1un8YDZ41bRnla0Z326OzLf41m1R/rZlmZOU= ocp-aad-session-key: - - 68yTvSMlGGX0cBUfNLQQzGMBYy9CYAOPDd9QHykOoylKiastyH0DYarFwNu1eouHNchexfhLx1lu0GCIrziQwuXmEBaQaciPJB7SoPmfoscWEMuLAvO7trBMX6qyUrKI0UjJ-yv-icuI0fxGI3IaaA.HzWx8EG2u3n71kIoReMiKSHEuA-4V2A0lFmHiJME6FU + - FJwbpmePSpN6dnmiPtvoqjYyItybG1C-izvD4SK1LdmSqhy8gpAO4N8_0Dy1sFXULo_IFg6CLnujMzBTWU7D0pjaL8cRR_330biEOTk5pRi34U9zdym2mVQYO7MhD4eM5zx--rTprcZLN34u8YymQ4gtA2Ao0kwdmrnMFyIPUTc.q_YwvlbYwe6it-mBDFo9FdLzzp9HvguTRqcRUzec08o pragma: - no-cache request-id: - - 3af3939d-1f4c-4309-aa95-1f57f2ea0f61 + - ca65cb90-4854-488c-9c40-00a6219c1bc4 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -641,2173 +513,53 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"availableToOtherTenants": false, "homepage": "https://cli_test_sp_with_kv_existing_cert000001", - "keyCredentials": [{"startDate": "2019-06-21T18:30:06.860955Z", "endDate": "2020-06-21T18:30:06.860955Z", - "value": "MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==", - "keyId": "88888888-0000-0000-0000-000000000001", "usage": "Verify", "type": - "AsymmetricX509Cert"}], "displayName": "cli_test_sp_with_kv_existing_cert000001", - "identifierUris": ["http://cli_test_sp_with_kv_existing_cert000001"]}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '1672' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n --keyvault --cert --scopes - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:06.860955Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-06-21T18:30:06.860955Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; - charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2768' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:07 GMT - duration: - - '9770596' - expires: - - '-1' - location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application - ocp-aad-diagnostics-server-name: - - 9GQqI6S1ECS4j4T2qnjxLorVEkd1sq21GP7tQfmsPNE= - ocp-aad-session-key: - - 4JuU1hyelEeSnssXQzfifyW-srUdeBuy1t04pooNMpKGpdtBVqnpF4FhdN3EUTmS8aL3ubLcP05i3yrSfakLkjVwmIproQFMJXBU8vsAXWe6KzYSGPSEf6ffltHiduI5gjzEx7CSDTZuOxs6fz-ogg.gSAc-z5eN0gw3s4Jz7SdTzOQD-0uaNZiEzu5gyM7JCA - pragma: - - no-cache - request-id: - - c8fb216b-8be6-44cc-8a11-892952017358 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: '{"accountEnabled": true, "appId": "fbc74fbf-472c-4a91-bcee-cc6fae73b8c5"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - ad sp create-for-rbac + - ad app delete Connection: - keep-alive - Content-Length: - - '73' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n --keyvault --cert --scopes + - --id User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 accept-language: - en-US - method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert000001","appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","http://cli_test_sp_with_kv_existing_cert000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '2151' + - '121' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Fri, 21 Jun 2019 18:30:08 GMT + - Tue, 14 Jan 2020 01:25:58 GMT duration: - - '4050442' + - '5481526' expires: - '-1' - location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - PWJF5MXsNJeXfk2GpX0VavQ33Q7BBlAFQ1PBOgmVl+Y= + - 9ZHp9DWrFOJDdtIudkw3WViQ6HjfSWNkT6r5darksVU= ocp-aad-session-key: - - fn3-KZJCl-zG4WjOQKObQCsB0bjXB8ktJ8RkSCgHj2iDHiKGtdSARkfBWoXcFgaRHr4WvzDHOG4xOF0BDMY4uQzt2g3UMJ5UO_FAymLr7Z3nqVH8MsAuWJzWn1TBtshIiveW40Sz-ffLeP4tTwDxoA.evCEuUdjW6jlx2XcasWMtXjXhLbir69NaZO3P-t0ARo + - 2uAmqEMjlxPmeG-zRDVGtb-3gJgPge0TScWJjBfOtF3hE7BPtfHel6643ODwWLn1dGu94FUSz9c9EigM9IocpUbsTdJZdwU9Po-qjeypPkd1zGnVEwecRvreF3VAzQDyxW8g8zBGl_2761SGWhjr6PNNXohavfAlEoZZ508gBko.0FgUAR6v5b756tvbr07erp394lwpxlYnoihIQbVNaZ8 pragma: - no-cache request-id: - - 9742b32f-b882-4c92-a501-78c954fd75a2 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert --scopes - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets - you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '832' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:09 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-request-charge: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -n --keyvault --cert --scopes - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal b7417b33aff74f3faf4c87b2ae0ee4f4 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:09 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert --scopes - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets - you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '832' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:15 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-request-charge: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -n --keyvault --cert --scopes - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal b7417b33aff74f3faf4c87b2ae0ee4f4 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:15 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert --scopes - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets - you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '832' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-request-charge: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - -n --keyvault --cert --scopes - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2018-09-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001","createdOn":"2019-06-21T18:30:22.0155893Z","updatedOn":"2019-06-21T18:30:22.0155893Z","createdBy":null,"updatedBy":"a1239024-a78f-4b62-a84e-3119f8924ffb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' - headers: - cache-control: - - no-cache - content-length: - - '903' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:24 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-ms-request-charge: - - '2' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert000001","appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli_test_sp_with_kv_existing_cert000001","fbc74fbf-472c-4a91-bcee-cc6fae73b8c5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2154' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:24 GMT - duration: - - '834610' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - zZhyt14zl0OhjZk/+0wTMqtIww9oR8AMqmXQ2MnPyJw= - ocp-aad-session-key: - - EZxdQ5Rbk3deulVd-UAUr6InytIFGenZxbJ4waiCfnLrGMj8hiruv8FwYAvLv3Pbuj4iPqYDhEbrbhbLTKkN2cio6W65S20eHNjZDmDhfudQgR1MF8N6z28zXH6pNXqZ89wBb9wH4KFpFGoj7aOfTg._8PCBC_Kajwi-BsF3hLx4aYiFBIKnDWiixYvZ3-tgFw - pragma: - - no-cache - request-id: - - e6b5429d-da52-4e20-894a-ab245d8a6017 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27fbc74fbf-472c-4a91-bcee-cc6fae73b8c5%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:25 GMT - duration: - - '3781514' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - BOyHBDAxSIKAYJlLPcX4gbSnf6edPNykjDKKitPiTVQ= - ocp-aad-session-key: - - mt2dF_C1yxipaHIaRRJBLkQXroMv4DFanfoM5JXGk4ZI_1TXw3o9enYdaXSzXHypluFAzAnRp0EeCf4qtL27y1mSoV3IyE5hyZIATDpbQFp0JQL0K44xtS_BYFpDn_dKRg1Y8sE1gobyPFR6efgUtw.DKBH3U5VEg4w9HB1DSTP6l4dfHsL0gVA4oj5vGG_-Cw - pragma: - - no-cache - request-id: - - 1c7133ac-b2f8-4ef5-8885-7c7749601bd2 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27fbc74fbf-472c-4a91-bcee-cc6fae73b8c5%27&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:06.860955Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-06-21T18:30:06.860955Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2685' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:25 GMT - duration: - - '766407' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - aLjul60AojNkmrHXU2K8UCWjsiSBDyBxA+NSaz2RTqQ= - ocp-aad-session-key: - - XaQift2fgc7JWr7Ix6oEZSUF2hht_auembUn1MZ15nR2YYu2Im75IvxZtudn9LqcHia20MtsvFUST2y_l4IPWqTxzPjtQ_wvs2g1rnQG9jVjjIFJ71mDm7kcOTvImSHVmbkjtUAFhRSKoTDA3gE2Tw.ekfjPuqKV4mNr3YlMeBLeIwHNQv1v-PK62G9Hutxz5s - pragma: - - no-cache - request-id: - - 8fdec5b2-01ce-44f9-b8c2-b10d4513bdfd - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/60ba53b8-362d-45d9-ba8f-8e5e06f80636?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:06.860955Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-06-21T18:30:06.860955Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2682' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:25 GMT - duration: - - '846312' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - WiG/DPKn3noJELxY9/Bmask7Igt00cCcbhfOcH/k7Qo= - ocp-aad-session-key: - - 6q303QbPkl4it8JdBvNb-zope-FgnEl5vCYEAbLB4nSN4XEKdRZ1XvPdczHbGd0mYDweW5ZfxDRCaD25tKqaUmVs_D1T43696ZNhfKqEPj9P7I16h8bdhszLnEBvPJXH5pBGwMNKITd0fSOXLF8gsQ.OYENnb0xo5m19Q231B5G2_p9pfAupbo0OMVJTi0vd6Q - pragma: - - no-cache - request-id: - - 95b48e21-5960-46eb-8439-350a32779d5c - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 - response: - body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/7981b3c73d584fab9b104f087b3a031b","kid":"https://clitest000002.vault.azure.net/keys/cert1/7981b3c73d584fab9b104f087b3a031b","sid":"https://clitest000002.vault.azure.net/secrets/cert1/7981b3c73d584fab9b104f087b3a031b","x5t":"RZGAltuVzEuwCerEt-L_8IIdMLc","cer":"MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==","attributes":{"enabled":true,"nbf":1561141204,"exp":1624300204,"created":1561141804,"updated":1561141804,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":24,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141794}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' - headers: - cache-control: - - no-cache - content-length: - - '2387' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"keyCredentials": [{"startDate": "2019-06-21T18:30:24.885229Z", "endDate": - "2020-06-21T18:30:24.885229Z", "value": "MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==", - "keyId": "d30ba790-ae36-411f-a4c1-3b425d2c2c01", "usage": "Verify", "type": - "AsymmetricX509Cert"}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - Content-Length: - - '1339' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/60ba53b8-362d-45d9-ba8f-8e5e06f80636?api-version=1.6 - response: - body: - string: '' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - date: - - Fri, 21 Jun 2019 18:30:26 GMT - duration: - - '3849778' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - susOkr8YvnkWhpfwvEOXpfZ/acdphRpz4tl/Fe8Bm3M= - ocp-aad-session-key: - - HpVP5N6gMvbIPpudATKqrnEZzIyeC7P9xOsP5APIdCr_bGe-xmppHFMS2HeF3rekN42xTSCh5ThCdGreS4Y4LiZV1Hsxq8DqoKRQCqo-RpoiFI7h1t2igv9BTs9xV5pwjzlt46ANGcPZ3Cd2Qg2yyw.cOtkP2npxpvGPU2L5t71nWpeVK6lPKNBJBgeQ1ceZT0 - pragma: - - no-cache - request-id: - - 27ee6df4-b89c-432e-bfb1-6f67679d4178 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad app delete - Connection: - - keep-alive - ParameterSetName: - - --id - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:24.885229Z","keyId":"d30ba790-ae36-411f-a4c1-3b425d2c2c01","startDate":"2019-06-21T18:30:24.885229Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert000001 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2685' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:26 GMT - duration: - - '3896888' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - sKHAZBgGw8ZD+gPJGLEoUnxY5pfwvBzhG5jUW8+JW0w= - ocp-aad-session-key: - - Ueo2XJae0o66ojmjAW20gtx9bRjltpZSywQbsXol2PKAC9hML6XHaaeH9gQPmryxPijOnWzqZfrf8QLw-B7TojaXaSdNRTKC9KPrmn5UMXdVtrIwpw_434ror1cfF3FuMVe8JaFBXR47j24aGNpZmw.xcmyqRZKFfbiG5QrMbbH7SZiPEB16yKGz34EqtJCJP4 - pragma: - - no-cache - request-id: - - d49e2368-54bb-444a-b849-6d2cb16f873b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad app delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --id - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/60ba53b8-362d-45d9-ba8f-8e5e06f80636?api-version=1.6 - response: - body: - string: '' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - date: - - Fri, 21 Jun 2019 18:30:27 GMT - duration: - - '3658509' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - uHyVfaWnz1wZ+Kit9M+ndgirzc7H4vyg8f/Bx6SxLLI= - ocp-aad-session-key: - - magv1-3LTSJ8vY0dlxb29GTzABJ1ZoizXZgoxSbVvXhmTYpE4g82YOViSpEBSnc_QIdanoM-gXA8RB86Wq8uFnRlBKPR89pNWFaLiApTxA3-jUZErhwce7362qW_1HXGtJxGCYQzRhQ8chMRGlYTZg.BNur61jzycQ-MG-3XdTXQSRmEjNOb1pdiWZfXo6aiho - pragma: - - no-cache - request-id: - - 42d7d6a0-8f8b-422c-be96-48a69447d382 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content -- request: - body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": - 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, - "x509_props": {"subject": "CN=CLIGetDefaultPolicy", "key_usage": ["cRLSign", - "dataEncipherment", "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], - "validity_months": 6}, "lifetime_actions": [{"trigger": {"days_before_expiry": - 90}, "action": {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}}, - "attributes": {"enabled": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '510' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 - response: - body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"24ed5e475b5c45a58d27a682596fca62"}' - headers: - cache-control: - - no-cache - content-length: - - '1303' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:28 GMT - expires: - - '-1' - location: - - https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=24ed5e475b5c45a58d27a682596fca62 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 - response: - body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"24ed5e475b5c45a58d27a682596fca62"}' - headers: - cache-control: - - no-cache - content-length: - - '1303' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 - response: - body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"completed","target":"https://clitest000002.vault.azure.net/certificates/cert1","request_id":"24ed5e475b5c45a58d27a682596fca62"}' - headers: - cache-control: - - no-cache - content-length: - - '1217' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:41 GMT - duration: - - '895339' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - CLBFhp12uVA5Nnh6MG2VC8aF6kYj6BwyK0Y6WAoeTzc= - ocp-aad-session-key: - - TMHZowmMWhV-Ffex5EvamqxYxx2WoeouCilFVhHiU-9frixkghpJ3QIfPvJeMxEMCpxrZUnnaAT9chm45fRpSe5szTON5hpA-A7pk0Vjd845KKoo3uHDiwg5LHV6bP-8UrUIlMra2UCb4RNN5CiO_Q.iE7aT18Y1KxuKeHGYLmh267rpW3tZXbCyMeuQaEzIrM - pragma: - - no-cache - request-id: - - 48b7ddc6-26a6-4b0c-a23c-a218d53fed3c - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 - response: - body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/0da818a5284b450d8388ee785bdfcf48","kid":"https://clitest000002.vault.azure.net/keys/cert1/0da818a5284b450d8388ee785bdfcf48","sid":"https://clitest000002.vault.azure.net/secrets/cert1/0da818a5284b450d8388ee785bdfcf48","x5t":"vxy8X3ka0GEev0Y5wksuBgwk3OM","cer":"MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==","attributes":{"enabled":true,"nbf":1561141235,"exp":1576953035,"created":1561141835,"updated":1561141835,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":6,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141828}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' - headers: - cache-control: - - no-cache - content-length: - - '2386' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=startswith%28displayName%2C%27cli_test_sp_with_kv_existing_cert0000012%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:41 GMT - duration: - - '786398' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - qg62oDc8M5MhsuZ0i0axkKSX8o9O0cpnMKv2rNkFY8w= - ocp-aad-session-key: - - k5Dh5NmwH3RZ_soKrZFPQlpWLWCUN4oUATwTm8J_NZVSg34yOIt6yJd42V7BuBUn0KMLMMpgieFWG4GL1a02p4UoYangbKbw9P7IPYomh6N_Nl1wQSj8Z7MWwT7SElxF5jxAd2EgWb1l-kh1677fwQ.o4_ggrDcAYCBynajmh6oaF32kG1_tDJqpuGDFv1hC_Y - pragma: - - no-cache - request-id: - - be65e400-fd16-4605-8809-afdf0f2cc840 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''b\''{"availableToOtherTenants": false, "homepage": "https://cli_test_sp_with_kv_existing_cert0000012", - "keyCredentials": [{"startDate": "2019-06-21T18:30:41.236167Z", "endDate": "2019-12-21T18:30:34.000Z", - "value": "MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==", - "keyId": "88888888-0000-0000-0000-000000000005", "usage": "Verify", "type": - "AsymmetricX509Cert"}], "displayName": "cli_test_sp_with_kv_existing_cert0000012", - "identifierUris": ["http://cli_test_sp_with_kv_existing_cert0000012"]}\''''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '1672' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"88888888-0000-0000-0000-000000000005","startDate":"2019-06-21T18:30:41.236167Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; - charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2768' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:41 GMT - duration: - - '9156810' - expires: - - '-1' - location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application - ocp-aad-diagnostics-server-name: - - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= - ocp-aad-session-key: - - tzkJ3bP8EyhiOhDoc3CYPnN9Pw0yfSzuINuBrxoh-5hi81BFxfWg1wkiJiludKCzw7jqCp9LOb0tP_E-O4Psxyj1VAPTje6Z5Um2M77U8DVgcZ3HkCxQGDBDePR0EU5ZDYbLYdPFbLE3tZs_vOJswQ.KbCkJXghobZ3-eFb8vOEswqKli5r7vB4juivqRWezMU - pragma: - - no-cache - request-id: - - b2f3193b-c706-4de0-aac6-b9ba94403b7a - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: '{"accountEnabled": true, "appId": "1135b855-b422-4f55-b67a-77bebb479955"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '73' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: POST - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"288586fc-9758-4b4c-ac98-a5b903902422","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert0000012","appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["1135b855-b422-4f55-b67a-77bebb479955","http://cli_test_sp_with_kv_existing_cert0000012"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2159' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:43 GMT - duration: - - '5234238' - expires: - - '-1' - location: - - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/288586fc-9758-4b4c-ac98-a5b903902422/Microsoft.DirectoryServices.ServicePrincipal - ocp-aad-diagnostics-server-name: - - XJbTIKGdEOf1NlwmY8KyGmuB0cYYMB3F3SW245EhNiA= - ocp-aad-session-key: - - r6eTbpzD6QkWqb0cLmX_ZPFgqDiu99I9BwxVOkDIEX9pJJS1SnAhXp5c5oQyCXHMdH3RwdjvjjfsPutUFFGaS0qnal93I_iXzod6CXaeTAU1QREO5CdTxKrz4jBitr_mF_2hs3K0uLSmXLi6VLZ3Pw.ta9EKJ4RmXWm9Dy8LvU1Bg2N4a1Mw5A-yCNydDTR9N8 - pragma: - - no-cache - request-id: - - acd3fd6d-1292-42c0-9fd7-f3e11bc11bfb - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets - you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '832' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:43 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-request-charge: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "288586fc-9758-4b4c-ac98-a5b903902422"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000006?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 288586fc97584b4cac98a5b903902422 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:43 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets - you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '832' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:49 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-request-charge: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "288586fc-9758-4b4c-ac98-a5b903902422"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000007?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal 288586fc97584b4cac98a5b903902422 - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' - headers: - cache-control: - - no-cache - content-length: - - '163' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:50 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview - response: - body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets - you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' - headers: - cache-control: - - no-cache - content-length: - - '832' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:55 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-request-charge: - - '1' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "288586fc-9758-4b4c-ac98-a5b903902422"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp create-for-rbac - Connection: - - keep-alive - Content-Length: - - '233' - Content-Type: - - application/json; charset=utf-8 - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --scopes --keyvault --cert -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000008?api-version=2018-09-01-preview - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"288586fc-9758-4b4c-ac98-a5b903902422","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001","createdOn":"2019-06-21T18:30:56.4504500Z","updatedOn":"2019-06-21T18:30:56.4504500Z","createdBy":null,"updatedBy":"a1239024-a78f-4b62-a84e-3119f8924ffb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000008","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000008"}' - headers: - cache-control: - - no-cache - content-length: - - '903' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:58 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-ms-request-charge: - - '2' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"288586fc-9758-4b4c-ac98-a5b903902422","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert0000012","appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli_test_sp_with_kv_existing_cert0000012","1135b855-b422-4f55-b67a-77bebb479955"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2162' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:58 GMT - duration: - - '895815' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - kU2w10RodSRmFDDKfAx6uHxQPwDam6n6u8zYQa+I0/o= - ocp-aad-session-key: - - ssrBQOcvLb1TZIF3oidXlMBYKrOoLuWXFnZBtVCDeu8ViuCnunPSsiaRytNj7Mw7qqPgtJmq-DbGuk0yz3qs-Xoa218s0HhWSm4aD0dIrvEwUc_JDdqUtBQzdep0V72llzckbHMHdVrsAFf1DUnK8w.ZNA0HAjfBa_glZWMDe9nkDhI2X82wVZvzmNqep-2n5w - pragma: - - no-cache - request-id: - - df07b56a-e44b-4153-84f4-70304da707df - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%271135b855-b422-4f55-b67a-77bebb479955%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '121' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:59 GMT - duration: - - '865007' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - DAEEhUUzhQ8pu+4OxvItbpuvqegmLWoSgzWL1kkCnyk= - ocp-aad-session-key: - - iB88wqtiGUsKumYxrPnY7h7YX5Ee3R0GSX50W8sBAslwWU22PmiVwrtfHsyZQDWS1By_JZ8na5shmlqripfeo4KYswiLI3wqN5jIfE43sv8Uk7uTllwkLx9l9bkTcXMDOfV6F1OSWhQyAA7oFWd91g.Cuc5r4by0lzTMneq59twGOrPqOYyvzueP38l-khf9vI - pragma: - - no-cache - request-id: - - 38504f8c-9b1f-4384-bc26-3fff961d5d94 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%271135b855-b422-4f55-b67a-77bebb479955%27&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"88888888-0000-0000-0000-000000000005","startDate":"2019-06-21T18:30:41.236167Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2685' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:59 GMT - duration: - - '738030' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - +Vo1vaQr1J6K57B7CK/pVo20E97sFK7LOud+zxDHFNk= - ocp-aad-session-key: - - 9Vfr39FganVESNDvOERWMP6yOIMkFrYZAO-AhNNbx6hrgweA5pd1MdmrRUJc8-8PJKn_mK85aY67rR9syALwbOEHMuorzOn83JHbBl7aRxHZNGNhB-5I-VYoIqDGjiV2YHERFfpkDU7qVHDEmaRpVQ.T7T1a7AK1ECPQKj-KeZ90gRlMuzrCtiSsP5fg6WrBHU - pragma: - - no-cache - request-id: - - 7f915d30-ac9e-4368-8f9d-161a751a34bf - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/22602aba-3fcb-48ed-9b8e-a8b04948726b?api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"88888888-0000-0000-0000-000000000005","startDate":"2019-06-21T18:30:41.236167Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2682' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:30:59 GMT - duration: - - '2995631' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - MH0R8mLEKNJg37JupYky5a6a5nCUFLw87urdg3u3YYE= - ocp-aad-session-key: - - luEICbXffrBAjwSsFNLPPHANuvcwTA9zILayug1bgpAgchCrg4k95bwUfMh0_Nm2fr27H0u3dkt1XxEtdJy0VYhSdPDXcbmDM-E_qpfa6cLIn5968PbrLRk5AV1Gi02Pyhc7PieAWeADUOAhrphZgw.A_KnGSMm9G_PDq1nLrgT5IKu4AwRoVFfeGQs_U9QhJk - pragma: - - no-cache - request-id: - - fcbadad0-6619-4220-a5c1-cc437082cbbb - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 - Azure-SDK-For-Python - accept-language: - - en-US - method: GET - uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 - response: - body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/0da818a5284b450d8388ee785bdfcf48","kid":"https://clitest000002.vault.azure.net/keys/cert1/0da818a5284b450d8388ee785bdfcf48","sid":"https://clitest000002.vault.azure.net/secrets/cert1/0da818a5284b450d8388ee785bdfcf48","x5t":"vxy8X3ka0GEev0Y5wksuBgwk3OM","cer":"MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==","attributes":{"enabled":true,"nbf":1561141235,"exp":1576953035,"created":1561141835,"updated":1561141835,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":6,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141828}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' - headers: - cache-control: - - no-cache - content-length: - - '2386' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 21 Jun 2019 18:30:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.80;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.866 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"keyCredentials": [{"startDate": "2019-06-21T18:30:59.151859Z", "endDate": - "2019-12-21T18:30:34.000Z", "value": "MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==", - "keyId": "301c3c47-ca57-4d00-a8ae-9026b02aadc7", "usage": "Verify", "type": - "AsymmetricX509Cert"}]}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad sp credential reset - Connection: - - keep-alive - Content-Length: - - '1336' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n --keyvault --cert - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: PATCH - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/22602aba-3fcb-48ed-9b8e-a8b04948726b?api-version=1.6 - response: - body: - string: '' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - date: - - Fri, 21 Jun 2019 18:31:00 GMT - duration: - - '6140346' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - vzT+9Yq+aEnlFAqW4ArMt4wc+vCo9D3Xgf5jgx/UnQk= - ocp-aad-session-key: - - xX-ftpIn5W9ywE9t0Ljn7RBeZqThqAH0uMPIm45yJEIZ_GuknLY-iGGHRz0OB7LvUh7LGwuFI1P4pxs5MMIlBkCfegbd9M7O8JS2NCxmPOE_5vIIkVGlvELsULH7LRRLbu4VMgjnFNN103PT4KMWMA.pSw8KfjGDUOimYvYeJGKIejKoiqwIZSuXfRo2fT20zg - pragma: - - no-cache - request-id: - - 8a9f0e26-4141-4790-be64-a5bb9b3037fc - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad app delete - Connection: - - keep-alive - ParameterSetName: - - --id - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27%29&api-version=1.6 - response: - body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"301c3c47-ca57-4d00-a8ae-9026b02aadc7","startDate":"2019-06-21T18:30:59.151859Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf - of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow - the application to access cli_test_sp_with_kv_existing_cert0000012 on your - behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '2685' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 21 Jun 2019 18:31:01 GMT - duration: - - '859928' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - 7dMU+33Cz+68qE5sK7ANGlhWJX2RrZSFfal152ZxuSk= - ocp-aad-session-key: - - NwxbEStDtzTfPRhFVG8hlIvnNwL8O47RlMgTGb3q1KhL267LoiJ81R57uM_hw1TK4rU9SOZfCHukZix9W54ph5kKWdW2zcaY5cpmHjoUdI2JORVvkFBCw10yV3HdJb5ykINVdoP3mA-HLltv__0tFw.XGNO5YqrfY3JsYmmZlaIIYlUGzsneZSms3S3WfW0U3w - pragma: - - no-cache - request-id: - - 6af05af5-06fe-420a-a1ce-73c9e436d7e9 + - 41dcd477-3806-40b9-9f56-197ac478aeae strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2819,106 +571,4 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - ad app delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --id - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/22602aba-3fcb-48ed-9b8e-a8b04948726b?api-version=1.6 - response: - body: - string: '' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - date: - - Fri, 21 Jun 2019 18:31:01 GMT - duration: - - '3895644' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - 1Sw93lDg24rWQqiNnfxG0tmtbhuAcSA9P0X1MIiqPnE= - ocp-aad-session-key: - - MqWu9p_HdbESqB77sg8_x6x9MJKOOlF2_3Q2x90zENOU5K3pQAi8WlVrNJi8jS_UojrWSlpHVFzQ2mrWJRbqGSlDUG_GljfT-lQTXiKs_XaQywtVLi9Jkil_b1yBo8jSPIYhreNab9MD0gqWuwN9Bw.BkhLrBJehw9VWzC8IQVubYnv1TUIIAqA3uW5Ir2TsJo - pragma: - - no-cache - request-id: - - d5c38820-8188-40da-8b46-8f8072366fe1 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --name --yes --no-wait - User-Agent: - - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 - Azure-SDK-For-Python AZURECLI/2.0.67 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sp_with_kv_existing_cert000001?api-version=2019-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 21 Jun 2019 18:31:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1A6NUZXSVRIOjVGS1Y6NUZFWElTVElORzo1RkNFUlRFQ3xFQzczMUJBQjQyRDY3OTRBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - status: - code: 202 - message: Accepted version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml index 38147a25a37..d66adefb269 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:30:14 GMT + - Tue, 14 Jan 2020 01:22:49 GMT duration: - - '2569597' + - '2713394' expires: - '-1' ocp-aad-diagnostics-server-name: - - U3lEHEd4HwaNf+3fkcmhg9lpCZU+hn4xjWqA7IRjolM= + - WyFgWH96Xk8Sf9RnNkSofkodHlmn9+cmAX6u8ggtOyw= ocp-aad-session-key: - - XzeIPtjijeNByIjdl9EwYI401C5seQ33ZCH7XJY13ZPUyHhYrHABtRab7usOlcY6FBtqMXiJB9S0DZQJTdwMPAgrGuqoHRcrCrUgDm9q0kPtcZMLY-5zE-RAq80BCCo1im2LXPMoxeQ-dOZ7-aViSiYsMUdvC69vm_2F2UCYRXI.oGuoDG_CgJgTAWaI00XB6ZCr4Z2vkAY6XGA2C8OmXBg + - EmR6h27pjj9p9it1RDP-kDz2vUjEWTkGdWWJttDyTYmKpXbVYCuFHNualJf4P0wKeGWsc5FazAK0zXlTBw-vabTFVQ2l0WmayfUbflQ7ZxU4MWQ1QfbSMsks4XcLZ48dHIcT2NS2Ipl6ecJimBG6fb6FE3pzef6_lTA2ij5esyQ.ov4T4-SFWY_3uhRwqS-GeKUZjnOhdEiZBAxHUrhksGg pragma: - no-cache request-id: - - 18bf2966-a495-4e4a-a4cb-19f70626f31e + - 3b55f2a2-8564-46b2-bca6-d542032c7d3c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:22 GMT + - Tue, 14 Jan 2020 01:22:58 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' x-powered-by: - ASP.NET status: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:52 GMT + - Tue, 14 Jan 2020 01:23:29 GMT expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:54 GMT + - Tue, 14 Jan 2020 01:23:31 GMT expires: - '-1' pragma: @@ -265,9 +265,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/create?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCO3dwqf9jBnoQi61z972rznBqHmUGdyw3b8jJ7scF3GTMEukOZ9D99fH3M7ijlBR2mKzQkrdYDAGsiXUnsfhb64KvD9MSqpVhUEhHD6agarIt9c/Mct6E8Zppt4XeXstoulR+7MFgjoOYVRSifuUuKUcH3ITjJ0WV8m/v8h8TSECftUYizkmkEEcsPkvKZLr6LrwgCtvZfV82ptPWzFhFVK8vLxYOpNRG1hg7Tf26S8UdJMn/OdJThRJF7NQpbKcC/wKQ3WyyDqiBAR7nNBvPAjjpXZ8wrN8yL7RWpr/pYkn6h2k4eQKjZJ1zu29uutZLm7URETOpz1krRQ1k9/Ll3","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"4c03734db59541439a22e26abd9147f8"}' + time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' headers: cache-control: - no-cache @@ -276,11 +276,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:55 GMT + - Tue, 14 Jan 2020 01:23:33 GMT expires: - '-1' location: - - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=4c03734db59541439a22e26abd9147f8 + - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=c9cc23b5cc0b4c7d9915f171bd4f5480 pragma: - no-cache server: @@ -322,9 +322,119 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCO3dwqf9jBnoQi61z972rznBqHmUGdyw3b8jJ7scF3GTMEukOZ9D99fH3M7ijlBR2mKzQkrdYDAGsiXUnsfhb64KvD9MSqpVhUEhHD6agarIt9c/Mct6E8Zppt4XeXstoulR+7MFgjoOYVRSifuUuKUcH3ITjJ0WV8m/v8h8TSECftUYizkmkEEcsPkvKZLr6LrwgCtvZfV82ptPWzFhFVK8vLxYOpNRG1hg7Tf26S8UdJMn/OdJThRJF7NQpbKcC/wKQ3WyyDqiBAR7nNBvPAjjpXZ8wrN8yL7RWpr/pYkn6h2k4eQKjZJ1zu29uutZLm7URETOpz1krRQ1k9/Ll3","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' + headers: + cache-control: + - no-cache + content-length: + - '1322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:23:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 + response: + body: + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' + headers: + cache-control: + - no-cache + content-length: + - '1322' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:23:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 + response: + body: + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"4c03734db59541439a22e26abd9147f8"}' + time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' headers: cache-control: - no-cache @@ -333,7 +443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:57 GMT + - Tue, 14 Jan 2020 01:23:56 GMT expires: - '-1' pragma: @@ -377,7 +487,7 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCO3dwqf9jBnoQi61z972rznBqHmUGdyw3b8jJ7scF3GTMEukOZ9D99fH3M7ijlBR2mKzQkrdYDAGsiXUnsfhb64KvD9MSqpVhUEhHD6agarIt9c/Mct6E8Zppt4XeXstoulR+7MFgjoOYVRSifuUuKUcH3ITjJ0WV8m/v8h8TSECftUYizkmkEEcsPkvKZLr6LrwgCtvZfV82ptPWzFhFVK8vLxYOpNRG1hg7Tf26S8UdJMn/OdJThRJF7NQpbKcC/wKQ3WyyDqiBAR7nNBvPAjjpXZ8wrN8yL7RWpr/pYkn6h2k4eQKjZJ1zu29uutZLm7URETOpz1krRQ1k9/Ll3","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"4c03734db59541439a22e26abd9147f8"}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' headers: cache-control: - no-cache @@ -386,7 +496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:08 GMT + - Tue, 14 Jan 2020 01:24:08 GMT expires: - '-1' pragma: @@ -430,7 +540,7 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","x5t":"7R74VXjekvXE0bV46WDQBKxF6VE","cer":"MIIDQjCCAiqgAwIBAgIQUc2KKWlWQBqx7j+e3dHyGjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDEwNjE0MjEwN1oXDTIxMDEwNjE0MzEwN1owHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMecNhCEbiKo9rcvxyma77VqtRZhV3vTLuV5eDIjhIsDX5HwIArALsHOmyCvDB0861Y0P4SoHparKc9MG5YupjgE8DWtoz14eWDtLkJjIGyeClEXcKyS2NAbGNmbR7dWMa0hFG5xbm3DE+8woEvPtMtqjr3edhGknq1Isn13uccLJovEu3zOca9QlDzll916bdPxQQUDjbT9MDE/6AWIj/0vnAcAt3DUEZaBShvtt8sUGbvG4UfDeJkOG/bv9wSCBXCn1mO5ey5D4PxKn8c9JbFxv27uU1mhEqI+bmuFA/QBXSenrqsoIIl7IZJg5xGRsdIRRao4S+FZHP2Omfdhjp8CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPlMLlW5OfEOvYwf0CCUNaOmpv/VMB0GA1UdDgQWBBT5TC5VuTnxDr2MH9AglDWjpqb/1TANBgkqhkiG9w0BAQsFAAOCAQEASoYRgkhhpVrE0hGscyPHS8M8T/MGchviwFKaUCtLbmfAd4Miy+IvBolot2PZja3200iqwPzmbIZ0P4Z8YLXcUDltailR+vXRbiASi5vAS+Idi8Yv0pVFYc4cCxz24O3ZM5xqIkO3yuivbgWxLIYqWmbaX8zOJBDRlsdKsiWARfIdKDwWge9Upp0KGaMJBaD/hmNTFQ3Vr+zdQreFQvuiYNkbdbWcj1rFCGAGOjrft6IIqj5ql+EqvrCmBeaPwQtp5aI0IMxhrGzJewd3dKas3CDJF8jDqKqgYC6wsVrXbPv4lwvF161384o9C2m9sFYBEnQTXy79LTTjPG1r/aN6+Q==","attributes":{"enabled":true,"nbf":1578320467,"exp":1609943467,"created":1578321067,"updated":1578321067,"recoveryLevel":"Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578321055,"updated":1578321055}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","x5t":"dC9-ewJy1peDM6LCpLEC3hMyy84","cer":"MIIDQjCCAiqgAwIBAgIQBztrW4nJSlWuzRWNrOWZVDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDExNDAxMTM1OFoXDTIxMDExNDAxMjM1OFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFO9rSj8cER22rd8J4vQ8soD2ZrpzMB0GA1UdDgQWBBTva0o/HBEdtq3fCeL0PLKA9ma6czANBgkqhkiG9w0BAQsFAAOCAQEAcW7W0vlvSfjJWe3791X5tlPN3sDPyZZGUsYr5F5LMxTmv8ikdh7PXiEOCU5+r/fHSI+9fiSQ/buan96QSO1y2K84mouvapb7a4eXlYaRZ/xYmFMvJZN5URbcqOE6pyalvQbEBdR/ZpwoMkSAkV2CpNbhj+pnKU5JpmUR0VsT5oKvZtnNcsQ0NbPsrdieJM28KD3qf8VsRrLmbxA84vgYXa2XO9oTU72n2jTpeEvLSwXlUTrCYG1y62JY9/WNRNE6cMdEeUzSp3ANAY6EAgrFH0GvmrURSvMsfNMRqtQ9/Fuodi5it+9Ff1xCqjy4mUCIIDcUkMNevH1wi5tZNoldyA==","attributes":{"enabled":true,"nbf":1578964438,"exp":1610587438,"created":1578965038,"updated":1578965038,"recoveryLevel":"Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965012,"updated":1578965012}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' headers: cache-control: - no-cache @@ -439,7 +549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:09 GMT + - Tue, 14 Jan 2020 01:24:09 GMT expires: - '-1' pragma: @@ -485,7 +595,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:30:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -494,7 +604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:10 GMT + - Tue, 14 Jan 2020 01:24:10 GMT expires: - '-1' pragma: @@ -530,7 +640,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:30:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -539,7 +649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:11 GMT + - Tue, 14 Jan 2020 01:24:10 GMT expires: - '-1' pragma: @@ -577,16 +687,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secretsijt3r6jwileyqgsgdyxt7okzrtw2qd7czjhqiryvt/providers/Microsoft.KeyVault/vaults/vmlinuxkv2rzefco6hvg","name":"vmlinuxkv2rzefco6hvg","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","name":"yugangwbyok","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certbk3fay3vvkixlzogwucbyymtjdhws2ojd47jesq2q6mb6k4gty7wp/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-feryep","name":"cli-test-keyvault-feryep","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_saxgau4bydccjibwzr2wfspkrfubvrgqest4vbwj52ltuk6sjnuhii7sa/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-fa22px","name":"cli-test-keyvault-fa22px","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7elfmd26e7ytqctwkujqiat56jhsmwowkqc7ft54wvf2myqplc4bjh5/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yooita","name":"cli-test-keyvault-yooita","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret5yhunrxgffpbqtbiesczpnqmfdbqxjkzb2rd7ychconne3iherr/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-pgndvw","name":"cli-test-keyvault-pgndvw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5xwvxujgqsmaygl3epc6r75gcu5cjetkecvw43ksukxvzdhmqj/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tz6oq","name":"cli-test-keyvault-3tz6oq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","name":"yugangw30-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '3382' + - '2992' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:12 GMT + - Tue, 14 Jan 2020 01:24:11 GMT expires: - '-1' pragma: @@ -633,7 +743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:14 GMT + - Tue, 14 Jan 2020 01:24:12 GMT expires: - '-1' pragma: @@ -674,19 +784,19 @@ interactions: accept-language: - en-US method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe?api-version=7.0 + uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2?api-version=7.0 response: body: - string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgSylzJZloQTgICB9AEggTYPxj0hCg9SgkY9igqj6a/KUIDFgv6Gz9usxnMqbqTei7fECuAeq4gn4Oau++r9pudy6gXgmhcr52QdSLMrwNKWRQZVVwPraa5TvF5e/w3VCn5uL/MmYsWIiCgc7mqhu7sRR9BY/XhOd8gsNagZq5Bn2EWkOxHogeEnbxAfugVLuaaYfByn9QsYLU4vCdOIT7lbjD3K6GSjqPGxdfXpqNMaHx9zXhKHIqdjxND6a1g8ak8ePCJRDTZJWxytPgJOPZj1qaqKmDe46oJ97e/kqugmYMwsDu6Dmqk2sFsCSqOyZC7Q/B0WLnL0lpxfSp7qSCf/F7efNjp97FUhwSl2aExznWiO7IbIPr5WO/pciob4VWNj+vEEyjYrGBISL77cyOomQaMhWsk9N9fcUuWHmGMAYkQLhumxXQo3Oqs2aG/4Hud54b0g/+8bM/DJfmP4HIGTknDpoMzN0Az4GcpfhVlDHmFiOaaV5KMrPRA7JERagR3BPXywt2qbJIkRQENwagDiQqE5eMpFZE11e6+AI/4W1Iqx46G8g9ysTpT6VsvuObDGT6LEbR8h3RnlYWt0r27m68PXKAUszn5dy+ZWWL3tbqXvMBMfWio2FZfF4ew5tiVOOSZaZrBN7p2wJj5Ep097469XCbyCLSlJnSC02K6F4s70Qei5JcaTWD8bKBudgDF/eAWGjt04bPN7sAcpVZWfYan7YfiH8l5VvcqbGKq/1dUrvuM5dNfMtFQWXCuyaI/NlrxEZbt+IhIqbYmzrBLfOMJ6fe8FEMMogcxzlGz/dj/UyOkFNj4tr/zweUK2wXY0ElvJjsO9IYzfKJ5aAaAy5RH0aoNVMYmK5NRikeRdh+nKxweC/NLU35gBuE+NnPAVIZHSRJeCZzIXRdHFoD+ow3f15nrqTMkxMpLDCIg+Yd4EUwDUTFsaw3JmjckLqpcSHq2fAzJCuWGR+tgqgcbbB3MbaB0gECzRPSfSRoukzfzOr8qzuA5DNuULkTvvuqFRVPcpELBq4T2OINFtYNuacvz3wPTU3yGp8HyX0gUlNch4/HgjNk8BXkYEjNoUSrvqoElyq0bA4i6MSYyFh87Rbs2l5wXV6J4o1cp5+tfD4h7luz3/6XiHtT6Pff/mxHxElaawxOcxwv1KBxQm+T60t8EE4X6aNzjm9vbeqpp6NvgqBz9u/h86jMssMX2ZpWpiDMgpaszwrgq/TCZRpMA6/mjRekZESTpejxdI0722+5XhttRmCUuXLaw4Dad/5KT7ODKyIbVV1JvfmSgsLQebJi7zNPdEuqzPDqoqSLbUgF2EXAgJfOmxYohKHcI15Jv2DZKvjeh23jfFb8ANCNu9Bbaji+rHoSDSlIjFh4MpmrFj9cCwLK0M1un2xryLASh4OIgKl7Qegyvr2fHYsiptHSNs1tqUSge7m9T+gO0SrKw2t61FyUo8UznZOuawc0SrIsKv8C5u/+pBPMqM0uymz0Tut+xikZ2vC9ZI0eR0a3QAF10IoNKnHOXF/LZHwWqUyS3t42mmxKKmocqZS9ZoFKKCwvlee1PBwnsgYxuOvIgGeaxEmPowpTYaagq9+5zlRFecIocAoP9Oxcq+lGN1uINSrybY45SEzMINMqkCz90VDa2IfJP04rzIIyKR1JWuq9RwzRPnjGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADAAOAAxAGEAMgAxADEAZQAtADQAOAA5ADAALQA0ADAAMQBhAC0AOAAxADkAYQAtADYANgBhAGMAMwAwADYANwAzAGYANABlMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAhNWAVIqXKmAAICB9CAggOQ1v5eMFMhLiA2peK7eU1fdayhcJoBtHKRztlTSWRRpSqzowM0jjWfdAk/G1u7Oz8OcUpjvePY0UjG7wCsHeAk0jkn2b19sOEb4GN1xSun+wSUz/MKB6+bmxsLy3Qq26yXj1/dCT+yL3+MvsxB9ID9GaTEDc6/omh1S1GCzohLVciaA/UgO8CW+bskG0ebLaxWFZmd/9qmYMfmn6fXWWQL13xoi331Lnc9V0GEFoltY/k8M18OI1nALLFfvQn0FXsBUWRoR4ual9KR0Kx5tfCuxsrVdvBtczIgh69pfCi7TOmDwcYee4LZUSyptukGHKhQCFt5VXc1iZFmS7dnox/z2CCnCvYWR7PUILJkVH3G9x6NvrVMxuTAfrBfHEvMk8zJRXBKaZTpjNHBmALdaA/JTotmlpVTEb75XXQM42fMxKDJQ/WggwyoIw6QErpCvskDTBchIegRnvnB8E+7q5T+JSBvyVGUWdviRTCuzLIjmWjRkPJqzaQm6Zy31WRZynas9yc5IbmuuavtRlkbISPoql4QlVqMn6hxLrjt4SJdvZ1rGRxY6nIlJj7wIBJXAqnu8L6a04hT8/5j1Nw8kkAk+Y3745UMXA3M3Z8iaQnjxiaoWD328H1TUaclE/tF7kWqZOZF6IlgDdlc+77xWwYcQtZoOyyrQvgORqeYbSms+CXebmggdFM5qlEVRiAU2Ojm7LDa8ccnyZRfZTyKLigT1z5SMC3W42ddJVOZMfbX3nYcYBgUQdSdlhhW0cxsZLAAO/uxc9HTl7hopSQA2se+0W2u1RcumYyuDAmr3TenNmyWc/r7uTn32kWEBE/RzS+OY/h6c6Gr6Y3n5BnFA5dOi3UNdg7bWyYWnLjYcPr4vYnTjYDBxDR79k/I2N4FtsncqZokErze7AIiJ3GoWXhoOIHHg+fLgZIFU5A1hWgpgTFTvUeK/8eGCA/m/g0f/cODVcZ7I6ttjGRhwGDy9AWL/fPDlfahsd8PuzW5O/Dnx1YfPxH7ew967CEziKIfSK1nTXf+9YrnyP37sO/7lyJSjvDqehLOvRqqDt+Vfd6iC872Dwf/4z2wJhnqVUdnoX8ujbkOdBoASA5ZghqqxjJRSUzRCloB9WVIdU0lUUNOukbc6QU7CLXQtaNly90CUhbMIIvMQFCLLMsT6jnQqEEc3Wn3kLBx3KGwZD6zTxizXRpMcf/LeIIIVrEftt5c4SZqMDcwHzAHBgUrDgMCGgQUUgxSFQU5a3Sh85S/0c2jVoc47LYEFDNNj0IWUjQTjLnyPCoTHPSOM1pN","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe","managed":true,"attributes":{"enabled":true,"nbf":1578320467,"exp":1609943467,"created":1578321067,"updated":1578321067,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"}' + string: '{"value":"MIIKRAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAgQWSSFMaDrJwICB9AEggTQLqq9uW/ts0cwO4wExhuNnAjT/NdikoaNt9kra4Fdalx86KpRqE0k9PwL3RWbbgpRm1rniJ6BW/y5kE2SjUalfw6KxZ7gaFqX9MUt962JpJacS0YiFj9d9ZQAztz2hHuWZ72Ghf5Sx3/QVdcxRR8MaNyt1yce6+Dm3fAx2ScGG59oapxzRqNgHJodceEygxaZPrRCXiAczbhOLqoQyBHDGtrZNlRqjBWQAZrIa5V7VhtBV1y3smkuzJtuDrb3oyOrtCnjGQhay26QSkxnTw/Blw2RtSdKO2jkgBAxYIVcosGfaGV4KI59WfLlyJOQv93sBN1Cro0LKtf+zjeiNt65ZxrnMI19TR7fLsDqJG94gkIqG4QJjDUqjUAX9dMejY3+g+GCRzWQ6gPpKzENsoUTuv4tJ9oLhgq5e37MDSy2xjZkRMRq4WjctXe75CGzWqJkJGnHtrEn2n5zQbhzAQaJlnt0nALhuBO/WsuwYNIuxvbWysoEQfm0zPUcXHbH0qa/1LzOrP0ZHKhIkA1CbNv3Re4dEUfLvVwFMPUaw6nxdTF6LDEhi1icHI2Kkz2oVmMCm85dTCu1ykR2n4Rbhz1ekWtKP9WLXc73RshFTrU3kx01ZC7QyheZN89DX7O9j5Ar/UP8a3nbU124P3k4qAP/p6ft2pKAxlKw5pgbk7Kw13Cwtr9QavHJMZURN4wshplcMGlq4aiN/cwRz1BZZ1yDSooKsOJNf8yonmmR/VRLLUERjXwKkzpF2YbeeYdP9rtSVzD4xw87D1bi+oCjXrqQYm5zZGhv48Ek4cQmJxyPB34rribEQgLm/68G0GBYMt2KgqAkY/t9GeFB9dtlsQRUpWKANl41fAggS+RP+80Z4p2aTacauhPmcLGIiCBJeUkY9yHVblyH6DzJKOG+JE+R4RyKqhDsOqLb4QsJkeJR1ATa9DWUoEvQ7jmvlGAQNOMDOoL4X/hba7ml0pnIbcoozS5GFkSqLglh/m4uaEyIm7YqhE5kjxf6vrCFFrKgMBjEDz5uRIoDKNGPW/jE1Tz+TuTv02j7TcK5qeymc3qUy5iq7QSTaC6R9SoIJPac1Eb+IupsZK3aRJ9TY7QfZt5fVrm1xzX5t6BbtbMa8vbkrZH+kSOjkLYybxqyBiJ5qbztgkh6OX+kH2onwiHvwBmVVW/byj6LXZ/bozVFaqZux8iYWNhN+dY9uhbdOiejHPFLqwRVa8TZCp6dlFga2BD7e2fVY0cQwWaFAHVOADN8bDPfhQ5azlKfDSowoW1oyjU+34y8DfJ8UlvwUhk9WFCjXjlpLeODejvwXQHwVqaHy9S3MgIexRc7lQaYusAbQhUMvh7bYHVvIV1NUGu3+jto4I4BvjsWfD0D/tqMX2k58vk04A6fd2YofU2Q5jlj+Lx61Ri0c6bynYeJCXic5j2KEQMHI2b0vHxqIasPJhWdyJGgNMwH6md9n3Y+sozV7RSiRImM2fia2p6p4/gwf/So8+4SDgHQTFnX9B42t6c0RRUAJPOiiqFKlq3BnwlsmM+NZVd92BNLGEaOiENiylovpde0x30Vg7nrUd/zufwOa+YclAIOrWu4GvmQDn7DusrlyfpI/myilx5tPsDNZDcUfkoiNuRitHV2imnUc/F4dgoxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSABmADYAYgA5AGEAYwBkAGEALQA1ADMAMABhAC0ANAAxAGEANwAtAGEAMABhADIALQBkADIAZABlADQAZABmADcAMgA0AGIANjB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQI6JlbHV3JjbsCAgfQgIIDkGqy8FGfhhc8aMz3WjcxRGDZb1ehk656RKFmbamLGBTe0YU8dy5eXcrfdn6v8+vDsxce+KAkUjlzBJO5hCNz5s+qdaTcm7oEpX4z3aB4i+PM3pSu0nygk+zzbd+TSPr9F2M41WX4Opgod0HPx5RZd6YXmObIuQ4kcwabPlfyE3GTCPE5twPZY0A9HL+2u5DEUvT9o5Ebx0ieRJo///dKN0uXDINdD/cH5DdOYiicn9AZrxjtLxasOiFtatnH5cjuchZ04PZAKHMg3HaDYU9BpjELlPSJ9OuMCQ8fJ/or+KOLbssehkKmosbJLRsvLwksbOBEX4iSPRG4BHuL54M3giSPYRuc4cXNFr5t/GMSV9pjh2XXBsM7EB5+jHnniU+EIkvE3ddFVxAr6DlRDi/yIWS61XuJrVM8riBen5sQguDPjCDl+x8Q3A81fhnjIXazzhQzMzB3UA6WqQeF18Oe2JNtRvfqLPfnYCrkBK0CNS04iCyGOYoHjzaFuH8WZ2AbVheHvslxx8iGWGWEmCSb1tm9mvy/aqaFw38hd5h7L8pmkBJYHf323CotYWgAlmGIwISokknl5+LKGT3hFjZjqlxzZQaV51SgHXvFaOA+x3j3Ae6JG1jnuP3SXfi9gmEtyslI/YVBHAVNn0gVx970l+nh6BqwOKkkI72fpAHY7kdL81RuOlaZ/Aa47qHlZWHoNV3Nd3D61q4r5bsm4N8XAvD/a8XyUwgUJSZNjo95d8x0ADTASXn8/JgJFGS0dMGCiMHq1EN11OtCJII/V/fHMfeH6hoW1+SA3VivAv70eE2ePosUHzr59UiON8fHeQH7ouVpCc+WMRL7xi+CZyCVf2U78890dTP82ufwm8NNLCevCEbmCUnnvlqwGMtg07UjRQ9MAMlGRiC4/LAF1miP0Ys5IFBMii0MV3JOQsITCTb/mj9qSWsXFDot4HUhLURA2KS+dn9pgeLpcVuj4Brpoig/uRVbDXN5VBDa+gW8FCwYAYnpsDZgv5MX4iQGHYY/47pUEH7fwICoQ3ZTSLG44WwinMY4iulqszsx2vspfPF4+sP3vhAA6Dli8W2lxBH8Lun6I4A9TOQgHuzuyjRzKz4+KkRdzw5t63zmK05MGmng2m6tw8ofI8CoHz+82avLTxCsBm2wAicAU7dyqjmJT1a5q/p0cUeGh55OpYDD7JKCVBVU70mjDhQ2IPjV80VImDA3MB8wBwYFKw4DAhoEFDwyDaoJLJ5lnhoCXcqdLGbUqAkmBBR1tL6H6O9LfZi1hTXIkzBpvCNpFA==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","managed":true,"attributes":{"enabled":true,"nbf":1578964438,"exp":1610587438,"created":1578965038,"updated":1578965038,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"}' headers: cache-control: - no-cache content-length: - - '3960' + - '3952' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:16 GMT + - Tue, 14 Jan 2020 01:24:14 GMT expires: - '-1' pragma: @@ -921,8 +1031,8 @@ interactions: "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value": - "ED1EF85578DE92F5C4D1B578E960D004AC45E951"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"}, + "742F7E7B0272D6978333A2C2A4B102DE1332CBCE"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -952,7 +1062,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231","name":"AzurePSDeployment-202001062231","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"ED1EF85578DE92F5C4D1B578E960D004AC45E951"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:31:18.2842734Z","duration":"PT0S","correlationId":"93c0a204-1900-49c2-a25d-06f89f571306","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924","name":"AzurePSDeployment-202001140924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-14T01:24:16.9444203Z","duration":"PT0S","correlationId":"c358526b-c3ea-4cfa-a211-a95d68db1e60","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' headers: cache-control: - no-cache @@ -961,7 +1071,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:18 GMT + - Tue, 14 Jan 2020 01:24:17 GMT expires: - '-1' pragma: @@ -975,7 +1085,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1190,8 +1300,8 @@ interactions: "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value": - "ED1EF85578DE92F5C4D1B578E960D004AC45E951"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"}, + "742F7E7B0272D6978333A2C2A4B102DE1332CBCE"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -1221,18 +1331,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231","name":"AzurePSDeployment-202001062231","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"ED1EF85578DE92F5C4D1B578E960D004AC45E951"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:31:22.7876234Z","duration":"PT1.704698S","correlationId":"4a3bd98f-4587-4cd8-9b34-9e72c5b65b3e","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924","name":"AzurePSDeployment-202001140924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-14T01:24:23.3645461Z","duration":"PT2.7944278S","correlationId":"99854d92-7658-45b7-a822-2b1ec5a13631","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231/operationStatuses/08586232858043947527?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924/operationStatuses/08586226418249075756?api-version=2019-07-01 cache-control: - no-cache content-length: - - '7190' + - '7191' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:22 GMT + - Tue, 14 Jan 2020 01:24:24 GMT expires: - '-1' pragma: @@ -1242,7 +1352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1194' status: code: 201 message: Created @@ -1263,7 +1373,136 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:24:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:25:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:25:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1275,7 +1514,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:54 GMT + - Tue, 14 Jan 2020 01:26:26 GMT expires: - '-1' pragma: @@ -1306,7 +1545,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1318,7 +1557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:32:24 GMT + - Tue, 14 Jan 2020 01:26:57 GMT expires: - '-1' pragma: @@ -1349,7 +1588,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1361,7 +1600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:32:56 GMT + - Tue, 14 Jan 2020 01:27:28 GMT expires: - '-1' pragma: @@ -1392,7 +1631,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1404,7 +1643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:26 GMT + - Tue, 14 Jan 2020 01:27:58 GMT expires: - '-1' pragma: @@ -1435,7 +1674,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1447,7 +1686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:56 GMT + - Tue, 14 Jan 2020 01:28:29 GMT expires: - '-1' pragma: @@ -1478,7 +1717,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1490,7 +1729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:34:27 GMT + - Tue, 14 Jan 2020 01:28:59 GMT expires: - '-1' pragma: @@ -1521,7 +1760,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1533,7 +1772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:34:58 GMT + - Tue, 14 Jan 2020 01:29:29 GMT expires: - '-1' pragma: @@ -1564,7 +1803,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1576,7 +1815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:35:28 GMT + - Tue, 14 Jan 2020 01:30:00 GMT expires: - '-1' pragma: @@ -1607,7 +1846,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1615,17 +1854,1660 @@ interactions: cache-control: - no-cache content-length: - - '20' + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:30:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:31:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:31:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:32:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:32:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924","name":"AzurePSDeployment-202001140924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-14T01:32:32.9675919Z","duration":"PT8M12.3974736S","correlationId":"99854d92-7658-45b7-a822-2b1ec5a13631","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e","clusterCodeVersion":"6.5.676.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e","certificate":{"thumbprint":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogs5y3xteo3wib6y2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/","queueEndpoint":"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/","tableEndpoint":"https://sflogs5y3xteo3wib6y2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"6.5.676.9590","supportExpiryUtc":"2020-05-01T00:00:00","environment":"Windows"},{"codeVersion":"7.0.457.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '10394' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:32:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --secret-identifier --vm-password --cluster-size + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 01:32:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.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/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 06 Jan 2020 14:36:00 GMT + - Tue, 14 Jan 2020 01:33:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1641,34 +3523,75 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster create + - sf cluster show Connection: - keep-alive ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size + - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-servicefabric/0.2.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/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview response: body: - string: '{"status":"Running"}' + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '20' + - '2736' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 06 Jan 2020 14:36:30 GMT + - Tue, 14 Jan 2020 01:33:02 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1684,34 +3607,75 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster create + - sf cluster show Connection: - keep-alive ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size + - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-servicefabric/0.2.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/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview response: body: - string: '{"status":"Running"}' + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '20' + - '2736' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 06 Jan 2020 14:37:00 GMT + - Tue, 14 Jan 2020 01:33:04 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1727,34 +3691,75 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster create + - sf cluster show Connection: - keep-alive ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size + - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-servicefabric/0.2.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/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858043947527?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview response: body: - string: '{"status":"Succeeded"}' + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '22' + - '2736' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 06 Jan 2020 14:37:31 GMT + - Tue, 14 Jan 2020 01:33:05 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1770,34 +3775,75 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster create + - sf cluster show Connection: - keep-alive ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size + - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-servicefabric/0.2.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/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001062231","name":"AzurePSDeployment-202001062231","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"ED1EF85578DE92F5C4D1B578E960D004AC45E951"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:37:09.3299086Z","duration":"PT5M48.2469832S","correlationId":"4a3bd98f-4587-4cd8-9b34-9e72c5b65b3e","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2fswaa2omdra63","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2fswaa2omdra62","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"c44f903e-f63a-48e0-b1cb-5b826c44ddc6","clusterCodeVersion":"6.5.676.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6","certificate":{"thumbprint":"ED1EF85578DE92F5C4D1B578E960D004AC45E951","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogs2fswaa2omdra62","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogs2fswaa2omdra62.blob.core.windows.net/","queueEndpoint":"https://sflogs2fswaa2omdra62.queue.core.windows.net/","tableEndpoint":"https://sflogs2fswaa2omdra62.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"6.5.676.9590","supportExpiryUtc":"2020-05-01T00:00:00","environment":"Windows"},{"codeVersion":"7.0.457.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2fswaa2omdra63"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2fswaa2omdra62"}]}}' + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '10394' + - '2736' content-type: - - application/json; charset=utf-8 + - application/json date: - - Mon, 06 Jan 2020 14:37:32 GMT + - Tue, 14 Jan 2020 01:33:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1813,11 +3859,11 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster create + - sf cluster show Connection: - keep-alive ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size + - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 @@ -1831,12 +3877,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -1850,11 +3896,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -1870,7 +3916,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:34 GMT + - Tue, 14 Jan 2020 01:33:07 GMT expires: - '-1' pragma: @@ -1915,12 +3961,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -1934,11 +3980,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -1954,7 +4000,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:36 GMT + - Tue, 14 Jan 2020 01:33:09 GMT expires: - '-1' pragma: @@ -1999,12 +4045,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2018,11 +4064,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2038,7 +4084,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:37 GMT + - Tue, 14 Jan 2020 01:33:10 GMT expires: - '-1' pragma: @@ -2083,12 +4129,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2102,11 +4148,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2122,7 +4168,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:40 GMT + - Tue, 14 Jan 2020 01:33:12 GMT expires: - '-1' pragma: @@ -2167,12 +4213,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2186,11 +4232,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2206,7 +4252,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:43 GMT + - Tue, 14 Jan 2020 01:33:13 GMT expires: - '-1' pragma: @@ -2251,12 +4297,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2270,11 +4316,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2290,7 +4336,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:44 GMT + - Tue, 14 Jan 2020 01:33:14 GMT expires: - '-1' pragma: @@ -2335,12 +4381,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2354,11 +4400,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2374,7 +4420,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:46 GMT + - Tue, 14 Jan 2020 01:33:16 GMT expires: - '-1' pragma: @@ -2419,12 +4465,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2438,11 +4484,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2458,7 +4504,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:49 GMT + - Tue, 14 Jan 2020 01:33:18 GMT expires: - '-1' pragma: @@ -2503,12 +4549,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2522,11 +4568,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2542,7 +4588,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:51 GMT + - Tue, 14 Jan 2020 01:33:20 GMT expires: - '-1' pragma: @@ -2587,12 +4633,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2606,11 +4652,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2626,7 +4672,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:53 GMT + - Tue, 14 Jan 2020 01:33:22 GMT expires: - '-1' pragma: @@ -2671,12 +4717,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2690,11 +4736,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2710,7 +4756,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:54 GMT + - Tue, 14 Jan 2020 01:33:23 GMT expires: - '-1' pragma: @@ -2755,12 +4801,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2774,11 +4820,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2794,7 +4840,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:57 GMT + - Tue, 14 Jan 2020 01:33:25 GMT expires: - '-1' pragma: @@ -2839,12 +4885,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2858,11 +4904,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2878,7 +4924,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:37:58 GMT + - Tue, 14 Jan 2020 01:33:27 GMT expires: - '-1' pragma: @@ -2923,12 +4969,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2942,11 +4988,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2962,7 +5008,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:00 GMT + - Tue, 14 Jan 2020 01:33:27 GMT expires: - '-1' pragma: @@ -3007,12 +5053,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3026,11 +5072,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3046,7 +5092,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:02 GMT + - Tue, 14 Jan 2020 01:33:28 GMT expires: - '-1' pragma: @@ -3091,12 +5137,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3110,11 +5156,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3130,7 +5176,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:03 GMT + - Tue, 14 Jan 2020 01:33:31 GMT expires: - '-1' pragma: @@ -3175,12 +5221,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3194,11 +5240,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3214,7 +5260,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:05 GMT + - Tue, 14 Jan 2020 01:33:32 GMT expires: - '-1' pragma: @@ -3259,12 +5305,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3278,11 +5324,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3298,7 +5344,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:07 GMT + - Tue, 14 Jan 2020 01:33:33 GMT expires: - '-1' pragma: @@ -3343,12 +5389,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3362,11 +5408,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3382,7 +5428,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:08 GMT + - Tue, 14 Jan 2020 01:33:35 GMT expires: - '-1' pragma: @@ -3427,12 +5473,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3446,11 +5492,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3466,7 +5512,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:11 GMT + - Tue, 14 Jan 2020 01:33:36 GMT expires: - '-1' pragma: @@ -3511,12 +5557,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3530,11 +5576,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3550,7 +5596,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:12 GMT + - Tue, 14 Jan 2020 01:33:37 GMT expires: - '-1' pragma: @@ -3595,12 +5641,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3614,11 +5660,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3634,7 +5680,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:14 GMT + - Tue, 14 Jan 2020 01:33:39 GMT expires: - '-1' pragma: @@ -3679,12 +5725,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3698,11 +5744,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3718,7 +5764,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:14 GMT + - Tue, 14 Jan 2020 01:33:41 GMT expires: - '-1' pragma: @@ -3763,12 +5809,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3782,11 +5828,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3802,7 +5848,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:16 GMT + - Tue, 14 Jan 2020 01:33:42 GMT expires: - '-1' pragma: @@ -3847,12 +5893,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3866,11 +5912,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3886,7 +5932,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:18 GMT + - Tue, 14 Jan 2020 01:33:44 GMT expires: - '-1' pragma: @@ -3931,12 +5977,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3950,11 +5996,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3970,7 +6016,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:19 GMT + - Tue, 14 Jan 2020 01:33:46 GMT expires: - '-1' pragma: @@ -4015,12 +6061,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4034,11 +6080,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4054,7 +6100,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:20 GMT + - Tue, 14 Jan 2020 01:33:47 GMT expires: - '-1' pragma: @@ -4099,12 +6145,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4118,11 +6164,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4138,7 +6184,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:22 GMT + - Tue, 14 Jan 2020 01:33:49 GMT expires: - '-1' pragma: @@ -4183,12 +6229,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4202,11 +6248,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4222,7 +6268,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:25 GMT + - Tue, 14 Jan 2020 01:33:51 GMT expires: - '-1' pragma: @@ -4267,12 +6313,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4286,11 +6332,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4306,7 +6352,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:27 GMT + - Tue, 14 Jan 2020 01:33:53 GMT expires: - '-1' pragma: @@ -4351,12 +6397,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4370,11 +6416,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4390,7 +6436,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:28 GMT + - Tue, 14 Jan 2020 01:33:55 GMT expires: - '-1' pragma: @@ -4435,12 +6481,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4454,11 +6500,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4474,7 +6520,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:30 GMT + - Tue, 14 Jan 2020 01:33:56 GMT expires: - '-1' pragma: @@ -4519,12 +6565,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4538,11 +6584,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4558,7 +6604,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:32 GMT + - Tue, 14 Jan 2020 01:33:58 GMT expires: - '-1' pragma: @@ -4603,12 +6649,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4622,11 +6668,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4642,7 +6688,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:34 GMT + - Tue, 14 Jan 2020 01:34:00 GMT expires: - '-1' pragma: @@ -4687,12 +6733,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4706,11 +6752,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4726,7 +6772,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:34 GMT + - Tue, 14 Jan 2020 01:34:02 GMT expires: - '-1' pragma: @@ -4771,12 +6817,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4790,11 +6836,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4810,7 +6856,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:38 GMT + - Tue, 14 Jan 2020 01:34:04 GMT expires: - '-1' pragma: @@ -4855,12 +6901,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4874,11 +6920,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4894,7 +6940,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:40 GMT + - Tue, 14 Jan 2020 01:34:06 GMT expires: - '-1' pragma: @@ -4939,12 +6985,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4958,11 +7004,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4978,7 +7024,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:42 GMT + - Tue, 14 Jan 2020 01:34:09 GMT expires: - '-1' pragma: @@ -5023,12 +7069,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5042,11 +7088,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5062,7 +7108,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:42 GMT + - Tue, 14 Jan 2020 01:34:10 GMT expires: - '-1' pragma: @@ -5107,12 +7153,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5126,11 +7172,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5146,7 +7192,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:45 GMT + - Tue, 14 Jan 2020 01:34:13 GMT expires: - '-1' pragma: @@ -5191,12 +7237,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5210,11 +7256,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5230,7 +7276,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:47 GMT + - Tue, 14 Jan 2020 01:34:14 GMT expires: - '-1' pragma: @@ -5275,12 +7321,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5294,11 +7340,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5314,7 +7360,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:49 GMT + - Tue, 14 Jan 2020 01:34:16 GMT expires: - '-1' pragma: @@ -5359,12 +7405,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5378,11 +7424,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5398,7 +7444,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:50 GMT + - Tue, 14 Jan 2020 01:34:17 GMT expires: - '-1' pragma: @@ -5443,12 +7489,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5462,11 +7508,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5482,7 +7528,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:53 GMT + - Tue, 14 Jan 2020 01:34:20 GMT expires: - '-1' pragma: @@ -5527,12 +7573,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5546,11 +7592,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5566,7 +7612,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:55 GMT + - Tue, 14 Jan 2020 01:34:22 GMT expires: - '-1' pragma: @@ -5611,12 +7657,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5630,11 +7676,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5650,7 +7696,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:56 GMT + - Tue, 14 Jan 2020 01:34:23 GMT expires: - '-1' pragma: @@ -5695,12 +7741,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5714,11 +7760,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5734,7 +7780,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:38:57 GMT + - Tue, 14 Jan 2020 01:34:25 GMT expires: - '-1' pragma: @@ -5779,12 +7825,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5798,11 +7844,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5818,7 +7864,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:00 GMT + - Tue, 14 Jan 2020 01:34:28 GMT expires: - '-1' pragma: @@ -5863,12 +7909,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5882,11 +7928,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5902,7 +7948,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:02 GMT + - Tue, 14 Jan 2020 01:34:29 GMT expires: - '-1' pragma: @@ -5947,12 +7993,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5966,11 +8012,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5986,7 +8032,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:04 GMT + - Tue, 14 Jan 2020 01:34:31 GMT expires: - '-1' pragma: @@ -6031,12 +8077,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6050,11 +8096,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6070,7 +8116,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:06 GMT + - Tue, 14 Jan 2020 01:34:34 GMT expires: - '-1' pragma: @@ -6115,12 +8161,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6134,11 +8180,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6154,7 +8200,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:09 GMT + - Tue, 14 Jan 2020 01:34:35 GMT expires: - '-1' pragma: @@ -6199,12 +8245,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6218,11 +8264,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6238,7 +8284,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:10 GMT + - Tue, 14 Jan 2020 01:34:37 GMT expires: - '-1' pragma: @@ -6283,12 +8329,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6302,11 +8348,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6322,7 +8368,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:13 GMT + - Tue, 14 Jan 2020 01:34:40 GMT expires: - '-1' pragma: @@ -6367,12 +8413,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6386,11 +8432,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6406,7 +8452,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:15 GMT + - Tue, 14 Jan 2020 01:34:41 GMT expires: - '-1' pragma: @@ -6451,12 +8497,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6470,11 +8516,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6490,7 +8536,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:16 GMT + - Tue, 14 Jan 2020 01:34:44 GMT expires: - '-1' pragma: @@ -6535,12 +8581,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6554,11 +8600,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6574,7 +8620,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:18 GMT + - Tue, 14 Jan 2020 01:34:46 GMT expires: - '-1' pragma: @@ -6619,12 +8665,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6638,11 +8684,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6658,7 +8704,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:20 GMT + - Tue, 14 Jan 2020 01:34:48 GMT expires: - '-1' pragma: @@ -6703,12 +8749,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6722,11 +8768,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6742,7 +8788,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:23 GMT + - Tue, 14 Jan 2020 01:34:49 GMT expires: - '-1' pragma: @@ -6787,12 +8833,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6806,11 +8852,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6826,7 +8872,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:26 GMT + - Tue, 14 Jan 2020 01:34:51 GMT expires: - '-1' pragma: @@ -6871,12 +8917,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6890,11 +8936,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6910,7 +8956,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:28 GMT + - Tue, 14 Jan 2020 01:34:53 GMT expires: - '-1' pragma: @@ -6955,12 +9001,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6974,11 +9020,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6994,7 +9040,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:30 GMT + - Tue, 14 Jan 2020 01:34:56 GMT expires: - '-1' pragma: @@ -7039,12 +9085,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7058,11 +9104,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7078,7 +9124,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:32 GMT + - Tue, 14 Jan 2020 01:34:59 GMT expires: - '-1' pragma: @@ -7123,12 +9169,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7142,11 +9188,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7162,7 +9208,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:34 GMT + - Tue, 14 Jan 2020 01:35:01 GMT expires: - '-1' pragma: @@ -7207,12 +9253,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7226,11 +9272,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7246,7 +9292,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:35 GMT + - Tue, 14 Jan 2020 01:35:04 GMT expires: - '-1' pragma: @@ -7291,12 +9337,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7310,11 +9356,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7330,7 +9376,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:37 GMT + - Tue, 14 Jan 2020 01:35:06 GMT expires: - '-1' pragma: @@ -7375,12 +9421,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7394,11 +9440,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7414,7 +9460,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:39 GMT + - Tue, 14 Jan 2020 01:35:07 GMT expires: - '-1' pragma: @@ -7459,12 +9505,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7478,11 +9524,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7498,7 +9544,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:41 GMT + - Tue, 14 Jan 2020 01:35:10 GMT expires: - '-1' pragma: @@ -7543,12 +9589,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7562,11 +9608,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7582,7 +9628,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:43 GMT + - Tue, 14 Jan 2020 01:35:12 GMT expires: - '-1' pragma: @@ -7627,12 +9673,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7646,11 +9692,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7666,7 +9712,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:45 GMT + - Tue, 14 Jan 2020 01:35:14 GMT expires: - '-1' pragma: @@ -7711,12 +9757,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7730,11 +9776,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7750,7 +9796,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:47 GMT + - Tue, 14 Jan 2020 01:35:15 GMT expires: - '-1' pragma: @@ -7795,12 +9841,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7814,11 +9860,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7834,7 +9880,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:49 GMT + - Tue, 14 Jan 2020 01:35:18 GMT expires: - '-1' pragma: @@ -7879,12 +9925,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7898,11 +9944,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7918,7 +9964,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:52 GMT + - Tue, 14 Jan 2020 01:35:20 GMT expires: - '-1' pragma: @@ -7963,12 +10009,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7982,11 +10028,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8002,7 +10048,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:54 GMT + - Tue, 14 Jan 2020 01:35:22 GMT expires: - '-1' pragma: @@ -8047,12 +10093,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8066,11 +10112,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8086,7 +10132,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:56 GMT + - Tue, 14 Jan 2020 01:35:24 GMT expires: - '-1' pragma: @@ -8131,12 +10177,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8150,11 +10196,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8170,7 +10216,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:39:58 GMT + - Tue, 14 Jan 2020 01:35:26 GMT expires: - '-1' pragma: @@ -8215,12 +10261,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8234,11 +10280,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8254,7 +10300,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:00 GMT + - Tue, 14 Jan 2020 01:35:29 GMT expires: - '-1' pragma: @@ -8299,12 +10345,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8318,11 +10364,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8338,7 +10384,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:02 GMT + - Tue, 14 Jan 2020 01:35:31 GMT expires: - '-1' pragma: @@ -8383,12 +10429,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8402,11 +10448,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8422,7 +10468,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:03 GMT + - Tue, 14 Jan 2020 01:35:34 GMT expires: - '-1' pragma: @@ -8467,12 +10513,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8486,11 +10532,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8506,7 +10552,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:07 GMT + - Tue, 14 Jan 2020 01:35:35 GMT expires: - '-1' pragma: @@ -8551,12 +10597,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8570,11 +10616,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8590,7 +10636,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:09 GMT + - Tue, 14 Jan 2020 01:35:38 GMT expires: - '-1' pragma: @@ -8635,12 +10681,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8654,11 +10700,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8674,7 +10720,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:11 GMT + - Tue, 14 Jan 2020 01:35:39 GMT expires: - '-1' pragma: @@ -8719,12 +10765,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8738,11 +10784,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8758,7 +10804,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:13 GMT + - Tue, 14 Jan 2020 01:35:41 GMT expires: - '-1' pragma: @@ -8803,12 +10849,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8822,11 +10868,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8842,7 +10888,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:15 GMT + - Tue, 14 Jan 2020 01:35:44 GMT expires: - '-1' pragma: @@ -8887,12 +10933,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8906,11 +10952,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8926,7 +10972,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:16 GMT + - Tue, 14 Jan 2020 01:35:46 GMT expires: - '-1' pragma: @@ -8971,12 +11017,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8990,11 +11036,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9010,7 +11056,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:18 GMT + - Tue, 14 Jan 2020 01:35:48 GMT expires: - '-1' pragma: @@ -9055,12 +11101,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9074,11 +11120,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9094,7 +11140,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:22 GMT + - Tue, 14 Jan 2020 01:35:52 GMT expires: - '-1' pragma: @@ -9139,12 +11185,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9158,11 +11204,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9178,7 +11224,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:23 GMT + - Tue, 14 Jan 2020 01:35:54 GMT expires: - '-1' pragma: @@ -9223,12 +11269,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9242,11 +11288,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9262,7 +11308,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:25 GMT + - Tue, 14 Jan 2020 01:35:57 GMT expires: - '-1' pragma: @@ -9307,12 +11353,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9326,11 +11372,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9346,7 +11392,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:28 GMT + - Tue, 14 Jan 2020 01:35:59 GMT expires: - '-1' pragma: @@ -9391,12 +11437,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9410,11 +11456,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9430,7 +11476,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:30 GMT + - Tue, 14 Jan 2020 01:36:01 GMT expires: - '-1' pragma: @@ -9475,12 +11521,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9494,11 +11540,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9514,7 +11560,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:34 GMT + - Tue, 14 Jan 2020 01:36:04 GMT expires: - '-1' pragma: @@ -9559,12 +11605,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9578,11 +11624,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9598,7 +11644,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:35 GMT + - Tue, 14 Jan 2020 01:36:06 GMT expires: - '-1' pragma: @@ -9643,12 +11689,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9662,11 +11708,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9682,7 +11728,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:38 GMT + - Tue, 14 Jan 2020 01:36:08 GMT expires: - '-1' pragma: @@ -9727,12 +11773,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9746,11 +11792,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9766,7 +11812,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:40 GMT + - Tue, 14 Jan 2020 01:36:10 GMT expires: - '-1' pragma: @@ -9811,12 +11857,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9830,11 +11876,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9850,7 +11896,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:43 GMT + - Tue, 14 Jan 2020 01:36:13 GMT expires: - '-1' pragma: @@ -9895,12 +11941,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9914,11 +11960,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9934,7 +11980,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:45 GMT + - Tue, 14 Jan 2020 01:36:15 GMT expires: - '-1' pragma: @@ -9979,12 +12025,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9998,11 +12044,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10018,7 +12064,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:47 GMT + - Tue, 14 Jan 2020 01:36:18 GMT expires: - '-1' pragma: @@ -10063,12 +12109,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10082,11 +12128,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10102,7 +12148,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:50 GMT + - Tue, 14 Jan 2020 01:36:20 GMT expires: - '-1' pragma: @@ -10147,12 +12193,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10166,11 +12212,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10186,7 +12232,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:52 GMT + - Tue, 14 Jan 2020 01:36:22 GMT expires: - '-1' pragma: @@ -10231,12 +12277,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10250,11 +12296,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10270,7 +12316,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:54 GMT + - Tue, 14 Jan 2020 01:36:24 GMT expires: - '-1' pragma: @@ -10315,12 +12361,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10334,11 +12380,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10354,7 +12400,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:57 GMT + - Tue, 14 Jan 2020 01:36:27 GMT expires: - '-1' pragma: @@ -10399,12 +12445,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10418,11 +12464,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10438,7 +12484,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:40:58 GMT + - Tue, 14 Jan 2020 01:36:28 GMT expires: - '-1' pragma: @@ -10483,12 +12529,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10502,11 +12548,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10522,7 +12568,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:01 GMT + - Tue, 14 Jan 2020 01:36:30 GMT expires: - '-1' pragma: @@ -10567,12 +12613,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10586,11 +12632,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10606,7 +12652,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:04 GMT + - Tue, 14 Jan 2020 01:36:32 GMT expires: - '-1' pragma: @@ -10651,12 +12697,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10670,11 +12716,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10690,7 +12736,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:06 GMT + - Tue, 14 Jan 2020 01:36:36 GMT expires: - '-1' pragma: @@ -10735,12 +12781,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10754,11 +12800,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10774,7 +12820,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:09 GMT + - Tue, 14 Jan 2020 01:36:39 GMT expires: - '-1' pragma: @@ -10819,12 +12865,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10838,11 +12884,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10858,7 +12904,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:11 GMT + - Tue, 14 Jan 2020 01:36:42 GMT expires: - '-1' pragma: @@ -10903,12 +12949,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10922,11 +12968,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10942,7 +12988,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:13 GMT + - Tue, 14 Jan 2020 01:36:43 GMT expires: - '-1' pragma: @@ -10987,12 +13033,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11006,11 +13052,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11026,7 +13072,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:16 GMT + - Tue, 14 Jan 2020 01:36:46 GMT expires: - '-1' pragma: @@ -11071,12 +13117,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11090,11 +13136,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11110,7 +13156,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:18 GMT + - Tue, 14 Jan 2020 01:36:49 GMT expires: - '-1' pragma: @@ -11155,12 +13201,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11174,11 +13220,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11194,7 +13240,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:20 GMT + - Tue, 14 Jan 2020 01:36:52 GMT expires: - '-1' pragma: @@ -11239,12 +13285,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11258,11 +13304,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11278,7 +13324,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:24 GMT + - Tue, 14 Jan 2020 01:36:54 GMT expires: - '-1' pragma: @@ -11323,12 +13369,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11342,11 +13388,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11362,7 +13408,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:25 GMT + - Tue, 14 Jan 2020 01:36:57 GMT expires: - '-1' pragma: @@ -11407,12 +13453,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11426,11 +13472,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11446,7 +13492,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:29 GMT + - Tue, 14 Jan 2020 01:37:00 GMT expires: - '-1' pragma: @@ -11491,12 +13537,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11510,11 +13556,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11530,7 +13576,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:32 GMT + - Tue, 14 Jan 2020 01:37:02 GMT expires: - '-1' pragma: @@ -11575,12 +13621,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11594,11 +13640,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11614,7 +13660,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:34 GMT + - Tue, 14 Jan 2020 01:37:05 GMT expires: - '-1' pragma: @@ -11659,12 +13705,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11678,11 +13724,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11698,7 +13744,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:37 GMT + - Tue, 14 Jan 2020 01:37:06 GMT expires: - '-1' pragma: @@ -11743,12 +13789,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11762,11 +13808,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11782,7 +13828,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:40 GMT + - Tue, 14 Jan 2020 01:37:08 GMT expires: - '-1' pragma: @@ -11827,12 +13873,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11846,11 +13892,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11866,7 +13912,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:42 GMT + - Tue, 14 Jan 2020 01:37:11 GMT expires: - '-1' pragma: @@ -11911,12 +13957,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11930,11 +13976,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11950,7 +13996,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:44 GMT + - Tue, 14 Jan 2020 01:37:13 GMT expires: - '-1' pragma: @@ -11995,12 +14041,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12014,11 +14060,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12034,7 +14080,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:46 GMT + - Tue, 14 Jan 2020 01:37:16 GMT expires: - '-1' pragma: @@ -12079,12 +14125,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12098,11 +14144,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12118,7 +14164,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:49 GMT + - Tue, 14 Jan 2020 01:37:19 GMT expires: - '-1' pragma: @@ -12163,12 +14209,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12182,11 +14228,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12202,7 +14248,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:53 GMT + - Tue, 14 Jan 2020 01:37:21 GMT expires: - '-1' pragma: @@ -12247,12 +14293,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12266,11 +14312,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12286,7 +14332,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:55 GMT + - Tue, 14 Jan 2020 01:37:24 GMT expires: - '-1' pragma: @@ -12331,12 +14377,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12350,11 +14396,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12370,7 +14416,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:41:57 GMT + - Tue, 14 Jan 2020 01:37:27 GMT expires: - '-1' pragma: @@ -12415,12 +14461,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12434,11 +14480,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12454,7 +14500,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:00 GMT + - Tue, 14 Jan 2020 01:37:30 GMT expires: - '-1' pragma: @@ -12499,12 +14545,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12518,11 +14564,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12538,7 +14584,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:03 GMT + - Tue, 14 Jan 2020 01:37:32 GMT expires: - '-1' pragma: @@ -12583,12 +14629,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12602,11 +14648,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12622,7 +14668,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:05 GMT + - Tue, 14 Jan 2020 01:37:35 GMT expires: - '-1' pragma: @@ -12667,12 +14713,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12686,11 +14732,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12706,7 +14752,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:07 GMT + - Tue, 14 Jan 2020 01:37:36 GMT expires: - '-1' pragma: @@ -12751,12 +14797,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12770,11 +14816,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12790,7 +14836,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:09 GMT + - Tue, 14 Jan 2020 01:37:39 GMT expires: - '-1' pragma: @@ -12835,12 +14881,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12854,11 +14900,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12874,7 +14920,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:12 GMT + - Tue, 14 Jan 2020 01:37:42 GMT expires: - '-1' pragma: @@ -12919,12 +14965,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12938,11 +14984,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12958,7 +15004,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:15 GMT + - Tue, 14 Jan 2020 01:37:45 GMT expires: - '-1' pragma: @@ -13003,12 +15049,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13022,11 +15068,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13042,7 +15088,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:17 GMT + - Tue, 14 Jan 2020 01:37:47 GMT expires: - '-1' pragma: @@ -13087,12 +15133,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13106,11 +15152,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13126,7 +15172,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:20 GMT + - Tue, 14 Jan 2020 01:37:51 GMT expires: - '-1' pragma: @@ -13171,12 +15217,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13190,11 +15236,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13210,7 +15256,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:23 GMT + - Tue, 14 Jan 2020 01:37:53 GMT expires: - '-1' pragma: @@ -13255,12 +15301,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13274,11 +15320,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13294,7 +15340,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:25 GMT + - Tue, 14 Jan 2020 01:37:56 GMT expires: - '-1' pragma: @@ -13339,12 +15385,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13358,11 +15404,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13378,7 +15424,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:29 GMT + - Tue, 14 Jan 2020 01:37:59 GMT expires: - '-1' pragma: @@ -13423,12 +15469,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13442,11 +15488,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13462,7 +15508,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:31 GMT + - Tue, 14 Jan 2020 01:38:02 GMT expires: - '-1' pragma: @@ -13507,12 +15553,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13526,11 +15572,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13546,7 +15592,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:33 GMT + - Tue, 14 Jan 2020 01:38:05 GMT expires: - '-1' pragma: @@ -13591,12 +15637,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13610,11 +15656,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13630,7 +15676,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:36 GMT + - Tue, 14 Jan 2020 01:38:07 GMT expires: - '-1' pragma: @@ -13675,12 +15721,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13694,11 +15740,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13714,7 +15760,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:38 GMT + - Tue, 14 Jan 2020 01:38:09 GMT expires: - '-1' pragma: @@ -13759,12 +15805,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13778,11 +15824,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13798,7 +15844,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:41 GMT + - Tue, 14 Jan 2020 01:38:12 GMT expires: - '-1' pragma: @@ -13843,12 +15889,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13862,11 +15908,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13882,7 +15928,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:45 GMT + - Tue, 14 Jan 2020 01:38:14 GMT expires: - '-1' pragma: @@ -13927,12 +15973,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13946,11 +15992,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13966,7 +16012,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:48 GMT + - Tue, 14 Jan 2020 01:38:16 GMT expires: - '-1' pragma: @@ -14011,12 +16057,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14030,11 +16076,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14050,7 +16096,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:50 GMT + - Tue, 14 Jan 2020 01:38:20 GMT expires: - '-1' pragma: @@ -14095,12 +16141,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14114,11 +16160,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14134,7 +16180,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:52 GMT + - Tue, 14 Jan 2020 01:38:23 GMT expires: - '-1' pragma: @@ -14179,12 +16225,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14198,11 +16244,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14218,7 +16264,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:55 GMT + - Tue, 14 Jan 2020 01:38:30 GMT expires: - '-1' pragma: @@ -14263,12 +16309,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14282,11 +16328,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14302,7 +16348,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:42:58 GMT + - Tue, 14 Jan 2020 01:38:32 GMT expires: - '-1' pragma: @@ -14347,12 +16393,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14366,11 +16412,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14386,7 +16432,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:02 GMT + - Tue, 14 Jan 2020 01:38:35 GMT expires: - '-1' pragma: @@ -14431,12 +16477,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14450,11 +16496,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14470,7 +16516,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:03 GMT + - Tue, 14 Jan 2020 01:38:38 GMT expires: - '-1' pragma: @@ -14515,12 +16561,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14534,11 +16580,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14554,7 +16600,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:07 GMT + - Tue, 14 Jan 2020 01:38:40 GMT expires: - '-1' pragma: @@ -14599,12 +16645,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14618,11 +16664,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14634,11 +16680,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:09 GMT + - Tue, 14 Jan 2020 01:38:44 GMT expires: - '-1' pragma: @@ -14683,12 +16729,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14702,11 +16748,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14718,11 +16764,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:12 GMT + - Tue, 14 Jan 2020 01:38:47 GMT expires: - '-1' pragma: @@ -14767,12 +16813,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14786,11 +16832,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14802,11 +16848,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:15 GMT + - Tue, 14 Jan 2020 01:38:49 GMT expires: - '-1' pragma: @@ -14851,12 +16897,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14870,11 +16916,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14886,11 +16932,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:17 GMT + - Tue, 14 Jan 2020 01:38:52 GMT expires: - '-1' pragma: @@ -14935,12 +16981,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14954,11 +17000,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14970,11 +17016,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:20 GMT + - Tue, 14 Jan 2020 01:38:56 GMT expires: - '-1' pragma: @@ -15019,12 +17065,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15038,11 +17084,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15054,11 +17100,11 @@ interactions: cache-control: - no-cache content-length: - - '2736' + - '2742' content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:23 GMT + - Tue, 14 Jan 2020 01:38:59 GMT expires: - '-1' pragma: @@ -15103,12 +17149,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15122,11 +17168,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15142,7 +17188,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:26 GMT + - Tue, 14 Jan 2020 01:39:02 GMT expires: - '-1' pragma: @@ -15187,12 +17233,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15206,11 +17252,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15226,7 +17272,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:28 GMT + - Tue, 14 Jan 2020 01:39:05 GMT expires: - '-1' pragma: @@ -15271,12 +17317,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15290,11 +17336,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15310,7 +17356,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:32 GMT + - Tue, 14 Jan 2020 01:39:08 GMT expires: - '-1' pragma: @@ -15355,12 +17401,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15374,11 +17420,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15394,7 +17440,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:35 GMT + - Tue, 14 Jan 2020 01:39:11 GMT expires: - '-1' pragma: @@ -15439,12 +17485,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15458,11 +17504,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15478,7 +17524,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:38 GMT + - Tue, 14 Jan 2020 01:39:14 GMT expires: - '-1' pragma: @@ -15523,12 +17569,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15542,11 +17588,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15562,7 +17608,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:40 GMT + - Tue, 14 Jan 2020 01:39:16 GMT expires: - '-1' pragma: @@ -15607,12 +17653,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15626,11 +17672,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15646,7 +17692,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:44 GMT + - Tue, 14 Jan 2020 01:39:20 GMT expires: - '-1' pragma: @@ -15691,12 +17737,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15710,11 +17756,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15730,7 +17776,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:47 GMT + - Tue, 14 Jan 2020 01:39:23 GMT expires: - '-1' pragma: @@ -15775,12 +17821,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15794,11 +17840,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15814,7 +17860,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:50 GMT + - Tue, 14 Jan 2020 01:39:26 GMT expires: - '-1' pragma: @@ -15859,12 +17905,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15878,11 +17924,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15898,7 +17944,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:52 GMT + - Tue, 14 Jan 2020 01:39:29 GMT expires: - '-1' pragma: @@ -15943,12 +17989,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15962,11 +18008,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15982,7 +18028,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:55 GMT + - Tue, 14 Jan 2020 01:39:32 GMT expires: - '-1' pragma: @@ -16027,12 +18073,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16046,11 +18092,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16066,7 +18112,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:43:58 GMT + - Tue, 14 Jan 2020 01:39:35 GMT expires: - '-1' pragma: @@ -16111,12 +18157,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16130,11 +18176,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16150,7 +18196,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:00 GMT + - Tue, 14 Jan 2020 01:39:37 GMT expires: - '-1' pragma: @@ -16195,12 +18241,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16214,11 +18260,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16234,7 +18280,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:03 GMT + - Tue, 14 Jan 2020 01:39:41 GMT expires: - '-1' pragma: @@ -16279,12 +18325,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16298,11 +18344,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16318,7 +18364,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:05 GMT + - Tue, 14 Jan 2020 01:39:43 GMT expires: - '-1' pragma: @@ -16363,12 +18409,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16382,11 +18428,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16402,7 +18448,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:09 GMT + - Tue, 14 Jan 2020 01:39:46 GMT expires: - '-1' pragma: @@ -16447,12 +18493,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16466,11 +18512,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16486,7 +18532,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:13 GMT + - Tue, 14 Jan 2020 01:39:49 GMT expires: - '-1' pragma: @@ -16531,12 +18577,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16550,11 +18596,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16570,7 +18616,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:16 GMT + - Tue, 14 Jan 2020 01:39:52 GMT expires: - '-1' pragma: @@ -16615,12 +18661,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16634,11 +18680,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16654,7 +18700,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:19 GMT + - Tue, 14 Jan 2020 01:39:55 GMT expires: - '-1' pragma: @@ -16699,12 +18745,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16718,11 +18764,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16738,7 +18784,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:22 GMT + - Tue, 14 Jan 2020 01:39:58 GMT expires: - '-1' pragma: @@ -16783,12 +18829,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16802,11 +18848,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16822,7 +18868,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:24 GMT + - Tue, 14 Jan 2020 01:40:02 GMT expires: - '-1' pragma: @@ -16867,12 +18913,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16886,11 +18932,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16906,7 +18952,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:28 GMT + - Tue, 14 Jan 2020 01:40:03 GMT expires: - '-1' pragma: @@ -16951,12 +18997,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16970,11 +19016,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16990,7 +19036,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:31 GMT + - Tue, 14 Jan 2020 01:40:08 GMT expires: - '-1' pragma: @@ -17035,12 +19081,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17054,11 +19100,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17074,7 +19120,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:34 GMT + - Tue, 14 Jan 2020 01:40:10 GMT expires: - '-1' pragma: @@ -17119,12 +19165,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17138,11 +19184,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17158,7 +19204,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:37 GMT + - Tue, 14 Jan 2020 01:40:14 GMT expires: - '-1' pragma: @@ -17203,12 +19249,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17222,11 +19268,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17242,7 +19288,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:40 GMT + - Tue, 14 Jan 2020 01:40:17 GMT expires: - '-1' pragma: @@ -17287,12 +19333,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17306,11 +19352,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17326,7 +19372,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:43 GMT + - Tue, 14 Jan 2020 01:40:20 GMT expires: - '-1' pragma: @@ -17371,12 +19417,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17390,11 +19436,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17410,7 +19456,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:46 GMT + - Tue, 14 Jan 2020 01:40:23 GMT expires: - '-1' pragma: @@ -17455,12 +19501,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17474,11 +19520,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17494,7 +19540,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:49 GMT + - Tue, 14 Jan 2020 01:40:26 GMT expires: - '-1' pragma: @@ -17539,12 +19585,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17558,11 +19604,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17578,7 +19624,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:52 GMT + - Tue, 14 Jan 2020 01:40:29 GMT expires: - '-1' pragma: @@ -17623,12 +19669,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17642,11 +19688,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17662,7 +19708,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:54 GMT + - Tue, 14 Jan 2020 01:40:32 GMT expires: - '-1' pragma: @@ -17707,12 +19753,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17726,11 +19772,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17746,7 +19792,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:44:58 GMT + - Tue, 14 Jan 2020 01:40:36 GMT expires: - '-1' pragma: @@ -17791,12 +19837,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17810,11 +19856,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17830,7 +19876,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:01 GMT + - Tue, 14 Jan 2020 01:40:38 GMT expires: - '-1' pragma: @@ -17875,12 +19921,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17894,11 +19940,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17914,7 +19960,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:04 GMT + - Tue, 14 Jan 2020 01:40:41 GMT expires: - '-1' pragma: @@ -17959,12 +20005,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17978,11 +20024,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17998,7 +20044,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:08 GMT + - Tue, 14 Jan 2020 01:40:46 GMT expires: - '-1' pragma: @@ -18043,12 +20089,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18062,11 +20108,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18082,7 +20128,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:12 GMT + - Tue, 14 Jan 2020 01:40:48 GMT expires: - '-1' pragma: @@ -18127,12 +20173,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18146,11 +20192,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18166,7 +20212,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:15 GMT + - Tue, 14 Jan 2020 01:40:51 GMT expires: - '-1' pragma: @@ -18211,12 +20257,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18230,11 +20276,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18250,7 +20296,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:18 GMT + - Tue, 14 Jan 2020 01:40:53 GMT expires: - '-1' pragma: @@ -18295,12 +20341,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18314,11 +20360,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18334,7 +20380,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:21 GMT + - Tue, 14 Jan 2020 01:40:56 GMT expires: - '-1' pragma: @@ -18379,12 +20425,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18398,11 +20444,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18418,7 +20464,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:24 GMT + - Tue, 14 Jan 2020 01:40:58 GMT expires: - '-1' pragma: @@ -18463,12 +20509,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18482,11 +20528,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18502,7 +20548,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:27 GMT + - Tue, 14 Jan 2020 01:41:02 GMT expires: - '-1' pragma: @@ -18547,12 +20593,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18566,11 +20612,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18586,7 +20632,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:30 GMT + - Tue, 14 Jan 2020 01:41:05 GMT expires: - '-1' pragma: @@ -18631,12 +20677,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18650,11 +20696,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18670,7 +20716,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:34 GMT + - Tue, 14 Jan 2020 01:41:09 GMT expires: - '-1' pragma: @@ -18715,12 +20761,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18734,11 +20780,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18754,7 +20800,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:38 GMT + - Tue, 14 Jan 2020 01:41:12 GMT expires: - '-1' pragma: @@ -18799,12 +20845,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18818,11 +20864,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18838,7 +20884,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:41 GMT + - Tue, 14 Jan 2020 01:41:17 GMT expires: - '-1' pragma: @@ -18883,12 +20929,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18902,11 +20948,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18922,7 +20968,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:44 GMT + - Tue, 14 Jan 2020 01:41:19 GMT expires: - '-1' pragma: @@ -18967,12 +21013,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18986,11 +21032,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19006,7 +21052,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:47 GMT + - Tue, 14 Jan 2020 01:41:22 GMT expires: - '-1' pragma: @@ -19051,12 +21097,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19070,11 +21116,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19090,7 +21136,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:51 GMT + - Tue, 14 Jan 2020 01:41:25 GMT expires: - '-1' pragma: @@ -19135,12 +21181,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19154,11 +21200,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19174,7 +21220,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:55 GMT + - Tue, 14 Jan 2020 01:41:29 GMT expires: - '-1' pragma: @@ -19219,12 +21265,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19238,11 +21284,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19258,7 +21304,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:45:59 GMT + - Tue, 14 Jan 2020 01:41:32 GMT expires: - '-1' pragma: @@ -19303,12 +21349,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19322,11 +21368,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19342,7 +21388,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:02 GMT + - Tue, 14 Jan 2020 01:41:35 GMT expires: - '-1' pragma: @@ -19387,12 +21433,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19406,11 +21452,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19426,7 +21472,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:04 GMT + - Tue, 14 Jan 2020 01:41:39 GMT expires: - '-1' pragma: @@ -19471,12 +21517,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19490,11 +21536,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19510,7 +21556,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:08 GMT + - Tue, 14 Jan 2020 01:41:41 GMT expires: - '-1' pragma: @@ -19555,12 +21601,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19574,11 +21620,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19594,7 +21640,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:12 GMT + - Tue, 14 Jan 2020 01:41:45 GMT expires: - '-1' pragma: @@ -19639,12 +21685,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19658,11 +21704,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19678,7 +21724,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:15 GMT + - Tue, 14 Jan 2020 01:41:48 GMT expires: - '-1' pragma: @@ -19723,12 +21769,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19742,11 +21788,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19762,7 +21808,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:18 GMT + - Tue, 14 Jan 2020 01:41:52 GMT expires: - '-1' pragma: @@ -19807,12 +21853,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19826,11 +21872,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19846,7 +21892,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:22 GMT + - Tue, 14 Jan 2020 01:41:55 GMT expires: - '-1' pragma: @@ -19891,12 +21937,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19910,11 +21956,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19930,7 +21976,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:26 GMT + - Tue, 14 Jan 2020 01:41:58 GMT expires: - '-1' pragma: @@ -19975,12 +22021,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19994,11 +22040,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20014,7 +22060,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:28 GMT + - Tue, 14 Jan 2020 01:42:01 GMT expires: - '-1' pragma: @@ -20059,12 +22105,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20078,11 +22124,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20098,7 +22144,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:32 GMT + - Tue, 14 Jan 2020 01:42:04 GMT expires: - '-1' pragma: @@ -20143,12 +22189,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20162,11 +22208,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20182,7 +22228,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:35 GMT + - Tue, 14 Jan 2020 01:42:07 GMT expires: - '-1' pragma: @@ -20227,12 +22273,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20246,11 +22292,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20266,7 +22312,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:38 GMT + - Tue, 14 Jan 2020 01:42:10 GMT expires: - '-1' pragma: @@ -20311,12 +22357,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20330,11 +22376,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20350,7 +22396,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:41 GMT + - Tue, 14 Jan 2020 01:42:13 GMT expires: - '-1' pragma: @@ -20395,12 +22441,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20414,11 +22460,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20434,7 +22480,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:45 GMT + - Tue, 14 Jan 2020 01:42:16 GMT expires: - '-1' pragma: @@ -20479,12 +22525,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20498,11 +22544,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20518,7 +22564,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:47 GMT + - Tue, 14 Jan 2020 01:42:19 GMT expires: - '-1' pragma: @@ -20563,12 +22609,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20582,11 +22628,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20602,7 +22648,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:50 GMT + - Tue, 14 Jan 2020 01:42:22 GMT expires: - '-1' pragma: @@ -20647,12 +22693,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20666,11 +22712,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20686,7 +22732,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:53 GMT + - Tue, 14 Jan 2020 01:42:27 GMT expires: - '-1' pragma: @@ -20731,12 +22777,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20750,11 +22796,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20770,7 +22816,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:46:57 GMT + - Tue, 14 Jan 2020 01:42:30 GMT expires: - '-1' pragma: @@ -20815,12 +22861,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20834,11 +22880,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20854,7 +22900,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:01 GMT + - Tue, 14 Jan 2020 01:42:33 GMT expires: - '-1' pragma: @@ -20899,12 +22945,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20918,11 +22964,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20938,7 +22984,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:05 GMT + - Tue, 14 Jan 2020 01:42:37 GMT expires: - '-1' pragma: @@ -20983,12 +23029,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21002,11 +23048,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21022,7 +23068,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:07 GMT + - Tue, 14 Jan 2020 01:42:41 GMT expires: - '-1' pragma: @@ -21067,12 +23113,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21086,11 +23132,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21106,7 +23152,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:12 GMT + - Tue, 14 Jan 2020 01:42:45 GMT expires: - '-1' pragma: @@ -21151,12 +23197,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21170,11 +23216,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21190,7 +23236,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:15 GMT + - Tue, 14 Jan 2020 01:42:48 GMT expires: - '-1' pragma: @@ -21235,12 +23281,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21254,11 +23300,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21274,7 +23320,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:18 GMT + - Tue, 14 Jan 2020 01:42:51 GMT expires: - '-1' pragma: @@ -21319,12 +23365,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21338,11 +23384,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21358,7 +23404,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:22 GMT + - Tue, 14 Jan 2020 01:42:54 GMT expires: - '-1' pragma: @@ -21403,12 +23449,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21422,11 +23468,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21442,7 +23488,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:25 GMT + - Tue, 14 Jan 2020 01:42:58 GMT expires: - '-1' pragma: @@ -21487,12 +23533,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21506,11 +23552,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21526,7 +23572,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:29 GMT + - Tue, 14 Jan 2020 01:43:02 GMT expires: - '-1' pragma: @@ -21571,12 +23617,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21590,11 +23636,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21610,7 +23656,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:32 GMT + - Tue, 14 Jan 2020 01:43:06 GMT expires: - '-1' pragma: @@ -21655,12 +23701,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21674,11 +23720,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21694,7 +23740,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:35 GMT + - Tue, 14 Jan 2020 01:43:10 GMT expires: - '-1' pragma: @@ -21739,12 +23785,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21758,11 +23804,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21778,7 +23824,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:39 GMT + - Tue, 14 Jan 2020 01:43:14 GMT expires: - '-1' pragma: @@ -21823,12 +23869,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21842,11 +23888,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21862,7 +23908,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:43 GMT + - Tue, 14 Jan 2020 01:43:17 GMT expires: - '-1' pragma: @@ -21907,12 +23953,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21926,11 +23972,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21946,7 +23992,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:48 GMT + - Tue, 14 Jan 2020 01:43:21 GMT expires: - '-1' pragma: @@ -21991,12 +24037,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22010,11 +24056,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22030,7 +24076,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:51 GMT + - Tue, 14 Jan 2020 01:43:24 GMT expires: - '-1' pragma: @@ -22075,12 +24121,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22094,11 +24140,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22114,7 +24160,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:53 GMT + - Tue, 14 Jan 2020 01:43:28 GMT expires: - '-1' pragma: @@ -22159,12 +24205,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22178,11 +24224,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22198,7 +24244,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:47:57 GMT + - Tue, 14 Jan 2020 01:43:31 GMT expires: - '-1' pragma: @@ -22243,12 +24289,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22262,11 +24308,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22282,7 +24328,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:01 GMT + - Tue, 14 Jan 2020 01:43:34 GMT expires: - '-1' pragma: @@ -22327,12 +24373,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22346,11 +24392,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22366,7 +24412,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:04 GMT + - Tue, 14 Jan 2020 01:43:38 GMT expires: - '-1' pragma: @@ -22411,12 +24457,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22430,11 +24476,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22450,7 +24496,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:08 GMT + - Tue, 14 Jan 2020 01:43:43 GMT expires: - '-1' pragma: @@ -22495,12 +24541,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22514,11 +24560,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22534,7 +24580,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:11 GMT + - Tue, 14 Jan 2020 01:43:46 GMT expires: - '-1' pragma: @@ -22579,12 +24625,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22598,11 +24644,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22618,7 +24664,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:15 GMT + - Tue, 14 Jan 2020 01:43:50 GMT expires: - '-1' pragma: @@ -22663,12 +24709,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22682,11 +24728,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22702,7 +24748,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:18 GMT + - Tue, 14 Jan 2020 01:43:54 GMT expires: - '-1' pragma: @@ -22747,12 +24793,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22766,11 +24812,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22786,7 +24832,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:21 GMT + - Tue, 14 Jan 2020 01:43:57 GMT expires: - '-1' pragma: @@ -22831,12 +24877,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22850,11 +24896,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22870,7 +24916,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:26 GMT + - Tue, 14 Jan 2020 01:44:00 GMT expires: - '-1' pragma: @@ -22915,12 +24961,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22934,11 +24980,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22954,7 +25000,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:30 GMT + - Tue, 14 Jan 2020 01:44:04 GMT expires: - '-1' pragma: @@ -22999,12 +25045,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23018,11 +25064,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23038,7 +25084,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:33 GMT + - Tue, 14 Jan 2020 01:44:07 GMT expires: - '-1' pragma: @@ -23083,12 +25129,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23102,11 +25148,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23122,7 +25168,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:36 GMT + - Tue, 14 Jan 2020 01:44:11 GMT expires: - '-1' pragma: @@ -23167,12 +25213,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23186,11 +25232,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23206,7 +25252,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:39 GMT + - Tue, 14 Jan 2020 01:44:15 GMT expires: - '-1' pragma: @@ -23251,12 +25297,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23270,11 +25316,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23290,7 +25336,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:43 GMT + - Tue, 14 Jan 2020 01:44:18 GMT expires: - '-1' pragma: @@ -23335,12 +25381,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23354,11 +25400,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23374,7 +25420,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:46 GMT + - Tue, 14 Jan 2020 01:44:21 GMT expires: - '-1' pragma: @@ -23419,12 +25465,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23438,11 +25484,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23458,7 +25504,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:50 GMT + - Tue, 14 Jan 2020 01:44:25 GMT expires: - '-1' pragma: @@ -23503,12 +25549,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23522,11 +25568,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23542,7 +25588,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:54 GMT + - Tue, 14 Jan 2020 01:44:29 GMT expires: - '-1' pragma: @@ -23587,12 +25633,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23606,11 +25652,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23626,7 +25672,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:48:58 GMT + - Tue, 14 Jan 2020 01:44:32 GMT expires: - '-1' pragma: @@ -23671,12 +25717,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23690,11 +25736,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23710,7 +25756,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:02 GMT + - Tue, 14 Jan 2020 01:44:35 GMT expires: - '-1' pragma: @@ -23755,12 +25801,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23774,11 +25820,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23794,7 +25840,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:06 GMT + - Tue, 14 Jan 2020 01:44:39 GMT expires: - '-1' pragma: @@ -23839,12 +25885,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23858,11 +25904,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23878,7 +25924,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:09 GMT + - Tue, 14 Jan 2020 01:44:43 GMT expires: - '-1' pragma: @@ -23923,12 +25969,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23942,11 +25988,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23962,7 +26008,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:13 GMT + - Tue, 14 Jan 2020 01:44:47 GMT expires: - '-1' pragma: @@ -24007,12 +26053,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24026,11 +26072,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24046,7 +26092,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:16 GMT + - Tue, 14 Jan 2020 01:44:51 GMT expires: - '-1' pragma: @@ -24091,12 +26137,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24110,11 +26156,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24130,7 +26176,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:19 GMT + - Tue, 14 Jan 2020 01:44:54 GMT expires: - '-1' pragma: @@ -24175,12 +26221,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24194,11 +26240,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24214,7 +26260,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:23 GMT + - Tue, 14 Jan 2020 01:44:57 GMT expires: - '-1' pragma: @@ -24259,12 +26305,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24278,11 +26324,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24298,7 +26344,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:28 GMT + - Tue, 14 Jan 2020 01:45:00 GMT expires: - '-1' pragma: @@ -24343,12 +26389,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24362,11 +26408,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24382,7 +26428,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:32 GMT + - Tue, 14 Jan 2020 01:45:04 GMT expires: - '-1' pragma: @@ -24427,12 +26473,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24446,11 +26492,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24466,7 +26512,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:35 GMT + - Tue, 14 Jan 2020 01:45:08 GMT expires: - '-1' pragma: @@ -24511,12 +26557,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24530,11 +26576,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24550,7 +26596,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:39 GMT + - Tue, 14 Jan 2020 01:45:12 GMT expires: - '-1' pragma: @@ -24595,12 +26641,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24614,11 +26660,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24634,7 +26680,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:43 GMT + - Tue, 14 Jan 2020 01:45:15 GMT expires: - '-1' pragma: @@ -24679,12 +26725,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24698,11 +26744,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24718,7 +26764,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:46 GMT + - Tue, 14 Jan 2020 01:45:19 GMT expires: - '-1' pragma: @@ -24763,12 +26809,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24782,11 +26828,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24802,7 +26848,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:50 GMT + - Tue, 14 Jan 2020 01:45:24 GMT expires: - '-1' pragma: @@ -24847,12 +26893,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24866,11 +26912,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24886,7 +26932,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:54 GMT + - Tue, 14 Jan 2020 01:45:28 GMT expires: - '-1' pragma: @@ -24931,12 +26977,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24950,11 +26996,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24970,7 +27016,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:49:58 GMT + - Tue, 14 Jan 2020 01:45:32 GMT expires: - '-1' pragma: @@ -25015,12 +27061,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25034,11 +27080,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25054,7 +27100,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:02 GMT + - Tue, 14 Jan 2020 01:45:36 GMT expires: - '-1' pragma: @@ -25099,12 +27145,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25118,11 +27164,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25138,7 +27184,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:05 GMT + - Tue, 14 Jan 2020 01:45:40 GMT expires: - '-1' pragma: @@ -25183,12 +27229,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25202,11 +27248,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25222,7 +27268,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:09 GMT + - Tue, 14 Jan 2020 01:45:43 GMT expires: - '-1' pragma: @@ -25267,12 +27313,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25286,11 +27332,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25306,7 +27352,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:14 GMT + - Tue, 14 Jan 2020 01:45:47 GMT expires: - '-1' pragma: @@ -25351,12 +27397,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25370,11 +27416,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25390,7 +27436,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:17 GMT + - Tue, 14 Jan 2020 01:45:52 GMT expires: - '-1' pragma: @@ -25435,12 +27481,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25454,11 +27500,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25474,7 +27520,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:21 GMT + - Tue, 14 Jan 2020 01:45:55 GMT expires: - '-1' pragma: @@ -25519,12 +27565,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25538,11 +27584,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25558,7 +27604,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:25 GMT + - Tue, 14 Jan 2020 01:45:59 GMT expires: - '-1' pragma: @@ -25603,12 +27649,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25622,11 +27668,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25642,7 +27688,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:28 GMT + - Tue, 14 Jan 2020 01:46:03 GMT expires: - '-1' pragma: @@ -25687,12 +27733,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25706,11 +27752,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25726,7 +27772,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:31 GMT + - Tue, 14 Jan 2020 01:46:06 GMT expires: - '-1' pragma: @@ -25771,12 +27817,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25790,11 +27836,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25810,7 +27856,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:35 GMT + - Tue, 14 Jan 2020 01:46:10 GMT expires: - '-1' pragma: @@ -25855,12 +27901,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25874,11 +27920,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25894,7 +27940,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:39 GMT + - Tue, 14 Jan 2020 01:46:14 GMT expires: - '-1' pragma: @@ -25939,12 +27985,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25958,11 +28004,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25978,7 +28024,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:43 GMT + - Tue, 14 Jan 2020 01:46:18 GMT expires: - '-1' pragma: @@ -26023,12 +28069,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26042,11 +28088,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26062,7 +28108,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:47 GMT + - Tue, 14 Jan 2020 01:46:22 GMT expires: - '-1' pragma: @@ -26107,12 +28153,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26126,11 +28172,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26146,7 +28192,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:51 GMT + - Tue, 14 Jan 2020 01:46:25 GMT expires: - '-1' pragma: @@ -26191,12 +28237,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26210,11 +28256,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26230,7 +28276,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:50:55 GMT + - Tue, 14 Jan 2020 01:46:30 GMT expires: - '-1' pragma: @@ -26275,12 +28321,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26294,11 +28340,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26314,7 +28360,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:51:00 GMT + - Tue, 14 Jan 2020 01:46:33 GMT expires: - '-1' pragma: @@ -26359,12 +28405,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26378,11 +28424,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26398,7 +28444,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:51:05 GMT + - Tue, 14 Jan 2020 01:46:38 GMT expires: - '-1' pragma: @@ -26443,12 +28489,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26462,11 +28508,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26482,7 +28528,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:51:08 GMT + - Tue, 14 Jan 2020 01:46:42 GMT expires: - '-1' pragma: @@ -26527,12 +28573,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26546,11 +28592,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26566,7 +28612,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:51:27 GMT + - Tue, 14 Jan 2020 01:46:47 GMT expires: - '-1' pragma: @@ -26612,12 +28658,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637139179770424982\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n + \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26631,11 +28677,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs2fswaa2omdra62\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2fswaa2omdra62.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs2fswaa2omdra62.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs2fswaa2omdra62.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26651,7 +28697,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:51:31 GMT + - Tue, 14 Jan 2020 01:46:51 GMT expires: - '-1' pragma: @@ -26693,7 +28739,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:30:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:45Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -26702,7 +28748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:33 GMT + - Tue, 14 Jan 2020 01:46:53 GMT expires: - '-1' pragma: @@ -26741,15 +28787,15 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"VNet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet\",\r\n - \ \"etag\": \"W/\\\"6d42c0f5-ac8e-4d74-878c-26cf871a6fa1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6f6d9cbb-7e72-46fe-a6cf-f7c5364edbcc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"f3c60fa0-e08e-45fe-84a1-8e50a6daa20f\",\r\n + \"Succeeded\",\r\n \"resourceGuid\": \"aef3356e-8271-4c1b-adc8-804dee1e07f7\",\r\n \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Subnet-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n - \ \"etag\": \"W/\\\"6d42c0f5-ac8e-4d74-878c-26cf871a6fa1\\\"\",\r\n + \ \"etag\": \"W/\\\"6f6d9cbb-7e72-46fe-a6cf-f7c5364edbcc\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n @@ -26768,7 +28814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:36 GMT + - Tue, 14 Jan 2020 01:46:56 GMT expires: - '-1' pragma: @@ -26785,7 +28831,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d2a39258-79d4-44dd-99b0-fd16238736ec + - ce1d89b6-fef3-482a-85c4-c62636f3eb5e status: code: 200 message: OK @@ -26814,7 +28860,7 @@ interactions: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Subnet-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n - \ \"etag\": \"W/\\\"6d42c0f5-ac8e-4d74-878c-26cf871a6fa1\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"6f6d9cbb-7e72-46fe-a6cf-f7c5364edbcc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n @@ -26832,7 +28878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:38 GMT + - Tue, 14 Jan 2020 01:46:57 GMT expires: - '-1' pragma: @@ -26849,7 +28895,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6c7b96e6-2d9f-4c6f-9c53-cefc53f40d3f + - 85e691bd-1bd6-4ac5-98af-bcfd4cf6c47f status: code: 200 message: OK @@ -26881,14 +28927,14 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n - \ \"etag\": \"W/\\\"7fdbbbec-7b4c-4bc9-9b34-a3ea7b130fb1\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"2d30de2a-36d3-4d1a-89c0-50244b26e6c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a3df8893-9274-4ee9-94ec-5a86192d454b?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e324c986-a270-4448-abe6-e9eac0afb424?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -26896,7 +28942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:39 GMT + - Tue, 14 Jan 2020 01:46:58 GMT expires: - '-1' pragma: @@ -26909,9 +28955,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57550021-7f7f-4fe7-879e-1511d0487f5f + - 56ef73e7-f9bd-45c2-a8b4-52bfbd293499 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -26933,7 +28979,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a3df8893-9274-4ee9-94ec-5a86192d454b?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e324c986-a270-4448-abe6-e9eac0afb424?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -26945,7 +28991,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:44 GMT + - Tue, 14 Jan 2020 01:47:03 GMT expires: - '-1' pragma: @@ -26962,7 +29008,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e667921d-5998-42ae-90af-b9fcbc598071 + - e0bbac6d-f5a5-4863-b8c0-4367a68d0681 status: code: 200 message: OK @@ -26988,7 +29034,7 @@ interactions: response: body: string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n - \ \"etag\": \"W/\\\"8d793831-ddd4-44fe-a794-6dd39596ac86\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"2b0b3e61-0398-49fb-9bda-2259eebc3d39\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -27001,9 +29047,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:45 GMT + - Tue, 14 Jan 2020 01:47:04 GMT etag: - - W/"8d793831-ddd4-44fe-a794-6dd39596ac86" + - W/"2b0b3e61-0398-49fb-9bda-2259eebc3d39" expires: - '-1' pragma: @@ -27020,7 +29066,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1ebbbcd9-3741-47b9-9845-ca269d9998b2 + - b72f5150-5f57-4150-918d-e932f12be1db status: code: 200 message: OK @@ -27053,9 +29099,9 @@ interactions: response: body: string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n - \ \"etag\": \"W/\\\"58e6e49d-6b99-4224-b157-a22cf448e54b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"10625772-b5c3-42b3-8f63-e1f34e870b4c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"31bed2c7-fc05-4031-97e1-0ec85bc1e338\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"3481b50a-ef74-4dee-a732-41648ce726f9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n @@ -27063,7 +29109,7 @@ interactions: \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a0544591-5d06-4bb0-a3f3-01389e268fdd?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47afa37-d36f-4b69-9888-19860c7753a1?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -27071,7 +29117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:52 GMT + - Tue, 14 Jan 2020 01:47:12 GMT expires: - '-1' pragma: @@ -27084,9 +29130,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8d00e98-4b92-4efc-a78d-c40efcf4d124 + - da51cc94-8598-4d37-943f-b9e1c4888d49 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' status: code: 201 message: Created @@ -27108,7 +29154,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a0544591-5d06-4bb0-a3f3-01389e268fdd?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47afa37-d36f-4b69-9888-19860c7753a1?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -27120,7 +29166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:55 GMT + - Tue, 14 Jan 2020 01:47:16 GMT expires: - '-1' pragma: @@ -27137,7 +29183,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9cf9e4c-261f-4dd6-8c5b-843416a73a73 + - 81f1726f-b2dc-4e7a-9296-8a026bb9d1c4 status: code: 200 message: OK @@ -27163,9 +29209,9 @@ interactions: response: body: string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n - \ \"etag\": \"W/\\\"eaf7b2c0-1113-4145-8d93-10cd1492aad2\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ba9e49fb-cda8-48ce-b0fa-85972abb1747\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"31bed2c7-fc05-4031-97e1-0ec85bc1e338\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"3481b50a-ef74-4dee-a732-41648ce726f9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n @@ -27179,9 +29225,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:51:56 GMT + - Tue, 14 Jan 2020 01:47:17 GMT etag: - - W/"eaf7b2c0-1113-4145-8d93-10cd1492aad2" + - W/"ba9e49fb-cda8-48ce-b0fa-85972abb1747" expires: - '-1' pragma: @@ -27198,29 +29244,29 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b5a05b6-13d7-485a-8a0c-607a5b114770 + - 86dda612-7356-4d42-8d85-abb84ee8c097 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1", + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1", "location": "westus", "properties": {"frontendIPConfigurations": [{"properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21"}}, "name": "LoadBalancerIPConfig"}], "backendAddressPools": [{"name": "LoadBalancerBEAddressPool"}], - "loadBalancingRules": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe"}, + "loadBalancingRules": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe"}, "protocol": "tcp", "frontendPort": 19000, "backendPort": 19000, "idleTimeoutInMinutes": 5, "enableFloatingIP": false}, "name": "LBRule"}, {"properties": {"frontendIPConfiguration": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe"}, "protocol": "tcp", "frontendPort": 19080, "backendPort": 19080, "idleTimeoutInMinutes": 5, "enableFloatingIP": false}, "name": "LBHttpRule"}], "probes": [{"properties": {"protocol": "tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": 2}, "name": "FabricGatewayProbe"}, {"properties": {"protocol": "tcp", "port": 19080, "intervalInSeconds": 5, "numberOfProbes": 2}, "name": "FabricHttpGatewayProbe"}], - "inboundNatPools": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "inboundNatPools": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig"}, "protocol": "tcp", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, "backendPort": 3389}, "name": "LoadBalancerBEAddressNatPool"}]}}''' headers: @@ -27245,92 +29291,92 @@ interactions: accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1?api-version=2019-09-01 response: body: - string: "{\r\n \"name\": \"LB-sfrp-cli-xqprfkdop1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"LB-sfrp-cli-vxfrxm5on1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee46174e-d11a-4a2e-bece-254ef092035c\",\r\n + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f36a739-7397-4a27-bd70-b3c885fc55ff\",\r\n \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84e3adf3-3053-418a-b228-11b4ee93982e?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36398e3d-493b-450e-ad2b-7977de5a3318?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -27338,7 +29384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:52:01 GMT + - Tue, 14 Jan 2020 01:47:21 GMT expires: - '-1' pragma: @@ -27351,9 +29397,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8cbfd239-08fb-4c66-b5a3-26bd866f958f + - 3f775774-be73-4858-9e30-5417b17f5806 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1194' status: code: 201 message: Created @@ -27375,7 +29421,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/84e3adf3-3053-418a-b228-11b4ee93982e?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36398e3d-493b-450e-ad2b-7977de5a3318?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -27387,7 +29433,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:52:34 GMT + - Tue, 14 Jan 2020 01:47:53 GMT expires: - '-1' pragma: @@ -27404,7 +29450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a5e0004-1cfe-480e-9387-5a23f75d3c58 + - ac0323df-c903-4365-a08a-61e6f39fe14e status: code: 200 message: OK @@ -27426,87 +29472,87 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.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.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1?api-version=2019-09-01 response: body: - string: "{\r\n \"name\": \"LB-sfrp-cli-xqprfkdop1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"LB-sfrp-cli-vxfrxm5on1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee46174e-d11a-4a2e-bece-254ef092035c\",\r\n + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f36a739-7397-4a27-bd70-b3c885fc55ff\",\r\n \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: @@ -27517,9 +29563,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:52:35 GMT + - Tue, 14 Jan 2020 01:47:54 GMT etag: - - W/"b7c4a216-c5ac-491b-b60b-2ec67440f5d4" + - W/"43ba03a2-e537-4c8b-9780-2a42bf5cdc26" expires: - '-1' pragma: @@ -27536,7 +29582,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 829d0562-41d5-48fa-aa25-f097fc4dddfb + - fb0e1677-62ab-4f93-9aa5-ce84473eab02 status: code: 200 message: OK @@ -27560,87 +29606,87 @@ interactions: accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1?api-version=2019-09-01 response: body: - string: "{\r\n \"name\": \"LB-sfrp-cli-xqprfkdop1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n \"type\": + string: "{\r\n \"name\": \"LB-sfrp-cli-vxfrxm5on1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee46174e-d11a-4a2e-bece-254ef092035c\",\r\n + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f36a739-7397-4a27-bd70-b3c885fc55ff\",\r\n \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBRule\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/loadBalancingRules/LBHttpRule\"\r\n + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"b7c4a216-c5ac-491b-b60b-2ec67440f5d4\\\"\",\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" headers: @@ -27651,9 +29697,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:52:36 GMT + - Tue, 14 Jan 2020 01:47:55 GMT etag: - - W/"b7c4a216-c5ac-491b-b60b-2ec67440f5d4" + - W/"43ba03a2-e537-4c8b-9780-2a42bf5cdc26" expires: - '-1' pragma: @@ -27670,7 +29716,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 286af40a-79ca-488b-b3a1-10ddf2f2b7a9 + - eb547948-a838-48aa-a79e-93b49aa399e3 status: code: 200 message: OK @@ -27712,7 +29758,7 @@ interactions: \ \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe\",\r\n + \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2\",\r\n \ \"certificateStore\": \"My\"\r\n }\r\n \ ]\r\n }\r\n ]\r\n },\r\n \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": @@ -27728,17 +29774,17 @@ interactions: \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": - \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"ED1EF85578DE92F5C4D1B578E960D004AC45E951\",\"x509StoreName\":\"My\"}}\r\n + \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\"x509StoreName\":\"My\"}}\r\n \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": - {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"2fswaa2omdra63\"}\r\n + {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"5y3xteo3wib6y3\"}\r\n \ }\r\n }\r\n ]\r\n }\r\n },\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"793d5fc5-8fd0-4db1-bf4a-3e7f3a902ab4\"\r\n }\r\n }\r\n ]\r\n}" + \"314312db-5838-4a4a-a73f-de2311593e47\"\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -27747,7 +29793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:52:38 GMT + - Tue, 14 Jan 2020 01:47:58 GMT expires: - '-1' pragma: @@ -27788,11 +29834,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1?api-version=2019-06-01 response: body: string: '' @@ -27804,11 +29850,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Mon, 06 Jan 2020 14:52:43 GMT + - Tue, 14 Jan 2020 01:48:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/258e5b72-46e3-4a4b-a221-3057d6fd7c4e?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9575bb15-b985-4efe-a2d1-08ba5a2cb33a?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -27818,7 +29864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1165' status: code: 202 message: Accepted @@ -27838,12 +29884,12 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/258e5b72-46e3-4a4b-a221-3057d6fd7c4e?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9575bb15-b985-4efe-a2d1-08ba5a2cb33a?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1","name":"sfrpclixqprfkdopjqfkd1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:52:43.4000405Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd1.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd1.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd1.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1","name":"sfrpclivxfrxm5on7srhx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:06.1485427Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx1.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx1.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx1.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -27852,7 +29898,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:53:02 GMT + - Tue, 14 Jan 2020 01:48:26 GMT expires: - '-1' pragma: @@ -27886,14 +29932,14 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1","name":"sfrpclixqprfkdopjqfkd1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:52:43.4469353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:52:43.4000405Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd1.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd1.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd1.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1","name":"sfrpclivxfrxm5on7srhx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:06.1485427Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx1.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx1.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx1.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -27902,7 +29948,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:53:04 GMT + - Tue, 14 Jan 2020 01:48:26 GMT expires: - '-1' pragma: @@ -27938,11 +29984,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd1/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -27954,7 +30000,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:53:05 GMT + - Tue, 14 Jan 2020 01:48:27 GMT expires: - '-1' pragma: @@ -27970,7 +30016,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -27994,11 +30040,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2?api-version=2019-06-01 response: body: string: '' @@ -28010,11 +30056,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Mon, 06 Jan 2020 14:53:11 GMT + - Tue, 14 Jan 2020 01:48:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8227ba5-a8cf-4b32-8669-13cbbfe1ec42?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8a50f806-8f71-46b1-a439-645300fff0a5?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -28024,7 +30070,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 202 message: Accepted @@ -28044,12 +30090,12 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8227ba5-a8cf-4b32-8669-13cbbfe1ec42?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8a50f806-8f71-46b1-a439-645300fff0a5?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2","name":"sfrpclixqprfkdopjqfkd2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:11.5895283Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd2.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd2.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd2.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2","name":"sfrpclivxfrxm5on7srhx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:35.1963596Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx2.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx2.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx2.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28058,7 +30104,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:53:31 GMT + - Tue, 14 Jan 2020 01:48:55 GMT expires: - '-1' pragma: @@ -28092,14 +30138,14 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2","name":"sfrpclixqprfkdopjqfkd2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:11.6363760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:11.5895283Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd2.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd2.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd2.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2","name":"sfrpclivxfrxm5on7srhx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:35.1963596Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx2.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx2.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx2.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28108,7 +30154,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:53:32 GMT + - Tue, 14 Jan 2020 01:48:56 GMT expires: - '-1' pragma: @@ -28144,11 +30190,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd2/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -28160,7 +30206,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:53:33 GMT + - Tue, 14 Jan 2020 01:48:57 GMT expires: - '-1' pragma: @@ -28176,7 +30222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -28200,11 +30246,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3?api-version=2019-06-01 response: body: string: '' @@ -28216,11 +30262,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Mon, 06 Jan 2020 14:53:40 GMT + - Tue, 14 Jan 2020 01:49:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/329b2227-b0f4-4fbc-b677-3b1f75573d5f?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2b3bd9b4-ac87-460b-a1d9-d6ada79241a5?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -28230,7 +30276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1164' status: code: 202 message: Accepted @@ -28250,12 +30296,12 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/329b2227-b0f4-4fbc-b677-3b1f75573d5f?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2b3bd9b4-ac87-460b-a1d9-d6ada79241a5?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3","name":"sfrpclixqprfkdopjqfkd3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:39.5754699Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd3.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd3.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd3.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3","name":"sfrpclivxfrxm5on7srhx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:03.3073111Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx3.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx3.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx3.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28264,7 +30310,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:53:58 GMT + - Tue, 14 Jan 2020 01:49:22 GMT expires: - '-1' pragma: @@ -28298,14 +30344,14 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3","name":"sfrpclixqprfkdopjqfkd3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:53:39.6379597Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:53:39.5754699Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd3.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd3.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd3.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3","name":"sfrpclivxfrxm5on7srhx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:03.3073111Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx3.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx3.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx3.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28314,7 +30360,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:00 GMT + - Tue, 14 Jan 2020 01:49:24 GMT expires: - '-1' pragma: @@ -28350,11 +30396,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd3/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -28366,7 +30412,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:01 GMT + - Tue, 14 Jan 2020 01:49:26 GMT expires: - '-1' pragma: @@ -28406,11 +30452,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4?api-version=2019-06-01 response: body: string: '' @@ -28422,11 +30468,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Mon, 06 Jan 2020 14:54:08 GMT + - Tue, 14 Jan 2020 01:49:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/75a961fb-0fe2-4d79-b42f-4f44d31c8732?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1ba21af9-f5a1-4cc6-b29d-1473ca1f11a1?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -28436,7 +30482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -28456,12 +30502,12 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/75a961fb-0fe2-4d79-b42f-4f44d31c8732?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1ba21af9-f5a1-4cc6-b29d-1473ca1f11a1?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4","name":"sfrpclixqprfkdopjqfkd4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:08.2383032Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd4.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd4.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd4.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4","name":"sfrpclivxfrxm5on7srhx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:43.7738707Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx4.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx4.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx4.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28470,7 +30516,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:27 GMT + - Tue, 14 Jan 2020 01:50:03 GMT expires: - '-1' pragma: @@ -28504,14 +30550,14 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4","name":"sfrpclixqprfkdopjqfkd4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:08.3164314Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:08.2383032Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd4.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd4.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd4.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4","name":"sfrpclivxfrxm5on7srhx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:43.7738707Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx4.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx4.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx4.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28520,7 +30566,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:28 GMT + - Tue, 14 Jan 2020 01:50:04 GMT expires: - '-1' pragma: @@ -28556,11 +30602,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd4/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -28572,7 +30618,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:29 GMT + - Tue, 14 Jan 2020 01:50:05 GMT expires: - '-1' pragma: @@ -28588,7 +30634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -28612,11 +30658,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5?api-version=2019-06-01 response: body: string: '' @@ -28628,11 +30674,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Mon, 06 Jan 2020 14:54:34 GMT + - Tue, 14 Jan 2020 01:50:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/309086b0-1658-4cf4-bd3a-cb5c412b86a0?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/879e66ba-1015-4e37-bd4e-266f30cd0867?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -28662,12 +30708,12 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/309086b0-1658-4cf4-bd3a-cb5c412b86a0?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/879e66ba-1015-4e37-bd4e-266f30cd0867?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5","name":"sfrpclixqprfkdopjqfkd5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:34.8330101Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd5.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd5.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd5.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5","name":"sfrpclivxfrxm5on7srhx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:50:12.6806226Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx5.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx5.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx5.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28676,7 +30722,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:53 GMT + - Tue, 14 Jan 2020 01:50:31 GMT expires: - '-1' pragma: @@ -28710,14 +30756,14 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5?api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5","name":"sfrpclixqprfkdopjqfkd5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T14:54:34.9111282Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-06T14:54:34.8330101Z","primaryEndpoints":{"blob":"https://sfrpclixqprfkdopjqfkd5.blob.core.windows.net/","queue":"https://sfrpclixqprfkdopjqfkd5.queue.core.windows.net/","table":"https://sfrpclixqprfkdopjqfkd5.table.core.windows.net/","file":"https://sfrpclixqprfkdopjqfkd5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5","name":"sfrpclivxfrxm5on7srhx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:50:12.6806226Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx5.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx5.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx5.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -28726,7 +30772,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:56 GMT + - Tue, 14 Jan 2020 01:50:34 GMT expires: - '-1' pragma: @@ -28762,11 +30808,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclixqprfkdopjqfkd5/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -28778,7 +30824,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:57 GMT + - Tue, 14 Jan 2020 01:50:34 GMT expires: - '-1' pragma: @@ -28794,7 +30840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -28816,11 +30862,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/2fswaa2omdra63/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -28832,7 +30878,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:54:59 GMT + - Tue, 14 Jan 2020 01:50:36 GMT expires: - '-1' pragma: @@ -28848,7 +30894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -28870,11 +30916,11 @@ interactions: --vm-sku User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-storage/7.1.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.Storage/storageAccounts/sflogs2fswaa2omdra62/listKeys?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -28886,7 +30932,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:55:01 GMT + - Tue, 14 Jan 2020 01:50:38 GMT expires: - '-1' pragma: @@ -28902,7 +30948,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 200 message: OK @@ -28911,24 +30957,24 @@ interactions: "capacity": 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": "admintest", "adminPassword": "Pass@000005", "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/01c7ce00f619433ea2c2e6099dcc4dbe", + "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2", "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", - "createOption": "FromImage", "vhdContainers": ["https://sfrpclixqprfkdopjqfkd1.blob.core.windows.net/vhd", - "https://sfrpclixqprfkdopjqfkd2.blob.core.windows.net/vhd", "https://sfrpclixqprfkdopjqfkd3.blob.core.windows.net/vhd", - "https://sfrpclixqprfkdopjqfkd4.blob.core.windows.net/vhd", "https://sfrpclixqprfkdopjqfkd5.blob.core.windows.net/vhd"]}}, + "createOption": "FromImage", "vhdContainers": ["https://sfrpclivxfrxm5on7srhx1.blob.core.windows.net/vhd", + "https://sfrpclivxfrxm5on7srhx2.blob.core.windows.net/vhd", "https://sfrpclivxfrxm5on7srhx3.blob.core.windows.net/vhd", + "https://sfrpclivxfrxm5on7srhx4.blob.core.windows.net/vhd", "https://sfrpclivxfrxm5on7srhx5.blob.core.windows.net/vhd"]}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", "properties": {"primary": true, "ipConfigurations": [{"name": "Nic-nt2", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1"}, - "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/backendAddressPools/LoadBalancerBEAddressPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-xqprfkdop1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, "extensionProfile": {"extensions": [{"name": "ServiceFabricNodeVmExt_vmNodeType0Name", "properties": {"publisher": "Microsoft.Azure.ServiceFabric", "type": "ServiceFabricNode", "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": false, "settings": {"clusterEndpoint": - "https://westus.servicefabric.azure.com/runtime/clusters/c44f903e-f63a-48e0-b1cb-5b826c44ddc6", + "https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e", "nodeTypeRef": "nt2", "dataPath": "D:\\\\\\\\SvcFab", "durabilityLevel": "Gold", - "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "ED1EF85578DE92F5C4D1B578E960D004AC45E951", + "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "742F7E7B0272D6978333A2C2A4B102DE1332CBCE", "x509StoreName": "My"}}, "protectedSettings": {"StorageAccountKey1": "veryFakedStorageAccountKey==", "StorageAccountKey2": "veryFakedStorageAccountKey=="}}}, {"name": "VMDiagnosticsVmExt_vmNodeType0Name", "properties": {"publisher": "Microsoft.Azure.Diagnostics", "type": "IaaSDiagnostics", @@ -28942,8 +30988,8 @@ interactions: [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter": "Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod": "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}}, - "StorageAccount": "2fswaa2omdra63"}, "protectedSettings": {"storageAccountName": - "2fswaa2omdra63", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint": + "StorageAccount": "5y3xteo3wib6y3"}, "protectedSettings": {"storageAccountName": + "5y3xteo3wib6y3", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint": "https://core.windows.net/"}}}]}}, "overprovision": false}}''' headers: Accept: @@ -28972,7 +31018,7 @@ interactions: body: string: "{\r\n \"error\": {\r\n \"code\": \"OperationNotAllowed\",\r\n \"message\": \"The operation couldn't be completed as it results in exceeding quota limit - of Core. Maximum allowed: 100, Current in use: 7, Additional requested: 100. + of Core. Maximum allowed: 100, Current in use: 6, Additional requested: 100. Read more about quota limits at https://aka.ms/AzurePerVMQuotaLimits. Submit a request for Quota increase using the link https://aka.ms/ProdportalCRP/?#create/Microsoft.Support/Parameters/%7B%22subId%22:%220b1f6471-1bf0-4dda-aec3-cb9272f09590%22,%22pesId%22:%2206bfd9d3-516b-d5c6-5802-169c800dec89%22,%22supportTopicId%22:%22e12e3d1d-7fa0-af33-c6d0-3c50df9658a3%22%7D.\"\r\n \ }\r\n}" @@ -28984,7 +31030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:55:10 GMT + - Tue, 14 Jan 2020 01:50:47 GMT expires: - '-1' pragma: @@ -28997,7 +31043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;297 + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;298 x-ms-ratelimit-remaining-subscription-writes: - '1195' status: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml index 753148fcebd..500cebc0cfc 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_linux_secrets.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Mon, 06 Jan 2020 14:28:32 GMT + - Tue, 14 Jan 2020 01:51:03 GMT duration: - - '2558983' + - '2628843' expires: - '-1' ocp-aad-diagnostics-server-name: - - u69wKTZejlOWfGF/THwvVNLcycS2MlZl9ie+5VVrrJA= + - 111y7HzMkoF7ETvCpr8Oy05nl+w+YtkaVR6AK6LH4Ao= ocp-aad-session-key: - - -0vKH3VBqX59DPQkNndIiAaNF_s4HF9_LQO7S4lpMg6jlsWmiE7xCUGNIotp9a8-Hx41lsmmHodYQfvAiv3g0GY1rMWejrGqbJETKKf1ToKAiBDT_4-BK94n0hVrUt9hOHY_f0fFh-vBRRrvqQ5JcW2-3Q94EkxqxUM7vhnXCIc.uazhD--7DdwTZH6SlvSa_WRpJOSn0dPnoMaeiNRaupk + - dqgc8TaXoMyzP1BAEq_lWE3jXsDK6Gun72WvJrKOdTmLo7lba9qkqwZyGbYE0gPuMGB2KdYPuDghggUCp1ciI30YoNac7DNBy0k4ImrtoBQQhbmpa2CazUu78r8aQjmWG5eAh1ICO0Y7ImWop3Y05Etyl-qdqgBQCh2WCONuRWk.DaVEfDQWFW9yplklOHqa4Df4FG2DjaGOyaegEvkBrhI pragma: - no-cache request-id: - - 125a3f28-7aa6-452e-aa3e-3bd0e53f2a70 + - 08d1c484-1d35-42a6-b957-379115aac8a8 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:28:38 GMT + - Tue, 14 Jan 2020 01:51:13 GMT expires: - '-1' pragma: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:29:09 GMT + - Tue, 14 Jan 2020 01:51:46 GMT expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:11 GMT + - Tue, 14 Jan 2020 01:52:49 GMT expires: - '-1' pragma: @@ -266,9 +266,9 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKovKxT4DLRW4PxHilbt4uMmH0H1J/J2AeJIq0FzjMy/MzG6UOpIJvxHjSsShJMPmBaz9i24lWe30nJaledBFLT+4f/+tC6b20yssIRO5+0wabKkEpTBf5K3gwv3KvH2SQ1T/ebEp4kkvivrVsLN90FBoPzuL9Ylyh7w0eKLt2vLQk+xhnlGm87ZhdluMscpZhjMXUrwIlSJCyXny8pl7oeDTk33rEaYYSy0gT1gSFmjbx6SjCHXaaccCvgBMWhRXrzsQPNZ+eeK98FleLCcXx1WWgMQgkzbrF6AUGixW4QtzDohnUGdHbSGab1uGAAXqlshkh8np252bYhXCziiMRcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA+I65ZdwpUDXPpgrR2y2kUtZTzFRdz9abVymL3apgSrQ9dJ4xdLtc7H9HQzNoIzfITQfkbPqV13jrYZCMFlMKmHEZ4P6+3BtD80zML40jOWb5Yo6fSADVnAXmTItJreS2xGxnddu3XkePvKqTZjT8OISAIacBcMtILi1roTVTdTLo8LzM+kq+7fraOiqomA+UBiuww+dLS8E7Z8ncepQL/aChFI6cxb8dNN3cffxvP2s9gIQZ180U+wiuKMnLweFPj+JVw4eVMhBtQ/KjMJ2QletjGjfTMMjJVac8rF5sjiXxyFT+qWYIaiVtYZ9djQFvriZx3PwcjHvIVNXlv+ye8","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"63bcbeb0392540388f2ecce79395d507"}' + time based on the issuer provider. Please check again later.","request_id":"f81ef402b2ea4ffdbf3a5a65df2393b2"}' headers: cache-control: - no-cache @@ -277,11 +277,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:12 GMT + - Tue, 14 Jan 2020 01:52:51 GMT expires: - '-1' location: - - https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=63bcbeb0392540388f2ecce79395d507 + - https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=f81ef402b2ea4ffdbf3a5a65df2393b2 pragma: - no-cache server: @@ -323,9 +323,9 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKovKxT4DLRW4PxHilbt4uMmH0H1J/J2AeJIq0FzjMy/MzG6UOpIJvxHjSsShJMPmBaz9i24lWe30nJaledBFLT+4f/+tC6b20yssIRO5+0wabKkEpTBf5K3gwv3KvH2SQ1T/ebEp4kkvivrVsLN90FBoPzuL9Ylyh7w0eKLt2vLQk+xhnlGm87ZhdluMscpZhjMXUrwIlSJCyXny8pl7oeDTk33rEaYYSy0gT1gSFmjbx6SjCHXaaccCvgBMWhRXrzsQPNZ+eeK98FleLCcXx1WWgMQgkzbrF6AUGixW4QtzDohnUGdHbSGab1uGAAXqlshkh8np252bYhXCziiMRcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA+I65ZdwpUDXPpgrR2y2kUtZTzFRdz9abVymL3apgSrQ9dJ4xdLtc7H9HQzNoIzfITQfkbPqV13jrYZCMFlMKmHEZ4P6+3BtD80zML40jOWb5Yo6fSADVnAXmTItJreS2xGxnddu3XkePvKqTZjT8OISAIacBcMtILi1roTVTdTLo8LzM+kq+7fraOiqomA+UBiuww+dLS8E7Z8ncepQL/aChFI6cxb8dNN3cffxvP2s9gIQZ180U+wiuKMnLweFPj+JVw4eVMhBtQ/KjMJ2QletjGjfTMMjJVac8rF5sjiXxyFT+qWYIaiVtYZ9djQFvriZx3PwcjHvIVNXlv+ye8","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"63bcbeb0392540388f2ecce79395d507"}' + time based on the issuer provider. Please check again later.","request_id":"f81ef402b2ea4ffdbf3a5a65df2393b2"}' headers: cache-control: - no-cache @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:13 GMT + - Tue, 14 Jan 2020 01:52:55 GMT expires: - '-1' pragma: @@ -378,9 +378,9 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKovKxT4DLRW4PxHilbt4uMmH0H1J/J2AeJIq0FzjMy/MzG6UOpIJvxHjSsShJMPmBaz9i24lWe30nJaledBFLT+4f/+tC6b20yssIRO5+0wabKkEpTBf5K3gwv3KvH2SQ1T/ebEp4kkvivrVsLN90FBoPzuL9Ylyh7w0eKLt2vLQk+xhnlGm87ZhdluMscpZhjMXUrwIlSJCyXny8pl7oeDTk33rEaYYSy0gT1gSFmjbx6SjCHXaaccCvgBMWhRXrzsQPNZ+eeK98FleLCcXx1WWgMQgkzbrF6AUGixW4QtzDohnUGdHbSGab1uGAAXqlshkh8np252bYhXCziiMRcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA+I65ZdwpUDXPpgrR2y2kUtZTzFRdz9abVymL3apgSrQ9dJ4xdLtc7H9HQzNoIzfITQfkbPqV13jrYZCMFlMKmHEZ4P6+3BtD80zML40jOWb5Yo6fSADVnAXmTItJreS2xGxnddu3XkePvKqTZjT8OISAIacBcMtILi1roTVTdTLo8LzM+kq+7fraOiqomA+UBiuww+dLS8E7Z8ncepQL/aChFI6cxb8dNN3cffxvP2s9gIQZ180U+wiuKMnLweFPj+JVw4eVMhBtQ/KjMJ2QletjGjfTMMjJVac8rF5sjiXxyFT+qWYIaiVtYZ9djQFvriZx3PwcjHvIVNXlv+ye8","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"63bcbeb0392540388f2ecce79395d507"}' + time based on the issuer provider. Please check again later.","request_id":"f81ef402b2ea4ffdbf3a5a65df2393b2"}' headers: cache-control: - no-cache @@ -389,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:25 GMT + - Tue, 14 Jan 2020 01:53:07 GMT expires: - '-1' pragma: @@ -433,7 +433,7 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJoLTzpoBtTXO64Rzqtu/WqWJMBzJEaTLrx1UGof+h6EO7y1x3VLSX02zg/wi/oF8ImshBVgmhU9dNJZ15ekD8SrUHfCKMx+adeI50gE8KCRdSbPFQwND7dyrxbmg9PcZmCTZ2YYvwxUOqRVlzTTkhQy5hNPgJNPhdbWNiAk/I5jEgICuHSBG937YRujnA6bOryJz2bOTsPkrqED78l6krXZ9J/64pFJTwkwactsyQsRXeg/qSvK069A+VbOuy4kjOyICoUCHmR0VzyhSLfZFFQvjJcosURVDqpmj58soaomPLKMxHi1Z98II54clVh4NXyR5E6pGS2cjYkjTY2DWNsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBDMiZ9bQdEAliI6fVZk+4RF7giv4CwPcrxHEDwfpmb7HG6v/ScdHlYk5BtUJs/0HZ9mQMW4MQJKIWsSDzd+UThqtasepZGQMwotOx1SYfvDZ7rwevXZgEV8DoLBiKIQp+O4ayyfzgNiI6XPAQgb8roQ7EGc8YqPhxMoiyNQC+6KSqDyHGogoi1szZBD8MMvyh02v0WoyV6U//eVgX58Q9oHM7/3ROB64/wKZ3XfCpXWpas/Q7RbtDoUrv5XAX2d8oYb/1FF+uo7WRy5dhtuS101YRbqoE48/gA1LQTmN/6mJ0WGJaNLOotb5JLvox7pGDwOXib9Mm1vlpRyvdyqI8b","cancellation_requested":false,"status":"completed","target":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1","request_id":"63bcbeb0392540388f2ecce79395d507"}' + string: '{"id":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIIDBTCCAe0CAQAwdTEdMBsGA1UEAxMUd3d3Lm15dGVzdGRvbWFpbi5jb20xEzARBgNVBAsTClRlc3ROdWdnZXQxFDASBgNVBAoTC1Rlc3QgTm9vZGxlMQ8wDQYDVQQHEwZSZWRtb24xCzAJBgNVBAgTAldBMQswCQYDVQQGEwJVUzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKovKxT4DLRW4PxHilbt4uMmH0H1J/J2AeJIq0FzjMy/MzG6UOpIJvxHjSsShJMPmBaz9i24lWe30nJaledBFLT+4f/+tC6b20yssIRO5+0wabKkEpTBf5K3gwv3KvH2SQ1T/ebEp4kkvivrVsLN90FBoPzuL9Ylyh7w0eKLt2vLQk+xhnlGm87ZhdluMscpZhjMXUrwIlSJCyXny8pl7oeDTk33rEaYYSy0gT1gSFmjbx6SjCHXaaccCvgBMWhRXrzsQPNZ+eeK98FleLCcXx1WWgMQgkzbrF6AUGixW4QtzDohnUGdHbSGab1uGAAXqlshkh8np252bYhXCziiMRcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgLsMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA+I65ZdwpUDXPpgrR2y2kUtZTzFRdz9abVymL3apgSrQ9dJ4xdLtc7H9HQzNoIzfITQfkbPqV13jrYZCMFlMKmHEZ4P6+3BtD80zML40jOWb5Yo6fSADVnAXmTItJreS2xGxnddu3XkePvKqTZjT8OISAIacBcMtILi1roTVTdTLo8LzM+kq+7fraOiqomA+UBiuww+dLS8E7Z8ncepQL/aChFI6cxb8dNN3cffxvP2s9gIQZ180U+wiuKMnLweFPj+JVw4eVMhBtQ/KjMJ2QletjGjfTMMjJVac8rF5sjiXxyFT+qWYIaiVtYZ9djQFvriZx3PwcjHvIVNXlv+ye8","cancellation_requested":false,"status":"completed","target":"https://vmlinuxkv000002.vault.azure.net/certificates/cert1","request_id":"f81ef402b2ea4ffdbf3a5a65df2393b2"}' headers: cache-control: - no-cache @@ -442,7 +442,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:36 GMT + - Tue, 14 Jan 2020 01:53:20 GMT expires: - '-1' pragma: @@ -486,7 +486,7 @@ interactions: uri: https://vmlinuxkv000002.vault.azure.net/secrets/cert1/versions?api-version=7.0 response: body: - string: '{"value":[{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/515aba2798a24649b6561badb6f7c138","managed":true,"attributes":{"enabled":false,"nbf":1578320412,"exp":1736173812,"created":1578321012,"updated":1578321012,"recoveryLevel":"Purgeable"}},{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372","managed":true,"attributes":{"enabled":true,"nbf":1578320430,"exp":1736173830,"created":1578321030,"updated":1578321030,"recoveryLevel":"Purgeable"}}],"nextLink":null}' + string: '{"value":[{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/0fcf37a50c71464bab68d83fdca6ba6e","managed":true,"attributes":{"enabled":false,"nbf":1578966171,"exp":1736819571,"created":1578966771,"updated":1578966771,"recoveryLevel":"Purgeable"}},{"contentType":"application/x-pkcs12","id":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/c8f1cfc8eb7c46b2bd1932bd9b05f57f","managed":true,"attributes":{"enabled":true,"nbf":1578966193,"exp":1736819593,"created":1578966793,"updated":1578966793,"recoveryLevel":"Purgeable"}}],"nextLink":null}' headers: cache-control: - no-cache @@ -495,7 +495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:38 GMT + - Tue, 14 Jan 2020 01:53:24 GMT expires: - '-1' pragma: @@ -543,16 +543,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreteau5l5t24uovaoyc3sklt27snghtzzwhzgjt4jyh2x3b4iq22rl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jbdc2y","name":"cli-test-keyvault-jbdc2y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerba7sldmqzhczu5hkqcsuj567tz75musne3h452x53ydnhnhiyqyn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yxuouh","name":"cli-test-keyvault-yxuouh","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002","name":"vmlinuxkv000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn4t2mwyqx4y7jvsrue5jm7tv3xh5axo3ohgas2ypjmhzcakawffwq5wbfkyg7hsgn/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-2jyjqmytmvu6","name":"sfrp-cli-kv-2jyjqmytmvu6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangweus/providers/Microsoft.KeyVault/vaults/yugangweus-kv","name":"yugangweus-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwscu/providers/Microsoft.KeyVault/vaults/yugangwscu-kv","name":"yugangwscu-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwwu2/providers/Microsoft.KeyVault/vaults/yugangwwu2-kv","name":"yugangwwu2-kv","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}}]}' + string: '{"value":[{"type":"Microsoft.KeyVault/vaults","name":"azureclitest-vault","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","location":"eastus","tags":{}},{"type":"Microsoft.KeyVault/vaults","name":"yugangwbyok","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","location":"eastus","tags":{}},{"type":"Microsoft.KeyVault/vaults","name":"vmlinuxkv000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002","location":"westus","tags":{}},{"type":"Microsoft.KeyVault/vaults","name":"vault4848","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","location":"centraluseuap","tags":{}},{"type":"Microsoft.KeyVault/vaults","name":"yeming","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","location":"eastasia","tags":{}},{"type":"Microsoft.KeyVault/vaults","name":"yugangw30-kv","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","location":"eastus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '3694' + - '1423' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:39 GMT + - Tue, 14 Jan 2020 01:53:27 GMT expires: - '-1' pragma: @@ -599,7 +599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:41 GMT + - Tue, 14 Jan 2020 01:53:30 GMT expires: - '-1' pragma: @@ -645,7 +645,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001","name":"cli_test_vmss_create_linux_secrets000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-06T14:28:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001","name":"cli_test_vmss_create_linux_secrets000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:50:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -654,7 +654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:41 GMT + - Tue, 14 Jan 2020 01:53:31 GMT expires: - '-1' pragma: @@ -733,18 +733,19 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:42 GMT + - Tue, 14 Jan 2020 01:53:34 GMT etag: - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da" expires: - - Mon, 06 Jan 2020 14:35:42 GMT + - Tue, 14 Jan 2020 01:58:34 GMT source-age: - - '88' + - '147' strict-transport-security: - max-age=31536000 vary: - Authorization,Accept-Encoding, Accept-Encoding via: + - 1.1 varnish-v4 - 1.1 varnish x-cache: - HIT @@ -753,17 +754,17 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 310d003af298999e53d2c0354bcddcdd15e7761b + - 6cd8365ac5aabf337d4135090e66db6352235f0e x-frame-options: - deny x-geo-block-list: - '' x-github-request-id: - - CF78:1F60:3E5219:4518E0:5E13443A + - A2AE:5AC3:10BC:15E0:5E1D1D4F x-served-by: - - cache-sin18029-SIN + - cache-sin18045-SIN x-timer: - - S1578321043.622947,VS0,VE1 + - S1578966815.772196,VS0,VE0 x-xss-protection: - 1; mode=block status: @@ -800,7 +801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:42 GMT + - Tue, 14 Jan 2020 01:53:36 GMT expires: - '-1' pragma: @@ -839,14 +840,14 @@ interactions: "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10", - "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss1c58d", "adminUsername": + "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss1211f", "adminUsername": "deploy", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/deploy/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\\n"}]}}, "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002"}, - "vaultCertificates": [{"certificateUrl": "https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372"}]}]}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1c58dNic", - "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1c58dIPConfig", + "vaultCertificates": [{"certificateUrl": "https://vmlinuxkv000002.vault.azure.net/secrets/cert1/c8f1cfc8eb7c46b2bd1932bd9b05f57f"}]}]}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1211fNic", + "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1211fIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool"}]}}]}}]}}, @@ -878,18 +879,18 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","name":"vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4710857271621719298","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-06T14:30:49.194862Z","duration":"PT3.065384S","correlationId":"9cf9b4ea-6a25-41b3-ac94-eb9e0f52099c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_fxoauKbHhkznSzo4X1NqxbkZvREdut7s","name":"vmss_deploy_fxoauKbHhkznSzo4X1NqxbkZvREdut7s","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9318737347149155886","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-14T01:53:43.4561794Z","duration":"PT2.544712S","correlationId":"6117b682-636e-40a7-9e42-3ccd49bb3525","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc/operationStatuses/08586232858393481533?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_fxoauKbHhkznSzo4X1NqxbkZvREdut7s/operationStatuses/08586226400645661558?api-version=2019-07-01 cache-control: - no-cache content-length: - - '2750' + - '2751' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:30:51 GMT + - Tue, 14 Jan 2020 01:53:45 GMT expires: - '-1' pragma: @@ -899,7 +900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: code: 201 message: Created @@ -920,7 +921,93 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:54:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --ssh-key-value --secrets + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 01:54:52 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - vmss create + Connection: + - keep-alive + ParameterSetName: + - -n -g --image --admin-username --ssh-key-value --secrets + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -932,7 +1019,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:22 GMT + - Tue, 14 Jan 2020 01:55:22 GMT expires: - '-1' pragma: @@ -963,7 +1050,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -975,7 +1062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:31:53 GMT + - Tue, 14 Jan 2020 01:55:54 GMT expires: - '-1' pragma: @@ -1006,7 +1093,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1018,7 +1105,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:32:23 GMT + - Tue, 14 Jan 2020 01:56:24 GMT expires: - '-1' pragma: @@ -1049,7 +1136,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1061,7 +1148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:32:54 GMT + - Tue, 14 Jan 2020 01:56:55 GMT expires: - '-1' pragma: @@ -1092,7 +1179,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1104,7 +1191,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:24 GMT + - Tue, 14 Jan 2020 01:57:27 GMT expires: - '-1' pragma: @@ -1135,7 +1222,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1147,7 +1234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:33:54 GMT + - Tue, 14 Jan 2020 01:57:58 GMT expires: - '-1' pragma: @@ -1178,7 +1265,7 @@ interactions: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586232858393481533?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226400645661558?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -1190,7 +1277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:34:25 GMT + - Tue, 14 Jan 2020 01:58:38 GMT expires: - '-1' pragma: @@ -1224,9 +1311,9 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","name":"vmss_deploy_J1vaq8yuaRQd08nFo9e1sXouuOEsSngc","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4710857271621719298","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-06T14:34:07.0671185Z","duration":"PT3M20.9376405S","correlationId":"9cf9b4ea-6a25-41b3-ac94-eb9e0f52099c","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1c58d","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Resources/deployments/vmss_deploy_fxoauKbHhkznSzo4X1NqxbkZvREdut7s","name":"vmss_deploy_fxoauKbHhkznSzo4X1NqxbkZvREdut7s","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9318737347149155886","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-14T01:58:10.4716719Z","duration":"PT4M29.5602045S","correlationId":"6117b682-636e-40a7-9e42-3ccd49bb3525","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1-nameLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1-nameVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1-nameLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1-name"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1211f","adminUsername":"deploy","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/deploy/.ssh/authorized_keys","keyData":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\n"}]},"provisionVMAgent":true},"secrets":[{"sourceVault":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002"},"vaultCertificates":[{"certificateUrl":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372"}]}],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1c58dNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1c58dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"fedf65b8-5877-483c-981a-05d351df7ac2"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET"}]}}' + test@example.com\n"}]},"provisionVMAgent":true},"secrets":[{"sourceVault":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002"},"vaultCertificates":[{"certificateUrl":"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/c8f1cfc8eb7c46b2bd1932bd9b05f57f"}]}],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1211fNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1211fIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"eb7a940f-09f2-4f25-823e-e34507316abc"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-name"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/publicIPAddresses/vmss1-nameLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET"}]}}' headers: cache-control: - no-cache @@ -1235,7 +1322,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:34:26 GMT + - Tue, 14 Jan 2020 01:58:40 GMT expires: - '-1' pragma: @@ -1277,7 +1364,7 @@ interactions: \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"vmss1c58d\",\r\n \"adminUsername\": + {\r\n \"computerNamePrefix\": \"vmss1211f\",\r\n \"adminUsername\": \"deploy\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \ \"path\": \"/home/deploy/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1287,7 +1374,7 @@ interactions: [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.KeyVault/vaults/vmlinuxkv000002\"\r\n \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/e45ab6a28e2c4f81ae6f5681643bd372\"\r\n + \ \"certificateUrl\": \"https://vmlinuxkv000002.vault.azure.net/secrets/cert1/c8f1cfc8eb7c46b2bd1932bd9b05f57f\"\r\n \ }\r\n ]\r\n }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n @@ -1296,10 +1383,10 @@ interactions: 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": - {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1c58dNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1c58dIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool\"}]}}]}}]}\r\n + {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1211fNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1211fIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/virtualNetworks/vmss1-nameVNET/subnets/vmss1-nameSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/backendAddressPools/vmss1-nameLBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_linux_secrets000001/providers/Microsoft.Network/loadBalancers/vmss1-nameLB/inboundNatPools/vmss1-nameLBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"fedf65b8-5877-483c-981a-05d351df7ac2\"\r\n }\r\n}" + \"eb7a940f-09f2-4f25-823e-e34507316abc\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -1308,7 +1395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:34:27 GMT + - Tue, 14 Jan 2020 01:58:43 GMT expires: - '-1' pragma: @@ -1325,7 +1412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2596 + - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2590 status: code: 200 message: OK From ee1f6cd24bd1d5add703a1ff3884fc87256ddee6 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 11:05:28 +0800 Subject: [PATCH 34/51] revert aks test --- ...slb_vmss_with_outbound_ip_then_update.yaml | 1967 +++++++++-------- 1 file changed, 991 insertions(+), 976 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml index fb6bce60b67..689334b5a8a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml @@ -1,7 +1,8 @@ interactions: - request: - body: '{"location": "eastus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + body: !!python/unicode '{"sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location": + "eastus"}' headers: Accept: - application/json @@ -18,32 +19,35 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2019-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n - \ \"etag\": \"W/\\\"2cb5fef0-5314-432e-9864-5fc08d28932a\\\"\",\r\n \"location\": - \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"46af33cf-7a33-4cf3-8dcd-ee81507badc3\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + ,\r\n \"etag\": \"W/\\\"4eaf2915-3e0f-481d-8313-162648c107c3\\\"\",\r\n \ + \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Updating\",\r\n \"resourceGuid\": \"77203fae-70da-4ee4-b7ff-e3499a36cd1b\"\ + ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ + : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n\ + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ + : {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n\ + }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bc07c0df-a6e5-4265-81a0-4f960a6b3e55?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d534a649-f5c3-4bc6-a333-b5b609576e90?api-version=2019-09-01 cache-control: - no-cache content-length: - - '624' + - '649' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:01 GMT + - Thu, 12 Sep 2019 02:02:15 GMT expires: - '-1' pragma: @@ -56,7 +60,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ea2960b0-2a15-421c-9d59-0bbaa7f76dee + - 6707e2e8-a29f-4b89-a95a-6ec17cc54d7e x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -76,13 +80,13 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bc07c0df-a6e5-4265-81a0-4f960a6b3e55?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d534a649-f5c3-4bc6-a333-b5b609576e90?api-version=2019-09-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -91,7 +95,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:04 GMT + - Thu, 12 Sep 2019 02:02:17 GMT expires: - '-1' pragma: @@ -101,14 +105,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 576e1cfe-7e78-42e1-a258-550302546177 + - a867774e-534c-4c13-b328-a6d7c2894b34 status: code: 200 message: OK @@ -126,31 +126,33 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2019-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n - \ \"etag\": \"W/\\\"33b5913c-e252-479d-a459-254e07ac8015\\\"\",\r\n \"location\": - \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"46af33cf-7a33-4cf3-8dcd-ee81507badc3\",\r\n \"ipAddress\": - \"52.142.20.48\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\"\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + ,\r\n \"etag\": \"W/\\\"8c5952ef-f94d-4137-96ad-17f0cf4fed25\\\"\",\r\n \ + \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"77203fae-70da-4ee4-b7ff-e3499a36cd1b\"\ + ,\r\n \"ipAddress\": \"40.88.48.193\",\r\n \"publicIPAddressVersion\"\ + : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ + : 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ + ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '659' + - '684' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:04 GMT + - Thu, 12 Sep 2019 02:02:17 GMT etag: - - W/"33b5913c-e252-479d-a459-254e07ac8015" + - W/"8c5952ef-f94d-4137-96ad-17f0cf4fed25" expires: - '-1' pragma: @@ -160,20 +162,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 743390ca-518b-4d0d-bc5d-a9bb1883675d + - fcefbf40-5644-40f2-b457-999e0f511b89 status: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + body: !!python/unicode '{"sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}, "location": + "eastus"}' headers: Accept: - application/json @@ -190,32 +189,35 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2019-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n - \ \"etag\": \"W/\\\"bb5e85aa-ba3b-40bc-98d6-6c6a9fcb3896\\\"\",\r\n \"location\": - \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"109bafbc-9334-4106-b9a5-08bb2b876d06\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + ,\r\n \"etag\": \"W/\\\"11bc5714-2010-471b-a9d1-018a3ca3b7d0\\\"\",\r\n \ + \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Updating\",\r\n \"resourceGuid\": \"dbb3d4c9-fea4-4188-9065-513c945765a3\"\ + ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ + : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n\ + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ + : {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n\ + }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/01566cf3-68f1-4642-86db-b279bf6149e9?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/005a9f8e-8c7e-4d75-a9c0-d13b6a8f1cd5?api-version=2019-09-01 cache-control: - no-cache content-length: - - '624' + - '649' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:15 GMT + - Thu, 12 Sep 2019 02:02:19 GMT expires: - '-1' pragma: @@ -228,9 +230,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a947c2c1-24c4-4bba-8dc4-e645148b2861 + - 16226a92-19df-4427-9bf2-6ced5ada3e4f x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -248,13 +250,61 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/005a9f8e-8c7e-4d75-a9c0-d13b6a8f1cd5?api-version=2019-09-01 + response: + body: + string: !!python/unicode '{"error":{"code":"ServerTimeout","message":"The request + timed out. Diagnostic information: timestamp ''20190912T020306Z'', subscription + id ''c1089427-83d3-4286-9f35-5af546a6eb67'', tracking id ''52e7d687-7135-4ae2-b3b0-fb0308f4520d'', + request correlation id ''52e7d687-7135-4ae2-b3b0-fb0308f4520d''."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Sep 2019 02:03:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 503 + message: Service Unavailable +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --sku + User-Agent: + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/01566cf3-68f1-4642-86db-b279bf6149e9?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/005a9f8e-8c7e-4d75-a9c0-d13b6a8f1cd5?api-version=2019-09-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: !!python/unicode "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache @@ -263,7 +313,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:17 GMT + - Thu, 12 Sep 2019 02:03:06 GMT expires: - '-1' pragma: @@ -280,7 +330,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30bbf765-9c5a-4354-b2da-b72f87e3c43d + - 522d0727-cb01-402a-98c2-63cc67f0594f status: code: 200 message: OK @@ -298,31 +348,33 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-network/4.0.0 Azure-SDK-For-Python AZURECLI/2.0.73 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2019-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n - \ \"etag\": \"W/\\\"98f1b9a2-5e3c-42c0-b2c0-85c5174a60f4\\\"\",\r\n \"location\": - \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"109bafbc-9334-4106-b9a5-08bb2b876d06\",\r\n \"ipAddress\": - \"52.149.202.233\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\"\r\n }\r\n}" + string: !!python/unicode "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + ,\r\n \"etag\": \"W/\\\"a5381b98-e1d1-4ce9-b51a-ed95938e7233\\\"\",\r\n \ + \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"dbb3d4c9-fea4-4188-9065-513c945765a3\"\ + ,\r\n \"ipAddress\": \"40.88.48.204\",\r\n \"publicIPAddressVersion\"\ + : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ + : 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ + ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '661' + - '684' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:17 GMT + - Thu, 12 Sep 2019 02:03:07 GMT etag: - - W/"98f1b9a2-5e3c-42c0-b2c0-85c5174a60f4" + - W/"a5381b98-e1d1-4ce9-b51a-ed95938e7233" expires: - '-1' pragma: @@ -339,7 +391,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b98ac0d-42aa-4ac1-81e7-f90bd7fe7f2f + - fa54f5a8-36a4-4a51-8c55-2b38b396be24 status: code: 200 message: OK @@ -358,15 +410,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-resource/3.1.0 Azure-SDK-For-Python AZURECLI/2.0.73 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"date":"2019-09-12T02:01:32Z","product":"azurecli","cause":"automation"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -375,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:18 GMT + - Thu, 12 Sep 2019 02:03:07 GMT expires: - '-1' pragma: @@ -390,17 +442,18 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": + body: !!python/unicode '{"properties": {"enableRBAC": true, "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + test@example.com\n"}]}}, "networkProfile": {"podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "networkPlugin": "kubenet", "loadBalancerSku": "standard", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}, + "dnsServiceIP": "10.0.0.10"}, "dnsPrefix": "cliaksdns000004", "kubernetesVersion": + "", "agentPoolProfiles": [{"count": 1, "scaleSetEvictionPolicy": "Delete", "scaleSetPriority": + "Regular", "name": "nodepool1", "osType": "Linux", "vmSize": "Standard_DS2_v2", + "type": "VirtualMachineScaleSets"}], "addonProfiles": {}, "servicePrincipalProfile": + {"secret": "r7rpDQLwRhJQF/WoSPp6sMKJB9GQJCsZ9/o8xkqP/xM=", "clientId": "fe3666d9-187f-4884-882e-85b5d0c2b2f0"}}, + "location": "eastus"}' headers: Accept: - application/json @@ -411,33 +464,56 @@ interactions: Connection: - keep-alive Content-Length: - - '1716' + - '1736' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"kubernetesVersion\": \"1.13.10\"\ + ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"provisioningState\": \"Creating\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n },\n \"maxAgentPools\"\ + : 8\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 cache-control: - no-cache content-length: - - '241' + - '2387' content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:26 GMT + - Thu, 12 Sep 2019 02:03:13 GMT expires: - '-1' pragma: @@ -449,22 +525,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: - code: 400 - message: Bad Request + code: 201 + message: Created - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -474,34 +540,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:37 GMT + - Thu, 12 Sep 2019 02:03:44 GMT expires: - '-1' pragma: @@ -510,25 +571,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -538,34 +591,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:45 GMT + - Thu, 12 Sep 2019 02:04:14 GMT expires: - '-1' pragma: @@ -574,25 +622,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1194' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -602,34 +642,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:54 GMT + - Thu, 12 Sep 2019 02:04:44 GMT expires: - '-1' pragma: @@ -638,25 +673,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -666,34 +693,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:03 GMT + - Thu, 12 Sep 2019 02:05:14 GMT expires: - '-1' pragma: @@ -702,25 +724,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1191' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -730,34 +744,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:11 GMT + - Thu, 12 Sep 2019 02:05:45 GMT expires: - '-1' pragma: @@ -766,25 +775,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1190' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -794,34 +795,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:19 GMT + - Thu, 12 Sep 2019 02:06:15 GMT expires: - '-1' pragma: @@ -830,25 +826,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1189' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -858,34 +846,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:27 GMT + - Thu, 12 Sep 2019 02:06:45 GMT expires: - '-1' pragma: @@ -894,25 +877,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1188' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -922,34 +897,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:35 GMT + - Thu, 12 Sep 2019 02:07:16 GMT expires: - '-1' pragma: @@ -958,25 +928,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -986,34 +948,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:44 GMT + - Thu, 12 Sep 2019 02:07:46 GMT expires: - '-1' pragma: @@ -1022,25 +979,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1186' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -1050,34 +999,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:52 GMT + - Thu, 12 Sep 2019 02:08:16 GMT expires: - '-1' pragma: @@ -1086,25 +1030,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1185' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -1114,34 +1050,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:00 GMT + - Thu, 12 Sep 2019 02:08:47 GMT expires: - '-1' pragma: @@ -1150,25 +1081,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1184' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -1178,34 +1101,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:08 GMT + - Thu, 12 Sep 2019 02:09:17 GMT expires: - '-1' pragma: @@ -1214,25 +1132,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1183' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -1242,34 +1152,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:18 GMT + - Thu, 12 Sep 2019 02:09:47 GMT expires: - '-1' pragma: @@ -1278,25 +1183,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1182' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -1306,34 +1203,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:25 GMT + - Thu, 12 Sep 2019 02:10:17 GMT expires: - '-1' pragma: @@ -1342,25 +1234,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1181' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -1370,34 +1254,29 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ee5093dc-e07e-4009-baaa-458b1d832035?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"dc9350ee-7ee0-0940-baaa-458b1d832035\"\ + ,\n \"status\": \"Succeeded\",\n \"startTime\": \"2019-09-12T02:03:13.6500407Z\"\ + ,\n \"endTime\": \"2019-09-12T02:10:38.3655409Z\"\n }" headers: cache-control: - no-cache content-length: - - '241' + - '170' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:33 GMT + - Thu, 12 Sep 2019 02:10:47 GMT expires: - '-1' pragma: @@ -1406,25 +1285,17 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1180' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json @@ -1434,34 +1305,50 @@ interactions: - aks create Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US - method: PUT + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ + ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" headers: cache-control: - no-cache content-length: - - '241' + - '2607' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:41 GMT + - Thu, 12 Sep 2019 02:10:48 GMT expires: - '-1' pragma: @@ -1470,62 +1357,73 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1179' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks list Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ + : \"1.13.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"\ + cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\",\n \"agentPoolProfiles\"\ + : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \ + \ \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 100,\n \ + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"\ + publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ + ,\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n },\n \"maxAgentPools\"\ + : 8\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '241' + - '2756' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:49 GMT + - Thu, 12 Sep 2019 02:10:50 GMT expires: - '-1' pragma: @@ -1534,62 +1432,73 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1178' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks list Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -o User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\"\ + : \"1.13.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"\ + cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\",\n \"agentPoolProfiles\"\ + : [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \ + \ \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 100,\n \ + \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"\ + publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ + ,\n \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"dockerBridgeCidr\": \"172.17.0.1/16\"\n },\n \"maxAgentPools\"\ + : 8\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '241' + - '2756' content-type: - application/json date: - - Tue, 14 Jan 2020 01:25:09 GMT + - Thu, 12 Sep 2019 02:10:51 GMT expires: - '-1' pragma: @@ -1598,62 +1507,71 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1177' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks show Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ + ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" headers: cache-control: - no-cache content-length: - - '241' + - '2607' content-type: - application/json date: - - Tue, 14 Jan 2020 01:25:18 GMT + - Thu, 12 Sep 2019 02:10:52 GMT expires: - '-1' pragma: @@ -1662,62 +1580,52 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1176' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks get-credentials Connection: - keep-alive Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n --file User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\"\ + ,\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VWNGVrTkRRWEVyWjBGM1NVSkJaMGxSU1d3MlEwMXVZbmhDV0U0eWFXdzVUVmw2VEVSNGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjRUMVJCTlUxVVNYZE5WRlY2VFdwU1lVWjNNREJQVkVFMVRVUlJkMDFxUVhwTmFsSmhUVUV3ZUFwRGVrRktRbWRPVmtKQlRWUkJiVTVvVFVsSlEwbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVVVkdRVUZQUTBGbk9FRk5TVWxEUTJkTFEwRm5SVUY0UVhkc0NrVmtiMjVaY0dwYWJEUkRWRlZIUVd0SlRYSktNR3hzVTBwMFprRTVTVlp5TkV3MWRFTlVUbE5pVDNWNlVTOXdNemhuU0dZdk5GUk1TbTF0UVVsclJtMEtZazEzYjAxNmJFTmhRV05oTXpWQ2NHTkRUbWRYTUROb1JHRllkbGx4UzI5NWJHUlRWV1pOWW5GbWFWaDFXRk53V2tWVGNrNXdXazVrUnl0bllqa3ZlQXA1T1d0bE9UQTVVMDh4V0ZKbGMyOVdNVXBRTUV0aFNqbGhTakV2TkRSclRsZExNbU4yYVV4VWVscGpja1J0TUVaa1EwRTNibmN2TUROdVdVWXhRMmxpQ25oV09FRk5kalJVWTFCUlVFRmhOWGRKV1U5SE4waE5kVkZrY21GTlNVMUtaMHBuYzA0MWF6Sm1RMmQ2WlZGQlQzbHNZbXBpUkhNd1FtZEpaRXRWY1VvS1pUTlNORlpYYkc4MU1Dc3dSVVpaV1M5UmRDOWtaMVp2UlhKRFRtbE9kQ3Q0UW1kUGJVUk9hMFJNWTNGcU1GQldZemhFVlVvck9UaDBZblpEYTJKeFRBcDNkMFZFTW5oRFRXNHZXRTFqYWtwNVFVd3laWGQ0UW1kQ01HdHlNMWhsVVdzd1dWUkxWemRzY0Rnd1UycDBUa0ZQYTI5NFRIcEdLMnc1T1ZOUmVFVjFDbVZTYkVWWGJqUlNSM0J0ZUhOc1VURkRiamgzZW5JeWIzVldlR3RxTldWeGVXNXhWM1pFS3pWeWVFTTNWRkI2Y2k5eVRuRTNSV3BxVERWWGJtaEtRakVLTlROQk16Y3lNRVJrZUdSME5VRlVWWE5DTmxGblFUVTNUV0kzTUVOU1JURTRVVTlQVm01SlkwUlRNSGhDZFZsQ2NVVlJURXhKT0hCVVVrb3hkWE5oV1FwTGEydGpOM0pFTDIxVlZubHdibkpxSzBaUFIxbG9ibkpqZUhkNkwzQkljVTlTVTNWcE1HRkVWV0ZMY3pCMlVWaDRaMDlEUTJ4R1duSktObE5EYW5CU0Nua3dTREJyU20xcWRWY3ZMeXRxTVd4MGVEQjRkVVIxVmpRNWQwZEZNRGt6ZFZwNlVYUTFWbVE0Y1hrMVVrZFJaemxZV2tVeFl5OUhXRVZrWjB0U1owTUtWMnhEVldocWQyTlJOV1F6YjNrMVlVUnJVM2hDUjNOWlEwSXJSR2hQZVhCQ05YTjNSR0V3UTBGM1JVRkJZVTFxVFVORmQwUm5XVVJXVWpCUVFWRklMd3BDUVZGRVFXZExhMDFCT0VkQk1WVmtSWGRGUWk5M1VVWk5RVTFDUVdZNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1JVZExWbUpIQ2xNNWJ6UjNTM1l4TDJJMVIxYzBORWNyU1hWTlVEaG1NSGhsUnl0c1ZHMVhXbTFLTVZNNE0yY3ZLMGxJWlhaSU5Fc3daR013UVhCWlVqRXhaWGg1VW1NS2RtZzRNVGh5T0VGdFQzaHhObE5RU2tOalJteDBlbWhwUVZGQksyUlhUblpaYW5KQ2RrdHRlbVpuTUZWTllqSXlaMGw1T0RKWGVYTlVlamt2Wml0MFp3cFlURmswUkM5dVEybDJTR3AwZDB4a1RXWkpPV3RGVGxvMVZpOVlObkpSVFZKdFNFNUxlazVQZDFaaGMyUTBablp3UzFkS09GQldhaTlEWjBKamRXMWFDakZrUkU1MlRuWkNiV2hwVERkSGJGaDVLM2RTTVZWa1dGVnlhemxDTlVGQ01EWkNOVUUwZVhSS056QlFabWhsYUZOS0swNDNOelEwVmxJcmMyWm9MMllLWWtaVFVtcFNLM3BOUjJSR2JVOUZkVEV6UlhSbmNVOUplREIzWm01SWVteENPVXRZV1hKcGFqaDRRM05OVEhoYWFGaFNUMGx4VjJ4eGIwRmFRMk12TndwV09EZE9aSFZUYVRFMVEydG1NVVIyUW5JNFFtSlhiblIzYTNCdWNqQjVPWGRzUVZWVFIyWmFRMjh5UTFsc2JWSlNPSFJ5ZVV0aGNIbE9iSEpoU0ZsV0NqRXpOR2RIWjNrdlFtazFOME5LYTJoWU1IaDVOMDl6YUdwQ05uSkpSWEJyWkhKcGEwOVFOa3cxVUdNeVFVaFRZVEZEVGxadlRUWnpWelJyWVZSa1VuQUtVbmxQV2s5Q2VWUm1ZMk53VEVoQ05IazJPR2h3YldsT2NubzRMemd6TkVWU1JVVkhPVXRJVVhGM1UxcGxhbXN2TVVoelUwcHBOR3BZV0djd1NFcHZiQXBqU1ZnemQyUlpZalJ6VERGS1pWUXdaR00wUjB0aGQwMXFkRUpWYW1jMk9XWkJZUzlJYW05S1pVcHphRTFCV0dkMGEydElPR1Y0YURGQmFtRm9TemhzQ2tGcFZHeGtXQzlWVVZWa2RHcHJSRVY2ZFVkb01VWnpkblJaUmtjdlIwZFdXbTVtTTJGbVNub3dVRlpDYUZVMFRtWlBSRU13TVVkbUsxRlRjVmhIYmtJS2FIUkdhSEZ3ZGpOU2QzWlBVVGwxVGpWTGQxbExNa2RGUm5JcldsaG1iMWR2Ym10ckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2txcTRlemItNzFmNjRlODYuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG50dTZhMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG50dTZhMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIG5hbWU6IGNsaWFrc3Rlc3RudHU2YTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bnR1NmEyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVVXZSRU5EUVhWVFowRjNTVUpCWjBsUlVtaElPRGxvVlZoV01ESlVLMVJQZUUxNkwyVTRla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI0VDFSQk5VMVVTWGROVkZWNlRXcFNZVVozTUhsTlZFRTFUVlJGZDAxcVFYcE5hbEpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjBlVTlIY0U1MFR6bGFOa2hQVldseGNHRnFka1VLVkhGUFJGbFZablZQYmtnd1dtZHRXa0pOVkRoNFlpc3pVMGhtVW1kVmNXdDRSelExVGpkSVJ6TkZTREJ5THpKMlNHZGlSR3N5UldFeGFWQXJVbmwwVlFvMGMwOUthbU4wZVhCUVIxSnRkVVpTVERNNU56ZEhkaTh3UWxCMmIzZHRSRFZpZDJsUVp6QTFZMFp1ZGpaWFdtSTRXbUZ6WmtremJGQXllblJJWW5KVkNuUkVVR29yY0V0V05Fc3ZZbWh5U0hWbVJETXdjaXRJYld0U0swUjVPV3hPV0hkc1ptVlBURXRXU25wSGFEUm1kRTFCYkhOWWRHUk5PVXh0ZFRCUWNETUtibmhVVjJ0UlFXNTFMemR4T1VKcVFVVkVZV3BIUkUwNWFGWkdNVEUwT1V0MlZHaDNjemd4T1RadVEzQlJVbEJwUmtZeUwzVk1TVkJ5S3poWFFXSm9WQXBIYkVOV05GbHpPRUpRYzBGQ2NVSkhSbHByYUd3NWIxVXJUbWN5ZEdrMFFVdGpOM0JtVEhOcU1IaFlTakpwUkVkQ0wwbzFlVTUyS3l0SlpqUlphRmMwQ2l0MFluUklTMFpxZGtWRGJ6UnhXVkF3UVZScU1pdENWMXBpYzBVeVpHNTZlV2RHYTNGRkwyUjBWbk5NVEZwdWFGRnpXRkpxTTFkWFkyUmpVWGd6ZFdVS2RVNWFWek0yZVZKVFNUZ3piVTFqYm1kdFpUSlhiVGRCUTNWeFZ6SkxkR3R6ZDNRdmFtWXJSSHB4TUZSUVIxSnVlREU1ZWpSMFdTOVBNR2N2Um1aeVJBcDZkSHBNV201MVl6aHRkMXBPZUdSaVFXSXdhVE5XTjNGU1JIaFZjV0k1WW5SRU1HeG9PRzU1YWxRNVdXMU9VSGRDV21aR1dGSXZUV2xJYUV3dlIwdDJDbkp3TmpWa1QzaFpjV1pOYmxCNlprMXNTMjlXT0U1b2MxbzJjRWxuTVVad2NUWkVUQ3RYUVRkbWJ6WmtlSFpwYUhvNVlsY3lURXBQTkV4SVJXSktXWG9LUjFoTlIwaDRXVko2VDJweWMzWnNibmxqY1hWbU5raG1hM2RPSzNOMloyVkhXalZKWVhsUGQxTkVNVkpHYjNFck1XdDVkMWxuYldwMWRHTjJZakJHTXdwcGVXeDFOREZsYms5elNHaENOUzlNTTNaTldWZFJTVVJCVVVGQ2IzcFZkMDE2UVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRUtSMkUxYlVOTVpHWjNWVk5RTUVSTE9WcGxTR2REUm01MVlXczNibWt4Wkc1MVoyVnFOMmxxZVhOMGIyeE1MekJHTTNkTWJtUmthM1ZGYTJKNk4xUmlNUW93ZWtSNU5VNHpVM1IzU2xkUk5FZDJaR1ZFUkZCWlRsZGpXRVZTU0dOWk1saHliSGxxUTBVeWNDczNSM05sUzBGYVJVZzVZbWhFTTFWNldEaDBUR2xpQ2tNdllVeGtXazlJVlhwV2F6SkNla3BSTmxoamRGTTJZMDFxUlZKbFkzUk5iV3BUV0ZJd1IzbG9MMlU0UXpnd2RVOVhZbmhoUkVGNldTOXdUSHBRVEdRS2JrMXlWRWhrWWxsMGJtMUhObmc0YlVSbFVsWnZaVU5TVGxnM056QlpTMFZ6YUZWWmFDODJSak4wZUVkTVYzTm5WR05SU1V4VVMzYzNlV1VyUm5ad05RcEhNbmMyT0VORFRreHVOWFJvYUU0d1JuZ3pWblozT1VsaU9YaHJkamRxVUdzdlYzSjZLMFp3YWs0MmVYbzBabkZFY25RMlNWZzRaVlJqVDBRNWQyWjNDblpVYVVGTFUxSTNNMHBXZEhwV1VsWk1ZekpqT1ZWU1NXcG5aMWczVEVWRFQyZFllbGhrY0dSaWQxVlBVWE53VkhWcE1YRnRkWGN5V1V3NE5uWmpXbkFLU0hCUE4yZElTamRDZEc0d2RERkNjVmwxU2sxMllUVkJRVEpKTXpkUGJ6Uk9WMWN5UjJsd2JYaDZXSHBaWkZobGRtaFFiazU2VlRCR1QyaDJXalV6WVFwWWFrMVFNRGRNT1M5UU1GbFFTVlV4WkRneU1IWkNWMnRLUW10Wkt6STBhakpTTjJOWFNtUXJUMmxxTjNaVldYWnBNMk5CZEZCa1NqbERNbTVEVFVOMUNrbFBTMkpJYUdkaEszSmhNM0JWY3pOblNrOTBibWhEWmk5RVdtRkhRM2hqZW5Ca1RtTlFOWGQwVWxkeU5Fd3lRVWhTVW5sTUsyY3ZTek55ZURWc1lYRUtSR3RzWW1OSWFrbGlabGRDUWxvcmFqSm1ORVpyUjBWT1IwRmxTM0ZzTUhGbEwycEtVMDVqVmpNd1VEQk5WR0UxUmxWMFVteFhUekZEVkd4SFptZHJPQW93ZG5OcWNrMHpXV2hYYXpBdk5FZHZiekUyVEZoallubEVLMnBJZDBWTWMyMXVZMDlqWlRRcmIwZzRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJjbU5xYUhGVVlsUjJWMlZvZW14SmNYRlhiemQ0UlRacVp6SkdTRGRxY0hnNVIxbEtiVkZVUlM5TlZ5OTBNR2d6Q2pCWlJrdHdUVkoxVDFSbGVIaDBlRUk1U3k4NWNuZzBSM2MxVG1oSGRGbHFMMnRqY2xaUFRFUnBXVE5NWTNGVWVHdGFjbWhWVXprdlpTdDRjaTg1UVZRS056Wk5TbWNyVnpoSmFqUk9UMWhDV2pjcmJHMVhMMGRYY2toNVRqVlVPWE0zVWpJMk1VeFJlalF2Y1ZOc1pVTjJNalJoZURkdWR6azVTeTlvTlhCRlpncG5PSFphVkZZNFNsZ3phbWw1YkZOamVHOWxTRGRVUVVwaVJqZFlWRkJUTlhKMFJEWmtOVGhWTVhCRlFVbzNkaXMyZGxGWmQwSkJNbTk0WjNwUVdWWlNDbVJrWlZCVGNqQTBZMHhRVG1abGNIZHhWVVZVTkdoU1pIWTNhWGxFTmk5MlJtZEhORlY0Y0ZGc1pVZE1VRUZVTjBGQllXZFNhRmRhU1ZwbVlVWlFhbGtLVG5KWmRVRkRiazgyV0hrM1NUbE5WbmxrYjJkNFoyWjVaV05xWWk5MmFVZ3JSMGxXZFZCeVZ6ZFNlV2haTjNoQmNVOUxiVVE1UVVVME9YWm5WbTFYTndwQ1RtNWFPRGh2UWxwTGFGQXpZbFppUTNreVdqUlZURVl3V1RreGJHNUlXRVZOWkRkdWNtcFhWblFyYzJ0VmFWQk9OV3BJU2pSS2JuUnNjSFYzUVhKeENteDBhWEphVEUxTVpqUXpMMmM0Tm5SRmVuaHJXamhrWm1NclRGZFFlblJKVUhoWU5uYzROMk41TWxvM2JsQktjMGRVWTFoWGQwYzVTWFF4WlRaclVUZ0tWa3R0TDFjM1VUbEtXV1pLT0c4d0wxZEthbFE0UVZkWWVGWXdabnBKYURSVEwzaHBjalkyWlhWWVZITlhTMjU2U25vNE0zcEtVM0ZHWmtSWllrZGxjUXBUU1U1U1lXRjFaM2t2YkdkUE16WlBibU5pTkc5akwxY3hkR2w1VkhWRGVIaEhlVmROZUd4NlFtZzRWMFZqZW04Mk4wdzFXamh1UzNKdUsyZ3pOVTFFQ21aeVREUklhRzFsVTBkemFuTkZaemxWVW1GTGRuUmFUWE5IU1Vwdk4zSllUREk1UW1RMGMzQmlkVTVZY0hweVFqUlJaV1o1T1RkNlIwWnJRMEYzUlVFS1FWRkxRMEZuUW1aMlRFeFZhbUZtU1ZORVkxUmxjVU5YUWtSbk5IaFViUzlRZGtKd2FGUnJVamh6VTBkNkswaFdablowUnpsV01VMTRXRlpvYmk5Vk5RcEJSREp1TVRrNVpEbFVXa1ZMY2pVdlREaHVia0oxUmpsVE5tWk1ZemhHVmtob1FtVmpRUzlGY25oYVFuRXpSVWg2UVRoVVRtOWFSa1puVVM4M1YyWm1DbFpXTDJweVRXeG1TMkV5UTB0WE1XZFRTak5FUmxaWWEzRjFVWEZIWW5kalpFRlpaRWN4VEVkR1ZWbG5iemhHWkRoNVlqTTFhWElyWVVkaGJVRlNNR2NLZHpJdmRFWjJMMjVRZGt4aE9FRlFRVGs1TmxWUWNESnpaVTlSUXpCc2FXZGxMMFZvT0hGa1ZYVklVMHRIYlZJdlNrOHpWbXB2VWpVM2RUWTFkR1JTU3dwQmExQkxaMnRVWldWVlQwTTBUVlpyZDFaTlZ6UlZNVTVUYkZaS1RYTTBRMUVyV2pSbmFWaHJkR05JUmpKc1FYQXJXVmhwTVRsUlJrVkJaak5tZUVSSENrRkVhalJYTW1zNVkycFdjalI1VkhCbmIxaDJlVTl5WmtsMWJtcDJURzFKYm1sbU4yWkJkVFpUTjJ3eU5VdDRWbU41Y1U5b1ZtMVhObFZhV1ZBclJVSUtUMDlPYldOQ1ltbGlObmN4VWpFNFl5OVZiRWt3VnpoRVNFWm9aUzg0SzJWR1RIYzFWVkU1U1RWdlJrdFVRMFJJTVhoVU1uRm5ibGg0YUdNMVRHSTRkZ3BWUW5FNWJHeFFjR3R3Ym1Od1NVSXhlbWRDWW5SMGRVdDRWVnBpUlVGMGRuaHNXRFpqWms4M0swSnJTakZyYkVvME1VOUNjRGRNUlVGQ1dUUk9kSEpvQ2pCT1lYRldjM2wyT1VKTFltTnpXVFJHVURWdWJrTlhjVmhEUVV3NE9UZENjRkUzY2twdlYzRnZaa0ZFWkhCNVNUbExWVFl3WVM5clZuVXJOMVZhT1RVS01EZEJkVUZyVVd4S2JsY3ZRMDkxTHpsUk9HOUNiSFJ1V2poQ1kyeFVWMjFIVWxCWFZYcHNOQ3RGTlZJcmIwdEpSR1Z5UWtGaFdsWlNNbk5XVFhOb1NRcHFVbEZGWTI1aFMxUTRTM1ZsVjFONE1GTjNUV3BKYUV3NE4yTktZbXQ2YTJkbldVNVZVMVJOT0c0Mk9IVm5VbFp2VVV0RFFWRkZRVFZ3Tm0xdlNtOUdDbEJTTWswMVRVUjNia2Q0YWtnM1MwZFRWRlp1TUVkNmFERXZOeXR2Y0dwbVJ6RTBMMFJ1VUROWFVrNXJkVzg1UVhoeE5YZERUbkl5YUhOSVdGRTVZV2NLU0hCVGR6VnNNVmRTWlhKMFZpOUpOSEpJVURVeWIyWmFTMFpOYUZoelZtaEllVlIwTUdadlVYQldWWGxsUmtGNWRsQXdibWRFU2tsdFJHMXJjalpJUkFwcE1FYzRNSEoxYkhOcWJYbzVVR2dyTlZSVVRFVlpWV041UkhnekswSjVURE54WldaU01reG1aMVJtZEZCV1lsZDBjRGhKWTBWeFluUndTVkJpZUc5TkNrNHJibTFJUXl0Tk1qVjVTVXBTVW05b2RYcHBjM0JsTms5V1VrSjJOVVpyY2tWc2RtSXhNVk14VlRoMVoyMVNSMEYwVFZKYU56ZDNUbkIxYjNCMk5tTUtkVEp1TUhWM2RrazNibTF1VDNJNFZHRlBkMkkxUmtwdVdHZzJaVEp1VVdWTGJqWjVLMHhDYmpkUWVETlJWVmRDY0d0RWRGbDFVakYxVDI5eFJIbHZlUXB1WVUxSmVUazJXamhwY25Wa2QwdERRVkZGUVhkUGFpdEhkMXBYU1ZOWk9YTk1hbkZJYzBVeldrdGlNMDFvVDJaYWFVcGhUMk5JZW1WNWFsbHllbWs0Q2pNelUyTTJWMGhaVUU1VlRVSlROalF4UkdOU1lURk9UekpsUW10eVQxWk5SSGhaYTJGa2FEZFFXak5ZY0Vab1VFdHdOVTV1Y1VSTGFVMW5SbUZJU0dFS2JYZzBjQzlrUVRGdlRrdFFRbVV5V2tKd2JtOVlVblZHTkhWTGVGZDNiMHN5WkhSb04yWnpaa3hUZEZaV2RGSnRObXhzTDNnMFIzRmxUVWhOYzFGdWNncHJhbEZYY1ZoWWVWaFlVM2MwV0dWdGF6VkRVSFI0VTBObk9YaElNMjAyVDI5RlRXd3pZa3RFWVVOMFprNXVNR3RoTTBVM1VUVm5kbmxMUTFsdmFXSjZDbGwxTldaS05YUklUamx0UzNsT2REZFhWM1JzWTNWbmQxbGljSFYxVFdWTVFXaGFSM042ZVZjeGEwTlRWa3BXUlUxU1FVdFlSR1ozVGs0NVUybGphbG9LTTBNdlNIQjBNbk5NYms4eWJGSmtjVE5MVEhCdWJITk1WVlI2ZVU1WGJVTkpWSHB4T1U5TVZISjNTME5CVVVGbE5XeEVla2xqTDJvMFYzRTBWamRYYkFwaU9IaFZUMlZ3VDAxek5tNUhXQ3RzU0dwQ2JDOXpLMlEzYVVoTGQxQlVObEpYVUhkeWVrMUNjU3QxY3psQ1Iyd3JjVVJ4U1ZBMmVFOXJSRGxxVEVnM0NtbHFLMnN3Wm5GUUsweFpXV1J4TURndmRUVjNjMVZsVkVWaVMyWjFURFl3VDBaallqQmljMHR2VjNwRFpUTndTV3Q1YVdsek5ucHpiM0pGTTBaNFpHSUtZWFZ1VjNZNWFsbDNlSE5YVkU1NVVGazNTemRXY1M5VE9VZHBaQ3QyZUhoYWRHNTBjSGN6TjNsQ1JYTlpiMHM0YTNCT2J6QnVaV2x2YWpsSWRGbE9UZ3BDV1hOclZreHBkMjh4Y1RScVUxaFNaWEF5V1cxc1ZpOHhRazFRVHpsVVYyRmtZVlZrTDFRNVpXVlNVMGg2TkRKUmRVd3hRbEphWnpob1FuUlpNbGhZQ25SbmMxaEVkbFE1TUU5NmJubGlZVFUwUzFwMVNreE1TMEpPU0dORGJEZFRXRkF4Y0dwSVQxUnZRVEYxWlRabVpWUTViVEF3U0ZkYWN6TmxRbEZYUld3S1JtMVdMMEZ2U1VKQlNHNVBXa040YVU5ME5HaHFSa0poTkdoR1lsSlJUemN6Vm1Zd1VtWkRlV1pwTHpoQ1ExcGxObnB5ZDFreWJtYzRkbUl4TDJocGFncEhWSHB2WmtoSllUa3haa05QV1dGbVFteExXbFZuV1hkdUwzUndXWEF2VFZjME16ZzJUR1p5VkhVeE4ySTBZMmRpVkVjcmRXZzJOVEZDTDJOaFVrSk5Da0V4ZW13MGJuSnNhMWN2UVRScVFWcHVXWHA2WTFacFVVTnRlU3MxVEdWaWNHWXpNbXBoYTNCeEswbHZVVXREVWtab1RYWlNWbmxEYjFaRFRrWmxWRzBLZFc4d1ZFSk5ORzFQUjJsTlptTkRUM2hhTlhkU2IxSjRRV0ZpVkdka0szcHBlVWxZYzBob1lTOWxWek5aVjNsWU5IVm9ORWRpVURncldEVkVjMHAwVndwT1EybFNWbGhvYm5SS00zbGxRMGwwUjNBMU15dEtSSFo1WlV0QmRtMXJORk50TURNNWRDOVlNV2RNVjIwd2FETlFiVWRpZG1SM2JrZDZVMFYzWVZKMkNrVm1iR1l5VDNwS2RsTk9kRXd4T0hwVlYyaHBXRE5XYmxKeFFYSXpVMk5EWjJkRlFVNW5WREZzUWxkblEzQTFiR2hKT1RKaldUZHBlRXQyZW5NdmVua0tiVVI1VWxVd1NWQkVOVFZJZUZCTk5GZFVhbE01TkZCeWFHRXJRM2w1Vm1veVRFZzVSVmtyTUd4VEx6QmtVVTFRTTBjMVNHNDJVVXRySzNwRk5XTlBiQXBpTWs1TFdXdEZUVE5CUnl0T1duQnphSFpaTm1OMFdtSmFhMFV2VWpWMVRIcDJORU5MWXpWSFQxWk1iMjF0VVc5RlVWZzBjRVV2T1hSM2MxbDVRMGhwQ2s5SmFEUnJZemhCYjFZdlVrNU5kbElyY25seFVrTlNkMFJ4U0RWaVFscEZVREEwTkZGeGNWRXZaM1Z0V21GQ2FqZE1TMUJtZHpaSlIwOUJORTFrWTJrS05YTXZhRk5qVW1VMVdVMHpWV0UxZUV4aFZscGlWamRHZVVVelNWVXpWeTltYW1SVlQzaDZhbTh5YlhoV2Nub3ZLemg2TDBsc2MyRkJiMGhQZEUxMU53bzBMMDh5VkhSTlJUTmtiVGtyZDBOMFJEbFlVbmwxVWxGeVVUSkhjVzA0TVcxellUWlVhM0JhT0VWdlZEUmhjMHc1YmtwYWEwRTJSMk5uUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAyMEFKZnF4T0RDQ3F6OTVUeFMxdVVGMnNmUVQ5bnd0V3pIQkZDTVVyQW5yTldlOUI3c3JTaklSUVVmN3pEMm03c1o5T1lqUFNyWmxMTGM0Q21GaXppN1l4M3c3aHMxSEM2NFdPQmtDM1BBcVJmYW9aRHVzajRIdlUxbndWdjRLUQo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '241' + - '12912' content-type: - application/json date: - - Tue, 14 Jan 2020 01:25:25 GMT + - Thu, 12 Sep 2019 02:10:53 GMT expires: - '-1' pragma: @@ -1726,62 +1634,54 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1175' + - '1199' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks get-credentials Connection: - keep-alive Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n -f User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\"\ + ,\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VWNGVrTkRRWEVyWjBGM1NVSkJaMGxSU1d3MlEwMXVZbmhDV0U0eWFXdzVUVmw2VEVSNGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjRUMVJCTlUxVVNYZE5WRlY2VFdwU1lVWjNNREJQVkVFMVRVUlJkMDFxUVhwTmFsSmhUVUV3ZUFwRGVrRktRbWRPVmtKQlRWUkJiVTVvVFVsSlEwbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVVVkdRVUZQUTBGbk9FRk5TVWxEUTJkTFEwRm5SVUY0UVhkc0NrVmtiMjVaY0dwYWJEUkRWRlZIUVd0SlRYSktNR3hzVTBwMFprRTVTVlp5TkV3MWRFTlVUbE5pVDNWNlVTOXdNemhuU0dZdk5GUk1TbTF0UVVsclJtMEtZazEzYjAxNmJFTmhRV05oTXpWQ2NHTkRUbWRYTUROb1JHRllkbGx4UzI5NWJHUlRWV1pOWW5GbWFWaDFXRk53V2tWVGNrNXdXazVrUnl0bllqa3ZlQXA1T1d0bE9UQTVVMDh4V0ZKbGMyOVdNVXBRTUV0aFNqbGhTakV2TkRSclRsZExNbU4yYVV4VWVscGpja1J0TUVaa1EwRTNibmN2TUROdVdVWXhRMmxpQ25oV09FRk5kalJVWTFCUlVFRmhOWGRKV1U5SE4waE5kVkZrY21GTlNVMUtaMHBuYzA0MWF6Sm1RMmQ2WlZGQlQzbHNZbXBpUkhNd1FtZEpaRXRWY1VvS1pUTlNORlpYYkc4MU1Dc3dSVVpaV1M5UmRDOWtaMVp2UlhKRFRtbE9kQ3Q0UW1kUGJVUk9hMFJNWTNGcU1GQldZemhFVlVvck9UaDBZblpEYTJKeFRBcDNkMFZFTW5oRFRXNHZXRTFqYWtwNVFVd3laWGQ0UW1kQ01HdHlNMWhsVVdzd1dWUkxWemRzY0Rnd1UycDBUa0ZQYTI5NFRIcEdLMnc1T1ZOUmVFVjFDbVZTYkVWWGJqUlNSM0J0ZUhOc1VURkRiamgzZW5JeWIzVldlR3RxTldWeGVXNXhWM1pFS3pWeWVFTTNWRkI2Y2k5eVRuRTNSV3BxVERWWGJtaEtRakVLTlROQk16Y3lNRVJrZUdSME5VRlVWWE5DTmxGblFUVTNUV0kzTUVOU1JURTRVVTlQVm01SlkwUlRNSGhDZFZsQ2NVVlJURXhKT0hCVVVrb3hkWE5oV1FwTGEydGpOM0pFTDIxVlZubHdibkpxSzBaUFIxbG9ibkpqZUhkNkwzQkljVTlTVTNWcE1HRkVWV0ZMY3pCMlVWaDRaMDlEUTJ4R1duSktObE5EYW5CU0Nua3dTREJyU20xcWRWY3ZMeXRxTVd4MGVEQjRkVVIxVmpRNWQwZEZNRGt6ZFZwNlVYUTFWbVE0Y1hrMVVrZFJaemxZV2tVeFl5OUhXRVZrWjB0U1owTUtWMnhEVldocWQyTlJOV1F6YjNrMVlVUnJVM2hDUjNOWlEwSXJSR2hQZVhCQ05YTjNSR0V3UTBGM1JVRkJZVTFxVFVORmQwUm5XVVJXVWpCUVFWRklMd3BDUVZGRVFXZExhMDFCT0VkQk1WVmtSWGRGUWk5M1VVWk5RVTFDUVdZNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1JVZExWbUpIQ2xNNWJ6UjNTM1l4TDJJMVIxYzBORWNyU1hWTlVEaG1NSGhsUnl0c1ZHMVhXbTFLTVZNNE0yY3ZLMGxJWlhaSU5Fc3daR013UVhCWlVqRXhaWGg1VW1NS2RtZzRNVGh5T0VGdFQzaHhObE5RU2tOalJteDBlbWhwUVZGQksyUlhUblpaYW5KQ2RrdHRlbVpuTUZWTllqSXlaMGw1T0RKWGVYTlVlamt2Wml0MFp3cFlURmswUkM5dVEybDJTR3AwZDB4a1RXWkpPV3RGVGxvMVZpOVlObkpSVFZKdFNFNUxlazVQZDFaaGMyUTBablp3UzFkS09GQldhaTlEWjBKamRXMWFDakZrUkU1MlRuWkNiV2hwVERkSGJGaDVLM2RTTVZWa1dGVnlhemxDTlVGQ01EWkNOVUUwZVhSS056QlFabWhsYUZOS0swNDNOelEwVmxJcmMyWm9MMllLWWtaVFVtcFNLM3BOUjJSR2JVOUZkVEV6UlhSbmNVOUplREIzWm01SWVteENPVXRZV1hKcGFqaDRRM05OVEhoYWFGaFNUMGx4VjJ4eGIwRmFRMk12TndwV09EZE9aSFZUYVRFMVEydG1NVVIyUW5JNFFtSlhiblIzYTNCdWNqQjVPWGRzUVZWVFIyWmFRMjh5UTFsc2JWSlNPSFJ5ZVV0aGNIbE9iSEpoU0ZsV0NqRXpOR2RIWjNrdlFtazFOME5LYTJoWU1IaDVOMDl6YUdwQ05uSkpSWEJyWkhKcGEwOVFOa3cxVUdNeVFVaFRZVEZEVGxadlRUWnpWelJyWVZSa1VuQUtVbmxQV2s5Q2VWUm1ZMk53VEVoQ05IazJPR2h3YldsT2NubzRMemd6TkVWU1JVVkhPVXRJVVhGM1UxcGxhbXN2TVVoelUwcHBOR3BZV0djd1NFcHZiQXBqU1ZnemQyUlpZalJ6VERGS1pWUXdaR00wUjB0aGQwMXFkRUpWYW1jMk9XWkJZUzlJYW05S1pVcHphRTFCV0dkMGEydElPR1Y0YURGQmFtRm9TemhzQ2tGcFZHeGtXQzlWVVZWa2RHcHJSRVY2ZFVkb01VWnpkblJaUmtjdlIwZFdXbTVtTTJGbVNub3dVRlpDYUZVMFRtWlBSRU13TVVkbUsxRlRjVmhIYmtJS2FIUkdhSEZ3ZGpOU2QzWlBVVGwxVGpWTGQxbExNa2RGUm5JcldsaG1iMWR2Ym10ckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2txcTRlemItNzFmNjRlODYuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG50dTZhMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG50dTZhMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIG5hbWU6IGNsaWFrc3Rlc3RudHU2YTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bnR1NmEyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVVXZSRU5EUVhWVFowRjNTVUpCWjBsUlVtaElPRGxvVlZoV01ESlVLMVJQZUUxNkwyVTRla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI0VDFSQk5VMVVTWGROVkZWNlRXcFNZVVozTUhsTlZFRTFUVlJGZDAxcVFYcE5hbEpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjBlVTlIY0U1MFR6bGFOa2hQVldseGNHRnFka1VLVkhGUFJGbFZablZQYmtnd1dtZHRXa0pOVkRoNFlpc3pVMGhtVW1kVmNXdDRSelExVGpkSVJ6TkZTREJ5THpKMlNHZGlSR3N5UldFeGFWQXJVbmwwVlFvMGMwOUthbU4wZVhCUVIxSnRkVVpTVERNNU56ZEhkaTh3UWxCMmIzZHRSRFZpZDJsUVp6QTFZMFp1ZGpaWFdtSTRXbUZ6WmtremJGQXllblJJWW5KVkNuUkVVR29yY0V0V05Fc3ZZbWh5U0hWbVJETXdjaXRJYld0U0swUjVPV3hPV0hkc1ptVlBURXRXU25wSGFEUm1kRTFCYkhOWWRHUk5PVXh0ZFRCUWNETUtibmhVVjJ0UlFXNTFMemR4T1VKcVFVVkVZV3BIUkUwNWFGWkdNVEUwT1V0MlZHaDNjemd4T1RadVEzQlJVbEJwUmtZeUwzVk1TVkJ5S3poWFFXSm9WQXBIYkVOV05GbHpPRUpRYzBGQ2NVSkhSbHByYUd3NWIxVXJUbWN5ZEdrMFFVdGpOM0JtVEhOcU1IaFlTakpwUkVkQ0wwbzFlVTUyS3l0SlpqUlphRmMwQ2l0MFluUklTMFpxZGtWRGJ6UnhXVkF3UVZScU1pdENWMXBpYzBVeVpHNTZlV2RHYTNGRkwyUjBWbk5NVEZwdWFGRnpXRkpxTTFkWFkyUmpVWGd6ZFdVS2RVNWFWek0yZVZKVFNUZ3piVTFqYm1kdFpUSlhiVGRCUTNWeFZ6SkxkR3R6ZDNRdmFtWXJSSHB4TUZSUVIxSnVlREU1ZWpSMFdTOVBNR2N2Um1aeVJBcDZkSHBNV201MVl6aHRkMXBPZUdSaVFXSXdhVE5XTjNGU1JIaFZjV0k1WW5SRU1HeG9PRzU1YWxRNVdXMU9VSGRDV21aR1dGSXZUV2xJYUV3dlIwdDJDbkp3TmpWa1QzaFpjV1pOYmxCNlprMXNTMjlXT0U1b2MxbzJjRWxuTVVad2NUWkVUQ3RYUVRkbWJ6WmtlSFpwYUhvNVlsY3lURXBQTkV4SVJXSktXWG9LUjFoTlIwaDRXVko2VDJweWMzWnNibmxqY1hWbU5raG1hM2RPSzNOMloyVkhXalZKWVhsUGQxTkVNVkpHYjNFck1XdDVkMWxuYldwMWRHTjJZakJHTXdwcGVXeDFOREZsYms5elNHaENOUzlNTTNaTldWZFJTVVJCVVVGQ2IzcFZkMDE2UVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRUtSMkUxYlVOTVpHWjNWVk5RTUVSTE9WcGxTR2REUm01MVlXczNibWt4Wkc1MVoyVnFOMmxxZVhOMGIyeE1MekJHTTNkTWJtUmthM1ZGYTJKNk4xUmlNUW93ZWtSNU5VNHpVM1IzU2xkUk5FZDJaR1ZFUkZCWlRsZGpXRVZTU0dOWk1saHliSGxxUTBVeWNDczNSM05sUzBGYVJVZzVZbWhFTTFWNldEaDBUR2xpQ2tNdllVeGtXazlJVlhwV2F6SkNla3BSTmxoamRGTTJZMDFxUlZKbFkzUk5iV3BUV0ZJd1IzbG9MMlU0UXpnd2RVOVhZbmhoUkVGNldTOXdUSHBRVEdRS2JrMXlWRWhrWWxsMGJtMUhObmc0YlVSbFVsWnZaVU5TVGxnM056QlpTMFZ6YUZWWmFDODJSak4wZUVkTVYzTm5WR05SU1V4VVMzYzNlV1VyUm5ad05RcEhNbmMyT0VORFRreHVOWFJvYUU0d1JuZ3pWblozT1VsaU9YaHJkamRxVUdzdlYzSjZLMFp3YWs0MmVYbzBabkZFY25RMlNWZzRaVlJqVDBRNWQyWjNDblpVYVVGTFUxSTNNMHBXZEhwV1VsWk1ZekpqT1ZWU1NXcG5aMWczVEVWRFQyZFllbGhrY0dSaWQxVlBVWE53VkhWcE1YRnRkWGN5V1V3NE5uWmpXbkFLU0hCUE4yZElTamRDZEc0d2RERkNjVmwxU2sxMllUVkJRVEpKTXpkUGJ6Uk9WMWN5UjJsd2JYaDZXSHBaWkZobGRtaFFiazU2VlRCR1QyaDJXalV6WVFwWWFrMVFNRGRNT1M5UU1GbFFTVlV4WkRneU1IWkNWMnRLUW10Wkt6STBhakpTTjJOWFNtUXJUMmxxTjNaVldYWnBNMk5CZEZCa1NqbERNbTVEVFVOMUNrbFBTMkpJYUdkaEszSmhNM0JWY3pOblNrOTBibWhEWmk5RVdtRkhRM2hqZW5Ca1RtTlFOWGQwVWxkeU5Fd3lRVWhTVW5sTUsyY3ZTek55ZURWc1lYRUtSR3RzWW1OSWFrbGlabGRDUWxvcmFqSm1ORVpyUjBWT1IwRmxTM0ZzTUhGbEwycEtVMDVqVmpNd1VEQk5WR0UxUmxWMFVteFhUekZEVkd4SFptZHJPQW93ZG5OcWNrMHpXV2hYYXpBdk5FZHZiekUyVEZoallubEVLMnBJZDBWTWMyMXVZMDlqWlRRcmIwZzRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJjbU5xYUhGVVlsUjJWMlZvZW14SmNYRlhiemQ0UlRacVp6SkdTRGRxY0hnNVIxbEtiVkZVUlM5TlZ5OTBNR2d6Q2pCWlJrdHdUVkoxVDFSbGVIaDBlRUk1U3k4NWNuZzBSM2MxVG1oSGRGbHFMMnRqY2xaUFRFUnBXVE5NWTNGVWVHdGFjbWhWVXprdlpTdDRjaTg1UVZRS056Wk5TbWNyVnpoSmFqUk9UMWhDV2pjcmJHMVhMMGRYY2toNVRqVlVPWE0zVWpJMk1VeFJlalF2Y1ZOc1pVTjJNalJoZURkdWR6azVTeTlvTlhCRlpncG5PSFphVkZZNFNsZ3phbWw1YkZOamVHOWxTRGRVUVVwaVJqZFlWRkJUTlhKMFJEWmtOVGhWTVhCRlFVbzNkaXMyZGxGWmQwSkJNbTk0WjNwUVdWWlNDbVJrWlZCVGNqQTBZMHhRVG1abGNIZHhWVVZVTkdoU1pIWTNhWGxFTmk5MlJtZEhORlY0Y0ZGc1pVZE1VRUZVTjBGQllXZFNhRmRhU1ZwbVlVWlFhbGtLVG5KWmRVRkRiazgyV0hrM1NUbE5WbmxrYjJkNFoyWjVaV05xWWk5MmFVZ3JSMGxXZFZCeVZ6ZFNlV2haTjNoQmNVOUxiVVE1UVVVME9YWm5WbTFYTndwQ1RtNWFPRGh2UWxwTGFGQXpZbFppUTNreVdqUlZURVl3V1RreGJHNUlXRVZOWkRkdWNtcFhWblFyYzJ0VmFWQk9OV3BJU2pSS2JuUnNjSFYzUVhKeENteDBhWEphVEUxTVpqUXpMMmM0Tm5SRmVuaHJXamhrWm1NclRGZFFlblJKVUhoWU5uYzROMk41TWxvM2JsQktjMGRVWTFoWGQwYzVTWFF4WlRaclVUZ0tWa3R0TDFjM1VUbEtXV1pLT0c4d0wxZEthbFE0UVZkWWVGWXdabnBKYURSVEwzaHBjalkyWlhWWVZITlhTMjU2U25vNE0zcEtVM0ZHWmtSWllrZGxjUXBUU1U1U1lXRjFaM2t2YkdkUE16WlBibU5pTkc5akwxY3hkR2w1VkhWRGVIaEhlVmROZUd4NlFtZzRWMFZqZW04Mk4wdzFXamh1UzNKdUsyZ3pOVTFFQ21aeVREUklhRzFsVTBkemFuTkZaemxWVW1GTGRuUmFUWE5IU1Vwdk4zSllUREk1UW1RMGMzQmlkVTVZY0hweVFqUlJaV1o1T1RkNlIwWnJRMEYzUlVFS1FWRkxRMEZuUW1aMlRFeFZhbUZtU1ZORVkxUmxjVU5YUWtSbk5IaFViUzlRZGtKd2FGUnJVamh6VTBkNkswaFdablowUnpsV01VMTRXRlpvYmk5Vk5RcEJSREp1TVRrNVpEbFVXa1ZMY2pVdlREaHVia0oxUmpsVE5tWk1ZemhHVmtob1FtVmpRUzlGY25oYVFuRXpSVWg2UVRoVVRtOWFSa1puVVM4M1YyWm1DbFpXTDJweVRXeG1TMkV5UTB0WE1XZFRTak5FUmxaWWEzRjFVWEZIWW5kalpFRlpaRWN4VEVkR1ZWbG5iemhHWkRoNVlqTTFhWElyWVVkaGJVRlNNR2NLZHpJdmRFWjJMMjVRZGt4aE9FRlFRVGs1TmxWUWNESnpaVTlSUXpCc2FXZGxMMFZvT0hGa1ZYVklVMHRIYlZJdlNrOHpWbXB2VWpVM2RUWTFkR1JTU3dwQmExQkxaMnRVWldWVlQwTTBUVlpyZDFaTlZ6UlZNVTVUYkZaS1RYTTBRMUVyV2pSbmFWaHJkR05JUmpKc1FYQXJXVmhwTVRsUlJrVkJaak5tZUVSSENrRkVhalJYTW1zNVkycFdjalI1VkhCbmIxaDJlVTl5WmtsMWJtcDJURzFKYm1sbU4yWkJkVFpUTjJ3eU5VdDRWbU41Y1U5b1ZtMVhObFZhV1ZBclJVSUtUMDlPYldOQ1ltbGlObmN4VWpFNFl5OVZiRWt3VnpoRVNFWm9aUzg0SzJWR1RIYzFWVkU1U1RWdlJrdFVRMFJJTVhoVU1uRm5ibGg0YUdNMVRHSTRkZ3BWUW5FNWJHeFFjR3R3Ym1Od1NVSXhlbWRDWW5SMGRVdDRWVnBpUlVGMGRuaHNXRFpqWms4M0swSnJTakZyYkVvME1VOUNjRGRNUlVGQ1dUUk9kSEpvQ2pCT1lYRldjM2wyT1VKTFltTnpXVFJHVURWdWJrTlhjVmhEUVV3NE9UZENjRkUzY2twdlYzRnZaa0ZFWkhCNVNUbExWVFl3WVM5clZuVXJOMVZhT1RVS01EZEJkVUZyVVd4S2JsY3ZRMDkxTHpsUk9HOUNiSFJ1V2poQ1kyeFVWMjFIVWxCWFZYcHNOQ3RGTlZJcmIwdEpSR1Z5UWtGaFdsWlNNbk5XVFhOb1NRcHFVbEZGWTI1aFMxUTRTM1ZsVjFONE1GTjNUV3BKYUV3NE4yTktZbXQ2YTJkbldVNVZVMVJOT0c0Mk9IVm5VbFp2VVV0RFFWRkZRVFZ3Tm0xdlNtOUdDbEJTTWswMVRVUjNia2Q0YWtnM1MwZFRWRlp1TUVkNmFERXZOeXR2Y0dwbVJ6RTBMMFJ1VUROWFVrNXJkVzg1UVhoeE5YZERUbkl5YUhOSVdGRTVZV2NLU0hCVGR6VnNNVmRTWlhKMFZpOUpOSEpJVURVeWIyWmFTMFpOYUZoelZtaEllVlIwTUdadlVYQldWWGxsUmtGNWRsQXdibWRFU2tsdFJHMXJjalpJUkFwcE1FYzRNSEoxYkhOcWJYbzVVR2dyTlZSVVRFVlpWV041UkhnekswSjVURE54WldaU01reG1aMVJtZEZCV1lsZDBjRGhKWTBWeFluUndTVkJpZUc5TkNrNHJibTFJUXl0Tk1qVjVTVXBTVW05b2RYcHBjM0JsTms5V1VrSjJOVVpyY2tWc2RtSXhNVk14VlRoMVoyMVNSMEYwVFZKYU56ZDNUbkIxYjNCMk5tTUtkVEp1TUhWM2RrazNibTF1VDNJNFZHRlBkMkkxUmtwdVdHZzJaVEp1VVdWTGJqWjVLMHhDYmpkUWVETlJWVmRDY0d0RWRGbDFVakYxVDI5eFJIbHZlUXB1WVUxSmVUazJXamhwY25Wa2QwdERRVkZGUVhkUGFpdEhkMXBYU1ZOWk9YTk1hbkZJYzBVeldrdGlNMDFvVDJaYWFVcGhUMk5JZW1WNWFsbHllbWs0Q2pNelUyTTJWMGhaVUU1VlRVSlROalF4UkdOU1lURk9UekpsUW10eVQxWk5SSGhaYTJGa2FEZFFXak5ZY0Vab1VFdHdOVTV1Y1VSTGFVMW5SbUZJU0dFS2JYZzBjQzlrUVRGdlRrdFFRbVV5V2tKd2JtOVlVblZHTkhWTGVGZDNiMHN5WkhSb04yWnpaa3hUZEZaV2RGSnRObXhzTDNnMFIzRmxUVWhOYzFGdWNncHJhbEZYY1ZoWWVWaFlVM2MwV0dWdGF6VkRVSFI0VTBObk9YaElNMjAyVDI5RlRXd3pZa3RFWVVOMFprNXVNR3RoTTBVM1VUVm5kbmxMUTFsdmFXSjZDbGwxTldaS05YUklUamx0UzNsT2REZFhWM1JzWTNWbmQxbGljSFYxVFdWTVFXaGFSM042ZVZjeGEwTlRWa3BXUlUxU1FVdFlSR1ozVGs0NVUybGphbG9LTTBNdlNIQjBNbk5NYms4eWJGSmtjVE5MVEhCdWJITk1WVlI2ZVU1WGJVTkpWSHB4T1U5TVZISjNTME5CVVVGbE5XeEVla2xqTDJvMFYzRTBWamRYYkFwaU9IaFZUMlZ3VDAxek5tNUhXQ3RzU0dwQ2JDOXpLMlEzYVVoTGQxQlVObEpYVUhkeWVrMUNjU3QxY3psQ1Iyd3JjVVJ4U1ZBMmVFOXJSRGxxVEVnM0NtbHFLMnN3Wm5GUUsweFpXV1J4TURndmRUVjNjMVZsVkVWaVMyWjFURFl3VDBaallqQmljMHR2VjNwRFpUTndTV3Q1YVdsek5ucHpiM0pGTTBaNFpHSUtZWFZ1VjNZNWFsbDNlSE5YVkU1NVVGazNTemRXY1M5VE9VZHBaQ3QyZUhoYWRHNTBjSGN6TjNsQ1JYTlpiMHM0YTNCT2J6QnVaV2x2YWpsSWRGbE9UZ3BDV1hOclZreHBkMjh4Y1RScVUxaFNaWEF5V1cxc1ZpOHhRazFRVHpsVVYyRmtZVlZrTDFRNVpXVlNVMGg2TkRKUmRVd3hRbEphWnpob1FuUlpNbGhZQ25SbmMxaEVkbFE1TUU5NmJubGlZVFUwUzFwMVNreE1TMEpPU0dORGJEZFRXRkF4Y0dwSVQxUnZRVEYxWlRabVpWUTViVEF3U0ZkYWN6TmxRbEZYUld3S1JtMVdMMEZ2U1VKQlNHNVBXa040YVU5ME5HaHFSa0poTkdoR1lsSlJUemN6Vm1Zd1VtWkRlV1pwTHpoQ1ExcGxObnB5ZDFreWJtYzRkbUl4TDJocGFncEhWSHB2WmtoSllUa3haa05QV1dGbVFteExXbFZuV1hkdUwzUndXWEF2VFZjME16ZzJUR1p5VkhVeE4ySTBZMmRpVkVjcmRXZzJOVEZDTDJOaFVrSk5Da0V4ZW13MGJuSnNhMWN2UVRScVFWcHVXWHA2WTFacFVVTnRlU3MxVEdWaWNHWXpNbXBoYTNCeEswbHZVVXREVWtab1RYWlNWbmxEYjFaRFRrWmxWRzBLZFc4d1ZFSk5ORzFQUjJsTlptTkRUM2hhTlhkU2IxSjRRV0ZpVkdka0szcHBlVWxZYzBob1lTOWxWek5aVjNsWU5IVm9ORWRpVURncldEVkVjMHAwVndwT1EybFNWbGhvYm5SS00zbGxRMGwwUjNBMU15dEtSSFo1WlV0QmRtMXJORk50TURNNWRDOVlNV2RNVjIwd2FETlFiVWRpZG1SM2JrZDZVMFYzWVZKMkNrVm1iR1l5VDNwS2RsTk9kRXd4T0hwVlYyaHBXRE5XYmxKeFFYSXpVMk5EWjJkRlFVNW5WREZzUWxkblEzQTFiR2hKT1RKaldUZHBlRXQyZW5NdmVua0tiVVI1VWxVd1NWQkVOVFZJZUZCTk5GZFVhbE01TkZCeWFHRXJRM2w1Vm1veVRFZzVSVmtyTUd4VEx6QmtVVTFRTTBjMVNHNDJVVXRySzNwRk5XTlBiQXBpTWs1TFdXdEZUVE5CUnl0T1duQnphSFpaTm1OMFdtSmFhMFV2VWpWMVRIcDJORU5MWXpWSFQxWk1iMjF0VVc5RlVWZzBjRVV2T1hSM2MxbDVRMGhwQ2s5SmFEUnJZemhCYjFZdlVrNU5kbElyY25seFVrTlNkMFJ4U0RWaVFscEZVREEwTkZGeGNWRXZaM1Z0V21GQ2FqZE1TMUJtZHpaSlIwOUJORTFrWTJrS05YTXZhRk5qVW1VMVdVMHpWV0UxZUV4aFZscGlWamRHZVVVelNWVXpWeTltYW1SVlQzaDZhbTh5YlhoV2Nub3ZLemg2TDBsc2MyRkJiMGhQZEUxMU53bzBMMDh5VkhSTlJUTmtiVGtyZDBOMFJEbFlVbmwxVWxGeVVUSkhjVzA0TVcxellUWlVhM0JhT0VWdlZEUmhjMHc1YmtwYWEwRTJSMk5uUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAyMEFKZnF4T0RDQ3F6OTVUeFMxdVVGMnNmUVQ5bnd0V3pIQkZDTVVyQW5yTldlOUI3c3JTaklSUVVmN3pEMm03c1o5T1lqUFNyWmxMTGM0Q21GaXppN1l4M3c3aHMxSEM2NFdPQmtDM1BBcVJmYW9aRHVzajRIdlUxbndWdjRLUQo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '241' + - '12912' content-type: - application/json date: - - Tue, 14 Jan 2020 01:25:34 GMT + - Thu, 12 Sep 2019 02:10:54 GMT expires: - '-1' pragma: @@ -1790,62 +1690,54 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1174' + - '1199' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks get-credentials Connection: - keep-alive Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n -f User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\"\ + ,\n \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VWNGVrTkRRWEVyWjBGM1NVSkJaMGxSU1d3MlEwMXVZbmhDV0U0eWFXdzVUVmw2VEVSNGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjRUMVJCTlUxVVNYZE5WRlY2VFdwU1lVWjNNREJQVkVFMVRVUlJkMDFxUVhwTmFsSmhUVUV3ZUFwRGVrRktRbWRPVmtKQlRWUkJiVTVvVFVsSlEwbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVVVkdRVUZQUTBGbk9FRk5TVWxEUTJkTFEwRm5SVUY0UVhkc0NrVmtiMjVaY0dwYWJEUkRWRlZIUVd0SlRYSktNR3hzVTBwMFprRTVTVlp5TkV3MWRFTlVUbE5pVDNWNlVTOXdNemhuU0dZdk5GUk1TbTF0UVVsclJtMEtZazEzYjAxNmJFTmhRV05oTXpWQ2NHTkRUbWRYTUROb1JHRllkbGx4UzI5NWJHUlRWV1pOWW5GbWFWaDFXRk53V2tWVGNrNXdXazVrUnl0bllqa3ZlQXA1T1d0bE9UQTVVMDh4V0ZKbGMyOVdNVXBRTUV0aFNqbGhTakV2TkRSclRsZExNbU4yYVV4VWVscGpja1J0TUVaa1EwRTNibmN2TUROdVdVWXhRMmxpQ25oV09FRk5kalJVWTFCUlVFRmhOWGRKV1U5SE4waE5kVkZrY21GTlNVMUtaMHBuYzA0MWF6Sm1RMmQ2WlZGQlQzbHNZbXBpUkhNd1FtZEpaRXRWY1VvS1pUTlNORlpYYkc4MU1Dc3dSVVpaV1M5UmRDOWtaMVp2UlhKRFRtbE9kQ3Q0UW1kUGJVUk9hMFJNWTNGcU1GQldZemhFVlVvck9UaDBZblpEYTJKeFRBcDNkMFZFTW5oRFRXNHZXRTFqYWtwNVFVd3laWGQ0UW1kQ01HdHlNMWhsVVdzd1dWUkxWemRzY0Rnd1UycDBUa0ZQYTI5NFRIcEdLMnc1T1ZOUmVFVjFDbVZTYkVWWGJqUlNSM0J0ZUhOc1VURkRiamgzZW5JeWIzVldlR3RxTldWeGVXNXhWM1pFS3pWeWVFTTNWRkI2Y2k5eVRuRTNSV3BxVERWWGJtaEtRakVLTlROQk16Y3lNRVJrZUdSME5VRlVWWE5DTmxGblFUVTNUV0kzTUVOU1JURTRVVTlQVm01SlkwUlRNSGhDZFZsQ2NVVlJURXhKT0hCVVVrb3hkWE5oV1FwTGEydGpOM0pFTDIxVlZubHdibkpxSzBaUFIxbG9ibkpqZUhkNkwzQkljVTlTVTNWcE1HRkVWV0ZMY3pCMlVWaDRaMDlEUTJ4R1duSktObE5EYW5CU0Nua3dTREJyU20xcWRWY3ZMeXRxTVd4MGVEQjRkVVIxVmpRNWQwZEZNRGt6ZFZwNlVYUTFWbVE0Y1hrMVVrZFJaemxZV2tVeFl5OUhXRVZrWjB0U1owTUtWMnhEVldocWQyTlJOV1F6YjNrMVlVUnJVM2hDUjNOWlEwSXJSR2hQZVhCQ05YTjNSR0V3UTBGM1JVRkJZVTFxVFVORmQwUm5XVVJXVWpCUVFWRklMd3BDUVZGRVFXZExhMDFCT0VkQk1WVmtSWGRGUWk5M1VVWk5RVTFDUVdZNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1JVZExWbUpIQ2xNNWJ6UjNTM1l4TDJJMVIxYzBORWNyU1hWTlVEaG1NSGhsUnl0c1ZHMVhXbTFLTVZNNE0yY3ZLMGxJWlhaSU5Fc3daR013UVhCWlVqRXhaWGg1VW1NS2RtZzRNVGh5T0VGdFQzaHhObE5RU2tOalJteDBlbWhwUVZGQksyUlhUblpaYW5KQ2RrdHRlbVpuTUZWTllqSXlaMGw1T0RKWGVYTlVlamt2Wml0MFp3cFlURmswUkM5dVEybDJTR3AwZDB4a1RXWkpPV3RGVGxvMVZpOVlObkpSVFZKdFNFNUxlazVQZDFaaGMyUTBablp3UzFkS09GQldhaTlEWjBKamRXMWFDakZrUkU1MlRuWkNiV2hwVERkSGJGaDVLM2RTTVZWa1dGVnlhemxDTlVGQ01EWkNOVUUwZVhSS056QlFabWhsYUZOS0swNDNOelEwVmxJcmMyWm9MMllLWWtaVFVtcFNLM3BOUjJSR2JVOUZkVEV6UlhSbmNVOUplREIzWm01SWVteENPVXRZV1hKcGFqaDRRM05OVEhoYWFGaFNUMGx4VjJ4eGIwRmFRMk12TndwV09EZE9aSFZUYVRFMVEydG1NVVIyUW5JNFFtSlhiblIzYTNCdWNqQjVPWGRzUVZWVFIyWmFRMjh5UTFsc2JWSlNPSFJ5ZVV0aGNIbE9iSEpoU0ZsV0NqRXpOR2RIWjNrdlFtazFOME5LYTJoWU1IaDVOMDl6YUdwQ05uSkpSWEJyWkhKcGEwOVFOa3cxVUdNeVFVaFRZVEZEVGxadlRUWnpWelJyWVZSa1VuQUtVbmxQV2s5Q2VWUm1ZMk53VEVoQ05IazJPR2h3YldsT2NubzRMemd6TkVWU1JVVkhPVXRJVVhGM1UxcGxhbXN2TVVoelUwcHBOR3BZV0djd1NFcHZiQXBqU1ZnemQyUlpZalJ6VERGS1pWUXdaR00wUjB0aGQwMXFkRUpWYW1jMk9XWkJZUzlJYW05S1pVcHphRTFCV0dkMGEydElPR1Y0YURGQmFtRm9TemhzQ2tGcFZHeGtXQzlWVVZWa2RHcHJSRVY2ZFVkb01VWnpkblJaUmtjdlIwZFdXbTVtTTJGbVNub3dVRlpDYUZVMFRtWlBSRU13TVVkbUsxRlRjVmhIYmtJS2FIUkdhSEZ3ZGpOU2QzWlBVVGwxVGpWTGQxbExNa2RGUm5JcldsaG1iMWR2Ym10ckNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2txcTRlemItNzFmNjRlODYuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG50dTZhMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG50dTZhMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIG5hbWU6IGNsaWFrc3Rlc3RudHU2YTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bnR1NmEyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHJzMjdnZGlpbzRfY2xpYWtzdGVzdG50dTZhMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVVXZSRU5EUVhWVFowRjNTVUpCWjBsUlVtaElPRGxvVlZoV01ESlVLMVJQZUUxNkwyVTRla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI0VDFSQk5VMVVTWGROVkZWNlRXcFNZVVozTUhsTlZFRTFUVlJGZDAxcVFYcE5hbEpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjBlVTlIY0U1MFR6bGFOa2hQVldseGNHRnFka1VLVkhGUFJGbFZablZQYmtnd1dtZHRXa0pOVkRoNFlpc3pVMGhtVW1kVmNXdDRSelExVGpkSVJ6TkZTREJ5THpKMlNHZGlSR3N5UldFeGFWQXJVbmwwVlFvMGMwOUthbU4wZVhCUVIxSnRkVVpTVERNNU56ZEhkaTh3UWxCMmIzZHRSRFZpZDJsUVp6QTFZMFp1ZGpaWFdtSTRXbUZ6WmtremJGQXllblJJWW5KVkNuUkVVR29yY0V0V05Fc3ZZbWh5U0hWbVJETXdjaXRJYld0U0swUjVPV3hPV0hkc1ptVlBURXRXU25wSGFEUm1kRTFCYkhOWWRHUk5PVXh0ZFRCUWNETUtibmhVVjJ0UlFXNTFMemR4T1VKcVFVVkVZV3BIUkUwNWFGWkdNVEUwT1V0MlZHaDNjemd4T1RadVEzQlJVbEJwUmtZeUwzVk1TVkJ5S3poWFFXSm9WQXBIYkVOV05GbHpPRUpRYzBGQ2NVSkhSbHByYUd3NWIxVXJUbWN5ZEdrMFFVdGpOM0JtVEhOcU1IaFlTakpwUkVkQ0wwbzFlVTUyS3l0SlpqUlphRmMwQ2l0MFluUklTMFpxZGtWRGJ6UnhXVkF3UVZScU1pdENWMXBpYzBVeVpHNTZlV2RHYTNGRkwyUjBWbk5NVEZwdWFGRnpXRkpxTTFkWFkyUmpVWGd6ZFdVS2RVNWFWek0yZVZKVFNUZ3piVTFqYm1kdFpUSlhiVGRCUTNWeFZ6SkxkR3R6ZDNRdmFtWXJSSHB4TUZSUVIxSnVlREU1ZWpSMFdTOVBNR2N2Um1aeVJBcDZkSHBNV201MVl6aHRkMXBPZUdSaVFXSXdhVE5XTjNGU1JIaFZjV0k1WW5SRU1HeG9PRzU1YWxRNVdXMU9VSGRDV21aR1dGSXZUV2xJYUV3dlIwdDJDbkp3TmpWa1QzaFpjV1pOYmxCNlprMXNTMjlXT0U1b2MxbzJjRWxuTVVad2NUWkVUQ3RYUVRkbWJ6WmtlSFpwYUhvNVlsY3lURXBQTkV4SVJXSktXWG9LUjFoTlIwaDRXVko2VDJweWMzWnNibmxqY1hWbU5raG1hM2RPSzNOMloyVkhXalZKWVhsUGQxTkVNVkpHYjNFck1XdDVkMWxuYldwMWRHTjJZakJHTXdwcGVXeDFOREZsYms5elNHaENOUzlNTTNaTldWZFJTVVJCVVVGQ2IzcFZkMDE2UVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRUtSMkUxYlVOTVpHWjNWVk5RTUVSTE9WcGxTR2REUm01MVlXczNibWt4Wkc1MVoyVnFOMmxxZVhOMGIyeE1MekJHTTNkTWJtUmthM1ZGYTJKNk4xUmlNUW93ZWtSNU5VNHpVM1IzU2xkUk5FZDJaR1ZFUkZCWlRsZGpXRVZTU0dOWk1saHliSGxxUTBVeWNDczNSM05sUzBGYVJVZzVZbWhFTTFWNldEaDBUR2xpQ2tNdllVeGtXazlJVlhwV2F6SkNla3BSTmxoamRGTTJZMDFxUlZKbFkzUk5iV3BUV0ZJd1IzbG9MMlU0UXpnd2RVOVhZbmhoUkVGNldTOXdUSHBRVEdRS2JrMXlWRWhrWWxsMGJtMUhObmc0YlVSbFVsWnZaVU5TVGxnM056QlpTMFZ6YUZWWmFDODJSak4wZUVkTVYzTm5WR05SU1V4VVMzYzNlV1VyUm5ad05RcEhNbmMyT0VORFRreHVOWFJvYUU0d1JuZ3pWblozT1VsaU9YaHJkamRxVUdzdlYzSjZLMFp3YWs0MmVYbzBabkZFY25RMlNWZzRaVlJqVDBRNWQyWjNDblpVYVVGTFUxSTNNMHBXZEhwV1VsWk1ZekpqT1ZWU1NXcG5aMWczVEVWRFQyZFllbGhrY0dSaWQxVlBVWE53VkhWcE1YRnRkWGN5V1V3NE5uWmpXbkFLU0hCUE4yZElTamRDZEc0d2RERkNjVmwxU2sxMllUVkJRVEpKTXpkUGJ6Uk9WMWN5UjJsd2JYaDZXSHBaWkZobGRtaFFiazU2VlRCR1QyaDJXalV6WVFwWWFrMVFNRGRNT1M5UU1GbFFTVlV4WkRneU1IWkNWMnRLUW10Wkt6STBhakpTTjJOWFNtUXJUMmxxTjNaVldYWnBNMk5CZEZCa1NqbERNbTVEVFVOMUNrbFBTMkpJYUdkaEszSmhNM0JWY3pOblNrOTBibWhEWmk5RVdtRkhRM2hqZW5Ca1RtTlFOWGQwVWxkeU5Fd3lRVWhTVW5sTUsyY3ZTek55ZURWc1lYRUtSR3RzWW1OSWFrbGlabGRDUWxvcmFqSm1ORVpyUjBWT1IwRmxTM0ZzTUhGbEwycEtVMDVqVmpNd1VEQk5WR0UxUmxWMFVteFhUekZEVkd4SFptZHJPQW93ZG5OcWNrMHpXV2hYYXpBdk5FZHZiekUyVEZoallubEVLMnBJZDBWTWMyMXVZMDlqWlRRcmIwZzRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJjbU5xYUhGVVlsUjJWMlZvZW14SmNYRlhiemQ0UlRacVp6SkdTRGRxY0hnNVIxbEtiVkZVUlM5TlZ5OTBNR2d6Q2pCWlJrdHdUVkoxVDFSbGVIaDBlRUk1U3k4NWNuZzBSM2MxVG1oSGRGbHFMMnRqY2xaUFRFUnBXVE5NWTNGVWVHdGFjbWhWVXprdlpTdDRjaTg1UVZRS056Wk5TbWNyVnpoSmFqUk9UMWhDV2pjcmJHMVhMMGRYY2toNVRqVlVPWE0zVWpJMk1VeFJlalF2Y1ZOc1pVTjJNalJoZURkdWR6azVTeTlvTlhCRlpncG5PSFphVkZZNFNsZ3phbWw1YkZOamVHOWxTRGRVUVVwaVJqZFlWRkJUTlhKMFJEWmtOVGhWTVhCRlFVbzNkaXMyZGxGWmQwSkJNbTk0WjNwUVdWWlNDbVJrWlZCVGNqQTBZMHhRVG1abGNIZHhWVVZVTkdoU1pIWTNhWGxFTmk5MlJtZEhORlY0Y0ZGc1pVZE1VRUZVTjBGQllXZFNhRmRhU1ZwbVlVWlFhbGtLVG5KWmRVRkRiazgyV0hrM1NUbE5WbmxrYjJkNFoyWjVaV05xWWk5MmFVZ3JSMGxXZFZCeVZ6ZFNlV2haTjNoQmNVOUxiVVE1UVVVME9YWm5WbTFYTndwQ1RtNWFPRGh2UWxwTGFGQXpZbFppUTNreVdqUlZURVl3V1RreGJHNUlXRVZOWkRkdWNtcFhWblFyYzJ0VmFWQk9OV3BJU2pSS2JuUnNjSFYzUVhKeENteDBhWEphVEUxTVpqUXpMMmM0Tm5SRmVuaHJXamhrWm1NclRGZFFlblJKVUhoWU5uYzROMk41TWxvM2JsQktjMGRVWTFoWGQwYzVTWFF4WlRaclVUZ0tWa3R0TDFjM1VUbEtXV1pLT0c4d0wxZEthbFE0UVZkWWVGWXdabnBKYURSVEwzaHBjalkyWlhWWVZITlhTMjU2U25vNE0zcEtVM0ZHWmtSWllrZGxjUXBUU1U1U1lXRjFaM2t2YkdkUE16WlBibU5pTkc5akwxY3hkR2w1VkhWRGVIaEhlVmROZUd4NlFtZzRWMFZqZW04Mk4wdzFXamh1UzNKdUsyZ3pOVTFFQ21aeVREUklhRzFsVTBkemFuTkZaemxWVW1GTGRuUmFUWE5IU1Vwdk4zSllUREk1UW1RMGMzQmlkVTVZY0hweVFqUlJaV1o1T1RkNlIwWnJRMEYzUlVFS1FWRkxRMEZuUW1aMlRFeFZhbUZtU1ZORVkxUmxjVU5YUWtSbk5IaFViUzlRZGtKd2FGUnJVamh6VTBkNkswaFdablowUnpsV01VMTRXRlpvYmk5Vk5RcEJSREp1TVRrNVpEbFVXa1ZMY2pVdlREaHVia0oxUmpsVE5tWk1ZemhHVmtob1FtVmpRUzlGY25oYVFuRXpSVWg2UVRoVVRtOWFSa1puVVM4M1YyWm1DbFpXTDJweVRXeG1TMkV5UTB0WE1XZFRTak5FUmxaWWEzRjFVWEZIWW5kalpFRlpaRWN4VEVkR1ZWbG5iemhHWkRoNVlqTTFhWElyWVVkaGJVRlNNR2NLZHpJdmRFWjJMMjVRZGt4aE9FRlFRVGs1TmxWUWNESnpaVTlSUXpCc2FXZGxMMFZvT0hGa1ZYVklVMHRIYlZJdlNrOHpWbXB2VWpVM2RUWTFkR1JTU3dwQmExQkxaMnRVWldWVlQwTTBUVlpyZDFaTlZ6UlZNVTVUYkZaS1RYTTBRMUVyV2pSbmFWaHJkR05JUmpKc1FYQXJXVmhwTVRsUlJrVkJaak5tZUVSSENrRkVhalJYTW1zNVkycFdjalI1VkhCbmIxaDJlVTl5WmtsMWJtcDJURzFKYm1sbU4yWkJkVFpUTjJ3eU5VdDRWbU41Y1U5b1ZtMVhObFZhV1ZBclJVSUtUMDlPYldOQ1ltbGlObmN4VWpFNFl5OVZiRWt3VnpoRVNFWm9aUzg0SzJWR1RIYzFWVkU1U1RWdlJrdFVRMFJJTVhoVU1uRm5ibGg0YUdNMVRHSTRkZ3BWUW5FNWJHeFFjR3R3Ym1Od1NVSXhlbWRDWW5SMGRVdDRWVnBpUlVGMGRuaHNXRFpqWms4M0swSnJTakZyYkVvME1VOUNjRGRNUlVGQ1dUUk9kSEpvQ2pCT1lYRldjM2wyT1VKTFltTnpXVFJHVURWdWJrTlhjVmhEUVV3NE9UZENjRkUzY2twdlYzRnZaa0ZFWkhCNVNUbExWVFl3WVM5clZuVXJOMVZhT1RVS01EZEJkVUZyVVd4S2JsY3ZRMDkxTHpsUk9HOUNiSFJ1V2poQ1kyeFVWMjFIVWxCWFZYcHNOQ3RGTlZJcmIwdEpSR1Z5UWtGaFdsWlNNbk5XVFhOb1NRcHFVbEZGWTI1aFMxUTRTM1ZsVjFONE1GTjNUV3BKYUV3NE4yTktZbXQ2YTJkbldVNVZVMVJOT0c0Mk9IVm5VbFp2VVV0RFFWRkZRVFZ3Tm0xdlNtOUdDbEJTTWswMVRVUjNia2Q0YWtnM1MwZFRWRlp1TUVkNmFERXZOeXR2Y0dwbVJ6RTBMMFJ1VUROWFVrNXJkVzg1UVhoeE5YZERUbkl5YUhOSVdGRTVZV2NLU0hCVGR6VnNNVmRTWlhKMFZpOUpOSEpJVURVeWIyWmFTMFpOYUZoelZtaEllVlIwTUdadlVYQldWWGxsUmtGNWRsQXdibWRFU2tsdFJHMXJjalpJUkFwcE1FYzRNSEoxYkhOcWJYbzVVR2dyTlZSVVRFVlpWV041UkhnekswSjVURE54WldaU01reG1aMVJtZEZCV1lsZDBjRGhKWTBWeFluUndTVkJpZUc5TkNrNHJibTFJUXl0Tk1qVjVTVXBTVW05b2RYcHBjM0JsTms5V1VrSjJOVVpyY2tWc2RtSXhNVk14VlRoMVoyMVNSMEYwVFZKYU56ZDNUbkIxYjNCMk5tTUtkVEp1TUhWM2RrazNibTF1VDNJNFZHRlBkMkkxUmtwdVdHZzJaVEp1VVdWTGJqWjVLMHhDYmpkUWVETlJWVmRDY0d0RWRGbDFVakYxVDI5eFJIbHZlUXB1WVUxSmVUazJXamhwY25Wa2QwdERRVkZGUVhkUGFpdEhkMXBYU1ZOWk9YTk1hbkZJYzBVeldrdGlNMDFvVDJaYWFVcGhUMk5JZW1WNWFsbHllbWs0Q2pNelUyTTJWMGhaVUU1VlRVSlROalF4UkdOU1lURk9UekpsUW10eVQxWk5SSGhaYTJGa2FEZFFXak5ZY0Vab1VFdHdOVTV1Y1VSTGFVMW5SbUZJU0dFS2JYZzBjQzlrUVRGdlRrdFFRbVV5V2tKd2JtOVlVblZHTkhWTGVGZDNiMHN5WkhSb04yWnpaa3hUZEZaV2RGSnRObXhzTDNnMFIzRmxUVWhOYzFGdWNncHJhbEZYY1ZoWWVWaFlVM2MwV0dWdGF6VkRVSFI0VTBObk9YaElNMjAyVDI5RlRXd3pZa3RFWVVOMFprNXVNR3RoTTBVM1VUVm5kbmxMUTFsdmFXSjZDbGwxTldaS05YUklUamx0UzNsT2REZFhWM1JzWTNWbmQxbGljSFYxVFdWTVFXaGFSM042ZVZjeGEwTlRWa3BXUlUxU1FVdFlSR1ozVGs0NVUybGphbG9LTTBNdlNIQjBNbk5NYms4eWJGSmtjVE5MVEhCdWJITk1WVlI2ZVU1WGJVTkpWSHB4T1U5TVZISjNTME5CVVVGbE5XeEVla2xqTDJvMFYzRTBWamRYYkFwaU9IaFZUMlZ3VDAxek5tNUhXQ3RzU0dwQ2JDOXpLMlEzYVVoTGQxQlVObEpYVUhkeWVrMUNjU3QxY3psQ1Iyd3JjVVJ4U1ZBMmVFOXJSRGxxVEVnM0NtbHFLMnN3Wm5GUUsweFpXV1J4TURndmRUVjNjMVZsVkVWaVMyWjFURFl3VDBaallqQmljMHR2VjNwRFpUTndTV3Q1YVdsek5ucHpiM0pGTTBaNFpHSUtZWFZ1VjNZNWFsbDNlSE5YVkU1NVVGazNTemRXY1M5VE9VZHBaQ3QyZUhoYWRHNTBjSGN6TjNsQ1JYTlpiMHM0YTNCT2J6QnVaV2x2YWpsSWRGbE9UZ3BDV1hOclZreHBkMjh4Y1RScVUxaFNaWEF5V1cxc1ZpOHhRazFRVHpsVVYyRmtZVlZrTDFRNVpXVlNVMGg2TkRKUmRVd3hRbEphWnpob1FuUlpNbGhZQ25SbmMxaEVkbFE1TUU5NmJubGlZVFUwUzFwMVNreE1TMEpPU0dORGJEZFRXRkF4Y0dwSVQxUnZRVEYxWlRabVpWUTViVEF3U0ZkYWN6TmxRbEZYUld3S1JtMVdMMEZ2U1VKQlNHNVBXa040YVU5ME5HaHFSa0poTkdoR1lsSlJUemN6Vm1Zd1VtWkRlV1pwTHpoQ1ExcGxObnB5ZDFreWJtYzRkbUl4TDJocGFncEhWSHB2WmtoSllUa3haa05QV1dGbVFteExXbFZuV1hkdUwzUndXWEF2VFZjME16ZzJUR1p5VkhVeE4ySTBZMmRpVkVjcmRXZzJOVEZDTDJOaFVrSk5Da0V4ZW13MGJuSnNhMWN2UVRScVFWcHVXWHA2WTFacFVVTnRlU3MxVEdWaWNHWXpNbXBoYTNCeEswbHZVVXREVWtab1RYWlNWbmxEYjFaRFRrWmxWRzBLZFc4d1ZFSk5ORzFQUjJsTlptTkRUM2hhTlhkU2IxSjRRV0ZpVkdka0szcHBlVWxZYzBob1lTOWxWek5aVjNsWU5IVm9ORWRpVURncldEVkVjMHAwVndwT1EybFNWbGhvYm5SS00zbGxRMGwwUjNBMU15dEtSSFo1WlV0QmRtMXJORk50TURNNWRDOVlNV2RNVjIwd2FETlFiVWRpZG1SM2JrZDZVMFYzWVZKMkNrVm1iR1l5VDNwS2RsTk9kRXd4T0hwVlYyaHBXRE5XYmxKeFFYSXpVMk5EWjJkRlFVNW5WREZzUWxkblEzQTFiR2hKT1RKaldUZHBlRXQyZW5NdmVua0tiVVI1VWxVd1NWQkVOVFZJZUZCTk5GZFVhbE01TkZCeWFHRXJRM2w1Vm1veVRFZzVSVmtyTUd4VEx6QmtVVTFRTTBjMVNHNDJVVXRySzNwRk5XTlBiQXBpTWs1TFdXdEZUVE5CUnl0T1duQnphSFpaTm1OMFdtSmFhMFV2VWpWMVRIcDJORU5MWXpWSFQxWk1iMjF0VVc5RlVWZzBjRVV2T1hSM2MxbDVRMGhwQ2s5SmFEUnJZemhCYjFZdlVrNU5kbElyY25seFVrTlNkMFJ4U0RWaVFscEZVREEwTkZGeGNWRXZaM1Z0V21GQ2FqZE1TMUJtZHpaSlIwOUJORTFrWTJrS05YTXZhRk5qVW1VMVdVMHpWV0UxZUV4aFZscGlWamRHZVVVelNWVXpWeTltYW1SVlQzaDZhbTh5YlhoV2Nub3ZLemg2TDBsc2MyRkJiMGhQZEUxMU53bzBMMDh5VkhSTlJUTmtiVGtyZDBOMFJEbFlVbmwxVWxGeVVUSkhjVzA0TVcxellUWlVhM0JhT0VWdlZEUmhjMHc1YmtwYWEwRTJSMk5uUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAyMEFKZnF4T0RDQ3F6OTVUeFMxdVVGMnNmUVQ5bnd0V3pIQkZDTVVyQW5yTldlOUI3c3JTaklSUVVmN3pEMm03c1o5T1lqUFNyWmxMTGM0Q21GaXppN1l4M3c3aHMxSEM2NFdPQmtDM1BBcVJmYW9aRHVzajRIdlUxbndWdjRLUQo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '241' + - '12912' content-type: - application/json date: - - Tue, 14 Jan 2020 01:25:42 GMT + - Thu, 12 Sep 2019 02:10:55 GMT expires: - '-1' pragma: @@ -1854,62 +1746,73 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1173' + - '1199' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ + ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" headers: cache-control: - no-cache content-length: - - '241' + - '2607' content-type: - application/json date: - - Tue, 14 Jan 2020 01:25:50 GMT + - Thu, 12 Sep 2019 02:10:56 GMT expires: - '-1' pragma: @@ -1918,62 +1821,90 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1172' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: !!python/unicode '{"properties": {"nodeResourceGroup": "MC_clitest000001_cliakstest000001_eastus", + "enableRBAC": true, "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": + [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "networkProfile": {"podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "networkPlugin": "kubenet", "loadBalancerSku": "Standard", "dockerBridgeCidr": + "172.17.0.1/16", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003"}]}}, + "dnsServiceIP": "10.0.0.10"}, "dnsPrefix": "cliaksdns000004", "kubernetesVersion": + "1.13.10", "agentPoolProfiles": [{"count": 1, "name": "nodepool1", "osType": + "Linux", "type": "VirtualMachineScaleSets", "vmSize": "Standard_DS2_v2", "maxPods": + 110, "osDiskSizeGB": 100, "orchestratorVersion": "1.13.10"}], "servicePrincipalProfile": + {"clientId": "fe3666d9-187f-4884-882e-85b5d0c2b2f0"}}, "location": "eastus"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive Content-Length: - - '1716' + - '1896' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"kubernetesVersion\": \"1.13.10\"\ + ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"provisioningState\": \"Updating\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 cache-control: - no-cache content-length: - - '241' + - '2788' content-type: - application/json date: - - Tue, 14 Jan 2020 01:25:57 GMT + - Thu, 12 Sep 2019 02:11:00 GMT expires: - '-1' pragma: @@ -1982,62 +1913,50 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1171' + - '1199' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:26:05 GMT + - Thu, 12 Sep 2019 02:11:30 GMT expires: - '-1' pragma: @@ -2046,62 +1965,48 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1170' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.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/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ + \n }" headers: cache-control: - no-cache content-length: - - '241' + - '126' content-type: - application/json date: - - Tue, 14 Jan 2020 01:26:13 GMT + - Thu, 12 Sep 2019 02:12:00 GMT expires: - '-1' pragma: @@ -2110,62 +2015,171 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1169' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n --load-balancer-outbound-ips User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US - method: PUT + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 + response: + body: + string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ + ,\n \"status\": \"InProgress\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ + \n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 12 Sep 2019 02:12:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + 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: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3b8845e1-b2fa-48c9-b0a7-df25a939226e?api-version=2017-08-31 + response: + body: + string: !!python/unicode "{\n \"name\": \"e145883b-fab2-c948-b0a7-df25a939226e\"\ + ,\n \"status\": \"Succeeded\",\n \"startTime\": \"2019-09-12T02:10:59.9315009Z\"\ + ,\n \"endTime\": \"2019-09-12T02:12:57.9213774Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 12 Sep 2019 02:13:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + 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: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ + ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" headers: cache-control: - no-cache content-length: - - '241' + - '2970' content-type: - application/json date: - - Tue, 14 Jan 2020 01:26:22 GMT + - Thu, 12 Sep 2019 02:13:01 GMT expires: - '-1' pragma: @@ -2174,62 +2188,73 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1168' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks show Connection: - keep-alive - Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"kubernetesVersion\": \"1.13.10\"\ + ,\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-71f64e86.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 100,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"orchestratorVersion\"\ + : \"1.13.10\",\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\": \"fe3666d9-187f-4884-882e-85b5d0c2b2f0\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n\ + \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\"\ + : \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\"\ + : \"172.17.0.1/16\"\n },\n \"maxAgentPools\": 8\n }\n }" headers: cache-control: - no-cache content-length: - - '241' + - '2970' content-type: - application/json date: - - Tue, 14 Jan 2020 01:26:29 GMT + - Thu, 12 Sep 2019 02:13:03 GMT expires: - '-1' pragma: @@ -2238,64 +2263,54 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1167' status: - code: 400 - message: Bad Request + code: 200 + message: OK - request: - body: 'b''b\''{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osType": "Linux", "type": "VirtualMachineScaleSets", "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\\\n"}]}}, "servicePrincipalProfile": {"clientId": "clitest000002", - "secret": "9e06a85c-50fa-48b8-99bf-07689ac91fbe"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}}}}}\''''' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks delete Connection: - keep-alive Content-Length: - - '1716' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + - -g -n --yes --no-wait User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-containerservice/8.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/2.7.15+ (Linux-4.18.0-25-generic-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.9 + msrest_azure/0.6.1 azure-mgmt-containerservice/7.0.0 Azure-SDK-For-Python + AZURECLI/2.0.73 accept-language: - en-US - method: PUT + method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2019-10-01 response: body: - string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"message\": \"Service - principal clientID: clitest000002 not found in Active Directory tenant 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a, - Please see https://aka.ms/aks-sp-help for more details.\"\n }" + string: !!python/unicode '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/abd2fad4-00e8-4bb1-9618-01e757993586?api-version=2017-08-31 cache-control: - no-cache content-length: - - '241' - content-type: - - application/json + - '0' date: - - Tue, 14 Jan 2020 01:26:37 GMT + - Thu, 12 Sep 2019 02:13:05 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/abd2fad4-00e8-4bb1-9618-01e757993586?api-version=2017-08-31 pragma: - no-cache server: @@ -2304,9 +2319,9 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1166' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 400 - message: Bad Request + code: 202 + message: Accepted version: 1 From ca6582001bef8959d43c1cf2718ea1341f179e85 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 11:12:42 +0800 Subject: [PATCH 35/51] pass test_keyvault_secret_sofy_delete --- .../test_keyvault_secret_soft_delete.yaml | 199 ++++++++++++++++-- 1 file changed, 179 insertions(+), 20 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml index ad4d399e32c..2caec3c9d6f 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_secret_soft_delete.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:21:50 GMT + - Tue, 14 Jan 2020 03:06:11 GMT duration: - - '2531574' + - '2660558' expires: - '-1' ocp-aad-diagnostics-server-name: - - jr8yj9FL/uTgHXWOfs1K3qZJqXzBMlORaqSHWNV+91s= + - 4dYZ1x59KpvPnfg8gEGe7Et40rOFLuoCyqMAAOutonQ= ocp-aad-session-key: - - Ejc_2O5sUtAsDmDvWgxTlqby6bL1L_61CcAeYATCqdY7O8SHHrkqZwRdJzIrc03TzXJOFHz_LRTwwUihzghJkfqhaVTR4tVGGupaPjf4q0tqzeNGHSqVbaf55QItMvAz.BKAo6o-dTp-RYTN6Z2hZyeJr_TfPOofaY8U2DAZ_RgY + - 3_ttrJnVyXSmMsJrGZVI55vY6NN-ULQiAL74PYtuG1fOLYCv0nNTJq2ZaYpEUdrWgbGGCRBFjJXCRHYuIsBnZIvO4mzno33utdgy829amMp7wPDZKTeTdunBiVtxZnWL34NWdF5x8Rtvft0-rEcbUJAauA00pid7gn0G-k2cXI4.XRz2EkmPKoMkYZKjSGd5c1zhzsCw3oDy-KwgxWibMw0 pragma: - no-cache request-id: - - 9af5fdae-e487-413f-a432-e10642055846 + - 96ea0ae8-0ebc-43b0-866a-d48eaf69fba9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:21:59 GMT + - Tue, 14 Jan 2020 03:06:19 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:30 GMT + - Tue, 14 Jan 2020 03:06:50 GMT expires: - '-1' pragma: @@ -202,16 +202,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","name":"yugangwbyok","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certbk3fay3vvkixlzogwucbyymtjdhws2ojd47jesq2q6mb6k4gty7wp/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-feryep","name":"cli-test-keyvault-feryep","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdpwadtwvnxjrnmtb5v72hs6kdiwou6qd2rnz6ep7dzaci466nyzyeehx/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zewjks","name":"cli-test-keyvault-zewjks","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadefgmduqfddf3kdgizlvjevoxulnr3czgwk7cpapgkcv6cpdunl/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-cdiosz","name":"cli-test-keyvault-cdiosz","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","name":"yugangw30-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv3","name":"bim-kv3","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","name":"yugangwbyok","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","name":"yugangw30-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '2369' + - '1647' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:31 GMT + - Tue, 14 Jan 2020 03:06:52 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:32 GMT + - Tue, 14 Jan 2020 03:06:55 GMT expires: - '-1' pragma: @@ -314,7 +314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:54 GMT + - Tue, 14 Jan 2020 03:07:16 GMT expires: - '-1' pragma: @@ -363,7 +363,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ba6b66a51f9d466c93e71c791f4c9f61","attributes":{"enabled":true,"created":1578964976,"updated":1578964976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/984fda2163b34bd2a513a0b0c60efc30","attributes":{"enabled":true,"created":1578971238,"updated":1578971238,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -372,7 +372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:56 GMT + - Tue, 14 Jan 2020 03:07:18 GMT expires: - '-1' pragma: @@ -418,7 +418,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578964978,"scheduledPurgeDate":1586740978,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ba6b66a51f9d466c93e71c791f4c9f61","attributes":{"enabled":true,"created":1578964976,"updated":1578964976,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578971240,"scheduledPurgeDate":1586747240,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/984fda2163b34bd2a513a0b0c60efc30","attributes":{"enabled":true,"created":1578971238,"updated":1578971238,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -427,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:57 GMT + - Tue, 14 Jan 2020 03:07:20 GMT expires: - '-1' pragma: @@ -471,16 +471,175 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets?api-version=7.0 response: body: - string: '{"value":[],"nextLink":null}' + string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578971240,"scheduledPurgeDate":1586747240,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578971238,"updated":1578971238,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' headers: cache-control: - no-cache content-length: - - '28' + - '390' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:19 GMT + - Tue, 14 Jan 2020 03:07:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets?maxresults=10&api-version=7.0 + response: + body: + string: '{"value":[{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578971240,"scheduledPurgeDate":1586747240,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1","attributes":{"enabled":true,"created":1578971238,"updated":1578971238,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '390' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 03:07:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1?api-version=7.0 + response: + body: + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578971240,"scheduledPurgeDate":1586747240,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/984fda2163b34bd2a513a0b0c60efc30","attributes":{"enabled":true,"created":1578971238,"updated":1578971238,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + headers: + cache-control: + - no-cache + content-length: + - '395' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 03:07:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=167.220.255.51;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.891 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1?api-version=7.0 + response: + body: + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578971240,"scheduledPurgeDate":1586747240,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/984fda2163b34bd2a513a0b0c60efc30","attributes":{"enabled":true,"created":1578971238,"updated":1578971238,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + headers: + cache-control: + - no-cache + content-length: + - '395' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 03:07:47 GMT expires: - '-1' pragma: From 6fb4e0d5f32febbf71e79bea75b363aefada2823 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 11:18:36 +0800 Subject: [PATCH 36/51] pass test_keyvault_storage_account --- .../test_keyvault_storage_account.yaml | 1407 +++++++++++++++-- 1 file changed, 1256 insertions(+), 151 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml index a86dab6c710..fc855f15fb0 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_storage_account.yaml @@ -1,4 +1,54 @@ interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-06-14T16:50:18Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_keyvault_sa000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T16:50:18Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:50:18 GMT + expires: + - '-1' + pragma: + - no-cache + 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: @@ -9,41 +59,50 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-graphrbac/0.60.0 + Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-06-21T01:32:03Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Zunli - Hu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zuh@microsoft.com","mailNickname":"zuh_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zuh@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zuh@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-21T01:32:03Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/21cd756e-e290-4a26-9547-93e8cc1a8923/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zuh_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-06-24T01:43:59Z","userType":"Guest"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"4290ae1b-4f92-4dc9-81fe-fab805a38536","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["617b097b-4b93-4ede-83de-5f075bb5fb2f","4a51bca5-1eff-43f5-878c-177680f191af","efb0351d-3b08-4503-993d-383af8de41e3","5136a095-5cf0-4aff-bec3-e84448b38ea5","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"dcb1a3ae-b33f-4487-846a-a640262fadf4"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"}],"assignedPlans":[{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-06-06T16:14:36Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-05-26T14:18:28Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-10T11:33:09Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-07T16:02:46Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-07T16:02:46Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-07T16:02:46Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"d20bfa21-e9ae-43fc-93c2-20783f0840c3"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"d5368ca3-357e-4acb-9c21-8495fb025d1f"},{"assignedTimestamp":"2019-03-05T18:50:41Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2019-02-28T07:24:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2019-02-28T07:24:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2019-02-28T07:24:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2019-02-27T17:03:32Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2019-02-27T17:03:31Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2019-02-27T13:19:46Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2019-02-25T16:30:12Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2019-02-25T16:30:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2019-02-25T16:29:42Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2019-02-25T16:29:42Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-02-25T11:04:14Z","creationType":null,"department":"Azure + and Web","dirSyncEnabled":true,"displayName":"Limin Gu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Limin","immutableId":"307661","isCompromised":null,"jobTitle":"SENIOR + SOFTWARE ENGINEER","lastDirSyncTime":"2019-03-12T04:54:04Z","legalAgeGroupClassification":null,"mail":"Limin.Gu@microsoft.com","mailNickname":"limgu","mobile":null,"onPremisesDistinguishedName":"CN=Limin + Gu,OU=UserAccounts,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-34547544","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3200FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=7f932d8314da42a29556be22b176ef7a-Limin + Gu","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=a62a62a3c1a04684818f947cb91185c3-Limin + Gu-1","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=50bb232c123448d39806bc226a4b78f2-Limin + Gu","smtp:limgu@microsoft.onmicrosoft.com","smtp:limgu@service.microsoft.com","smtp:limgu@microsoft.com","SMTP:Limin.Gu@microsoft.com"],"refreshTokensValidFromDateTime":"2019-03-04T21:30:38Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"limgu@microsoft.com","state":null,"streetAddress":null,"surname":"Gu","telephoneNumber":"+1 + (425) 4214240","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/4290ae1b-4f92-4dc9-81fe-fab805a38536/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"limgu@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"138058","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Wang, + Yugang","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"YUGANGW","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10040929","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91803823","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10040929","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"307661"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1670' + - '14107' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:22:51 GMT + - Fri, 14 Jun 2019 16:50:20 GMT duration: - - '2538916' + - '1272461' expires: - '-1' ocp-aad-diagnostics-server-name: - - P6XHi15PiD96nTMoJDvb6zXRHSAmPtZhG5f+3+NCpS4= + - gumqaGrQuKMWKx5qR6D+EntZzHCdF7Gxbt/YYl8BbgU= ocp-aad-session-key: - - L5RvWFilbtxYEMIDjUXrGxFUNXSP0q5XQx9Ut98JhUntmbfbSpM8Jvn3KgMMIIdD4QlG43vcK-gX1dXAV4aWDwpVixVYfR4PBhrlrnvglXiZlvb-tAH5bpDshnW1o58999_mY6AS8biZpw3e5wq6-m8rvEU9ral-aVssM4tv3U8.v1umpc1P7NdBVG5k3OITFVDLbumbgK9v8C2JRQHJ7f4 + - KVyYhYunGefWcUrESPgvEtWnqXg4yqIEuPEvi9DhtpiO21DW5V4maRQ19sTUgo_RCukvqZfSTMdwoQSHmWk8cX6m2nPfbiMTj6jLU36D8VdK07r3d4B5P8dSnaonXXDG.J3H9PEMbLdwKfT53TobmJekhi0Wo9kiPnLTBEDJRFLU pragma: - no-cache request-id: - - 0676de7b-b553-4303-801e-a07de37b8a30 + - 4c187d9b-5650-4e9a-96f3-68dae9381654 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -56,9 +115,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "sku": {"family": "A", "name": "premium"}, "accessPolicies": [{"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", "permissions": {"keys": + body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "premium"}, "accessPolicies": [{"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "objectId": "4290ae1b-4f92-4dc9-81fe-fab805a38536", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", "import", "update", @@ -81,15 +140,15 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-keyvault/1.1.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4290ae1b-4f92-4dc9-81fe-fab805a38536","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache @@ -98,7 +157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:57 GMT + - Fri, 14 Jun 2019 16:50:22 GMT expires: - '-1' pragma: @@ -116,9 +175,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.269 + - 1.1.0.245 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' x-powered-by: - ASP.NET status: @@ -138,13 +197,13 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-keyvault/1.1.0 + Azure-SDK-For-Python AZURECLI/2.0.66 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"4290ae1b-4f92-4dc9-81fe-fab805a38536","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -153,7 +212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:28 GMT + - Fri, 14 Jun 2019 16:50:53 GMT expires: - '-1' pragma: @@ -171,7 +230,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.269 + - 1.1.0.245 x-powered-by: - ASP.NET status: @@ -191,24 +250,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_keyvault_sa000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:47Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001","name":"cli_test_keyvault_sa000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-14T16:50:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '384' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:28 GMT + - Fri, 14 Jun 2019 16:50:54 GMT expires: - '-1' pragma: @@ -240,8 +299,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT @@ -257,11 +316,11 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:32 GMT + - Fri, 14 Jun 2019 16:50:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/f94e1171-071d-4481-96da-d772e1ea417e?monitor=true&api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 pragma: - no-cache server: @@ -271,7 +330,187 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:13 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - storage account create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff status: code: 202 message: Accepted @@ -289,22 +528,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/f94e1171-071d-4481-96da-d772e1ea417e?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7dabb9ba-534a-4158-958e-955893a1709d?monitor=true&api-version=2019-06-01 response: body: - string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:23:32.2858501Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}}' + string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T16:50:55.7742242Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}}' headers: cache-control: - no-cache content-length: - - '1461' + - '1488' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:50 GMT + - Fri, 14 Jun 2019 16:51:26 GMT expires: - '-1' pragma: @@ -333,11 +572,13 @@ interactions: - role assignment create Connection: - keep-alive + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-authorization/0.50.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET @@ -355,13 +596,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:51 GMT + - Fri, 14 Jun 2019 16:51:28 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -389,47 +630,47 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-graphrbac/0.60.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27cfa8b339-82a2-471a-a3c9-0fc0be7a4093%27%29&api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"8a32e482-bbc6-4304-a475-52ac8a89c64f","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Azure + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"93c27d83-f79b-4cb2-8dd4-4aa716542e74","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Azure Key Vault","appId":"cfa8b339-82a2-471a-a3c9-0fc0be7a4093","applicationTemplateId":null,"appOwnerTenantId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"Azure Key Vault","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow the application full access to the Azure Key Vault service on behalf of the signed-in user","adminConsentDisplayName":"Have full access to the Azure Key Vault service","id":"f53da476-18e3-4152-8e01-aec403e6edc0","isEnabled":true,"type":"User","userConsentDescription":"Allow the application full access to the Azure Key Vault service on your behalf","userConsentDisplayName":"Have - full access to the Azure Key Vault service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["cfa8b339-82a2-471a-a3c9-0fc0be7a4093","https://vault.azure.net"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}]}' + full access to the Azure Key Vault service","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["https://vault.azure.net","AzureKeyVault","cfa8b339-82a2-471a-a3c9-0fc0be7a4093"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1736' + - '1752' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:23:51 GMT + - Fri, 14 Jun 2019 16:51:28 GMT duration: - - '2580408' + - '1043428' expires: - '-1' ocp-aad-diagnostics-server-name: - - ME/Z7cMAnO6/vrzoMc6yckPd+gMqTzZtj4gnNCQoWjg= + - Sv8LAqxM3Xd8KdoykW0mGkYyWG5hzFClI07Ok7DI0I8= ocp-aad-session-key: - - D8ALzTOtmFym-BQmSmamrYwGS4e9y2QPWkhtE0_CsfU8-N_yxunNnEYZizXV-BWaN_fExmbBi9m1AyJkExTVhzxh2eZq-Pz6QiVu2kPyc_1rNZe9Bg5u0pdPXvpUWkh-UXfUAX_HWKYsqpzqFdw4GMas2IzknMOpZ4-1zRzN4GY.hIEN4Sm8X76MtN5Hb5rxlw84R9f8rMpD33c9mmtBqVE + - gjVzx58TIsZslfshGj6dcWDNrTwtSxX-ruPr3KY7Q_z32svCcZ2a6qbK5PdAw0-VhSZtrGRgwLv31rtHaDhR_DCK9glDg2mARjt3CZnigSg2l5b77jqcZqWRlYGHF6Pz.sWriVKMMRluu1KaO5SGDQZH2sSZRLpxWtDn3qjKnnwg pragma: - no-cache request-id: - - 226babd6-849c-46b6-b960-7f839031aa26 + - 40cbac44-762b-49ca-b2ae-5db59eafea0f strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -443,7 +684,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12", - "principalId": "8a32e482-bbc6-4304-a475-52ac8a89c64f"}}' + "principalId": "93c27d83-f79b-4cb2-8dd4-4aa716542e74"}}' headers: Accept: - application/json @@ -462,15 +703,15 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-authorization/0.50.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/8ea5a470-f795-434f-89fc-6f7f6c255d69?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/db38efd9-9fbb-4080-a107-5be41f6874c0?api-version=2018-01-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"8a32e482-bbc6-4304-a475-52ac8a89c64f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","createdOn":"2020-01-14T01:23:52.9334236Z","updatedOn":"2020-01-14T01:23:52.9334236Z","createdBy":null,"updatedBy":"21cd756e-e290-4a26-9547-93e8cc1a8923"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/8ea5a470-f795-434f-89fc-6f7f6c255d69","type":"Microsoft.Authorization/roleAssignments","name":"8ea5a470-f795-434f-89fc-6f7f6c255d69"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"93c27d83-f79b-4cb2-8dd4-4aa716542e74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","createdOn":"2019-06-14T16:51:29.0228493Z","updatedOn":"2019-06-14T16:51:29.0228493Z","createdBy":null,"updatedBy":"4290ae1b-4f92-4dc9-81fe-fab805a38536"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002/providers/Microsoft.Authorization/roleAssignments/db38efd9-9fbb-4080-a107-5be41f6874c0","type":"Microsoft.Authorization/roleAssignments","name":"db38efd9-9fbb-4080-a107-5be41f6874c0"}' headers: cache-control: - no-cache @@ -479,21 +720,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:57 GMT + - Fri, 14 Jun 2019 16:51:31 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-ms-request-charge: - - '3' + - '2' status: code: 201 message: Created @@ -511,25 +752,22 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 response: body: - string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer - or PoP token."}}' + string: '' headers: cache-control: - no-cache content-length: - - '87' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 14 Jan 2020 01:23:58 GMT + - Fri, 14 Jun 2019 16:51:31 GMT expires: - '-1' pragma: @@ -539,18 +777,18 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.79;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -572,15 +810,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1578965041,"updated":1578965041,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531095,"updated":1560531095,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -589,7 +827,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:01 GMT + - Fri, 14 Jun 2019 16:51:35 GMT expires: - '-1' pragma: @@ -603,11 +841,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.79;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -628,15 +866,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1578965043,"updated":1578965043,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache @@ -645,7 +883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:02 GMT + - Fri, 14 Jun 2019 16:51:36 GMT expires: - '-1' pragma: @@ -659,11 +897,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.79;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -681,24 +919,24 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess/?api-version=7.0 response: body: - string: '{"value":"?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-14T05:24:05Z&spr=https&sig=knV9lCtSnvSlzfMuFRZrH5NiweoGlocVsvzaWCyzmT8%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","managed":true,"attributes":{"enabled":true,"exp":1578979445,"recoveryLevel":"Purgeable"}}' + string: '{"value":"?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2019-06-14T20:51:37Z&spr=https&sig=n7LbvGZhXlLIGfEAXImmnQNC8oPpxosy%2FCFugddZ3Eg%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","managed":true,"attributes":{"enabled":true,"exp":1560545497,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache content-length: - - '378' + - '380' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:04 GMT + - Fri, 14 Jun 2019 16:51:36 GMT expires: - '-1' pragma: @@ -712,11 +950,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.79;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -730,13 +968,13 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 + - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 x-ms-date: - - Tue, 14 Jan 2020 01:24:05 GMT + - Fri, 14 Jun 2019 16:51:37 GMT x-ms-version: - - '2018-11-09' + - '2018-03-28' method: PUT - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1?restype=container&sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-14T05%3A24%3A05Z&spr=https&sig=knV9lCtSnvSlzfMuFRZrH5NiweoGlocVsvzaWCyzmT8%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2019-06-14T20:51:37Z&spr=https&sig=n7LbvGZhXlLIGfEAXImmnQNC8oPpxosy%2FCFugddZ3Eg%3D&restype=container response: body: string: '' @@ -744,15 +982,15 @@ interactions: content-length: - '0' date: - - Tue, 14 Jan 2020 01:24:06 GMT + - Fri, 14 Jun 2019 16:51:37 GMT etag: - - '"0x8D798907328FD98"' + - '"0x8D6F0E891071F3D"' last-modified: - - Tue, 14 Jan 2020 01:24:07 GMT + - Fri, 14 Jun 2019 16:51:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2018-11-09' + - '2018-03-28' status: code: 201 message: Created @@ -764,17 +1002,17 @@ interactions: Content-Length: - '42' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 + - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 x-ms-blob-content-type: - text/plain x-ms-blob-type: - BlockBlob x-ms-date: - - Tue, 14 Jan 2020 01:24:07 GMT + - Fri, 14 Jun 2019 16:51:37 GMT x-ms-version: - - '2018-11-09' + - '2018-03-28' method: PUT - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2020-01-14T05%3A24%3A05Z&spr=https&sig=knV9lCtSnvSlzfMuFRZrH5NiweoGlocVsvzaWCyzmT8%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&ss=bqtf&srt=sco&sp=rwdlacup&se=2019-06-14T20:51:37Z&spr=https&sig=n7LbvGZhXlLIGfEAXImmnQNC8oPpxosy%2FCFugddZ3Eg%3D response: body: string: '' @@ -784,17 +1022,17 @@ interactions: content-md5: - oyaT6AGPWTpUFslcIAG1hw== date: - - Tue, 14 Jan 2020 01:24:07 GMT + - Fri, 14 Jun 2019 16:51:37 GMT etag: - - '"0x8D7989074018497"' + - '"0x8D6F0E8913BA18F"' last-modified: - - Tue, 14 Jan 2020 01:24:08 GMT + - Fri, 14 Jun 2019 16:51:37 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: - 'true' x-ms-version: - - '2018-11-09' + - '2018-03-28' status: code: 201 message: Created @@ -812,24 +1050,24 @@ interactions: ParameterSetName: - -c -n --account-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag180","name":"azureclitestrgdiag180","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-30T03:44:58.6379144Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T03:44:58.5910120Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag180.blob.core.windows.net/","queue":"https://azureclitestrgdiag180.queue.core.windows.net/","table":"https://azureclitestrgdiag180.table.core.windows.net/","file":"https://azureclitestrgdiag180.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-core-poc/providers/Microsoft.Storage/storageAccounts/azurecorepoc","name":"azurecorepoc","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-26T02:38:58.8233588Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-26T02:38:58.7452329Z","primaryEndpoints":{"dfs":"https://azurecorepoc.dfs.core.windows.net/","web":"https://azurecorepoc.z13.web.core.windows.net/","blob":"https://azurecorepoc.blob.core.windows.net/","queue":"https://azurecorepoc.queue.core.windows.net/","table":"https://azurecorepoc.table.core.windows.net/","file":"https://azurecorepoc.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azurecorepoc-secondary.dfs.core.windows.net/","web":"https://azurecorepoc-secondary.z13.web.core.windows.net/","blob":"https://azurecorepoc-secondary.blob.core.windows.net/","queue":"https://azurecorepoc-secondary.queue.core.windows.net/","table":"https://azurecorepoc-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.Storage/storageAccounts/azureclitestrgdiag","name":"azureclitestrgdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T02:54:26.8971309Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T02:54:26.8502755Z","primaryEndpoints":{"blob":"https://azureclitestrgdiag.blob.core.windows.net/","queue":"https://azureclitestrgdiag.queue.core.windows.net/","table":"https://azureclitestrgdiag.table.core.windows.net/","file":"https://azureclitestrgdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:23:32.3639731Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:23:32.2858501Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.Storage/storageAccounts/clitestu3p7a7ib4n4y7gt4m","name":"clitestu3p7a7ib4n4y7gt4m","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-30T01:51:53.0814418Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-30T01:51:53.0189478Z","primaryEndpoints":{"blob":"https://clitestu3p7a7ib4n4y7gt4m.blob.core.windows.net/","queue":"https://clitestu3p7a7ib4n4y7gt4m.queue.core.windows.net/","table":"https://clitestu3p7a7ib4n4y7gt4m.table.core.windows.net/","file":"https://clitestu3p7a7ib4n4y7gt4m.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.Storage/storageAccounts/yeming","name":"yeming","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-04T06:41:07.4012554Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-04T06:41:07.3699884Z","primaryEndpoints":{"dfs":"https://yeming.dfs.core.windows.net/","web":"https://yeming.z23.web.core.windows.net/","blob":"https://yeming.blob.core.windows.net/","queue":"https://yeming.queue.core.windows.net/","table":"https://yeming.table.core.windows.net/","file":"https://yeming.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available","secondaryLocation":"eastasia","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yeming-secondary.dfs.core.windows.net/","web":"https://yeming-secondary.z23.web.core.windows.net/","blob":"https://yeming-secondary.blob.core.windows.net/","queue":"https://yeming-secondary.queue.core.windows.net/","table":"https://yeming-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengsa","name":"fengsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-06T04:33:22.9379802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-01-06T04:33:22.8754625Z","primaryEndpoints":{"dfs":"https://fengsa.dfs.core.windows.net/","web":"https://fengsa.z19.web.core.windows.net/","blob":"https://fengsa.blob.core.windows.net/","queue":"https://fengsa.queue.core.windows.net/","table":"https://fengsa.table.core.windows.net/","file":"https://fengsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengsa-secondary.dfs.core.windows.net/","web":"https://fengsa-secondary.z19.web.core.windows.net/","blob":"https://fengsa-secondary.blob.core.windows.net/","queue":"https://fengsa-secondary.queue.core.windows.net/","table":"https://fengsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:07:42.2058942Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:07:42.1277444Z","primaryEndpoints":{"dfs":"https://storagesfrepro1.dfs.core.windows.net/","web":"https://storagesfrepro1.z19.web.core.windows.net/","blob":"https://storagesfrepro1.blob.core.windows.net/","queue":"https://storagesfrepro1.queue.core.windows.net/","table":"https://storagesfrepro1.table.core.windows.net/","file":"https://storagesfrepro1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro1-secondary.dfs.core.windows.net/","web":"https://storagesfrepro1-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro1-secondary.blob.core.windows.net/","queue":"https://storagesfrepro1-secondary.queue.core.windows.net/","table":"https://storagesfrepro1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro10","name":"storagesfrepro10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:00.8753334Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:00.7815921Z","primaryEndpoints":{"dfs":"https://storagesfrepro10.dfs.core.windows.net/","web":"https://storagesfrepro10.z19.web.core.windows.net/","blob":"https://storagesfrepro10.blob.core.windows.net/","queue":"https://storagesfrepro10.queue.core.windows.net/","table":"https://storagesfrepro10.table.core.windows.net/","file":"https://storagesfrepro10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro10-secondary.dfs.core.windows.net/","web":"https://storagesfrepro10-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro10-secondary.blob.core.windows.net/","queue":"https://storagesfrepro10-secondary.queue.core.windows.net/","table":"https://storagesfrepro10-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro11","name":"storagesfrepro11","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:14:28.9859417Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:14:28.8609347Z","primaryEndpoints":{"dfs":"https://storagesfrepro11.dfs.core.windows.net/","web":"https://storagesfrepro11.z19.web.core.windows.net/","blob":"https://storagesfrepro11.blob.core.windows.net/","queue":"https://storagesfrepro11.queue.core.windows.net/","table":"https://storagesfrepro11.table.core.windows.net/","file":"https://storagesfrepro11.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro11-secondary.dfs.core.windows.net/","web":"https://storagesfrepro11-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro11-secondary.blob.core.windows.net/","queue":"https://storagesfrepro11-secondary.queue.core.windows.net/","table":"https://storagesfrepro11-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro12","name":"storagesfrepro12","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:15:15.6785362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:15:15.5848345Z","primaryEndpoints":{"dfs":"https://storagesfrepro12.dfs.core.windows.net/","web":"https://storagesfrepro12.z19.web.core.windows.net/","blob":"https://storagesfrepro12.blob.core.windows.net/","queue":"https://storagesfrepro12.queue.core.windows.net/","table":"https://storagesfrepro12.table.core.windows.net/","file":"https://storagesfrepro12.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro12-secondary.dfs.core.windows.net/","web":"https://storagesfrepro12-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro12-secondary.blob.core.windows.net/","queue":"https://storagesfrepro12-secondary.queue.core.windows.net/","table":"https://storagesfrepro12-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro13","name":"storagesfrepro13","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:16:55.7609361Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:16:55.6671828Z","primaryEndpoints":{"dfs":"https://storagesfrepro13.dfs.core.windows.net/","web":"https://storagesfrepro13.z19.web.core.windows.net/","blob":"https://storagesfrepro13.blob.core.windows.net/","queue":"https://storagesfrepro13.queue.core.windows.net/","table":"https://storagesfrepro13.table.core.windows.net/","file":"https://storagesfrepro13.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro13-secondary.dfs.core.windows.net/","web":"https://storagesfrepro13-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro13-secondary.blob.core.windows.net/","queue":"https://storagesfrepro13-secondary.queue.core.windows.net/","table":"https://storagesfrepro13-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro14","name":"storagesfrepro14","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:17:40.7661469Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:17:40.6880204Z","primaryEndpoints":{"dfs":"https://storagesfrepro14.dfs.core.windows.net/","web":"https://storagesfrepro14.z19.web.core.windows.net/","blob":"https://storagesfrepro14.blob.core.windows.net/","queue":"https://storagesfrepro14.queue.core.windows.net/","table":"https://storagesfrepro14.table.core.windows.net/","file":"https://storagesfrepro14.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro14-secondary.dfs.core.windows.net/","web":"https://storagesfrepro14-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro14-secondary.blob.core.windows.net/","queue":"https://storagesfrepro14-secondary.queue.core.windows.net/","table":"https://storagesfrepro14-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro15","name":"storagesfrepro15","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:18:52.1812445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:18:52.0718543Z","primaryEndpoints":{"dfs":"https://storagesfrepro15.dfs.core.windows.net/","web":"https://storagesfrepro15.z19.web.core.windows.net/","blob":"https://storagesfrepro15.blob.core.windows.net/","queue":"https://storagesfrepro15.queue.core.windows.net/","table":"https://storagesfrepro15.table.core.windows.net/","file":"https://storagesfrepro15.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro15-secondary.dfs.core.windows.net/","web":"https://storagesfrepro15-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro15-secondary.blob.core.windows.net/","queue":"https://storagesfrepro15-secondary.queue.core.windows.net/","table":"https://storagesfrepro15-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro16","name":"storagesfrepro16","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:19:33.1863807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:19:33.0770034Z","primaryEndpoints":{"dfs":"https://storagesfrepro16.dfs.core.windows.net/","web":"https://storagesfrepro16.z19.web.core.windows.net/","blob":"https://storagesfrepro16.blob.core.windows.net/","queue":"https://storagesfrepro16.queue.core.windows.net/","table":"https://storagesfrepro16.table.core.windows.net/","file":"https://storagesfrepro16.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro16-secondary.dfs.core.windows.net/","web":"https://storagesfrepro16-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro16-secondary.blob.core.windows.net/","queue":"https://storagesfrepro16-secondary.queue.core.windows.net/","table":"https://storagesfrepro16-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro17","name":"storagesfrepro17","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:23.5553513Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:23.4771469Z","primaryEndpoints":{"dfs":"https://storagesfrepro17.dfs.core.windows.net/","web":"https://storagesfrepro17.z19.web.core.windows.net/","blob":"https://storagesfrepro17.blob.core.windows.net/","queue":"https://storagesfrepro17.queue.core.windows.net/","table":"https://storagesfrepro17.table.core.windows.net/","file":"https://storagesfrepro17.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro17-secondary.dfs.core.windows.net/","web":"https://storagesfrepro17-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro17-secondary.blob.core.windows.net/","queue":"https://storagesfrepro17-secondary.queue.core.windows.net/","table":"https://storagesfrepro17-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro18","name":"storagesfrepro18","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:04:53.8320772Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:04:53.7383176Z","primaryEndpoints":{"dfs":"https://storagesfrepro18.dfs.core.windows.net/","web":"https://storagesfrepro18.z19.web.core.windows.net/","blob":"https://storagesfrepro18.blob.core.windows.net/","queue":"https://storagesfrepro18.queue.core.windows.net/","table":"https://storagesfrepro18.table.core.windows.net/","file":"https://storagesfrepro18.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro18-secondary.dfs.core.windows.net/","web":"https://storagesfrepro18-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro18-secondary.blob.core.windows.net/","queue":"https://storagesfrepro18-secondary.queue.core.windows.net/","table":"https://storagesfrepro18-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro19","name":"storagesfrepro19","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:05:26.3650238Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:05:26.2556326Z","primaryEndpoints":{"dfs":"https://storagesfrepro19.dfs.core.windows.net/","web":"https://storagesfrepro19.z19.web.core.windows.net/","blob":"https://storagesfrepro19.blob.core.windows.net/","queue":"https://storagesfrepro19.queue.core.windows.net/","table":"https://storagesfrepro19.table.core.windows.net/","file":"https://storagesfrepro19.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro19-secondary.dfs.core.windows.net/","web":"https://storagesfrepro19-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro19-secondary.blob.core.windows.net/","queue":"https://storagesfrepro19-secondary.queue.core.windows.net/","table":"https://storagesfrepro19-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro2","name":"storagesfrepro2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:08:45.8498203Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:08:45.7717196Z","primaryEndpoints":{"dfs":"https://storagesfrepro2.dfs.core.windows.net/","web":"https://storagesfrepro2.z19.web.core.windows.net/","blob":"https://storagesfrepro2.blob.core.windows.net/","queue":"https://storagesfrepro2.queue.core.windows.net/","table":"https://storagesfrepro2.table.core.windows.net/","file":"https://storagesfrepro2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro2-secondary.dfs.core.windows.net/","web":"https://storagesfrepro2-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro2-secondary.blob.core.windows.net/","queue":"https://storagesfrepro2-secondary.queue.core.windows.net/","table":"https://storagesfrepro2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro20","name":"storagesfrepro20","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:07.4295934Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:07.3358422Z","primaryEndpoints":{"dfs":"https://storagesfrepro20.dfs.core.windows.net/","web":"https://storagesfrepro20.z19.web.core.windows.net/","blob":"https://storagesfrepro20.blob.core.windows.net/","queue":"https://storagesfrepro20.queue.core.windows.net/","table":"https://storagesfrepro20.table.core.windows.net/","file":"https://storagesfrepro20.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro20-secondary.dfs.core.windows.net/","web":"https://storagesfrepro20-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro20-secondary.blob.core.windows.net/","queue":"https://storagesfrepro20-secondary.queue.core.windows.net/","table":"https://storagesfrepro20-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro21","name":"storagesfrepro21","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:37.4780251Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:37.3686460Z","primaryEndpoints":{"dfs":"https://storagesfrepro21.dfs.core.windows.net/","web":"https://storagesfrepro21.z19.web.core.windows.net/","blob":"https://storagesfrepro21.blob.core.windows.net/","queue":"https://storagesfrepro21.queue.core.windows.net/","table":"https://storagesfrepro21.table.core.windows.net/","file":"https://storagesfrepro21.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro21-secondary.dfs.core.windows.net/","web":"https://storagesfrepro21-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro21-secondary.blob.core.windows.net/","queue":"https://storagesfrepro21-secondary.queue.core.windows.net/","table":"https://storagesfrepro21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro22","name":"storagesfrepro22","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:06:59.8295391Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:06:59.7201581Z","primaryEndpoints":{"dfs":"https://storagesfrepro22.dfs.core.windows.net/","web":"https://storagesfrepro22.z19.web.core.windows.net/","blob":"https://storagesfrepro22.blob.core.windows.net/","queue":"https://storagesfrepro22.queue.core.windows.net/","table":"https://storagesfrepro22.table.core.windows.net/","file":"https://storagesfrepro22.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro22-secondary.dfs.core.windows.net/","web":"https://storagesfrepro22-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro22-secondary.blob.core.windows.net/","queue":"https://storagesfrepro22-secondary.queue.core.windows.net/","table":"https://storagesfrepro22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro23","name":"storagesfrepro23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:29.0846619Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:29.0065050Z","primaryEndpoints":{"dfs":"https://storagesfrepro23.dfs.core.windows.net/","web":"https://storagesfrepro23.z19.web.core.windows.net/","blob":"https://storagesfrepro23.blob.core.windows.net/","queue":"https://storagesfrepro23.queue.core.windows.net/","table":"https://storagesfrepro23.table.core.windows.net/","file":"https://storagesfrepro23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro23-secondary.dfs.core.windows.net/","web":"https://storagesfrepro23-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro23-secondary.blob.core.windows.net/","queue":"https://storagesfrepro23-secondary.queue.core.windows.net/","table":"https://storagesfrepro23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro24","name":"storagesfrepro24","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:07:53.2658712Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:07:53.1565651Z","primaryEndpoints":{"dfs":"https://storagesfrepro24.dfs.core.windows.net/","web":"https://storagesfrepro24.z19.web.core.windows.net/","blob":"https://storagesfrepro24.blob.core.windows.net/","queue":"https://storagesfrepro24.queue.core.windows.net/","table":"https://storagesfrepro24.table.core.windows.net/","file":"https://storagesfrepro24.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro24-secondary.dfs.core.windows.net/","web":"https://storagesfrepro24-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro24-secondary.blob.core.windows.net/","queue":"https://storagesfrepro24-secondary.queue.core.windows.net/","table":"https://storagesfrepro24-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro25","name":"storagesfrepro25","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T05:08:18.7432319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T05:08:18.6338258Z","primaryEndpoints":{"dfs":"https://storagesfrepro25.dfs.core.windows.net/","web":"https://storagesfrepro25.z19.web.core.windows.net/","blob":"https://storagesfrepro25.blob.core.windows.net/","queue":"https://storagesfrepro25.queue.core.windows.net/","table":"https://storagesfrepro25.table.core.windows.net/","file":"https://storagesfrepro25.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro25-secondary.dfs.core.windows.net/","web":"https://storagesfrepro25-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro25-secondary.blob.core.windows.net/","queue":"https://storagesfrepro25-secondary.queue.core.windows.net/","table":"https://storagesfrepro25-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro3","name":"storagesfrepro3","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:19.5698333Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:19.3510997Z","primaryEndpoints":{"dfs":"https://storagesfrepro3.dfs.core.windows.net/","web":"https://storagesfrepro3.z19.web.core.windows.net/","blob":"https://storagesfrepro3.blob.core.windows.net/","queue":"https://storagesfrepro3.queue.core.windows.net/","table":"https://storagesfrepro3.table.core.windows.net/","file":"https://storagesfrepro3.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro3-secondary.dfs.core.windows.net/","web":"https://storagesfrepro3-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro3-secondary.blob.core.windows.net/","queue":"https://storagesfrepro3-secondary.queue.core.windows.net/","table":"https://storagesfrepro3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro4","name":"storagesfrepro4","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:09:54.9930953Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:09:54.8993063Z","primaryEndpoints":{"dfs":"https://storagesfrepro4.dfs.core.windows.net/","web":"https://storagesfrepro4.z19.web.core.windows.net/","blob":"https://storagesfrepro4.blob.core.windows.net/","queue":"https://storagesfrepro4.queue.core.windows.net/","table":"https://storagesfrepro4.table.core.windows.net/","file":"https://storagesfrepro4.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro4-secondary.dfs.core.windows.net/","web":"https://storagesfrepro4-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro4-secondary.blob.core.windows.net/","queue":"https://storagesfrepro4-secondary.queue.core.windows.net/","table":"https://storagesfrepro4-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro5","name":"storagesfrepro5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:10:48.1114395Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:10:48.0177273Z","primaryEndpoints":{"dfs":"https://storagesfrepro5.dfs.core.windows.net/","web":"https://storagesfrepro5.z19.web.core.windows.net/","blob":"https://storagesfrepro5.blob.core.windows.net/","queue":"https://storagesfrepro5.queue.core.windows.net/","table":"https://storagesfrepro5.table.core.windows.net/","file":"https://storagesfrepro5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro5-secondary.dfs.core.windows.net/","web":"https://storagesfrepro5-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro5-secondary.blob.core.windows.net/","queue":"https://storagesfrepro5-secondary.queue.core.windows.net/","table":"https://storagesfrepro5-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro6","name":"storagesfrepro6","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:11:28.0269117Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:11:27.9331594Z","primaryEndpoints":{"dfs":"https://storagesfrepro6.dfs.core.windows.net/","web":"https://storagesfrepro6.z19.web.core.windows.net/","blob":"https://storagesfrepro6.blob.core.windows.net/","queue":"https://storagesfrepro6.queue.core.windows.net/","table":"https://storagesfrepro6.table.core.windows.net/","file":"https://storagesfrepro6.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro6-secondary.dfs.core.windows.net/","web":"https://storagesfrepro6-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro6-secondary.blob.core.windows.net/","queue":"https://storagesfrepro6-secondary.queue.core.windows.net/","table":"https://storagesfrepro6-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro7","name":"storagesfrepro7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:08.7761892Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:08.6824637Z","primaryEndpoints":{"dfs":"https://storagesfrepro7.dfs.core.windows.net/","web":"https://storagesfrepro7.z19.web.core.windows.net/","blob":"https://storagesfrepro7.blob.core.windows.net/","queue":"https://storagesfrepro7.queue.core.windows.net/","table":"https://storagesfrepro7.table.core.windows.net/","file":"https://storagesfrepro7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro7-secondary.dfs.core.windows.net/","web":"https://storagesfrepro7-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro7-secondary.blob.core.windows.net/","queue":"https://storagesfrepro7-secondary.queue.core.windows.net/","table":"https://storagesfrepro7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro8","name":"storagesfrepro8","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:12:39.5221164Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:12:39.4283923Z","primaryEndpoints":{"dfs":"https://storagesfrepro8.dfs.core.windows.net/","web":"https://storagesfrepro8.z19.web.core.windows.net/","blob":"https://storagesfrepro8.blob.core.windows.net/","queue":"https://storagesfrepro8.queue.core.windows.net/","table":"https://storagesfrepro8.table.core.windows.net/","file":"https://storagesfrepro8.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro8-secondary.dfs.core.windows.net/","web":"https://storagesfrepro8-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro8-secondary.blob.core.windows.net/","queue":"https://storagesfrepro8-secondary.queue.core.windows.net/","table":"https://storagesfrepro8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/storage-v2rt-repro/providers/Microsoft.Storage/storageAccounts/storagesfrepro9","name":"storagesfrepro9","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-26T04:13:18.1628430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-26T04:13:18.0691096Z","primaryEndpoints":{"dfs":"https://storagesfrepro9.dfs.core.windows.net/","web":"https://storagesfrepro9.z19.web.core.windows.net/","blob":"https://storagesfrepro9.blob.core.windows.net/","queue":"https://storagesfrepro9.queue.core.windows.net/","table":"https://storagesfrepro9.table.core.windows.net/","file":"https://storagesfrepro9.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storagesfrepro9-secondary.dfs.core.windows.net/","web":"https://storagesfrepro9-secondary.z19.web.core.windows.net/","blob":"https://storagesfrepro9-secondary.blob.core.windows.net/","queue":"https://storagesfrepro9-secondary.queue.core.windows.net/","table":"https://storagesfrepro9-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-ep2af/providers/Microsoft.Storage/storageAccounts/hdicliib2cjkoklxfvcjan2u","name":"hdicliib2cjkoklxfvcjan2u","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T16:26:10.0094531Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T16:26:10.0094531Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T16:26:09.9000746Z","primaryEndpoints":{"blob":"https://hdicliib2cjkoklxfvcjan2u.blob.core.windows.net/","queue":"https://hdicliib2cjkoklxfvcjan2u.queue.core.windows.net/","table":"https://hdicliib2cjkoklxfvcjan2u.table.core.windows.net/","file":"https://hdicliib2cjkoklxfvcjan2u.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdicli-hy3xo/providers/Microsoft.Storage/storageAccounts/hdiclifez5mbnq7razbogmvg","name":"hdiclifez5mbnq7razbogmvg","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T15:38:31.9742651Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T15:38:31.9742651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T15:38:31.8492422Z","primaryEndpoints":{"blob":"https://hdiclifez5mbnq7razbogmvg.blob.core.windows.net/","queue":"https://hdiclifez5mbnq7razbogmvg.queue.core.windows.net/","table":"https://hdiclifez5mbnq7razbogmvg.table.core.windows.net/","file":"https://hdiclifez5mbnq7razbogmvg.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwrwfwfeym72qee3nah2tasiw4z3ccr3lo6xnpbdlmiuzm4hs574o7lgzayesgwffv/providers/Microsoft.Storage/storageAccounts/clistoragehhbuuxg3tu","name":"clistoragehhbuuxg3tu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-27T00:17:56.8422453Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-27T00:17:56.8422453Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-06-27T00:17:56.7015542Z","primaryEndpoints":{"dfs":"https://clistoragehhbuuxg3tu.dfs.core.windows.net/","web":"https://clistoragehhbuuxg3tu.z22.web.core.windows.net/","blob":"https://clistoragehhbuuxg3tu.blob.core.windows.net/","queue":"https://clistoragehhbuuxg3tu.queue.core.windows.net/","table":"https://clistoragehhbuuxg3tu.table.core.windows.net/","file":"https://clistoragehhbuuxg3tu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistoragehhbuuxg3tu-secondary.dfs.core.windows.net/","web":"https://clistoragehhbuuxg3tu-secondary.z22.web.core.windows.net/","blob":"https://clistoragehhbuuxg3tu-secondary.blob.core.windows.net/","queue":"https://clistoragehhbuuxg3tu-secondary.queue.core.windows.net/","table":"https://clistoragehhbuuxg3tu-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgneuacqttufmkpgch7zg7xge3ci3pvsexkawxdv4xcjzuw5bwjjlz6uplznillxgwb/providers/Microsoft.Storage/storageAccounts/clistorageuxtcmjfo3r","name":"clistorageuxtcmjfo3r","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-16T00:30:43.8588701Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-16T00:30:43.8588701Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-16T00:30:43.7488876Z","primaryEndpoints":{"dfs":"https://clistorageuxtcmjfo3r.dfs.core.windows.net/","web":"https://clistorageuxtcmjfo3r.z22.web.core.windows.net/","blob":"https://clistorageuxtcmjfo3r.blob.core.windows.net/","queue":"https://clistorageuxtcmjfo3r.queue.core.windows.net/","table":"https://clistorageuxtcmjfo3r.table.core.windows.net/","file":"https://clistorageuxtcmjfo3r.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorageuxtcmjfo3r-secondary.dfs.core.windows.net/","web":"https://clistorageuxtcmjfo3r-secondary.z22.web.core.windows.net/","blob":"https://clistorageuxtcmjfo3r-secondary.blob.core.windows.net/","queue":"https://clistorageuxtcmjfo3r-secondary.queue.core.windows.net/","table":"https://clistorageuxtcmjfo3r-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazueluserassignedtesti/providers/Microsoft.Storage/storageAccounts/lmazueluserassignedtesti","name":"lmazueluserassignedtesti","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T18:23:18.2117085Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T18:23:18.2117085Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T18:23:18.0867351Z","primaryEndpoints":{"blob":"https://lmazueluserassignedtesti.blob.core.windows.net/","queue":"https://lmazueluserassignedtesti.queue.core.windows.net/","table":"https://lmazueluserassignedtesti.table.core.windows.net/","file":"https://lmazueluserassignedtesti.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount222","name":"limguaccount222","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-06T23:26:04.0572137Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-06T23:26:04.0572137Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-06T23:26:03.9476268Z","primaryEndpoints":{"dfs":"https://limguaccount222.dfs.core.windows.net/","web":"https://limguaccount222.z22.web.core.windows.net/","blob":"https://limguaccount222.blob.core.windows.net/","queue":"https://limguaccount222.queue.core.windows.net/","table":"https://limguaccount222.table.core.windows.net/","file":"https://limguaccount222.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://limguaccount222-secondary.dfs.core.windows.net/","web":"https://limguaccount222-secondary.z22.web.core.windows.net/","blob":"https://limguaccount222-secondary.blob.core.windows.net/","queue":"https://limguaccount222-secondary.queue.core.windows.net/","table":"https://limguaccount222-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount","name":"limguaccount","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-02T21:12:03.3936075Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-02T21:12:03.3936075Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-02T21:12:03.2842590Z","primaryEndpoints":{"blob":"https://limguaccount.blob.core.windows.net/","queue":"https://limguaccount.queue.core.windows.net/","table":"https://limguaccount.table.core.windows.net/","file":"https://limguaccount.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://limguaccount-secondary.blob.core.windows.net/","queue":"https://limguaccount-secondary.queue.core.windows.net/","table":"https://limguaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_ZRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount2","name":"limguaccount2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-06T23:18:33.7435080Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-06T23:18:33.7435080Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-06T23:18:33.6341004Z","primaryEndpoints":{"blob":"https://limguaccount2.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f5jjgz2vniqujmnobv3ud4j3fhjsoao7bcimizgbjspg5nwlr72qugdtfgo7ovn6/providers/Microsoft.Storage/storageAccounts/clistorageqjqpu42bh7","name":"clistorageqjqpu42bh7","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-16T17:18:13.9931194Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-16T17:18:13.9931194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-16T17:18:13.8993652Z","primaryEndpoints":{"dfs":"https://clistorageqjqpu42bh7.dfs.core.windows.net/","web":"https://clistorageqjqpu42bh7.z22.web.core.windows.net/","blob":"https://clistorageqjqpu42bh7.blob.core.windows.net/","queue":"https://clistorageqjqpu42bh7.queue.core.windows.net/","table":"https://clistorageqjqpu42bh7.table.core.windows.net/","file":"https://clistorageqjqpu42bh7.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorageqjqpu42bh7-secondary.dfs.core.windows.net/","web":"https://clistorageqjqpu42bh7-secondary.z22.web.core.windows.net/","blob":"https://clistorageqjqpu42bh7-secondary.blob.core.windows.net/","queue":"https://clistorageqjqpu42bh7-secondary.queue.core.windows.net/","table":"https://clistorageqjqpu42bh7-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs400977cdb163fx435fx9c3","name":"cs400977cdb163fx435fx9c3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-30T21:53:53.8037807Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-30T21:53:53.8037807Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-30T21:53:53.6318970Z","primaryEndpoints":{"dfs":"https://cs400977cdb163fx435fx9c3.dfs.core.windows.net/","web":"https://cs400977cdb163fx435fx9c3.z22.web.core.windows.net/","blob":"https://cs400977cdb163fx435fx9c3.blob.core.windows.net/","queue":"https://cs400977cdb163fx435fx9c3.queue.core.windows.net/","table":"https://cs400977cdb163fx435fx9c3.table.core.windows.net/","file":"https://cs400977cdb163fx435fx9c3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","name":"clitestkvsa0000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-14T16:50:55.9304598Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-14T16:50:55.7742242Z","primaryEndpoints":{"blob":"https://clitestkvsa0000002.blob.core.windows.net/","queue":"https://clitestkvsa0000002.queue.core.windows.net/","table":"https://clitestkvsa0000002.table.core.windows.net/","file":"https://clitestkvsa0000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://clitestkvsa0000002-secondary.blob.core.windows.net/","queue":"https://clitestkvsa0000002-secondary.queue.core.windows.net/","table":"https://clitestkvsa0000002-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/antisch-amqp-tests/providers/Microsoft.Storage/storageAccounts/pythonpremtest","name":"pythonpremtest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-20T17:56:02.5244564Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-20T17:56:02.5244564Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-20T17:56:02.4307270Z","primaryEndpoints":{"web":"https://pythonpremtest.z22.web.core.windows.net/","blob":"https://pythonpremtest.blob.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigabfcn7n4eiq_template01/providers/Microsoft.Storage/storageAccounts/f5f5497a0655a5ce8f6f749f","name":"f5f5497a0655a5ce8f6f749f","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-10T05:55:13.8873290Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-10T05:55:13.8873290Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-10T05:55:13.2310654Z","primaryEndpoints":{"blob":"https://f5f5497a0655a5ce8f6f749f.blob.core.windows.net/","queue":"https://f5f5497a0655a5ce8f6f749f.queue.core.windows.net/","table":"https://f5f5497a0655a5ce8f6f749f.table.core.windows.net/","file":"https://f5f5497a0655a5ce8f6f749f.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_devtestlabs_test_devtestlabs34410fc3/providers/Microsoft.Storage/storageAccounts/apylab34410fc39961","name":"apylab34410fc39961","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"66d57a8f-4302-4ee9-96b0-2876a7ef2f93"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-07T22:34:06.6993369Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-07T22:34:06.6993369Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-07T22:34:06.5899644Z","primaryEndpoints":{"dfs":"https://apylab34410fc39961.dfs.core.windows.net/","web":"https://apylab34410fc39961.z22.web.core.windows.net/","blob":"https://apylab34410fc39961.blob.core.windows.net/","queue":"https://apylab34410fc39961.queue.core.windows.net/","table":"https://apylab34410fc39961.table.core.windows.net/","file":"https://apylab34410fc39961.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpngxmiq5kjet77dbpu5suzlrqcawlrej5mjnfhwjl4fmi7irwxh7lv4ihzcsvld4m/providers/Microsoft.Storage/storageAccounts/clistorage66w3pc3dsj","name":"clistorage66w3pc3dsj","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T21:44:38.1144767Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T21:44:38.1144767Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-11-16T21:44:38.0206977Z","primaryEndpoints":{"dfs":"https://clistorage66w3pc3dsj.dfs.core.windows.net/","web":"https://clistorage66w3pc3dsj.z22.web.core.windows.net/","blob":"https://clistorage66w3pc3dsj.blob.core.windows.net/","queue":"https://clistorage66w3pc3dsj.queue.core.windows.net/","table":"https://clistorage66w3pc3dsj.table.core.windows.net/","file":"https://clistorage66w3pc3dsj.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorage66w3pc3dsj-secondary.dfs.core.windows.net/","web":"https://clistorage66w3pc3dsj-secondary.z22.web.core.windows.net/","blob":"https://clistorage66w3pc3dsj-secondary.blob.core.windows.net/","queue":"https://clistorage66w3pc3dsj-secondary.queue.core.windows.net/","table":"https://clistorage66w3pc3dsj-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdxgqgossxjqvg3knc4po4nhpezscthslqj554n5aufqy6llzobd35ex333rpwom4p/providers/Microsoft.Storage/storageAccounts/clistoragevfnamwpyxm","name":"clistoragevfnamwpyxm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-17T04:55:26.0551771Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-17T04:55:26.0551771Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-17T04:55:25.9609573Z","primaryEndpoints":{"dfs":"https://clistoragevfnamwpyxm.dfs.core.windows.net/","web":"https://clistoragevfnamwpyxm.z22.web.core.windows.net/","blob":"https://clistoragevfnamwpyxm.blob.core.windows.net/","queue":"https://clistoragevfnamwpyxm.queue.core.windows.net/","table":"https://clistoragevfnamwpyxm.table.core.windows.net/","file":"https://clistoragevfnamwpyxm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistoragevfnamwpyxm-secondary.dfs.core.windows.net/","web":"https://clistoragevfnamwpyxm-secondary.z22.web.core.windows.net/","blob":"https://clistoragevfnamwpyxm-secondary.blob.core.windows.net/","queue":"https://clistoragevfnamwpyxm-secondary.queue.core.windows.net/","table":"https://clistoragevfnamwpyxm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgevdibpjptswoyyvgh3w6rylmk6aruigknvfz7yrhcv7tvgerwdyrgnxd3ilfmq6xb/providers/Microsoft.Storage/storageAccounts/clitest6dkcrwjg563o4lf6x","name":"clitest6dkcrwjg563o4lf6x","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T22:04:42.8740733Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T22:04:42.8740733Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T22:04:42.7646885Z","primaryEndpoints":{"blob":"https://clitest6dkcrwjg563o4lf6x.blob.core.windows.net/","queue":"https://clitest6dkcrwjg563o4lf6x.queue.core.windows.net/","table":"https://clitest6dkcrwjg563o4lf6x.table.core.windows.net/","file":"https://clitest6dkcrwjg563o4lf6x.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_aibmdi_myexampletemplate/providers/Microsoft.Storage/storageAccounts/1babf5473b318762a6106038","name":"1babf5473b318762a6106038","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-12T03:16:41.2937876Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-12T03:16:41.2937876Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-12T03:16:41.1687735Z","primaryEndpoints":{"blob":"https://1babf5473b318762a6106038.blob.core.windows.net/","queue":"https://1babf5473b318762a6106038.queue.core.windows.net/","table":"https://1babf5473b318762a6106038.table.core.windows.net/","file":"https://1babf5473b318762a6106038.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguacco3","name":"limguacco3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T21:26:58.1750365Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T21:26:58.1750365Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T21:26:58.0657193Z","primaryEndpoints":{"blob":"https://limguacco3.blob.core.windows.net/","queue":"https://limguacco3.queue.core.windows.net/","table":"https://limguacco3.table.core.windows.net/","file":"https://limguacco3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://limguacco3-secondary.blob.core.windows.net/","queue":"https://limguacco3-secondary.queue.core.windows.net/","table":"https://limguacco3-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccount22","name":"limguaccount22","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-06T23:24:55.7425117Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-06T23:24:55.7425117Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-06T23:24:55.4925049Z","primaryEndpoints":{"blob":"https://limguaccount22.blob.core.windows.net/","queue":"https://limguaccount22.queue.core.windows.net/","table":"https://limguaccount22.table.core.windows.net/","file":"https://limguaccount22.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://limguaccount22-secondary.blob.core.windows.net/","queue":"https://limguaccount22-secondary.queue.core.windows.net/","table":"https://limguaccount22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglwtxxxotabpblyephsiknmarmfjl325ixoojyprquq6ehxx5b2wokoysglc4meehl/providers/Microsoft.Storage/storageAccounts/clistorage2jbmemj6cj","name":"clistorage2jbmemj6cj","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-12T19:25:59.1461511Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-12T19:25:59.1461511Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-12T19:25:58.8961261Z","primaryEndpoints":{"dfs":"https://clistorage2jbmemj6cj.dfs.core.windows.net/","web":"https://clistorage2jbmemj6cj.z22.web.core.windows.net/","blob":"https://clistorage2jbmemj6cj.blob.core.windows.net/","queue":"https://clistorage2jbmemj6cj.queue.core.windows.net/","table":"https://clistorage2jbmemj6cj.table.core.windows.net/","file":"https://clistorage2jbmemj6cj.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistorage2jbmemj6cj-secondary.dfs.core.windows.net/","web":"https://clistorage2jbmemj6cj-secondary.z22.web.core.windows.net/","blob":"https://clistorage2jbmemj6cj-secondary.blob.core.windows.net/","queue":"https://clistorage2jbmemj6cj-secondary.queue.core.windows.net/","table":"https://clistorage2jbmemj6cj-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigctn7dof43qy_template01/providers/Microsoft.Storage/storageAccounts/bfb52ce82c25ef24810a33a9","name":"bfb52ce82c25ef24810a33a9","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-11T18:39:29.3488382Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-11T18:39:29.3488382Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-11T18:39:29.2082141Z","primaryEndpoints":{"blob":"https://bfb52ce82c25ef24810a33a9.blob.core.windows.net/","queue":"https://bfb52ce82c25ef24810a33a9.queue.core.windows.net/","table":"https://bfb52ce82c25ef24810a33a9.table.core.windows.net/","file":"https://bfb52ce82c25ef24810a33a9.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggcbozcaoqcvyxyhsax7bevei6phf6m6yk2u4m3m2wjn7qqhph2c5dqyz2vrar2fz6/providers/Microsoft.Storage/storageAccounts/clistoragetif6h64z3n","name":"clistoragetif6h64z3n","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-16T00:22:59.7063780Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-16T00:22:59.7063780Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-10-16T00:22:59.6125763Z","primaryEndpoints":{"dfs":"https://clistoragetif6h64z3n.dfs.core.windows.net/","web":"https://clistoragetif6h64z3n.z22.web.core.windows.net/","blob":"https://clistoragetif6h64z3n.blob.core.windows.net/","queue":"https://clistoragetif6h64z3n.queue.core.windows.net/","table":"https://clistoragetif6h64z3n.table.core.windows.net/","file":"https://clistoragetif6h64z3n.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clistoragetif6h64z3n-secondary.dfs.core.windows.net/","web":"https://clistoragetif6h64z3n-secondary.z22.web.core.windows.net/","blob":"https://clistoragetif6h64z3n-secondary.blob.core.windows.net/","queue":"https://clistoragetif6h64z3n-secondary.queue.core.windows.net/","table":"https://clistoragetif6h64z3n-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlab1/providers/Microsoft.Storage/storageAccounts/acliautomationlab8902","name":"acliautomationlab8902","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"hidden-DevTestLabs-LabUId":"ca9ec547-32c5-422d-b3d2-25906ed71959"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T16:51:47.2662871Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T16:51:47.2194106Z","primaryEndpoints":{"blob":"https://acliautomationlab8902.blob.core.windows.net/","queue":"https://acliautomationlab8902.queue.core.windows.net/","table":"https://acliautomationlab8902.table.core.windows.net/","file":"https://acliautomationlab8902.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccountttt","name":"limguaccountttt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T17:20:38.2581897Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T17:20:38.2581897Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T17:20:38.1175669Z","primaryEndpoints":{"file":"https://limguaccountttt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limguaccountblock","name":"limguaccountblock","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T17:26:39.0834663Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T17:26:39.0834663Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T17:26:38.9740451Z","primaryEndpoints":{"blob":"https://limguaccountblock.blob.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limgutestpre","name":"limgutestpre","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-31T17:15:28.5367890Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-31T17:15:28.5367890Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-31T17:15:28.4117884Z","primaryEndpoints":{"file":"https://limgutestpre.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-eventgridtesting/providers/Microsoft.Storage/storageAccounts/eventgridtestin9c1e","name":"eventgridtestin9c1e","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-05-30T22:57:11.1008680Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-05-30T22:57:11.1008680Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-05-30T22:57:10.9915110Z","primaryEndpoints":{"blob":"https://eventgridtestin9c1e.blob.core.windows.net/","queue":"https://eventgridtestin9c1e.queue.core.windows.net/","table":"https://eventgridtestin9c1e.table.core.windows.net/","file":"https://eventgridtestin9c1e.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-user-assigned-webapp/providers/Microsoft.Storage/storageAccounts/lmazueltestingua2f2","name":"lmazueltestingua2f2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-07T19:14:04.4256328Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-07T19:14:04.4256328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-07T19:14:04.2224955Z","primaryEndpoints":{"blob":"https://lmazueltestingua2f2.blob.core.windows.net/","queue":"https://lmazueltestingua2f2.queue.core.windows.net/","table":"https://lmazueltestingua2f2.table.core.windows.net/","file":"https://lmazueltestingua2f2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgf2zzwtzyl6gztcqvg4tr3jybb5desp6tcslf37qil2zbk5vfcogfylz7qv6c3h376/providers/Microsoft.Storage/storageAccounts/clitestsztexxsml3gyhyk4p","name":"clitestsztexxsml3gyhyk4p","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-13T23:53:17.3585700Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-13T23:53:17.3585700Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-13T23:53:17.1554379Z","primaryEndpoints":{"blob":"https://clitestsztexxsml3gyhyk4p.blob.core.windows.net/","queue":"https://clitestsztexxsml3gyhyk4p.queue.core.windows.net/","table":"https://clitestsztexxsml3gyhyk4p.table.core.windows.net/","file":"https://clitestsztexxsml3gyhyk4p.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmazuel-testcapture/providers/Microsoft.Storage/storageAccounts/lmazueltestcapture451","name":"lmazueltestcapture451","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-06T16:46:02.5308824Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-06T16:46:02.5308824Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-06T16:46:02.4527298Z","primaryEndpoints":{"blob":"https://lmazueltestcapture451.blob.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/limgurg/providers/Microsoft.Storage/storageAccounts/limgutesttest","name":"limgutesttest","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T22:45:52.3913321Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T22:45:52.3913321Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-14T22:45:52.3288406Z","primaryEndpoints":{"dfs":"https://limgutesttest.dfs.core.windows.net/","web":"https://limgutesttest.z5.web.core.windows.net/","blob":"https://limgutesttest.blob.core.windows.net/","queue":"https://limgutesttest.queue.core.windows.net/","table":"https://limgutesttest.table.core.windows.net/","file":"https://limgutesttest.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://limgutesttest-secondary.dfs.core.windows.net/","web":"https://limgutesttest-secondary.z5.web.core.windows.net/","blob":"https://limgutesttest-secondary.blob.core.windows.net/","queue":"https://limgutesttest-secondary.queue.core.windows.net/","table":"https://limgutesttest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg326oxnqqn33y3n42vz6x5xol5rvvw3z4o6tladwwtkmcntnsxhhxxtddtrxwm2edj/providers/Microsoft.Storage/storageAccounts/clitestjwzkdsfuou3niutbd","name":"clitestjwzkdsfuou3niutbd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:07:33.1021018Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:07:33.0552270Z","primaryEndpoints":{"blob":"https://clitestjwzkdsfuou3niutbd.blob.core.windows.net/","queue":"https://clitestjwzkdsfuou3niutbd.queue.core.windows.net/","table":"https://clitestjwzkdsfuou3niutbd.table.core.windows.net/","file":"https://clitestjwzkdsfuou3niutbd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/wilxgroup3/providers/Microsoft.Storage/storageAccounts/wilxstorageworm","name":"wilxstorageworm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-13T22:36:53.1534839Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-04-13T22:36:53.0909769Z","primaryEndpoints":{"dfs":"https://wilxstorageworm.dfs.core.windows.net/","web":"https://wilxstorageworm.z3.web.core.windows.net/","blob":"https://wilxstorageworm.blob.core.windows.net/","queue":"https://wilxstorageworm.queue.core.windows.net/","table":"https://wilxstorageworm.table.core.windows.net/","file":"https://wilxstorageworm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://wilxstorageworm-secondary.dfs.core.windows.net/","web":"https://wilxstorageworm-secondary.z3.web.core.windows.net/","blob":"https://wilxstorageworm-secondary.blob.core.windows.net/","queue":"https://wilxstorageworm-secondary.queue.core.windows.net/","table":"https://wilxstorageworm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmr6jo34yofyafj3n6gjbhrgmrd6pwgguthc2u235qfle6y6ztyzrlkuqn544s7cop/providers/Microsoft.Storage/storageAccounts/clitestnlmd52jlcmr4ce7b4","name":"clitestnlmd52jlcmr4ce7b4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-04-19T20:14:07.3500611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-04-19T20:14:07.3188286Z","primaryEndpoints":{"blob":"https://clitestnlmd52jlcmr4ce7b4.blob.core.windows.net/","queue":"https://clitestnlmd52jlcmr4ce7b4.queue.core.windows.net/","table":"https://clitestnlmd52jlcmr4ce7b4.table.core.windows.net/","file":"https://clitestnlmd52jlcmr4ce7b4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '51059' + - '45954' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:09 GMT + - Fri, 14 Jun 2019 16:51:38 GMT expires: - '-1' pragma: @@ -841,10 +1079,13 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - fca8c303-28b5-4b6a-8ac3-44a21357169c - - 4b885e29-b367-44fd-94e0-0fa52883d52e - - 16bf2459-21a9-420d-8ac9-69c62069b4c0 - - 88546d74-9ecd-445d-b776-4ab9cc4e0010 + - 91ba1f59-733b-4f82-a281-805e301292c8 + - f8b87f47-e06d-4ebc-9aa3-c05e6a38e859 + - 3e320a64-cf9b-40bc-b561-5317df44acd6 + - dbeb250d-c949-425a-b4c2-3c6bf93558a7 + - 4d0c8061-1ae6-4512-a692-900b1c7e9707 + - 46277163-19d9-456a-a333-248a066f3a5e + - 49214dde-f537-4a61-ae80-eb2fd5185cce status: code: 200 message: OK @@ -864,8 +1105,8 @@ interactions: ParameterSetName: - -c -n --account-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0 + Azure-SDK-For-Python AZURECLI/2.0.66 accept-language: - en-US method: POST @@ -881,7 +1122,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:09 GMT + - Fri, 14 Jun 2019 16:51:38 GMT expires: - '-1' pragma: @@ -897,12 +1138,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK - request: - body: '{"templateUri": "https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-11-09&sr=b&sig=fy39JBx9bFTaI6VL6zzWtsXWQARwQj4SqlYNnsFEsDg%3D", + body: '{"templateUri": "https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D", "sasType": "service", "validityPeriod": "P1D", "attributes": {"enabled": true}}' headers: Accept: @@ -912,28 +1153,28 @@ interactions: Connection: - keep-alive Content-Length: - - '234' + - '236' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-11-09&sr=b&sig=fy39JBx9bFTaI6VL6zzWtsXWQARwQj4SqlYNnsFEsDg%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1578965052,"updated":1578965052,"recoveryLevel":"Purgeable"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache content-length: - - '481' + - '483' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:12 GMT + - Fri, 14 Jun 2019 16:51:39 GMT expires: - '-1' pragma: @@ -947,11 +1188,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.79;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -969,24 +1210,24 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r/?api-version=7.0 response: body: - string: '{"value":"?sv=2018-11-09&sr=b&sp=r&se=2020-01-15T01%3A24%3A14Z&sig=Tk2WUgJ1zVa6dukNpShrU3c4BnUFE%2FbJTI5jsOWHTPs%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1579051454,"recoveryLevel":"Purgeable"}}' + string: '{"value":"?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A40Z&sig=QK0yd2QZBmWGXbE4wn2hGcP8i8CO79gnqBG8DF2zdEs%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1560617500,"recoveryLevel":"Purgeable"}}' headers: cache-control: - no-cache content-length: - - '349' + - '347' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:13 GMT + - Fri, 14 Jun 2019 16:51:39 GMT expires: - '-1' pragma: @@ -1000,11 +1241,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.79;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -1016,27 +1257,891 @@ interactions: Connection: - keep-alive User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.4; Windows 10) AZURECLI/2.0.79 + - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 x-ms-date: - - Tue, 14 Jan 2020 01:24:14 GMT + - Fri, 14 Jun 2019 16:51:40 GMT x-ms-version: - - '2018-11-09' + - '2018-03-28' method: HEAD - uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-11-09&sr=b&sp=r&se=2020-01-15T01%3A24%3A14Z&sig=Tk2WUgJ1zVa6dukNpShrU3c4BnUFE%2FbJTI5jsOWHTPs%3D + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A40Z&sig=QK0yd2QZBmWGXbE4wn2hGcP8i8CO79gnqBG8DF2zdEs%3D response: body: string: '' headers: + accept-ranges: + - bytes + content-length: + - '42' + content-md5: + - oyaT6AGPWTpUFslcIAG1hw== + content-type: + - text/plain date: - - Tue, 14 Jan 2020 01:24:14 GMT + - Fri, 14 Jun 2019 16:51:39 GMT + etag: + - '"0x8D6F0E8913BA18F"' + last-modified: + - Fri, 14 Jun 2019 16:51:37 GMT server: - - Microsoft-HTTPAPI/2.0 - transfer-encoding: - - chunked - x-ms-error-code: - - AuthenticationFailed + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 14 Jun 2019 16:51:37 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-03-28' status: - code: 403 - message: Server failed to authenticate the request. Make sure the value of Authorization - header is formed correctly including the signature. + code: 200 + message: OK +- request: + body: '{"keyName": "key1"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '19' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/regeneratekey?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r/?api-version=7.0 + response: + body: + string: '{"value":"?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A43Z&sig=yYS7eX%2FcYyfFF%2FAYxe9%2BV9bgOADdb%2B68Q38PYWl0tIA%3D","contentType":"application/vnd.ms-sastoken-storage","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","managed":true,"attributes":{"enabled":true,"exp":1560617503,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '355' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - keep-alive + User-Agent: + - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.6.8; Windows 10) AZURECLI/2.0.66 + x-ms-date: + - Fri, 14 Jun 2019 16:51:43 GMT + x-ms-version: + - '2018-03-28' + method: HEAD + uri: https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sv=2018-03-28&sr=b&sp=r&se=2019-06-15T16%3A51%3A43Z&sig=yYS7eX%2FcYyfFF%2FAYxe9%2BV9bgOADdb%2B68Q38PYWl0tIA%3D + response: + body: + string: '' + headers: + accept-ranges: + - bytes + content-length: + - '42' + content-md5: + - oyaT6AGPWTpUFslcIAG1hw== + content-type: + - text/plain + date: + - Fri, 14 Jun 2019 16:51:42 GMT + etag: + - '"0x8D6F0E8913BA18F"' + last-modified: + - Fri, 14 Jun 2019 16:51:37 GMT + server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + x-ms-blob-type: + - BlockBlob + x-ms-creation-time: + - Fri, 14 Jun 2019 16:51:37 GMT + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-server-encrypted: + - 'true' + x-ms-version: + - '2018-03-28' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas?api-version=7.0 + response: + body: + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}},{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '615' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '483' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '479' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/blob1r","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-blob1r","templateUri":"https://clitestkvsa0000002.blob.core.windows.net/cont1/blob1?sp=r&sv=2018-03-28&sr=b&sig=8ATp3smhdIDA%2BFt0TPW1Q840tPdHnvfEYO126VPgsI8%3D","sasType":"service","validityPeriod":"P1D","attributes":{"enabled":true,"created":1560531099,"updated":1560531099,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '483' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas/allacctaccess","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/clitestkvsa0000002-allacctaccess","templateUri":"se=2020-01-01&sp=rwdlacup&spr=https&sv=2018-03-28&ss=bqtf&srt=sco&sig=vAqVNGEF20vtk4N%2ByoRgJONMmzWu39asaLu7qaSs8Pw%3D","sasType":"account","validityPeriod":"PT4H","attributes":{"enabled":true,"created":1560531096,"updated":1560531096,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '479' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002/sas?api-version=7.0 + response: + body: + string: '{"value":[],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '28' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/secrets?api-version=7.0 + response: + body: + string: '{"value":[],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '28' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage?api-version=7.0 + response: + body: + string: '{"value":[{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '433' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002?api-version=7.0 + response: + body: + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/storage/clitestkvsa0000002","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa000001/providers/Microsoft.Storage/storageAccounts/clitestkvsa0000002","activeKeyName":"key1","autoRegenerateKey":true,"regenerationPeriod":"P90D","attributes":{"enabled":true,"created":1560531102,"updated":1560531102,"recoveryLevel":"Purgeable"}}' + headers: + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://cli-test-keyvault-000002.vault.azure.net/storage?api-version=7.0 + response: + body: + string: '{"value":[],"nextLink":null}' + headers: + cache-control: + - no-cache + content-length: + - '28' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 14 Jun 2019 16:51:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.79;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.6.8 (Windows-10-10.0.17763-SP0) msrest/0.6.4 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.66 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_keyvault_sa000001?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 14 Jun 2019 16:51:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGS0VZVkFVTFQ6NUZTQTdWUVRUVkg3VjdKSUdMRUFUTUtaV3w4N0UwMEZBM0RDODhCMkVFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-05-10 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted version: 1 From 4f20fb033c96725ec73d6566aaf47b0ee604b44f Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 11:23:42 +0800 Subject: [PATCH 37/51] pass keyvault_softdelet --- .../recordings/test_keyvault_softdelete.yaml | 1434 ++++++++++++++++- 1 file changed, 1369 insertions(+), 65 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml index 86a0b5088bc..adb015135af 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml +++ b/src/azure-cli/azure/cli/command_modules/keyvault/tests/latest/recordings/test_keyvault_softdelete.yaml @@ -31,19 +31,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:23:25 GMT + - Fri, 27 Dec 2019 15:02:25 GMT duration: - - '2389455' + - '3421103' expires: - '-1' ocp-aad-diagnostics-server-name: - - 08YU0IxZ9gKU1vId0ceklYsBswf3+92fGse+Uu+6oFI= + - 4dYZ1x59KpvPnfg8gEGe7Et40rOFLuoCyqMAAOutonQ= ocp-aad-session-key: - - rZUv-5t9MNMo3NHNHTtCLy8-vewdzsiYDcyY2WfPgVi6oU_v3bUyW5tXVj9iz0B1GYRpzcyVFphtm6Za2mq23OnABfrQTJXwIRol7R5V3e2NKfPTsyPRrxcxe-bEKH3Lv3HxKWw4Z32laHopAadtF7ORQZUffcaHKjbArIsT5Dk.FvTUxwtFdb_B69kKZN3TxFUIja0ypV6GIrvHSiACm1Y + - 2iykL4ivxuWtdJbWjWP-cddSVV-J_7emW-0WtQezn1P0m-HDZkHBO2eCdO2B3_XDcvdEhxwi5IWhDPH4HoCILsW56UYg6gMHa0osBcfpJze2K3AeYuPBmqNrZLybehAzunrT94Z7FwQYpreZ3Jixk8LECJAXi8pmytLAJCe9I3M.kNDAkFsO9FnKiBc2ZZuNqv3GDQ1H44TyW6CXw2cnVCY pragma: - no-cache request-id: - - c4249f97-a425-47ba-adf4-c11954b9fd75 + - 8703d7b6-3056-44a7-a042-8029f1a9d31c strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -83,7 +83,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:35 GMT + - Fri, 27 Dec 2019 15:02:33 GMT expires: - '-1' pragma: @@ -140,7 +140,7 @@ interactions: - -g -n -l --sku --enable-soft-delete User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 response: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:07 GMT + - Fri, 27 Dec 2019 15:03:06 GMT expires: - '-1' pragma: @@ -195,23 +195,23 @@ interactions: - -n --object-id --key-permissions --secret-permissions --certificate-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","name":"yugangwbyok","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certbk3fay3vvkixlzogwucbyymtjdhws2ojd47jesq2q6mb6k4gty7wp/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-feryep","name":"cli-test-keyvault-feryep","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_saxgau4bydccjibwzr2wfspkrfubvrgqest4vbwj52ltuk6sjnuhii7sa/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-fa22px","name":"cli-test-keyvault-fa22px","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret5yhunrxgffpbqtbiesczpnqmfdbqxjkzb2rd7ychconne3iherr/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-pgndvw","name":"cli-test-keyvault-pgndvw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5xwvxujgqsmaygl3epc6r75gcu5cjetkecvw43ksukxvzdhmqj/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tz6oq","name":"cli-test-keyvault-3tz6oq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3cfe5iai5q7lhl3l233jrs4wt7ky543gdmrojqsyeryb3rhg5qbv5lm3t55y2xjqb/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-hyiplwf6d67h","name":"sfrp-cli-kv-hyiplwf6d67h","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","name":"yugangw30-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '2992' + - '11434' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:08 GMT + - Fri, 27 Dec 2019 15:03:08 GMT expires: - '-1' pragma: @@ -242,7 +242,7 @@ interactions: - -n --object-id --key-permissions --secret-permissions --certificate-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: GET @@ -258,7 +258,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:09 GMT + - Fri, 27 Dec 2019 15:03:09 GMT expires: - '-1' pragma: @@ -311,7 +311,7 @@ interactions: - -n --object-id --key-permissions --secret-permissions --certificate-permissions User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 accept-language: - en-US method: PUT @@ -327,7 +327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:11 GMT + - Fri, 27 Dec 2019 15:03:12 GMT expires: - '-1' pragma: @@ -347,7 +347,7 @@ interactions: x-ms-keyvault-service-version: - 1.1.0.269 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1187' x-powered-by: - ASP.NET status: @@ -385,7 +385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:13 GMT + - Fri, 27 Dec 2019 15:03:14 GMT expires: - '-1' pragma: @@ -434,7 +434,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f482e4b7438440eea6afa2aaaf6b1959","attributes":{"enabled":true,"created":1578965054,"updated":1578965054,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ded87df945ab4ed39dd3a3a4fb5a1b2f","attributes":{"enabled":true,"created":1577458997,"updated":1577458997,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -443,7 +443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:13 GMT + - Fri, 27 Dec 2019 15:03:17 GMT expires: - '-1' pragma: @@ -489,7 +489,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2?api-version=7.0 response: body: - string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/c73d61216f064d119f18f9c4c64ea554","attributes":{"enabled":true,"created":1578965055,"updated":1578965055,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"value":"ABC123","id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/66075a849fa8400e8c810cba15612e4b","attributes":{"enabled":true,"created":1577458999,"updated":1577458999,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:16 GMT + - Fri, 27 Dec 2019 15:03:19 GMT expires: - '-1' pragma: @@ -544,7 +544,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key1/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/cc49ed8ae0be4947b5c1f17a12ff6cdd","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"wlGMgA0g9QO7qhHIl3wplrAytNTcs3FS74Zd11HtNWackfwNNUheE__tL2hCS2C7U8yVqzA2l8y198H6i-9YGc8JNAZNYqWsO5Q1xzS382FOO7AighqU-iUgjWmXeNPqJ804zqzpV-7ZNMFtjI6pVZUgFTndqz0H9aMiu4nqh4X2BYSjE-eQ4JvdNYAnYNY8NodFFr7LxBH-3KsHvBgkOYoYZ04-eaVHY38ItjaqNoeJfJSrw2FtmkeRe-ZmJTMOshwEujO4L_zLWaQWb6MlXZkzIt3CUP8OoTqmDEB5SGcs2LK_9BLQcAuyf2XJCx4sbcAmg_7H6GTci14eqtWzsw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965057,"updated":1578965057,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/e14f9bb9b1234453b96d4c2e0dc3385a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yKgDsu1n1_kkOlSGjlXVnx_Ok9q32AQH5g7GxriXlgfOg91Gpyp8G1eFijmmtFxbuJtyDk0VSYOk0cLmf_61hxGD8MVWHRU-BfFsYSIIos3B7OkJxTF9cFaDedZCeED7ELtF4Z6ZIzL4O17i-_kjsHWQh5fTDhnEUifJOgtkuqbeWwikHKUwO99eKRwQKJYm0oiC4vDMoRVynq_4D09kG5o5pqfOFv1mP-GVESGq3F0nrGHs5sVsZO7NcYR9-SAiit0mWAvFeLBzmKaLrSUCJHHoeU2rdh99NIMlHgooZDIr1F9epJZFuFgb8CVC4PON5L2rmwcnJ5nPXn0iaYwQOQ","e":"AQAB"},"attributes":{"enabled":true,"created":1577459002,"updated":1577459002,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:17 GMT + - Fri, 27 Dec 2019 15:03:21 GMT expires: - '-1' pragma: @@ -599,7 +599,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key2/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/1873c4b98d6b4a75b38a1147eb4ea6b0","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vXGc5mwUUIRKeLougzXO9_-GNCVkjQtIMlwf5jjU52eGrEDME0ubM6EWJaY4fKbemOhLdzqV9dTc86CL7Y5W8OPcHdIPnTATSrxA1H9KZvWBydXciHTaWtlK24W05-rmDnj0gn_qxSGe92caEkCn10sdAg28bX4q8hoy8k18N_C_L60kFoPe9a3zPW4reRvw_reDYeYq6EXjDGvHsRcoJUKRvNhU0FVUAvq9q9FCweh9AUmYywVJ55DiT3WpzCkk7Fj_Me_zGmdmNtkGgGx_PrnHfmentGZjSv9m_pqzbGJZvGkqRNtMrB4vkvwEs_aXRoib_sq15rsGSWFFh5zGDw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965059,"updated":1578965059,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/0bda2afc1c6b4d498a38e2fb81b9e4f9","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"qSBlS3iA01YjD4Lt1a5kYdtviem5eX5IQLgFKXmixzkGrWz_spKdvm2XqDgUwSGW9x1pxtKNgu2eJqO7BUCRP1Jo13u-R7jy-8brb7_Irq3qd0d1_QWo3JAAiqZIXcFx7M6Gz_u0kjguEPU8h1m56ScG_dYEq86gQosJzlqL5cUjLS8Q7u0ELo7U4fcSwP7dXaHn_u1GgJRbjOeouIqauQh_aevkxF7B4CSlvw1Svzh18pyn8Yap6TGta6szYF2fccowhkPy682tMjXcJ6AeZXUoFdtRm0wQmrDQ7U-2w4QQKvVp_Ev_sSaWVVTvRNwJ7ve6hPbZjqLSE5_ICWOj7w","e":"AQAB"},"attributes":{"enabled":true,"created":1577459004,"updated":1577459004,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -608,7 +608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:18 GMT + - Fri, 27 Dec 2019 15:03:23 GMT expires: - '-1' pragma: @@ -659,8 +659,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/77158610e8af47bbb66456cce7bb39be","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/77158610e8af47bbb66456cce7bb39be","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/77158610e8af47bbb66456cce7bb39be","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965061,"updated":1578965061,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965061,"updated":1578965061}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/61b328072c3349808875ba16c6a73fbf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/61b328072c3349808875ba16c6a73fbf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/61b328072c3349808875ba16c6a73fbf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459006,"updated":1577459006,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459006,"updated":1577459006}}}' headers: cache-control: - no-cache @@ -669,7 +669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:21 GMT + - Fri, 27 Dec 2019 15:03:26 GMT expires: - '-1' pragma: @@ -720,8 +720,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/import?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/0c6236b8314e42b8ba6abfb59539121a","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/0c6236b8314e42b8ba6abfb59539121a","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/0c6236b8314e42b8ba6abfb59539121a","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965064,"updated":1578965064,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965064,"updated":1578965064}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/e2e7d41525914d86be0157503cf884bf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/e2e7d41525914d86be0157503cf884bf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/e2e7d41525914d86be0157503cf884bf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459009,"updated":1577459009,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459009,"updated":1577459009}}}' headers: cache-control: - no-cache @@ -730,7 +730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:23 GMT + - Fri, 27 Dec 2019 15:03:29 GMT expires: - '-1' pragma: @@ -776,7 +776,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1578965066,"scheduledPurgeDate":1586741066,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f482e4b7438440eea6afa2aaaf6b1959","attributes":{"enabled":true,"created":1578965054,"updated":1578965054,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1","deletedDate":1577459011,"scheduledPurgeDate":1585235011,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ded87df945ab4ed39dd3a3a4fb5a1b2f","attributes":{"enabled":true,"created":1577458997,"updated":1577458997,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -785,7 +785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:26 GMT + - Fri, 27 Dec 2019 15:03:31 GMT expires: - '-1' pragma: @@ -831,7 +831,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret2","deletedDate":1578965068,"scheduledPurgeDate":1586741068,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/c73d61216f064d119f18f9c4c64ea554","attributes":{"enabled":true,"created":1578965055,"updated":1578965055,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret2","deletedDate":1577459014,"scheduledPurgeDate":1585235014,"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret2/66075a849fa8400e8c810cba15612e4b","attributes":{"enabled":true,"created":1577458999,"updated":1577458999,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -840,7 +840,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:28 GMT + - Fri, 27 Dec 2019 15:03:34 GMT expires: - '-1' pragma: @@ -886,7 +886,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1","deletedDate":1578965070,"scheduledPurgeDate":1586741070,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/cc49ed8ae0be4947b5c1f17a12ff6cdd","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"wlGMgA0g9QO7qhHIl3wplrAytNTcs3FS74Zd11HtNWackfwNNUheE__tL2hCS2C7U8yVqzA2l8y198H6i-9YGc8JNAZNYqWsO5Q1xzS382FOO7AighqU-iUgjWmXeNPqJ804zqzpV-7ZNMFtjI6pVZUgFTndqz0H9aMiu4nqh4X2BYSjE-eQ4JvdNYAnYNY8NodFFr7LxBH-3KsHvBgkOYoYZ04-eaVHY38ItjaqNoeJfJSrw2FtmkeRe-ZmJTMOshwEujO4L_zLWaQWb6MlXZkzIt3CUP8OoTqmDEB5SGcs2LK_9BLQcAuyf2XJCx4sbcAmg_7H6GTci14eqtWzsw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965057,"updated":1578965057,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1","deletedDate":1577459016,"scheduledPurgeDate":1585235016,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/e14f9bb9b1234453b96d4c2e0dc3385a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yKgDsu1n1_kkOlSGjlXVnx_Ok9q32AQH5g7GxriXlgfOg91Gpyp8G1eFijmmtFxbuJtyDk0VSYOk0cLmf_61hxGD8MVWHRU-BfFsYSIIos3B7OkJxTF9cFaDedZCeED7ELtF4Z6ZIzL4O17i-_kjsHWQh5fTDhnEUifJOgtkuqbeWwikHKUwO99eKRwQKJYm0oiC4vDMoRVynq_4D09kG5o5pqfOFv1mP-GVESGq3F0nrGHs5sVsZO7NcYR9-SAiit0mWAvFeLBzmKaLrSUCJHHoeU2rdh99NIMlHgooZDIr1F9epJZFuFgb8CVC4PON5L2rmwcnJ5nPXn0iaYwQOQ","e":"AQAB"},"attributes":{"enabled":true,"created":1577459002,"updated":1577459002,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -895,7 +895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:29 GMT + - Fri, 27 Dec 2019 15:03:36 GMT expires: - '-1' pragma: @@ -941,7 +941,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/keys/key2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key2","deletedDate":1578965072,"scheduledPurgeDate":1586741072,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/1873c4b98d6b4a75b38a1147eb4ea6b0","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vXGc5mwUUIRKeLougzXO9_-GNCVkjQtIMlwf5jjU52eGrEDME0ubM6EWJaY4fKbemOhLdzqV9dTc86CL7Y5W8OPcHdIPnTATSrxA1H9KZvWBydXciHTaWtlK24W05-rmDnj0gn_qxSGe92caEkCn10sdAg28bX4q8hoy8k18N_C_L60kFoPe9a3zPW4reRvw_reDYeYq6EXjDGvHsRcoJUKRvNhU0FVUAvq9q9FCweh9AUmYywVJ55DiT3WpzCkk7Fj_Me_zGmdmNtkGgGx_PrnHfmentGZjSv9m_pqzbGJZvGkqRNtMrB4vkvwEs_aXRoib_sq15rsGSWFFh5zGDw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965059,"updated":1578965059,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key2","deletedDate":1577459019,"scheduledPurgeDate":1585235019,"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key2/0bda2afc1c6b4d498a38e2fb81b9e4f9","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"qSBlS3iA01YjD4Lt1a5kYdtviem5eX5IQLgFKXmixzkGrWz_spKdvm2XqDgUwSGW9x1pxtKNgu2eJqO7BUCRP1Jo13u-R7jy-8brb7_Irq3qd0d1_QWo3JAAiqZIXcFx7M6Gz_u0kjguEPU8h1m56ScG_dYEq86gQosJzlqL5cUjLS8Q7u0ELo7U4fcSwP7dXaHn_u1GgJRbjOeouIqauQh_aevkxF7B4CSlvw1Svzh18pyn8Yap6TGta6szYF2fccowhkPy682tMjXcJ6AeZXUoFdtRm0wQmrDQ7U-2w4QQKvVp_Ev_sSaWVVTvRNwJ7ve6hPbZjqLSE5_ICWOj7w","e":"AQAB"},"attributes":{"enabled":true,"created":1577459004,"updated":1577459004,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -950,7 +950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:31 GMT + - Fri, 27 Dec 2019 15:03:39 GMT expires: - '-1' pragma: @@ -996,8 +996,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1","deletedDate":1578965074,"scheduledPurgeDate":1586741074,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/77158610e8af47bbb66456cce7bb39be","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/77158610e8af47bbb66456cce7bb39be","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/77158610e8af47bbb66456cce7bb39be","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965061,"updated":1578965061,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965061,"updated":1578965061}}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1","deletedDate":1577459021,"scheduledPurgeDate":1585235021,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/61b328072c3349808875ba16c6a73fbf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/61b328072c3349808875ba16c6a73fbf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/61b328072c3349808875ba16c6a73fbf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459006,"updated":1577459006,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459006,"updated":1577459006}}}' headers: cache-control: - no-cache @@ -1006,7 +1006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:33 GMT + - Fri, 27 Dec 2019 15:03:40 GMT expires: - '-1' pragma: @@ -1052,8 +1052,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2?api-version=7.0 response: body: - string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2","deletedDate":1578965076,"scheduledPurgeDate":1586741076,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/0c6236b8314e42b8ba6abfb59539121a","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/0c6236b8314e42b8ba6abfb59539121a","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/0c6236b8314e42b8ba6abfb59539121a","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965064,"updated":1578965064,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965064,"updated":1578965064}}}' + string: '{"recoveryId":"https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2","deletedDate":1577459023,"scheduledPurgeDate":1585235023,"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/e2e7d41525914d86be0157503cf884bf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert2/e2e7d41525914d86be0157503cf884bf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert2/e2e7d41525914d86be0157503cf884bf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459009,"updated":1577459009,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert2/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459009,"updated":1577459009}}}' headers: cache-control: - no-cache @@ -1062,7 +1062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:35 GMT + - Fri, 27 Dec 2019 15:03:43 GMT expires: - '-1' pragma: @@ -1108,7 +1108,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedsecrets/secret1/recover?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/f482e4b7438440eea6afa2aaaf6b1959","attributes":{"enabled":true,"created":1578965054,"updated":1578965054,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/secrets/secret1/ded87df945ab4ed39dd3a3a4fb5a1b2f","attributes":{"enabled":true,"created":1577458997,"updated":1577458997,"recoveryLevel":"Recoverable+Purgeable"},"tags":{"file-encoding":"utf-8"}}' headers: cache-control: - no-cache @@ -1117,7 +1117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:57 GMT + - Fri, 27 Dec 2019 15:04:05 GMT expires: - '-1' pragma: @@ -1163,7 +1163,7 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedkeys/key1/recover?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/cc49ed8ae0be4947b5c1f17a12ff6cdd","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"wlGMgA0g9QO7qhHIl3wplrAytNTcs3FS74Zd11HtNWackfwNNUheE__tL2hCS2C7U8yVqzA2l8y198H6i-9YGc8JNAZNYqWsO5Q1xzS382FOO7AighqU-iUgjWmXeNPqJ804zqzpV-7ZNMFtjI6pVZUgFTndqz0H9aMiu4nqh4X2BYSjE-eQ4JvdNYAnYNY8NodFFr7LxBH-3KsHvBgkOYoYZ04-eaVHY38ItjaqNoeJfJSrw2FtmkeRe-ZmJTMOshwEujO4L_zLWaQWb6MlXZkzIt3CUP8OoTqmDEB5SGcs2LK_9BLQcAuyf2XJCx4sbcAmg_7H6GTci14eqtWzsw","e":"AQAB"},"attributes":{"enabled":true,"created":1578965057,"updated":1578965057,"recoveryLevel":"Recoverable+Purgeable"}}' + string: '{"key":{"kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/key1/e14f9bb9b1234453b96d4c2e0dc3385a","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"yKgDsu1n1_kkOlSGjlXVnx_Ok9q32AQH5g7GxriXlgfOg91Gpyp8G1eFijmmtFxbuJtyDk0VSYOk0cLmf_61hxGD8MVWHRU-BfFsYSIIos3B7OkJxTF9cFaDedZCeED7ELtF4Z6ZIzL4O17i-_kjsHWQh5fTDhnEUifJOgtkuqbeWwikHKUwO99eKRwQKJYm0oiC4vDMoRVynq_4D09kG5o5pqfOFv1mP-GVESGq3F0nrGHs5sVsZO7NcYR9-SAiit0mWAvFeLBzmKaLrSUCJHHoeU2rdh99NIMlHgooZDIr1F9epJZFuFgb8CVC4PON5L2rmwcnJ5nPXn0iaYwQOQ","e":"AQAB"},"attributes":{"enabled":true,"created":1577459002,"updated":1577459002,"recoveryLevel":"Recoverable+Purgeable"}}' headers: cache-control: - no-cache @@ -1172,7 +1172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:00 GMT + - Fri, 27 Dec 2019 15:04:07 GMT expires: - '-1' pragma: @@ -1218,8 +1218,8 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert1/recover?api-version=7.0 response: body: - string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/77158610e8af47bbb66456cce7bb39be","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/77158610e8af47bbb66456cce7bb39be","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/77158610e8af47bbb66456cce7bb39be","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1578965061,"updated":1578965061,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet - Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965061,"updated":1578965061}}}' + string: '{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/61b328072c3349808875ba16c6a73fbf","kid":"https://cli-test-keyvault-000002.vault.azure.net/keys/cert1/61b328072c3349808875ba16c6a73fbf","sid":"https://cli-test-keyvault-000002.vault.azure.net/secrets/cert1/61b328072c3349808875ba16c6a73fbf","x5t":"XLACe2aagyq0ncVXgsRP3-dgFks","cer":"MIIDazCCAlOgAwIBAgIUPYpi/CMVjq2r+7PX1JWAzsUeFqQwDQYJKoZIhvcNAQELBQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZDAeFw0xOTEwMTUwNjAxMDlaFw0yOTEwMTIwNjAxMDlaMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6ktKsm/OX1Xo6YxRg5/zUQnTEC5Lb5sGtLPmgpbh1qmbXQyn+cC1A/pLL7G5//3vVvis707gTsxn25mpL3B31krShElqEYhdm22MKt1EjPOpW2QX5wNTRdh3C2/KJuhQCnWoUmd1fwY6lQvSrJIyu6IjB7sO6IsL1Y2iqsSwNFf7Prr7NeizYkOqEZ1YVRcIp71lzthrRcAUGo/rDdM61St/JWIM7F0RNyZTlTw1EFWGpE+RKN41zyfkWE4VdMctLMeL9XIPxGLseWmZXDwUwxb/yPy3MOfYE4ZCfzwOIBNmyI6jKz2qxtISPKrK/Ba+YWufjZ56G7yVxtmjllwazAgMBAAGjUzBRMB0GA1UdDgQWBBRIwEHMjAQuWfatNPhtcBGSKHOXrTAfBgNVHSMEGDAWgBRIwEHMjAQuWfatNPhtcBGSKHOXrTAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQCpSX9YnqyWuMBCcJ+xFzonYFNTeVDfSW3jmZhia1YJySrhtUkSk+ObFt3OS7ApP1YysEY1OLwt73ajnGFh0lwJ7bb42ThAVbDrY61aL290/NkHtX1ESRzd6pNrn66nEVUw40HWPjOzWqLEgQDhNv1jsOpFeLZufNbqnNkCdQh/B4A759FWMicpDWSS1YrIOkxa3Bxe2NH7yxpH8LCR2SSbaF/dtKJjUxXnd862mC5zQNZp5sMhjH0/qDCUN237DescgyGcWJHU19YZzoD3DcJxkDufBf1VRiWdv/mCA56lsUBU3FFydN5a3dkFjRw/6dpCZAE8aGCvioLFBAoeLeTP","attributes":{"enabled":true,"nbf":1571119269,"exp":1886479269,"created":1577459006,"updated":1577459006,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://cli-test-keyvault-000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":false},"secret_props":{"contentType":"application/x-pem-file"},"x509_props":{"subject":"O=Internet + Widgits Pty Ltd, S=Some-State, C=AU","ekus":[],"key_usage":[],"validity_months":120,"basic_constraints":{"ca":true}},"lifetime_actions":[{"trigger":{"lifetime_percentage":80},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1577459006,"updated":1577459006}}}' headers: cache-control: - no-cache @@ -1228,7 +1228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:01 GMT + - Fri, 27 Dec 2019 15:04:10 GMT expires: - '-1' pragma: @@ -1279,7 +1279,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 01:25:03 GMT + - Fri, 27 Dec 2019 15:04:12 GMT expires: - '-1' pragma: @@ -1330,7 +1330,7 @@ interactions: cache-control: - no-cache date: - - Tue, 14 Jan 2020 01:25:05 GMT + - Fri, 27 Dec 2019 15:04:14 GMT expires: - '-1' pragma: @@ -1376,17 +1376,12 @@ interactions: uri: https://cli-test-keyvault-000002.vault.azure.net/deletedcertificates/cert2?api-version=7.0 response: body: - string: '{"error":{"code":"Conflict","message":"Certificate is currently being - deleted.","innererror":{"code":"ObjectIsBeingDeleted"}}}' + string: '' headers: cache-control: - no-cache - content-length: - - '126' - content-type: - - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:08 GMT + - Fri, 27 Dec 2019 15:04:17 GMT expires: - '-1' pragma: @@ -1408,6 +1403,1315 @@ interactions: x-powered-by: - ASP.NET status: - code: 409 - message: Conflict + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault delete + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11434' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:04:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - keyvault delete + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 27 Dec 2019 15:04:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault recover + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-be6s7zn","name":"cli-test-kevault-be6s7zn","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretwrt4o34cqnpv4st3cigemfvqqc2tnxjelxj6d3mkhgkxqqnnqv7/providers/Microsoft.KeyVault/vaults/cli-test-kevault-be6s7zn","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:17:12Z","scheduledPurgeDate":"2020-03-05T09:17:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:04:21Z","scheduledPurgeDate":"2020-03-26T15:04:21Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-veymyk","name":"cli-test-keyvault-veymyk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretbm4difszfjpzxnbrjcrhmkdsqthsqm4tsgcc6c65y7khbigz5rn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-veymyk","location":"westus","tags":{},"deletionDate":"2019-12-27T14:31:32Z","scheduledPurgeDate":"2020-03-26T14:31:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtvqhr345","name":"cli-keyvault-mgmtvqhr345","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtvqhr345","location":"westus","tags":{},"deletionDate":"2019-12-27T08:19:19Z","scheduledPurgeDate":"2020-03-26T08:19:19Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softjj2kztp","name":"cli-keyvault-softjj2kztp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretip43rtw6yezopevffgobsqbod6zz36f6se6b2wb2o5ixoizln36/providers/Microsoft.KeyVault/vaults/cli-keyvault-softjj2kztp","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:35Z","scheduledPurgeDate":"2020-03-26T08:18:35Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtr7a6xhe","name":"cli-keyvault-mgmtr7a6xhe","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtkdmnuko3glg4pd7yg5mreavlh3knlz7h3qjgf2xti773hf4rprzen/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtr7a6xhe","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:10Z","scheduledPurgeDate":"2020-03-26T08:18:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtew3cglh","name":"cli-keyvault-mgmtew3cglh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtew3cglh","location":"westus","tags":{},"deletionDate":"2019-12-27T08:16:29Z","scheduledPurgeDate":"2020-03-26T08:16:29Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-67qn6veyxoest","name":"vault2-67qn6veyxoest","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault2-67qn6veyxoest","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-dk77xkq42y62f","name":"vault1-dk77xkq42y62f","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault1-dk77xkq42y62f","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-fjhnwonczlt6t","name":"vault2-fjhnwonczlt6t","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault2-fjhnwonczlt6t","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-xzdscdoaut5ps","name":"vault1-xzdscdoaut5ps","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault1-xzdscdoaut5ps","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe40-kv","name":"yugangwe40-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe40/providers/Microsoft.KeyVault/vaults/yugangwe40-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:15Z","scheduledPurgeDate":"2020-03-18T01:27:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe10-kv","name":"yugangwe10-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe10/providers/Microsoft.KeyVault/vaults/yugangwe10-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:04Z","scheduledPurgeDate":"2020-03-18T01:27:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbpswFIbfJZp2tTSGwJZWqiZSm4ys53h2bCp6lxKSBqdJFdIFPPXdd5imaa%2fQXiCEdITlT9%2f%2fn1%2bDfdWebrd71wyufg1QavPtRqDRya1dDK4Gj6fTc3M1Gj0t98tN9VTtTxdL%2f3KsLsrD06h5eWjK4%2fb5tD3smxF7CNafoy%2fBMHhYs2G0Wi2Hy6ocD8uHy%2fBLuGaX8SUbPR8PP7er6tiMYFseD81hfbr4XnX58mV3Gq2qXXWqVn8%2bmq%2fL5%2b3wJ03Sz69DFkyGLBwG0ccPjaMTD67aX1uX3%2bl8brTVqRG5XdhLeWt3ds2zAMymw7oYY%2b1C9CKU3MZo8ok2Ravqgklxz8Eqj6KIaOaszU6As2flrNfGdiBg8GmwkNZ8E8nCJIssees4JCccBroeBZiMIb%2bfaJ6cod6E6NIb5JsIedKi2U2VE6EyRYzOBljbWNeWcPQk7CJ8%2byCyAE3hgRcB8Mwj303Az2%2b0yzla8OinHLmLJTmBdRIrlqbSwBjJGWS9F%2b8mIpJvPNbQEQpyoqTIrAiFi9AVFJlUoLsnL6apdtkZedlKrmfgBJNmE0v7LyLvhYcHIzwxacn5COgNfjWh2uC6dpE0KlD1o6CMxFKIEIWNlck65XWqjQu0UaTGnegz8tYjQl0QYp21wJOx5CoETtXJp1yZdAbGdejmFBHrlRVj5UULddn7M1YMGPjei57De9GCYgEB9JuElx34MpYcJ4rpmWJFp8yKNklOWiDXQkSa51PV68JFqE0WqbrH8bc6hU1%2bvHk3DGXDONolmw5McQZaq5SVCD202uEM%2bZyeNKWZAITqq7alPeNpPtBW%2fF%2bf7wNH0YKxIZqE1qeL6eoTYKKVgmrB5jNk6RQFzpSbp8qmXBrC06OyFCWmBq%2bvvwE%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '22553' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:04:29 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: + - 4c342f5d-e247-4c0c-b3a9-304301928867 + - 55a1051a-8b84-41ba-9a34-02bf657e6e59 + - 2c2b8ddd-ae97-4eb5-bc67-dfd965773f21 + - 519aeb1b-c705-4da0-b4d7-3df8a24b8ec7 + - 053e4e74-dbbb-4dbb-a37f-3b4084bc7b14 + - c90fd948-eee5-4b77-b255-42f54cda9134 + - fe86b37e-41b3-4166-b947-00d74975fb74 + - 6b928583-08a0-40e2-9ee0-11fb45b53d9b + - 3924ac4b-1adf-42f9-8c9e-207c7dfcf342 + - 76e06495-3d3e-494b-9195-061d4f168d24 + - c45609fc-69b6-454f-b8d2-9f7706d51994 + - 08263d7c-1196-435a-b580-832dfc888e21 + - 32dfb557-2579-4d69-89ed-a3794f1198b2 + - f1e969a8-557f-4df0-bd3f-5ff182cac70f + - 8f1101aa-8532-4241-a7f5-e3c2dc28ff49 + - b8d9a55a-50bd-4c54-b3df-9b37448546ee + - 3befdb8a-e5df-4b55-90cf-d9a6c6714747 + - f2da047f-959b-4c4f-9fec-2ba9d4402aa7 + - 8bfb73fd-a967-45a8-8a0d-2ea5a58f7ab0 + - d2781155-312f-4cee-907d-ae8064425f8d + - b87b4aed-1475-41d6-a005-13e7634bf27b + - a20eca2f-03d0-4c5a-a91b-6b355492a156 + - 476de91a-820f-4274-b292-725b94c342e3 + - f5028d93-226b-447e-9c1f-dec5a825b949 + - 482a3387-89b5-4ac7-ac83-ebe6cc6a4bf1 + - 6b6e2b08-da25-4ec5-93fb-cb2421df8d10 + - 4f44137b-a553-491c-826d-c177ae34cf26 + - 4db1e5ce-2eec-4a61-99b1-db2e0ed16713 + - 116238c2-8a98-472a-93c3-e09bfe03abc5 + - 520aa12d-9a3c-46f7-8af9-e1326b6cea4d + - 90e42558-0a56-42b3-8402-45a65660d5e0 + - 0a7bfd42-ab8f-46e6-a498-174fd3e53b60 + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "sku": {"family": "A", "name": "standard"}, "createMode": "recover"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault recover + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover","purge"],"secrets":["get","list","set","delete","backup","restore","recover","purge"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover","purge"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1150' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:04:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-writes: + - '1185' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault delete + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11434' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:04:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - keyvault delete + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 27 Dec 2019 15:04:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault","name":"bim-keyvault","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/bim-keyvault2","name":"bim-keyvault2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-keyvault2","location":"northcentralus","tags":{},"deletionDate":"2019-12-08T17:14:12Z","scheduledPurgeDate":"2020-03-07T17:14:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-xfb47ty","name":"cli-test-kevault-xfb47ty","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkrovu5jrxgr7vzljg4cotrrm57fwu6jsy2ykrw2in4ssyqmv2gh/providers/Microsoft.KeyVault/vaults/cli-test-kevault-xfb47ty","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:35:10Z","scheduledPurgeDate":"2020-03-05T09:35:10Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-fuvq53g","name":"cli-test-kevault-fuvq53g","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretqyjrxbfqqpq4aitosjvvot3wxkqpa6yokqs4lc5jzhiewwxruiy/providers/Microsoft.KeyVault/vaults/cli-test-kevault-fuvq53g","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:24:19Z","scheduledPurgeDate":"2020-03-05T09:24:19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/cli-test-kevault-be6s7zn","name":"cli-test-kevault-be6s7zn","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretwrt4o34cqnpv4st3cigemfvqqc2tnxjelxj6d3mkhgkxqqnnqv7/providers/Microsoft.KeyVault/vaults/cli-test-kevault-be6s7zn","location":"northcentralus","tags":{},"deletionDate":"2019-12-06T09:17:12Z","scheduledPurgeDate":"2020-03-05T09:17:12Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southeastasia/deletedVaults/jlkv1","name":"jlkv1","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1","location":"southeastasia","tags":{},"deletionDate":"2019-11-13T06:11:11Z","scheduledPurgeDate":"2020-02-11T06:11:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:04:41Z","scheduledPurgeDate":"2020-03-26T15:04:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-keyvault-sd5qswmncwg","name":"cli-keyvault-sd5qswmncwg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdhgn4gy7x3zqniqnume23bgxhksrk6itcbw76kkc6faqvvu6722n6qig/providers/Microsoft.KeyVault/vaults/cli-keyvault-sd5qswmncwg","location":"eastus2","tags":{},"deletionDate":"2019-12-27T08:05:28Z","scheduledPurgeDate":"2020-03-26T08:05:28Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-zwjqxm","name":"cli-test-keyvault-zwjqxm","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdtwhgf62zxzl7h76r4aql5cfcolwoi5dnn2hc6frh735myrrmsea2fui/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-zwjqxm","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:46:13Z","scheduledPurgeDate":"2020-03-10T02:46:13Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-uiuh7x","name":"cli-test-keyvault-uiuh7x","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7hb376hy6vvddd3jjsnmmpkrpxvoftgrx2y2z5n4kepjvcmerujhpyb/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uiuh7x","location":"eastus2","tags":{},"deletionDate":"2019-12-11T02:31:31Z","scheduledPurgeDate":"2020-03-10T02:31:31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-3tyfrk","name":"cli-test-keyvault-3tyfrk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdllenvnclslsyl364ujpbbpe7skpdilfveyhqny5aewt5i2ym53bmz26/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tyfrk","location":"eastus2","tags":{},"deletionDate":"2019-11-18T02:46:09Z","scheduledPurgeDate":"2020-02-16T02:46:09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/test-kv01","name":"test-kv01","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/test-kv01","location":"centralus","tags":{},"deletionDate":"2019-12-08T18:28:38Z","scheduledPurgeDate":"2020-03-07T18:28:38Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/ag-ssl-cert","name":"ag-ssl-cert","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/harold-test-rsg/providers/Microsoft.KeyVault/vaults/ag-ssl-cert","location":"centralus","tags":{},"deletionDate":"2019-12-01T17:13:49Z","scheduledPurgeDate":"2020-02-29T17:13:49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centralus/deletedVaults/storagekv","name":"storagekv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zuh/providers/Microsoft.KeyVault/vaults/storagekv","location":"centralus","tags":{},"deletionDate":"2019-11-11T09:27:59Z","scheduledPurgeDate":"2020-02-09T09:27:59Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitest6grlmdctgn6eh3ndg","name":"clitest6grlmdctgn6eh3ndg","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3xqrq2wqgbylloetwdwzxe22pojyvuyndrmeqhmykqa5ksewjqmg7ndqxqvjlr5h/providers/Microsoft.KeyVault/vaults/clitest6grlmdctgn6eh3ndg","location":"southcentralus","tags":{},"deletionDate":"2019-12-27T03:28:25Z","scheduledPurgeDate":"2020-03-26T03:28:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestsh4vstgv574laakhh","name":"clitestsh4vstgv574laakhh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfi7gmwgxpzsq3ysoa6h7cvuf2nutezwqqcfbbesodsbef4n5b5oh7wjrg362nyaiv/providers/Microsoft.KeyVault/vaults/clitestsh4vstgv574laakhh","location":"southcentralus","tags":{},"deletionDate":"2019-10-23T01:56:15Z","scheduledPurgeDate":"2020-01-21T01:56:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestoynh56fl54psyz6sk","name":"clitestoynh56fl54psyz6sk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xmidx64nbag2tdtif4qi5r66dbyykvfx5d4n2bx2zddsuugwzablpij4bz6xv6ey/providers/Microsoft.KeyVault/vaults/clitestoynh56fl54psyz6sk","location":"southcentralus","tags":{},"deletionDate":"2019-10-21T14:03:04Z","scheduledPurgeDate":"2020-01-19T14:03:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestu3klkkzje3mf2wfdc","name":"clitestu3klkkzje3mf2wfdc","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7f7gymli5xnost4n2u3o4pfgenrs5ol6p2z7nbn7t5jnf4vzbi4i32d2j4nfq6plm/providers/Microsoft.KeyVault/vaults/clitestu3klkkzje3mf2wfdc","location":"southcentralus","tags":{},"deletionDate":"2019-10-16T18:37:34Z","scheduledPurgeDate":"2020-01-14T18:37:34Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/clitestzsx2rtlze6elfo2ak","name":"clitestzsx2rtlze6elfo2ak","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgc3q5mbm6s6zyri64yxw4f7py5mjebv5tupkznkly7bvubukf3ydi45n7sxaoxvayu/providers/Microsoft.KeyVault/vaults/clitestzsx2rtlze6elfo2ak","location":"southcentralus","tags":{},"deletionDate":"2019-10-15T17:53:03Z","scheduledPurgeDate":"2020-01-13T17:53:03Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-veymyk","name":"cli-test-keyvault-veymyk","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretbm4difszfjpzxnbrjcrhmkdsqthsqm4tsgcc6c65y7khbigz5rn/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-veymyk","location":"westus","tags":{},"deletionDate":"2019-12-27T14:31:32Z","scheduledPurgeDate":"2020-03-26T14:31:32Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtvqhr345","name":"cli-keyvault-mgmtvqhr345","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtvqhr345","location":"westus","tags":{},"deletionDate":"2019-12-27T08:19:19Z","scheduledPurgeDate":"2020-03-26T08:19:19Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-softjj2kztp","name":"cli-keyvault-softjj2kztp","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretip43rtw6yezopevffgobsqbod6zz36f6se6b2wb2o5ixoizln36/providers/Microsoft.KeyVault/vaults/cli-keyvault-softjj2kztp","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:35Z","scheduledPurgeDate":"2020-03-26T08:18:35Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtr7a6xhe","name":"cli-keyvault-mgmtr7a6xhe","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtkdmnuko3glg4pd7yg5mreavlh3knlz7h3qjgf2xti773hf4rprzen/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtr7a6xhe","location":"westus","tags":{},"deletionDate":"2019-12-27T08:18:10Z","scheduledPurgeDate":"2020-03-26T08:18:10Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-mgmtew3cglh","name":"cli-keyvault-mgmtew3cglh","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtew3cglh","location":"westus","tags":{},"deletionDate":"2019-12-27T08:16:29Z","scheduledPurgeDate":"2020-03-26T08:16:29Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault-gosnfyqo6nkbmz","name":"vault-gosnfyqo6nkbmz","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_zj6xr25fyoewyfsuh5qgmgknnabvusdqjfxjnx4u5ctwjs/providers/Microsoft.KeyVault/vaults/vault-gosnfyqo6nkbmz","location":"westcentralus","tags":{},"deletionDate":"2019-12-19T03:55:25Z","scheduledPurgeDate":"2020-03-18T03:55:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-67qn6veyxoest","name":"vault2-67qn6veyxoest","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault2-67qn6veyxoest","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-dk77xkq42y62f","name":"vault1-dk77xkq42y62f","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_exvtqiuj5623wlbvjiearq33qocetpd5w7ocpfs/providers/Microsoft.KeyVault/vaults/vault1-dk77xkq42y62f","location":"westcentralus","tags":{},"deletionDate":"2019-12-15T17:23:51Z","scheduledPurgeDate":"2020-03-14T17:23:51Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault2-fjhnwonczlt6t","name":"vault2-fjhnwonczlt6t","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault2-fjhnwonczlt6t","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westcentralus/deletedVaults/vault1-xzdscdoaut5ps","name":"vault1-xzdscdoaut5ps","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_akzabwdh362sa5wwjm7x56mkoeawpourlzi3sef/providers/Microsoft.KeyVault/vaults/vault1-xzdscdoaut5ps","location":"westcentralus","tags":{},"deletionDate":"2019-12-10T03:17:15Z","scheduledPurgeDate":"2020-03-09T03:17:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe52-kv","name":"yugangwe52-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe52/providers/Microsoft.KeyVault/vaults/yugangwe52-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-21T17:14:05Z","scheduledPurgeDate":"2020-03-20T17:14:05Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe51-kv","name":"yugangwe51-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe51/providers/Microsoft.KeyVault/vaults/yugangwe51-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:31Z","scheduledPurgeDate":"2020-03-18T01:27:31Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe50-kv","name":"yugangwe50-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe50/providers/Microsoft.KeyVault/vaults/yugangwe50-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:21Z","scheduledPurgeDate":"2020-03-18T01:27:21Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe40-kv","name":"yugangwe40-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe40/providers/Microsoft.KeyVault/vaults/yugangwe40-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:15Z","scheduledPurgeDate":"2020-03-18T01:27:15Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2euap/deletedVaults/yugangwe10-kv","name":"yugangwe10-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe10/providers/Microsoft.KeyVault/vaults/yugangwe10-kv","location":"eastus2euap","tags":{},"deletionDate":"2019-12-19T01:27:04Z","scheduledPurgeDate":"2020-03-18T01:27:04Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangwe53-kv","name":"yugangwe53-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwe53/providers/Microsoft.KeyVault/vaults/yugangwe53-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-21T17:15:25Z","scheduledPurgeDate":"2020-03-20T17:15:25Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw20c-kv","name":"yugangw20c-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw20c/providers/Microsoft.KeyVault/vaults/yugangw20c-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-19T01:26:54Z","scheduledPurgeDate":"2020-03-18T01:26:54Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw3-kv2","name":"yugangw3-kv2","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw3/providers/Microsoft.KeyVault/vaults/yugangw3-kv2","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T18:32:16Z","scheduledPurgeDate":"2020-03-17T18:32:16Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw2-kv","name":"yugangw2-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw2/providers/Microsoft.KeyVault/vaults/yugangw2-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:14:20Z","scheduledPurgeDate":"2020-03-17T17:14:20Z","purgeProtectionEnabled":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/centraluseuap/deletedVaults/yugangw-kv","name":"yugangw-kv","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw/providers/Microsoft.KeyVault/vaults/yugangw-kv","location":"centraluseuap","tags":{},"deletionDate":"2019-12-18T17:13:54Z","scheduledPurgeDate":"2020-03-17T17:13:54Z","purgeProtectionEnabled":true}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=3ZXRbpswFIbfJZp2tTSGwJZWqiZSm4ys53h2bCp6lxKSBqdJFdIFPPXdd5imaa%2fQXiCEdITlT9%2f%2fn1%2bDfdWebrd71wyufg1QavPtRqDRya1dDK4Gj6fTc3M1Gj0t98tN9VTtTxdL%2f3KsLsrD06h5eWjK4%2fb5tD3smxF7CNafoy%2fBMHhYs2G0Wi2Hy6ocD8uHy%2fBLuGaX8SUbPR8PP7er6tiMYFseD81hfbr4XnX58mV3Gq2qXXWqVn8%2bmq%2fL5%2b3wJ03Sz69DFkyGLBwG0ccPjaMTD67aX1uX3%2bl8brTVqRG5XdhLeWt3ds2zAMymw7oYY%2b1C9CKU3MZo8ok2Ravqgklxz8Eqj6KIaOaszU6As2flrNfGdiBg8GmwkNZ8E8nCJIssees4JCccBroeBZiMIb%2bfaJ6cod6E6NIb5JsIedKi2U2VE6EyRYzOBljbWNeWcPQk7CJ8%2byCyAE3hgRcB8Mwj303Az2%2b0yzla8OinHLmLJTmBdRIrlqbSwBjJGWS9F%2b8mIpJvPNbQEQpyoqTIrAiFi9AVFJlUoLsnL6apdtkZedlKrmfgBJNmE0v7LyLvhYcHIzwxacn5COgNfjWh2uC6dpE0KlD1o6CMxFKIEIWNlck65XWqjQu0UaTGnegz8tYjQl0QYp21wJOx5CoETtXJp1yZdAbGdejmFBHrlRVj5UULddn7M1YMGPjei57De9GCYgEB9JuElx34MpYcJ4rpmWJFp8yKNklOWiDXQkSa51PV68JFqE0WqbrH8bc6hU1%2bvHk3DGXDONolmw5McQZaq5SVCD202uEM%2bZyeNKWZAITqq7alPeNpPtBW%2fF%2bf7wNH0YKxIZqE1qeL6eoTYKKVgmrB5jNk6RQFzpSbp8qmXBrC06OyFCWmBq%2bvvwE%3d"}' + headers: + cache-control: + - no-cache + content-length: + - '22553' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:04:47 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: + - ef09f3c4-66d2-472e-8571-5d12fa2c87a2 + - b0b2afb4-bf0b-4ba9-ac65-b47eb05648c3 + - 2bae5098-4495-4893-b9f9-6162fff74454 + - b9289daf-ad56-4d64-8615-2991ac3372cb + - 3764b7fc-71a2-4022-93e5-52c7b7505eb0 + - f0cf684b-7ae3-4803-87d1-8c54b7ab380c + - 92c4c0b0-3480-4042-a3a4-b532c844614c + - 3bdf29c8-4269-4987-9aea-fd0e3003fccf + - dec9cc70-b79a-42f2-9264-e8f43097acfb + - 30f43524-8a6c-4e3b-a913-e03dcfe1263d + - d7375741-68a6-4089-a5f0-ce03dc75bafa + - ab68c69b-b8ef-4b40-800e-cf506e7b4563 + - de426b6c-9955-4da3-b03f-f972c2924dad + - 77f1d56e-a203-4dfc-a3c7-0b756b78af15 + - 768c0a12-43a2-4b30-9a35-9bc89f544518 + - 9330ba7d-b7a6-4162-9078-daf211ce261a + - a2ee1e93-6379-4d6c-bc28-33a480779b43 + - e829d135-c6cf-4bcf-98fd-1eb094248514 + - 7bb4380e-8944-4fe1-8b1c-95095536f57b + - 0c570c89-bd4c-46df-b56e-4cff912943d0 + - a4cd9eac-9ae7-4d3e-8c59-73ff29401dc3 + - 3041b25b-4661-410f-8d6b-5d98111775f1 + - 3875ef41-006c-4ab5-8d61-458de1e76168 + - b261fb59-3c92-407e-b8dd-575ce853fee2 + - 8bd64915-1cf4-4c70-a861-ba9931d06fd3 + - 41bb922c-39a8-4c7a-9470-4df0b58a0d76 + - 6edb79a6-a06b-4608-b402-135531b92347 + - 5977cd16-ead1-429b-bb8b-339d072cbff4 + - c2fc56bd-c600-454a-819d-675902120eee + - 1e52eefd-6b73-4e88-8927-c2bf7289c3f1 + - 6e1a0f14-3d7b-476b-93e9-0c6afe1761cf + - 2283e309-0279-47ed-a231-11d58104a152 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002/purge?api-version=2018-02-14 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 27 Dec 2019 15:04:49 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-writes: + - '1192' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + response: + body: + string: '{"createdDateTime":"2019-12-27 15:04:49Z","status":"NotStarted"}' + headers: + cache-control: + - no-cache + content-length: + - '64' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:04:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + response: + body: + string: '{"createdDateTime":"2019-12-27 15:04:49Z","status":"NotStarted"}' + headers: + cache-control: + - no-cache + content-length: + - '64' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:05:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1ODkwNjkxNTIwMXw4RTJBRDI2QkIxQzA0NUNGQTZCQjhENDE5OUFCRUQ0OA?api-version=2018-02-14 + response: + body: + string: '{"createdDateTime":"2019-12-27 15:04:49Z","lastActionDateTime":"2019-12-27 + 15:05:06Z","status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:05:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-06-21T01:32:03Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Zunli + Hu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zuh@microsoft.com","mailNickname":"zuh_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zuh@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zuh@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-21T01:32:03Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/21cd756e-e290-4a26-9547-93e8cc1a8923/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zuh_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-06-24T01:43:59Z","userType":"Guest"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '1670' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 27 Dec 2019 15:05:13 GMT + duration: + - '2712776' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - N74c8ldu8hl9jU3L0P00lqK53hRnYh0rKSMTbFc2+Rs= + ocp-aad-session-key: + - dg6JlF1iPp2BZUycQ2wMQRdQvEJlkCPwoCcZsIi31JJUmrrwCWt1CPRSNKXemFVNZudlALGMARekQkD3kqGqF3AoeyMbKfJAsnxjo4eVuX3BYa40JcXhDnJQVQjgcnk-gLK-bnnGQ9mquGy8eFh2k1UthsntVWXoRESP7Jh1PHg.reqr_-wiyBrVFW95CNzeuzwv_VtKKB3ZNSW-3pcqKy0 + pragma: + - no-cache + request-id: + - 873bdeb1-8555-45fd-b760-17a0816e59da + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "sku": {"family": "A", "name": "premium"}, "accessPolicies": [{"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", "permissions": {"keys": + ["get", "create", "delete", "list", "update", "import", "backup", "restore", + "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", + "recover"], "certificates": ["get", "list", "delete", "create", "import", "update", + "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", + "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", + "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}], "enableSoftDelete": + true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault create + Connection: + - keep-alive + Content-Length: + - '772' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l --sku --enable-soft-delete + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' + headers: + cache-control: + - no-cache + content-length: + - '1130' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:05:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --sku --enable-soft-delete + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1126' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:05:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault delete + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11434' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - keyvault delete + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 27 Dec 2019 15:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault recover + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:05:58Z","scheduledPurgeDate":"2020-03-26T15:05:58Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "sku": {"family": "A", "name": "standard"}, "createMode": "recover"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault recover + Connection: + - keep-alive + Content-Length: + - '160' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"premium"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"vaultUri":"https://cli-test-keyvault-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1126' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:06:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-writes: + - '1194' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault delete + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv","name":"bim-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv2","name":"bim-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-normal","name":"bim-kv-normal","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_cert4j3pplhzh2mxfmadnulhor7bdwabqralao6ndsikb7wmtlce7avl3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-jn26od","name":"cli-test-keyvault-jn26od","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key4n7acg5ryduc4lhua6td7yoxt4ohyatoccd22i7tbbhqkxtu6q5ggh/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyy45svs6p","name":"cli-keyvault-keyy45svs6p","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_key5y24q32la74qobgfs2bwei4szi5c2257orcv4oio4msw3pirpp774h/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyqim4e25t","name":"cli-keyvault-keyqim4e25t","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_keytwrcu4yij2qshx4q5qhkhz7l6yz7u433b2ycnizhdkshooj6xup4qp/providers/Microsoft.KeyVault/vaults/cli-keyvault-keyadmefdq6","name":"cli-keyvault-keyadmefdq6","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmt52cjbq7","name":"cli-keyvault-mgmt52cjbq7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmt47sltorzerieeb2kj4buvjjzrepwcsrtgiwai64k5kgj7ktvuhk7q/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtufhfpr7","name":"cli-keyvault-mgmtufhfpr7","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtblu3bsem6ht5326hc2gevvp5fhtqxpaiuyvol423phekjikxqhhbv/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtarlzx7j","name":"cli-keyvault-mgmtarlzx7j","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtilsa6amdszgkhgf32vskn4fa3iq3qtrqlwf6jjc44ra52bpjp4ava/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtmykbmvk","name":"cli-keyvault-mgmtmykbmvk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtlw6gayc6yx7rs5crnsvo4yetjmgkj5giezbni3o2zcjj6ert23pzd/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtsyc2b4n","name":"cli-keyvault-mgmtsyc2b4n","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtogun3gk5za6za6i74pcm5r43bych5oxsy36ysoqghrmht7gnt6tf2/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtdlzrs6y","name":"cli-keyvault-mgmtdlzrs6y","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_mgmtvyn3do2dhpgtsn4cdgge6o5gaez6fmd52dgfhztl5kkabrdqr4wjk/providers/Microsoft.KeyVault/vaults/cli-keyvault-mgmtoko3fuw","name":"cli-keyvault-mgmtoko3fuw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_network_rulejdswm6sdvgvepwcvqpi5f4amly5i3wdldejzxrdkebwvo/providers/Microsoft.KeyVault/vaults/cli-keyvault-nr6tzyfxn65","name":"cli-keyvault-nr6tzyfxn65","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sa4s4wchw63vabjvh66wbvhs4hajb4ot6lxe7gukqotziphzzajmim4h4/providers/Microsoft.KeyVault/vaults/cli-keyvault-sa37ncbnzah","name":"cli-keyvault-sa37ncbnzah","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_samwtgrg3zqxlel7bvsqgqdudfe36tbj2xh2n5u7g37guxki7a4blrc2k/providers/Microsoft.KeyVault/vaults/cli-keyvault-saeu65i6ncm","name":"cli-keyvault-saeu65i6ncm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretadjud4pnfha6xi2ma4key2y5hjsmj4s6x42upqqzhu7dnyhpq7z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretrp5yf","name":"cli-keyvault-secretrp5yf","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretdvmfhwqnzbmw226e5252rwocwqlydfvbaos5qxz7etnq4wv3fe5/providers/Microsoft.KeyVault/vaults/cli-keyvault-softd5oeg2x","name":"cli-keyvault-softd5oeg2x","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretjg7quk7pzjqsk25wuir2w4sqoefvqxjg4b5x3m7he7iasywr6rh/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretadeky","name":"cli-keyvault-secretadeky","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretkk7hkc3nod243rq4o3jqttoirhiuinhojnbqelyksulrjpfraid/providers/Microsoft.KeyVault/vaults/cli-keyvault-softieyvabm","name":"cli-keyvault-softieyvabm","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secreto7t7l2kngraosf6dobkqrqcbicpbgaglzajzcy36yogj4p2ul5w/providers/Microsoft.KeyVault/vaults/cli-keyvault-secretjbb44","name":"cli-keyvault-secretjbb44","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretu6i3psrdtabum55utec2rkcjjllec343p53aktgxedyinmqjili/providers/Microsoft.KeyVault/vaults/cli-keyvault-softp2aojix","name":"cli-keyvault-softp2aojix","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretvtkq5chv7o4epeg63j3rdvygrwkswzprthsczjup2cbr3xsjg6z/providers/Microsoft.KeyVault/vaults/cli-keyvault-secret6ickp","name":"cli-keyvault-secret6ickp","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5pc2mkmaajjitubt42wsmnlbmtgvefmrdz32o2qmbtaejglbyc/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-xc5q4z","name":"cli-test-keyvault-xc5q4z","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoeu5gwqab7knan4m5z435ojt53c4zwhyzyrbddrjp35dkdut2y/providers/Microsoft.KeyVault/vaults/cli-keyvault-certcfk2ogq","name":"cli-keyvault-certcfk2ogq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contactsoxwi26snbuk5tcx4jafx3txqgkre4vsc2rjbuuy7e7l3jzysmi/providers/Microsoft.KeyVault/vaults/cli-keyvault-certc4prqba","name":"cli-keyvault-certc4prqba","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloadppgshb7xti6joxu3fllp2ol7zpffkpr5iswss4t5cu737ifdkt/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdm576y2fuu","name":"cli-keyvault-cdm576y2fuu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_downloaduvf4busdrs3h6uzcjehal6y2zxqczunlpcwhzrqi2wsgogrvkw/providers/Microsoft.KeyVault/vaults/cli-keyvault-cdasfklrojg","name":"cli-keyvault-cdasfklrojg","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuerry5wkgi53yc6auq65kbhsfoelgbwngg4pu6l4bt45jhh6e4njj4f/providers/Microsoft.KeyVault/vaults/cli-keyvault-cisrnqyqtsb","name":"cli-keyvault-cisrnqyqtsb","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_issuert7izll5y4ljh67sctn43wsesctapxjnvlou3svpg3nhlvvchpgvf/providers/Microsoft.KeyVault/vaults/cli-keyvault-cissgi7ckq3","name":"cli-keyvault-cissgi7ckq3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pending4rgtvgg5gqesknsjmbd3nowjdfnpdm5lut2gcgarenq3yvg4ets/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcyholokjcz","name":"cli-keyvault-pcyholokjcz","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_pendingkm34y3ldbunt7mzigysvelb2pg3rx7mqq2uze6cslt7zxtxflfw/providers/Microsoft.KeyVault/vaults/cli-keyvault-pcxz5couaj2","name":"cli-keyvault-pcxz5couaj2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv1126","name":"jlkv1126","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv11262","name":"jlkv11262","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangwcan/providers/Microsoft.KeyVault/vaults/yugangwcan-kv","name":"yugangwcan-kv","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}}]}' + headers: + cache-control: + - no-cache + content-length: + - '11434' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:06:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - keyvault delete + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 27 Dec 2019 15:06:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002?api-version=2018-02-14 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002","name":"cli-test-keyvault-000002","type":"Microsoft.KeyVault/deletedVaults","properties":{"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd000001/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-000002","location":"eastus2","tags":{},"deletionDate":"2019-12-27T15:06:14Z","scheduledPurgeDate":"2020-03-26T15:06:14Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/cli-test-keyvault-000002/purge?api-version=2018-02-14 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 27 Dec 2019 15:06:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1OTgzMTEzMjcxOXxGRUNCMTFCMjM4QkI0OEY5OTM4M0QyNjM2N0U4RjQ5RQ?api-version=2018-02-14 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault purge + Connection: + - keep-alive + ParameterSetName: + - -n -l + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNzEzMDU1OTgzMTEzMjcxOXxGRUNCMTFCMjM4QkI0OEY5OTM4M0QyNjM2N0U4RjQ5RQ?api-version=2018-02-14 + response: + body: + string: '{"createdDateTime":"2019-12-27 15:06:22Z","lastActionDateTime":"2019-12-27 + 15:06:24Z","status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '107' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Dec 2019 15:06:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.269 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK version: 1 From d1e1537a498971e8c0cf4003fec73de7b4f1dc80 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 11:25:16 +0800 Subject: [PATCH 38/51] pass test_create_for_rbac_with_existing_kv_cert --- ...create_for_rbac_with_existing_kv_cert.yaml | 2608 ++++++++++++++++- 1 file changed, 2479 insertions(+), 129 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml index c64ec200dff..fafcb413a8f 100644 --- a/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml +++ b/src/azure-cli/azure/cli/command_modules/role/tests/latest/recordings/test_create_for_rbac_with_existing_kv_cert.yaml @@ -1,130 +1,247 @@ interactions: - request: - body: '' + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-06-21T18:29:11Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate + CommandName: + - group create Connection: - keep-alive Content-Length: - - 0 + - '110' Content-Type: - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.67 accept-language: - en-US - method: POST - uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sp_with_kv_existing_cert000001?api-version=2019-07-01 response: body: - string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer - or PoP token."}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001","name":"cli_test_sp_with_kv_existing_cert000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-06-21T18:29:11Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '87' + - '384' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:16 GMT + - Fri, 21 Jun 2019 18:29:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - - max-age=31536000;includeSubDomains - www-authenticate: - - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - resource="https://vault.azure.net" - x-aspnet-version: - - 4.0.30319 + - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"a1239024-a78f-4b62-a84e-3119f8924ffb","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","4a51bca5-1eff-43f5-878c-177680f191af","efb0351d-3b08-4503-993d-383af8de41e3","5136a095-5cf0-4aff-bec3-e84448b38ea5","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"}],"assignedPlans":[{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-06-19T15:08:40Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-05-23T14:27:34Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-10T02:07:48Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-02T19:20:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-02T19:20:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-02T19:20:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-13T18:49:58Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-13T18:49:58Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T17:03:22Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T17:03:20Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2018-09-24T17:03:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-24T17:03:19Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"4828c8ec-dc2e-4779-b502-87ac9ce28ab7"},{"assignedTimestamp":"2018-09-24T17:03:19Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-30T01:33:59Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"2125cfd7-2110-4567-83c4-c1cd5275163d"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-04-24T06:10:50Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"c4048e79-4474-4c74-ba9b-c31ff225e511"},{"assignedTimestamp":"2018-03-22T06:47:29Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T13:37:22Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T13:37:22Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T13:37:22Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T08:57:59Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T02:18:57Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T02:18:57Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T11:40:38Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-16T05:25:47Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2017-12-16T05:25:47Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-16T05:25:47Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-10-07T04:08:23Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-07T04:08:23Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2017-08-13T12:28:53Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"MicrosoftCommunicationsOnline","servicePlanId":"27216c54-caf8-4d0d-97e2-517afb5c08f6"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"ProcessSimple","servicePlanId":"76846ad7-7776-4c40-a281-a386362dd1b9"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"PowerAppsService","servicePlanId":"c68f8d98-5534-41c8-bf36-22fa496fa792"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"9e700747-8b1d-45e5-ab8d-ef187ceec156"},{"assignedTimestamp":"2017-06-12T16:53:59Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-06-11T01:38:05Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-06-11T01:38:05Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-06-11T01:38:05Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-05-13T03:49:31Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"8e0c0a52-6a6c-4d40-8370-dd62790dcd70"},{"assignedTimestamp":"2016-12-14T10:51:56Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2016-12-14T10:51:56Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Deleted","service":"PowerBI","servicePlanId":"fc0a60aa-feee-4746-a0e3-aecfe81a38dd"},{"assignedTimestamp":"2016-10-26T17:51:43Z","capabilityStatus":"Deleted","service":"AzureAnalysis","servicePlanId":"2049e525-b859-401b-b2a0-e0a31c4b1fe4"},{"assignedTimestamp":"2016-02-26T23:00:35Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Azure + and Web COGS 1010 US","dirSyncEnabled":true,"displayName":"Travis Prescott","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Travis","immutableId":"1002380","isCompromised":null,"jobTitle":"SOFTWARE + ENGINEER II","lastDirSyncTime":"2019-05-31T17:03:21Z","legalAgeGroupClassification":null,"mail":"trpresco@microsoft.com","mailNickname":"trpresco","mobile":null,"onPremisesDistinguishedName":"CN=Travis + Prescott,OU=UserAccounts,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-20039400","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"18/3200FL","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Adallom"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Deleted","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftOffice"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=MMS/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=f090f69a03ec4c0883b09aba05bc0e7f-Travis + Prescoefc91e9","SMTP:trpresco@microsoft.com","smtp:trpresco@service.microsoft.com","smtp:trpresco@microsoft.onmicrosoft.com","X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Travis Prescott930","X500:/o=Nokia/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Travis Prescotte5c","X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Travis Prescottf88","X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=31c24bdc1fc944a694953dfc8ed1db9e-Travis + Prescot","X500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=2ba2598701d14f2684d504228fa7f530-Travis + Pres"],"refreshTokensValidFromDateTime":"2019-05-31T16:44:26Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"trpresco@microsoft.com","state":null,"streetAddress":null,"surname":"Prescott","telephoneNumber":"+1 + (425) 7071057","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/a1239024-a78f-4b62-a84e-3119f8924ffb/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"trpresco@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"138058","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Wang, + Yugang","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"YUGANGW","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10130001","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10130001","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"4664","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"18","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"17","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1002380","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '17278' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:29:13 GMT + duration: + - '3114696' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - 8b/Ht2S1JqSnD0uF+3TSXMqw6CMlMu8U0UwicIuMm2g= + ocp-aad-session-key: + - Ra26dtSFH1-Pgk-YH6droJpQ2yJ1ax8v7JOAO-fQcuRnpI-r1xCciEeLFEfq99w1McuJzdToe2mWjoGsG-HfF8fQqdCi1IEaa2pbH5YHHkKZJMGkPQharU5VjywIKdzgXv0LVK_vkq3iyd3d5xVPEA.t0oqgqj00jYoh15GMBOSUBoxOzWPZZqEcfPIf5hF-Os + pragma: + - no-cache + request-id: + - 6ddca812-ee66-4d70-8ad3-48fe44d70aa1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' x-powered-by: - ASP.NET status: - code: 401 - message: Unauthorized + code: 200 + message: OK - request: - body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": - 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, - "x509_props": {"subject": "CN=CLIGetDefaultPolicy", "key_usage": ["cRLSign", - "dataEncipherment", "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], - "validity_months": 24}, "lifetime_actions": [{"trigger": {"days_before_expiry": - 90}, "action": {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}}, - "attributes": {"enabled": true}}' + body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "a1239024-a78f-4b62-a84e-3119f8924ffb", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", + "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", + "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", + "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", + "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate + CommandName: + - keyvault create Connection: - keep-alive Content-Length: - - '511' + - '746' Content-Type: - application/json; charset=utf-8 + ParameterSetName: + - -n -g -l --sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-keyvault/1.1.0 + Azure-SDK-For-Python AZURECLI/2.0.67 accept-language: - en-US - method: POST - uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2018-02-14 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"a1239024-a78f-4b62-a84e-3119f8924ffb","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000002.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache content-length: - - '1303' + - '1106' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:17 GMT + - Fri, 21 Jun 2019 18:29:15 GMT expires: - '-1' - location: - - https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=81dd259355e14214bb0f6489a92e942a pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - - max-age=31536000;includeSubDomains + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff - x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.245 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - keyvault create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-keyvault/1.1.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002?api-version=2018-02-14 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.KeyVault/vaults/clitest000002","name":"clitest000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"a1239024-a78f-4b62-a84e-3119f8924ffb","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":false,"vaultUri":"https://clitest000002.vault.azure.net/","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '1102' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:29:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.1.0.245 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '' headers: Accept: - application/json @@ -132,29 +249,27 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - 0 Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US - method: GET - uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + method: POST + uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending - certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' + string: '' headers: cache-control: - no-cache content-length: - - '1303' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 14 Jan 2020 01:25:18 GMT + - Fri, 21 Jun 2019 18:29:52 GMT expires: - '-1' pragma: @@ -163,23 +278,32 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000;includeSubDomains + www-authenticate: + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.159.80;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 401 + message: Unauthorized - request: - body: null + body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": + 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, + "x509_props": {"subject": "CN=CLIGetDefaultPolicy", "key_usage": ["cRLSign", + "dataEncipherment", "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], + "validity_months": 24}, "lifetime_actions": [{"trigger": {"days_before_expiry": + 90}, "action": {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}}, + "attributes": {"enabled": true}}' headers: Accept: - application/json @@ -187,20 +311,22 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '511' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US - method: GET - uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + method: POST + uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' + time based on the issuer provider. Please check again later.","request_id":"712ec39acbe14640aa04e2af81ac7357"}' headers: cache-control: - no-cache @@ -209,9 +335,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:29 GMT + - Fri, 21 Jun 2019 18:29:54 GMT expires: - '-1' + location: + - https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=712ec39acbe14640aa04e2af81ac7357 pragma: - no-cache server: @@ -223,16 +351,16 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.159.80;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -245,17 +373,17 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"81dd259355e14214bb0f6489a92e942a"}' + time based on the issuer provider. Please check again later.","request_id":"712ec39acbe14640aa04e2af81ac7357"}' headers: cache-control: - no-cache @@ -264,7 +392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:40 GMT + - Fri, 21 Jun 2019 18:29:55 GMT expires: - '-1' pragma: @@ -278,11 +406,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.159.80;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -300,15 +428,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCCO61QuypOhunpA9nK98R+ByEf0n87+ufcjI9GLBDQ4Vzz0iERUPqLGQMfKg4I6jPIVWT0kfim4JekMItJvxq57J2KWxueP5ffh00D1H2f5U2arJI+jCI5RVP1xyZxIRAhmkhXRX6+Mu8YnWJNbc4pVWhAiS3mEJS7Vr47qWfYtb/cITkfPfVjV6dJbuQPsxlTaZjcdE+wdOCd8k71rFRjMNayo6R8RkYmIWTxWc0xtMPCiU0lopWEikaaO6DzeyZKcYqr/5+dFKPH0iPEdDmEb3g3Pgkhx8URJg9ft9qqgqEPbph3ql3P/mpodgMLqgjPUG7wMEiD/hIbP1c6Q3Ds","cancellation_requested":false,"status":"completed","target":"https://clitest000002.vault.azure.net/certificates/cert1","request_id":"81dd259355e14214bb0f6489a92e942a"}' + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"completed","target":"https://clitest000002.vault.azure.net/certificates/cert1","request_id":"712ec39acbe14640aa04e2af81ac7357"}' headers: cache-control: - no-cache @@ -317,7 +445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:52 GMT + - Fri, 21 Jun 2019 18:30:05 GMT expires: - '-1' pragma: @@ -331,11 +459,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.159.80;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -355,8 +483,8 @@ interactions: ParameterSetName: - -n --keyvault --cert --scopes User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 accept-language: - en-US method: GET @@ -376,19 +504,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:25:53 GMT + - Fri, 21 Jun 2019 18:30:06 GMT duration: - - '2311456' + - '808763' expires: - '-1' ocp-aad-diagnostics-server-name: - - 111y7HzMkoF7ETvCpr8Oy05nl+w+YtkaVR6AK6LH4Ao= + - 5tXUu3y+ErO1/XND1tRuShyWMEydPW/DHrlAYL3nHdc= ocp-aad-session-key: - - 8RUuyAqTnu6MzDeTq2aAxGaMgqT7u0HgZdptAUgpd61IDHM8f1eltJ5NTvyHZGbzJr_ti0vPRPLR_6XUeNbsOM5K5PmfaHLQDlqM3fdKbqt-ubjMLxnI_rSxQM3KWFJDQk4IiTxRK6-Yez4Eo00U7qu8C4G2Qzs27C6uKF1hCLk.n1YKRDqh6UGf3KQ2ERJMbK_XqdZNqWMY-TLmKBMGEVQ + - 25-0HKjvJ-OMLQaKa6qyNol_2YDqH3InoRML8cQZf827JZyqM3Ap2cjGPnmYwMZ2rN2A82u502rGy8Ys9f5mxJfDB0roGr3PD24F_QYhzOqlT_MDRyb-kCY-8BLjOmgjWoeQD0jxbf1XBVME8ev8Ow.L2eonk4HI8mTJoTpENLwAGlXXoMQbV-RgIn_2AZO-E4 pragma: - no-cache request-id: - - efea7750-4907-431a-83ce-2cf69547a718 + - 793ab314-e838-4aaf-8415-aa59602e7565 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -412,15 +540,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 response: body: - string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/706587dbefdb4059bbccd45506da4576","kid":"https://clitest000002.vault.azure.net/keys/cert1/706587dbefdb4059bbccd45506da4576","sid":"https://clitest000002.vault.azure.net/secrets/cert1/706587dbefdb4059bbccd45506da4576","x5t":"4kKyVlONgBzq_3S0AniFPjNmtiM","cer":"MIIDQjCCAiqgAwIBAgIQae9/MCvCQtaxqGxz4tnyGTANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDExNDAxMTU0N1oXDTIyMDExNDAxMjU0N1owHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwSg4FG248RqqYQxMKIcO1ZwdyPpYpq1sJZYfuXCYxhoxfOPm+Jscays2HMdWosuKKBkeBmABgOT4DlSIKdd7MRfecdUZqiNwjmRu7rYNMOTq/JxULiNjwzW9uWdM9KEuInivnCX9XoZVpi/UMRvffwKcB5s5EErWOF4bMi6sIwDpzGG37gSg4OQPgvYVmOxfnqJZlxJgM595F0+61InUU9otbYWxcmcBzPDb4a0e2JJirH/8ZDYC3IH7GXhIfatSxcD+Qd3Uh/ZhX8GVaoDhzv/UIMnAspWsA7rjxz8K//hTSQldYqmi7n4e78ODmkg6qX7w/J//5gsivzlg2f0CECAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFASXwdsjLcwutxkLyb/9nnvNaEnoMB0GA1UdDgQWBBQEl8HbIy3MLrcZC8m//Z57zWhJ6DANBgkqhkiG9w0BAQsFAAOCAQEAuimEev4EyBU5p178Xf6ysYRv68Np4lmiwxEIg+SwVpy2KDOxGuLt8HOk2SIi9Rfg9XaM4dSJHaMHojCnva8OhwVGlGuXB2QObHA67XS5MSDZCA98Pb1og+SYUuSMdE32UUcBLlM4eCMGR9MJtBUuSIENjxfLGBodkwCA5vzAt87k5G316DjxZ3A7xcnzGt/Lo7sx8fMpmoFdii1c2fsiukjh0FR6rH8Uj92Y7b0XClrCtcFMDwefsM/h3bHkDomaLSUcEeh+KIDRWmB/KMWdqK042YHVcQVw0T8FB4hhR6W6h1aF+Xp9/uKjgnfdcZJoeoUBEpPnxUSgJvTMKui67w==","attributes":{"enabled":true,"nbf":1578964547,"exp":1642123547,"created":1578965147,"updated":1578965147,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":24,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965117,"updated":1578965117}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/7981b3c73d584fab9b104f087b3a031b","kid":"https://clitest000002.vault.azure.net/keys/cert1/7981b3c73d584fab9b104f087b3a031b","sid":"https://clitest000002.vault.azure.net/secrets/cert1/7981b3c73d584fab9b104f087b3a031b","x5t":"RZGAltuVzEuwCerEt-L_8IIdMLc","cer":"MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==","attributes":{"enabled":true,"nbf":1561141204,"exp":1624300204,"created":1561141804,"updated":1561141804,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":24,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141794}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' headers: cache-control: - no-cache @@ -429,7 +557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:25:54 GMT + - Fri, 21 Jun 2019 18:30:06 GMT expires: - '-1' pragma: @@ -443,11 +571,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.159.80;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.866 x-powered-by: - ASP.NET status: @@ -467,8 +595,8 @@ interactions: ParameterSetName: - -n --keyvault --cert --scopes User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 accept-language: - en-US method: GET @@ -488,19 +616,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:25:55 GMT + - Fri, 21 Jun 2019 18:30:06 GMT duration: - - '2319554' + - '641417' expires: - '-1' ocp-aad-diagnostics-server-name: - - x6LuulQ1un8YDZ41bRnla0Z326OzLf41m1R/rZlmZOU= + - I4v0qcnOlje1nXMrnV4NRb3YM/2Yho5JJMkIV0jxR4s= ocp-aad-session-key: - - FJwbpmePSpN6dnmiPtvoqjYyItybG1C-izvD4SK1LdmSqhy8gpAO4N8_0Dy1sFXULo_IFg6CLnujMzBTWU7D0pjaL8cRR_330biEOTk5pRi34U9zdym2mVQYO7MhD4eM5zx--rTprcZLN34u8YymQ4gtA2Ao0kwdmrnMFyIPUTc.q_YwvlbYwe6it-mBDFo9FdLzzp9HvguTRqcRUzec08o + - 68yTvSMlGGX0cBUfNLQQzGMBYy9CYAOPDd9QHykOoylKiastyH0DYarFwNu1eouHNchexfhLx1lu0GCIrziQwuXmEBaQaciPJB7SoPmfoscWEMuLAvO7trBMX6qyUrKI0UjJ-yv-icuI0fxGI3IaaA.HzWx8EG2u3n71kIoReMiKSHEuA-4V2A0lFmHiJME6FU pragma: - no-cache request-id: - - ca65cb90-4854-488c-9c40-00a6219c1bc4 + - 3af3939d-1f4c-4309-aa95-1f57f2ea0f61 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -513,53 +641,69 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''b\''{"availableToOtherTenants": false, "homepage": "https://cli_test_sp_with_kv_existing_cert000001", + "keyCredentials": [{"startDate": "2019-06-21T18:30:06.860955Z", "endDate": "2020-06-21T18:30:06.860955Z", + "value": "MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==", + "keyId": "88888888-0000-0000-0000-000000000001", "usage": "Verify", "type": + "AsymmetricX509Cert"}], "displayName": "cli_test_sp_with_kv_existing_cert000001", + "identifierUris": ["http://cli_test_sp_with_kv_existing_cert000001"]}\''''' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - ad app delete + - ad sp create-for-rbac Connection: - keep-alive + Content-Length: + - '1672' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - --id + - -n --keyvault --cert --scopes User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 accept-language: - en-US - method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27%29&api-version=1.6 + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:06.860955Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-06-21T18:30:06.860955Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; + charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '121' + - '2768' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:25:58 GMT + - Fri, 21 Jun 2019 18:30:07 GMT duration: - - '5481526' + - '9770596' expires: - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - 9ZHp9DWrFOJDdtIudkw3WViQ6HjfSWNkT6r5darksVU= + - 9GQqI6S1ECS4j4T2qnjxLorVEkd1sq21GP7tQfmsPNE= ocp-aad-session-key: - - 2uAmqEMjlxPmeG-zRDVGtb-3gJgPge0TScWJjBfOtF3hE7BPtfHel6643ODwWLn1dGu94FUSz9c9EigM9IocpUbsTdJZdwU9Po-qjeypPkd1zGnVEwecRvreF3VAzQDyxW8g8zBGl_2761SGWhjr6PNNXohavfAlEoZZ508gBko.0FgUAR6v5b756tvbr07erp394lwpxlYnoihIQbVNaZ8 + - 4JuU1hyelEeSnssXQzfifyW-srUdeBuy1t04pooNMpKGpdtBVqnpF4FhdN3EUTmS8aL3ubLcP05i3yrSfakLkjVwmIproQFMJXBU8vsAXWe6KzYSGPSEf6ffltHiduI5gjzEx7CSDTZuOxs6fz-ogg.gSAc-z5eN0gw3s4Jz7SdTzOQD-0uaNZiEzu5gyM7JCA pragma: - no-cache request-id: - - 41dcd477-3806-40b9-9f56-197ac478aeae + - c8fb216b-8be6-44cc-8a11-892952017358 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -569,6 +713,2212 @@ interactions: x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created +- request: + body: '{"accountEnabled": true, "appId": "fbc74fbf-472c-4a91-bcee-cc6fae73b8c5"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --keyvault --cert --scopes + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert000001","appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","http://cli_test_sp_with_kv_existing_cert000001"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2151' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:08 GMT + duration: + - '4050442' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4/Microsoft.DirectoryServices.ServicePrincipal + ocp-aad-diagnostics-server-name: + - PWJF5MXsNJeXfk2GpX0VavQ33Q7BBlAFQ1PBOgmVl+Y= + ocp-aad-session-key: + - fn3-KZJCl-zG4WjOQKObQCsB0bjXB8ktJ8RkSCgHj2iDHiKGtdSARkfBWoXcFgaRHr4WvzDHOG4xOF0BDMY4uQzt2g3UMJ5UO_FAymLr7Z3nqVH8MsAuWJzWn1TBtshIiveW40Sz-ffLeP4tTwDxoA.evCEuUdjW6jlx2XcasWMtXjXhLbir69NaZO3P-t0ARo + pragma: + - no-cache + request-id: + - 9742b32f-b882-4c92-a501-78c954fd75a2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert --scopes + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets + you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + headers: + cache-control: + - no-cache + content-length: + - '832' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:09 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -n --keyvault --cert --scopes + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2018-09-01-preview + response: + body: + string: '{"error":{"code":"PrincipalNotFound","message":"Principal b7417b33aff74f3faf4c87b2ae0ee4f4 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + headers: + cache-control: + - no-cache + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:09 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert --scopes + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets + you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + headers: + cache-control: + - no-cache + content-length: + - '832' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:15 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -n --keyvault --cert --scopes + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2018-09-01-preview + response: + body: + string: '{"error":{"code":"PrincipalNotFound","message":"Principal b7417b33aff74f3faf4c87b2ae0ee4f4 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + headers: + cache-control: + - no-cache + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:15 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert --scopes + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets + you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + headers: + cache-control: + - no-cache + content-length: + - '832' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:21 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - -n --keyvault --cert --scopes + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004?api-version=2018-09-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001","createdOn":"2019-06-21T18:30:22.0155893Z","updatedOn":"2019-06-21T18:30:22.0155893Z","createdBy":null,"updatedBy":"a1239024-a78f-4b62-a84e-3119f8924ffb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000004","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000004"}' + headers: + cache-control: + - no-cache + content-length: + - '903' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:24 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-ms-request-charge: + - '2' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"b7417b33-aff7-4f3f-af4c-87b2ae0ee4f4","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert000001","appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli_test_sp_with_kv_existing_cert000001","fbc74fbf-472c-4a91-bcee-cc6fae73b8c5"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2154' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:24 GMT + duration: + - '834610' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - zZhyt14zl0OhjZk/+0wTMqtIww9oR8AMqmXQ2MnPyJw= + ocp-aad-session-key: + - EZxdQ5Rbk3deulVd-UAUr6InytIFGenZxbJ4waiCfnLrGMj8hiruv8FwYAvLv3Pbuj4iPqYDhEbrbhbLTKkN2cio6W65S20eHNjZDmDhfudQgR1MF8N6z28zXH6pNXqZ89wBb9wH4KFpFGoj7aOfTg._8PCBC_Kajwi-BsF3hLx4aYiFBIKnDWiixYvZ3-tgFw + pragma: + - no-cache + request-id: + - e6b5429d-da52-4e20-894a-ab245d8a6017 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27fbc74fbf-472c-4a91-bcee-cc6fae73b8c5%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:25 GMT + duration: + - '3781514' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - BOyHBDAxSIKAYJlLPcX4gbSnf6edPNykjDKKitPiTVQ= + ocp-aad-session-key: + - mt2dF_C1yxipaHIaRRJBLkQXroMv4DFanfoM5JXGk4ZI_1TXw3o9enYdaXSzXHypluFAzAnRp0EeCf4qtL27y1mSoV3IyE5hyZIATDpbQFp0JQL0K44xtS_BYFpDn_dKRg1Y8sE1gobyPFR6efgUtw.DKBH3U5VEg4w9HB1DSTP6l4dfHsL0gVA4oj5vGG_-Cw + pragma: + - no-cache + request-id: + - 1c7133ac-b2f8-4ef5-8885-7c7749601bd2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%27fbc74fbf-472c-4a91-bcee-cc6fae73b8c5%27&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:06.860955Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-06-21T18:30:06.860955Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2685' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:25 GMT + duration: + - '766407' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - aLjul60AojNkmrHXU2K8UCWjsiSBDyBxA+NSaz2RTqQ= + ocp-aad-session-key: + - XaQift2fgc7JWr7Ix6oEZSUF2hht_auembUn1MZ15nR2YYu2Im75IvxZtudn9LqcHia20MtsvFUST2y_l4IPWqTxzPjtQ_wvs2g1rnQG9jVjjIFJ71mDm7kcOTvImSHVmbkjtUAFhRSKoTDA3gE2Tw.ekfjPuqKV4mNr3YlMeBLeIwHNQv1v-PK62G9Hutxz5s + pragma: + - no-cache + request-id: + - 8fdec5b2-01ce-44f9-b8c2-b10d4513bdfd + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/60ba53b8-362d-45d9-ba8f-8e5e06f80636?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:06.860955Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2019-06-21T18:30:06.860955Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2682' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:25 GMT + duration: + - '846312' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - WiG/DPKn3noJELxY9/Bmask7Igt00cCcbhfOcH/k7Qo= + ocp-aad-session-key: + - 6q303QbPkl4it8JdBvNb-zope-FgnEl5vCYEAbLB4nSN4XEKdRZ1XvPdczHbGd0mYDweW5ZfxDRCaD25tKqaUmVs_D1T43696ZNhfKqEPj9P7I16h8bdhszLnEBvPJXH5pBGwMNKITd0fSOXLF8gsQ.OYENnb0xo5m19Q231B5G2_p9pfAupbo0OMVJTi0vd6Q + pragma: + - no-cache + request-id: + - 95b48e21-5960-46eb-8439-350a32779d5c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 + response: + body: + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/7981b3c73d584fab9b104f087b3a031b","kid":"https://clitest000002.vault.azure.net/keys/cert1/7981b3c73d584fab9b104f087b3a031b","sid":"https://clitest000002.vault.azure.net/secrets/cert1/7981b3c73d584fab9b104f087b3a031b","x5t":"RZGAltuVzEuwCerEt-L_8IIdMLc","cer":"MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==","attributes":{"enabled":true,"nbf":1561141204,"exp":1624300204,"created":1561141804,"updated":1561141804,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":24,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141794}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '2387' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.159.80;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"keyCredentials": [{"startDate": "2019-06-21T18:30:24.885229Z", "endDate": + "2020-06-21T18:30:24.885229Z", "value": "MIIDQjCCAiqgAwIBAgIQPmUN/hl0SgGBGnbCUMBZMjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAwNFoXDTIxMDYyMTE4MzAwNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAih9x4wmvWEk92DluM7Y1mu1trEMyfapN/VcbhIm48S2jRKvwX78g6BGJXpTTKlFz4zAr1twEa1eeiZmaibMVTIWpQ1XLaMjHtshyEcV9wsusubg3TsFZGGbCHIzgeDFLLDcfCiz1dyGaLJjuHQyyOvCYVs5z0AtlCQ4ipzYEcAabJMdbtgzYcUNt82hbjJj/77KdmyOsR44C7foFOLBbBvQV0ls9GH0Pa0phQjOBh7h4eXYumYhexBhrr//DbmCKnw44A2Ivds4Dqrc0o/C4f62FuxM+0gbFP+qg06QTovkQH0G9Z6EbU/LzJ9Z/ykRb5liAK+I99RzwWxH7yl9NFg==", + "keyId": "d30ba790-ae36-411f-a4c1-3b425d2c2c01", "usage": "Verify", "type": + "AsymmetricX509Cert"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + Content-Length: + - '1339' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PATCH + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/60ba53b8-362d-45d9-ba8f-8e5e06f80636?api-version=1.6 + response: + body: + string: '' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + date: + - Fri, 21 Jun 2019 18:30:26 GMT + duration: + - '3849778' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - susOkr8YvnkWhpfwvEOXpfZ/acdphRpz4tl/Fe8Bm3M= + ocp-aad-session-key: + - HpVP5N6gMvbIPpudATKqrnEZzIyeC7P9xOsP5APIdCr_bGe-xmppHFMS2HeF3rekN42xTSCh5ThCdGreS4Y4LiZV1Hsxq8DqoKRQCqo-RpoiFI7h1t2igv9BTs9xV5pwjzlt46ANGcPZ3Cd2Qg2yyw.cOtkP2npxpvGPU2L5t71nWpeVK6lPKNBJBgeQ1ceZT0 + pragma: + - no-cache + request-id: + - 27ee6df4-b89c-432e-bfb1-6f67679d4178 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad app delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert000001%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"60ba53b8-362d-45d9-ba8f-8e5e06f80636","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"fbc74fbf-472c-4a91-bcee-cc6fae73b8c5","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert000001","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert000001","identifierUris":["http://cli_test_sp_with_kv_existing_cert000001"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"45918096DB95CC4BB009EAC4B7E2FFF0821D30B7","endDate":"2020-06-21T18:30:24.885229Z","keyId":"d30ba790-ae36-411f-a4c1-3b425d2c2c01","startDate":"2019-06-21T18:30:24.885229Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/60ba53b8-362d-45d9-ba8f-8e5e06f80636/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","id":"d9e67ec8-03c2-48df-a88f-17f16e1bc32a","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert000001 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert000001","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2685' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:26 GMT + duration: + - '3896888' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - sKHAZBgGw8ZD+gPJGLEoUnxY5pfwvBzhG5jUW8+JW0w= + ocp-aad-session-key: + - Ueo2XJae0o66ojmjAW20gtx9bRjltpZSywQbsXol2PKAC9hML6XHaaeH9gQPmryxPijOnWzqZfrf8QLw-B7TojaXaSdNRTKC9KPrmn5UMXdVtrIwpw_434ror1cfF3FuMVe8JaFBXR47j24aGNpZmw.xcmyqRZKFfbiG5QrMbbH7SZiPEB16yKGz34EqtJCJP4 + pragma: + - no-cache + request-id: + - d49e2368-54bb-444a-b849-6d2cb16f873b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad app delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: DELETE + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/60ba53b8-362d-45d9-ba8f-8e5e06f80636?api-version=1.6 + response: + body: + string: '' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + date: + - Fri, 21 Jun 2019 18:30:27 GMT + duration: + - '3658509' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - uHyVfaWnz1wZ+Kit9M+ndgirzc7H4vyg8f/Bx6SxLLI= + ocp-aad-session-key: + - magv1-3LTSJ8vY0dlxb29GTzABJ1ZoizXZgoxSbVvXhmTYpE4g82YOViSpEBSnc_QIdanoM-gXA8RB86Wq8uFnRlBKPR89pNWFaLiApTxA3-jUZErhwce7362qW_1HXGtJxGCYQzRhQ8chMRGlYTZg.BNur61jzycQ-MG-3XdTXQSRmEjNOb1pdiWZfXo6aiho + pragma: + - no-cache + request-id: + - 42d7d6a0-8f8b-422c-be96-48a69447d382 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": + 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, + "x509_props": {"subject": "CN=CLIGetDefaultPolicy", "key_usage": ["cRLSign", + "dataEncipherment", "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], + "validity_months": 6}, "lifetime_actions": [{"trigger": {"days_before_expiry": + 90}, "action": {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}}, + "attributes": {"enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '510' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitest000002.vault.azure.net/certificates/cert1/create?api-version=7.0 + response: + body: + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"24ed5e475b5c45a58d27a682596fca62"}' + headers: + cache-control: + - no-cache + content-length: + - '1303' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:28 GMT + expires: + - '-1' + location: + - https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0&request_id=24ed5e475b5c45a58d27a682596fca62 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.159.80;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + response: + body: + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"24ed5e475b5c45a58d27a682596fca62"}' + headers: + cache-control: + - no-cache + content-length: + - '1303' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.159.80;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitest000002.vault.azure.net/certificates/cert1/pending?api-version=7.0 + response: + body: + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQA5qaemr87CgHbD57J5onVex2F4dg8fhtw02gMSsFCTUeeFi8ioORtmvV0x1IWBosvj78FrXnIAEqKL0pqvbEJDt4FAHEGSCi71WdubtmNRoqdThzY5HImdjjclYU8oZJmb2tNLYQds1FALcS7DBSYYNcJR0hsDYNfRpgTTLSPjuidjkSlEAtib9um+tdcv6uf2LCnuJkocUGQrvW8DK0sZylj+64aANEeXIOdzUrGbJknz82crLCJtGUl0DFLrZVBi8rdJI6j9xs/0+hJVJC/d5FZDUAStFmdD3HAbIBAsOgASXQzldvKRK9ZLrYaa4XLcSg6hNJfYq3sroDkUotuF","cancellation_requested":false,"status":"completed","target":"https://clitest000002.vault.azure.net/certificates/cert1","request_id":"24ed5e475b5c45a58d27a682596fca62"}' + headers: + cache-control: + - no-cache + content-length: + - '1217' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.159.80;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:41 GMT + duration: + - '895339' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - CLBFhp12uVA5Nnh6MG2VC8aF6kYj6BwyK0Y6WAoeTzc= + ocp-aad-session-key: + - TMHZowmMWhV-Ffex5EvamqxYxx2WoeouCilFVhHiU-9frixkghpJ3QIfPvJeMxEMCpxrZUnnaAT9chm45fRpSe5szTON5hpA-A7pk0Vjd845KKoo3uHDiwg5LHV6bP-8UrUIlMra2UCb4RNN5CiO_Q.iE7aT18Y1KxuKeHGYLmh267rpW3tZXbCyMeuQaEzIrM + pragma: + - no-cache + request-id: + - 48b7ddc6-26a6-4b0c-a23c-a218d53fed3c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 + response: + body: + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/0da818a5284b450d8388ee785bdfcf48","kid":"https://clitest000002.vault.azure.net/keys/cert1/0da818a5284b450d8388ee785bdfcf48","sid":"https://clitest000002.vault.azure.net/secrets/cert1/0da818a5284b450d8388ee785bdfcf48","x5t":"vxy8X3ka0GEev0Y5wksuBgwk3OM","cer":"MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==","attributes":{"enabled":true,"nbf":1561141235,"exp":1576953035,"created":1561141835,"updated":1561141835,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":6,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141828}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '2386' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.159.80;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=startswith%28displayName%2C%27cli_test_sp_with_kv_existing_cert0000012%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:41 GMT + duration: + - '786398' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - qg62oDc8M5MhsuZ0i0axkKSX8o9O0cpnMKv2rNkFY8w= + ocp-aad-session-key: + - k5Dh5NmwH3RZ_soKrZFPQlpWLWCUN4oUATwTm8J_NZVSg34yOIt6yJd42V7BuBUn0KMLMMpgieFWG4GL1a02p4UoYangbKbw9P7IPYomh6N_Nl1wQSj8Z7MWwT7SElxF5jxAd2EgWb1l-kh1677fwQ.o4_ggrDcAYCBynajmh6oaF32kG1_tDJqpuGDFv1hC_Y + pragma: + - no-cache + request-id: + - be65e400-fd16-4605-8809-afdf0f2cc840 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: 'b''b\''{"availableToOtherTenants": false, "homepage": "https://cli_test_sp_with_kv_existing_cert0000012", + "keyCredentials": [{"startDate": "2019-06-21T18:30:41.236167Z", "endDate": "2019-12-21T18:30:34.000Z", + "value": "MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==", + "keyId": "88888888-0000-0000-0000-000000000005", "usage": "Verify", "type": + "AsymmetricX509Cert"}], "displayName": "cli_test_sp_with_kv_existing_cert0000012", + "identifierUris": ["http://cli_test_sp_with_kv_existing_cert0000012"]}\''''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '1672' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"88888888-0000-0000-0000-000000000005","startDate":"2019-06-21T18:30:41.236167Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logo@odata.mediaContentType":"application/json;odata=minimalmetadata; + charset=utf-8","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2768' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:41 GMT + duration: + - '9156810' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application + ocp-aad-diagnostics-server-name: + - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= + ocp-aad-session-key: + - tzkJ3bP8EyhiOhDoc3CYPnN9Pw0yfSzuINuBrxoh-5hi81BFxfWg1wkiJiludKCzw7jqCp9LOb0tP_E-O4Psxyj1VAPTje6Z5Um2M77U8DVgcZ3HkCxQGDBDePR0EU5ZDYbLYdPFbLE3tZs_vOJswQ.KbCkJXghobZ3-eFb8vOEswqKli5r7vB4juivqRWezMU + pragma: + - no-cache + request-id: + - b2f3193b-c706-4de0-aac6-b9ba94403b7a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: '{"accountEnabled": true, "appId": "1135b855-b422-4f55-b67a-77bebb479955"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '73' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: POST + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"288586fc-9758-4b4c-ac98-a5b903902422","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert0000012","appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["1135b855-b422-4f55-b67a-77bebb479955","http://cli_test_sp_with_kv_existing_cert0000012"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2159' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:43 GMT + duration: + - '5234238' + expires: + - '-1' + location: + - https://graph.windows.net/00000000-0000-0000-0000-000000000000/directoryObjects/288586fc-9758-4b4c-ac98-a5b903902422/Microsoft.DirectoryServices.ServicePrincipal + ocp-aad-diagnostics-server-name: + - XJbTIKGdEOf1NlwmY8KyGmuB0cYYMB3F3SW245EhNiA= + ocp-aad-session-key: + - r6eTbpzD6QkWqb0cLmX_ZPFgqDiu99I9BwxVOkDIEX9pJJS1SnAhXp5c5oQyCXHMdH3RwdjvjjfsPutUFFGaS0qnal93I_iXzod6CXaeTAU1QREO5CdTxKrz4jBitr_mF_2hs3K0uLSmXLi6VLZ3Pw.ta9EKJ4RmXWm9Dy8LvU1Bg2N4a1Mw5A-yCNydDTR9N8 + pragma: + - no-cache + request-id: + - acd3fd6d-1292-42c0-9fd7-f3e11bc11bfb + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets + you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + headers: + cache-control: + - no-cache + content-length: + - '832' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:43 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "288586fc-9758-4b4c-ac98-a5b903902422"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000006?api-version=2018-09-01-preview + response: + body: + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 288586fc97584b4cac98a5b903902422 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + headers: + cache-control: + - no-cache + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:43 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets + you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + headers: + cache-control: + - no-cache + content-length: + - '832' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:49 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "288586fc-9758-4b4c-ac98-a5b903902422"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000007?api-version=2018-09-01-preview + response: + body: + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 288586fc97584b4cac98a5b903902422 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47."}}' + headers: + cache-control: + - no-cache + content-length: + - '163' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:50 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2018-01-01-preview + response: + body: + string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Lets + you manage everything except access to resources.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2019-02-05T21:24:38.4580610Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + headers: + cache-control: + - no-cache + content-length: + - '832' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:55 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-request-charge: + - '1' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + "principalId": "288586fc-9758-4b4c-ac98-a5b903902422"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp create-for-rbac + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json; charset=utf-8 + Cookie: + - x-ms-gateway-slice=Production + ParameterSetName: + - --scopes --keyvault --cert -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-mgmt-authorization/0.52.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000008?api-version=2018-09-01-preview + response: + body: + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"288586fc-9758-4b4c-ac98-a5b903902422","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001","createdOn":"2019-06-21T18:30:56.4504500Z","updatedOn":"2019-06-21T18:30:56.4504500Z","createdBy":null,"updatedBy":"a1239024-a78f-4b62-a84e-3119f8924ffb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sp_with_kv_existing_cert000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000008","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000008"}' + headers: + cache-control: + - no-cache + content-length: + - '903' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:58 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-ms-request-charge: + - '2' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28x%3Ax%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27%29%20or%20displayName%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"288586fc-9758-4b4c-ac98-a5b903902422","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"cli_test_sp_with_kv_existing_cert0000012","appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appOwnerTenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["http://cli_test_sp_with_kv_existing_cert0000012","1135b855-b422-4f55-b67a-77bebb479955"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2162' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:58 GMT + duration: + - '895815' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - kU2w10RodSRmFDDKfAx6uHxQPwDam6n6u8zYQa+I0/o= + ocp-aad-session-key: + - ssrBQOcvLb1TZIF3oidXlMBYKrOoLuWXFnZBtVCDeu8ViuCnunPSsiaRytNj7Mw7qqPgtJmq-DbGuk0yz3qs-Xoa218s0HhWSm4aD0dIrvEwUc_JDdqUtBQzdep0V72llzckbHMHdVrsAFf1DUnK8w.ZNA0HAjfBa_glZWMDe9nkDhI2X82wVZvzmNqep-2n5w + pragma: + - no-cache + request-id: + - df07b56a-e44b-4153-84f4-70304da707df + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%271135b855-b422-4f55-b67a-77bebb479955%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '121' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:59 GMT + duration: + - '865007' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - DAEEhUUzhQ8pu+4OxvItbpuvqegmLWoSgzWL1kkCnyk= + ocp-aad-session-key: + - iB88wqtiGUsKumYxrPnY7h7YX5Ee3R0GSX50W8sBAslwWU22PmiVwrtfHsyZQDWS1By_JZ8na5shmlqripfeo4KYswiLI3wqN5jIfE43sv8Uk7uTllwkLx9l9bkTcXMDOfV6F1OSWhQyAA7oFWd91g.Cuc5r4by0lzTMneq59twGOrPqOYyvzueP38l-khf9vI + pragma: + - no-cache + request-id: + - 38504f8c-9b1f-4384-bc26-3fff961d5d94 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=appId%20eq%20%271135b855-b422-4f55-b67a-77bebb479955%27&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"88888888-0000-0000-0000-000000000005","startDate":"2019-06-21T18:30:41.236167Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2685' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:59 GMT + duration: + - '738030' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - +Vo1vaQr1J6K57B7CK/pVo20E97sFK7LOud+zxDHFNk= + ocp-aad-session-key: + - 9Vfr39FganVESNDvOERWMP6yOIMkFrYZAO-AhNNbx6hrgweA5pd1MdmrRUJc8-8PJKn_mK85aY67rR9syALwbOEHMuorzOn83JHbBl7aRxHZNGNhB-5I-VYoIqDGjiV2YHERFfpkDU7qVHDEmaRpVQ.T7T1a7AK1ECPQKj-KeZ90gRlMuzrCtiSsP5fg6WrBHU + pragma: + - no-cache + request-id: + - 7f915d30-ac9e-4368-8f9d-161a751a34bf + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/22602aba-3fcb-48ed-9b8e-a8b04948726b?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"88888888-0000-0000-0000-000000000005","startDate":"2019-06-21T18:30:41.236167Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2682' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:30:59 GMT + duration: + - '2995631' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - MH0R8mLEKNJg37JupYky5a6a5nCUFLw87urdg3u3YYE= + ocp-aad-session-key: + - luEICbXffrBAjwSsFNLPPHANuvcwTA9zILayug1bgpAgchCrg4k95bwUfMh0_Nm2fr27H0u3dkt1XxEtdJy0VYhSdPDXcbmDM-E_qpfa6cLIn5968PbrLRk5AV1Gi02Pyhc7PieAWeADUOAhrphZgw.A_KnGSMm9G_PDq1nLrgT5IKu4AwRoVFfeGQs_U9QhJk + pragma: + - no-cache + request-id: + - fcbadad0-6619-4220-a5c1-cc437082cbbb + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-keyvault/7.0 + Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitest000002.vault.azure.net/certificates/cert1/?api-version=7.0 + response: + body: + string: '{"id":"https://clitest000002.vault.azure.net/certificates/cert1/0da818a5284b450d8388ee785bdfcf48","kid":"https://clitest000002.vault.azure.net/keys/cert1/0da818a5284b450d8388ee785bdfcf48","sid":"https://clitest000002.vault.azure.net/secrets/cert1/0da818a5284b450d8388ee785bdfcf48","x5t":"vxy8X3ka0GEev0Y5wksuBgwk3OM","cer":"MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==","attributes":{"enabled":true,"nbf":1561141235,"exp":1576953035,"created":1561141835,"updated":1561141835,"recoveryLevel":"Purgeable"},"policy":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":6,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1561141794,"updated":1561141828}},"pending":{"id":"https://clitest000002.vault.azure.net/certificates/cert1/pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '2386' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 Jun 2019 18:30:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.159.80;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.866 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"keyCredentials": [{"startDate": "2019-06-21T18:30:59.151859Z", "endDate": + "2019-12-21T18:30:34.000Z", "value": "MIIDQjCCAiqgAwIBAgIQcwYC1iuWRrKBRJgx4vwpBjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MDYyMTE4MjAzNVoXDTE5MTIyMTE4MzAzNVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/JNf/tDpmMIfzY85Ee6n6ZaOrNAocdl77T4e/B/cEcXJFViIsnzh/7vmu9ebjCVnC0xZp8jIHoYgdlS08xjS6W2rdU5rw1FGEt4/vhu47sf8lK/I76NRcoMOGuMAs9WAwfMBAWs87HJX3YoKoyx/56D5K60aMgeUROMWk09/Ldf1LdLvaXXDWcSErN9mEB3Hk13JcQpJnAlbdwOJlxM54YFCG1yQKcf2BRNjbvCUS5HJZVwvcapRcKRn9QphrTSCn9Br25G2WdcaUOpfc5N6T2gtsc+qYME1jDEnA2JpNftpmP7jZ+JsgISQvxjCsns0LY7yMDwPqJf7z1jidsk3sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFJjSmP0JdNbWK0CbYtUdkAvmZCv1MB0GA1UdDgQWBBSY0pj9CXTW1itAm2LVHZAL5mQr9TANBgkqhkiG9w0BAQsFAAOCAQEAXr0r7UrS7wp3XU2wrhl/l78lK7gK1jrxBK20uApa15d6DwW1E3gQVHkVYG006Wd2ttDKbVEAYYik9pTKBHw/KdRGCQwwV40QPW5VomMHK2flZIC2aSctCVmsDTh5hzGDBUrvwDozFngPsSuqOO4vna2/n1xZ8C/+546cyXcO+pZyapE8cLHE8L0UvECUBLL7dBgbP2zcrr6EH/fsJ50S/nYfNzmsaZzbKivnurxVJoV828x5kgNnmE7vTQOfDK2tnFuf3t4V247S1TWh1lphs+/i+I+zSpmysv6Bysvzo8y5Rldv4MESKggSuxniSAKaLxQIo1+oBPNCnFAjpE7WAA==", + "keyId": "301c3c47-ca57-4d00-a8ae-9026b02aadc7", "usage": "Verify", "type": + "AsymmetricX509Cert"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad sp credential reset + Connection: + - keep-alive + Content-Length: + - '1336' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n --keyvault --cert + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: PATCH + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/22602aba-3fcb-48ed-9b8e-a8b04948726b?api-version=1.6 + response: + body: + string: '' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + date: + - Fri, 21 Jun 2019 18:31:00 GMT + duration: + - '6140346' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - vzT+9Yq+aEnlFAqW4ArMt4wc+vCo9D3Xgf5jgx/UnQk= + ocp-aad-session-key: + - xX-ftpIn5W9ywE9t0Ljn7RBeZqThqAH0uMPIm45yJEIZ_GuknLY-iGGHRz0OB7LvUh7LGwuFI1P4pxs5MMIlBkCfegbd9M7O8JS2NCxmPOE_5vIIkVGlvELsULH7LRRLbu4VMgjnFNN103PT4KMWMA.pSw8KfjGDUOimYvYeJGKIejKoiqwIZSuXfRo2fT20zg + pragma: + - no-cache + request-id: + - 8a9f0e26-4141-4790-be64-a5bb9b3037fc + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad app delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications?$filter=identifierUris%2Fany%28s%3As%20eq%20%27http%3A%2F%2Fcli_test_sp_with_kv_existing_cert0000012%27%29&api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.Application","objectType":"Application","objectId":"22602aba-3fcb-48ed-9b8e-a8b04948726b","deletionTimestamp":null,"acceptMappedClaims":null,"addIns":[],"appId":"1135b855-b422-4f55-b67a-77bebb479955","applicationTemplateId":null,"appRoles":[],"availableToOtherTenants":false,"displayName":"cli_test_sp_with_kv_existing_cert0000012","errorUrl":null,"groupMembershipClaims":null,"homepage":"https://cli_test_sp_with_kv_existing_cert0000012","identifierUris":["http://cli_test_sp_with_kv_existing_cert0000012"],"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"isDeviceOnlyAuthSupported":null,"keyCredentials":[{"customKeyIdentifier":"BF1CBC5F791AD0611EBF4639C24B2E060C24DCE3","endDate":"2019-12-21T18:30:34Z","keyId":"301c3c47-ca57-4d00-a8ae-9026b02aadc7","startDate":"2019-06-21T18:30:59.151859Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"knownClientApplications":[],"logoutUrl":null,"logo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/logo","logoUrl":null,"mainLogo@odata.mediaEditLink":"directoryObjects/22602aba-3fcb-48ed-9b8e-a8b04948726b/Microsoft.DirectoryServices.Application/mainLogo","oauth2AllowIdTokenImplicitFlow":true,"oauth2AllowImplicitFlow":false,"oauth2AllowUrlPathMatching":false,"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on behalf + of the signed-in user.","adminConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","id":"071b2ac0-4b0e-48b4-be65-06349da772bd","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access cli_test_sp_with_kv_existing_cert0000012 on your + behalf.","userConsentDisplayName":"Access cli_test_sp_with_kv_existing_cert0000012","value":"user_impersonation"}],"oauth2RequirePostResponse":false,"optionalClaims":null,"orgRestrictions":[],"parentalControlSettings":{"countriesBlockedForMinors":[],"legalAgeGroupRule":"Allow"},"passwordCredentials":[],"publicClient":null,"publisherDomain":"microsoft.onmicrosoft.com","recordConsentConditions":null,"replyUrls":[],"requiredResourceAccess":[],"samlMetadataUrl":null,"signInAudience":"AzureADMyOrg","tokenEncryptionKeyId":null}]}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '2685' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Fri, 21 Jun 2019 18:31:01 GMT + duration: + - '859928' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - 7dMU+33Cz+68qE5sK7ANGlhWJX2RrZSFfal152ZxuSk= + ocp-aad-session-key: + - NwxbEStDtzTfPRhFVG8hlIvnNwL8O47RlMgTGb3q1KhL267LoiJ81R57uM_hw1TK4rU9SOZfCHukZix9W54ph5kKWdW2zcaY5cpmHjoUdI2JORVvkFBCw10yV3HdJb5ykINVdoP3mA-HLltv__0tFw.XGNO5YqrfY3JsYmmZlaIIYlUGzsneZSms3S3WfW0U3w + pragma: + - no-cache + request-id: + - 6af05af5-06fe-420a-a1ce-73c9e436d7e9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ad app delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --id + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 azure-graphrbac/0.61.1 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: DELETE + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/applications/22602aba-3fcb-48ed-9b8e-a8b04948726b?api-version=1.6 + response: + body: + string: '' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + date: + - Fri, 21 Jun 2019 18:31:01 GMT + duration: + - '3895644' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - 1Sw93lDg24rWQqiNnfxG0tmtbhuAcSA9P0X1MIiqPnE= + ocp-aad-session-key: + - MqWu9p_HdbESqB77sg8_x6x9MJKOOlF2_3Q2x90zENOU5K3pQAi8WlVrNJi8jS_UojrWSlpHVFzQ2mrWJRbqGSlDUG_GljfT-lQTXiKs_XaQywtVLi9Jkil_b1yBo8jSPIYhreNab9MD0gqWuwN9Bw.BkhLrBJehw9VWzC8IQVubYnv1TUIIAqA3uW5Ir2TsJo + pragma: + - no-cache + request-id: + - d5c38820-8188-40da-8b46-8f8072366fe1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 + Azure-SDK-For-Python AZURECLI/2.0.67 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sp_with_kv_existing_cert000001?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 21 Jun 2019 18:31:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6NUZURVNUOjVGU1A6NUZXSVRIOjVGS1Y6NUZFWElTVElORzo1RkNFUlRFQ3xFQzczMUJBQjQyRDY3OTRBLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted version: 1 From 0370064730991b38a47da0613f0199a060014201 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 11:32:10 +0800 Subject: [PATCH 39/51] pass test_version --- .../tests/latest/{test_version.py => test_cli_version.py} | 2 +- .../cli/command_modules/resource/tests/latest/test_resource.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/azure-cli/azure/cli/command_modules/resource/tests/latest/{test_version.py => test_cli_version.py} (94%) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_version.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_cli_version.py similarity index 94% rename from src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_version.py rename to src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_cli_version.py index cade56c37f7..9a4429f6bcd 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_version.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_cli_version.py @@ -15,7 +15,7 @@ def test_version(self): output = self.cmd('az version').get_output_in_json() self.assertIn('azure-cli', output) self.assertIn('azure-cli-command-modules-nspkg', output) - self.assertIn('azure-cli-dev-tools', output) + self.assertIn('azure-cli-core', output) self.assertIn('azure-cli-nspkg', output) self.assertIn('azure-cli-telemetry', output) self.assertIn('azure-cli-testsdk', output) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 25a57feea51..3a9e34c6514 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -28,7 +28,7 @@ def test_resource_group(self, resource_group): self.check('name', '{rg}'), self.check('tags', {'a': 'b', 'c': ''}) ]) - self.cmd('group exists -n {rg}', + self.cmd('group exists -n {rgF}', checks=self.check('@', True)) self.cmd('group show -n {rg}', checks=[ self.check('name', '{rg}'), From 42da25f46ea152d965253f1e698ebcc7aaca09cb Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 13:47:08 +0800 Subject: [PATCH 40/51] revert test_node_type --- .../latest/recordings/test_node_type.yaml | 66320 ++++++++++++++-- 1 file changed, 61361 insertions(+), 4959 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml index d66adefb269..da0a561a0fa 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-graphrbac/0.60.0 Azure-SDK-For-Python accept-language: - en-US @@ -17,33 +17,44 @@ interactions: uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-06-21T01:32:03Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Zunli - Hu","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zuh@microsoft.com","mailNickname":"zuh_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zuh@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zuh@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-21T01:32:03Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/21cd756e-e290-4a26-9547-93e8cc1a8923/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zuh_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-06-24T01:43:59Z","userType":"Guest"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["2f442157-a11c-46b9-ae5b-6e39ff4e5849","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-10T06:44:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"SFS","dirSyncEnabled":true,"displayName":"Alfredo + Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE + ENGINEER","lastDirSyncTime":"2019-11-28T10:29:37Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo + Santamaria Gomez,OU=UserAccounts,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo + Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo + San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo + Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo + Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2019-11-20T18:48:41Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria + Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10200871","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10200871","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91710758","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"41","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"309","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"10806","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Basu, + Tassaduq H.","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"TASSB","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1252188"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '1670' + - '16418' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Tue, 14 Jan 2020 01:22:49 GMT + - Thu, 12 Dec 2019 00:49:20 GMT duration: - - '2713394' + - '1615458' expires: - '-1' ocp-aad-diagnostics-server-name: - - WyFgWH96Xk8Sf9RnNkSofkodHlmn9+cmAX6u8ggtOyw= + - R24SEsKL6l8WwGja0LsRtb5gfSEzPaANsccbqgL6qjQ= ocp-aad-session-key: - - EmR6h27pjj9p9it1RDP-kDz2vUjEWTkGdWWJttDyTYmKpXbVYCuFHNualJf4P0wKeGWsc5FazAK0zXlTBw-vabTFVQ2l0WmayfUbflQ7ZxU4MWQ1QfbSMsks4XcLZ48dHIcT2NS2Ipl6ecJimBG6fb6FE3pzef6_lTA2ij5esyQ.ov4T4-SFWY_3uhRwqS-GeKUZjnOhdEiZBAxHUrhksGg + - Hp5SmY8q2JLLoXXXm4NJwmy9_wzikmAy10iJKHePeKLKjRwq1WU0XbBz1ZEq-oS4RKcMwGI8EOJvxafv6o8NZPH7FQ0h_pGT0g2tYolr1sfmxisDwe26yzksGwHOacXw.HzjM88_3VcuKrNtbgqJHZu_Atq4cOSYl5M21P41OwO0 pragma: - no-cache request-id: - - 3b55f2a2-8564-46b2-bca6-d542032c7d3c + - 2ce3d8e0-8101-407c-b98c-16be3f8b51d6 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -56,9 +67,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "21cd756e-e290-4a26-9547-93e8cc1a8923", + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "3307ff37-85af-4550-bc6a-d1e02672cb7c", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", @@ -82,15 +93,15 @@ interactions: ParameterSetName: - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache @@ -99,7 +110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:22:58 GMT + - Thu, 12 Dec 2019 00:49:24 GMT expires: - '-1' pragma: @@ -117,9 +128,9 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.269 + - 1.1.0.268 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -139,13 +150,13 @@ interactions: ParameterSetName: - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -154,7 +165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:29 GMT + - Thu, 12 Dec 2019 00:49:54 GMT expires: - '-1' pragma: @@ -172,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.269 + - 1.1.0.268 x-powered-by: - ASP.NET status: @@ -192,7 +203,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -210,7 +221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:31 GMT + - Thu, 12 Dec 2019 00:49:55 GMT expires: - '-1' pragma: @@ -220,18 +231,18 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -257,7 +268,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -265,9 +276,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/create?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' + time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' headers: cache-control: - no-cache @@ -276,11 +287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:33 GMT + - Thu, 12 Dec 2019 00:49:59 GMT expires: - '-1' location: - - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=c9cc23b5cc0b4c7d9915f171bd4f5480 + - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=e5a7ef9848e547ada70828f5ac21838a pragma: - no-cache server: @@ -292,11 +303,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -314,7 +325,62 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 + response: + body: + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' + headers: + cache-control: + - no-cache + content-length: + - '1322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 00:49:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.235;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.883 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -322,9 +388,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' + time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' headers: cache-control: - no-cache @@ -333,7 +399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:34 GMT + - Thu, 12 Dec 2019 00:50:10 GMT expires: - '-1' pragma: @@ -347,11 +413,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -369,7 +435,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -377,9 +443,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' + time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' headers: cache-control: - no-cache @@ -388,7 +454,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:45 GMT + - Thu, 12 Dec 2019 00:50:20 GMT expires: - '-1' pragma: @@ -402,11 +468,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -424,7 +490,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -432,9 +498,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' + time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' headers: cache-control: - no-cache @@ -443,7 +509,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:23:56 GMT + - Thu, 12 Dec 2019 00:50:31 GMT expires: - '-1' pragma: @@ -457,11 +523,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -479,7 +545,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -487,7 +553,117 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBOAMLU4M8YUHzp8n7Aa+XwBgsno2quNb66ar5isTXBPr1GU7zK6ujz5gvSyI8GFlsVB+u00YGt5vKo87QGNg5Lqf7UvVH2Wl4dtLg5uEPDoEEXasG5lJErc2m62rbtzXjR0w8tCVUKPwzKUI730RXVkGPT7W2iUaeaStB7LTERfaTF/nPvNViutG29M3Af/0ftHr3jGmLYRnpCnkpViXtXgFfVfbsujhbQ6MgeiWgoRc6DejMMtd8/8eQUz2rSKPQr4djBZz9Ecunnq1HbbGvcupDjshsgm04n+DmcWVclTD4wsFpwdXRK9CNizcGkBdK1fYwJebQ0wzDCSKQM6Dfa","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"c9cc23b5cc0b4c7d9915f171bd4f5480"}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' + headers: + cache-control: + - no-cache + content-length: + - '1322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 00:50:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.235;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.883 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 + response: + body: + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' + headers: + cache-control: + - no-cache + content-length: + - '1322' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 00:50:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000;includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - addr=131.107.147.235;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.1.0.883 + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 + response: + body: + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"e5a7ef9848e547ada70828f5ac21838a"}' headers: cache-control: - no-cache @@ -496,7 +672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:08 GMT + - Thu, 12 Dec 2019 00:51:04 GMT expires: - '-1' pragma: @@ -510,11 +686,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -532,7 +708,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -540,7 +716,7 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","x5t":"dC9-ewJy1peDM6LCpLEC3hMyy84","cer":"MIIDQjCCAiqgAwIBAgIQBztrW4nJSlWuzRWNrOWZVDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDExNDAxMTM1OFoXDTIxMDExNDAxMjM1OFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANPKuF0+UZ5+Xpy3bqybuBuJJ/v2cljRNQpIzTMpew5GgJTke1Uz6XY026JHDa8GP4bC6FLWHriBWNe1HDEaDq787+UuAp1zHjAq18EQHF9O+BfZyx1iNoQrOgFQnyMTVIguFdSr9CEJr0P7IYDolTdmVaCGXgO/4QKKHQ/CDRJ0blRQt+eZqosXzrmeiADIIt/jix+jJBRTIOHHMym0iwz5MS+746jW1SLWw62D6L8VF6EZRxcZz/AumiSTr0LLZMI8hBEdMwQ8k0WcKoSNs8GB0ojBU/662YLdBBS3rDJvDZOot6SDOtzoLAq1l2EYB/Jzr7SKmz69QPcTLnUneRMCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFO9rSj8cER22rd8J4vQ8soD2ZrpzMB0GA1UdDgQWBBTva0o/HBEdtq3fCeL0PLKA9ma6czANBgkqhkiG9w0BAQsFAAOCAQEAcW7W0vlvSfjJWe3791X5tlPN3sDPyZZGUsYr5F5LMxTmv8ikdh7PXiEOCU5+r/fHSI+9fiSQ/buan96QSO1y2K84mouvapb7a4eXlYaRZ/xYmFMvJZN5URbcqOE6pyalvQbEBdR/ZpwoMkSAkV2CpNbhj+pnKU5JpmUR0VsT5oKvZtnNcsQ0NbPsrdieJM28KD3qf8VsRrLmbxA84vgYXa2XO9oTU72n2jTpeEvLSwXlUTrCYG1y62JY9/WNRNE6cMdEeUzSp3ANAY6EAgrFH0GvmrURSvMsfNMRqtQ9/Fuodi5it+9Ff1xCqjy4mUCIIDcUkMNevH1wi5tZNoldyA==","attributes":{"enabled":true,"nbf":1578964438,"exp":1610587438,"created":1578965038,"updated":1578965038,"recoveryLevel":"Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1578965012,"updated":1578965012}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","x5t":"ptQrWdNuuGtsLgAwFlcnsAe23sA","cer":"MIIDQjCCAiqgAwIBAgIQMqOV1s0ZS9O1NtRG1tWMcDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MTIxMjAwNDA1NloXDTIwMTIxMjAwNTA1NlowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPh8fxolpVQZmkT4NJi26+aJDojKMB0GA1UdDgQWBBT4fH8aJaVUGZpE+DSYtuvmiQ6IyjANBgkqhkiG9w0BAQsFAAOCAQEAT++7AhRGzXFEJv3e+EB3bE9dAzyg/V9A8MQgGKTW93fKWdjkU3UHOXYwpgprEtxSLzrnriFHlMGJ5+x+Ngi69l0jr4taGFaO/b9r856bCrY0tvsl/1uCzuj2qBR/7pH5y/fWfi27wgaNI7/pXzcyvZGrADtF4bvMMPqQLLum97ulTtA0mKQGE9Ozzc+5Rh8AleNj4Lj0Bn5qDMS6rsh4vECiBAZ/5uu7uWOlECu28vpVIiX4EBsXVB2HQLxcL0MnXmRDV/oWuA8iUyW6dvR1H0nkYEluDGfnIJ/AgVwaZCH/X9HvMGCn6K4wLv9ngqObDN13bHuKtH8qMDco9NuA/A==","attributes":{"enabled":true,"nbf":1576111256,"exp":1607734256,"created":1576111856,"updated":1576111856,"recoveryLevel":"Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1576111798,"updated":1576111798}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' headers: cache-control: - no-cache @@ -549,7 +725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:09 GMT + - Thu, 12 Dec 2019 00:51:04 GMT expires: - '-1' pragma: @@ -563,11 +739,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -587,15 +763,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -604,7 +780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:10 GMT + - Thu, 12 Dec 2019 00:51:05 GMT expires: - '-1' pragma: @@ -632,15 +808,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -649,7 +825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:10 GMT + - Thu, 12 Dec 2019 00:51:05 GMT expires: - '-1' pragma: @@ -679,24 +855,24 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-rg/providers/Microsoft.KeyVault/vaults/azureclitest-vault","name":"azureclitest-vault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/byok/providers/Microsoft.KeyVault/vaults/yugangwbyok","name":"yugangwbyok","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certbk3fay3vvkixlzogwucbyymtjdhws2ojd47jesq2q6mb6k4gty7wp/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-feryep","name":"cli-test-keyvault-feryep","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_saxgau4bydccjibwzr2wfspkrfubvrgqest4vbwj52ltuk6sjnuhii7sa/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-fa22px","name":"cli-test-keyvault-fa22px","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sd7elfmd26e7ytqctwkujqiat56jhsmwowkqc7ft54wvf2myqplc4bjh5/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-yooita","name":"cli-test-keyvault-yooita","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret5yhunrxgffpbqtbiesczpnqmfdbqxjkzb2rd7ychconne3iherr/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-pgndvw","name":"cli-test-keyvault-pgndvw","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_kv_cert_contacts5xwvxujgqsmaygl3epc6r75gcu5cjetkecvw43ksukxvzdhmqj/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-3tz6oq","name":"cli-test-keyvault-3tz6oq","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault4848","name":"vault4848","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yugangw30/providers/Microsoft.KeyVault/vaults/yugangw30-kv","name":"yugangw30-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alsantamclirg2/providers/Microsoft.KeyVault/vaults/alsantamclirg2","name":"alsantamclirg2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG-Globalization-ARM-Keyvault/providers/Microsoft.KeyVault/vaults/GlobalARMKeyVaultnew","name":"GlobalARMKeyVaultnew","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21207033128/providers/Microsoft.KeyVault/vaults/rmsfe2etest21207033128","name":"rmsfe2etest21207033128","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21208145422/providers/Microsoft.KeyVault/vaults/rmsfe2etest21208145422","name":"rmsfe2etest21208145422","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21209025714/providers/Microsoft.KeyVault/vaults/rmsfe2etest21209025714","name":"rmsfe2etest21209025714","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21209145447/providers/Microsoft.KeyVault/vaults/rmsfe2etest21209145447","name":"rmsfe2etest21209145447","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21210025355/providers/Microsoft.KeyVault/vaults/rmsfe2etest21210025355","name":"rmsfe2etest21210025355","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21210154648/providers/Microsoft.KeyVault/vaults/rmsfe2etest21210154648","name":"rmsfe2etest21210154648","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21211032108/providers/Microsoft.KeyVault/vaults/rmsfe2etest21211032108","name":"rmsfe2etest21211032108","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sfrptest12101612107/providers/Microsoft.KeyVault/vaults/sfrptest12101612107kv","name":"sfrptest12101612107kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '2992' + - '2919' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:11 GMT + - Thu, 12 Dec 2019 00:51:05 GMT expires: - '-1' pragma: @@ -726,15 +902,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2018-02-14 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"21cd756e-e290-4a26-9547-93e8cc1a8923","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -743,7 +919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:12 GMT + - Thu, 12 Dec 2019 00:51:05 GMT expires: - '-1' pragma: @@ -761,7 +937,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.269 + - 1.1.0.268 x-powered-by: - ASP.NET status: @@ -779,15 +955,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2?api-version=7.0 + uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d?api-version=7.0 response: body: - string: '{"value":"MIIKRAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAgQWSSFMaDrJwICB9AEggTQLqq9uW/ts0cwO4wExhuNnAjT/NdikoaNt9kra4Fdalx86KpRqE0k9PwL3RWbbgpRm1rniJ6BW/y5kE2SjUalfw6KxZ7gaFqX9MUt962JpJacS0YiFj9d9ZQAztz2hHuWZ72Ghf5Sx3/QVdcxRR8MaNyt1yce6+Dm3fAx2ScGG59oapxzRqNgHJodceEygxaZPrRCXiAczbhOLqoQyBHDGtrZNlRqjBWQAZrIa5V7VhtBV1y3smkuzJtuDrb3oyOrtCnjGQhay26QSkxnTw/Blw2RtSdKO2jkgBAxYIVcosGfaGV4KI59WfLlyJOQv93sBN1Cro0LKtf+zjeiNt65ZxrnMI19TR7fLsDqJG94gkIqG4QJjDUqjUAX9dMejY3+g+GCRzWQ6gPpKzENsoUTuv4tJ9oLhgq5e37MDSy2xjZkRMRq4WjctXe75CGzWqJkJGnHtrEn2n5zQbhzAQaJlnt0nALhuBO/WsuwYNIuxvbWysoEQfm0zPUcXHbH0qa/1LzOrP0ZHKhIkA1CbNv3Re4dEUfLvVwFMPUaw6nxdTF6LDEhi1icHI2Kkz2oVmMCm85dTCu1ykR2n4Rbhz1ekWtKP9WLXc73RshFTrU3kx01ZC7QyheZN89DX7O9j5Ar/UP8a3nbU124P3k4qAP/p6ft2pKAxlKw5pgbk7Kw13Cwtr9QavHJMZURN4wshplcMGlq4aiN/cwRz1BZZ1yDSooKsOJNf8yonmmR/VRLLUERjXwKkzpF2YbeeYdP9rtSVzD4xw87D1bi+oCjXrqQYm5zZGhv48Ek4cQmJxyPB34rribEQgLm/68G0GBYMt2KgqAkY/t9GeFB9dtlsQRUpWKANl41fAggS+RP+80Z4p2aTacauhPmcLGIiCBJeUkY9yHVblyH6DzJKOG+JE+R4RyKqhDsOqLb4QsJkeJR1ATa9DWUoEvQ7jmvlGAQNOMDOoL4X/hba7ml0pnIbcoozS5GFkSqLglh/m4uaEyIm7YqhE5kjxf6vrCFFrKgMBjEDz5uRIoDKNGPW/jE1Tz+TuTv02j7TcK5qeymc3qUy5iq7QSTaC6R9SoIJPac1Eb+IupsZK3aRJ9TY7QfZt5fVrm1xzX5t6BbtbMa8vbkrZH+kSOjkLYybxqyBiJ5qbztgkh6OX+kH2onwiHvwBmVVW/byj6LXZ/bozVFaqZux8iYWNhN+dY9uhbdOiejHPFLqwRVa8TZCp6dlFga2BD7e2fVY0cQwWaFAHVOADN8bDPfhQ5azlKfDSowoW1oyjU+34y8DfJ8UlvwUhk9WFCjXjlpLeODejvwXQHwVqaHy9S3MgIexRc7lQaYusAbQhUMvh7bYHVvIV1NUGu3+jto4I4BvjsWfD0D/tqMX2k58vk04A6fd2YofU2Q5jlj+Lx61Ri0c6bynYeJCXic5j2KEQMHI2b0vHxqIasPJhWdyJGgNMwH6md9n3Y+sozV7RSiRImM2fia2p6p4/gwf/So8+4SDgHQTFnX9B42t6c0RRUAJPOiiqFKlq3BnwlsmM+NZVd92BNLGEaOiENiylovpde0x30Vg7nrUd/zufwOa+YclAIOrWu4GvmQDn7DusrlyfpI/myilx5tPsDNZDcUfkoiNuRitHV2imnUc/F4dgoxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSABmADYAYgA5AGEAYwBkAGEALQA1ADMAMABhAC0ANAAxAGEANwAtAGEAMABhADIALQBkADIAZABlADQAZABmADcAMgA0AGIANjB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQI6JlbHV3JjbsCAgfQgIIDkGqy8FGfhhc8aMz3WjcxRGDZb1ehk656RKFmbamLGBTe0YU8dy5eXcrfdn6v8+vDsxce+KAkUjlzBJO5hCNz5s+qdaTcm7oEpX4z3aB4i+PM3pSu0nygk+zzbd+TSPr9F2M41WX4Opgod0HPx5RZd6YXmObIuQ4kcwabPlfyE3GTCPE5twPZY0A9HL+2u5DEUvT9o5Ebx0ieRJo///dKN0uXDINdD/cH5DdOYiicn9AZrxjtLxasOiFtatnH5cjuchZ04PZAKHMg3HaDYU9BpjELlPSJ9OuMCQ8fJ/or+KOLbssehkKmosbJLRsvLwksbOBEX4iSPRG4BHuL54M3giSPYRuc4cXNFr5t/GMSV9pjh2XXBsM7EB5+jHnniU+EIkvE3ddFVxAr6DlRDi/yIWS61XuJrVM8riBen5sQguDPjCDl+x8Q3A81fhnjIXazzhQzMzB3UA6WqQeF18Oe2JNtRvfqLPfnYCrkBK0CNS04iCyGOYoHjzaFuH8WZ2AbVheHvslxx8iGWGWEmCSb1tm9mvy/aqaFw38hd5h7L8pmkBJYHf323CotYWgAlmGIwISokknl5+LKGT3hFjZjqlxzZQaV51SgHXvFaOA+x3j3Ae6JG1jnuP3SXfi9gmEtyslI/YVBHAVNn0gVx970l+nh6BqwOKkkI72fpAHY7kdL81RuOlaZ/Aa47qHlZWHoNV3Nd3D61q4r5bsm4N8XAvD/a8XyUwgUJSZNjo95d8x0ADTASXn8/JgJFGS0dMGCiMHq1EN11OtCJII/V/fHMfeH6hoW1+SA3VivAv70eE2ePosUHzr59UiON8fHeQH7ouVpCc+WMRL7xi+CZyCVf2U78890dTP82ufwm8NNLCevCEbmCUnnvlqwGMtg07UjRQ9MAMlGRiC4/LAF1miP0Ys5IFBMii0MV3JOQsITCTb/mj9qSWsXFDot4HUhLURA2KS+dn9pgeLpcVuj4Brpoig/uRVbDXN5VBDa+gW8FCwYAYnpsDZgv5MX4iQGHYY/47pUEH7fwICoQ3ZTSLG44WwinMY4iulqszsx2vspfPF4+sP3vhAA6Dli8W2lxBH8Lun6I4A9TOQgHuzuyjRzKz4+KkRdzw5t63zmK05MGmng2m6tw8ofI8CoHz+82avLTxCsBm2wAicAU7dyqjmJT1a5q/p0cUeGh55OpYDD7JKCVBVU70mjDhQ2IPjV80VImDA3MB8wBwYFKw4DAhoEFDwyDaoJLJ5lnhoCXcqdLGbUqAkmBBR1tL6H6O9LfZi1hTXIkzBpvCNpFA==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2","managed":true,"attributes":{"enabled":true,"nbf":1578964438,"exp":1610587438,"created":1578965038,"updated":1578965038,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"}' + string: '{"value":"MIIKRAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAj5xbFPmvvISQICB9AEggTQr+UKLIXCWsPjz0TUifXsS/dzVdVXDeejTUEzdPVEf5M6RPHB8rAvUR0T7dnfuX+kJieKnXgTVA3CRF4m+16dIU+44CYLwK75Q8A4jyfFMrVgAyaBxDAwd85uEnQ5v32Is1q4/wE3hnCOLFnIbBSDgaWfOBsPsNe+SLqKu+qC30CCHVU04LzZ8ZBzEnUReKULmekHw2uMMS24VODQo8olwaK2nhyxl0QUla6Ab0AgI2x1A/RcdDDoJ/ynJiLbQfiNTxrOXdx7YQx35u34Su7QG6F6ug6OzSWceQ0H9CKTYDlookiMt/lXTuvCNhwFb/lghUWqu0W1tMd2thYgr3UZoB0IaRe8e7kt1Om4RR9J0BtnW/7+IT4yrunAjwSxcUQwQQD4XxAx9i6ZtlYRduIO2XQq/xQQoG0p8775Sr7WB9FROYrN/sBLpilGWXiUIMPVsRI7k+J4P5D7V6Hc60eh3PlH7wcjZF42U3K0nNS2jOSunzdYrOzsclRnAgtbVhCk1QdbY+GCTVYUx5+qsPw0vSo83YfVHL2wMOe8iM7NsIg7QBhRhSAp5By84OVFxpY2YuMNKlSfHaiZkzr9r9NPlSa2yhyljiiPyOLgMap9RPUWV8X0RBpB6WF1omYitY538mKzjdYssDK7rKkKmXGlAsuF2ZzrD69qoBbw1VyV/yNpP9UxO7jfmaEKcAe1AAtz29Ko2bu0f+L9QZb3q9pdpShpBo9O7r53woyTJ805ewKJH+zpc4kJRDOax7/nSOuPAW99vqc2ySqOK51/3UUx1wlVPZGvRUNdeIdNrbx8XXMtpicNJLcRhPwLlQaQznVs+ixIImrsTQHCXHNXsaFETKuiEETQTWX+bbAXOTdiPo3TWOj/4D5r5CB29NdPjFfSPoL6wS3BoMG8GilTmyDuCfIF0eQMvtlNrfyGROz4zbMOhgUpcWAL6K/HBG0Gd5JVpnVjQkF0arAuGIlFuOdT/HRno3EX+887IywwluOW8WiplhhCp7gFtfMzmgOWBCvZSa2o+YNvgjui9qY1i2naND6TiDs21uRg1mVKIveQWLA7F0gb3qzzjJTx51u5293LknipP6yCBLSvYM3f9DDWDc/xrRXu4pqP1PrVwQRreXUjaHiBzyRRqbIqWE9dnBRgNlR0liEZMJCyro5woBpulNwOAHyu1Rj7jV/roZ4b/rG9kAceyhx120pYl1XdsVxckjlJTnfdX6j4gNFN92mzxKa7LuY6w/lnBHXt6gy6w4cwUthS/qAdjUVZ3BPOPhv/5XJKc313Yyp6hwNK/9UJgKwOKvYkeWMWkQRn0J6Px0OpZQrgIMjSwIEMIc4VOUFFTnnrWVwwONUTJkL4vZEwM4L+8uuWTSQygVOxaqz+7jawkva05asVoRNy1oxH6c0+KSFZDYH7WBqN9IB0Y8WP9RceTW/IYad4EO7dpdfH2kRsYDZEO0ogScL98qD8IfS98a21l5yZ/0uLqBOTec7EQtuh/kQDd9ovDimoXmlrhUIbjFGEhGJpbW9yshNxjU9pMpHbzLP6zUGOEWqG0V9TM3+CuB0vk4kGbGkn61DIgf7r2mZ01QPnNpic9sYbHukB4oYAvAl4joZVuPIzJM2/607qd7IMl71uhukwSOra+ZoxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSAAzADAAZQA2ADQAMQA1ADgALQAwADcAYQBkAC0ANAA5ADIAMQAtAGEAMwBiADIALQBmADcAZQBhADkAZQBiADUAMgBiADcAMTB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIR6by//xWSU8CAgfQgIIDkPElW/fgKF2MqgELUMfm2kQL6NTkIFn2J1ppJLNAKTzbr+rDJ1tkikkbAxOCMWFRq+0SsgQ99pbXqqa3zNZ+qRB85Wu3xbBue7p52SiOnRAjD2uYsvpFjKa1S8hYvHckAC7JEw+TAXT3Abc+pSiSESIHucbmDvgDt9Ap9QxbSIam+ekVKMz73kcgAyvoTuZ/jMa3RNdzDeRaT/p0SCJNC/C3BLwUpVva4o6AAn9Wf731B5G9vXcM5nWIcEvFKzNB43qnDo4aVryogsQkBHpMjPzo4KluZtu0Ow2KDDimebcDpXMyoCD5shgiYgnVyZeWiTPNHKn9zoa5M7j6slZbpKNWNyyg6joSdosGR8WJzxAnMYyntkVFAG0Ihs1iTAQbRi/F6FIzOqEr3qLXVr810jEFtuyGlTkvyaJR8WmRrvu0uo49hZ39w0+Rsp3oQyYiRqXPISGVkXjN0Eo80HER1uAfOr08rqG6wo7zDPOAj3IiSQL0pc+ryxuLnsjLf5DouRjMmOsHbMGyhPkkVVat67HP86P6QkZYFTRmDqRWz6BQjo6R14GE0Hz+Yr2hJuU5vl4RW4b/2+HM6f14qHD3e9eJ9Zbt4kwI/BdnHbWX1juRiX9iO3c7COVk9TardKRy0Ijk9xNtW8AVrzpv98Gv6mpTYL2NXNNc1RHc+Y2TFhAkYcdrzdWh1qmmVJsMLGSWWsarEXq55nRXKG0f3DT/xvcb/2v9zvJApKwAon5Po6QdhlZLAHAJxLDcXRyP15NIk/0TiiSEXYU4szCRlD5p9LIgNOZ9Sy/1N5XcQo0C366ikytWhV+WoxKsXKgdCQlnFY/zY1qfa5Ui0S69eUDnPwe9Y6hJ/DsBoPiHObjJO1oUuvGnOZTJeiz3IsCfqBPrP/ekhBMuIVJkGm4LAAYo9eGVSf5R5Vx0onfRTLcoWQ/aWF9+thuLGHBebFjI9aBa05u7qaV5Lh8bcv4j0BHBV/kFmf2M/Un1Pc8vUpUmQeW5vry3xNfithw3qYUqda/FKYaXnbvIbIZxp+ksHGZ6iRgOadT4iGx3GHRHLHTztrWEkHU9P0PFquBGI/l239PK9gCi3r7tcbT3NWS1ztYywquqRCTIv1zDgn684uV3Q5f9D+k+U6Mp+3kqErEM2pYnTRQ0e4W7dHJGBYdhcMpDhRk4p3SQjuhLc3xOXpXi+IPSlSd0SoiAMUFaV460y8fq6TA3MB8wBwYFKw4DAhoEFCK1b00rr4HBzQruvEpxnHF+BdcUBBR4RjMcbv8ojPegZ6nSdGocs+Xr3w==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","managed":true,"attributes":{"enabled":true,"nbf":1576111256,"exp":1607734256,"created":1576111856,"updated":1576111856,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"}' headers: cache-control: - no-cache @@ -796,7 +972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:14 GMT + - Thu, 12 Dec 2019 00:51:05 GMT expires: - '-1' pragma: @@ -810,11 +986,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=167.220.255.51;act_addr_fam=InterNetwork; + - addr=131.107.147.235;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.891 + - 1.1.0.883 x-powered-by: - ASP.NET status: @@ -1031,8 +1207,8 @@ interactions: "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value": - "742F7E7B0272D6978333A2C2A4B102DE1332CBCE"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"}, + "A6D42B59D36EB86B6C2E0030165727B007B6DEC0"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -1054,15 +1230,15 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924","name":"AzurePSDeployment-202001140924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-14T01:24:16.9444203Z","duration":"PT0S","correlationId":"c358526b-c3ea-4cfa-a211-a95d68db1e60","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651","name":"AzurePSDeployment-201912111651","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-12-12T00:51:07.2066018Z","duration":"PT0S","correlationId":"277ed304-5549-496c-ad87-3b94aac0ebc4","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' headers: cache-control: - no-cache @@ -1071,7 +1247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:17 GMT + - Thu, 12 Dec 2019 00:51:07 GMT expires: - '-1' pragma: @@ -1085,7 +1261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1300,8 +1476,8 @@ interactions: "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value": - "742F7E7B0272D6978333A2C2A4B102DE1332CBCE"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"}, + "A6D42B59D36EB86B6C2E0030165727B007B6DEC0"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -1323,26 +1499,26 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924","name":"AzurePSDeployment-202001140924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-14T01:24:23.3645461Z","duration":"PT2.7944278S","correlationId":"99854d92-7658-45b7-a822-2b1ec5a13631","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651","name":"AzurePSDeployment-201912111651","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-12-12T00:51:09.79929Z","duration":"PT1.0801461S","correlationId":"b9cf5c15-fa62-4a10-850e-949a816113f0","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924/operationStatuses/08586226418249075756?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651/operationStatuses/08586254950167585573?api-version=2019-07-01 cache-control: - no-cache content-length: - - '7191' + - '7189' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:24:24 GMT + - Thu, 12 Dec 2019 00:51:09 GMT expires: - '-1' pragma: @@ -1352,7 +1528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -1370,139 +1546,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 14 Jan 2020 01:24:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 14 Jan 2020 01:25:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.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.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 14 Jan 2020 01:25:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - 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: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1514,7 +1561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:26:26 GMT + - Thu, 12 Dec 2019 00:51:39 GMT expires: - '-1' pragma: @@ -1542,10 +1589,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1557,7 +1604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:26:57 GMT + - Thu, 12 Dec 2019 00:52:09 GMT expires: - '-1' pragma: @@ -1585,10 +1632,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1600,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:27:28 GMT + - Thu, 12 Dec 2019 00:52:40 GMT expires: - '-1' pragma: @@ -1628,10 +1675,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1643,7 +1690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:27:58 GMT + - Thu, 12 Dec 2019 00:53:09 GMT expires: - '-1' pragma: @@ -1671,10 +1718,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1686,7 +1733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:28:29 GMT + - Thu, 12 Dec 2019 00:53:39 GMT expires: - '-1' pragma: @@ -1714,10 +1761,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1729,7 +1776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:28:59 GMT + - Thu, 12 Dec 2019 00:54:10 GMT expires: - '-1' pragma: @@ -1757,10 +1804,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1772,7 +1819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:29:29 GMT + - Thu, 12 Dec 2019 00:54:40 GMT expires: - '-1' pragma: @@ -1800,10 +1847,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1815,7 +1862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:30:00 GMT + - Thu, 12 Dec 2019 00:55:10 GMT expires: - '-1' pragma: @@ -1843,10 +1890,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1858,7 +1905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:30:30 GMT + - Thu, 12 Dec 2019 00:55:40 GMT expires: - '-1' pragma: @@ -1886,10 +1933,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1901,7 +1948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:31:02 GMT + - Thu, 12 Dec 2019 00:56:10 GMT expires: - '-1' pragma: @@ -1929,10 +1976,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1944,7 +1991,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:31:32 GMT + - Thu, 12 Dec 2019 00:56:40 GMT expires: - '-1' pragma: @@ -1972,10 +2019,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1987,7 +2034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:32:02 GMT + - Thu, 12 Dec 2019 00:57:11 GMT expires: - '-1' pragma: @@ -2015,10 +2062,10 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586226418249075756?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586254950167585573?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -2030,7 +2077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:32:33 GMT + - Thu, 12 Dec 2019 00:57:40 GMT expires: - '-1' pragma: @@ -2058,13 +2105,13 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001140924","name":"AzurePSDeployment-202001140924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-14T01:32:32.9675919Z","duration":"PT8M12.3974736S","correlationId":"99854d92-7658-45b7-a822-2b1ec5a13631","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"5y3xteo3wib6y3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs5y3xteo3wib6y2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e","clusterCodeVersion":"6.5.676.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e","certificate":{"thumbprint":"742F7E7B0272D6978333A2C2A4B102DE1332CBCE","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogs5y3xteo3wib6y2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/","queueEndpoint":"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/","tableEndpoint":"https://sflogs5y3xteo3wib6y2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"6.5.676.9590","supportExpiryUtc":"2020-05-01T00:00:00","environment":"Windows"},{"codeVersion":"7.0.457.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/5y3xteo3wib6y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs5y3xteo3wib6y2"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-201912111651","name":"AzurePSDeployment-201912111651","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-12-12T00:57:31.9225815Z","duration":"PT6M23.2034376S","correlationId":"b9cf5c15-fa62-4a10-850e-949a816113f0","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"5385900f-32fc-4bd6-964f-597c5eb51a3d","clusterCodeVersion":"6.5.676.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d","certificate":{"thumbprint":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogsxjb4dma6imrnu2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/","queueEndpoint":"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/","tableEndpoint":"https://sflogsxjb4dma6imrnu2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"6.5.676.9590","supportExpiryUtc":"2020-05-01T00:00:00","environment":"Windows"},{"codeVersion":"7.0.457.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3"}]}}' headers: cache-control: - no-cache @@ -2073,7 +2120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:32:33 GMT + - Thu, 12 Dec 2019 00:57:40 GMT expires: - '-1' pragma: @@ -2101,8 +2148,8 @@ interactions: ParameterSetName: - -g -n -l --secret-identifier --vm-password --cluster-size User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2113,12 +2160,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2132,11 +2179,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2152,7 +2199,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:35 GMT + - Thu, 12 Dec 2019 00:57:41 GMT expires: - '-1' pragma: @@ -2185,8 +2232,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2197,12 +2244,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2216,11 +2263,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2236,7 +2283,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:37 GMT + - Thu, 12 Dec 2019 00:57:41 GMT expires: - '-1' pragma: @@ -2269,8 +2316,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2281,12 +2328,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2300,11 +2347,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2320,7 +2367,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:39 GMT + - Thu, 12 Dec 2019 00:57:42 GMT expires: - '-1' pragma: @@ -2353,8 +2400,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2365,12 +2412,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2384,11 +2431,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2404,7 +2451,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:41 GMT + - Thu, 12 Dec 2019 00:57:43 GMT expires: - '-1' pragma: @@ -2437,8 +2484,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2449,12 +2496,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2468,11 +2515,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2488,7 +2535,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:43 GMT + - Thu, 12 Dec 2019 00:57:44 GMT expires: - '-1' pragma: @@ -2521,8 +2568,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2533,12 +2580,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2552,11 +2599,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2572,7 +2619,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:44 GMT + - Thu, 12 Dec 2019 00:57:43 GMT expires: - '-1' pragma: @@ -2605,8 +2652,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2617,12 +2664,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2636,11 +2683,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2656,7 +2703,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:47 GMT + - Thu, 12 Dec 2019 00:57:44 GMT expires: - '-1' pragma: @@ -2689,8 +2736,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2701,12 +2748,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2720,11 +2767,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2740,7 +2787,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:49 GMT + - Thu, 12 Dec 2019 00:57:45 GMT expires: - '-1' pragma: @@ -2773,8 +2820,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2785,12 +2832,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2804,11 +2851,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2824,7 +2871,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:50 GMT + - Thu, 12 Dec 2019 00:57:45 GMT expires: - '-1' pragma: @@ -2857,8 +2904,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2869,12 +2916,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2888,11 +2935,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2908,7 +2955,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:51 GMT + - Thu, 12 Dec 2019 00:57:45 GMT expires: - '-1' pragma: @@ -2941,8 +2988,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -2953,12 +3000,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2972,11 +3019,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -2992,7 +3039,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:52 GMT + - Thu, 12 Dec 2019 00:57:46 GMT expires: - '-1' pragma: @@ -3025,8 +3072,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3037,12 +3084,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3056,11 +3103,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3076,7 +3123,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:54 GMT + - Thu, 12 Dec 2019 00:57:46 GMT expires: - '-1' pragma: @@ -3109,8 +3156,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3121,12 +3168,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3140,11 +3187,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3160,7 +3207,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:55 GMT + - Thu, 12 Dec 2019 00:57:46 GMT expires: - '-1' pragma: @@ -3193,8 +3240,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3205,12 +3252,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3224,11 +3271,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3244,7 +3291,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:57 GMT + - Thu, 12 Dec 2019 00:57:47 GMT expires: - '-1' pragma: @@ -3277,8 +3324,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3289,12 +3336,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3308,11 +3355,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3328,7 +3375,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:58 GMT + - Thu, 12 Dec 2019 00:57:47 GMT expires: - '-1' pragma: @@ -3361,8 +3408,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3373,12 +3420,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3392,11 +3439,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3412,7 +3459,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:32:59 GMT + - Thu, 12 Dec 2019 00:57:48 GMT expires: - '-1' pragma: @@ -3445,8 +3492,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3457,12 +3504,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3476,11 +3523,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3496,7 +3543,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:01 GMT + - Thu, 12 Dec 2019 00:57:48 GMT expires: - '-1' pragma: @@ -3529,8 +3576,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3541,12 +3588,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3560,11 +3607,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3580,7 +3627,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:02 GMT + - Thu, 12 Dec 2019 00:57:48 GMT expires: - '-1' pragma: @@ -3613,8 +3660,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3625,12 +3672,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3644,11 +3691,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3664,7 +3711,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:04 GMT + - Thu, 12 Dec 2019 00:57:49 GMT expires: - '-1' pragma: @@ -3697,8 +3744,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3709,12 +3756,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3728,11 +3775,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3748,7 +3795,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:05 GMT + - Thu, 12 Dec 2019 00:57:49 GMT expires: - '-1' pragma: @@ -3781,8 +3828,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3793,12 +3840,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3812,11 +3859,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3832,7 +3879,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:06 GMT + - Thu, 12 Dec 2019 00:57:50 GMT expires: - '-1' pragma: @@ -3865,8 +3912,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3877,12 +3924,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3896,11 +3943,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -3916,7 +3963,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:07 GMT + - Thu, 12 Dec 2019 00:57:50 GMT expires: - '-1' pragma: @@ -3949,8 +3996,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -3961,12 +4008,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -3980,11 +4027,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4000,7 +4047,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:09 GMT + - Thu, 12 Dec 2019 00:57:51 GMT expires: - '-1' pragma: @@ -4033,8 +4080,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4045,12 +4092,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4064,11 +4111,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4084,7 +4131,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:10 GMT + - Thu, 12 Dec 2019 00:57:50 GMT expires: - '-1' pragma: @@ -4117,8 +4164,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4129,12 +4176,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4148,11 +4195,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4168,7 +4215,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:12 GMT + - Thu, 12 Dec 2019 00:57:51 GMT expires: - '-1' pragma: @@ -4201,8 +4248,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4213,12 +4260,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4232,11 +4279,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4252,7 +4299,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:13 GMT + - Thu, 12 Dec 2019 00:57:52 GMT expires: - '-1' pragma: @@ -4285,8 +4332,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4297,12 +4344,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4316,11 +4363,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4336,7 +4383,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:14 GMT + - Thu, 12 Dec 2019 00:57:52 GMT expires: - '-1' pragma: @@ -4369,8 +4416,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4381,12 +4428,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4400,11 +4447,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4420,7 +4467,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:16 GMT + - Thu, 12 Dec 2019 00:57:52 GMT expires: - '-1' pragma: @@ -4453,8 +4500,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4465,12 +4512,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4484,11 +4531,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4504,7 +4551,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:18 GMT + - Thu, 12 Dec 2019 00:57:53 GMT expires: - '-1' pragma: @@ -4537,8 +4584,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4549,12 +4596,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4568,11 +4615,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4588,7 +4635,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:20 GMT + - Thu, 12 Dec 2019 00:57:53 GMT expires: - '-1' pragma: @@ -4621,8 +4668,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4633,12 +4680,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4652,11 +4699,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4672,7 +4719,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:22 GMT + - Thu, 12 Dec 2019 00:57:54 GMT expires: - '-1' pragma: @@ -4705,8 +4752,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4717,12 +4764,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4736,11 +4783,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4756,7 +4803,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:23 GMT + - Thu, 12 Dec 2019 00:57:54 GMT expires: - '-1' pragma: @@ -4789,8 +4836,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4801,12 +4848,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4820,11 +4867,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4840,7 +4887,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:25 GMT + - Thu, 12 Dec 2019 00:57:55 GMT expires: - '-1' pragma: @@ -4873,8 +4920,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4885,12 +4932,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4904,11 +4951,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -4924,7 +4971,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:27 GMT + - Thu, 12 Dec 2019 00:57:55 GMT expires: - '-1' pragma: @@ -4957,8 +5004,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -4969,12 +5016,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -4988,11 +5035,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5008,7 +5055,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:27 GMT + - Thu, 12 Dec 2019 00:57:56 GMT expires: - '-1' pragma: @@ -5041,8 +5088,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5053,12 +5100,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5072,11 +5119,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5092,7 +5139,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:28 GMT + - Thu, 12 Dec 2019 00:57:56 GMT expires: - '-1' pragma: @@ -5125,8 +5172,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5137,12 +5184,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5156,11 +5203,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5176,7 +5223,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:31 GMT + - Thu, 12 Dec 2019 00:57:56 GMT expires: - '-1' pragma: @@ -5209,8 +5256,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5221,12 +5268,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5240,11 +5287,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5260,7 +5307,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:32 GMT + - Thu, 12 Dec 2019 00:57:56 GMT expires: - '-1' pragma: @@ -5293,8 +5340,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5305,12 +5352,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5324,11 +5371,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5344,7 +5391,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:33 GMT + - Thu, 12 Dec 2019 00:57:57 GMT expires: - '-1' pragma: @@ -5377,8 +5424,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5389,12 +5436,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5408,11 +5455,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5428,7 +5475,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:35 GMT + - Thu, 12 Dec 2019 00:57:57 GMT expires: - '-1' pragma: @@ -5461,8 +5508,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5473,12 +5520,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5492,11 +5539,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5512,7 +5559,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:36 GMT + - Thu, 12 Dec 2019 00:57:58 GMT expires: - '-1' pragma: @@ -5545,8 +5592,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5557,12 +5604,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5576,11 +5623,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5596,7 +5643,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:37 GMT + - Thu, 12 Dec 2019 00:57:58 GMT expires: - '-1' pragma: @@ -5629,8 +5676,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5641,12 +5688,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5660,11 +5707,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5680,7 +5727,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:39 GMT + - Thu, 12 Dec 2019 00:57:59 GMT expires: - '-1' pragma: @@ -5713,8 +5760,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5725,12 +5772,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5744,11 +5791,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5764,7 +5811,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:41 GMT + - Thu, 12 Dec 2019 00:57:59 GMT expires: - '-1' pragma: @@ -5797,8 +5844,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5809,12 +5856,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5828,11 +5875,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5848,7 +5895,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:42 GMT + - Thu, 12 Dec 2019 00:57:59 GMT expires: - '-1' pragma: @@ -5881,8 +5928,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5893,12 +5940,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5912,11 +5959,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -5932,7 +5979,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:44 GMT + - Thu, 12 Dec 2019 00:58:00 GMT expires: - '-1' pragma: @@ -5965,8 +6012,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -5977,12 +6024,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -5996,11 +6043,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6016,7 +6063,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:46 GMT + - Thu, 12 Dec 2019 00:58:00 GMT expires: - '-1' pragma: @@ -6049,8 +6096,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6061,12 +6108,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6080,11 +6127,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6100,7 +6147,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:47 GMT + - Thu, 12 Dec 2019 00:58:01 GMT expires: - '-1' pragma: @@ -6133,8 +6180,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6145,12 +6192,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6164,11 +6211,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6184,7 +6231,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:49 GMT + - Thu, 12 Dec 2019 00:58:01 GMT expires: - '-1' pragma: @@ -6217,8 +6264,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6229,12 +6276,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6248,11 +6295,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6268,7 +6315,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:51 GMT + - Thu, 12 Dec 2019 00:58:02 GMT expires: - '-1' pragma: @@ -6301,8 +6348,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6313,12 +6360,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6332,11 +6379,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6352,7 +6399,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:53 GMT + - Thu, 12 Dec 2019 00:58:02 GMT expires: - '-1' pragma: @@ -6385,8 +6432,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6397,12 +6444,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6416,11 +6463,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6436,7 +6483,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:55 GMT + - Thu, 12 Dec 2019 00:58:03 GMT expires: - '-1' pragma: @@ -6469,8 +6516,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6481,12 +6528,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6500,11 +6547,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6520,7 +6567,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:56 GMT + - Thu, 12 Dec 2019 00:58:03 GMT expires: - '-1' pragma: @@ -6553,8 +6600,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6565,12 +6612,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6584,11 +6631,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6604,7 +6651,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:33:58 GMT + - Thu, 12 Dec 2019 00:58:04 GMT expires: - '-1' pragma: @@ -6637,8 +6684,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6649,12 +6696,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6668,11 +6715,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6688,7 +6735,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:00 GMT + - Thu, 12 Dec 2019 00:58:04 GMT expires: - '-1' pragma: @@ -6721,8 +6768,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6733,12 +6780,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6752,11 +6799,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6772,7 +6819,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:02 GMT + - Thu, 12 Dec 2019 00:58:04 GMT expires: - '-1' pragma: @@ -6805,8 +6852,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6817,12 +6864,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6836,11 +6883,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6856,7 +6903,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:04 GMT + - Thu, 12 Dec 2019 00:58:04 GMT expires: - '-1' pragma: @@ -6889,8 +6936,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6901,12 +6948,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -6920,11 +6967,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -6940,7 +6987,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:06 GMT + - Thu, 12 Dec 2019 00:58:06 GMT expires: - '-1' pragma: @@ -6973,8 +7020,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -6985,12 +7032,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7004,11 +7051,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7024,7 +7071,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:09 GMT + - Thu, 12 Dec 2019 00:58:06 GMT expires: - '-1' pragma: @@ -7057,8 +7104,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7069,12 +7116,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7088,11 +7135,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7108,7 +7155,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:10 GMT + - Thu, 12 Dec 2019 00:58:07 GMT expires: - '-1' pragma: @@ -7141,8 +7188,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7153,12 +7200,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7172,11 +7219,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7192,7 +7239,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:13 GMT + - Thu, 12 Dec 2019 00:58:07 GMT expires: - '-1' pragma: @@ -7225,8 +7272,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7237,12 +7284,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7256,11 +7303,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7276,7 +7323,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:14 GMT + - Thu, 12 Dec 2019 00:58:07 GMT expires: - '-1' pragma: @@ -7309,8 +7356,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7321,12 +7368,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7340,11 +7387,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7360,7 +7407,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:16 GMT + - Thu, 12 Dec 2019 00:58:08 GMT expires: - '-1' pragma: @@ -7393,8 +7440,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7405,12 +7452,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7424,11 +7471,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7444,7 +7491,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:17 GMT + - Thu, 12 Dec 2019 00:58:08 GMT expires: - '-1' pragma: @@ -7477,8 +7524,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7489,12 +7536,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7508,11 +7555,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7528,7 +7575,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:20 GMT + - Thu, 12 Dec 2019 00:58:09 GMT expires: - '-1' pragma: @@ -7561,8 +7608,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7573,12 +7620,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7592,11 +7639,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7612,7 +7659,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:22 GMT + - Thu, 12 Dec 2019 00:58:09 GMT expires: - '-1' pragma: @@ -7645,8 +7692,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7657,12 +7704,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7676,11 +7723,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7696,7 +7743,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:23 GMT + - Thu, 12 Dec 2019 00:58:09 GMT expires: - '-1' pragma: @@ -7729,8 +7776,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7741,12 +7788,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7760,11 +7807,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7780,7 +7827,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:25 GMT + - Thu, 12 Dec 2019 00:58:09 GMT expires: - '-1' pragma: @@ -7813,8 +7860,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7825,12 +7872,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7844,11 +7891,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7864,7 +7911,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:28 GMT + - Thu, 12 Dec 2019 00:58:10 GMT expires: - '-1' pragma: @@ -7897,8 +7944,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7909,12 +7956,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -7928,11 +7975,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -7948,7 +7995,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:29 GMT + - Thu, 12 Dec 2019 00:58:11 GMT expires: - '-1' pragma: @@ -7981,8 +8028,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -7993,12 +8040,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8012,11 +8059,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8032,7 +8079,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:31 GMT + - Thu, 12 Dec 2019 00:58:11 GMT expires: - '-1' pragma: @@ -8065,8 +8112,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8077,12 +8124,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8096,11 +8143,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8116,7 +8163,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:34 GMT + - Thu, 12 Dec 2019 00:58:11 GMT expires: - '-1' pragma: @@ -8149,8 +8196,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8161,12 +8208,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8180,11 +8227,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8200,7 +8247,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:35 GMT + - Thu, 12 Dec 2019 00:58:12 GMT expires: - '-1' pragma: @@ -8233,8 +8280,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8245,12 +8292,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8264,11 +8311,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8284,7 +8331,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:37 GMT + - Thu, 12 Dec 2019 00:58:12 GMT expires: - '-1' pragma: @@ -8317,8 +8364,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8329,12 +8376,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8348,11 +8395,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8368,7 +8415,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:40 GMT + - Thu, 12 Dec 2019 00:58:13 GMT expires: - '-1' pragma: @@ -8401,8 +8448,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8413,12 +8460,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8432,11 +8479,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8452,7 +8499,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:41 GMT + - Thu, 12 Dec 2019 00:58:14 GMT expires: - '-1' pragma: @@ -8485,8 +8532,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8497,12 +8544,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8516,11 +8563,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8536,7 +8583,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:44 GMT + - Thu, 12 Dec 2019 00:58:14 GMT expires: - '-1' pragma: @@ -8569,8 +8616,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8581,12 +8628,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8600,11 +8647,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8620,7 +8667,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:46 GMT + - Thu, 12 Dec 2019 00:58:14 GMT expires: - '-1' pragma: @@ -8653,8 +8700,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8665,12 +8712,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8684,11 +8731,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8704,7 +8751,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:48 GMT + - Thu, 12 Dec 2019 00:58:15 GMT expires: - '-1' pragma: @@ -8737,8 +8784,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8749,12 +8796,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8768,11 +8815,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8788,7 +8835,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:49 GMT + - Thu, 12 Dec 2019 00:58:15 GMT expires: - '-1' pragma: @@ -8821,8 +8868,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8833,12 +8880,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8852,11 +8899,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8872,7 +8919,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:51 GMT + - Thu, 12 Dec 2019 00:58:16 GMT expires: - '-1' pragma: @@ -8905,8 +8952,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -8917,12 +8964,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -8936,11 +8983,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -8956,7 +9003,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:53 GMT + - Thu, 12 Dec 2019 00:58:16 GMT expires: - '-1' pragma: @@ -8989,8 +9036,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9001,12 +9048,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9020,11 +9067,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9040,7 +9087,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:56 GMT + - Thu, 12 Dec 2019 00:58:17 GMT expires: - '-1' pragma: @@ -9073,8 +9120,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9085,12 +9132,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9104,11 +9151,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9124,7 +9171,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:34:59 GMT + - Thu, 12 Dec 2019 00:58:17 GMT expires: - '-1' pragma: @@ -9157,8 +9204,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9169,12 +9216,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9188,11 +9235,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9208,7 +9255,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:01 GMT + - Thu, 12 Dec 2019 00:58:18 GMT expires: - '-1' pragma: @@ -9241,8 +9288,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9253,12 +9300,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9272,11 +9319,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9292,7 +9339,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:04 GMT + - Thu, 12 Dec 2019 00:58:18 GMT expires: - '-1' pragma: @@ -9325,8 +9372,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9337,12 +9384,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9356,11 +9403,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9376,7 +9423,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:06 GMT + - Thu, 12 Dec 2019 00:58:18 GMT expires: - '-1' pragma: @@ -9409,8 +9456,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9421,12 +9468,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9440,11 +9487,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9460,7 +9507,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:07 GMT + - Thu, 12 Dec 2019 00:58:19 GMT expires: - '-1' pragma: @@ -9493,8 +9540,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9505,12 +9552,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9524,11 +9571,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9544,7 +9591,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:10 GMT + - Thu, 12 Dec 2019 00:58:19 GMT expires: - '-1' pragma: @@ -9577,8 +9624,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9589,12 +9636,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9608,11 +9655,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9628,7 +9675,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:12 GMT + - Thu, 12 Dec 2019 00:58:20 GMT expires: - '-1' pragma: @@ -9661,8 +9708,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9673,12 +9720,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9692,11 +9739,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9712,7 +9759,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:14 GMT + - Thu, 12 Dec 2019 00:58:20 GMT expires: - '-1' pragma: @@ -9745,8 +9792,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9757,12 +9804,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9776,11 +9823,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9796,7 +9843,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:15 GMT + - Thu, 12 Dec 2019 00:58:21 GMT expires: - '-1' pragma: @@ -9829,8 +9876,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9841,12 +9888,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9860,11 +9907,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9880,7 +9927,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:18 GMT + - Thu, 12 Dec 2019 00:58:21 GMT expires: - '-1' pragma: @@ -9913,8 +9960,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -9925,12 +9972,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -9944,11 +9991,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -9964,7 +10011,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:20 GMT + - Thu, 12 Dec 2019 00:58:21 GMT expires: - '-1' pragma: @@ -9997,8 +10044,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10009,12 +10056,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10028,11 +10075,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10048,7 +10095,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:22 GMT + - Thu, 12 Dec 2019 00:58:22 GMT expires: - '-1' pragma: @@ -10081,8 +10128,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10093,12 +10140,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10112,11 +10159,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10132,7 +10179,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:24 GMT + - Thu, 12 Dec 2019 00:58:22 GMT expires: - '-1' pragma: @@ -10165,8 +10212,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10177,12 +10224,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10196,11 +10243,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10216,7 +10263,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:26 GMT + - Thu, 12 Dec 2019 00:58:23 GMT expires: - '-1' pragma: @@ -10249,8 +10296,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10261,12 +10308,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10280,11 +10327,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10300,7 +10347,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:29 GMT + - Thu, 12 Dec 2019 00:58:23 GMT expires: - '-1' pragma: @@ -10333,8 +10380,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10345,12 +10392,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10364,11 +10411,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10384,7 +10431,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:31 GMT + - Thu, 12 Dec 2019 00:58:24 GMT expires: - '-1' pragma: @@ -10417,8 +10464,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10429,12 +10476,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10448,11 +10495,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10468,7 +10515,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:34 GMT + - Thu, 12 Dec 2019 00:58:24 GMT expires: - '-1' pragma: @@ -10501,8 +10548,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10513,12 +10560,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10532,11 +10579,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10552,7 +10599,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:35 GMT + - Thu, 12 Dec 2019 00:58:25 GMT expires: - '-1' pragma: @@ -10585,8 +10632,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10597,12 +10644,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10616,11 +10663,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10636,7 +10683,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:38 GMT + - Thu, 12 Dec 2019 00:58:25 GMT expires: - '-1' pragma: @@ -10669,8 +10716,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10681,12 +10728,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10700,11 +10747,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10720,7 +10767,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:39 GMT + - Thu, 12 Dec 2019 00:58:25 GMT expires: - '-1' pragma: @@ -10753,8 +10800,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10765,12 +10812,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10784,11 +10831,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10804,7 +10851,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:41 GMT + - Thu, 12 Dec 2019 00:58:26 GMT expires: - '-1' pragma: @@ -10837,8 +10884,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10849,12 +10896,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10868,11 +10915,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10888,7 +10935,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:44 GMT + - Thu, 12 Dec 2019 00:58:27 GMT expires: - '-1' pragma: @@ -10921,8 +10968,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -10933,12 +10980,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -10952,11 +10999,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -10972,7 +11019,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:46 GMT + - Thu, 12 Dec 2019 00:58:27 GMT expires: - '-1' pragma: @@ -11005,8 +11052,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11017,12 +11064,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11036,11 +11083,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11056,7 +11103,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:48 GMT + - Thu, 12 Dec 2019 00:58:28 GMT expires: - '-1' pragma: @@ -11089,8 +11136,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11101,12 +11148,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11120,11 +11167,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11140,7 +11187,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:52 GMT + - Thu, 12 Dec 2019 00:58:28 GMT expires: - '-1' pragma: @@ -11173,8 +11220,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11185,12 +11232,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11204,11 +11251,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11224,7 +11271,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:54 GMT + - Thu, 12 Dec 2019 00:58:28 GMT expires: - '-1' pragma: @@ -11257,8 +11304,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11269,12 +11316,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11288,11 +11335,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11308,7 +11355,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:57 GMT + - Thu, 12 Dec 2019 00:58:29 GMT expires: - '-1' pragma: @@ -11341,8 +11388,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11353,12 +11400,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11372,11 +11419,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11392,7 +11439,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:35:59 GMT + - Thu, 12 Dec 2019 00:58:29 GMT expires: - '-1' pragma: @@ -11425,8 +11472,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11437,12 +11484,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11456,11 +11503,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11476,7 +11523,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:01 GMT + - Thu, 12 Dec 2019 00:58:30 GMT expires: - '-1' pragma: @@ -11509,8 +11556,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11521,12 +11568,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11540,11 +11587,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11560,7 +11607,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:04 GMT + - Thu, 12 Dec 2019 00:58:31 GMT expires: - '-1' pragma: @@ -11593,8 +11640,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11605,12 +11652,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11624,11 +11671,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11644,7 +11691,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:06 GMT + - Thu, 12 Dec 2019 00:58:31 GMT expires: - '-1' pragma: @@ -11677,8 +11724,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11689,12 +11736,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11708,11 +11755,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11728,7 +11775,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:08 GMT + - Thu, 12 Dec 2019 00:58:32 GMT expires: - '-1' pragma: @@ -11761,8 +11808,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11773,12 +11820,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11792,11 +11839,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11812,7 +11859,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:10 GMT + - Thu, 12 Dec 2019 00:58:32 GMT expires: - '-1' pragma: @@ -11845,8 +11892,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11857,12 +11904,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11876,11 +11923,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11896,7 +11943,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:13 GMT + - Thu, 12 Dec 2019 00:58:32 GMT expires: - '-1' pragma: @@ -11929,8 +11976,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -11941,12 +11988,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -11960,11 +12007,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -11980,7 +12027,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:15 GMT + - Thu, 12 Dec 2019 00:58:33 GMT expires: - '-1' pragma: @@ -12013,8 +12060,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12025,12 +12072,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12044,11 +12091,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12064,7 +12111,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:18 GMT + - Thu, 12 Dec 2019 00:58:33 GMT expires: - '-1' pragma: @@ -12097,8 +12144,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12109,12 +12156,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12128,11 +12175,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12148,7 +12195,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:20 GMT + - Thu, 12 Dec 2019 00:58:34 GMT expires: - '-1' pragma: @@ -12181,8 +12228,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12193,12 +12240,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12212,11 +12259,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12232,7 +12279,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:22 GMT + - Thu, 12 Dec 2019 00:58:35 GMT expires: - '-1' pragma: @@ -12265,8 +12312,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12277,12 +12324,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12296,11 +12343,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12316,7 +12363,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:24 GMT + - Thu, 12 Dec 2019 00:58:35 GMT expires: - '-1' pragma: @@ -12349,8 +12396,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12361,12 +12408,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12380,11 +12427,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12400,7 +12447,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:27 GMT + - Thu, 12 Dec 2019 00:58:35 GMT expires: - '-1' pragma: @@ -12433,8 +12480,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12445,12 +12492,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12464,11 +12511,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12484,7 +12531,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:28 GMT + - Thu, 12 Dec 2019 00:58:36 GMT expires: - '-1' pragma: @@ -12517,8 +12564,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12529,12 +12576,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12548,11 +12595,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12568,7 +12615,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:30 GMT + - Thu, 12 Dec 2019 00:58:36 GMT expires: - '-1' pragma: @@ -12601,8 +12648,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12613,12 +12660,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12632,11 +12679,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12652,7 +12699,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:32 GMT + - Thu, 12 Dec 2019 00:58:37 GMT expires: - '-1' pragma: @@ -12685,8 +12732,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12697,12 +12744,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12716,11 +12763,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12736,7 +12783,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:36 GMT + - Thu, 12 Dec 2019 00:58:38 GMT expires: - '-1' pragma: @@ -12769,8 +12816,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12781,12 +12828,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12800,11 +12847,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12820,7 +12867,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:39 GMT + - Thu, 12 Dec 2019 00:58:38 GMT expires: - '-1' pragma: @@ -12853,8 +12900,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12865,12 +12912,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12884,11 +12931,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12904,7 +12951,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:42 GMT + - Thu, 12 Dec 2019 00:58:38 GMT expires: - '-1' pragma: @@ -12937,8 +12984,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -12949,12 +12996,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -12968,11 +13015,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -12988,7 +13035,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:43 GMT + - Thu, 12 Dec 2019 00:58:38 GMT expires: - '-1' pragma: @@ -13021,8 +13068,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13033,12 +13080,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13052,11 +13099,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13072,7 +13119,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:46 GMT + - Thu, 12 Dec 2019 00:58:39 GMT expires: - '-1' pragma: @@ -13105,8 +13152,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13117,12 +13164,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13136,11 +13183,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13156,7 +13203,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:49 GMT + - Thu, 12 Dec 2019 00:58:40 GMT expires: - '-1' pragma: @@ -13189,8 +13236,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13201,12 +13248,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13220,11 +13267,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13240,7 +13287,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:52 GMT + - Thu, 12 Dec 2019 00:58:40 GMT expires: - '-1' pragma: @@ -13273,8 +13320,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13285,12 +13332,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13304,11 +13351,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13324,7 +13371,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:54 GMT + - Thu, 12 Dec 2019 00:58:41 GMT expires: - '-1' pragma: @@ -13357,8 +13404,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13369,12 +13416,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13388,11 +13435,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13408,7 +13455,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:36:57 GMT + - Thu, 12 Dec 2019 00:58:41 GMT expires: - '-1' pragma: @@ -13441,8 +13488,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13453,12 +13500,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13472,11 +13519,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13492,7 +13539,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:00 GMT + - Thu, 12 Dec 2019 00:58:42 GMT expires: - '-1' pragma: @@ -13525,8 +13572,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13537,12 +13584,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13556,11 +13603,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13576,7 +13623,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:02 GMT + - Thu, 12 Dec 2019 00:58:42 GMT expires: - '-1' pragma: @@ -13609,8 +13656,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13621,12 +13668,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13640,11 +13687,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13660,7 +13707,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:05 GMT + - Thu, 12 Dec 2019 00:58:42 GMT expires: - '-1' pragma: @@ -13693,8 +13740,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13705,12 +13752,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13724,11 +13771,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13744,7 +13791,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:06 GMT + - Thu, 12 Dec 2019 00:58:43 GMT expires: - '-1' pragma: @@ -13777,8 +13824,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13789,12 +13836,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13808,11 +13855,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13828,7 +13875,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:08 GMT + - Thu, 12 Dec 2019 00:58:44 GMT expires: - '-1' pragma: @@ -13861,8 +13908,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13873,12 +13920,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13892,11 +13939,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13912,7 +13959,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:11 GMT + - Thu, 12 Dec 2019 00:58:45 GMT expires: - '-1' pragma: @@ -13945,8 +13992,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -13957,12 +14004,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -13976,11 +14023,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -13996,7 +14043,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:13 GMT + - Thu, 12 Dec 2019 00:58:45 GMT expires: - '-1' pragma: @@ -14029,8 +14076,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14041,12 +14088,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14060,11 +14107,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14080,7 +14127,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:16 GMT + - Thu, 12 Dec 2019 00:58:46 GMT expires: - '-1' pragma: @@ -14113,8 +14160,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14125,12 +14172,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14144,11 +14191,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14164,7 +14211,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:19 GMT + - Thu, 12 Dec 2019 00:58:46 GMT expires: - '-1' pragma: @@ -14197,8 +14244,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14209,12 +14256,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14228,11 +14275,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14248,7 +14295,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:21 GMT + - Thu, 12 Dec 2019 00:58:47 GMT expires: - '-1' pragma: @@ -14281,8 +14328,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14293,12 +14340,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14312,11 +14359,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14332,7 +14379,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:24 GMT + - Thu, 12 Dec 2019 00:58:47 GMT expires: - '-1' pragma: @@ -14365,8 +14412,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14377,12 +14424,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14396,11 +14443,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14416,7 +14463,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:27 GMT + - Thu, 12 Dec 2019 00:58:47 GMT expires: - '-1' pragma: @@ -14449,8 +14496,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14461,12 +14508,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14480,11 +14527,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14500,7 +14547,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:30 GMT + - Thu, 12 Dec 2019 00:58:48 GMT expires: - '-1' pragma: @@ -14533,8 +14580,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14545,12 +14592,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14564,11 +14611,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14584,7 +14631,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:32 GMT + - Thu, 12 Dec 2019 00:58:48 GMT expires: - '-1' pragma: @@ -14617,8 +14664,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14629,12 +14676,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14648,11 +14695,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14668,7 +14715,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:35 GMT + - Thu, 12 Dec 2019 00:58:49 GMT expires: - '-1' pragma: @@ -14701,8 +14748,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14713,12 +14760,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14732,11 +14779,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14752,7 +14799,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:36 GMT + - Thu, 12 Dec 2019 00:58:49 GMT expires: - '-1' pragma: @@ -14785,8 +14832,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14797,12 +14844,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14816,11 +14863,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14836,7 +14883,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:39 GMT + - Thu, 12 Dec 2019 00:58:50 GMT expires: - '-1' pragma: @@ -14869,8 +14916,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14881,12 +14928,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14900,11 +14947,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -14920,7 +14967,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:42 GMT + - Thu, 12 Dec 2019 00:58:50 GMT expires: - '-1' pragma: @@ -14953,8 +15000,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -14965,12 +15012,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -14984,11 +15031,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15004,7 +15051,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:45 GMT + - Thu, 12 Dec 2019 00:58:51 GMT expires: - '-1' pragma: @@ -15037,8 +15084,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15049,12 +15096,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15068,11 +15115,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15088,7 +15135,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:47 GMT + - Thu, 12 Dec 2019 00:58:52 GMT expires: - '-1' pragma: @@ -15121,8 +15168,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15133,12 +15180,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15152,11 +15199,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15172,7 +15219,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:51 GMT + - Thu, 12 Dec 2019 00:58:52 GMT expires: - '-1' pragma: @@ -15205,8 +15252,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15217,12 +15264,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15236,11 +15283,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15256,7 +15303,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:53 GMT + - Thu, 12 Dec 2019 00:58:52 GMT expires: - '-1' pragma: @@ -15289,8 +15336,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15301,12 +15348,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15320,11 +15367,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15340,7 +15387,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:56 GMT + - Thu, 12 Dec 2019 00:58:53 GMT expires: - '-1' pragma: @@ -15373,8 +15420,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15385,12 +15432,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15404,11 +15451,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15424,7 +15471,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:37:59 GMT + - Thu, 12 Dec 2019 00:58:54 GMT expires: - '-1' pragma: @@ -15457,8 +15504,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15469,12 +15516,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15488,11 +15535,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15508,7 +15555,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:02 GMT + - Thu, 12 Dec 2019 00:58:54 GMT expires: - '-1' pragma: @@ -15541,8 +15588,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15553,12 +15600,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15572,11 +15619,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15592,7 +15639,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:05 GMT + - Thu, 12 Dec 2019 00:58:55 GMT expires: - '-1' pragma: @@ -15625,8 +15672,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15637,12 +15684,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15656,11 +15703,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15676,7 +15723,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:07 GMT + - Thu, 12 Dec 2019 00:58:56 GMT expires: - '-1' pragma: @@ -15709,8 +15756,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15721,12 +15768,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15740,11 +15787,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15760,7 +15807,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:09 GMT + - Thu, 12 Dec 2019 00:58:56 GMT expires: - '-1' pragma: @@ -15793,8 +15840,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15805,12 +15852,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15824,11 +15871,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15844,7 +15891,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:12 GMT + - Thu, 12 Dec 2019 00:58:57 GMT expires: - '-1' pragma: @@ -15877,8 +15924,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15889,12 +15936,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15908,11 +15955,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -15928,7 +15975,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:14 GMT + - Thu, 12 Dec 2019 00:58:57 GMT expires: - '-1' pragma: @@ -15961,8 +16008,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -15973,12 +16020,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -15992,11 +16039,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16012,7 +16059,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:16 GMT + - Thu, 12 Dec 2019 00:58:58 GMT expires: - '-1' pragma: @@ -16045,8 +16092,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16057,12 +16104,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16076,11 +16123,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16096,7 +16143,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:20 GMT + - Thu, 12 Dec 2019 00:58:58 GMT expires: - '-1' pragma: @@ -16129,8 +16176,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16141,12 +16188,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16160,11 +16207,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16180,7 +16227,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:23 GMT + - Thu, 12 Dec 2019 00:58:58 GMT expires: - '-1' pragma: @@ -16213,8 +16260,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16225,12 +16272,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16244,11 +16291,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16264,7 +16311,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:30 GMT + - Thu, 12 Dec 2019 00:58:59 GMT expires: - '-1' pragma: @@ -16297,8 +16344,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16309,12 +16356,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16328,11 +16375,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16348,7 +16395,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:32 GMT + - Thu, 12 Dec 2019 00:59:00 GMT expires: - '-1' pragma: @@ -16381,8 +16428,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16393,12 +16440,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16412,11 +16459,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16432,7 +16479,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:35 GMT + - Thu, 12 Dec 2019 00:59:00 GMT expires: - '-1' pragma: @@ -16465,8 +16512,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16477,12 +16524,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16496,11 +16543,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16516,7 +16563,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:38 GMT + - Thu, 12 Dec 2019 00:59:00 GMT expires: - '-1' pragma: @@ -16549,8 +16596,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16561,12 +16608,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16580,11 +16627,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16600,7 +16647,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:40 GMT + - Thu, 12 Dec 2019 00:59:01 GMT expires: - '-1' pragma: @@ -16633,8 +16680,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16645,12 +16692,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16664,11 +16711,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16680,11 +16727,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:44 GMT + - Thu, 12 Dec 2019 00:59:02 GMT expires: - '-1' pragma: @@ -16717,8 +16764,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16729,12 +16776,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16748,11 +16795,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16764,11 +16811,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:47 GMT + - Thu, 12 Dec 2019 00:59:02 GMT expires: - '-1' pragma: @@ -16801,8 +16848,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16813,12 +16860,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16832,11 +16879,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16848,11 +16895,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:49 GMT + - Thu, 12 Dec 2019 00:59:03 GMT expires: - '-1' pragma: @@ -16885,8 +16932,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16897,12 +16944,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -16916,11 +16963,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -16932,11 +16979,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:52 GMT + - Thu, 12 Dec 2019 00:59:04 GMT expires: - '-1' pragma: @@ -16969,8 +17016,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -16981,12 +17028,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17000,11 +17047,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17016,11 +17063,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:56 GMT + - Thu, 12 Dec 2019 00:59:04 GMT expires: - '-1' pragma: @@ -17053,8 +17100,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17065,12 +17112,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17084,11 +17131,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17100,11 +17147,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:38:59 GMT + - Thu, 12 Dec 2019 00:59:04 GMT expires: - '-1' pragma: @@ -17137,8 +17184,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17149,12 +17196,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17168,11 +17215,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17184,11 +17231,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:02 GMT + - Thu, 12 Dec 2019 00:59:04 GMT expires: - '-1' pragma: @@ -17221,8 +17268,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17233,12 +17280,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17252,11 +17299,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17268,11 +17315,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:05 GMT + - Thu, 12 Dec 2019 00:59:05 GMT expires: - '-1' pragma: @@ -17305,8 +17352,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17317,12 +17364,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17336,11 +17383,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17352,11 +17399,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:08 GMT + - Thu, 12 Dec 2019 00:59:06 GMT expires: - '-1' pragma: @@ -17389,8 +17436,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17401,12 +17448,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17420,11 +17467,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17436,11 +17483,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:11 GMT + - Thu, 12 Dec 2019 00:59:06 GMT expires: - '-1' pragma: @@ -17473,8 +17520,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17485,12 +17532,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17504,11 +17551,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17520,11 +17567,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:14 GMT + - Thu, 12 Dec 2019 00:59:06 GMT expires: - '-1' pragma: @@ -17557,8 +17604,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17569,12 +17616,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17588,11 +17635,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17604,11 +17651,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:16 GMT + - Thu, 12 Dec 2019 00:59:07 GMT expires: - '-1' pragma: @@ -17641,8 +17688,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17653,12 +17700,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17672,11 +17719,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17688,11 +17735,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:20 GMT + - Thu, 12 Dec 2019 00:59:08 GMT expires: - '-1' pragma: @@ -17725,8 +17772,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17737,12 +17784,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17756,11 +17803,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17772,11 +17819,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:23 GMT + - Thu, 12 Dec 2019 00:59:08 GMT expires: - '-1' pragma: @@ -17809,8 +17856,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17821,12 +17868,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17840,11 +17887,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17856,11 +17903,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:26 GMT + - Thu, 12 Dec 2019 00:59:09 GMT expires: - '-1' pragma: @@ -17893,8 +17940,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17905,12 +17952,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -17924,11 +17971,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -17940,11 +17987,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:29 GMT + - Thu, 12 Dec 2019 00:59:09 GMT expires: - '-1' pragma: @@ -17977,8 +18024,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -17989,12 +18036,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18008,11 +18055,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18024,11 +18071,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:32 GMT + - Thu, 12 Dec 2019 00:59:10 GMT expires: - '-1' pragma: @@ -18061,8 +18108,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18073,12 +18120,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18092,11 +18139,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18108,11 +18155,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:35 GMT + - Thu, 12 Dec 2019 00:59:11 GMT expires: - '-1' pragma: @@ -18145,8 +18192,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18157,12 +18204,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18176,11 +18223,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18192,11 +18239,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:37 GMT + - Thu, 12 Dec 2019 00:59:12 GMT expires: - '-1' pragma: @@ -18229,8 +18276,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18241,12 +18288,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18260,11 +18307,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18276,11 +18323,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:41 GMT + - Thu, 12 Dec 2019 00:59:12 GMT expires: - '-1' pragma: @@ -18313,8 +18360,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18325,12 +18372,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18344,11 +18391,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18360,11 +18407,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:43 GMT + - Thu, 12 Dec 2019 00:59:12 GMT expires: - '-1' pragma: @@ -18397,8 +18444,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18409,12 +18456,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18428,11 +18475,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18444,11 +18491,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:46 GMT + - Thu, 12 Dec 2019 00:59:14 GMT expires: - '-1' pragma: @@ -18481,8 +18528,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18493,12 +18540,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18512,11 +18559,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18528,11 +18575,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:49 GMT + - Thu, 12 Dec 2019 00:59:13 GMT expires: - '-1' pragma: @@ -18565,8 +18612,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18577,12 +18624,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18596,11 +18643,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18612,11 +18659,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:52 GMT + - Thu, 12 Dec 2019 00:59:14 GMT expires: - '-1' pragma: @@ -18649,8 +18696,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18661,12 +18708,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18680,11 +18727,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18696,11 +18743,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:55 GMT + - Thu, 12 Dec 2019 00:59:15 GMT expires: - '-1' pragma: @@ -18733,8 +18780,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18745,12 +18792,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18764,11 +18811,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18780,11 +18827,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:39:58 GMT + - Thu, 12 Dec 2019 00:59:15 GMT expires: - '-1' pragma: @@ -18817,8 +18864,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18829,12 +18876,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18848,11 +18895,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18864,11 +18911,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:02 GMT + - Thu, 12 Dec 2019 00:59:16 GMT expires: - '-1' pragma: @@ -18901,8 +18948,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18913,12 +18960,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -18932,11 +18979,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -18948,11 +18995,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:03 GMT + - Thu, 12 Dec 2019 00:59:17 GMT expires: - '-1' pragma: @@ -18985,8 +19032,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -18997,12 +19044,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19016,11 +19063,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19032,11 +19079,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:08 GMT + - Thu, 12 Dec 2019 00:59:17 GMT expires: - '-1' pragma: @@ -19069,8 +19116,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19081,12 +19128,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19100,11 +19147,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19116,11 +19163,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:10 GMT + - Thu, 12 Dec 2019 00:59:18 GMT expires: - '-1' pragma: @@ -19153,8 +19200,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19165,12 +19212,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19184,11 +19231,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19200,11 +19247,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:14 GMT + - Thu, 12 Dec 2019 00:59:18 GMT expires: - '-1' pragma: @@ -19237,8 +19284,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19249,12 +19296,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19268,11 +19315,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19284,11 +19331,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:17 GMT + - Thu, 12 Dec 2019 00:59:19 GMT expires: - '-1' pragma: @@ -19321,8 +19368,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19333,12 +19380,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19352,11 +19399,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19368,11 +19415,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:20 GMT + - Thu, 12 Dec 2019 00:59:20 GMT expires: - '-1' pragma: @@ -19405,8 +19452,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19417,12 +19464,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19436,11 +19483,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19452,11 +19499,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:23 GMT + - Thu, 12 Dec 2019 00:59:20 GMT expires: - '-1' pragma: @@ -19489,8 +19536,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19501,12 +19548,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19520,11 +19567,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19536,11 +19583,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:26 GMT + - Thu, 12 Dec 2019 00:59:21 GMT expires: - '-1' pragma: @@ -19573,8 +19620,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19585,12 +19632,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19604,11 +19651,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19620,11 +19667,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:29 GMT + - Thu, 12 Dec 2019 00:59:21 GMT expires: - '-1' pragma: @@ -19657,8 +19704,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19669,12 +19716,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19688,11 +19735,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19704,11 +19751,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:32 GMT + - Thu, 12 Dec 2019 00:59:22 GMT expires: - '-1' pragma: @@ -19741,8 +19788,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19753,12 +19800,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19772,11 +19819,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19788,11 +19835,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:36 GMT + - Thu, 12 Dec 2019 00:59:22 GMT expires: - '-1' pragma: @@ -19825,8 +19872,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19837,12 +19884,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19856,11 +19903,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19872,11 +19919,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:38 GMT + - Thu, 12 Dec 2019 00:59:23 GMT expires: - '-1' pragma: @@ -19909,8 +19956,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -19921,12 +19968,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -19940,11 +19987,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -19956,11 +20003,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:41 GMT + - Thu, 12 Dec 2019 00:59:24 GMT expires: - '-1' pragma: @@ -19993,8 +20040,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20005,12 +20052,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20024,11 +20071,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20040,11 +20087,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:46 GMT + - Thu, 12 Dec 2019 00:59:24 GMT expires: - '-1' pragma: @@ -20077,8 +20124,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20089,12 +20136,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20108,11 +20155,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20124,11 +20171,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:48 GMT + - Thu, 12 Dec 2019 00:59:25 GMT expires: - '-1' pragma: @@ -20161,8 +20208,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20173,12 +20220,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20192,11 +20239,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20208,11 +20255,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:51 GMT + - Thu, 12 Dec 2019 00:59:25 GMT expires: - '-1' pragma: @@ -20245,8 +20292,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20257,12 +20304,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20276,11 +20323,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20292,11 +20339,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:53 GMT + - Thu, 12 Dec 2019 00:59:26 GMT expires: - '-1' pragma: @@ -20329,8 +20376,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20341,12 +20388,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20360,11 +20407,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20376,11 +20423,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:56 GMT + - Thu, 12 Dec 2019 00:59:27 GMT expires: - '-1' pragma: @@ -20413,8 +20460,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20425,12 +20472,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20444,11 +20491,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20460,11 +20507,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:40:58 GMT + - Thu, 12 Dec 2019 00:59:27 GMT expires: - '-1' pragma: @@ -20497,8 +20544,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20509,12 +20556,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20528,11 +20575,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20544,11 +20591,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:02 GMT + - Thu, 12 Dec 2019 00:59:27 GMT expires: - '-1' pragma: @@ -20581,8 +20628,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20593,12 +20640,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20612,11 +20659,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20628,11 +20675,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:05 GMT + - Thu, 12 Dec 2019 00:59:28 GMT expires: - '-1' pragma: @@ -20665,8 +20712,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20677,12 +20724,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20696,11 +20743,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20712,11 +20759,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:09 GMT + - Thu, 12 Dec 2019 00:59:29 GMT expires: - '-1' pragma: @@ -20749,8 +20796,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20761,12 +20808,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20780,11 +20827,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20796,11 +20843,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:12 GMT + - Thu, 12 Dec 2019 00:59:29 GMT expires: - '-1' pragma: @@ -20833,8 +20880,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20845,12 +20892,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20864,11 +20911,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20880,11 +20927,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:17 GMT + - Thu, 12 Dec 2019 00:59:30 GMT expires: - '-1' pragma: @@ -20917,8 +20964,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -20929,12 +20976,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -20948,11 +20995,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -20964,11 +21011,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:19 GMT + - Thu, 12 Dec 2019 00:59:31 GMT expires: - '-1' pragma: @@ -21001,8 +21048,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21013,12 +21060,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21032,11 +21079,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21048,11 +21095,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:22 GMT + - Thu, 12 Dec 2019 00:59:31 GMT expires: - '-1' pragma: @@ -21085,8 +21132,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21097,12 +21144,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21116,11 +21163,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21132,11 +21179,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:25 GMT + - Thu, 12 Dec 2019 00:59:32 GMT expires: - '-1' pragma: @@ -21169,8 +21216,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21181,12 +21228,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21200,11 +21247,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21216,11 +21263,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:29 GMT + - Thu, 12 Dec 2019 00:59:33 GMT expires: - '-1' pragma: @@ -21253,8 +21300,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21265,12 +21312,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21284,11 +21331,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21300,11 +21347,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:32 GMT + - Thu, 12 Dec 2019 00:59:33 GMT expires: - '-1' pragma: @@ -21337,8 +21384,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21349,12 +21396,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21368,11 +21415,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21384,11 +21431,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:35 GMT + - Thu, 12 Dec 2019 00:59:33 GMT expires: - '-1' pragma: @@ -21421,8 +21468,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21433,12 +21480,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21452,11 +21499,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21468,11 +21515,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:39 GMT + - Thu, 12 Dec 2019 00:59:34 GMT expires: - '-1' pragma: @@ -21505,8 +21552,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21517,12 +21564,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21536,11 +21583,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21552,11 +21599,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:41 GMT + - Thu, 12 Dec 2019 00:59:35 GMT expires: - '-1' pragma: @@ -21589,8 +21636,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21601,12 +21648,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21620,11 +21667,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21636,11 +21683,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:45 GMT + - Thu, 12 Dec 2019 00:59:35 GMT expires: - '-1' pragma: @@ -21673,8 +21720,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21685,12 +21732,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21704,11 +21751,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21720,11 +21767,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:48 GMT + - Thu, 12 Dec 2019 00:59:36 GMT expires: - '-1' pragma: @@ -21757,8 +21804,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21769,12 +21816,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21788,11 +21835,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21804,11 +21851,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:52 GMT + - Thu, 12 Dec 2019 00:59:37 GMT expires: - '-1' pragma: @@ -21841,8 +21888,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21853,12 +21900,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21872,11 +21919,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21888,11 +21935,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:55 GMT + - Thu, 12 Dec 2019 00:59:37 GMT expires: - '-1' pragma: @@ -21925,8 +21972,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -21937,12 +21984,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -21956,11 +22003,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -21972,11 +22019,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:41:58 GMT + - Thu, 12 Dec 2019 00:59:38 GMT expires: - '-1' pragma: @@ -22009,8 +22056,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22021,12 +22068,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22040,11 +22087,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22056,11 +22103,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:01 GMT + - Thu, 12 Dec 2019 00:59:38 GMT expires: - '-1' pragma: @@ -22093,8 +22140,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22105,12 +22152,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22124,11 +22171,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22140,11 +22187,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:04 GMT + - Thu, 12 Dec 2019 00:59:39 GMT expires: - '-1' pragma: @@ -22177,8 +22224,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22189,12 +22236,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22208,11 +22255,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22224,11 +22271,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:07 GMT + - Thu, 12 Dec 2019 00:59:40 GMT expires: - '-1' pragma: @@ -22261,8 +22308,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22273,12 +22320,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22292,11 +22339,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22308,11 +22355,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:10 GMT + - Thu, 12 Dec 2019 00:59:41 GMT expires: - '-1' pragma: @@ -22345,8 +22392,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22357,12 +22404,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22376,11 +22423,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22392,11 +22439,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:13 GMT + - Thu, 12 Dec 2019 00:59:41 GMT expires: - '-1' pragma: @@ -22429,8 +22476,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22441,12 +22488,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22460,11 +22507,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22476,11 +22523,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:16 GMT + - Thu, 12 Dec 2019 00:59:42 GMT expires: - '-1' pragma: @@ -22513,8 +22560,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22525,12 +22572,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22544,11 +22591,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22560,11 +22607,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:19 GMT + - Thu, 12 Dec 2019 00:59:42 GMT expires: - '-1' pragma: @@ -22597,8 +22644,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22609,12 +22656,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22628,11 +22675,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22644,11 +22691,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:22 GMT + - Thu, 12 Dec 2019 00:59:43 GMT expires: - '-1' pragma: @@ -22681,8 +22728,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22693,12 +22740,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22712,11 +22759,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22728,11 +22775,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:27 GMT + - Thu, 12 Dec 2019 00:59:43 GMT expires: - '-1' pragma: @@ -22765,8 +22812,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22777,12 +22824,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22796,11 +22843,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22812,11 +22859,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:30 GMT + - Thu, 12 Dec 2019 00:59:44 GMT expires: - '-1' pragma: @@ -22849,8 +22896,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22861,12 +22908,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22880,11 +22927,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22896,11 +22943,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:33 GMT + - Thu, 12 Dec 2019 00:59:45 GMT expires: - '-1' pragma: @@ -22933,8 +22980,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -22945,12 +22992,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -22964,11 +23011,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -22980,11 +23027,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:37 GMT + - Thu, 12 Dec 2019 00:59:45 GMT expires: - '-1' pragma: @@ -23017,8 +23064,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23029,12 +23076,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23048,11 +23095,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23064,11 +23111,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:41 GMT + - Thu, 12 Dec 2019 00:59:46 GMT expires: - '-1' pragma: @@ -23101,8 +23148,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23113,12 +23160,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23132,11 +23179,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23148,11 +23195,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:45 GMT + - Thu, 12 Dec 2019 00:59:46 GMT expires: - '-1' pragma: @@ -23185,8 +23232,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23197,12 +23244,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23216,11 +23263,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23232,11 +23279,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:48 GMT + - Thu, 12 Dec 2019 00:59:47 GMT expires: - '-1' pragma: @@ -23269,8 +23316,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23281,12 +23328,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23300,11 +23347,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23316,11 +23363,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:51 GMT + - Thu, 12 Dec 2019 00:59:48 GMT expires: - '-1' pragma: @@ -23353,8 +23400,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23365,12 +23412,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23384,11 +23431,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23400,11 +23447,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:54 GMT + - Thu, 12 Dec 2019 00:59:48 GMT expires: - '-1' pragma: @@ -23437,8 +23484,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23449,12 +23496,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23468,11 +23515,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23484,11 +23531,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:42:58 GMT + - Thu, 12 Dec 2019 00:59:50 GMT expires: - '-1' pragma: @@ -23521,8 +23568,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23533,12 +23580,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23552,11 +23599,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23568,11 +23615,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:02 GMT + - Thu, 12 Dec 2019 00:59:49 GMT expires: - '-1' pragma: @@ -23605,8 +23652,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23617,12 +23664,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23636,11 +23683,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23652,11 +23699,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:06 GMT + - Thu, 12 Dec 2019 00:59:50 GMT expires: - '-1' pragma: @@ -23689,8 +23736,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23701,12 +23748,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23720,11 +23767,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23736,11 +23783,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:10 GMT + - Thu, 12 Dec 2019 00:59:51 GMT expires: - '-1' pragma: @@ -23773,8 +23820,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23785,12 +23832,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23804,11 +23851,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23820,11 +23867,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:14 GMT + - Thu, 12 Dec 2019 00:59:51 GMT expires: - '-1' pragma: @@ -23857,8 +23904,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23869,12 +23916,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23888,11 +23935,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23904,11 +23951,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:17 GMT + - Thu, 12 Dec 2019 00:59:52 GMT expires: - '-1' pragma: @@ -23941,8 +23988,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -23953,12 +24000,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -23972,11 +24019,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -23988,11 +24035,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:21 GMT + - Thu, 12 Dec 2019 00:59:52 GMT expires: - '-1' pragma: @@ -24025,8 +24072,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24037,12 +24084,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24056,11 +24103,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24072,11 +24119,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:24 GMT + - Thu, 12 Dec 2019 00:59:53 GMT expires: - '-1' pragma: @@ -24109,8 +24156,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24121,12 +24168,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24140,11 +24187,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24156,11 +24203,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:28 GMT + - Thu, 12 Dec 2019 00:59:54 GMT expires: - '-1' pragma: @@ -24193,8 +24240,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24205,12 +24252,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24224,11 +24271,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24240,11 +24287,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:31 GMT + - Thu, 12 Dec 2019 00:59:54 GMT expires: - '-1' pragma: @@ -24277,8 +24324,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24289,12 +24336,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24308,11 +24355,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24324,11 +24371,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:34 GMT + - Thu, 12 Dec 2019 00:59:55 GMT expires: - '-1' pragma: @@ -24361,8 +24408,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24373,12 +24420,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24392,11 +24439,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24408,11 +24455,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:38 GMT + - Thu, 12 Dec 2019 00:59:56 GMT expires: - '-1' pragma: @@ -24445,8 +24492,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24457,12 +24504,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24476,11 +24523,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24492,11 +24539,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:43 GMT + - Thu, 12 Dec 2019 00:59:56 GMT expires: - '-1' pragma: @@ -24529,8 +24576,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24541,12 +24588,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24560,11 +24607,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24576,11 +24623,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:46 GMT + - Thu, 12 Dec 2019 00:59:57 GMT expires: - '-1' pragma: @@ -24613,8 +24660,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24625,12 +24672,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24644,11 +24691,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24660,11 +24707,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:50 GMT + - Thu, 12 Dec 2019 00:59:57 GMT expires: - '-1' pragma: @@ -24697,8 +24744,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24709,12 +24756,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24728,11 +24775,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24744,11 +24791,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:54 GMT + - Thu, 12 Dec 2019 00:59:58 GMT expires: - '-1' pragma: @@ -24781,8 +24828,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24793,12 +24840,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24812,11 +24859,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24828,11 +24875,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:43:57 GMT + - Thu, 12 Dec 2019 00:59:59 GMT expires: - '-1' pragma: @@ -24865,8 +24912,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24877,12 +24924,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24896,11 +24943,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24912,11 +24959,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:00 GMT + - Thu, 12 Dec 2019 00:59:59 GMT expires: - '-1' pragma: @@ -24949,8 +24996,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -24961,12 +25008,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -24980,11 +25027,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -24996,11 +25043,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:04 GMT + - Thu, 12 Dec 2019 01:00:00 GMT expires: - '-1' pragma: @@ -25033,8 +25080,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25045,12 +25092,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25064,11 +25111,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25080,11 +25127,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:07 GMT + - Thu, 12 Dec 2019 01:00:01 GMT expires: - '-1' pragma: @@ -25117,8 +25164,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25129,12 +25176,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25148,11 +25195,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25164,11 +25211,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:11 GMT + - Thu, 12 Dec 2019 01:00:02 GMT expires: - '-1' pragma: @@ -25201,8 +25248,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25213,12 +25260,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25232,11 +25279,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25248,11 +25295,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:15 GMT + - Thu, 12 Dec 2019 01:00:03 GMT expires: - '-1' pragma: @@ -25285,8 +25332,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25297,12 +25344,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25316,11 +25363,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25332,11 +25379,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:18 GMT + - Thu, 12 Dec 2019 01:00:03 GMT expires: - '-1' pragma: @@ -25369,8 +25416,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25381,12 +25428,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25400,11 +25447,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25416,11 +25463,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:21 GMT + - Thu, 12 Dec 2019 01:00:03 GMT expires: - '-1' pragma: @@ -25453,8 +25500,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25465,12 +25512,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25484,11 +25531,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25500,11 +25547,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:25 GMT + - Thu, 12 Dec 2019 01:00:04 GMT expires: - '-1' pragma: @@ -25537,8 +25584,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25549,12 +25596,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25568,11 +25615,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25584,11 +25631,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:29 GMT + - Thu, 12 Dec 2019 01:00:05 GMT expires: - '-1' pragma: @@ -25621,8 +25668,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25633,12 +25680,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25652,11 +25699,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25668,11 +25715,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:32 GMT + - Thu, 12 Dec 2019 01:00:05 GMT expires: - '-1' pragma: @@ -25705,8 +25752,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25717,12 +25764,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25736,11 +25783,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25752,11 +25799,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:35 GMT + - Thu, 12 Dec 2019 01:00:07 GMT expires: - '-1' pragma: @@ -25789,8 +25836,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25801,12 +25848,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25820,11 +25867,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25836,11 +25883,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:39 GMT + - Thu, 12 Dec 2019 01:00:06 GMT expires: - '-1' pragma: @@ -25873,8 +25920,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25885,12 +25932,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25904,11 +25951,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -25920,11 +25967,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:43 GMT + - Thu, 12 Dec 2019 01:00:08 GMT expires: - '-1' pragma: @@ -25957,8 +26004,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -25969,12 +26016,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -25988,11 +26035,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26004,11 +26051,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:47 GMT + - Thu, 12 Dec 2019 01:00:08 GMT expires: - '-1' pragma: @@ -26041,8 +26088,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26053,12 +26100,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26072,11 +26119,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26088,11 +26135,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:51 GMT + - Thu, 12 Dec 2019 01:00:09 GMT expires: - '-1' pragma: @@ -26125,8 +26172,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26137,12 +26184,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26156,11 +26203,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26172,11 +26219,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:54 GMT + - Thu, 12 Dec 2019 01:00:10 GMT expires: - '-1' pragma: @@ -26209,8 +26256,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26221,12 +26268,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26240,11 +26287,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26256,11 +26303,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:44:57 GMT + - Thu, 12 Dec 2019 01:00:10 GMT expires: - '-1' pragma: @@ -26293,8 +26340,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26305,12 +26352,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26324,11 +26371,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26340,11 +26387,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:00 GMT + - Thu, 12 Dec 2019 01:00:11 GMT expires: - '-1' pragma: @@ -26377,8 +26424,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26389,12 +26436,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26408,11 +26455,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26424,11 +26471,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:04 GMT + - Thu, 12 Dec 2019 01:00:11 GMT expires: - '-1' pragma: @@ -26461,8 +26508,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26473,12 +26520,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26492,11 +26539,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26508,11 +26555,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:08 GMT + - Thu, 12 Dec 2019 01:00:12 GMT expires: - '-1' pragma: @@ -26545,8 +26592,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26557,12 +26604,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26576,11 +26623,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26592,11 +26639,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:12 GMT + - Thu, 12 Dec 2019 01:00:13 GMT expires: - '-1' pragma: @@ -26629,8 +26676,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26641,12 +26688,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26660,11 +26707,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26676,11 +26723,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:15 GMT + - Thu, 12 Dec 2019 01:00:13 GMT expires: - '-1' pragma: @@ -26713,8 +26760,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26725,12 +26772,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26744,11 +26791,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26760,11 +26807,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:19 GMT + - Thu, 12 Dec 2019 01:00:15 GMT expires: - '-1' pragma: @@ -26797,8 +26844,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26809,12 +26856,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26828,11 +26875,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26844,11 +26891,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:24 GMT + - Thu, 12 Dec 2019 01:00:15 GMT expires: - '-1' pragma: @@ -26881,8 +26928,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26893,12 +26940,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26912,11 +26959,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -26928,11 +26975,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:28 GMT + - Thu, 12 Dec 2019 01:00:15 GMT expires: - '-1' pragma: @@ -26965,8 +27012,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -26977,12 +27024,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -26996,11 +27043,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27012,11 +27059,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:32 GMT + - Thu, 12 Dec 2019 01:00:16 GMT expires: - '-1' pragma: @@ -27049,8 +27096,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27061,12 +27108,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27080,11 +27127,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27096,11 +27143,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:36 GMT + - Thu, 12 Dec 2019 01:00:17 GMT expires: - '-1' pragma: @@ -27133,8 +27180,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27145,12 +27192,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27164,11 +27211,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27180,11 +27227,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:40 GMT + - Thu, 12 Dec 2019 01:00:17 GMT expires: - '-1' pragma: @@ -27217,8 +27264,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27229,12 +27276,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27248,11 +27295,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27264,11 +27311,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:43 GMT + - Thu, 12 Dec 2019 01:00:18 GMT expires: - '-1' pragma: @@ -27301,8 +27348,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27313,12 +27360,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27332,11 +27379,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27348,11 +27395,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:47 GMT + - Thu, 12 Dec 2019 01:00:19 GMT expires: - '-1' pragma: @@ -27385,8 +27432,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27397,12 +27444,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27416,11 +27463,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27432,11 +27479,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:52 GMT + - Thu, 12 Dec 2019 01:00:20 GMT expires: - '-1' pragma: @@ -27469,8 +27516,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27481,12 +27528,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27500,11 +27547,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27516,11 +27563,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:55 GMT + - Thu, 12 Dec 2019 01:00:20 GMT expires: - '-1' pragma: @@ -27553,8 +27600,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27565,12 +27612,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27584,11 +27631,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27600,11 +27647,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:45:59 GMT + - Thu, 12 Dec 2019 01:00:21 GMT expires: - '-1' pragma: @@ -27637,8 +27684,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27649,12 +27696,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27668,11 +27715,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27684,11 +27731,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:03 GMT + - Thu, 12 Dec 2019 01:00:21 GMT expires: - '-1' pragma: @@ -27721,8 +27768,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27733,12 +27780,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27752,11 +27799,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27768,11 +27815,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:06 GMT + - Thu, 12 Dec 2019 01:00:23 GMT expires: - '-1' pragma: @@ -27805,8 +27852,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27817,12 +27864,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27836,11 +27883,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27852,11 +27899,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:10 GMT + - Thu, 12 Dec 2019 01:00:23 GMT expires: - '-1' pragma: @@ -27889,8 +27936,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27901,12 +27948,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -27920,11 +27967,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -27936,11 +27983,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:14 GMT + - Thu, 12 Dec 2019 01:00:23 GMT expires: - '-1' pragma: @@ -27973,8 +28020,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -27985,12 +28032,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28004,11 +28051,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28020,11 +28067,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:18 GMT + - Thu, 12 Dec 2019 01:00:24 GMT expires: - '-1' pragma: @@ -28057,8 +28104,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28069,12 +28116,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28088,11 +28135,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28104,11 +28151,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:22 GMT + - Thu, 12 Dec 2019 01:00:25 GMT expires: - '-1' pragma: @@ -28141,8 +28188,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28153,12 +28200,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28172,11 +28219,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28188,11 +28235,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:25 GMT + - Thu, 12 Dec 2019 01:00:25 GMT expires: - '-1' pragma: @@ -28225,8 +28272,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28237,12 +28284,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28256,11 +28303,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28272,11 +28319,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:30 GMT + - Thu, 12 Dec 2019 01:00:26 GMT expires: - '-1' pragma: @@ -28309,8 +28356,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28321,12 +28368,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28340,11 +28387,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28356,11 +28403,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:33 GMT + - Thu, 12 Dec 2019 01:00:27 GMT expires: - '-1' pragma: @@ -28393,8 +28440,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28405,12 +28452,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28424,11 +28471,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28440,11 +28487,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:38 GMT + - Thu, 12 Dec 2019 01:00:28 GMT expires: - '-1' pragma: @@ -28477,8 +28524,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28489,12 +28536,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28508,11 +28555,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28524,11 +28571,11 @@ interactions: cache-control: - no-cache content-length: - - '2742' + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:42 GMT + - Thu, 12 Dec 2019 01:00:28 GMT expires: - '-1' pragma: @@ -28561,8 +28608,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28573,12 +28620,12 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28592,11 +28639,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28608,11 +28655,347 @@ interactions: cache-control: - no-cache content-length: - - '2732' + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' content-type: - application/json date: - - Tue, 14 Jan 2020 01:46:47 GMT + - Thu, 12 Dec 2019 01:00:32 GMT expires: - '-1' pragma: @@ -28639,15 +29022,14 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster node-type add + - sf cluster show Connection: - keep-alive ParameterSetName: - - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku + - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US method: GET @@ -28658,12 +29040,516 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637145619770578061\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n - \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -28677,11 +29563,11 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogs5y3xteo3wib6y2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs5y3xteo3wib6y2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogs5y3xteo3wib6y2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogs5y3xteo3wib6y2.table.core.windows.net/\"\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n @@ -28693,11 +29579,55777 @@ interactions: cache-control: - no-cache content-length: - - '2732' + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:00:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:01:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:02:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2736' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:03:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:04:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:05:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:06:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:07:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:08:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:09:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:10:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2742' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2732' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Ready\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2732' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:11:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"VNet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet\",\r\n + \ \"etag\": \"W/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": + \"sfrp-cli-000004\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"7bf0ba8d-6e0f-4b8a-8f9e-59306f9ab709\",\r\n + \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n + \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": + \"Subnet-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n + \ \"etag\": \"W/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"ipConfigurations\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ }\r\n ],\r\n \"delegations\": [],\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2940' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3f9bb422-f42a-4838-9787-4fa3b7d6846d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets?api-version=2019-09-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Subnet-0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n + \ \"etag\": \"W/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": + \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\r\n + \ },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1869' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e260edd0-4e0b-43ec-be7c-9a09b088c010 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"addressPrefix": "10.0.1.0/24"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '48' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 + response: + body: + string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n + \ \"etag\": \"W/\\\"42501193-bece-48f9-9da5-f3b73e5e097e\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7de0682d-8f1a-4f7c-b6a1-dbc12e55c303?api-version=2019-09-01 + cache-control: + - no-cache + content-length: + - '586' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 332f7b15-a479-4d75-9087-925441897a53 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7de0682d-8f1a-4f7c-b6a1-dbc12e55c303?api-version=2019-09-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - eb7573e4-6161-40ea-a0ac-a0991107bd97 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 + response: + body: + string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n + \ \"etag\": \"W/\\\"126e10f3-0c86-423a-81ba-b083874d78b1\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '587' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:17 GMT + etag: + - W/"126e10f3-0c86-423a-81ba-b083874d78b1" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5a71e024-93b9-4f91-a4b1-7a3bc0283e76 + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic", + "dnsSettings": {"domainNameLabel": "sfrp-cli-000004-nt21"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '146' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 + response: + body: + string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"dd7ad4ba-265a-4f01-b382-572636dbe379\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"60489557-d4f5-437c-a806-98c7082b84b0\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n + \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n + \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c95d6e1-e6ba-4a7b-8014-314b75b898f7?api-version=2019-09-01 + cache-control: + - no-cache + content-length: + - '878' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 832051ee-daae-4577-8483-64d5d833a91a + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3c95d6e1-e6ba-4a7b-8014-314b75b898f7?api-version=2019-09-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - bbd545e2-bae9-4d59-b3b5-45b2c05a0ef3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 + response: + body: + string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"899a601e-edc6-44c5-bc01-417a8854f73d\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"60489557-d4f5-437c-a806-98c7082b84b0\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n + \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n + \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '879' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:22 GMT + etag: + - W/"899a601e-edc6-44c5-bc01-417a8854f73d" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0bfd16b3-854c-4346-9bab-3f7b92812c8c + status: + code: 200 + message: OK +- request: + body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1", + "location": "westus", "properties": {"frontendIPConfigurations": [{"properties": + {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21"}}, + "name": "LoadBalancerIPConfig"}], "backendAddressPools": [{"name": "LoadBalancerBEAddressPool"}], + "loadBalancingRules": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe"}, + "protocol": "tcp", "frontendPort": 19000, "backendPort": 19000, "idleTimeoutInMinutes": + 5, "enableFloatingIP": false}, "name": "LBRule"}, {"properties": {"frontendIPConfiguration": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe"}, + "protocol": "tcp", "frontendPort": 19080, "backendPort": 19080, "idleTimeoutInMinutes": + 5, "enableFloatingIP": false}, "name": "LBHttpRule"}], "probes": [{"properties": + {"protocol": "tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": + 2}, "name": "FabricGatewayProbe"}, {"properties": {"protocol": "tcp", "port": + 19080, "intervalInSeconds": 5, "numberOfProbes": 2}, "name": "FabricHttpGatewayProbe"}], + "inboundNatPools": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"}, + "protocol": "tcp", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, + "backendPort": 3389}, "name": "LoadBalancerBEAddressNatPool"}]}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '3402' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1?api-version=2019-09-01 + response: + body: + string: "{\r\n \"name\": \"LB-sfrp-cli-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n + \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a809896-afa7-4f2f-8d13-729af2f70541?api-version=2019-09-01 + cache-control: + - no-cache + content-length: + - '10668' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f1244bf7-e42a-4797-a724-3465a5c09c94 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a809896-afa7-4f2f-8d13-729af2f70541?api-version=2019-09-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 43f0d9b0-d7bb-45e1-87a3-3ae6811949ef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1?api-version=2019-09-01 + response: + body: + string: "{\r\n \"name\": \"LB-sfrp-cli-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n + \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '10668' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:55 GMT + etag: + - W/"159a812e-f489-46e3-a2bd-c5030b16fb6b" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a76d6a89-3782-4499-bc0d-3de21ee1330d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1?api-version=2019-09-01 + response: + body: + string: "{\r\n \"name\": \"LB-sfrp-cli-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n + \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n + \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n + \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": + \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '10668' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:55 GMT + etag: + - W/"159a812e-f489-46e3-a2bd-c5030b16fb6b" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5e1dd530-06f4-4875-a9c5-241756059a4c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2019-07-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n + \ \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n \"sku\": + {\r\n \"name\": \"Standard_D2_V2\",\r\n \"tier\": \"Standard\",\r\n + \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n + \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"nt1vm\",\r\n \"adminUsername\": + \"adminuser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": + true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n + \ ]\r\n }\r\n ]\r\n },\r\n + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n + \ },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n + \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": + \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n + \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": + {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"xjb4dma6imrnu3\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n + \ \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n + \ ]\r\n }\r\n },\r\n \"provisioningState\": + \"Updating\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"6dd7c248-fc98-49c2-be5b-126efdb55cf2\"\r\n + \ }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '5968' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;895 + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1?api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:11:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/93fc777d-5d7f-4bc5-ae1e-fdb1581639b2?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/93fc777d-5d7f-4bc5-ae1e-fdb1581639b2?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1","name":"sfrpcliijc3wu2qrg3wwx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:11:59.2106231Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx1.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx1.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:12:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1","name":"sfrpcliijc3wu2qrg3wwx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:11:59.2106231Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx1.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx1.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:12:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx1/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:12:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2?api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:12:21 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/996e6ce1-6a47-41d7-beba-5d352d16f165?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/996e6ce1-6a47-41d7-beba-5d352d16f165?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2","name":"sfrpcliijc3wu2qrg3wwx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:21.3367288Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx2.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx2.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:12:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2","name":"sfrpcliijc3wu2qrg3wwx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:21.3367288Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx2.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx2.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:12:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx2/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:12:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3?api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:12:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c2b9ef56-944e-4990-bb15-0dfeb166d809?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c2b9ef56-944e-4990-bb15-0dfeb166d809?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3","name":"sfrpcliijc3wu2qrg3wwx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:43.4776402Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx3.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx3.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3","name":"sfrpcliijc3wu2qrg3wwx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:43.4776402Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx3.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx3.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx3/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4?api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:13:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/a13f8a59-3d09-4495-a4cf-03e83e15a86b?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/a13f8a59-3d09-4495-a4cf-03e83e15a86b?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4","name":"sfrpcliijc3wu2qrg3wwx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:05.5568960Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx4.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx4.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4","name":"sfrpcliijc3wu2qrg3wwx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:05.5568960Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx4.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx4.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx4/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '74' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5?api-version=2019-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:13:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/52b7e4a1-0280-418d-9bd5-69534114a0ab?monitor=true&api-version=2019-04-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/52b7e4a1-0280-418d-9bd5-69534114a0ab?monitor=true&api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5","name":"sfrpcliijc3wu2qrg3wwx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:27.6550438Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx5.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx5.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5?api-version=2019-04-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5","name":"sfrpcliijc3wu2qrg3wwx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:27.6550438Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx5.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx5.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1156' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + 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: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliijc3wu2qrg3wwx5/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - 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 + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - 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 + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2/listKeys?api-version=2019-04-01 + response: + body: + string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '288' + content-type: + - application/json + date: + - Thu, 12 Dec 2019 01:13:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "westus", "sku": {"name": "Standard_D15_v2", "tier": "Standard", + "capacity": 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": + {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": "admintest", "adminPassword": + "Pass@000005", "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, + "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d", + "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": + "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", + "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", + "createOption": "FromImage", "vhdContainers": ["https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd", + "https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd", "https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd", + "https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd", "https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd"]}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", + "properties": {"primary": true, "ipConfigurations": [{"name": "Nic-nt2", "properties": + {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, + "extensionProfile": {"extensions": [{"name": "ServiceFabricNodeVmExt_vmNodeType0Name", + "properties": {"publisher": "Microsoft.Azure.ServiceFabric", "type": "ServiceFabricNode", + "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": false, "settings": {"clusterEndpoint": + "https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d", + "nodeTypeRef": "nt2", "dataPath": "D:\\\\\\\\SvcFab", "durabilityLevel": "Gold", + "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "A6D42B59D36EB86B6C2E0030165727B007B6DEC0", + "x509StoreName": "My"}}, "protectedSettings": {"StorageAccountKey1": "veryFakedStorageAccountKey==", + "StorageAccountKey2": "veryFakedStorageAccountKey=="}}}, {"name": "VMDiagnosticsVmExt_vmNodeType0Name", + "properties": {"publisher": "Microsoft.Azure.Diagnostics", "type": "IaaSDiagnostics", + "typeHandlerVersion": "1.5", "autoUpgradeMinorVersion": true, "settings": {"WadCfg": + {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": "50000", "EtwProviders": + {"EtwEventSourceProviderConfiguration": [{"provider": "Microsoft-ServiceFabric-Actors", + "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableActorEventTable"}}, {"provider": + "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], "EtwManifestProviderConfiguration": + [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter": + "Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}}, + "StorageAccount": "xjb4dma6imrnu3"}, "protectedSettings": {"storageAccountName": + "xjb4dma6imrnu3", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint": + "https://core.windows.net/"}}}]}}, "overprovision": false}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '4417' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-01 + response: + body: + string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n + \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": + \"nt2\",\r\n \"adminUsername\": \"admintest\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd\"\r\n + \ ],\r\n \"name\": \"vmssosdisk\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadOnly\"\r\n },\r\n \"imageReference\": + {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": + \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": + \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n + \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": + {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": + \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"xjb4dma6imrnu3\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": + \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n + \ }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"4c753048-1018-48a1-84c8-10059537beb8\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 + cache-control: + - no-cache + content-length: + - '5837' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:13:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;4795 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-ms-request-charge: + - '5' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:14:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29870 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:15:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29883 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 12 Dec 2019 01:16:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29879 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 + response: + body: + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:46:51 GMT + - Thu, 12 Dec 2019 01:16:41 GMT expires: - '-1' pragma: @@ -28713,6 +85365,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29875 status: code: 200 message: OK @@ -28731,34 +85385,40 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:22:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" headers: cache-control: - no-cache content-length: - - '428' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:46:53 GMT + - Thu, 12 Dec 2019 01:17:12 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29872 status: code: 200 message: OK @@ -28777,44 +85437,23 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"VNet\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet\",\r\n - \ \"etag\": \"W/\\\"6f6d9cbb-7e72-46fe-a6cf-f7c5364edbcc\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": - \"sfrp-cli-000004\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"resourceGuid\": \"aef3356e-8271-4c1b-adc8-804dee1e07f7\",\r\n - \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n - \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": - \"Subnet-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n - \ \"etag\": \"W/\\\"6f6d9cbb-7e72-46fe-a6cf-f7c5364edbcc\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ }\r\n ],\r\n \"delegations\": [],\r\n - \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" headers: cache-control: - no-cache content-length: - - '2701' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:46:56 GMT + - Thu, 12 Dec 2019 01:17:43 GMT expires: - '-1' pragma: @@ -28830,8 +85469,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - ce1d89b6-fef3-482a-85c4-c62636f3eb5e + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29869 status: code: 200 message: OK @@ -28850,35 +85489,23 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Subnet-0\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n - \ \"etag\": \"W/\\\"6f6d9cbb-7e72-46fe-a6cf-f7c5364edbcc\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": - \"10.0.0.0/24\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n - \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ]\r\n}" + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" headers: cache-control: - no-cache content-length: - - '1648' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:46:57 GMT + - Thu, 12 Dec 2019 01:18:13 GMT expires: - '-1' pragma: @@ -28894,13 +85521,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 85e691bd-1bd6-4ac5-98af-bcfd4cf6c47f + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29865 status: code: 200 message: OK - request: - body: '{"properties": {"addressPrefix": "10.0.1.0/24"}}' + body: null headers: Accept: - application/json @@ -28910,39 +85537,28 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '48' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.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.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01 response: body: - string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n - \ \"etag\": \"W/\\\"2d30de2a-36d3-4d1a-89c0-50244b26e6c3\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"startTime\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"endTime\": + \"2019-12-12T01:18:42.9491683+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e324c986-a270-4448-abe6-e9eac0afb424?api-version=2019-09-01 cache-control: - no-cache content-length: - - '586' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:46:58 GMT + - Thu, 12 Dec 2019 01:18:44 GMT expires: - '-1' pragma: @@ -28952,15 +85568,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 56ef73e7-f9bd-45c2-a8b4-52bfbd293499 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29861 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -28976,22 +85594,65 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e324c986-a270-4448-abe6-e9eac0afb424?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n + \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": + \"nt2\",\r\n \"adminUsername\": \"admintest\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd\"\r\n + \ ],\r\n \"name\": \"vmssosdisk\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadOnly\"\r\n },\r\n \"imageReference\": + {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": + \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": + \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n + \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": + {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": + \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"xjb4dma6imrnu3\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": + \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"4c753048-1018-48a1-84c8-10059537beb8\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '5838' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:47:03 GMT + - Thu, 12 Dec 2019 01:18:44 GMT expires: - '-1' pragma: @@ -29007,13 +85668,20 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - e0bbac6d-f5a5-4863-b8c0-4367a68d0681 + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2585 status: code: 200 message: OK - request: - body: null + body: '{"properties": {"nodeTypes": [{"name": "nt1vm", "clientConnectionEndpointPort": + 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": "Bronze", "applicationPorts": + {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": {"startPort": 49152, + "endPort": 65534}, "isPrimary": true, "vmInstanceCount": 3}, {"name": "nt2", + "clientConnectionEndpointPort": 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": + "Gold", "applicationPorts": {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": + {"startPort": 49152, "endPort": 65534}, "isPrimary": false, "vmInstanceCount": + 5}]}}' headers: Accept: - application/json @@ -29023,56 +85691,86 @@ interactions: - sf cluster node-type add Connection: - keep-alive + Content-Length: + - '588' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.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.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2019-09-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview response: body: - string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n - \ \"etag\": \"W/\\\"2b0b3e61-0398-49fb-9bda-2259eebc3d39\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637117087295410024\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\": + \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n + \ \"clusterState\": \"UpdatingUserConfiguration\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n + \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": + [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": + \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n + \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n + \ ]\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview cache-control: - no-cache content-length: - - '587' + - '2661' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:04 GMT - etag: - - W/"2b0b3e61-0398-49fb-9bda-2259eebc3d39" + - Thu, 12 Dec 2019 01:18:45 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - b72f5150-5f57-4150-918d-e932f12be1db + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"location": "westus", "properties": {"publicIPAllocationMethod": "Dynamic", - "dnsSettings": {"domainNameLabel": "sfrp-cli-000004-nt21"}}}' + body: null headers: Accept: - application/json @@ -29082,42 +85780,29 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '146' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.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.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n - \ \"etag\": \"W/\\\"10625772-b5c3-42b3-8f63-e1f34e870b4c\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"3481b50a-ef74-4dee-a732-41648ce726f9\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n - \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n - \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47afa37-d36f-4b69-9888-19860c7753a1?api-version=2019-09-01 cache-control: - no-cache content-length: - - '878' + - '353' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:12 GMT + - Thu, 12 Dec 2019 01:19:47 GMT expires: - '-1' pragma: @@ -29127,15 +85812,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - da51cc94-8598-4d37-943f-b9e1c4888d49 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -29151,22 +85836,25 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f47afa37-d36f-4b69-9888-19860c7753a1?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '353' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:16 GMT + - Thu, 12 Dec 2019 01:20:18 GMT expires: - '-1' pragma: @@ -29182,8 +85870,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 81f1726f-b2dc-4e7a-9296-8a026bb9d1c4 status: code: 200 message: OK @@ -29202,32 +85888,25 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n - \ \"etag\": \"W/\\\"ba9e49fb-cda8-48ce-b0fa-85972abb1747\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"3481b50a-ef74-4dee-a732-41648ce726f9\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n - \ \"fqdn\": \"sfrp-cli-000004-nt21.westus.cloudapp.azure.com\"\r\n },\r\n - \ \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '879' + - '353' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:17 GMT - etag: - - W/"ba9e49fb-cda8-48ce-b0fa-85972abb1747" + - Thu, 12 Dec 2019 01:20:49 GMT expires: - '-1' pragma: @@ -29243,32 +85922,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 86dda612-7356-4d42-8d85-abb84ee8c097 status: code: 200 message: OK - request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1", - "location": "westus", "properties": {"frontendIPConfigurations": [{"properties": - {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21"}}, - "name": "LoadBalancerIPConfig"}], "backendAddressPools": [{"name": "LoadBalancerBEAddressPool"}], - "loadBalancingRules": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe"}, - "protocol": "tcp", "frontendPort": 19000, "backendPort": 19000, "idleTimeoutInMinutes": - 5, "enableFloatingIP": false}, "name": "LBRule"}, {"properties": {"frontendIPConfiguration": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe"}, - "protocol": "tcp", "frontendPort": 19080, "backendPort": 19080, "idleTimeoutInMinutes": - 5, "enableFloatingIP": false}, "name": "LBHttpRule"}], "probes": [{"properties": - {"protocol": "tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": - 2}, "name": "FabricGatewayProbe"}, {"properties": {"protocol": "tcp", "port": - 19080, "intervalInSeconds": 5, "numberOfProbes": 2}, "name": "FabricHttpGatewayProbe"}], - "inboundNatPools": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "protocol": "tcp", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, - "backendPort": 3389}, "name": "LoadBalancerBEAddressNatPool"}]}}''' + body: null headers: Accept: - application/json @@ -29278,113 +85936,29 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '3402' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.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.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1?api-version=2019-09-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"name\": \"LB-sfrp-cli-vxfrxm5on1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f36a739-7397-4a27-bd70-b3c885fc55ff\",\r\n - \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n - \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n - \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n - \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": - 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\"\r\n - \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": - 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": - [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": - 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n - \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": - false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": - false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n - \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36398e3d-493b-450e-ad2b-7977de5a3318?api-version=2019-09-01 cache-control: - no-cache content-length: - - '10668' + - '3309' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:21 GMT + - Thu, 12 Dec 2019 01:21:20 GMT expires: - '-1' pragma: @@ -29394,15 +85968,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 3f775774-be73-4858-9e30-5417b17f5806 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -29418,22 +85992,25 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36398e3d-493b-450e-ad2b-7977de5a3318?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '3309' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:53 GMT + - Thu, 12 Dec 2019 01:21:52 GMT expires: - '-1' pragma: @@ -29449,8 +86026,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - ac0323df-c903-4365-a08a-61e6f39fe14e status: code: 200 message: OK @@ -29469,103 +86044,25 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"name\": \"LB-sfrp-cli-vxfrxm5on1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f36a739-7397-4a27-bd70-b3c885fc55ff\",\r\n - \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n - \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n - \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n - \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": - 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\"\r\n - \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": - 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": - [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": - 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n - \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": - false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": - false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n - \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '10668' + - '3394' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:54 GMT - etag: - - W/"43ba03a2-e537-4c8b-9780-2a42bf5cdc26" + - Thu, 12 Dec 2019 01:22:23 GMT expires: - '-1' pragma: @@ -29581,8 +86078,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - fb0e1677-62ab-4f93-9aa5-ce84473eab02 status: code: 200 message: OK @@ -29601,105 +86096,25 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"name\": \"LB-sfrp-cli-vxfrxm5on1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f36a739-7397-4a27-bd70-b3c885fc55ff\",\r\n - \ \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n - \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n - \ }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n - \ \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n - \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": - \"LBRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": - 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\"\r\n - \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": - 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": - 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": - false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n - \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": - 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": - [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/loadBalancingRules/LBHttpRule\"\r\n - \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n - \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": - [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"43ba03a2-e537-4c8b-9780-2a42bf5cdc26\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": - 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n - \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": - false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": - false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n - \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '10668' + - '3394' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:55 GMT - etag: - - W/"43ba03a2-e537-4c8b-9780-2a42bf5cdc26" + - Thu, 12 Dec 2019 01:22:54 GMT expires: - '-1' pragma: @@ -29715,8 +86130,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - eb547948-a838-48aa-a79e-93b49aa399e3 status: code: 200 message: OK @@ -29735,65 +86148,25 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": - \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n - \ \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n \"sku\": - {\r\n \"name\": \"Standard_D2_V2\",\r\n \"tier\": \"Standard\",\r\n - \ \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": - true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n - \ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": - {\r\n \"computerNamePrefix\": \"nt1vm\",\r\n \"adminUsername\": - \"adminuser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": - true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n - \ \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2\",\r\n - \ \"certificateStore\": \"My\"\r\n }\r\n - \ ]\r\n }\r\n ]\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": - \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": - {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n - \ \"diskSizeGB\": 127\r\n },\r\n \"imageReference\": - {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": - \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": - \"latest\"\r\n }\r\n },\r\n \"networkProfile\": - {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n - \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n - \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n - \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": - false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n - \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": - \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"742F7E7B0272D6978333A2C2A4B102DE1332CBCE\",\"x509StoreName\":\"My\"}}\r\n - \ }\r\n },\r\n {\r\n \"name\": - \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": - {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": - \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n - \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": - {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"5y3xteo3wib6y3\"}\r\n - \ }\r\n }\r\n ]\r\n }\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"314312db-5838-4a4a-a73f-de2311593e47\"\r\n }\r\n }\r\n ]\r\n}" + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '5558' + - '3305' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:47:58 GMT + - Thu, 12 Dec 2019 01:23:25 GMT expires: - '-1' pragma: @@ -29809,13 +86182,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899 status: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + body: null headers: Accept: - application/json @@ -29825,49 +86196,47 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '3305' content-type: - - text/plain; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:48:06 GMT + - Thu, 12 Dec 2019 01:23:56 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9575bb15-b985-4efe-a2d1-08ba5a2cb33a?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1165' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -29883,28 +86252,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/9575bb15-b985-4efe-a2d1-08ba5a2cb33a?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1","name":"sfrpclivxfrxm5on7srhx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:06.1485427Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx1.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx1.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx1.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3305' content-type: - application/json date: - - Tue, 14 Jan 2020 01:48:26 GMT + - Thu, 12 Dec 2019 01:24:27 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -29931,30 +86304,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1","name":"sfrpclivxfrxm5on7srhx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:06.2266904Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:06.1485427Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx1.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx1.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx1.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3305' content-type: - application/json date: - - Tue, 14 Jan 2020 01:48:26 GMT + - Thu, 12 Dec 2019 01:24:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -29977,36 +86352,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx1/listKeys?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '3311' content-type: - application/json date: - - Tue, 14 Jan 2020 01:48:27 GMT + - Thu, 12 Dec 2019 01:25:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30015,13 +86390,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + body: null headers: Accept: - application/json @@ -30031,49 +86404,47 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '3311' content-type: - - text/plain; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:48:35 GMT + - Thu, 12 Dec 2019 01:26:01 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8a50f806-8f71-46b1-a439-645300fff0a5?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -30089,28 +86460,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8a50f806-8f71-46b1-a439-645300fff0a5?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2","name":"sfrpclivxfrxm5on7srhx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:35.1963596Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx2.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx2.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx2.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3396' content-type: - application/json date: - - Tue, 14 Jan 2020 01:48:55 GMT + - Thu, 12 Dec 2019 01:26:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30137,30 +86512,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2","name":"sfrpclivxfrxm5on7srhx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:48:35.2588537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:48:35.1963596Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx2.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx2.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx2.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3396' content-type: - application/json date: - - Tue, 14 Jan 2020 01:48:56 GMT + - Thu, 12 Dec 2019 01:27:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30183,36 +86560,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx2/listKeys?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '3307' content-type: - application/json date: - - Tue, 14 Jan 2020 01:48:57 GMT + - Thu, 12 Dec 2019 01:27:34 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30221,13 +86598,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + body: null headers: Accept: - application/json @@ -30237,49 +86612,47 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '3307' content-type: - - text/plain; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:49:03 GMT + - Thu, 12 Dec 2019 01:28:05 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2b3bd9b4-ac87-460b-a1d9-d6ada79241a5?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1164' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -30295,28 +86668,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/2b3bd9b4-ac87-460b-a1d9-d6ada79241a5?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3","name":"sfrpclivxfrxm5on7srhx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:03.3073111Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx3.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx3.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx3.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3307' content-type: - application/json date: - - Tue, 14 Jan 2020 01:49:22 GMT + - Thu, 12 Dec 2019 01:28:37 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30343,30 +86720,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3","name":"sfrpclivxfrxm5on7srhx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:03.3854363Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:03.3073111Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx3.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx3.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx3.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3307' content-type: - application/json date: - - Tue, 14 Jan 2020 01:49:24 GMT + - Thu, 12 Dec 2019 01:29:08 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30389,36 +86768,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx3/listKeys?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '3285' content-type: - application/json date: - - Tue, 14 Jan 2020 01:49:26 GMT + - Thu, 12 Dec 2019 01:29:39 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30427,13 +86806,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + body: null headers: Accept: - application/json @@ -30443,49 +86820,47 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '3285' content-type: - - text/plain; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:49:43 GMT + - Thu, 12 Dec 2019 01:30:10 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1ba21af9-f5a1-4cc6-b29d-1473ca1f11a1?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -30501,28 +86876,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/1ba21af9-f5a1-4cc6-b29d-1473ca1f11a1?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4","name":"sfrpclivxfrxm5on7srhx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:43.7738707Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx4.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx4.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx4.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3417' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:03 GMT + - Thu, 12 Dec 2019 01:30:42 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30549,30 +86928,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4","name":"sfrpclivxfrxm5on7srhx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:49:43.8520621Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:49:43.7738707Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx4.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx4.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx4.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3417' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:04 GMT + - Thu, 12 Dec 2019 01:31:13 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30595,36 +86976,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx4/listKeys?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '3370' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:05 GMT + - Thu, 12 Dec 2019 01:31:44 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30633,13 +87014,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK - request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' + body: null headers: Accept: - application/json @@ -30649,49 +87028,47 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '0' + - '3370' content-type: - - text/plain; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:50:13 GMT + - Thu, 12 Dec 2019 01:32:15 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/879e66ba-1015-4e37-bd4e-266f30cd0867?monitor=true&api-version=2019-06-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -30707,28 +87084,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/879e66ba-1015-4e37-bd4e-266f30cd0867?monitor=true&api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5","name":"sfrpclivxfrxm5on7srhx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:50:12.6806226Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx5.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx5.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx5.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3283' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:31 GMT + - Thu, 12 Dec 2019 01:32:46 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30755,30 +87136,32 @@ interactions: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.0 Azure-SDK-For-Python AZURECLI/2.0.79 - accept-language: - - en-US + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5","name":"sfrpclivxfrxm5on7srhx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-14T01:50:12.7587238Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T01:50:12.6806226Z","primaryEndpoints":{"blob":"https://sfrpclivxfrxm5on7srhx5.blob.core.windows.net/","queue":"https://sfrpclivxfrxm5on7srhx5.queue.core.windows.net/","table":"https://sfrpclivxfrxm5on7srhx5.table.core.windows.net/","file":"https://sfrpclivxfrxm5on7srhx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '1188' + - '3283' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:34 GMT + - Thu, 12 Dec 2019 01:33:17 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30801,36 +87184,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sfrpclivxfrxm5on7srhx5/listKeys?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '3283' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:34 GMT + - Thu, 12 Dec 2019 01:33:48 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30839,8 +87222,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -30855,36 +87236,36 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/5y3xteo3wib6y3/listKeys?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n + \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Succeeded\",\r\n + \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"2019-12-12T01:34:16.0939636Z\",\r\n + \ \"percentComplete\": 100.0\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '366' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:36 GMT + - Thu, 12 Dec 2019 01:34:20 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30893,8 +87274,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: code: 200 message: OK @@ -30909,36 +87288,70 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/7.1.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.Storage/storageAccounts/sflogs5y3xteo3wib6y2/listKeys?api-version=2019-06-01 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview response: body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637117087295410024\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": + \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n + \ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Gold\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n + \ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": + \"7.0.457.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '288' + - '3073' content-type: - application/json date: - - Tue, 14 Jan 2020 01:50:38 GMT + - Thu, 12 Dec 2019 01:34:21 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -30947,50 +87360,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK - request: - body: 'b''{"location": "westus", "sku": {"name": "Standard_D15_v2", "tier": "Standard", - "capacity": 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": - {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": "admintest", "adminPassword": - "Pass@000005", "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/359ac73f7a42463a87fb7f4999cabab2", - "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": - "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", - "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", - "createOption": "FromImage", "vhdContainers": ["https://sfrpclivxfrxm5on7srhx1.blob.core.windows.net/vhd", - "https://sfrpclivxfrxm5on7srhx2.blob.core.windows.net/vhd", "https://sfrpclivxfrxm5on7srhx3.blob.core.windows.net/vhd", - "https://sfrpclivxfrxm5on7srhx4.blob.core.windows.net/vhd", "https://sfrpclivxfrxm5on7srhx5.blob.core.windows.net/vhd"]}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", - "properties": {"primary": true, "ipConfigurations": [{"name": "Nic-nt2", "properties": - {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1"}, - "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/backendAddressPools/LoadBalancerBEAddressPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-vxfrxm5on1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, - "extensionProfile": {"extensions": [{"name": "ServiceFabricNodeVmExt_vmNodeType0Name", - "properties": {"publisher": "Microsoft.Azure.ServiceFabric", "type": "ServiceFabricNode", - "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": false, "settings": {"clusterEndpoint": - "https://westus.servicefabric.azure.com/runtime/clusters/58bdd55d-0f73-4dfd-b03d-a57c4aeee29e", - "nodeTypeRef": "nt2", "dataPath": "D:\\\\\\\\SvcFab", "durabilityLevel": "Gold", - "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "742F7E7B0272D6978333A2C2A4B102DE1332CBCE", - "x509StoreName": "My"}}, "protectedSettings": {"StorageAccountKey1": "veryFakedStorageAccountKey==", - "StorageAccountKey2": "veryFakedStorageAccountKey=="}}}, {"name": "VMDiagnosticsVmExt_vmNodeType0Name", - "properties": {"publisher": "Microsoft.Azure.Diagnostics", "type": "IaaSDiagnostics", - "typeHandlerVersion": "1.5", "autoUpgradeMinorVersion": true, "settings": {"WadCfg": - {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": "50000", "EtwProviders": - {"EtwEventSourceProviderConfiguration": [{"provider": "Microsoft-ServiceFabric-Actors", - "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": "PT5M", "DefaultEvents": - {"eventDestination": "ServiceFabricReliableActorEventTable"}}, {"provider": - "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": "PT5M", "DefaultEvents": - {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], "EtwManifestProviderConfiguration": - [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter": - "Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod": - "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}}, - "StorageAccount": "5y3xteo3wib6y3"}, "protectedSettings": {"storageAccountName": - "5y3xteo3wib6y3", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint": - "https://core.windows.net/"}}}]}}, "overprovision": false}}''' + body: null headers: Accept: - application/json @@ -31000,37 +87374,65 @@ interactions: - sf cluster node-type add Connection: - keep-alive - Content-Length: - - '4417' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level --vm-sku User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview response: body: - string: "{\r\n \"error\": {\r\n \"code\": \"OperationNotAllowed\",\r\n \"message\": - \"The operation couldn't be completed as it results in exceeding quota limit - of Core. Maximum allowed: 100, Current in use: 6, Additional requested: 100. - Read more about quota limits at https://aka.ms/AzurePerVMQuotaLimits. Submit - a request for Quota increase using the link https://aka.ms/ProdportalCRP/?#create/Microsoft.Support/Parameters/%7B%22subId%22:%220b1f6471-1bf0-4dda-aec3-cb9272f09590%22,%22pesId%22:%2206bfd9d3-516b-d5c6-5802-169c800dec89%22,%22supportTopicId%22:%22e12e3d1d-7fa0-af33-c6d0-3c50df9658a3%22%7D.\"\r\n - \ }\r\n}" + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637117087295410024\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": + \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n + \ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Gold\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n + \ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": + \"7.0.457.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '598' + - '3073' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 14 Jan 2020 01:50:47 GMT + - Thu, 12 Dec 2019 01:34:22 GMT expires: - '-1' pragma: @@ -31040,13 +87442,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;298 - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: - code: 409 - message: Conflict + code: 200 + message: OK version: 1 From b42a7d909e3bace88533d3df41335067a9c5f7c1 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 13:52:28 +0800 Subject: [PATCH 41/51] pass test_webapp_config and deployment user show --- .../command_modules/appservice/commands.py | 2 +- .../cli/command_modules/appservice/custom.py | 5 + .../latest/recordings/test_webapp_config.yaml | 275 +++++++++++------- 3 files changed, 169 insertions(+), 113 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/commands.py b/src/azure-cli/azure/cli/command_modules/appservice/commands.py index aa6ee41ab3a..68e3cc811dc 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/commands.py @@ -195,7 +195,7 @@ def load_command_table(self, _): g.custom_command('list-publishing-credentials', 'list_publishing_credentials') with self.command_group('webapp deployment user', webclient_sdk) as g: - g.show_command('show', 'get_publishing_user') + g.custom_show_command('show', 'get_publishing_user') g.custom_command('set', 'set_deployment_user', exception_handler=ex_handler_factory()) with self.command_group('webapp deployment container') as g: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index 063f5c59ffc..c06c492b44e 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -1661,6 +1661,11 @@ def _get_scm_url(cmd, resource_group_name, name, slot=None): raise ValueError('Failed to retrieve Scm Uri') +def get_publishing_user(cmd): + client = web_client_factory(cmd.cli_ctx) + return client.get_publishing_user() + + def set_deployment_user(cmd, user_name, password=None): ''' Update deployment credentials.(Note, all webapps in your subscription will be impacted) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml index 1c4ef4c6617..5f6f3f167c9 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_config.yaml @@ -21,7 +21,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T05:47:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:21:49 GMT + - Tue, 14 Jan 2020 05:47:54 GMT expires: - '-1' pragma: @@ -80,7 +80,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:21:51 GMT + - Tue, 14 Jan 2020 05:47:55 GMT expires: - '-1' pragma: @@ -126,7 +126,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_webapp_config000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001","name":"cli_test_webapp_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T05:47:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:21:52 GMT + - Tue, 14 Jan 2020 05:47:56 GMT expires: - '-1' pragma: @@ -177,8 +177,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27075,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":31693,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:03 GMT + - Tue, 14 Jan 2020 05:48:08 GMT expires: - '-1' pragma: @@ -234,8 +234,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27075,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":31693,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:06 GMT + - Tue, 14 Jan 2020 05:48:10 GMT expires: - '-1' pragma: @@ -302,7 +302,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:07 GMT + - Tue, 14 Jan 2020 05:48:11 GMT expires: - '-1' pragma: @@ -320,7 +320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -349,8 +349,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","name":"webapp-config-plan000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"West - US","properties":{"serverFarmId":27075,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-071_27075","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":31693,"name":"webapp-config-plan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-WestUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"West + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"cli_test_webapp_config000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bay-045_31693","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -359,7 +359,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:07 GMT + - Tue, 14 Jan 2020 05:48:11 GMT expires: - '-1' pragma: @@ -412,18 +412,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-config-test000002","name":"webapp-config-test000002","type":"Microsoft.Web/sites","kind":"app","location":"West - US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-071.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T01:22:13.6233333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"00978770152F46A8C20D7D9E7776CEC0569A92EA201035346B966E58FBBF9AD5","kind":"app","inboundIpAddress":"23.101.207.250","possibleInboundIpAddresses":"23.101.207.250","outboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","possibleOutboundIpAddresses":"23.101.199.30,23.101.196.70,23.101.201.119,23.101.197.194","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-071","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-config-test000002","state":"Running","hostNames":["webapp-config-test000002.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-WestUSwebspace","selfLink":"https://waws-prod-bay-045.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-WestUSwebspace/sites/webapp-config-test000002","repositorySiteName":"webapp-config-test000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-config-test000002.azurewebsites.net","webapp-config-test000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-config-test000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-config-test000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-config-plan000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T05:48:17.533","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-config-test000002","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"438E9D326727288AA59B24C3F429C0F909142CD5E299617C4E87A470C379F913","kind":"app","inboundIpAddress":"40.112.143.140","possibleInboundIpAddresses":"40.112.143.140","outboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","possibleOutboundIpAddresses":"40.112.141.230,104.42.232.223,104.42.232.189,104.42.237.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-045","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-config-test000002.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3753' + - '3749' content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:30 GMT + - Tue, 14 Jan 2020 05:48:35 GMT etag: - - '"1D5CA790D508A55"' + - '"1D5CA9E38812950"' expires: - '-1' pragma: @@ -476,19 +476,19 @@ interactions: string: @@ -500,7 +500,7 @@ interactions: content-type: - application/xml date: - - Tue, 14 Jan 2020 01:22:31 GMT + - Tue, 14 Jan 2020 05:48:36 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:32 GMT + - Tue, 14 Jan 2020 05:48:37 GMT expires: - '-1' pragma: @@ -612,7 +612,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:33 GMT + - Tue, 14 Jan 2020 05:48:37 GMT expires: - '-1' pragma: @@ -690,9 +690,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:36 GMT + - Tue, 14 Jan 2020 05:48:40 GMT etag: - - '"1D5CA790D508A55"' + - '"1D5CA9E38812950"' expires: - '-1' pragma: @@ -710,7 +710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -750,7 +750,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:37 GMT + - Tue, 14 Jan 2020 05:48:42 GMT expires: - '-1' pragma: @@ -806,7 +806,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:39 GMT + - Tue, 14 Jan 2020 05:48:43 GMT expires: - '-1' pragma: @@ -867,9 +867,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:41 GMT + - Tue, 14 Jan 2020 05:48:45 GMT etag: - - '"1D5CA791DD2B760"' + - '"1D5CA9E492E9210"' expires: - '-1' pragma: @@ -887,7 +887,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -927,7 +927,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:43 GMT + - Tue, 14 Jan 2020 05:48:47 GMT expires: - '-1' pragma: @@ -983,7 +983,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:44 GMT + - Tue, 14 Jan 2020 05:48:48 GMT expires: - '-1' pragma: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:45 GMT + - Tue, 14 Jan 2020 05:48:50 GMT expires: - '-1' pragma: @@ -1095,7 +1095,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:46 GMT + - Tue, 14 Jan 2020 05:48:52 GMT expires: - '-1' pragma: @@ -1154,9 +1154,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:47 GMT + - Tue, 14 Jan 2020 05:48:53 GMT etag: - - '"1D5CA792169CDD5"' + - '"1D5CA9E4D5E5910"' expires: - '-1' pragma: @@ -1174,7 +1174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1212,9 +1212,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:48 GMT + - Tue, 14 Jan 2020 05:48:54 GMT etag: - - '"1D5CA792169CDD5"' + - '"1D5CA9E4D5E5910"' expires: - '-1' pragma: @@ -1273,7 +1273,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:49 GMT + - Tue, 14 Jan 2020 05:48:56 GMT expires: - '-1' pragma: @@ -1326,17 +1326,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":31197,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-089_31197","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":5925,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-161_5925","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1531' + - '1529' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:04 GMT + - Tue, 14 Jan 2020 05:49:13 GMT expires: - '-1' pragma: @@ -1383,17 +1383,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":31197,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-089_31197","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":5925,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-161_5925","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1531' + - '1529' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:05 GMT + - Tue, 14 Jan 2020 05:49:16 GMT expires: - '-1' pragma: @@ -1451,7 +1451,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:06 GMT + - Tue, 14 Jan 2020 05:49:18 GMT expires: - '-1' pragma: @@ -1498,17 +1498,17 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","name":"webapp-linux-plan000004","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":31197,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-089_31197","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":5925,"name":"webapp-linux-plan000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"cli_test_webapp_config000001-EastUSwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"cli_test_webapp_config000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-161_5925","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1531' + - '1529' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:08 GMT + - Tue, 14 Jan 2020 05:49:19 GMT expires: - '-1' pragma: @@ -1575,7 +1575,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:09 GMT + - Tue, 14 Jan 2020 05:49:20 GMT expires: - '-1' pragma: @@ -1627,18 +1627,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/sites/webapp-linux000005","name":"webapp-linux000005","type":"Microsoft.Web/sites","kind":"app,linux","location":"East - US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-089.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T01:23:16.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"2D9D895107464074664B26DA13BD2B8DB4717CC0830CBAE84A1DE88120471550","kind":"app,linux","inboundIpAddress":"40.71.177.34","possibleInboundIpAddresses":"40.71.177.34","outboundIpAddresses":"40.71.177.34,40.71.1.129,52.170.233.65,40.71.3.54,52.191.115.185","possibleOutboundIpAddresses":"40.71.177.34,40.71.1.129,52.170.233.65,40.71.3.54,52.191.115.185,104.211.20.160,104.211.22.67","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-089","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + US","properties":{"name":"webapp-linux000005","state":"Running","hostNames":["webapp-linux000005.azurewebsites.net"],"webSpace":"cli_test_webapp_config000001-EastUSwebspace","selfLink":"https://waws-prod-blu-161.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cli_test_webapp_config000001-EastUSwebspace/sites/webapp-linux000005","repositorySiteName":"webapp-linux000005","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux000005.azurewebsites.net","webapp-linux000005.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|6.6"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux000005.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux000005.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_webapp_config000001/providers/Microsoft.Web/serverfarms/webapp-linux-plan000004","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T05:49:23.9466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-linux000005","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"45CCC0EE7687FFF8CBA1C51FB0A4205C19739E760A28911F63D9965389A5C9FC","kind":"app,linux","inboundIpAddress":"40.71.11.140","possibleInboundIpAddresses":"40.71.11.140","outboundIpAddresses":"40.71.11.140,40.121.154.115,13.82.228.43,40.121.158.167,40.117.44.182","possibleOutboundIpAddresses":"40.71.11.140,40.121.154.115,13.82.228.43,40.121.158.167,40.117.44.182,168.61.50.107,40.121.80.139,40.117.44.94,23.96.53.166,40.121.152.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-161","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"cli_test_webapp_config000001","defaultHostName":"webapp-linux000005.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' headers: cache-control: - no-cache content-length: - - '3603' + - '3652' content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:35 GMT + - Tue, 14 Jan 2020 05:49:40 GMT etag: - - '"1D5CA7932D46C15"' + - '"1D5CA9E60541E2B"' expires: - '-1' pragma: @@ -1690,17 +1690,17 @@ interactions: body: string: @@ -1712,7 +1712,7 @@ interactions: content-type: - application/xml date: - - Tue, 14 Jan 2020 01:23:37 GMT + - Tue, 14 Jan 2020 05:49:43 GMT expires: - '-1' pragma: @@ -1767,7 +1767,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:40 GMT + - Tue, 14 Jan 2020 05:49:44 GMT expires: - '-1' pragma: @@ -1785,7 +1785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -1830,9 +1830,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:41 GMT + - Tue, 14 Jan 2020 05:49:45 GMT etag: - - '"1D5CA794198886B"' + - '"1D5CA9E6CD05355"' expires: - '-1' pragma: @@ -1850,7 +1850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -1890,7 +1890,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:42 GMT + - Tue, 14 Jan 2020 05:49:46 GMT expires: - '-1' pragma: @@ -1908,7 +1908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:44 GMT + - Tue, 14 Jan 2020 05:49:48 GMT expires: - '-1' pragma: @@ -2002,7 +2002,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:46 GMT + - Tue, 14 Jan 2020 05:49:51 GMT expires: - '-1' pragma: @@ -2064,9 +2064,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:47 GMT + - Tue, 14 Jan 2020 05:49:53 GMT etag: - - '"1D5CA7944DAAE15"' + - '"1D5CA9E7192FE80"' expires: - '-1' pragma: @@ -2084,7 +2084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:48 GMT + - Tue, 14 Jan 2020 05:49:54 GMT expires: - '-1' pragma: @@ -2142,7 +2142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -2180,7 +2180,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:50 GMT + - Tue, 14 Jan 2020 05:49:55 GMT expires: - '-1' pragma: @@ -2236,7 +2236,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:52 GMT + - Tue, 14 Jan 2020 05:49:57 GMT expires: - '-1' pragma: @@ -2292,7 +2292,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:54 GMT + - Tue, 14 Jan 2020 05:49:57 GMT expires: - '-1' pragma: @@ -2348,7 +2348,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:55 GMT + - Tue, 14 Jan 2020 05:49:58 GMT expires: - '-1' pragma: @@ -2404,7 +2404,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:57 GMT + - Tue, 14 Jan 2020 05:49:59 GMT expires: - '-1' pragma: @@ -2462,9 +2462,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:23:59 GMT + - Tue, 14 Jan 2020 05:50:00 GMT etag: - - '"1D5CA794C382860"' + - '"1D5CA9E75B87F4B"' expires: - '-1' pragma: @@ -2482,7 +2482,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' x-powered-by: - ASP.NET status: @@ -2522,7 +2522,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:00 GMT + - Tue, 14 Jan 2020 05:50:01 GMT expires: - '-1' pragma: @@ -2540,7 +2540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11997' x-powered-by: - ASP.NET status: @@ -2584,9 +2584,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:02 GMT + - Tue, 14 Jan 2020 05:50:04 GMT etag: - - '"1D5CA794D8C6DC0"' + - '"1D5CA9E782FB3D5"' expires: - '-1' pragma: @@ -2604,7 +2604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -2642,7 +2642,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:03 GMT + - Tue, 14 Jan 2020 05:50:04 GMT expires: - '-1' pragma: @@ -2700,7 +2700,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:04 GMT + - Tue, 14 Jan 2020 05:50:05 GMT expires: - '-1' pragma: @@ -2718,7 +2718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -2758,7 +2758,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:06 GMT + - Tue, 14 Jan 2020 05:50:06 GMT expires: - '-1' pragma: @@ -2814,7 +2814,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:07 GMT + - Tue, 14 Jan 2020 05:50:09 GMT expires: - '-1' pragma: @@ -2870,7 +2870,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:08 GMT + - Tue, 14 Jan 2020 05:50:11 GMT expires: - '-1' pragma: @@ -2926,7 +2926,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:10 GMT + - Tue, 14 Jan 2020 05:50:12 GMT expires: - '-1' pragma: @@ -2985,7 +2985,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:10 GMT + - Tue, 14 Jan 2020 05:50:12 GMT expires: - '-1' pragma: @@ -3003,7 +3003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -3046,9 +3046,9 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:11 GMT + - Tue, 14 Jan 2020 05:50:13 GMT etag: - - '"1D5CA7953896DAB"' + - '"1D5CA9E7D8B77B5"' expires: - '-1' pragma: @@ -3066,7 +3066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -3106,7 +3106,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:13 GMT + - Tue, 14 Jan 2020 05:50:16 GMT expires: - '-1' pragma: @@ -3124,7 +3124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' x-powered-by: - ASP.NET status: @@ -3162,7 +3162,58 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:13 GMT + - Tue, 14 Jan 2020 05:50:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp deployment user show + Connection: + - keep-alive + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/providers/Microsoft.Web/publishingUsers/web?api-version=2019-08-01 + response: + body: + string: '{"id":null,"name":"web","type":"Microsoft.Web/publishingUsers/web","properties":{"name":null,"publishingUserName":"zuh","publishingPassword":null,"publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":null}}' + headers: + cache-control: + - no-cache + content-length: + - '259' + content-type: + - application/json + date: + - Tue, 14 Jan 2020 05:50:19 GMT expires: - '-1' pragma: From bcce3e3601d4966546d428a90ae58e1a7a4b21de Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 14:13:54 +0800 Subject: [PATCH 42/51] add cmd_mock in unitest --- .../latest/test_webapp_commands_thru_mock.py | 30 ++++++++++++------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py index c84f66c2104..1b28bd9887a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py @@ -6,11 +6,7 @@ import mock from msrestazure.azure_exceptions import CloudError -from azure.mgmt.web.models import (SourceControl, HostNameBinding, Site, SiteConfig, - HostNameSslState, SslState, Certificate, - AddressResponse, HostingEnvironmentProfile, - DeletedAppRestoreRequest, SnapshotRecoverySource, - SnapshotRestoreRequest) + from azure.mgmt.web import WebSiteManagementClient from azure.cli.core.adal_authentication import AdalAuthentication from knack.util import CLIError @@ -72,11 +68,13 @@ def update_publishing_user(self, user): def test_set_source_control_token(self, client_factory_mock): client = mock.Mock() client_factory_mock.return_value = client + cmd_mock = _get_test_cmd() + SourceControl = cmd_mock.get_models('SourceControl') sc = SourceControl(name='not-really-needed', source_control_name='GitHub', token='veryNiceToken') client.update_source_control.return_value = sc # action - result = update_git_token(mock.MagicMock(), 'veryNiceToken') + result = update_git_token(cmd_mock, 'veryNiceToken') # assert things gets wired up self.assertEqual(result.token, 'veryNiceToken') @@ -85,7 +83,9 @@ def test_set_source_control_token(self, client_factory_mock): def test_set_domain_name(self, client_factory_mock): client = mock.Mock() client_factory_mock.return_value = client + cmd_mock = _get_test_cmd() # set up the return value for getting a webapp + Site, HostNameBinding = cmd_mock.get_models('Site', 'HostNameBinding') webapp = Site(location='westus') webapp.name = 'veryNiceWebApp' client.web_apps.get.return_value = webapp @@ -98,7 +98,7 @@ def test_set_domain_name(self, client_factory_mock): host_name_type='Managed') client.web_apps.create_or_update_host_name_binding.return_value = binding # action - result = add_hostname(mock.MagicMock(), 'g1', webapp.name, domain) + result = add_hostname(cmd_mock, 'g1', webapp.name, domain) # assert self.assertEqual(result.domain_id, domain) @@ -109,11 +109,13 @@ def test_get_external_ip_from_ase(self, client_factory_mock): client_factory_mock.return_value = client cmd_mock = _get_test_cmd() # set up the web inside a ASE, with an ip based ssl binding + HostingEnvironmentProfile = cmd_mock.get_models('HostingEnvironmentProfile') host_env = HostingEnvironmentProfile(id='id11') host_env.name = 'ase1' host_env.resource_group = 'myRg' - HostNameSslState, SslState, Site = cmd_mock.get_models('HostNameSslState', 'SslState', 'Site') + HostNameSslState, SslState, Site, AddressResponse = \ + cmd_mock.get_models('HostNameSslState', 'SslState', 'Site', 'AddressResponse') host_ssl_state = HostNameSslState(ssl_state=SslState.ip_based_enabled, virtual_ip='1.2.3.4') client.web_apps.get.return_value = Site(name='antarctica', hosting_environment_profile=host_env, @@ -155,8 +157,9 @@ def test_get_external_ip_from_ase(self, client_factory_mock): def test_get_external_ip_from_dns(self, resolve_hostname_mock, client_factory_mock): client = mock.Mock() client_factory_mock.return_value = client - + cmd_mock = _get_test_cmd() # set up the web inside a ASE, with an ip based ssl binding + Site = cmd_mock.get_models('Site') site = Site(name='antarctica', location='westus') site.default_host_name = 'myweb.com' client.web_apps.get.return_value = site @@ -189,6 +192,8 @@ def test_config_source_control_vsts(self, profile_mock, cd_manager_mock, client_ # Mock the client and set the location client = mock.Mock() client_factory_mock.return_value = client + cmd_mock = _get_test_cmd() + Site = cmd_mock.get_models('Site') site = Site(name='antarctica', location='westus') site.default_host_name = 'myweb.com' client.web_apps.get.return_value = site @@ -210,11 +215,12 @@ def test_config_source_control_vsts(self, profile_mock, cd_manager_mock, client_ @mock.patch('azure.cli.command_modules.appservice.custom._generic_site_operation', autospec=True) def test_update_site_config(self, site_op_mock): + cmd_mock = _get_test_cmd() + SiteConfig = cmd_mock.get_models('SiteConfig') site_config = SiteConfig(name='antarctica') site_op_mock.side_effect = [site_config, None] - cmd = mock.MagicMock() # action - update_site_configs(cmd, 'myRG', 'myweb', java_version='1.8') + update_site_configs(cmd_mock, 'myRG', 'myweb', java_version='1.8') # assert config_for_set = site_op_mock.call_args_list[1][0][5] self.assertEqual(config_for_set.java_version, '1.8') @@ -235,6 +241,8 @@ def test_list_publish_profiles_on_slots(self, site_op_mock): @mock.patch('azure.cli.command_modules.appservice.custom.get_streaming_log', autospec=True) @mock.patch('azure.cli.command_modules.appservice.custom.open_page_in_browser', autospec=True) def test_browse_with_trace(self, webbrowser_mock, log_mock, site_op_mock): + cmd_mock = _get_test_cmd() + Site, HostNameSslState, SslState = cmd_mock.get_models('Site', 'HostNameSslState', 'SslState') site = Site(location='westus', name='antarctica') site.default_host_name = 'haha.com' site.enabled_host_names = [site.default_host_name] From 091fa36b0a96a7758a1902df0deebc014b82ee0f Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 15:14:54 +0800 Subject: [PATCH 43/51] update requirements --- src/azure-cli/requirements.py2.Darwin.txt | 2 +- src/azure-cli/requirements.py2.Linux.txt | 2 +- src/azure-cli/requirements.py2.windows.txt | 2 +- src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/azure-cli/requirements.py2.Darwin.txt b/src/azure-cli/requirements.py2.Darwin.txt index c2367dbe8b2..68da4203fb3 100644 --- a/src/azure-cli/requirements.py2.Darwin.txt +++ b/src/azure-cli/requirements.py2.Darwin.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.43.1 +azure-mgmt-web==0.44.0 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py2.Linux.txt b/src/azure-cli/requirements.py2.Linux.txt index c2367dbe8b2..68da4203fb3 100644 --- a/src/azure-cli/requirements.py2.Linux.txt +++ b/src/azure-cli/requirements.py2.Linux.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.43.1 +azure-mgmt-web==0.44.0 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py2.windows.txt b/src/azure-cli/requirements.py2.windows.txt index e3117fd9996..51509b1e155 100644 --- a/src/azure-cli/requirements.py2.windows.txt +++ b/src/azure-cli/requirements.py2.windows.txt @@ -76,7 +76,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.43.1 +azure-mgmt-web==0.44.0 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 6a7fba0dd3b..f81fd3ef8fd 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.43.1 +azure-mgmt-web==0.44.0 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 6a7fba0dd3b..f81fd3ef8fd 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -77,7 +77,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.43.1 +azure-mgmt-web==0.44.0 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index cfdf373335a..f9297b7c0fc 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -76,7 +76,7 @@ azure-mgmt-sql==0.15.0 azure-mgmt-sqlvirtualmachine==0.5.0 azure-mgmt-storage==7.1.0 azure-mgmt-trafficmanager==0.51.0 -azure-mgmt-web==0.43.1 +azure-mgmt-web==0.44.0 azure-multiapi-storage==0.2.4 azure-nspkg==3.0.2 azure-loganalytics==0.1.0 From f1b8dc764731a25360f1ff8f161b1ed46d3d3c60 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 15:46:49 +0800 Subject: [PATCH 44/51] fix style --- .../appservice/_client_factory.py | 1 - .../cli/command_modules/appservice/custom.py | 36 +++++++------- .../test_webapp_continuousWebjob_e2e.yaml | 48 +++++++++++++++++++ .../tests/latest/test_webapp_commands.py | 9 ++-- .../latest/test_webapp_commands_thru_mock.py | 1 + 5 files changed, 72 insertions(+), 23 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py b/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py index a1fd3bfd6f1..6d7777a1ada 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_client_factory.py @@ -30,7 +30,6 @@ def _polish_bad_errors(ex): def web_client_factory(cli_ctx, **_): - #from azure.mgmt.web import WebSiteManagementClient from azure.cli.core.profiles import ResourceType from azure.cli.core.commands.client_factory import get_mgmt_service_client return get_mgmt_service_client(cli_ctx, ResourceType.MGMT_APPSERVICE) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py index c06c492b44e..1a84304164a 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py @@ -258,7 +258,6 @@ def add_azure_storage_account(cmd, resource_group_name, name, custom_id, storage if slot_setting: slot_cfg_names = client.web_apps.list_slot_configuration_names(resource_group_name, name) - slot_cfg_names.azure_storage_config_names = slot_cfg_names.azure_storage_config_names or [] if custom_id not in slot_cfg_names.azure_storage_config_names: slot_cfg_names.azure_storage_config_names.append(custom_id) @@ -627,6 +626,7 @@ def _list_deleted_app(cli_ctx, resource_group_name=None, name=None, slot=None): def assign_identity(cmd, resource_group_name, name, role='Contributor', slot=None, scope=None): ManagedServiceIdentity = cmd.get_models('ManagedServiceIdentity') + def getter(): return _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get', slot) @@ -646,6 +646,7 @@ def show_identity(cmd, resource_group_name, name, slot=None): def remove_identity(cmd, resource_group_name, name, slot=None): ManagedServiceIdentity = cmd.get_models('ManagedServiceIdentity') + def getter(): return _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get', slot) @@ -847,17 +848,18 @@ def _get_linux_multicontainer_encoded_config_from_file(file_name): # for any modifications to the non-optional parameters, adjust the reflection logic accordingly # in the method -def update_site_configs(cmd, resource_group_name, name, slot=None, number_of_workers=None, - linux_fx_version=None, windows_fx_version=None, pre_warmed_instance_count=None, php_version=None, # pylint: disable=unused-argument - python_version=None, net_framework_version=None, # pylint: disable=unused-argument - java_version=None, java_container=None, java_container_version=None, # pylint: disable=unused-argument - remote_debugging_enabled=None, web_sockets_enabled=None, # pylint: disable=unused-argument - always_on=None, auto_heal_enabled=None, # pylint: disable=unused-argument - use32_bit_worker_process=None, # pylint: disable=unused-argument - min_tls_version=None, # pylint: disable=unused-argument - http20_enabled=None, # pylint: disable=unused-argument - app_command_line=None, # pylint: disable=unused-argument - ftps_state=None, # pylint: disable=unused-argument +# pylint: disable=unused-argument +def update_site_configs(cmd, resource_group_name, name, slot=None, number_of_workers=None, linux_fx_version=None, + windows_fx_version=None, pre_warmed_instance_count=None, php_version=None, + python_version=None, net_framework_version=None, + java_version=None, java_container=None, java_container_version=None, + remote_debugging_enabled=None, web_sockets_enabled=None, + always_on=None, auto_heal_enabled=None, + use32_bit_worker_process=None, + min_tls_version=None, + http20_enabled=None, + app_command_line=None, + ftps_state=None, generic_configurations=None): configs = get_site_configs(cmd, resource_group_name, name, slot) if number_of_workers is not None: @@ -870,7 +872,7 @@ def update_site_configs(cmd, resource_group_name, name, slot=None, number_of_wor if pre_warmed_instance_count is not None: pre_warmed_instance_count = validate_range_of_int_flag('--prewarmed-instance-count', pre_warmed_instance_count, - min_val=0, max_val=20) + min_val=0, max_val=20) import inspect frame = inspect.currentframe() bool_flags = ['remote_debugging_enabled', 'web_sockets_enabled', 'always_on', @@ -1467,7 +1469,7 @@ def create_backup(cmd, resource_group_name, webapp_name, storage_account_url, client = web_client_factory(cmd.cli_ctx) if backup_name and backup_name.lower().endswith('.zip'): backup_name = backup_name[:-4] - db_setting = _create_db_setting(cmd, db_name, db_type, db_connection_string) + db_setting = _create_db_setting(cmd, db_name, db_type=db_type, db_connection_string=db_connection_string) backup_request = BackupRequest(backup_request_name=backup_name, storage_account_url=storage_account_url, databases=db_setting) if slot: @@ -1524,7 +1526,7 @@ def update_backup_schedule(cmd, resource_group_name, webapp_name, storage_accoun db_name = db_name or db.name db_connection_string = db_connection_string or db.connection_string - db_setting = _create_db_setting(db_name, db_type, db_connection_string) + db_setting = _create_db_setting(cmd, db_name, db_type=db_type, db_connection_string=db_connection_string) backup_schedule = BackupSchedule(frequency_interval=frequency_num, frequency_unit=frequency_unit.name, keep_at_least_one_backup=keep_at_least_one_backup, @@ -1544,7 +1546,7 @@ def restore_backup(cmd, resource_group_name, webapp_name, storage_account_url, b storage_blob_name = backup_name if not storage_blob_name.lower().endswith('.zip'): storage_blob_name += '.zip' - db_setting = _create_db_setting(db_name, db_type, db_connection_string) + db_setting = _create_db_setting(cmd, db_name, db_type=db_type, db_connection_string=db_connection_string) restore_request = RestoreRequest(storage_account_url=storage_account_url, blob_name=storage_blob_name, overwrite=overwrite, site_name=target_name, databases=db_setting, @@ -1619,7 +1621,6 @@ def _parse_frequency(cmd, frequency): def _get_location_from_resource_group(cli_ctx, resource_group_name): - from azure.cli.core.profiles import ResourceType client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES) group = client.resource_groups.get(resource_group_name) return group.location @@ -1633,7 +1634,6 @@ def _get_location_from_webapp(client, resource_group_name, webapp): def _get_deleted_apps_locations(cli_ctx): - from azure.cli.core.profiles import ResourceType client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES) web_provider = client.providers.get('Microsoft.Web') del_sites_resource = next((x for x in web_provider.resource_types if x.resource_type == 'deletedSites'), None) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml new file mode 100644 index 00000000000..8566ec89a6c --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml @@ -0,0 +1,48 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous list + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-web/0.44.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/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs?api-version=2019-08-01 + response: + body: + string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group + ''cliTestApp'' could not be found."}}' + headers: + cache-control: + - no-cache + content-length: + - '102' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 14 Jan 2020 06:36:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py index 371e884bb20..dbae4256ee7 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands.py @@ -351,14 +351,15 @@ def test_webapp_config(self, resource_group): runtime = 'node|6.6' linux_plan = self.create_random_name(prefix='webapp-linux-plan', length=24) linux_webapp = self.create_random_name(prefix='webapp-linux', length=24) - self.cmd('appservice plan create -g {} -n {} -l eastus --sku S1 --is-linux'.format(resource_group, linux_plan), checks=[ - JMESPathCheck('reserved', True), # this weird field means it is a linux - JMESPathCheck('sku.name', 'S1'), + self.cmd('appservice plan create -g {} -n {} -l eastus --sku S1 --is-linux'.format(resource_group, linux_plan), + checks=[ + JMESPathCheck('reserved', True), # this weird field means it is a linux + JMESPathCheck('sku.name', 'S1'), ]) self.cmd('webapp create -g {} -n {} --plan {} --runtime {}'.format(resource_group, linux_webapp, linux_plan, runtime), checks=[ JMESPathCheck('name', linux_webapp), - ]) + ]) # add self.cmd(('webapp config storage-account add -g {} -n {} --custom-id Id --storage-type AzureFiles --account-name name ' '--share-name sharename --access-key key --mount-path /path/to/mount').format(resource_group, linux_webapp)) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py index 1b28bd9887a..393cbc55ef6 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_commands_thru_mock.py @@ -44,6 +44,7 @@ def _get_test_cmd(): cmd.cli_ctx = cli_ctx return cmd + class TestWebappMocked(unittest.TestCase): def setUp(self): self.client = WebSiteManagementClient(AdalAuthentication(lambda: ('bearer', 'secretToken')), '123455678') From bac761b11f193506125d67968010786d2e41b394 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 16:07:51 +0800 Subject: [PATCH 45/51] fix linter --- src/azure-cli/azure/cli/command_modules/appservice/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/commands.py b/src/azure-cli/azure/cli/command_modules/appservice/commands.py index 68e3cc811dc..ac721fd955f 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/commands.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/commands.py @@ -59,7 +59,7 @@ def _polish_bad_errors(ex): # pylint: disable=too-many-statements def load_command_table(self, _): webclient_sdk = CliCommandType( - operations_tmpl='azure.mgmt.web.web_site_management_client#WebSiteManagementClient.{}', + operations_tmpl='azure.mgmt.web.operations#WebSiteManagementClientOperationsMixin.{}', client_factory=cf_web_client ) appservice_plan_sdk = CliCommandType( From aefaa64812c99c1a8ca9593d46fac0fe0862a230 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 16:16:59 +0800 Subject: [PATCH 46/51] add help for deployment user show --- .../azure/cli/command_modules/appservice/_help.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_help.py b/src/azure-cli/azure/cli/command_modules/appservice/_help.py index c79a55014a0..debc7083bdf 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/_help.py +++ b/src/azure-cli/azure/cli/command_modules/appservice/_help.py @@ -1516,6 +1516,15 @@ az webapp deployment user set --user-name MyUserName """ +helps['webapp deployment user show'] = """ +type: command +short-summary: Get deployment publishing user. +examples: + - name: Get publishing user information. + text: > + az webapp deployment user show +""" + helps['webapp hybrid-connection'] = """ type: group short-summary: methods that list, add and remove hybrid-connections from webapps From dc6f5bda49ae4f06d0214d6fa67a701b35e9231d Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 17:23:12 +0800 Subject: [PATCH 47/51] revert test_dls_file_mgmt --- .../latest/recordings/test_dls_file_mgmt.yaml | 334 +++++++++--------- 1 file changed, 167 insertions(+), 167 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml index 2dc6e34e9e4..b4657bcf360 100644 --- a/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml +++ b/src/azure-cli/azure/cli/command_modules/dls/tests/latest/recordings/test_dls_file_mgmt.yaml @@ -18,17 +18,17 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"encryptionState":"Disabled","provisioningState":"Creating","state":null,"endpoint":null,"accountId":"ac904988-a47a-4089-825b-8733538a6ba6"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"encryptionState":"Disabled","provisioningState":"Creating","state":null,"endpoint":null,"accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/ac904988-a47a-4089-825b-8733538a6ba6_0?api-version=2016-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 cache-control: - no-cache content-length: @@ -36,7 +36,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:24:20 GMT + - Wed, 23 Oct 2019 01:46:08 GMT expires: - '-1' location: @@ -52,7 +52,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -73,9 +73,9 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/ac904988-a47a-4089-825b-8733538a6ba6_0?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 response: body: string: '{"status":"InProgress"}' @@ -87,7 +87,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:24:32 GMT + - Wed, 23 Oct 2019 01:46:19 GMT expires: - '-1' pragma: @@ -124,9 +124,9 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/ac904988-a47a-4089-825b-8733538a6ba6_0?api-version=2016-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore/locations/eastus2/operationResults/c72f8318-0cf3-4439-aa8e-86da7f8708a5_0?api-version=2016-11-01 response: body: string: '{"status":"Succeeded"}' @@ -138,7 +138,7 @@ interactions: content-type: - application/json date: - - Mon, 06 Jan 2020 14:25:04 GMT + - Wed, 23 Oct 2019 01:46:51 GMT expires: - '-1' pragma: @@ -175,21 +175,21 @@ interactions: - -g -n -l --disable-encryption User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"ac904988-a47a-4089-825b-8733538a6ba6","creationTime":"2020-01-06T14:24:20.5971417Z","lastModifiedTime":"2020-01-06T14:24:20.5971417Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5","creationTime":"2019-10-23T01:46:08.069291Z","lastModifiedTime":"2019-10-23T01:46:08.069291Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache content-length: - - '943' + - '941' content-type: - application/json date: - - Mon, 06 Jan 2020 14:25:06 GMT + - Wed, 23 Oct 2019 01:46:52 GMT expires: - '-1' pragma: @@ -228,23 +228,23 @@ interactions: - -g -n User-Agent: - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.79 + azure-mgmt-datalake-store/0.5.0 Azure-SDK-For-Python AZURECLI/2.0.75 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002?api-version=2016-11-01 response: body: - string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"ac904988-a47a-4089-825b-8733538a6ba6","creationTime":"2020-01-06T14:24:20.5971417Z","lastModifiedTime":"2020-01-06T14:24:20.5971417Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' + string: '{"properties":{"firewallState":"Disabled","firewallAllowAzureIps":"Disabled","firewallAllowDataLakeAnalytics":"Disabled","firewallRules":[],"virtualNetworkRules":[],"trustedIdProviderState":"Disabled","trustedIdProviders":[],"encryptionState":"Disabled","encryptionConfig":{},"currentTier":"Consumption","newTier":"Consumption","dataLakePerformanceTierState":"Disabled","provisioningState":"Succeeded","state":"Active","endpoint":"cliadls000002.azuredatalakestore.net","accountId":"c72f8318-0cf3-4439-aa8e-86da7f8708a5","creationTime":"2019-10-23T01:46:08.069291Z","lastModifiedTime":"2019-10-23T01:46:08.069291Z"},"location":"eastus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cls_test_adls_file000001/providers/Microsoft.DataLakeStore/accounts/cliadls000002","name":"cliadls000002","type":"Microsoft.DataLakeStore/accounts"}' headers: cache-control: - no-cache content-length: - - '943' + - '941' content-type: - application/json date: - - Mon, 06 Jan 2020 14:25:08 GMT + - Wed, 23 Oct 2019 01:46:55 GMT expires: - '-1' pragma: @@ -276,13 +276,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01 [c341e756-9867-4111-9e4b-a83719d3021c][2020-01-06T06:25:13.5560069-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01 [b58b7fd2-e587-4738-9f01-ce6a5072bac7][2019-10-22T18:46:59.5247275-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -291,7 +291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:13 GMT + - Wed, 23 Oct 2019 01:46:58 GMT expires: - '-1' pragma: @@ -319,7 +319,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=MKDIRS&api-version=2018-09-01 response: @@ -333,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:13 GMT + - Wed, 23 Oct 2019 01:46:59 GMT expires: - '-1' pragma: @@ -359,12 +359,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1578320713907,"modificationTime":1578320713907,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795219866,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -373,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:14 GMT + - Wed, 23 Oct 2019 01:47:01 GMT expires: - '-1' pragma: @@ -399,13 +399,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile01 [c8eb5ac8-603e-4584-84f9-0f1316efcbc3][2020-01-06T06:25:17.3044806-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile01 [c58e2955-ad84-48b8-bd7c-a3f3e9e12366][2019-10-22T18:47:03.2298479-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -414,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:17 GMT + - Wed, 23 Oct 2019 01:47:02 GMT expires: - '-1' pragma: @@ -440,13 +440,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile01 [31b8a43e-77a2-4e2b-9245-1d80b9cca285][2020-01-06T06:25:17.6326089-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile01 [d78d0ab2-51d4-41c9-a674-048b6f1fad09][2019-10-22T18:47:03.5736054-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -455,7 +455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:17 GMT + - Wed, 23 Oct 2019 01:47:02 GMT expires: - '-1' pragma: @@ -483,7 +483,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -497,7 +497,7 @@ interactions: contentlength: - '0' date: - - Mon, 06 Jan 2020 14:25:17 GMT + - Wed, 23 Oct 2019 01:47:03 GMT expires: - '-1' location: @@ -527,7 +527,7 @@ interactions: Content-Length: - '6' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -539,7 +539,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:25:18 GMT + - Wed, 23 Oct 2019 01:47:03 GMT expires: - '-1' pragma: @@ -565,12 +565,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:19 GMT + - Wed, 23 Oct 2019 01:47:05 GMT expires: - '-1' pragma: @@ -605,12 +605,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -619,7 +619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:21 GMT + - Wed, 23 Oct 2019 01:47:06 GMT expires: - '-1' pragma: @@ -647,7 +647,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfsext/adltestfolder01/adltestfile01?OP=SETEXPIRY&api-version=2018-09-01&expiryOption=Absolute&expireTime=1896091200000 response: @@ -659,7 +659,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:25:21 GMT + - Wed, 23 Oct 2019 01:47:07 GMT expires: - '-1' pragma: @@ -683,12 +683,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -697,7 +697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:23 GMT + - Wed, 23 Oct 2019 01:47:08 GMT expires: - '-1' pragma: @@ -723,12 +723,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":1896091200000,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -737,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:25 GMT + - Wed, 23 Oct 2019 01:47:10 GMT expires: - '-1' pragma: @@ -765,7 +765,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfsext/adltestfolder01/adltestfile01?OP=SETEXPIRY&api-version=2018-09-01&expiryOption=NeverExpire response: @@ -777,7 +777,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:25:25 GMT + - Wed, 23 Oct 2019 01:47:11 GMT expires: - '-1' pragma: @@ -801,12 +801,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -815,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:27 GMT + - Wed, 23 Oct 2019 01:47:12 GMT expires: - '-1' pragma: @@ -841,13 +841,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [83144ae0-b160-4bfc-86e6-bba42a640563][2020-01-06T06:25:29.3425239-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [1d04e64d-320f-4152-8ad2-e8e7a532af7e][2019-10-22T18:47:14.7871070-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -856,7 +856,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:29 GMT + - Wed, 23 Oct 2019 01:47:14 GMT expires: - '-1' pragma: @@ -884,7 +884,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=MKDIRS&api-version=2018-09-01 response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:29 GMT + - Wed, 23 Oct 2019 01:47:14 GMT expires: - '-1' pragma: @@ -926,7 +926,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile01?OP=RENAME&api-version=2018-09-01&destination=adltestfolder02%2Fadltestfile01 response: @@ -940,7 +940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:30 GMT + - Wed, 23 Oct 2019 01:47:16 GMT expires: - '-1' pragma: @@ -966,12 +966,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -980,7 +980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:32 GMT + - Wed, 23 Oct 2019 01:47:17 GMT expires: - '-1' pragma: @@ -1006,12 +1006,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1020,7 +1020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:33 GMT + - Wed, 23 Oct 2019 01:47:19 GMT expires: - '-1' pragma: @@ -1046,12 +1046,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1060,7 +1060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:34 GMT + - Wed, 23 Oct 2019 01:47:19 GMT expires: - '-1' pragma: @@ -1086,12 +1086,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1100,7 +1100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:34 GMT + - Wed, 23 Oct 2019 01:47:20 GMT expires: - '-1' pragma: @@ -1126,7 +1126,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=OPEN&api-version=2018-09-01&offset=0&length=6&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1138,7 +1138,7 @@ interactions: content-type: - application/octet-stream date: - - Mon, 06 Jan 2020 14:25:35 GMT + - Wed, 23 Oct 2019 01:47:20 GMT expires: - '-1' pragma: @@ -1166,12 +1166,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:37 GMT + - Wed, 23 Oct 2019 01:47:22 GMT expires: - '-1' pragma: @@ -1206,12 +1206,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1220,7 +1220,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:37 GMT + - Wed, 23 Oct 2019 01:47:22 GMT expires: - '-1' pragma: @@ -1246,7 +1246,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=OPEN&api-version=2018-09-01&offset=3&length=3&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1258,7 +1258,7 @@ interactions: content-type: - application/octet-stream date: - - Mon, 06 Jan 2020 14:25:37 GMT + - Wed, 23 Oct 2019 01:47:23 GMT expires: - '-1' pragma: @@ -1286,12 +1286,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"adltestfile01","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"adltestfile01","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1300,7 +1300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:39 GMT + - Wed, 23 Oct 2019 01:47:24 GMT expires: - '-1' pragma: @@ -1326,12 +1326,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1340,7 +1340,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:41 GMT + - Wed, 23 Oct 2019 01:47:26 GMT expires: - '-1' pragma: @@ -1366,12 +1366,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320718335,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795224323,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1380,7 +1380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:41 GMT + - Wed, 23 Oct 2019 01:47:27 GMT expires: - '-1' pragma: @@ -1408,7 +1408,7 @@ interactions: Content-Length: - '6' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=6&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1420,7 +1420,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:25:41 GMT + - Wed, 23 Oct 2019 01:47:27 GMT expires: - '-1' pragma: @@ -1446,12 +1446,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/adltestfile01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":12,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320717988,"modificationTime":1578320742810,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":12,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795223947,"modificationTime":1571795248016,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1460,7 +1460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:43 GMT + - Wed, 23 Oct 2019 01:47:28 GMT expires: - '-1' pragma: @@ -1486,13 +1486,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile02 [22da03af-0892-4516-b559-7d773e855e2f][2020-01-06T06:25:46.2523256-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile02 [af31b0ac-45f3-4a75-934c-1a19719dacda][2019-10-22T18:47:31.2613013-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1501,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:45 GMT + - Wed, 23 Oct 2019 01:47:30 GMT expires: - '-1' pragma: @@ -1527,7 +1527,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: @@ -1541,7 +1541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:45 GMT + - Wed, 23 Oct 2019 01:47:31 GMT expires: - '-1' pragma: @@ -1567,13 +1567,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder01/adltestfile02 [6a0aa1bd-10dd-4543-949c-55f09ca65131][2020-01-06T06:25:47.9979213-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder01/adltestfile02 [22a473e6-4cf8-492f-a021-9f57a720d579][2019-10-22T18:47:32.9972952-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1582,7 +1582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:47 GMT + - Wed, 23 Oct 2019 01:47:32 GMT expires: - '-1' pragma: @@ -1610,7 +1610,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1624,7 +1624,7 @@ interactions: contentlength: - '0' date: - - Mon, 06 Jan 2020 14:25:47 GMT + - Wed, 23 Oct 2019 01:47:32 GMT expires: - '-1' location: @@ -1654,7 +1654,7 @@ interactions: Content-Length: - '18' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1666,7 +1666,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:25:48 GMT + - Wed, 23 Oct 2019 01:47:33 GMT expires: - '-1' pragma: @@ -1692,12 +1692,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":18,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320748396,"modificationTime":1578320748826,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":18,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795253380,"modificationTime":1571795253825,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1706,7 +1706,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:50 GMT + - Wed, 23 Oct 2019 01:47:35 GMT expires: - '-1' pragma: @@ -1736,7 +1736,7 @@ interactions: Content-Type: - application/json User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=MSCONCAT&api-version=2018-09-01&deleteSourceDirectory=false response: @@ -1748,7 +1748,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:25:51 GMT + - Wed, 23 Oct 2019 01:47:36 GMT expires: - '-1' pragma: @@ -1774,12 +1774,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1788,7 +1788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:53 GMT + - Wed, 23 Oct 2019 01:47:39 GMT expires: - '-1' pragma: @@ -1814,12 +1814,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1828,7 +1828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:56 GMT + - Wed, 23 Oct 2019 01:47:40 GMT expires: - '-1' pragma: @@ -1854,12 +1854,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1868,7 +1868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:56 GMT + - Wed, 23 Oct 2019 01:47:40 GMT expires: - '-1' pragma: @@ -1894,12 +1894,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1908,7 +1908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:25:56 GMT + - Wed, 23 Oct 2019 01:47:41 GMT expires: - '-1' pragma: @@ -1934,7 +1934,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=OPEN&api-version=2018-09-01&offset=0&length=30&read=true&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -1946,7 +1946,7 @@ interactions: content-type: - application/octet-stream date: - - Mon, 06 Jan 2020 14:25:58 GMT + - Wed, 23 Oct 2019 01:47:43 GMT expires: - '-1' pragma: @@ -1974,12 +1974,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1578320752693,"modificationTime":1578320752700,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' + string: '{"FileStatus":{"length":30,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1571795257584,"modificationTime":1571795257591,"replication":1,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -1988,7 +1988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:00 GMT + - Wed, 23 Oct 2019 01:47:44 GMT expires: - '-1' pragma: @@ -2016,7 +2016,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: DELETE uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01/adltestfile03?OP=DELETE&api-version=2018-09-01&recursive=False response: @@ -2030,7 +2030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:00 GMT + - Wed, 23 Oct 2019 01:47:45 GMT expires: - '-1' pragma: @@ -2056,7 +2056,7 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: @@ -2070,7 +2070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:02 GMT + - Wed, 23 Oct 2019 01:47:47 GMT expires: - '-1' pragma: @@ -2096,12 +2096,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET - uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: body: - string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"adltestfolder01","type":"DIRECTORY","blockSize":0,"accessTime":1578320713907,"modificationTime":1578320761228,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}]}}' + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"adltestfolder01","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795266015,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}]}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2110,7 +2110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:03 GMT + - Wed, 23 Oct 2019 01:47:47 GMT expires: - '-1' pragma: @@ -2136,13 +2136,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [02a34c66-f741-4c74-98dc-3dc4048ab19a][2020-01-06T06:26:05.3382421-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [9cf2e171-e7ca-4f23-93e1-20df5f2764dd][2019-10-22T18:47:49.9141093-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2151,7 +2151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:04 GMT + - Wed, 23 Oct 2019 01:47:49 GMT expires: - '-1' pragma: @@ -2179,7 +2179,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=MKDIRS&api-version=2018-09-01 response: @@ -2193,7 +2193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:04 GMT + - Wed, 23 Oct 2019 01:47:49 GMT expires: - '-1' pragma: @@ -2219,13 +2219,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02/tempfile01.txt [e3466904-828a-4d49-977b-226c76b988e3][2020-01-06T06:26:07.4189904-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02/tempfile01.txt [0de87bdc-c3ea-4922-9744-105c78cf3d65][2019-10-22T18:47:51.9885756-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2234,7 +2234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:07 GMT + - Wed, 23 Oct 2019 01:47:51 GMT expires: - '-1' pragma: @@ -2260,13 +2260,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02/tempfile01.txt [554a2d1b-4802-42f2-913c-90dcc2ddaa8e][2020-01-06T06:26:07.7939929-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02/tempfile01.txt [1f364225-9638-4a6c-963c-7b982c9da3aa][2019-10-22T18:47:52.3635842-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2275,7 +2275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:07 GMT + - Wed, 23 Oct 2019 01:47:51 GMT expires: - '-1' pragma: @@ -2303,7 +2303,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: PUT uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -2317,7 +2317,7 @@ interactions: contentlength: - '0' date: - - Mon, 06 Jan 2020 14:26:07 GMT + - Wed, 23 Oct 2019 01:47:51 GMT expires: - '-1' location: @@ -2347,7 +2347,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: POST uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02/tempfile01.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=12345678-1234-5678-1234-567812345678&filesessionid=12345678-1234-5678-1234-567812345678 response: @@ -2359,7 +2359,7 @@ interactions: content-length: - '0' date: - - Mon, 06 Jan 2020 14:26:08 GMT + - Wed, 23 Oct 2019 01:47:52 GMT expires: - '-1' pragma: @@ -2385,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1578320765702,"modificationTime":1578320768205,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795270274,"modificationTime":1571795272834,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2399,7 +2399,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:10 GMT + - Wed, 23 Oct 2019 01:47:54 GMT expires: - '-1' pragma: @@ -2427,7 +2427,7 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: DELETE uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=DELETE&api-version=2018-09-01&recursive=True response: @@ -2441,7 +2441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:10 GMT + - Wed, 23 Oct 2019 01:47:54 GMT expires: - '-1' pragma: @@ -2467,13 +2467,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder02?OP=GETFILESTATUS&api-version=2018-09-01 response: body: string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /adltestfolder02 [b26701a1-3438-4a9c-bb2a-1579de75f077][2020-01-06T06:26:22.8561915-08:00]","javaClassName":"java.io.FileNotFoundException"}}' + does not exist: /adltestfolder02 [1ecf8449-d7a4-430c-b0d0-5ce58d4fb2aa][2019-10-22T18:48:07.4718630-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2482,7 +2482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:22 GMT + - Wed, 23 Oct 2019 01:48:06 GMT expires: - '-1' pragma: @@ -2508,12 +2508,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.48 Azure-Data-Lake-Store-SDK-For-Python + - python/3.7.4 (Windows-10-10.0.18362-SP0) azure.datalake.store.lib/0.0.47 Azure-Data-Lake-Store-SDK-For-Python method: GET uri: https://cliadls000002.azuredatalakestore.net/webhdfs/v1/adltestfolder01?OP=GETFILESTATUS&api-version=2018-09-01 response: body: - string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1578320713907,"modificationTime":1578320761228,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1571795219866,"modificationTime":1571795266015,"replication":0,"permission":"770","owner":"21cd756e-e290-4a26-9547-93e8cc1a8923","group":"00000000-0000-0000-0000-000000000000","aclBit":false}}' headers: cache-control: - no-cache, no-cache, no-store, max-age=0 @@ -2522,7 +2522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Jan 2020 14:26:24 GMT + - Wed, 23 Oct 2019 01:48:08 GMT expires: - '-1' pragma: From f474744a4a9f2b3f1d62c2d4e777a6334a46d3bc Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 19:01:44 +0800 Subject: [PATCH 48/51] pass webapp_continuousWebjob --- .../test_webapp_continuousWebjob_e2e.yaml | 357 +++++++++++++++++- 1 file changed, 347 insertions(+), 10 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml index 8566ec89a6c..4c4e0939ee9 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_continuousWebjob_e2e.yaml @@ -1,4 +1,54 @@ interactions: +- request: + body: '{"location": "westus", "tags": {"product": "azurecli", "cause": "automation", + "date": "2019-05-28T19:56:17Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group create + Connection: + - keep-alive + Content-Length: + - '110' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - --location --name --tag + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-05-28T19:56:17Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '384' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 28 May 2019 19:56:19 GMT + expires: + - '-1' + pragma: + - no-cache + 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: @@ -13,36 +63,323 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs?api-version=2019-08-01 response: body: - string: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group - ''cliTestApp'' could not be found."}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West + US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}]}' + headers: + cache-control: + - no-cache + content-length: + - '763' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 28 May 2019 19:56:22 GMT + etag: + - '"d6f53377"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous start + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/start?api-version=2019-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 28 May 2019 19:56:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous start + Connection: + - keep-alive + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West + US","properties":{"status":"Running","detailed_status":"e7b519 - Running\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' + headers: + cache-control: + - no-cache + content-length: + - '751' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 28 May 2019 19:56:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous stop + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous/stop?api-version=2019-08-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 28 May 2019 19:56:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp webjob continuous stop + Connection: + - keep-alive + ParameterSetName: + - -g -n -w + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-web/0.42.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/sites/cliTestApp/continuouswebjobs/test-continuous","name":"cliTestApp/test-continuous","type":"Microsoft.Web/sites/continuouswebjobs","location":"West + US","properties":{"status":"Disabling","detailed_status":"e7b519 - Disabling\r\n","log_url":"https://clitestapp.scm.azurewebsites.net/vfs/data/jobs/continuous/test-continuous/job_log.txt","name":"test-continuous","run_command":"log.cmd","url":"https://clitestapp.scm.azurewebsites.net/api/continuouswebjobs/test-continuous","extra_info_url":"https://clitestapp.scm.azurewebsites.net/azurejobs/#/jobs/continuous/test-continuous","type":"continuous","error":null,"using_sdk":false,"settings":{}}}' headers: cache-control: - no-cache content-length: - - '102' + - '755' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 06:36:16 GMT + - Tue, 28 May 2019 19:56:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + set-cookie: + - ARRAffinity=e7b51920af4009b3c02496d96d52092422940c96fcd01492bbb6e49112bf10e4;Path=/;HttpOnly;Domain=clitestapp.scm.azurewebsites.net + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - group delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --name --yes --no-wait + User-Agent: + - python/3.6.6 (Windows-10-10.0.18362-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 + Azure-SDK-For-Python AZURECLI/2.0.65 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 28 May 2019 19:56:29 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdKS1laTkZLUFZUR1c1UVY3M1ZKWFRFRDM3QlpKUE5WMzZTWHw3OUEyRTg3NDg5MUU2OTM0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2019-07-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 404 - message: Not Found + code: 202 + message: Accepted version: 1 From 3ca96230879e453afbe97f1641fcb1ace1830963 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 19:05:15 +0800 Subject: [PATCH 49/51] revert reversation_id --- ...ns_summaries_daily_with_reservationid.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml diff --git a/src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml b/src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml new file mode 100644 index 00000000000..885d18592cf --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/consumption/tests/latest/recordings/test_list_reservations_summaries_daily_with_reservationid.yaml @@ -0,0 +1,33 @@ +interactions: +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + CommandName: [consumption reservations summaries reservation-id list] + Connection: [keep-alive] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/3.6.4 (Windows-10-10.0.16299-SP0) requests/2.18.4 msrest/0.4.26 + msrest_azure/0.4.21 azure-mgmt-consumption/2.0.0 Azure-SDK-For-Python AZURECLI/2.0.28] + accept-language: [en-US] + method: GET + uri: https://management.azure.com/providers/Microsoft.Capacity/reservationorders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries?grain=daily&$filter=properties%2FUsageDate%20ge%202017-12-01T00%3A00%3A00Z%20and%20properties%2FUsageDate%20le%202017-12-07T00%3A00%3A00Z&api-version=2018-01-31 + response: + body: {string: '{"value":[{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171201","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171201","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-01T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171202","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171202","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-02T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171203","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171203","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-03T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171204","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171204","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-04T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171205","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171205","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-05T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171206","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171206","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-06T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}},{"id":"providers/Microsoft.Capacity/reservationOrders/ca69259e-bd4f-45c3-bf28-3f353f9cce9b/reservations/f37f4b70-52ba-4344-a8bd-28abfd21d640/providers/Microsoft.Consumption/reservationSummaries/20171207","name":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b_f37f4b70-52ba-4344-a8bd-28abfd21d640_20171207","type":"Microsoft.Consumption/reservationSummaries","tags":null,"properties":{"reservationOrderId":"ca69259e-bd4f-45c3-bf28-3f353f9cce9b","reservationId":"f37f4b70-52ba-4344-a8bd-28abfd21d640","skuName":"Standard_DS2_v2","reservedHours":24.000000000000000,"usageDate":"2017-12-07T00:00:00Z","usedHours":24.000000000000000,"minUtilizationPercentage":100.000000000000000,"avgUtilizationPercentage":100.000000000000000,"maxUtilizationPercentage":100.000000000000000}}]}'} + headers: + cache-control: [no-cache] + content-length: ['5338'] + content-type: [application/json; odata.metadata=none] + date: ['Thu, 15 Feb 2018 00:22:37 GMT'] + expires: ['-1'] + odata-version: ['4.0'] + pragma: [no-cache] + server: [Microsoft-IIS/8.5] + session-id: [2a574b71-eeaa-49ad-9197-a5d681220a52] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +version: 1 From a2e2f6844957f2e89c08a746f4b6f64f8e3f6ae1 Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 19:07:40 +0800 Subject: [PATCH 50/51] fix typo --- .../cli/command_modules/resource/tests/latest/test_resource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py index 3a9e34c6514..25a57feea51 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/test_resource.py @@ -28,7 +28,7 @@ def test_resource_group(self, resource_group): self.check('name', '{rg}'), self.check('tags', {'a': 'b', 'c': ''}) ]) - self.cmd('group exists -n {rgF}', + self.cmd('group exists -n {rg}', checks=self.check('@', True)) self.cmd('group show -n {rg}', checks=[ self.check('name', '{rg}'), From 6a3f9234e0830bf9c0a9d26d5e89a19be4b0f88e Mon Sep 17 00:00:00 2001 From: Zunli Hu Date: Tue, 14 Jan 2020 19:11:19 +0800 Subject: [PATCH 51/51] pass test_linux_webapp_ssh --- .../recordings/test_linux_webapp_ssh.yaml | 756 ++++++++++++++++-- 1 file changed, 682 insertions(+), 74 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml index 9cf7f418360..93cd9eb6105 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_ssh.yaml @@ -13,24 +13,25 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '387' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:21:47 GMT + - Wed, 21 Aug 2019 22:00:01 GMT expires: - '-1' pragma: @@ -64,8 +65,9 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: POST @@ -81,7 +83,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:21:48 GMT + - Wed, 21 Aug 2019 22:00:01 GMT expires: - '-1' pragma: @@ -119,24 +121,25 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 resourcemanagementclient/2.2.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2020-01-14T01:21:40Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2019-08-21T21:59:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '431' + - '387' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Jan 2020 01:21:48 GMT + - Wed, 21 Aug 2019 22:00:02 GMT expires: - '-1' pragma: @@ -170,8 +173,9 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: PUT @@ -179,8 +183,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6265,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6265","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -189,7 +193,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:08 GMT + - Wed, 21 Aug 2019 22:00:19 GMT expires: - '-1' pragma: @@ -227,8 +231,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET @@ -236,8 +241,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6265,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6265","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -246,7 +251,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:10 GMT + - Wed, 21 Aug 2019 22:00:21 GMT expires: - '-1' pragma: @@ -287,8 +292,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: POST @@ -304,7 +310,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:10 GMT + - Wed, 21 Aug 2019 22:00:21 GMT expires: - '-1' pragma: @@ -342,8 +348,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET @@ -351,8 +358,8 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","name":"webapp-ssh-plan000002","type":"Microsoft.Web/serverfarms","kind":"linux","location":"Japan - West","properties":{"serverFarmId":6265,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan - West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_6265","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + West","properties":{"serverFarmId":4831,"name":"webapp-ssh-plan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"85a6c256-e687-4281-9cca-84869cf6ef36","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan + West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-009_4831","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -361,7 +368,7 @@ interactions: content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:12 GMT + - Wed, 21 Aug 2019 22:00:22 GMT expires: - '-1' pragma: @@ -397,38 +404,69 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET uri: https://management.azure.com/providers/Microsoft.Web/availableStacks?osTypeSelected=Linux&api-version=2019-08-01 response: body: - string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node","dependency":null,"majorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":false,"minorVersions":[{"displayVersion":"12 - LTS","runtimeVersion":"NODE|12-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":false,"minorVersions":[{"displayVersion":"10 - LTS","runtimeVersion":"NODE|10-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8 - LTS","runtimeVersion":"NODE|8-lts","isDefault":false,"minorVersions":[{"displayVersion":"8","runtimeVersion":"NODE|8-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6 - LTS","runtimeVersion":"NODE|6-lts","isDefault":false,"minorVersions":[{"displayVersion":"6","runtimeVersion":"NODE|6-lts","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":false,"minorVersions":[{"displayVersion":"10.16","runtimeVersion":"NODE|10.16","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":false,"minorVersions":[{"displayVersion":"12.9","runtimeVersion":"NODE|12.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET - Core","dependency":null,"majorVersions":[{"displayVersion":"1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"minorVersions":[{"displayVersion":"3.0.0","runtimeVersion":"DOTNETCORE|3.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"DOTNETCORE|LTS","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|Latest","isDefault":false,"minorVersions":[{"displayVersion":"Latest","runtimeVersion":"DOTNETCORE|LATEST","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java - 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"WildFly - 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java - 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Tomcat - 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"Java - SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"minorVersions":[{"displayVersion":"3.8","runtimeVersion":"PYTHON|3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false},{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false,"isPreview":false,"isDeprecated":false,"isHidden":false}],"frameworks":[],"isDeprecated":null}}],"nextLink":null,"id":null}' + string: '{"value":[{"id":null,"name":"ruby","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"ruby","display":"Ruby","dependency":null,"majorVersions":[{"displayVersion":"Ruby + 2.3","runtimeVersion":"RUBY|2.3","isDefault":false,"minorVersions":[{"displayVersion":"2.3.3","runtimeVersion":"RUBY|2.3.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"2.3.8","runtimeVersion":"RUBY|2.3.8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby + 2.4","runtimeVersion":"RUBY|2.4","isDefault":true,"minorVersions":[{"displayVersion":"2.4.5","runtimeVersion":"RUBY|2.4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby + 2.5","runtimeVersion":"RUBY|2.5","isDefault":false,"minorVersions":[{"displayVersion":"2.5.5","runtimeVersion":"RUBY|2.5.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Ruby + 2.6","runtimeVersion":"RUBY|2.6","isDefault":false,"minorVersions":[{"displayVersion":"2.6.2","runtimeVersion":"RUBY|2.6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"node","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"node","display":"Node.js","dependency":null,"majorVersions":[{"displayVersion":"Node.js + LTS","runtimeVersion":"NODE|lts","isDefault":true,"minorVersions":[{"displayVersion":"LTS","runtimeVersion":"NODE|lts","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 4.4","runtimeVersion":"NODE|4.4","isDefault":false,"minorVersions":[{"displayVersion":"4.4","runtimeVersion":"NODE|4.4","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 4.5","runtimeVersion":"NODE|4.5","isDefault":false,"minorVersions":[{"displayVersion":"4.5","runtimeVersion":"NODE|4.5","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 4.8","runtimeVersion":"NODE|4.8","isDefault":false,"minorVersions":[{"displayVersion":"4.8","runtimeVersion":"NODE|4.8.7","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.2","runtimeVersion":"NODE|6.2","isDefault":false,"minorVersions":[{"displayVersion":"6.2","runtimeVersion":"NODE|6.2","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.6","runtimeVersion":"NODE|6.6","isDefault":false,"minorVersions":[{"displayVersion":"6.6","runtimeVersion":"NODE|6.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.9","runtimeVersion":"NODE|6.9","isDefault":false,"minorVersions":[{"displayVersion":"6.9","runtimeVersion":"NODE|6.9","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.10","runtimeVersion":"NODE|6.10","isDefault":false,"minorVersions":[{"displayVersion":"6.10","runtimeVersion":"NODE|6.10","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Node.js + 6.11","runtimeVersion":"NODE|6.11","isDefault":false,"minorVersions":[{"displayVersion":"6.11","runtimeVersion":"NODE|6.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.0","runtimeVersion":"NODE|8.0","isDefault":false,"minorVersions":[{"displayVersion":"8.0","runtimeVersion":"NODE|8.0","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.1","runtimeVersion":"NODE|8.1","isDefault":false,"minorVersions":[{"displayVersion":"8.1","runtimeVersion":"NODE|8.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.2","runtimeVersion":"NODE|8.2","isDefault":false,"minorVersions":[{"displayVersion":"8.2","runtimeVersion":"NODE|8.2","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.8","runtimeVersion":"NODE|8.8","isDefault":false,"minorVersions":[{"displayVersion":"8.8","runtimeVersion":"NODE|8.8","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.9","runtimeVersion":"NODE|8.9","isDefault":false,"minorVersions":[{"displayVersion":"8.9","runtimeVersion":"NODE|8.9","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.11","runtimeVersion":"NODE|8.11","isDefault":false,"minorVersions":[{"displayVersion":"8.11","runtimeVersion":"NODE|8.11","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 8.12","runtimeVersion":"NODE|8.12","isDefault":false,"minorVersions":[{"displayVersion":"8.12","runtimeVersion":"NODE|8.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 9.4","runtimeVersion":"NODE|9.4","isDefault":false,"minorVersions":[{"displayVersion":"9.4","runtimeVersion":"NODE|9.4","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.1","runtimeVersion":"NODE|10.1","isDefault":false,"minorVersions":[{"displayVersion":"10.1","runtimeVersion":"NODE|10.1","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.10","runtimeVersion":"NODE|10.10","isDefault":false,"minorVersions":[{"displayVersion":"10.10","runtimeVersion":"NODE|10.10","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.12","runtimeVersion":"NODE|10.12","isDefault":false,"minorVersions":[{"displayVersion":"10.12","runtimeVersion":"NODE|10.12","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false},{"displayVersion":"Node.js + 10.14","runtimeVersion":"NODE|10.14","isDefault":false,"minorVersions":[{"displayVersion":"10.14","runtimeVersion":"NODE|10.14","isDefault":true,"isRemoteDebuggingEnabled":true}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"php","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"php","display":"PHP","dependency":null,"majorVersions":[{"displayVersion":"PHP + 5.6","runtimeVersion":"PHP|5.6","isDefault":false,"minorVersions":[{"displayVersion":"5.6.40-apache","runtimeVersion":"PHP|5.6","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"5.6.40-apache-xdebug","runtimeVersion":"PHP|5.6","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP + 7.0","runtimeVersion":"PHP|7.0","isDefault":false,"minorVersions":[{"displayVersion":"7.0.33-apache","runtimeVersion":"PHP|7.0","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.0.33-apache-xdebug","runtimeVersion":"PHP|7.0","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP + 7.2","runtimeVersion":"PHP|7.2","isDefault":true,"minorVersions":[{"displayVersion":"7.2.15-apache","runtimeVersion":"PHP|7.2","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.2.15-apache-xdebug","runtimeVersion":"PHP|7.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"PHP + 7.3","runtimeVersion":"PHP|7.3","isDefault":true,"minorVersions":[{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":true,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache-xdebug","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false},{"displayVersion":"7.3.2-apache","runtimeVersion":"PHP|7.3","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"dotnetcore","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"dotnetcore","display":".NET + Core","dependency":null,"majorVersions":[{"displayVersion":".NET Core 1.0","runtimeVersion":"DOTNETCORE|1.0","isDefault":false,"minorVersions":[{"displayVersion":"1.0.14","runtimeVersion":"DOTNETCORE|1.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 1.1","runtimeVersion":"DOTNETCORE|1.1","isDefault":false,"minorVersions":[{"displayVersion":"1.1.11","runtimeVersion":"DOTNETCORE|1.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 2.0","runtimeVersion":"DOTNETCORE|2.0","isDefault":false,"minorVersions":[{"displayVersion":"2.0.9","runtimeVersion":"DOTNETCORE|2.0","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 2.1","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"minorVersions":[{"displayVersion":"2.1.8","runtimeVersion":"DOTNETCORE|2.1","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":".NET + Core 2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"minorVersions":[{"displayVersion":"2.2.2","runtimeVersion":"DOTNETCORE|2.2","isDefault":false,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"java8","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java8","display":"Java + 8","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|8-jre8","isDefault":true,"minorVersions":[{"displayVersion":"8","runtimeVersion":"JAVA|8-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"WildFly + 14 - Preview","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"minorVersions":[{"displayVersion":"14","runtimeVersion":"WILDFLY|14-jre8","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true}],"frameworks":[]}},{"id":null,"name":"java11","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"java11","display":"Java + 11","dependency":null,"majorVersions":[{"displayVersion":"Tomcat 8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":false,"minorVersions":[{"displayVersion":"8.5","runtimeVersion":"TOMCAT|8.5-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Tomcat + 9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":false,"minorVersions":[{"displayVersion":"9.0","runtimeVersion":"TOMCAT|9.0-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":true},{"displayVersion":"Java + SE","runtimeVersion":"JAVA|11-java11","isDefault":true,"minorVersions":[{"displayVersion":"11","runtimeVersion":"JAVA|11-java11","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}},{"id":null,"name":"python","type":"Microsoft.Web/availableStacks?osTypeSelected=Linux","properties":{"name":"python","display":"Python","dependency":null,"majorVersions":[{"displayVersion":"Python + 3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"minorVersions":[{"displayVersion":"3.7","runtimeVersion":"PYTHON|3.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python + 3.6","runtimeVersion":"PYTHON|3.6","isDefault":false,"minorVersions":[{"displayVersion":"3.6","runtimeVersion":"PYTHON|3.6","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false},{"displayVersion":"Python + 2.7","runtimeVersion":"PYTHON|2.7","isDefault":false,"minorVersions":[{"displayVersion":"2.7","runtimeVersion":"PYTHON|2.7","isDefault":true,"isRemoteDebuggingEnabled":false}],"applicationInsights":false}],"frameworks":[]}}],"nextLink":null,"id":null}' headers: cache-control: - no-cache content-length: - - '17428' + - '12309' content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:14 GMT + - Wed, 21 Aug 2019 22:00:24 GMT expires: - '-1' pragma: @@ -454,8 +492,7 @@ interactions: body: 'b''{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002", "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "node|8.11", "appSettings": [], "alwaysOn": true, - "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false, - "httpsOnly": false}}''' + "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false}}''' headers: Accept: - application/json @@ -466,14 +503,15 @@ interactions: Connection: - keep-alive Content-Length: - - '534' + - '514' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: PUT @@ -481,18 +519,18 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan - West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2020-01-14T01:22:20.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"C4136155466A1B032E3AAB576DEBB565AABD2B2265D81F6C68072E95AB1DB327","kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null}}' + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:28.81","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null}}' headers: cache-control: - no-cache content-length: - - '3626' + - '3484' content-type: - application/json date: - - Tue, 14 Jan 2020 01:22:39 GMT + - Wed, 21 Aug 2019 22:00:47 GMT etag: - - '"1D5CA791140A340"' + - '"1D5586BD8783840"' expires: - '-1' pragma: @@ -534,8 +572,9 @@ interactions: ParameterSetName: - -g -n --plan --runtime User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: POST @@ -544,17 +583,17 @@ interactions: body: string: @@ -566,7 +605,7 @@ interactions: content-type: - application/xml date: - - Tue, 14 Jan 2020 01:22:40 GMT + - Wed, 21 Aug 2019 22:00:48 GMT expires: - '-1' pragma: @@ -647,13 +686,13 @@ interactions: content-type: - text/html; charset=UTF-8 date: - - Tue, 14 Jan 2020 01:24:01 GMT + - Wed, 21 Aug 2019 22:01:18 GMT etag: - - W/"ca5-16e3e8a1c88" + - W/"ca5-16acc376e90" last-modified: - - Wed, 06 Nov 2019 02:27:49 GMT + - Sat, 18 May 2019 18:32:26 GMT set-cookie: - - ARRAffinity=6ba22433a1b457c187a850f5c19202dc1734850343a7e4d01eaa9725a3e6374c;Path=/;HttpOnly;Domain=webapp-ssh2wbizez7j6vvm3.azurewebsites.net + - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.azurewebsites.net x-powered-by: - Express status: @@ -673,8 +712,9 @@ interactions: ParameterSetName: - -g -n --timeout User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-web/0.44.0 Azure-SDK-For-Python AZURECLI/2.0.79 + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 accept-language: - en-US method: GET @@ -684,16 +724,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/web","name":"webapp-ssh000003","type":"Microsoft.Web/sites/config","location":"Japan West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","linuxFxVersion":"node|8.11","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webapp-ssh000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"googleClientId":null,"googleClientSecret":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","ftpsState":"AllAllowed","reservedInstanceCount":0,"preWarmedInstanceCount":null,"healthCheckPath":null,"fileChangeAuditEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3093' + - '3052' content-type: - application/json date: - - Tue, 14 Jan 2020 01:24:32 GMT + - Wed, 21 Aug 2019 22:01:52 GMT expires: - '-1' pragma: @@ -715,4 +755,572 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '3482' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:01:53 GMT + etag: + - '"1D5586BD8783840"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:01:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:01:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '3482' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:01:56 GMT + etag: + - '"1D5586BD8783840"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:01:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/config/publishingcredentials/list?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishingcredentials/$webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Japan + West","properties":{"name":null,"publishingUserName":"$webapp-ssh000003","publishingPassword":"1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$webapp-ssh000003:1gqeQdLh82nXvfWB70wuP6Aggz5zbzzzbv2Wh8FQd54Po8i2MXf570n2aWWH@webapp-ssh000003.scm.azurewebsites.net"}}' + headers: + cache-control: + - no-cache + content-length: + - '774' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:01:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003?api-version=2019-08-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003","name":"webapp-ssh000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"Japan + West","properties":{"name":"webapp-ssh000003","state":"Running","hostNames":["webapp-ssh000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/webapp-ssh000003","repositorySiteName":"webapp-ssh000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-ssh000003.azurewebsites.net","webapp-ssh000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"node|8.11"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-ssh000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-ssh000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/webapp-ssh-plan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2019-08-21T22:00:29.38","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":null,"deploymentId":"webapp-ssh000003","trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"kind":"app,linux","inboundIpAddress":"104.215.58.230","possibleInboundIpAddresses":"104.215.58.230","outboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211","possibleOutboundIpAddresses":"104.215.58.230,104.215.53.202,104.215.62.87,104.215.51.91,104.215.63.211,13.73.235.66,104.215.11.91","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-ssh000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[]}}' + headers: + cache-control: + - no-cache + content-length: + - '3482' + content-type: + - application/json + date: + - Wed, 21 Aug 2019 22:02:00 GMT + etag: + - '"1D5586BD8783840"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + CommandName: + - webapp ssh + Connection: + - keep-alive + Content-Length: + - '2' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --timeout + User-Agent: + - python/3.6.8 (Linux-4.4.0-18362-Microsoft-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.9 msrest_azure/0.6.1 azure-mgmt-web/0.42.0 Azure-SDK-For-Python + AZURECLI/2.0.71 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-ssh000003/publishxml?api-version=2019-08-01 + response: + body: + string: + headers: + cache-control: + - no-cache + content-length: + - '1730' + content-type: + - application/xml + date: + - Wed, 21 Aug 2019 22:02:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '11999' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.22.0 + method: GET + uri: https://webapp-ssh000003.scm.azurewebsites.net/api/settings + response: + body: + string: '{"deployment_branch":"master","SCM_TRACE_LEVEL":"Verbose","SCM_COMMAND_IDLE_TIMEOUT":"60","SCM_LOGSTREAM_TIMEOUT":"7200","SCM_BUILD_ARGS":"","WEBSITE_AUTH_ENABLED":"False","SCM_USE_LIBGIT2SHARP_REPOSITORY":"0","ScmType":"None","WEBSITE_SITE_NAME":"webapp-ssh000003","WEBSITE_NODE_DEFAULT_VERSION":"8.11"}' + headers: + content-length: + - '312' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 21 Aug 2019 22:02:21 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net + transfer-encoding: + - chunked + vary: + - Accept-Encoding + status: + code: 200 + message: OK +- request: + body: null + headers: {} + method: GET + uri: https://webapp-ssh000003.scm.azurewebsites.net/AppServiceTunnel/Tunnel.ashx?GetStatus + response: + body: + string: SUCCESS:2222 + headers: + date: + - Wed, 21 Aug 2019 22:02:22 GMT + server: + - Kestrel + set-cookie: + - ARRAffinity=110c23d861dcaa09836ed00f278d29dc4b913a207c2d9dd4ed54366e3c2f6a3a;Path=/;HttpOnly;Domain=webapp-sshwp25v64k6ihdrw.scm.azurewebsites.net + transfer-encoding: + - chunked + status: + code: 200 + message: OK version: 1